Browse Source

fix steps start and stop

Kenkart 2 years ago
parent
commit
0a99f29a31

+ 8 - 8
Assets/KinectView/Scripts/BodySourceView.cs

@@ -283,9 +283,9 @@ public class BodySourceView : MonoBehaviour
             initJoints[(int)Kinect.JointType.SpineBase], initJoints[(int)Kinect.JointType.HipRight], 0.08f) + rescaledJoints[(int)Kinect.JointType.SpineBase];
 
         rescaledJoints[(int)Kinect.JointType.KneeLeft] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.HipLeft], initJoints[(int)Kinect.JointType.KneeLeft], 0.4f) + rescaledJoints[(int)Kinect.JointType.HipLeft];
+            initJoints[(int)Kinect.JointType.HipLeft], initJoints[(int)Kinect.JointType.KneeLeft], 0.38f) + rescaledJoints[(int)Kinect.JointType.HipLeft];
         rescaledJoints[(int)Kinect.JointType.KneeRight] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.HipRight], initJoints[(int)Kinect.JointType.KneeRight], 0.4f) + rescaledJoints[(int)Kinect.JointType.HipRight];
+            initJoints[(int)Kinect.JointType.HipRight], initJoints[(int)Kinect.JointType.KneeRight], 0.38f) + rescaledJoints[(int)Kinect.JointType.HipRight];
 
         rescaledJoints[(int)Kinect.JointType.AnkleLeft] = GetTargetJointWithDesiredLength(
             initJoints[(int)Kinect.JointType.KneeLeft], initJoints[(int)Kinect.JointType.AnkleLeft], 0.35f) + rescaledJoints[(int)Kinect.JointType.KneeLeft];
@@ -293,10 +293,10 @@ public class BodySourceView : MonoBehaviour
             initJoints[(int)Kinect.JointType.KneeRight], initJoints[(int)Kinect.JointType.AnkleRight], 0.35f) + rescaledJoints[(int)Kinect.JointType.KneeRight];
 
         rescaledJoints[(int)Kinect.JointType.FootLeft] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.AnkleLeft], initJoints[(int)Kinect.JointType.FootLeft], 0.1f) + rescaledJoints[(int)Kinect.JointType.AnkleLeft] + new Vector3(0, 0.05f, 0);
+            initJoints[(int)Kinect.JointType.AnkleLeft], initJoints[(int)Kinect.JointType.FootLeft], 0.1f) + rescaledJoints[(int)Kinect.JointType.AnkleLeft] + new Vector3(0, 0.03f, 0);
         //initJoints[(int)Kinect.JointType.AnkleLeft], initJoints[(int)Kinect.JointType.FootLeft], 0.1f) + rescaledJoints[(int)Kinect.JointType.AnkleLeft];
         rescaledJoints[(int)Kinect.JointType.FootRight] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.AnkleRight], initJoints[(int)Kinect.JointType.FootRight], 0.1f) + rescaledJoints[(int)Kinect.JointType.AnkleRight] + new Vector3(0, 0.05f, 0);
+            initJoints[(int)Kinect.JointType.AnkleRight], initJoints[(int)Kinect.JointType.FootRight], 0.1f) + rescaledJoints[(int)Kinect.JointType.AnkleRight] + new Vector3(0, 0.03f, 0);
         //initJoints[(int)Kinect.JointType.AnkleRight], initJoints[(int)Kinect.JointType.FootRight], 0.1f) + rescaledJoints[(int)Kinect.JointType.AnkleRight];
 
         // Upper part
@@ -312,14 +312,14 @@ public class BodySourceView : MonoBehaviour
             initJoints[(int)Kinect.JointType.SpineShoulder], initJoints[(int)Kinect.JointType.ShoulderRight], 0.12f) + rescaledJoints[(int)Kinect.JointType.SpineShoulder];
 
         rescaledJoints[(int)Kinect.JointType.ElbowLeft] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.ShoulderLeft], initJoints[(int)Kinect.JointType.ElbowLeft], 0.3f) + rescaledJoints[(int)Kinect.JointType.ShoulderLeft];
+            initJoints[(int)Kinect.JointType.ShoulderLeft], initJoints[(int)Kinect.JointType.ElbowLeft], 0.28f) + rescaledJoints[(int)Kinect.JointType.ShoulderLeft];
         rescaledJoints[(int)Kinect.JointType.ElbowRight] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.ShoulderRight], initJoints[(int)Kinect.JointType.ElbowRight], 0.3f) + rescaledJoints[(int)Kinect.JointType.ShoulderRight];
+            initJoints[(int)Kinect.JointType.ShoulderRight], initJoints[(int)Kinect.JointType.ElbowRight], 0.28f) + rescaledJoints[(int)Kinect.JointType.ShoulderRight];
 
         rescaledJoints[(int)Kinect.JointType.WristLeft] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.ElbowLeft], initJoints[(int)Kinect.JointType.WristLeft], 0.3f) + rescaledJoints[(int)Kinect.JointType.ElbowLeft];
+            initJoints[(int)Kinect.JointType.ElbowLeft], initJoints[(int)Kinect.JointType.WristLeft], 0.28f) + rescaledJoints[(int)Kinect.JointType.ElbowLeft];
         rescaledJoints[(int)Kinect.JointType.WristRight] = GetTargetJointWithDesiredLength(
-            initJoints[(int)Kinect.JointType.ElbowRight], initJoints[(int)Kinect.JointType.WristRight], 0.3f) + rescaledJoints[(int)Kinect.JointType.ElbowRight];
+            initJoints[(int)Kinect.JointType.ElbowRight], initJoints[(int)Kinect.JointType.WristRight], 0.28f) + rescaledJoints[(int)Kinect.JointType.ElbowRight];
 
         rescaledJoints[(int)Kinect.JointType.Neck] = GetTargetJointWithDesiredLength(
             initJoints[(int)Kinect.JointType.SpineShoulder], initJoints[(int)Kinect.JointType.Neck], 0.1f) + rescaledJoints[(int)Kinect.JointType.SpineShoulder];

+ 217 - 212
Assets/Scenes/Main.unity

@@ -914,11 +914,11 @@ PrefabInstance:
     - target: {fileID: 2348914, guid: 4d293c8e162f3874b982baadd71153d2, type: 3}
       propertyPath: m_Materials.Array.data[0]
       value: 
-      objectReference: {fileID: 1290940367}
+      objectReference: {fileID: 1751625405}
     - target: {fileID: 3380982, guid: 4d293c8e162f3874b982baadd71153d2, type: 3}
       propertyPath: m_Mesh
       value: 
-      objectReference: {fileID: 370082198}
+      objectReference: {fileID: 1761839145}
     - target: {fileID: 4000013889601590, guid: 4d293c8e162f3874b982baadd71153d2, type: 3}
       propertyPath: m_LocalPosition.y
       value: 1
@@ -1433,6 +1433,11 @@ MonoBehaviour:
   m_TrackingType: 1
   m_UpdateType: 0
   m_UseRelativeTransform: 0
+--- !u!20 &206427829 stripped
+Camera:
+  m_CorrespondingSourceObject: {fileID: 20000014031267948, guid: 4d293c8e162f3874b982baadd71153d2, type: 3}
+  m_PrefabInstance: {fileID: 110216682}
+  m_PrefabAsset: {fileID: 0}
 --- !u!4 &214751279 stripped
 Transform:
   m_CorrespondingSourceObject: {fileID: 5672364630614476697, guid: a8d819c88b06d5d479cad532c162c475, type: 3}
@@ -1519,7 +1524,7 @@ Transform:
   m_PrefabAsset: {fileID: 0}
   m_GameObject: {fileID: 226099529}
   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
-  m_LocalPosition: {x: -7.5, y: -0.7, z: 1.75}
+  m_LocalPosition: {x: -7.5, y: -0.8, z: 1.75}
   m_LocalScale: {x: 0.8, y: 0.8, z: 0.8}
   m_Children:
   - {fileID: 1734603291}
@@ -1938,12 +1943,12 @@ MonoBehaviour:
   m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
   m_Name: 
   m_EditorClassIdentifier: 
-  m_UiScaleMode: 0
+  m_UiScaleMode: 1
   m_ReferencePixelsPerUnit: 100
   m_ScaleFactor: 1
   m_ReferenceResolution: {x: 800, y: 600}
   m_ScreenMatchMode: 0
-  m_MatchWidthOrHeight: 0
+  m_MatchWidthOrHeight: 0.5
   m_PhysicalUnit: 3
   m_FallbackScreenDPI: 96
   m_DefaultSpriteDPI: 96
@@ -1958,9 +1963,9 @@ Canvas:
   m_GameObject: {fileID: 310186873}
   m_Enabled: 1
   serializedVersion: 3
-  m_RenderMode: 0
-  m_Camera: {fileID: 0}
-  m_PlaneDistance: 100
+  m_RenderMode: 1
+  m_Camera: {fileID: 206427829}
+  m_PlaneDistance: 0.6
   m_PixelPerfect: 0
   m_ReceivesEvents: 1
   m_OverrideSorting: 0
@@ -2118,170 +2123,6 @@ Transform:
   m_CorrespondingSourceObject: {fileID: 2528327074000149298, guid: 3f4814451272e874f9d7dc1534b22b63, type: 3}
   m_PrefabInstance: {fileID: 284077}
   m_PrefabAsset: {fileID: 0}
---- !u!43 &370082198
-Mesh:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_Name: 
-  serializedVersion: 10
-  m_SubMeshes:
-  - serializedVersion: 2
-    firstByte: 0
-    indexCount: 24
-    topology: 0
-    baseVertex: 0
-    firstVertex: 0
-    vertexCount: 8
-    localAABB:
-      m_Center: {x: 0, y: 0.01, z: 0}
-      m_Extent: {x: 1.65, y: 0, z: 1.275}
-  m_Shapes:
-    vertices: []
-    shapes: []
-    channels: []
-    fullWeights: []
-  m_BindPose: []
-  m_BoneNameHashes: 
-  m_RootBoneNameHash: 0
-  m_BonesAABB: []
-  m_VariableBoneCountWeights:
-    m_Data: 
-  m_MeshCompression: 0
-  m_IsReadable: 1
-  m_KeepVertices: 1
-  m_KeepIndices: 1
-  m_IndexFormat: 0
-  m_IndexBuffer: 000004000100010004000500010005000200020005000600020006000300030006000700030007000000000007000400
-  m_VertexData:
-    serializedVersion: 3
-    m_VertexCount: 8
-    m_Channels:
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 3
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 12
-      format: 0
-      dimension: 4
-    - stream: 0
-      offset: 28
-      format: 0
-      dimension: 2
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    - stream: 0
-      offset: 0
-      format: 0
-      dimension: 0
-    m_DataSize: 288
-    _typelessdata: 0000c03f0ad7233c000090bf000000000000803f0000803f0000803f00000000000000000000c0bf0ad7233c000090bf000000000000803f0000803f0000803f0000803f000000000000c0bf0ad7233c0000903f000000000000803f0000803f0000803f00000000000000000000c03f0ad7233c0000903f000000000000803f0000803f0000803f0000803f000000003333d33f0ad7233c3333a3bf000000000000803f0000803f00000000000000000000803f3333d3bf0ad7233c3333a3bf000000000000803f0000803f000000000000803f0000803f3333d3bf0ad7233c3333a33f000000000000803f0000803f00000000000000000000803f3333d33f0ad7233c3333a33f000000000000803f0000803f000000000000803f0000803f
-  m_CompressedMesh:
-    m_Vertices:
-      m_NumItems: 0
-      m_Range: 0
-      m_Start: 0
-      m_Data: 
-      m_BitSize: 0
-    m_UV:
-      m_NumItems: 0
-      m_Range: 0
-      m_Start: 0
-      m_Data: 
-      m_BitSize: 0
-    m_Normals:
-      m_NumItems: 0
-      m_Range: 0
-      m_Start: 0
-      m_Data: 
-      m_BitSize: 0
-    m_Tangents:
-      m_NumItems: 0
-      m_Range: 0
-      m_Start: 0
-      m_Data: 
-      m_BitSize: 0
-    m_Weights:
-      m_NumItems: 0
-      m_Data: 
-      m_BitSize: 0
-    m_NormalSigns:
-      m_NumItems: 0
-      m_Data: 
-      m_BitSize: 0
-    m_TangentSigns:
-      m_NumItems: 0
-      m_Data: 
-      m_BitSize: 0
-    m_FloatColors:
-      m_NumItems: 0
-      m_Range: 0
-      m_Start: 0
-      m_Data: 
-      m_BitSize: 0
-    m_BoneIndices:
-      m_NumItems: 0
-      m_Data: 
-      m_BitSize: 0
-    m_Triangles:
-      m_NumItems: 0
-      m_Data: 
-      m_BitSize: 0
-    m_UVInfo: 0
-  m_LocalAABB:
-    m_Center: {x: 0, y: 0.01, z: 0}
-    m_Extent: {x: 1.65, y: 0, z: 1.275}
-  m_MeshUsageFlags: 0
-  m_BakedConvexCollisionMesh: 
-  m_BakedTriangleCollisionMesh: 
-  m_MeshMetrics[0]: 1
-  m_MeshMetrics[1]: 1
-  m_MeshOptimizationFlags: 1
-  m_StreamData:
-    serializedVersion: 2
-    offset: 0
-    size: 0
-    path: 
 --- !u!1 &379237262
 GameObject:
   m_ObjectHideFlags: 0
@@ -3986,7 +3827,7 @@ MonoBehaviour:
   m_Script: {fileID: 11500000, guid: 1d71a394b8fb98e4fa49bede70070e0d, type: 3}
   m_Name: 
   m_EditorClassIdentifier: 
-  perspective: 0
+  perspective: 2
   feedback: 1
   monitors: {fileID: 1439097805}
 --- !u!4 &815386529
@@ -4253,7 +4094,7 @@ GameObject:
   m_Icon: {fileID: 0}
   m_NavMeshLayer: 0
   m_StaticEditorFlags: 0
-  m_IsActive: 0
+  m_IsActive: 1
 --- !u!224 &840362528
 RectTransform:
   m_ObjectHideFlags: 0
@@ -4295,11 +4136,11 @@ MonoBehaviour:
       m_Calls: []
   m_FontData:
     m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
-    m_FontSize: 70
+    m_FontSize: 100
     m_FontStyle: 0
     m_BestFit: 0
     m_MinSize: 0
-    m_MaxSize: 80
+    m_MaxSize: 100
     m_Alignment: 4
     m_AlignByGeometry: 0
     m_RichText: 1
@@ -6106,41 +5947,6 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: b7c323073beeb0b42a8412d881577235, type: 3}
---- !u!21 &1290940367
-Material:
-  serializedVersion: 6
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_Name: Sprites/Default
-  m_Shader: {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
-  m_ShaderKeywords: 
-  m_LightmapFlags: 4
-  m_EnableInstancingVariants: 0
-  m_DoubleSidedGI: 0
-  m_CustomRenderQueue: -1
-  stringTagMap: {}
-  disabledShaderPasses: []
-  m_SavedProperties:
-    serializedVersion: 3
-    m_TexEnvs:
-    - _AlphaTex:
-        m_Texture: {fileID: 0}
-        m_Scale: {x: 1, y: 1}
-        m_Offset: {x: 0, y: 0}
-    - _MainTex:
-        m_Texture: {fileID: 0}
-        m_Scale: {x: 1, y: 1}
-        m_Offset: {x: 0, y: 0}
-    m_Floats:
-    - PixelSnap: 0
-    - _EnableExternalAlpha: 0
-    m_Colors:
-    - _Color: {r: 1, g: 1, b: 1, a: 1}
-    - _Flip: {r: 1, g: 1, b: 1, a: 1}
-    - _RendererColor: {r: 1, g: 1, b: 1, a: 1}
-  m_BuildTextureStacks: []
 --- !u!1001 &1300534421
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -8013,6 +7819,41 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: 3f4814451272e874f9d7dc1534b22b63, type: 3}
+--- !u!21 &1751625405
+Material:
+  serializedVersion: 6
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Sprites/Default
+  m_Shader: {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
+  m_ShaderKeywords: 
+  m_LightmapFlags: 4
+  m_EnableInstancingVariants: 0
+  m_DoubleSidedGI: 0
+  m_CustomRenderQueue: -1
+  stringTagMap: {}
+  disabledShaderPasses: []
+  m_SavedProperties:
+    serializedVersion: 3
+    m_TexEnvs:
+    - _AlphaTex:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _MainTex:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    m_Floats:
+    - PixelSnap: 0
+    - _EnableExternalAlpha: 0
+    m_Colors:
+    - _Color: {r: 1, g: 1, b: 1, a: 1}
+    - _Flip: {r: 1, g: 1, b: 1, a: 1}
+    - _RendererColor: {r: 1, g: 1, b: 1, a: 1}
+  m_BuildTextureStacks: []
 --- !u!1001 &1757304997
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -8075,6 +7916,170 @@ Transform:
   m_CorrespondingSourceObject: {fileID: 3490302383230965582, guid: f78cb5e3a28483a41b34edc8c1b57ca1, type: 3}
   m_PrefabInstance: {fileID: 219900623}
   m_PrefabAsset: {fileID: 0}
+--- !u!43 &1761839145
+Mesh:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: 
+  serializedVersion: 10
+  m_SubMeshes:
+  - serializedVersion: 2
+    firstByte: 0
+    indexCount: 24
+    topology: 0
+    baseVertex: 0
+    firstVertex: 0
+    vertexCount: 8
+    localAABB:
+      m_Center: {x: 0, y: 0.01, z: 0}
+      m_Extent: {x: 1.65, y: 0, z: 1.275}
+  m_Shapes:
+    vertices: []
+    shapes: []
+    channels: []
+    fullWeights: []
+  m_BindPose: []
+  m_BoneNameHashes: 
+  m_RootBoneNameHash: 0
+  m_BonesAABB: []
+  m_VariableBoneCountWeights:
+    m_Data: 
+  m_MeshCompression: 0
+  m_IsReadable: 1
+  m_KeepVertices: 1
+  m_KeepIndices: 1
+  m_IndexFormat: 0
+  m_IndexBuffer: 000004000100010004000500010005000200020005000600020006000300030006000700030007000000000007000400
+  m_VertexData:
+    serializedVersion: 3
+    m_VertexCount: 8
+    m_Channels:
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 3
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 12
+      format: 0
+      dimension: 4
+    - stream: 0
+      offset: 28
+      format: 0
+      dimension: 2
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    m_DataSize: 288
+    _typelessdata: 0000c03f0ad7233c000090bf000000000000803f0000803f0000803f00000000000000000000c0bf0ad7233c000090bf000000000000803f0000803f0000803f0000803f000000000000c0bf0ad7233c0000903f000000000000803f0000803f0000803f00000000000000000000c03f0ad7233c0000903f000000000000803f0000803f0000803f0000803f000000003333d33f0ad7233c3333a3bf000000000000803f0000803f00000000000000000000803f3333d3bf0ad7233c3333a3bf000000000000803f0000803f000000000000803f0000803f3333d3bf0ad7233c3333a33f000000000000803f0000803f00000000000000000000803f3333d33f0ad7233c3333a33f000000000000803f0000803f000000000000803f0000803f
+  m_CompressedMesh:
+    m_Vertices:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_UV:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Normals:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Tangents:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Weights:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_NormalSigns:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_TangentSigns:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_FloatColors:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_BoneIndices:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Triangles:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_UVInfo: 0
+  m_LocalAABB:
+    m_Center: {x: 0, y: 0.01, z: 0}
+    m_Extent: {x: 1.65, y: 0, z: 1.275}
+  m_MeshUsageFlags: 0
+  m_BakedConvexCollisionMesh: 
+  m_BakedTriangleCollisionMesh: 
+  m_MeshMetrics[0]: 1
+  m_MeshMetrics[1]: 1
+  m_MeshOptimizationFlags: 1
+  m_StreamData:
+    serializedVersion: 2
+    offset: 0
+    size: 0
+    path: 
 --- !u!1001 &1768957314
 PrefabInstance:
   m_ObjectHideFlags: 0
@@ -8747,7 +8752,7 @@ GameObject:
   m_Icon: {fileID: 0}
   m_NavMeshLayer: 0
   m_StaticEditorFlags: 0
-  m_IsActive: 1
+  m_IsActive: 0
 --- !u!64 &1865471485
 MeshCollider:
   m_ObjectHideFlags: 0

+ 43 - 0
Assets/Scripts/BodyComparer.cs

@@ -105,6 +105,49 @@ public class BodyComparer : MonoBehaviour
             posJointsBodys.Add(oneBodyReal);
             csvTimes.Add(viveInput.csvTime);
 
+            // If pressed stop, end immediately and save last to csv
+            if (!isComparing)
+            {
+                for (int j = i + 1; j < jointsDataDemo.Count; j++)
+                {
+                    List<Vector3> oneBodyDemo2 = new List<Vector3>();
+
+                    for (Kinect.JointType jt = Kinect.JointType.SpineBase; jt <= Kinect.JointType.ThumbRight; jt++)
+                    {
+                        // Skip these joints
+                        if (jt == Kinect.JointType.Head || jt == Kinect.JointType.ThumbLeft || jt == Kinect.JointType.ThumbRight
+                                || jt == Kinect.JointType.HandLeft || jt == Kinect.JointType.HandRight
+                                || jt == Kinect.JointType.HandTipLeft || jt == Kinect.JointType.HandTipRight)
+                            continue;
+
+                        JointsData jd = jointsDataDemo[j];
+                        Vector3 posJointDemo = new Vector3(jd.jointsPositionsX[(int)jt], jd.jointsPositionsY[(int)jt], jd.jointsPositionsZ[(int)jt]);
+
+                        // Save positions demo and real body
+                        oneBodyDemo2.Add(posJointDemo);
+                    }
+                    // Save it to csv later
+                    posJointsDemos.Add(oneBodyDemo2);
+                    posJointsBodys.Add(oneBodyReal);
+                    csvTimes.Add(viveInput.csvTime);
+                }
+
+                // Make all joints white
+                Transform bodyEnd2 = bsv.body.transform;
+                for (Kinect.JointType jt = Kinect.JointType.SpineBase; jt <= Kinect.JointType.ThumbRight; jt++)
+                {
+                    // Skip these joints
+                    if (jt == Kinect.JointType.Head || jt == Kinect.JointType.ThumbLeft || jt == Kinect.JointType.ThumbRight
+                            || jt == Kinect.JointType.HandLeft || jt == Kinect.JointType.HandRight
+                            || jt == Kinect.JointType.HandTipLeft || jt == Kinect.JointType.HandTipRight)
+                        continue;
+
+                    bodyEnd2.GetChild((int)jt).GetComponent<Renderer>().material.color = Color.white;
+                }
+
+                yield break;
+            }
+
             float waitTime = 0;
             if (isComparing && i < recordingTimesDemo.Count - 1)
             {

+ 1 - 1
Assets/Scripts/CSVWriter.cs

@@ -38,7 +38,7 @@ public static class CSVWriter
                 d += Vector3ToString(demo[j]) + ",";
                 b += Vector3ToString(body[j]) + ",";
             }
-            sw.WriteLine(b + d + csvTimes[i]);
+            sw.WriteLine(d + b + csvTimes[i]);
         }
         sw.Close();
     }

+ 4 - 0
Assets/Scripts/PlayerReplay.cs

@@ -289,6 +289,8 @@ public class PlayerReplay : MonoBehaviour
             // Input for end steps. Wait for input if finish comparing. Don't wait for input if comparing is interupted.
             if (!bc.endStepsPressed)
             {
+                // Unknown reason, need 2 times (not working if only 1)
+                yield return ViveInput.WaitForControllerPress();
                 yield return ViveInput.WaitForControllerPress();
             }
             else
@@ -301,6 +303,8 @@ public class PlayerReplay : MonoBehaviour
             Destroy(body);
 
             // Wait for input
+            // Unknown reason, need 2 times (not working if only 1)
+            yield return ViveInput.WaitForControllerPress();
             yield return ViveInput.WaitForControllerPress();
 
             if (finish)

+ 1 - 1
Assets/Scripts/Visualizer_FadeInSeries.cs

@@ -58,7 +58,7 @@ public class Visualizer_FadeInSeries : MonoBehaviour
             return;
         }
 
-        t += Time.deltaTime / 6;
+        t += Time.deltaTime / 8;
     }
 
     public void SetData(List<JointsData> jointsDataSeries, List<float> recordingTimesSeries)

+ 2368 - 2239
Assets/demo_and_body_positions.csv

@@ -1,2240 +1,2369 @@
 Demo_SpineBase,Demo_SpineMid,Demo_Neck,Demo_ShoulderLeft,Demo_ElbowLeft,Demo_WristLeft,Demo_ShoulderRight,Demo_ElbowRight,Demo_WristRight,Demo_HipLeft,Demo_KneeLeft,Demo_AnkleLeft,Demo_FootLeft,Demo_HipRight,Demo_KneeRight,Demo_AnkleRight,Demo_FootRight,Demo_SpineShoulder,Body_SpineBase,Body_SpineMid,Body_Neck,Body_ShoulderLeft,Body_ElbowLeft,Body_WristLeft,Body_ShoulderRight,Body_ElbowRight,Body_WristRight,Body_HipLeft,Body_KneeLeft,Body_AnkleLeft,Body_FootLeft,Body_HipRight,Body_KneeRight,Body_AnkleRight,Body_FootRight,Body_SpineShoulder,time
-0;0;0,0.002436641;0.1998543;0.007232811,0.00597914;0.4997633;0.004057599,0.1171013;0.3771484;-0.02787901,0.166347;0.1837605;-0.01461456,0.1998905;-0.06199098;-0.04593639,-0.1067744;0.3620623;-0.01514878,-0.1592583;0.1696292;-0.0004871516,-0.2023925;-0.07646701;-0.009210683,0.06994338;0.005214401;-0.0384803,0.09208183;-0.2916771;-0.001529861,0.08138457;-0.5847426;0.06170129,0.08881703;-0.6161585;0.00411474,-0.07192885;0.003181179;-0.03487291,-0.0971363;-0.2938948;-0.001549706,-0.09730915;-0.588046;0.05740002,-0.09681457;-0.616434;-0.004689142,0.004791867;0.3998397;0.007782023,0;0;0,0.005091524;0.1993633;0.01511092,0.01269237;0.4990897;0.02337554,0.121635;0.3779111;-0.01571254,0.1750383;0.185516;-0.004215176,0.2284675;-0.05624786;-0.03879229,-0.1018264;0.3635891;-0.0005613361,-0.1602466;0.1723176;0.0009522955,-0.2233;-0.06874961;-0.01931742,0.06949984;0.00331805;-0.03948116,0.08796953;-0.2944105;-0.007597331,0.07659302;-0.5874349;0.0557057,0.09348923;-0.6194868;0.00109797,-0.07221953;0.004704324;-0.03409118,-0.09990639;-0.2927566;-0.006696617,-0.09735795;-0.5876589;0.04831348,-0.1022691;-0.5547873;-0.05008621,0.01023293;0.39912;0.02352733,9.002691
-0;0;0,0.002436641;0.1998543;0.007232811,0.00597914;0.4997633;0.004057599,0.1171013;0.3771484;-0.02787901,0.166347;0.1837605;-0.01461456,0.1998905;-0.06199098;-0.04593639,-0.1067744;0.3620623;-0.01514878,-0.1592583;0.1696292;-0.0004871516,-0.2023925;-0.07646701;-0.009210683,0.06994338;0.005214401;-0.0384803,0.09208183;-0.2916771;-0.001529861,0.08138457;-0.5847426;0.06170129,0.08881703;-0.6161585;0.00411474,-0.07192885;0.003181179;-0.03487291,-0.0971363;-0.2938948;-0.001549706,-0.09730915;-0.588046;0.05740002,-0.09681457;-0.616434;-0.004689142,0.004791867;0.3998397;0.007782023,0;0;0,0.005180052;0.1993537;0.01520783,0.01284371;0.4990745;0.02359627,0.1217318;0.3778993;-0.01564001,0.1749108;0.1854273;-0.00439201,0.22735;-0.05664362;-0.0383305,-0.1017336;0.363252;0.0003226586,-0.1605796;0.1721064;0.001020854,-0.2238421;-0.06885321;-0.01986759,0.0694044;0.003387962;-0.03964278,0.0880436;-0.294308;-0.007554121,0.0768902;-0.5872872;0.05599733,0.09311023;-0.619306;0.001135435,-0.0722883;0.004633582;-0.03395485,-0.1000583;-0.2928499;-0.006891347,-0.09706718;-0.5876613;0.04858228,-0.0978551;-0.6152074;-0.01455235,0.0103703;0.3991052;0.02371628,9.020843
-0;0;0,0.002478882;0.1998521;0.007278789,0.006120064;0.4997611;0.004221636,0.1172367;0.3773376;-0.02778615,0.166531;0.1839647;-0.01448324,0.1999909;-0.06176139;-0.04609237,-0.1066901;0.362064;-0.0149199,-0.1591111;0.1696192;-0.00018657,-0.2021082;-0.07650129;-0.00889974,0.06989393;0.005237794;-0.03856687,0.09238751;-0.2915972;-0.001377884,0.08160779;-0.5846427;0.06193193,0.08907077;-0.6162733;0.004654158,-0.07196148;0.003138661;-0.0348094,-0.09712361;-0.2939368;-0.001447488,-0.09722745;-0.5880628;0.05762836,-0.09693307;-0.6162463;-0.004719477,0.004899045;0.3998365;0.007907615,0;0;0,0.005180052;0.1993537;0.01520783,0.01284371;0.4990745;0.02359627,0.1217318;0.3778993;-0.01564001,0.1749108;0.1854273;-0.00439201,0.22735;-0.05664362;-0.0383305,-0.1017336;0.363252;0.0003226586,-0.1605796;0.1721064;0.001020854,-0.2238421;-0.06885321;-0.01986759,0.0694044;0.003387962;-0.03964278,0.0880436;-0.294308;-0.007554121,0.0768902;-0.5872872;0.05599733,0.09311023;-0.619306;0.001135435,-0.0722883;0.004633582;-0.03395485,-0.1000583;-0.2928499;-0.006891347,-0.09706718;-0.5876613;0.04858228,-0.0978551;-0.6152074;-0.01455235,0.0103703;0.3991052;0.02371628,9.038314
-0;0;0,0.002451156;0.1998521;0.007289989,0.00609372;0.4997618;0.004303731,0.1172179;0.3773879;-0.02772107,0.1665367;0.1840106;-0.0145723,0.1998829;-0.06171978;-0.04626799,-0.1067557;0.3621131;-0.01477898,-0.1590711;0.1696451;2.616923E-05,-0.202019;-0.07650287;-0.008137261,0.06980452;0.00520226;-0.03873325,0.09228769;-0.2916232;-0.001462046,0.08159174;-0.5846094;0.06213596,0.08911999;-0.6162786;0.004921813,-0.07201163;0.003165534;-0.03470308,-0.09714425;-0.2939144;-0.001358539,-0.09734542;-0.5880262;0.05778715,-0.09702063;-0.6166423;-0.004014201,0.004867415;0.3998363;0.00796402,0;0;0,0.005180052;0.1993537;0.01520783,0.01284371;0.4990745;0.02359627,0.1217318;0.3778993;-0.01564001,0.1749108;0.1854273;-0.00439201,0.22735;-0.05664362;-0.0383305,-0.1017336;0.363252;0.0003226586,-0.1605796;0.1721064;0.001020854,-0.2238421;-0.06885321;-0.01986759,0.0694044;0.003387962;-0.03964278,0.0880436;-0.294308;-0.007554121,0.0768902;-0.5872872;0.05599733,0.09311023;-0.619306;0.001135435,-0.0722883;0.004633582;-0.03395485,-0.1000583;-0.2928499;-0.006891347,-0.09706718;-0.5876613;0.04858228,-0.0978551;-0.6152074;-0.01455235,0.0103703;0.3991052;0.02371628,9.054208
-0;0;0,0.002451156;0.1998521;0.007289989,0.00609372;0.4997618;0.004303731,0.1172179;0.3773879;-0.02772107,0.1665367;0.1840106;-0.0145723,0.1998829;-0.06171978;-0.04626799,-0.1067557;0.3621131;-0.01477898,-0.1590711;0.1696451;2.616923E-05,-0.202019;-0.07650287;-0.008137261,0.06980452;0.00520226;-0.03873325,0.09228769;-0.2916232;-0.001462046,0.08159174;-0.5846094;0.06213596,0.08911999;-0.6162786;0.004921813,-0.07201163;0.003165534;-0.03470308,-0.09714425;-0.2939144;-0.001358539,-0.09734542;-0.5880262;0.05778715,-0.09702063;-0.6166423;-0.004014201,0.004867415;0.3998363;0.00796402,0;0;0,0.005180551;0.1993601;0.01512394,0.0129;0.4990801;0.023572,0.1218109;0.3779628;-0.01560401,0.1744528;0.1853178;-0.004800299,0.2267589;-0.05688429;-0.03800022,-0.1017242;0.3631958;0.0003840085,-0.1605389;0.1720405;0.001071735,-0.2245931;-0.06855139;-0.02156943,0.06933799;0.003478799;-0.03975097,0.08795732;-0.2941961;-0.007455774,0.07681815;-0.587183;0.05606277,0.09294216;-0.6185778;0.0002514012,-0.07233844;0.004525669;-0.03386248,-0.1001453;-0.2929806;-0.007088875,-0.09680117;-0.5877014;0.04884335,-0.09799504;-0.6150915;-0.01447608,0.01039224;0.3991115;0.02362119,9.075675
-0;0;0,0.00242531;0.1998501;0.007353296,0.006074388;0.4997608;0.004485175,0.1172081;0.3773889;-0.02752867,0.1664637;0.1839892;-0.01447324,0.1996651;-0.061702;-0.04662127,-0.1068067;0.362191;-0.01464356,-0.15904;0.1697036;0.0001982627,-0.2015744;-0.07654059;-0.007192864,0.06986187;0.005214857;-0.03862803,0.09232572;-0.2916101;-0.001341246,0.08174792;-0.5845771;0.06236504,0.08999472;-0.6167167;0.005928561,-0.07197649;0.003122661;-0.03477979,-0.09707058;-0.2940036;-0.001821235,-0.09738171;-0.5880052;0.05786953,-0.09647033;-0.6153548;-0.005504031,0.004841666;0.399834;0.008108295,0;0;0,0.005180551;0.1993601;0.01512394,0.0129;0.4990801;0.023572,0.1218109;0.3779628;-0.01560401,0.1744528;0.1853178;-0.004800299,0.2267589;-0.05688429;-0.03800022,-0.1017242;0.3631958;0.0003840085,-0.1605389;0.1720405;0.001071735,-0.2245931;-0.06855139;-0.02156943,0.06933799;0.003478799;-0.03975097,0.08795732;-0.2941961;-0.007455774,0.07681815;-0.587183;0.05606277,0.09294216;-0.6185778;0.0002514012,-0.07233844;0.004525669;-0.03386248,-0.1001453;-0.2929806;-0.007088875,-0.09680117;-0.5877014;0.04884335,-0.09799504;-0.6150915;-0.01447608,0.01039224;0.3991115;0.02362119,9.098436
-0;0;0,0.00242531;0.1998501;0.007353296,0.006074388;0.4997608;0.004485175,0.1172081;0.3773889;-0.02752867,0.1664637;0.1839892;-0.01447324,0.1996651;-0.061702;-0.04662127,-0.1068067;0.362191;-0.01464356,-0.15904;0.1697036;0.0001982627,-0.2015744;-0.07654059;-0.007192864,0.06986187;0.005214857;-0.03862803,0.09232572;-0.2916101;-0.001341246,0.08174792;-0.5845771;0.06236504,0.08999472;-0.6167167;0.005928561,-0.07197649;0.003122661;-0.03477979,-0.09707058;-0.2940036;-0.001821235,-0.09738171;-0.5880052;0.05786953,-0.09647033;-0.6153548;-0.005504031,0.004841666;0.399834;0.008108295,0;0;0,0.005180551;0.1993601;0.01512394,0.0129;0.4990801;0.023572,0.1218109;0.3779628;-0.01560401,0.1744528;0.1853178;-0.004800299,0.2267589;-0.05688429;-0.03800022,-0.1017242;0.3631958;0.0003840085,-0.1605389;0.1720405;0.001071735,-0.2245931;-0.06855139;-0.02156943,0.06933799;0.003478799;-0.03975097,0.08795732;-0.2941961;-0.007455774,0.07681815;-0.587183;0.05606277,0.09294216;-0.6185778;0.0002514012,-0.07233844;0.004525669;-0.03386248,-0.1001453;-0.2929806;-0.007088875,-0.09680117;-0.5877014;0.04884335,-0.09799504;-0.6150915;-0.01447608,0.01039224;0.3991115;0.02362119,9.120399
-0;0;0,0.002583826;0.1998474;0.007372429,0.006436037;0.4997563;0.004582245,0.1174927;0.3773078;-0.02745453,0.1666749;0.1838924;-0.01435507,0.1999795;-0.06169811;-0.04715915,-0.1065767;0.3622512;-0.01434136,-0.1586904;0.1697318;0.0005058832,-0.2006816;-0.07661603;-0.006529568,0.06985596;0.005103509;-0.03865358,0.09281398;-0.2917436;-0.0018471,0.08269376;-0.584673;0.06210574,0.09092847;-0.6165965;0.005354229,-0.07192791;0.003216529;-0.03487162,-0.0967321;-0.2939116;-0.001711298,-0.09712277;-0.5878994;0.05804656,-0.09609177;-0.6151736;-0.005417164,0.005140426;0.3998294;0.008179002,0;0;0,0.0051098;0.1993579;0.01517573,0.01273662;0.4990767;0.02378521,0.1216781;0.3780839;-0.01551674,0.1741929;0.185401;-0.004768721,0.2260195;-0.05700999;-0.03718664,-0.1017597;0.3629218;0.0004417244,-0.1603651;0.1717024;0.001182021,-0.2245523;-0.06880876;-0.02193497,0.06929161;0.003568512;-0.03982386,0.08796746;-0.2940796;-0.007314753,0.07681615;-0.587079;0.05614392,0.09269813;-0.6190909;0.001172829,-0.07238305;0.004414564;-0.03378172,-0.1002304;-0.2930865;-0.006993135,-0.09686439;-0.5877911;0.04902368,-0.09802886;-0.6160205;-0.01325636,0.01025336;0.3991075;0.02375824,9.131655
-0;0;0,0.002583826;0.1998474;0.007372429,0.006436037;0.4997563;0.004582245,0.1174927;0.3773078;-0.02745453,0.1666749;0.1838924;-0.01435507,0.1999795;-0.06169811;-0.04715915,-0.1065767;0.3622512;-0.01434136,-0.1586904;0.1697318;0.0005058832,-0.2006816;-0.07661603;-0.006529568,0.06985596;0.005103509;-0.03865358,0.09281398;-0.2917436;-0.0018471,0.08269376;-0.584673;0.06210574,0.09092847;-0.6165965;0.005354229,-0.07192791;0.003216529;-0.03487162,-0.0967321;-0.2939116;-0.001711298,-0.09712277;-0.5878994;0.05804656,-0.09609177;-0.6151736;-0.005417164,0.005140426;0.3998294;0.008179002,0;0;0,0.0051098;0.1993579;0.01517573,0.01273662;0.4990767;0.02378521,0.1216781;0.3780839;-0.01551674,0.1741929;0.185401;-0.004768721,0.2260195;-0.05700999;-0.03718664,-0.1017597;0.3629218;0.0004417244,-0.1603651;0.1717024;0.001182021,-0.2245523;-0.06880876;-0.02193497,0.06929161;0.003568512;-0.03982386,0.08796746;-0.2940796;-0.007314753,0.07681615;-0.587079;0.05614392,0.09269813;-0.6190909;0.001172829,-0.07238305;0.004414564;-0.03378172,-0.1002304;-0.2930865;-0.006993135,-0.09686439;-0.5877911;0.04902368,-0.09802886;-0.6160205;-0.01325636,0.01025336;0.3991075;0.02375824,9.142844
-0;0;0,0.002583826;0.1998474;0.007372429,0.006436037;0.4997563;0.004582245,0.1174927;0.3773078;-0.02745453,0.1666749;0.1838924;-0.01435507,0.1999795;-0.06169811;-0.04715915,-0.1065767;0.3622512;-0.01434136,-0.1586904;0.1697318;0.0005058832,-0.2006816;-0.07661603;-0.006529568,0.06985596;0.005103509;-0.03865358,0.09281398;-0.2917436;-0.0018471,0.08269376;-0.584673;0.06210574,0.09092847;-0.6165965;0.005354229,-0.07192791;0.003216529;-0.03487162,-0.0967321;-0.2939116;-0.001711298,-0.09712277;-0.5878994;0.05804656,-0.09609177;-0.6151736;-0.005417164,0.005140426;0.3998294;0.008179002,0;0;0,0.0051098;0.1993579;0.01517573,0.01273662;0.4990767;0.02378521,0.1216781;0.3780839;-0.01551674,0.1741929;0.185401;-0.004768721,0.2260195;-0.05700999;-0.03718664,-0.1017597;0.3629218;0.0004417244,-0.1603651;0.1717024;0.001182021,-0.2245523;-0.06880876;-0.02193497,0.06929161;0.003568512;-0.03982386,0.08796746;-0.2940796;-0.007314753,0.07681615;-0.587079;0.05614392,0.09269813;-0.6190909;0.001172829,-0.07238305;0.004414564;-0.03378172,-0.1002304;-0.2930865;-0.006993135,-0.09686439;-0.5877911;0.04902368,-0.09802886;-0.6160205;-0.01325636,0.01025336;0.3991075;0.02375824,9.15486
-0;0;0,0.002592777;0.199849;0.007324368,0.006508023;0.4997575;0.004548577,0.1175841;0.3772587;-0.02732222,0.1669414;0.1838772;-0.0143817,0.2001373;-0.06168801;-0.04748376,-0.1066873;0.3623953;-0.01384415,-0.1587426;0.1698503;0.0008764109,-0.200213;-0.07658803;-0.006075622,0.06991487;0.00511529;-0.03854535,0.09313761;-0.2917404;-0.001974959,0.08292097;-0.5845519;0.06250024,0.09116115;-0.6163786;0.005610093,-0.0718952;0.00318099;-0.03494224,-0.0965694;-0.2939124;-0.001375545,-0.0969729;-0.5878929;0.05841796,-0.09589974;-0.6151026;-0.005123515,0.005185748;0.3998306;0.008133657,0;0;0,0.005131838;0.1993538;0.01522284,0.01277423;0.4990703;0.0238844,0.1216715;0.3780325;-0.01551804,0.1741055;0.1853312;-0.004707228,0.2253394;-0.05724816;-0.03680634,-0.1018111;0.3628399;0.001062423,-0.160566;0.171665;0.001039803,-0.2247471;-0.06883556;-0.02220434,0.06929472;0.003644092;-0.03981157,0.08796433;-0.2940136;-0.007387076,0.07646915;-0.5869097;0.05648601,0.09311341;-0.6177514;2.742186E-05,-0.0723853;0.00432288;-0.03378875,-0.1002417;-0.2931749;-0.00697241,-0.09688706;-0.587926;0.04879982,-0.0987909;-0.6153039;-0.01451713,0.01028696;0.3991013;0.02384695,9.166183
-0;0;0,0.002592777;0.199849;0.007324368,0.006508023;0.4997575;0.004548577,0.1175841;0.3772587;-0.02732222,0.1669414;0.1838772;-0.0143817,0.2001373;-0.06168801;-0.04748376,-0.1066873;0.3623953;-0.01384415,-0.1587426;0.1698503;0.0008764109,-0.200213;-0.07658803;-0.006075622,0.06991487;0.00511529;-0.03854535,0.09313761;-0.2917404;-0.001974959,0.08292097;-0.5845519;0.06250024,0.09116115;-0.6163786;0.005610093,-0.0718952;0.00318099;-0.03494224,-0.0965694;-0.2939124;-0.001375545,-0.0969729;-0.5878929;0.05841796,-0.09589974;-0.6151026;-0.005123515,0.005185748;0.3998306;0.008133657,0;0;0,0.005131838;0.1993538;0.01522284,0.01277423;0.4990703;0.0238844,0.1216715;0.3780325;-0.01551804,0.1741055;0.1853312;-0.004707228,0.2253394;-0.05724816;-0.03680634,-0.1018111;0.3628399;0.001062423,-0.160566;0.171665;0.001039803,-0.2247471;-0.06883556;-0.02220434,0.06929472;0.003644092;-0.03981157,0.08796433;-0.2940136;-0.007387076,0.07646915;-0.5869097;0.05648601,0.09311341;-0.6177514;2.742186E-05,-0.0723853;0.00432288;-0.03378875,-0.1002417;-0.2931749;-0.00697241,-0.09688706;-0.587926;0.04879982,-0.0987909;-0.6153039;-0.01451713,0.01028696;0.3991013;0.02384695,9.187263
-0;0;0,0.002524668;0.1998443;0.007475569,0.006380477;0.4997547;0.004848065,0.1174663;0.3772937;-0.02712663,0.1666913;0.1838709;-0.01430015,0.1999253;-0.06160496;-0.0480214,-0.106785;0.3623897;-0.01363323,-0.158764;0.1698287;0.001146411,-0.2000359;-0.07664351;-0.005788906,0.06979046;0.005154415;-0.03876499,0.0929996;-0.2916426;-0.001712929,0.08276629;-0.5844207;0.06291105,0.09081603;-0.6161081;0.005793851,-0.07199655;0.003157746;-0.03473508,-0.09669217;-0.2939118;-0.0009733289,-0.09706163;-0.5878818;0.058872,-0.09630413;-0.6149229;-0.004878186,0.005078931;0.3998259;0.008389244,0;0;0,0.005131838;0.1993538;0.01522284,0.01277423;0.4990703;0.0238844,0.1216715;0.3780325;-0.01551804,0.1741055;0.1853312;-0.004707228,0.2253394;-0.05724816;-0.03680634,-0.1018111;0.3628399;0.001062423,-0.160566;0.171665;0.001039803,-0.2247471;-0.06883556;-0.02220434,0.06929472;0.003644092;-0.03981157,0.08796433;-0.2940136;-0.007387076,0.07646915;-0.5869097;0.05648601,0.09311341;-0.6177514;2.742186E-05,-0.0723853;0.00432288;-0.03378875,-0.1002417;-0.2931749;-0.00697241,-0.09688706;-0.587926;0.04879982,-0.0987909;-0.6153039;-0.01451713,0.01028696;0.3991013;0.02384695,9.209695
-0;0;0,0.002549171;0.1998429;0.007504293,0.006465064;0.4997531;0.004941204,0.1175206;0.3774442;-0.02717584,0.1666639;0.1839924;-0.01447345,0.2001374;-0.06140848;-0.04850173,-0.1067401;0.3624213;-0.01353143,-0.1586668;0.1698409;0.001179117,-0.1995881;-0.07666801;-0.006488928,0.06980369;0.005148263;-0.03874196,0.09312324;-0.291651;-0.001777101,0.08347472;-0.5845525;0.06237604,0.09135216;-0.6161755;0.005142938,-0.07196805;0.003157637;-0.03479409,-0.09662965;-0.2939352;-0.001213428,-0.09693488;-0.5878371;0.05896594,-0.09553671;-0.6155692;-0.003928889,0.005141001;0.3998238;0.008460979,0;0;0,0.005050349;0.1993564;0.01521619,0.01260117;0.4990743;0.02394295,0.1214864;0.378099;-0.01561759,0.1738241;0.1853839;-0.004587531,0.2248846;-0.05726196;-0.03645941,-0.1019165;0.3627135;0.001034498,-0.1605446;0.1714996;0.001089835,-0.2246927;-0.06893587;-0.02290627,0.06930757;0.003788911;-0.03977567,0.08791625;-0.2938723;-0.007348638,0.07632314;-0.5867336;0.05666621,0.09251683;-0.617188;-0.0004726239,-0.07239411;0.004107515;-0.03379675,-0.100162;-0.2934209;-0.007229835,-0.09714204;-0.5881661;0.0485924,-0.09890208;-0.6152066;-0.01513879,0.01013064;0.3991048;0.02386205,9.232076
-0;0;0,0.002549171;0.1998429;0.007504293,0.006465064;0.4997531;0.004941204,0.1175206;0.3774442;-0.02717584,0.1666639;0.1839924;-0.01447345,0.2001374;-0.06140848;-0.04850173,-0.1067401;0.3624213;-0.01353143,-0.1586668;0.1698409;0.001179117,-0.1995881;-0.07666801;-0.006488928,0.06980369;0.005148263;-0.03874196,0.09312324;-0.291651;-0.001777101,0.08347472;-0.5845525;0.06237604,0.09135216;-0.6161755;0.005142938,-0.07196805;0.003157637;-0.03479409,-0.09662965;-0.2939352;-0.001213428,-0.09693488;-0.5878371;0.05896594,-0.09553671;-0.6155692;-0.003928889,0.005141001;0.3998238;0.008460979,0;0;0,0.005050349;0.1993564;0.01521619,0.01260117;0.4990743;0.02394295,0.1214864;0.378099;-0.01561759,0.1738241;0.1853839;-0.004587531,0.2248846;-0.05726196;-0.03645941,-0.1019165;0.3627135;0.001034498,-0.1605446;0.1714996;0.001089835,-0.2246927;-0.06893587;-0.02290627,0.06930757;0.003788911;-0.03977567,0.08791625;-0.2938723;-0.007348638,0.07632314;-0.5867336;0.05666621,0.09251683;-0.617188;-0.0004726239,-0.07239411;0.004107515;-0.03379675,-0.100162;-0.2934209;-0.007229835,-0.09714204;-0.5881661;0.0485924,-0.09890208;-0.6152066;-0.01513879,0.01013064;0.3991048;0.02386205,9.24348
-0;0;0,0.002449677;0.1998365;0.007705202,0.006309796;0.499749;0.005389053,0.1172863;0.3776796;-0.02722521,0.1666817;0.1843049;-0.01432762,0.2003131;-0.06100236;-0.04887131,-0.1068114;0.3620858;-0.01297537,-0.1586951;0.169493;0.001725029,-0.1993173;-0.07705432;-0.006291255,0.06977134;0.005274039;-0.0387833,0.09297024;-0.2914482;-0.00113051,0.08326808;-0.5843484;0.06302047,0.0904485;-0.6154865;0.005011372,-0.07200653;0.003020624;-0.03472658,-0.09681944;-0.293993;-0.0005619898,-0.09716709;-0.5878975;0.05960437,-0.09571498;-0.6163148;-0.00243292,0.004994552;0.3998171;0.008836986,0;0;0,0.005050349;0.1993564;0.01521619,0.01260117;0.4990743;0.02394295,0.1214864;0.378099;-0.01561759,0.1738241;0.1853839;-0.004587531,0.2248846;-0.05726196;-0.03645941,-0.1019165;0.3627135;0.001034498,-0.1605446;0.1714996;0.001089835,-0.2246927;-0.06893587;-0.02290627,0.06930757;0.003788911;-0.03977567,0.08791625;-0.2938723;-0.007348638,0.07632314;-0.5867336;0.05666621,0.09251683;-0.617188;-0.0004726239,-0.07239411;0.004107515;-0.03379675,-0.100162;-0.2934209;-0.007229835,-0.09714204;-0.5881661;0.0485924,-0.09890208;-0.6152066;-0.01513879,0.01013064;0.3991048;0.02386205,9.265571
-0;0;0,0.002449677;0.1998365;0.007705202,0.006309796;0.499749;0.005389053,0.1172863;0.3776796;-0.02722521,0.1666817;0.1843049;-0.01432762,0.2003131;-0.06100236;-0.04887131,-0.1068114;0.3620858;-0.01297537,-0.1586951;0.169493;0.001725029,-0.1993173;-0.07705432;-0.006291255,0.06977134;0.005274039;-0.0387833,0.09297024;-0.2914482;-0.00113051,0.08326808;-0.5843484;0.06302047,0.0904485;-0.6154865;0.005011372,-0.07200653;0.003020624;-0.03472658,-0.09681944;-0.293993;-0.0005619898,-0.09716709;-0.5878975;0.05960437,-0.09571498;-0.6163148;-0.00243292,0.004994552;0.3998171;0.008836986,0;0;0,0.005015993;0.199362;0.01515421,0.01252506;0.4990829;0.02385401,0.1214016;0.3781261;-0.01577711,0.173704;0.1854041;-0.004701797,0.224513;-0.05736965;-0.03599662,-0.1019082;0.3625424;0.0008301158,-0.1604277;0.1712953;0.0007575823,-0.2242992;-0.06922983;-0.02307744,0.06933112;0.0039128;-0.0397226,0.087879;-0.2937683;-0.007443886,0.07546574;-0.5866064;0.0565234,0.09267754;-0.6165199;-0.001075,-0.07234623;0.003864073;-0.03392774,-0.1000522;-0.2937065;-0.007771399,-0.09753754;-0.5884165;0.04826148,-0.09871457;-0.6148536;-0.01620543,0.01006074;0.3991133;0.02375443,9.276942
-0;0;0,0.002449677;0.1998365;0.007705202,0.006309796;0.499749;0.005389053,0.1172863;0.3776796;-0.02722521,0.1666817;0.1843049;-0.01432762,0.2003131;-0.06100236;-0.04887131,-0.1068114;0.3620858;-0.01297537,-0.1586951;0.169493;0.001725029,-0.1993173;-0.07705432;-0.006291255,0.06977134;0.005274039;-0.0387833,0.09297024;-0.2914482;-0.00113051,0.08326808;-0.5843484;0.06302047,0.0904485;-0.6154865;0.005011372,-0.07200653;0.003020624;-0.03472658,-0.09681944;-0.293993;-0.0005619898,-0.09716709;-0.5878975;0.05960437,-0.09571498;-0.6163148;-0.00243292,0.004994552;0.3998171;0.008836986,0;0;0,0.005015993;0.199362;0.01515421,0.01252506;0.4990829;0.02385401,0.1214016;0.3781261;-0.01577711,0.173704;0.1854041;-0.004701797,0.224513;-0.05736965;-0.03599662,-0.1019082;0.3625424;0.0008301158,-0.1604277;0.1712953;0.0007575823,-0.2242992;-0.06922983;-0.02307744,0.06933112;0.0039128;-0.0397226,0.087879;-0.2937683;-0.007443886,0.07546574;-0.5866064;0.0565234,0.09267754;-0.6165199;-0.001075,-0.07234623;0.003864073;-0.03392774,-0.1000522;-0.2937065;-0.007771399,-0.09753754;-0.5884165;0.04826148,-0.09871457;-0.6148536;-0.01620543,0.01006074;0.3991133;0.02375443,9.287963
-0;0;0,0.002469336;0.1998375;0.00767457,0.006370755;0.4997493;0.005334472,0.1172828;0.3776885;-0.02743082,0.1666671;0.1843029;-0.01465555,0.2004014;-0.06100874;-0.04906772,-0.106809;0.3622127;-0.01302385,-0.1586299;0.1696032;0.001678688,-0.1992117;-0.07693414;-0.006834137,0.06974136;0.00522053;-0.03884441,0.09298432;-0.2915362;-0.001491677,0.08327048;-0.5843691;0.06296432,0.09049249;-0.6156502;0.005161081,-0.07200468;0.003056268;-0.03472732,-0.09679584;-0.2939464;-0.0004520677,-0.09719019;-0.5879124;0.05941295,-0.09633548;-0.6166219;-0.002264421,0.005039636;0.3998178;0.008787577,0;0;0,0.005015993;0.199362;0.01515421,0.01252506;0.4990829;0.02385401,0.1214016;0.3781261;-0.01577711,0.173704;0.1854041;-0.004701797,0.224513;-0.05736965;-0.03599662,-0.1019082;0.3625424;0.0008301158,-0.1604277;0.1712953;0.0007575823,-0.2242992;-0.06922983;-0.02307744,0.06933112;0.0039128;-0.0397226,0.087879;-0.2937683;-0.007443886,0.07546574;-0.5866064;0.0565234,0.09267754;-0.6165199;-0.001075,-0.07234623;0.003864073;-0.03392774,-0.1000522;-0.2937065;-0.007771399,-0.09753754;-0.5884165;0.04826148,-0.09871457;-0.6148536;-0.01620543,0.01006074;0.3991133;0.02375443,9.310112
-0;0;0,0.002511207;0.199837;0.007672794,0.006468437;0.4997486;0.005371271,0.1173524;0.377776;-0.02749497,0.1667286;0.1843823;-0.01481193,0.2004557;-0.06094019;-0.04915372,-0.1067327;0.3621561;-0.01289098,-0.1585996;0.1695557;0.001769594,-0.1990102;-0.07698251;-0.007496733,0.06966872;0.005198863;-0.03897744,0.09304351;-0.2915579;-0.001707759,0.08346443;-0.584347;0.06296699,0.09049027;-0.6154739;0.004923411,-0.07203937;0.003073288;-0.03465378,-0.09684757;-0.293925;-0.0003528185,-0.09715824;-0.5879148;0.05939588,-0.09636763;-0.6161498;-0.002883017,0.005119154;0.3998168;0.008807938,0;0;0,0.00499418;0.1993643;0.01513022,0.01245544;0.4990876;0.02380877,0.1213482;0.3781254;-0.01580595,0.1736165;0.1853958;-0.004700945,0.2243912;-0.05744682;-0.03551349,-0.1020584;0.3624819;0.001329636,-0.1606795;0.1712667;0.000776751,-0.2245852;-0.0692323;-0.02322919,0.06931476;0.003929467;-0.03974951,0.08788188;-0.2937498;-0.007464688,0.07546548;-0.5865886;0.05649874,0.09219897;-0.6159799;-0.001956359,-0.07235767;0.003866271;-0.03390309,-0.09993681;-0.2937352;-0.007965824,-0.09759545;-0.5883865;0.0483826,-0.09769951;-0.6174592;-0.01283417,0.01000055;0.3991178;0.02370381,9.332661
-0;0;0,0.002511207;0.199837;0.007672794,0.006468437;0.4997486;0.005371271,0.1173524;0.377776;-0.02749497,0.1667286;0.1843823;-0.01481193,0.2004557;-0.06094019;-0.04915372,-0.1067327;0.3621561;-0.01289098,-0.1585996;0.1695557;0.001769594,-0.1990102;-0.07698251;-0.007496733,0.06966872;0.005198863;-0.03897744,0.09304351;-0.2915579;-0.001707759,0.08346443;-0.584347;0.06296699,0.09049027;-0.6154739;0.004923411,-0.07203937;0.003073288;-0.03465378,-0.09684757;-0.293925;-0.0003528185,-0.09715824;-0.5879148;0.05939588,-0.09636763;-0.6161498;-0.002883017,0.005119154;0.3998168;0.008807938,0;0;0,0.00499418;0.1993643;0.01513022,0.01245544;0.4990876;0.02380877,0.1213482;0.3781254;-0.01580595,0.1736165;0.1853958;-0.004700945,0.2243912;-0.05744682;-0.03551349,-0.1020584;0.3624819;0.001329636,-0.1606795;0.1712667;0.000776751,-0.2245852;-0.0692323;-0.02322919,0.06931476;0.003929467;-0.03974951,0.08788188;-0.2937498;-0.007464688,0.07546548;-0.5865886;0.05649874,0.09219897;-0.6159799;-0.001956359,-0.07235767;0.003866271;-0.03390309,-0.09993681;-0.2937352;-0.007965824,-0.09759545;-0.5883865;0.0483826,-0.09769951;-0.6174592;-0.01283417,0.01000055;0.3991178;0.02370381,9.34395
-0;0;0,0.002565444;0.1998314;0.007798325,0.006626405;0.4997434;0.005625418,0.1174216;0.3778298;-0.02744059,0.1668918;0.1844635;-0.01470607,0.2006095;-0.06085971;-0.04905213,-0.1066279;0.3621161;-0.0126573,-0.1583808;0.1694876;0.002036055,-0.1988886;-0.07699399;-0.008257444,0.06960506;0.005231486;-0.03908666,0.09303246;-0.2914845;-0.001526453,0.08321909;-0.5842034;0.06343006,0.09037653;-0.6154385;0.005553976,-0.07208839;0.003019174;-0.03455646,-0.09692724;-0.2939669;-0.0001714192,-0.09723692;-0.5879601;0.05956043,-0.09651848;-0.6161867;-0.002729837,0.005220876;0.3998102;0.008999348,0;0;0,0.00499418;0.1993643;0.01513022,0.01245544;0.4990876;0.02380877,0.1213482;0.3781254;-0.01580595,0.1736165;0.1853958;-0.004700945,0.2243912;-0.05744682;-0.03551349,-0.1020584;0.3624819;0.001329636,-0.1606795;0.1712667;0.000776751,-0.2245852;-0.0692323;-0.02322919,0.06931476;0.003929467;-0.03974951,0.08788188;-0.2937498;-0.007464688,0.07546548;-0.5865886;0.05649874,0.09219897;-0.6159799;-0.001956359,-0.07235767;0.003866271;-0.03390309,-0.09993681;-0.2937352;-0.007965824,-0.09759545;-0.5883865;0.0483826,-0.09769951;-0.6174592;-0.01283417,0.01000055;0.3991178;0.02370381,9.365932
-0;0;0,0.002565444;0.1998314;0.007798325,0.006626405;0.4997434;0.005625418,0.1174216;0.3778298;-0.02744059,0.1668918;0.1844635;-0.01470607,0.2006095;-0.06085971;-0.04905213,-0.1066279;0.3621161;-0.0126573,-0.1583808;0.1694876;0.002036055,-0.1988886;-0.07699399;-0.008257444,0.06960506;0.005231486;-0.03908666,0.09303246;-0.2914845;-0.001526453,0.08321909;-0.5842034;0.06343006,0.09037653;-0.6154385;0.005553976,-0.07208839;0.003019174;-0.03455646,-0.09692724;-0.2939669;-0.0001714192,-0.09723692;-0.5879601;0.05956043,-0.09651848;-0.6161867;-0.002729837,0.005220876;0.3998102;0.008999348,0;0;0,0.004940924;0.1993653;0.01513477,0.01234074;0.4990897;0.02383892,0.1212628;0.3781557;-0.01577583,0.1734575;0.1854072;-0.004652417,0.224127;-0.05751477;-0.03500898,-0.1023348;0.3627333;0.001838136,-0.1607833;0.1714671;0.000838137,-0.2245607;-0.06901436;-0.02367966,0.06932906;0.003937508;-0.03972376,0.08787056;-0.293743;-0.007435512,0.07542086;-0.586573;0.05656127,0.09207682;-0.6161056;-0.001723826,-0.0723153;0.003873102;-0.0339926,-0.09996428;-0.2937215;-0.008050354,-0.09752845;-0.5882328;0.04902124,-0.09751602;-0.616738;-0.01292162,0.009903337;0.3991195;0.02371587,9.37791
-0;0;0,0.002608217;0.1998304;0.007810296,0.006730799;0.4997419;0.005687362,0.1174408;0.3779731;-0.02767857,0.1668949;0.1846198;-0.01468685,0.2005658;-0.06070773;-0.04904811,-0.1063881;0.3615376;-0.01240673,-0.158273;0.1689516;0.002378543,-0.1988097;-0.07749465;-0.008621923,0.06955753;0.005197121;-0.03917575,0.09302203;-0.2915119;-0.001583371,0.08305679;-0.5841967;0.06350356,0.0903794;-0.6157516;0.006099939,-0.07212342;0.003057434;-0.03447992,-0.09827808;-0.2937413;0.0005405955,-0.09679525;-0.5877377;0.06023951,-0.09617233;-0.6159694;-0.002045453,0.005304249;0.3998085;0.009044683,0;0;0,0.004940924;0.1993653;0.01513477,0.01234074;0.4990897;0.02383892,0.1212628;0.3781557;-0.01577583,0.1734575;0.1854072;-0.004652417,0.224127;-0.05751477;-0.03500898,-0.1023348;0.3627333;0.001838136,-0.1607833;0.1714671;0.000838137,-0.2245607;-0.06901436;-0.02367966,0.06932906;0.003937508;-0.03972376,0.08787056;-0.293743;-0.007435512,0.07542086;-0.586573;0.05656127,0.09207682;-0.6161056;-0.001723826,-0.0723153;0.003873102;-0.0339926,-0.09996428;-0.2937215;-0.008050354,-0.09752845;-0.5882328;0.04902124,-0.09751602;-0.616738;-0.01292162,0.009903337;0.3991195;0.02371587,9.400166
-0;0;0,0.002608217;0.1998304;0.007810296,0.006730799;0.4997419;0.005687362,0.1174408;0.3779731;-0.02767857,0.1668949;0.1846198;-0.01468685,0.2005658;-0.06070773;-0.04904811,-0.1063881;0.3615376;-0.01240673,-0.158273;0.1689516;0.002378543,-0.1988097;-0.07749465;-0.008621923,0.06955753;0.005197121;-0.03917575,0.09302203;-0.2915119;-0.001583371,0.08305679;-0.5841967;0.06350356,0.0903794;-0.6157516;0.006099939,-0.07212342;0.003057434;-0.03447992,-0.09827808;-0.2937413;0.0005405955,-0.09679525;-0.5877377;0.06023951,-0.09617233;-0.6159694;-0.002045453,0.005304249;0.3998085;0.009044683,0;0;0,0.004940924;0.1993653;0.01513477,0.01234074;0.4990897;0.02383892,0.1212628;0.3781557;-0.01577583,0.1734575;0.1854072;-0.004652417,0.224127;-0.05751477;-0.03500898,-0.1023348;0.3627333;0.001838136,-0.1607833;0.1714671;0.000838137,-0.2245607;-0.06901436;-0.02367966,0.06932906;0.003937508;-0.03972376,0.08787056;-0.293743;-0.007435512,0.07542086;-0.586573;0.05656127,0.09207682;-0.6161056;-0.001723826,-0.0723153;0.003873102;-0.0339926,-0.09996428;-0.2937215;-0.008050354,-0.09752845;-0.5882328;0.04902124,-0.09751602;-0.616738;-0.01292162,0.009903337;0.3991195;0.02371587,9.423145
-0;0;0,0.002622669;0.1998292;0.007837804,0.006759075;0.4997406;0.005752422,0.1174512;0.3779148;-0.02763409,0.166908;0.1845579;-0.01470704,0.2004426;-0.06079274;-0.0490364,-0.10644;0.3616197;-0.01209626,-0.1580521;0.1689389;0.002405469,-0.1996833;-0.07731281;-0.008862226,0.06948192;0.005107954;-0.03932137,0.09297912;-0.2915726;-0.001525,0.08330541;-0.5842968;0.06342872,0.09033499;-0.6159471;0.006124172,-0.07216173;0.003108551;-0.03439508,-0.0982812;-0.2937025;0.0005478784,-0.09682956;-0.5876859;0.06031072,-0.09640887;-0.6158919;-0.002008248,0.005329506;0.3998069;0.009100881,0;0;0,0.004919049;0.1993683;0.01510218,0.01228102;0.4990951;0.02377239,0.1212284;0.3781539;-0.01577579,0.1733519;0.185396;-0.004482732,0.2239375;-0.05756067;-0.03470088,-0.1024487;0.3627192;0.002105335,-0.1608298;0.1714343;0.0007911465,-0.224621;-0.06903337;-0.02382567,0.06932954;0.003944419;-0.03972223,0.08781212;-0.2937214;-0.007265192,0.07553717;-0.5865996;0.05654461,0.09197497;-0.6161524;-0.001774706,-0.07233322;0.003874387;-0.03395432,-0.09991314;-0.2937388;-0.008152269,-0.0975548;-0.5882452;0.04894819,-0.09724911;-0.6168634;-0.01285052,0.009847392;0.3991247;0.02365125,9.434804
-0;0;0,0.002622669;0.1998292;0.007837804,0.006759075;0.4997406;0.005752422,0.1174512;0.3779148;-0.02763409,0.166908;0.1845579;-0.01470704,0.2004426;-0.06079274;-0.0490364,-0.10644;0.3616197;-0.01209626,-0.1580521;0.1689389;0.002405469,-0.1996833;-0.07731281;-0.008862226,0.06948192;0.005107954;-0.03932137,0.09297912;-0.2915726;-0.001525,0.08330541;-0.5842968;0.06342872,0.09033499;-0.6159471;0.006124172,-0.07216173;0.003108551;-0.03439508,-0.0982812;-0.2937025;0.0005478784,-0.09682956;-0.5876859;0.06031072,-0.09640887;-0.6158919;-0.002008248,0.005329506;0.3998069;0.009100881,0;0;0,0.004919049;0.1993683;0.01510218,0.01228102;0.4990951;0.02377239,0.1212284;0.3781539;-0.01577579,0.1733519;0.185396;-0.004482732,0.2239375;-0.05756067;-0.03470088,-0.1024487;0.3627192;0.002105335,-0.1608298;0.1714343;0.0007911465,-0.224621;-0.06903337;-0.02382567,0.06932954;0.003944419;-0.03972223,0.08781212;-0.2937214;-0.007265192,0.07553717;-0.5865996;0.05654461,0.09197497;-0.6161524;-0.001774706,-0.07233322;0.003874387;-0.03395432,-0.09991314;-0.2937388;-0.008152269,-0.0975548;-0.5882452;0.04894819,-0.09724911;-0.6168634;-0.01285052,0.009847392;0.3991247;0.02365125,9.445987
-0;0;0,0.002646357;0.1998286;0.007843739,0.006815121;0.4997399;0.005800178,0.1175104;0.3778948;-0.02754992,0.1670105;0.1845358;-0.01482019,0.2004951;-0.06082413;-0.04913155,-0.10645;0.3616295;-0.01178402,-0.1582292;0.1690029;0.002841584,-0.2007673;-0.07707119;-0.008907768,0.06942212;0.005084965;-0.03942984,0.09285365;-0.2915718;-0.001407329,0.08316877;-0.5842769;0.06363051,0.09036088;-0.6155643;0.005832367,-0.07221481;0.003123615;-0.03428212,-0.09798818;-0.2937216;0.0006275736,-0.09688611;-0.5877182;0.06033292,-0.09679984;-0.6152064;-0.002877653,0.005375751;0.3998058;0.009134268,0;0;0,0.004919049;0.1993683;0.01510218,0.01228102;0.4990951;0.02377239,0.1212284;0.3781539;-0.01577579,0.1733519;0.185396;-0.004482732,0.2239375;-0.05756067;-0.03470088,-0.1024487;0.3627192;0.002105335,-0.1608298;0.1714343;0.0007911465,-0.224621;-0.06903337;-0.02382567,0.06932954;0.003944419;-0.03972223,0.08781212;-0.2937214;-0.007265192,0.07553717;-0.5865996;0.05654461,0.09197497;-0.6161524;-0.001774706,-0.07233322;0.003874387;-0.03395432,-0.09991314;-0.2937388;-0.008152269,-0.0975548;-0.5882452;0.04894819,-0.09724911;-0.6168634;-0.01285052,0.009847392;0.3991247;0.02365125,9.468742
-0;0;0,0.002646357;0.1998286;0.007843739,0.006815121;0.4997399;0.005800178,0.1175104;0.3778948;-0.02754992,0.1670105;0.1845358;-0.01482019,0.2004951;-0.06082413;-0.04913155,-0.10645;0.3616295;-0.01178402,-0.1582292;0.1690029;0.002841584,-0.2007673;-0.07707119;-0.008907768,0.06942212;0.005084965;-0.03942984,0.09285365;-0.2915718;-0.001407329,0.08316877;-0.5842769;0.06363051,0.09036088;-0.6155643;0.005832367,-0.07221481;0.003123615;-0.03428212,-0.09798818;-0.2937216;0.0006275736,-0.09688611;-0.5877182;0.06033292,-0.09679984;-0.6152064;-0.002877653,0.005375751;0.3998058;0.009134268,0;0;0,0.004905226;0.1993724;0.01505301,0.01222975;0.4991037;0.02361121,0.1211863;0.3780559;-0.01585598,0.1733128;0.1853043;-0.004470522,0.2239112;-0.05765496;-0.03464672,-0.1025553;0.362799;0.002190202,-0.1610093;0.1715381;0.0006517202,-0.224791;-0.06892984;-0.02398743,0.06934377;0.003981861;-0.03969366,0.08782298;-0.2936827;-0.00722279,0.07562387;-0.5866412;0.05623207,0.09167986;-0.6165501;-0.001705594,-0.07233144;0.003793401;-0.03396722,-0.09991201;-0.2938313;-0.008299172,-0.09777546;-0.5883378;0.0488096,-0.0976039;-0.6157341;-0.01451319,0.009805873;0.3991331;0.0235161,9.480347
-0;0;0,0.002595514;0.1998272;0.007896018,0.00673318;0.499739;0.005889834,0.1177489;0.3777345;-0.0264122,0.1669611;0.1842362;-0.01472629,0.2005862;-0.06100413;-0.04974799,-0.1065659;0.361673;-0.01154224,-0.1585332;0.169119;0.003369363,-0.2041682;-0.07642323;-0.007876328,0.06937806;0.005032651;-0.039514,0.09265972;-0.2916088;-0.001280561,0.08288924;-0.5842869;0.06386614,0.08964495;-0.6149359;0.005128525,-0.07226873;0.003139719;-0.03416684,-0.0979186;-0.293719;0.0007184334,-0.09706157;-0.5877331;0.06034178,-0.09725378;-0.6149126;-0.003245085,0.00530507;0.3998045;0.009215096,0;0;0,0.004905226;0.1993724;0.01505301,0.01222975;0.4991037;0.02361121,0.1211863;0.3780559;-0.01585598,0.1733128;0.1853043;-0.004470522,0.2239112;-0.05765496;-0.03464672,-0.1025553;0.362799;0.002190202,-0.1610093;0.1715381;0.0006517202,-0.224791;-0.06892984;-0.02398743,0.06934377;0.003981861;-0.03969366,0.08782298;-0.2936827;-0.00722279,0.07562387;-0.5866412;0.05623207,0.09167986;-0.6165501;-0.001705594,-0.07233144;0.003793401;-0.03396722,-0.09991201;-0.2938313;-0.008299172,-0.09777546;-0.5883378;0.0488096,-0.0976039;-0.6157341;-0.01451319,0.009805873;0.3991331;0.0235161,9.491501
-0;0;0,0.002595514;0.1998272;0.007896018,0.00673318;0.499739;0.005889834,0.1177489;0.3777345;-0.0264122,0.1669611;0.1842362;-0.01472629,0.2005862;-0.06100413;-0.04974799,-0.1065659;0.361673;-0.01154224,-0.1585332;0.169119;0.003369363,-0.2041682;-0.07642323;-0.007876328,0.06937806;0.005032651;-0.039514,0.09265972;-0.2916088;-0.001280561,0.08288924;-0.5842869;0.06386614,0.08964495;-0.6149359;0.005128525,-0.07226873;0.003139719;-0.03416684,-0.0979186;-0.293719;0.0007184334,-0.09706157;-0.5877331;0.06034178,-0.09725378;-0.6149126;-0.003245085,0.00530507;0.3998045;0.009215096,0;0;0,0.004905226;0.1993724;0.01505301,0.01222975;0.4991037;0.02361121,0.1211863;0.3780559;-0.01585598,0.1733128;0.1853043;-0.004470522,0.2239112;-0.05765496;-0.03464672,-0.1025553;0.362799;0.002190202,-0.1610093;0.1715381;0.0006517202,-0.224791;-0.06892984;-0.02398743,0.06934377;0.003981861;-0.03969366,0.08782298;-0.2936827;-0.00722279,0.07562387;-0.5866412;0.05623207,0.09167986;-0.6165501;-0.001705594,-0.07233144;0.003793401;-0.03396722,-0.09991201;-0.2938313;-0.008299172,-0.09777546;-0.5883378;0.0488096,-0.0976039;-0.6157341;-0.01451319,0.009805873;0.3991331;0.0235161,9.503411
-0;0;0,0.002608462;0.1998253;0.007940215,0.00682027;0.4997381;0.00614765,0.1176598;0.3778579;-0.02677029,0.1669796;0.1843898;-0.01503787,0.2007474;-0.06086861;-0.04979482,-0.106733;0.3618143;-0.01042234,-0.1590653;0.1693537;0.004417317,-0.2074578;-0.07566404;-0.006739545,0.06936283;0.005030455;-0.03954102,0.09266917;-0.291606;-0.001283359,0.08288562;-0.5842822;0.06386966,0.08943366;-0.6150482;0.005269554,-0.07230218;0.003154127;-0.03409466,-0.09791132;-0.2937526;0.000409618,-0.09727247;-0.5877272;0.06023067,-0.09629525;-0.6161563;-0.001800954,0.005359466;0.3998012;0.009383903,0;0;0,0.004817983;0.199383;0.01493979,0.01192326;0.4991204;0.02348467,0.1210046;0.3781386;-0.01591584,0.172979;0.1853568;-0.004347178,0.2236068;-0.05759655;-0.03452178,-0.1028073;0.3628283;0.002209922,-0.1612664;0.1715708;0.000442878,-0.2248284;-0.06896351;-0.02411561,0.06950399;0.00403679;-0.03940684,0.08785409;-0.2936807;-0.007350717,0.07573425;-0.586671;0.0559723,0.09245038;-0.6168468;-0.001407243,-0.07226109;0.003762644;-0.03412004,-0.0998726;-0.293854;-0.008391954,-0.09765317;-0.5883687;0.0486711,-0.09753101;-0.6159583;-0.01441485,0.009586817;0.3991477;0.02338667,9.525654
-0;0;0,0.002608462;0.1998253;0.007940215,0.00682027;0.4997381;0.00614765,0.1176598;0.3778579;-0.02677029,0.1669796;0.1843898;-0.01503787,0.2007474;-0.06086861;-0.04979482,-0.106733;0.3618143;-0.01042234,-0.1590653;0.1693537;0.004417317,-0.2074578;-0.07566404;-0.006739545,0.06936283;0.005030455;-0.03954102,0.09266917;-0.291606;-0.001283359,0.08288562;-0.5842822;0.06386966,0.08943366;-0.6150482;0.005269554,-0.07230218;0.003154127;-0.03409466,-0.09791132;-0.2937526;0.000409618,-0.09727247;-0.5877272;0.06023067,-0.09629525;-0.6161563;-0.001800954,0.005359466;0.3998012;0.009383903,0;0;0,0.004817983;0.199383;0.01493979,0.01192326;0.4991204;0.02348467,0.1210046;0.3781386;-0.01591584,0.172979;0.1853568;-0.004347178,0.2236068;-0.05759655;-0.03452178,-0.1028073;0.3628283;0.002209922,-0.1612664;0.1715708;0.000442878,-0.2248284;-0.06896351;-0.02411561,0.06950399;0.00403679;-0.03940684,0.08785409;-0.2936807;-0.007350717,0.07573425;-0.586671;0.0559723,0.09245038;-0.6168468;-0.001407243,-0.07226109;0.003762644;-0.03412004,-0.0998726;-0.293854;-0.008391954,-0.09765317;-0.5883687;0.0486711,-0.09753101;-0.6159583;-0.01441485,0.009586817;0.3991477;0.02338667,9.537739
-0;0;0,0.002608462;0.1998253;0.007940215,0.00682027;0.4997381;0.00614765,0.1176598;0.3778579;-0.02677029,0.1669796;0.1843898;-0.01503787,0.2007474;-0.06086861;-0.04979482,-0.106733;0.3618143;-0.01042234,-0.1590653;0.1693537;0.004417317,-0.2074578;-0.07566404;-0.006739545,0.06936283;0.005030455;-0.03954102,0.09266917;-0.291606;-0.001283359,0.08288562;-0.5842822;0.06386966,0.08943366;-0.6150482;0.005269554,-0.07230218;0.003154127;-0.03409466,-0.09791132;-0.2937526;0.000409618,-0.09727247;-0.5877272;0.06023067,-0.09629525;-0.6161563;-0.001800954,0.005359466;0.3998012;0.009383903,0;0;0,0.004817983;0.199383;0.01493979,0.01192326;0.4991204;0.02348467,0.1210046;0.3781386;-0.01591584,0.172979;0.1853568;-0.004347178,0.2236068;-0.05759655;-0.03452178,-0.1028073;0.3628283;0.002209922,-0.1612664;0.1715708;0.000442878,-0.2248284;-0.06896351;-0.02411561,0.06950399;0.00403679;-0.03940684,0.08785409;-0.2936807;-0.007350717,0.07573425;-0.586671;0.0559723,0.09245038;-0.6168468;-0.001407243,-0.07226109;0.003762644;-0.03412004,-0.0998726;-0.293854;-0.008391954,-0.09765317;-0.5883687;0.0486711,-0.09753101;-0.6159583;-0.01441485,0.009586817;0.3991477;0.02338667,9.549349
-0;0;0,0.002549554;0.1998274;0.007906411,0.006680925;0.4997413;0.006106862,0.1174408;0.3779001;-0.02717007,0.166911;0.1844803;-0.0152752,0.200883;-0.06074762;-0.05004837,-0.1068819;0.3615243;-0.009660376,-0.1594052;0.1691216;0.005257286,-0.2114376;-0.07514758;-0.005931055,0.06933032;0.00500963;-0.03960062,0.09244463;-0.2916334;-0.001277938,0.08270937;-0.5843189;0.06384084,0.08919838;-0.6152191;0.005419489,-0.07236369;0.003166078;-0.03396281,-0.09809512;-0.2937457;0.0004074536,-0.09761059;-0.5877448;0.06010903,-0.09704594;-0.6159374;-0.002225623,0.005249532;0.399804;0.009344811,0;0;0,0.004721209;0.1993949;0.01481238,0.01180303;0.4991337;0.02332179,0.1208908;0.378166;-0.01606061,0.1727875;0.1853652;-0.004458123,0.223326;-0.05763388;-0.03441283,-0.1027348;0.3627708;0.001183299,-0.1610141;0.1714533;0.0001095186,-0.2244127;-0.06915781;-0.02411634,0.0696926;0.004142792;-0.0390612,0.0877638;-0.2936273;-0.007337362,0.07565656;-0.5866616;0.0557842,0.0921488;-0.6167119;-0.00183481,-0.07220525;0.003695635;-0.03424534,-0.09989534;-0.2939181;-0.008567967,-0.09785855;-0.5885649;0.04781569,-0.09838499;-0.6156581;-0.0158738,0.009467995;0.399161;0.02323521,9.572246
-0;0;0,0.002549554;0.1998274;0.007906411,0.006680925;0.4997413;0.006106862,0.1174408;0.3779001;-0.02717007,0.166911;0.1844803;-0.0152752,0.200883;-0.06074762;-0.05004837,-0.1068819;0.3615243;-0.009660376,-0.1594052;0.1691216;0.005257286,-0.2114376;-0.07514758;-0.005931055,0.06933032;0.00500963;-0.03960062,0.09244463;-0.2916334;-0.001277938,0.08270937;-0.5843189;0.06384084,0.08919838;-0.6152191;0.005419489,-0.07236369;0.003166078;-0.03396281,-0.09809512;-0.2937457;0.0004074536,-0.09761059;-0.5877448;0.06010903,-0.09704594;-0.6159374;-0.002225623,0.005249532;0.399804;0.009344811,0;0;0,0.004721209;0.1993949;0.01481238,0.01180303;0.4991337;0.02332179,0.1208908;0.378166;-0.01606061,0.1727875;0.1853652;-0.004458123,0.223326;-0.05763388;-0.03441283,-0.1027348;0.3627708;0.001183299,-0.1610141;0.1714533;0.0001095186,-0.2244127;-0.06915781;-0.02411634,0.0696926;0.004142792;-0.0390612,0.0877638;-0.2936273;-0.007337362,0.07565656;-0.5866616;0.0557842,0.0921488;-0.6167119;-0.00183481,-0.07220525;0.003695635;-0.03424534,-0.09989534;-0.2939181;-0.008567967,-0.09785855;-0.5885649;0.04781569,-0.09838499;-0.6156581;-0.0158738,0.009467995;0.399161;0.02323521,9.583354
-0;0;0,0.00251473;0.1998328;0.007779411,0.006632811;0.4997466;0.005902724,0.1176976;0.3776462;-0.02623497,0.1669275;0.1841104;-0.01526527,0.200689;-0.06110325;-0.05034234,-0.1069714;0.3613799;-0.009293553,-0.1602285;0.1692183;0.006121433,-0.2145774;-0.07463863;-0.002821352,0.06936493;0.004977555;-0.03954405,0.09235995;-0.2916884;-0.00132734,0.08254407;-0.5843672;0.06380944,0.08883457;-0.6154634;0.005638663,-0.07238268;0.003184204;-0.03392062,-0.09824709;-0.2937675;1.460314E-06,-0.09792924;-0.5877581;0.0597466,-0.09717683;-0.6159635;-0.002569888,0.005200095;0.39981;0.009163688,0;0;0,0.004721209;0.1993949;0.01481238,0.01180303;0.4991337;0.02332179,0.1208908;0.378166;-0.01606061,0.1727875;0.1853652;-0.004458123,0.223326;-0.05763388;-0.03441283,-0.1027348;0.3627708;0.001183299,-0.1610141;0.1714533;0.0001095186,-0.2244127;-0.06915781;-0.02411634,0.0696926;0.004142792;-0.0390612,0.0877638;-0.2936273;-0.007337362,0.07565656;-0.5866616;0.0557842,0.0921488;-0.6167119;-0.00183481,-0.07220525;0.003695635;-0.03424534,-0.09989534;-0.2939181;-0.008567967,-0.09785855;-0.5885649;0.04781569,-0.09838499;-0.6156581;-0.0158738,0.009467995;0.399161;0.02323521,9.606216
-0;0;0,0.00239824;0.1998359;0.007736573,0.006355336;0.4997516;0.00581961,0.1172645;0.3775045;-0.02686938,0.1666431;0.1840224;-0.01562537,0.2004831;-0.06120168;-0.05055402,-0.1072245;0.3610768;-0.008535843,-0.161266;0.1692038;0.007720346,-0.220023;-0.07367675;0.0001937454,0.0693303;0.005009227;-0.03960072,0.09159527;-0.291667;-0.001032557,0.08167261;-0.584419;0.06375791,0.08832104;-0.6155292;0.005646594,-0.07246561;0.003139727;-0.03374727,-0.09886871;-0.2937891;-4.049763E-05,-0.09846909;-0.5878135;0.05953712,-0.09732668;-0.6151622;-0.003833767,0.004974572;0.3998147;0.009092139,0;0;0,0.004661791;0.1994021;0.01473287,0.01172945;0.4991423;0.02321017,0.1208186;0.3781628;-0.0161538,0.1725522;0.1853376;-0.00423391,0.2231375;-0.05763169;-0.0343511,-0.1027848;0.3629004;0.0007661413,-0.1607605;0.17149;-0.0001624713,-0.2241747;-0.06913461;-0.02421368,0.06977562;0.004175677;-0.0389092,0.08759997;-0.2935328;-0.006475132,0.07544278;-0.586709;0.05597437,0.09184507;-0.6162508;-0.002369996,-0.07217944;0.003672794;-0.03430216,-0.09983563;-0.2939489;-0.008681009,-0.09775876;-0.5886042;0.04765692,-0.0984365;-0.6152204;-0.01660425,0.009394852;0.3991696;0.02313311,9.628133
-0;0;0,0.00239824;0.1998359;0.007736573,0.006355336;0.4997516;0.00581961,0.1172645;0.3775045;-0.02686938,0.1666431;0.1840224;-0.01562537,0.2004831;-0.06120168;-0.05055402,-0.1072245;0.3610768;-0.008535843,-0.161266;0.1692038;0.007720346,-0.220023;-0.07367675;0.0001937454,0.0693303;0.005009227;-0.03960072,0.09159527;-0.291667;-0.001032557,0.08167261;-0.584419;0.06375791,0.08832104;-0.6155292;0.005646594,-0.07246561;0.003139727;-0.03374727,-0.09886871;-0.2937891;-4.049763E-05,-0.09846909;-0.5878135;0.05953712,-0.09732668;-0.6151622;-0.003833767,0.004974572;0.3998147;0.009092139,0;0;0,0.004661791;0.1994021;0.01473287,0.01172945;0.4991423;0.02321017,0.1208186;0.3781628;-0.0161538,0.1725522;0.1853376;-0.00423391,0.2231375;-0.05763169;-0.0343511,-0.1027848;0.3629004;0.0007661413,-0.1607605;0.17149;-0.0001624713,-0.2241747;-0.06913461;-0.02421368,0.06977562;0.004175677;-0.0389092,0.08759997;-0.2935328;-0.006475132,0.07544278;-0.586709;0.05597437,0.09184507;-0.6162508;-0.002369996,-0.07217944;0.003672794;-0.03430216,-0.09983563;-0.2939489;-0.008681009,-0.09775876;-0.5886042;0.04765692,-0.0984365;-0.6152204;-0.01660425,0.009394852;0.3991696;0.02313311,9.63955
-0;0;0,0.002022963;0.1998472;0.007549953,0.005633246;0.4997669;0.005495005,0.116525;0.3774762;-0.02747396,0.1659442;0.1840186;-0.01598904,0.1997566;-0.06122836;-0.05078343,-0.1079575;0.3612245;-0.008461783,-0.1628418;0.1696598;0.008587318,-0.2261958;-0.07211134;0.00284281,0.06915468;0.005159339;-0.03988748,0.09064249;-0.2915579;-0.001194254,0.0806929;-0.5843428;0.06344309,0.08758077;-0.6156238;0.005598743,-0.0726184;0.002944317;-0.03343498,-0.1001487;-0.2939631;-0.0004486553,-0.09973837;-0.5879959;0.0590876,-0.09735486;-0.6156646;-0.003855903,0.004344172;0.3998299;0.008799603,0;0;0,0.004661791;0.1994021;0.01473287,0.01172945;0.4991423;0.02321017,0.1208186;0.3781628;-0.0161538,0.1725522;0.1853376;-0.00423391,0.2231375;-0.05763169;-0.0343511,-0.1027848;0.3629004;0.0007661413,-0.1607605;0.17149;-0.0001624713,-0.2241747;-0.06913461;-0.02421368,0.06977562;0.004175677;-0.0389092,0.08759997;-0.2935328;-0.006475132,0.07544278;-0.586709;0.05597437,0.09184507;-0.6162508;-0.002369996,-0.07217944;0.003672794;-0.03430216,-0.09983563;-0.2939489;-0.008681009,-0.09775876;-0.5886042;0.04765692,-0.0984365;-0.6152204;-0.01660425,0.009394852;0.3991696;0.02313311,9.661517
-0;0;0,0.002022963;0.1998472;0.007549953,0.005633246;0.4997669;0.005495005,0.116525;0.3774762;-0.02747396,0.1659442;0.1840186;-0.01598904,0.1997566;-0.06122836;-0.05078343,-0.1079575;0.3612245;-0.008461783,-0.1628418;0.1696598;0.008587318,-0.2261958;-0.07211134;0.00284281,0.06915468;0.005159339;-0.03988748,0.09064249;-0.2915579;-0.001194254,0.0806929;-0.5843428;0.06344309,0.08758077;-0.6156238;0.005598743,-0.0726184;0.002944317;-0.03343498,-0.1001487;-0.2939631;-0.0004486553,-0.09973837;-0.5879959;0.0590876,-0.09735486;-0.6156646;-0.003855903,0.004344172;0.3998299;0.008799603,0;0;0,0.004577227;0.1994242;0.01445791,0.01160603;0.4991701;0.02280395,0.1207007;0.3781565;-0.01652027,0.1721311;0.1852973;-0.003861994,0.2227634;-0.05760719;-0.0344196,-0.1028357;0.3628955;9.143353E-05,-0.1606785;0.1714438;-0.000585134,-0.2240663;-0.06918606;-0.02465281,0.06974458;0.004358804;-0.03894475,0.08740304;-0.293396;-0.006847043,0.07493895;-0.5866;0.05541109,0.09139855;-0.6157545;-0.003441613,-0.07220186;0.00348158;-0.03427491,-0.09995372;-0.2941531;-0.008908985,-0.09792438;-0.5888374;0.0472785,-0.09903131;-0.6152416;-0.01722871,0.009275807;0.3991972;0.0227453,9.673218
-0;0;0,0.002152987;0.199846;0.007547452,0.005928957;0.4997632;0.00545628,0.116625;0.3773259;-0.02785562,0.1661006;0.1838949;-0.01616775,0.1998161;-0.06136253;-0.05098262,-0.1078272;0.3613073;-0.007907405,-0.1638861;0.1702336;0.01075481,-0.2332766;-0.06990685;0.006570284,0.0691808;0.005121489;-0.03984704,0.09017278;-0.2916431;-0.001244929,0.08002405;-0.5844128;0.06343026,0.08757617;-0.6154231;0.005290028,-0.07265721;0.002972985;-0.03334804,-0.1004487;-0.2939141;-0.0003979281,-0.100002;-0.5880249;0.05875123,-0.09768908;-0.6156685;-0.004225921,0.004590767;0.3998273;0.008777899,0;0;0,0.004577227;0.1994242;0.01445791,0.01160603;0.4991701;0.02280395,0.1207007;0.3781565;-0.01652027,0.1721311;0.1852973;-0.003861994,0.2227634;-0.05760719;-0.0344196,-0.1028357;0.3628955;9.143353E-05,-0.1606785;0.1714438;-0.000585134,-0.2240663;-0.06918606;-0.02465281,0.06974458;0.004358804;-0.03894475,0.08740304;-0.293396;-0.006847043,0.07493895;-0.5866;0.05541109,0.09139855;-0.6157545;-0.003441613,-0.07220186;0.00348158;-0.03427491,-0.09995372;-0.2941531;-0.008908985,-0.09792438;-0.5888374;0.0472785,-0.09903131;-0.6152416;-0.01722871,0.009275807;0.3991972;0.0227453,9.694945
-0;0;0,0.002152987;0.199846;0.007547452,0.005928957;0.4997632;0.00545628,0.116625;0.3773259;-0.02785562,0.1661006;0.1838949;-0.01616775,0.1998161;-0.06136253;-0.05098262,-0.1078272;0.3613073;-0.007907405,-0.1638861;0.1702336;0.01075481,-0.2332766;-0.06990685;0.006570284,0.0691808;0.005121489;-0.03984704,0.09017278;-0.2916431;-0.001244929,0.08002405;-0.5844128;0.06343026,0.08757617;-0.6154231;0.005290028,-0.07265721;0.002972985;-0.03334804,-0.1004487;-0.2939141;-0.0003979281,-0.100002;-0.5880249;0.05875123,-0.09768908;-0.6156685;-0.004225921,0.004590767;0.3998273;0.008777899,0;0;0,0.004577227;0.1994242;0.01445791,0.01160603;0.4991701;0.02280395,0.1207007;0.3781565;-0.01652027,0.1721311;0.1852973;-0.003861994,0.2227634;-0.05760719;-0.0344196,-0.1028357;0.3628955;9.143353E-05,-0.1606785;0.1714438;-0.000585134,-0.2240663;-0.06918606;-0.02465281,0.06974458;0.004358804;-0.03894475,0.08740304;-0.293396;-0.006847043,0.07493895;-0.5866;0.05541109,0.09139855;-0.6157545;-0.003441613,-0.07220186;0.00348158;-0.03427491,-0.09995372;-0.2941531;-0.008908985,-0.09792438;-0.5888374;0.0472785,-0.09903131;-0.6152416;-0.01722871,0.009275807;0.3991972;0.0227453,9.706604
-0;0;0,0.002220493;0.199843;0.007604247,0.006025069;0.4997604;0.005593861,0.1164895;0.3772489;-0.02839626,0.1659777;0.1838364;-0.01645726,0.1995691;-0.06144458;-0.05122626,-0.1078791;0.3615637;-0.007398189,-0.1651909;0.1710091;0.01270845,-0.2376375;-0.06823651;0.00909595,0.06912294;0.005132228;-0.03994596,0.08937731;-0.2916836;-0.001343668,0.07910248;-0.5844587;0.06328712,0.08606011;-0.6145362;0.003796056,-0.07276123;0.002956157;-0.03312196,-0.1011522;-0.2939105;-0.000500232,-0.1007045;-0.5880439;0.05853643,-0.09913754;-0.6160267;-0.0040434,0.004685791;0.3998237;0.008890376,0;0;0,0.00446076;0.1994302;0.01441223,0.01127397;0.4991805;0.02280199,0.1204928;0.3781794;-0.01645238,0.1717653;0.1853043;-0.003401634,0.2222981;-0.05757771;-0.03430064,-0.1029788;0.3628353;-0.0003444366,-0.1606876;0.1713431;-0.0009967135,-0.2239786;-0.06932844;-0.0249022,0.06990945;0.004454689;-0.03863708,0.08732396;-0.293352;-0.006889462,0.0751839;-0.5865777;0.05533082,0.09087251;-0.6159629;-0.003421657,-0.07214218;0.003432509;-0.03440527,-0.09981183;-0.2941976;-0.008896712,-0.09795643;-0.5889021;0.04719141,-0.09917857;-0.6146431;-0.01809105,0.009028766;0.3992057;0.02270975,9.728622
-0;0;0,0.002220493;0.199843;0.007604247,0.006025069;0.4997604;0.005593861,0.1164895;0.3772489;-0.02839626,0.1659777;0.1838364;-0.01645726,0.1995691;-0.06144458;-0.05122626,-0.1078791;0.3615637;-0.007398189,-0.1651909;0.1710091;0.01270845,-0.2376375;-0.06823651;0.00909595,0.06912294;0.005132228;-0.03994596,0.08937731;-0.2916836;-0.001343668,0.07910248;-0.5844587;0.06328712,0.08606011;-0.6145362;0.003796056,-0.07276123;0.002956157;-0.03312196,-0.1011522;-0.2939105;-0.000500232,-0.1007045;-0.5880439;0.05853643,-0.09913754;-0.6160267;-0.0040434,0.004685791;0.3998237;0.008890376,0;0;0,0.00446076;0.1994302;0.01441223,0.01127397;0.4991805;0.02280199,0.1204928;0.3781794;-0.01645238,0.1717653;0.1853043;-0.003401634,0.2222981;-0.05757771;-0.03430064,-0.1029788;0.3628353;-0.0003444366,-0.1606876;0.1713431;-0.0009967135,-0.2239786;-0.06932844;-0.0249022,0.06990945;0.004454689;-0.03863708,0.08732396;-0.293352;-0.006889462,0.0751839;-0.5865777;0.05533082,0.09087251;-0.6159629;-0.003421657,-0.07214218;0.003432509;-0.03440527,-0.09981183;-0.2941976;-0.008896712,-0.09795643;-0.5889021;0.04719141,-0.09917857;-0.6146431;-0.01809105,0.009028766;0.3992057;0.02270975,9.73994
-0;0;0,0.001764207;0.1998641;0.007157109,0.005100019;0.4997854;0.004765113,0.1156171;0.3772767;-0.0293579,0.1651884;0.1838919;-0.01731599,0.1988125;-0.06141549;-0.05186585,-0.1088594;0.3618748;-0.007504672,-0.1674769;0.1718838;0.01411529,-0.2443646;-0.06597416;0.01067033,0.06884463;0.005442046;-0.04038317,0.0880952;-0.2914611;-0.00193904,0.07772312;-0.5842831;0.06246357,0.08455847;-0.6143689;0.002969533,-0.07292016;0.002560663;-0.03280386,-0.1030611;-0.2942549;-0.001306929,-0.1023645;-0.5884435;0.05745139,-0.1016692;-0.6163486;-0.005240899,0.003890316;0.3998503;0.00815936,0;0;0,0.00446076;0.1994302;0.01441223,0.01127397;0.4991805;0.02280199,0.1204928;0.3781794;-0.01645238,0.1717653;0.1853043;-0.003401634,0.2222981;-0.05757771;-0.03430064,-0.1029788;0.3628353;-0.0003444366,-0.1606876;0.1713431;-0.0009967135,-0.2239786;-0.06932844;-0.0249022,0.06990945;0.004454689;-0.03863708,0.08732396;-0.293352;-0.006889462,0.0751839;-0.5865777;0.05533082,0.09087251;-0.6159629;-0.003421657,-0.07214218;0.003432509;-0.03440527,-0.09981183;-0.2941976;-0.008896712,-0.09795643;-0.5889021;0.04719141,-0.09917857;-0.6146431;-0.01809105,0.009028766;0.3992057;0.02270975,9.761711
-0;0;0,0.001764207;0.1998641;0.007157109,0.005100019;0.4997854;0.004765113,0.1156171;0.3772767;-0.0293579,0.1651884;0.1838919;-0.01731599,0.1988125;-0.06141549;-0.05186585,-0.1088594;0.3618748;-0.007504672,-0.1674769;0.1718838;0.01411529,-0.2443646;-0.06597416;0.01067033,0.06884463;0.005442046;-0.04038317,0.0880952;-0.2914611;-0.00193904,0.07772312;-0.5842831;0.06246357,0.08455847;-0.6143689;0.002969533,-0.07292016;0.002560663;-0.03280386,-0.1030611;-0.2942549;-0.001306929,-0.1023645;-0.5884435;0.05745139,-0.1016692;-0.6163486;-0.005240899,0.003890316;0.3998503;0.00815936,0;0;0,0.004317982;0.1994432;0.01427468,0.01093017;0.499204;0.02238706,0.1202992;0.3781387;-0.01656251,0.1715352;0.1852504;-0.003562815,0.2217931;-0.0577046;-0.03433593,-0.1031043;0.362681;-0.000913512,-0.160798;0.1711843;-0.001587841,-0.2239882;-0.06953992;-0.02522806,0.07005125;0.004630545;-0.03835858,0.0872534;-0.2932398;-0.007095661,0.07514668;-0.58648;0.05506206,0.09034672;-0.6159033;-0.003767442,-0.07205562;0.003212052;-0.03460736,-0.09974868;-0.2944039;-0.008958859,-0.09810357;-0.589119;0.04707997,-0.1007;-0.6140268;-0.01911722,0.008786632;0.399227;0.0224276,9.774021
-0;0;0,0.001513686;0.1998715;0.007008307,0.004414773;0.4997951;0.004360728,0.1149308;0.3772859;-0.03011427,0.1646909;0.1839617;-0.01787903,0.1983757;-0.06135258;-0.05232089,-0.1094293;0.3617485;-0.007250438,-0.1694424;0.1723496;0.01569539,-0.2503931;-0.06415609;0.01222644,0.06864403;0.005578306;-0.04070478,0.08674618;-0.2914225;-0.002457406,0.07610346;-0.5842172;0.06202489,0.0831463;-0.6145306;0.002862833,-0.07309049;0.002411404;-0.03243403,-0.1048466;-0.2942876;-0.00142944,-0.1036599;-0.5885872;0.05676281,-0.1040503;-0.6171127;-0.005153123,0.003352259;0.3998613;0.007840539,0;0;0,0.004317982;0.1994432;0.01427468,0.01093017;0.499204;0.02238706,0.1202992;0.3781387;-0.01656251,0.1715352;0.1852504;-0.003562815,0.2217931;-0.0577046;-0.03433593,-0.1031043;0.362681;-0.000913512,-0.160798;0.1711843;-0.001587841,-0.2239882;-0.06953992;-0.02522806,0.07005125;0.004630545;-0.03835858,0.0872534;-0.2932398;-0.007095661,0.07514668;-0.58648;0.05506206,0.09034672;-0.6159033;-0.003767442,-0.07205562;0.003212052;-0.03460736,-0.09974868;-0.2944039;-0.008958859,-0.09810357;-0.589119;0.04707997,-0.1007;-0.6140268;-0.01911722,0.008786632;0.399227;0.0224276,9.795409
-0;0;0,0.001513686;0.1998715;0.007008307,0.004414773;0.4997951;0.004360728,0.1149308;0.3772859;-0.03011427,0.1646909;0.1839617;-0.01787903,0.1983757;-0.06135258;-0.05232089,-0.1094293;0.3617485;-0.007250438,-0.1694424;0.1723496;0.01569539,-0.2503931;-0.06415609;0.01222644,0.06864403;0.005578306;-0.04070478,0.08674618;-0.2914225;-0.002457406,0.07610346;-0.5842172;0.06202489,0.0831463;-0.6145306;0.002862833,-0.07309049;0.002411404;-0.03243403,-0.1048466;-0.2942876;-0.00142944,-0.1036599;-0.5885872;0.05676281,-0.1040503;-0.6171127;-0.005153123,0.003352259;0.3998613;0.007840539,0;0;0,0.004317982;0.1994432;0.01427468,0.01093017;0.499204;0.02238706,0.1202992;0.3781387;-0.01656251,0.1715352;0.1852504;-0.003562815,0.2217931;-0.0577046;-0.03433593,-0.1031043;0.362681;-0.000913512,-0.160798;0.1711843;-0.001587841,-0.2239882;-0.06953992;-0.02522806,0.07005125;0.004630545;-0.03835858,0.0872534;-0.2932398;-0.007095661,0.07514668;-0.58648;0.05506206,0.09034672;-0.6159033;-0.003767442,-0.07205562;0.003212052;-0.03460736,-0.09974868;-0.2944039;-0.008958859,-0.09810357;-0.589119;0.04707997,-0.1007;-0.6140268;-0.01911722,0.008786632;0.399227;0.0224276,9.818078
-0;0;0,0.001610302;0.1998771;0.006822662,0.004649334;0.4997959;0.003847711,0.1149444;0.3770006;-0.03085056,0.1649295;0.1837468;-0.01842266,0.1986738;-0.06157288;-0.05276775,-0.1092542;0.361582;-0.007091563,-0.170997;0.1729415;0.01745681,-0.2562607;-0.06204864;0.01433855,0.06880152;0.005628694;-0.04043103,0.08590861;-0.2915124;-0.002820928,0.0751262;-0.5842853;0.06173739,0.08235744;-0.6144102;0.00234288,-0.0730732;0.002356451;-0.03247697,-0.1052383;-0.2941946;-0.0004942268,-0.1038586;-0.5887252;0.05651288,-0.1039901;-0.617458;-0.005140364,0.003541783;0.3998668;0.007445641,0;0;0,0.004000067;0.1994746;0.01392418,0.01046127;0.4992419;0.02190653,0.1199886;0.3782693;-0.01680628,0.171076;0.1853579;-0.003568049,0.2209021;-0.05770974;-0.03415374,-0.1034014;0.3625546;-0.001553986,-0.1611568;0.1710763;-0.002184037,-0.2247492;-0.06953467;-0.02589795,0.07022201;0.004851205;-0.03801756,0.08682065;-0.2930904;-0.007109629,0.07461934;-0.5864052;0.05467694,0.08979375;-0.6157994;-0.004198328,-0.07199206;0.003068959;-0.03475234,-0.09989683;-0.2945441;-0.009300219,-0.09844011;-0.5892681;0.04669645,-0.1003052;-0.6158309;-0.01760481,0.008392572;0.3992634;0.02199548,9.840508
-0;0;0,0.001610302;0.1998771;0.006822662,0.004649334;0.4997959;0.003847711,0.1149444;0.3770006;-0.03085056,0.1649295;0.1837468;-0.01842266,0.1986738;-0.06157288;-0.05276775,-0.1092542;0.361582;-0.007091563,-0.170997;0.1729415;0.01745681,-0.2562607;-0.06204864;0.01433855,0.06880152;0.005628694;-0.04043103,0.08590861;-0.2915124;-0.002820928,0.0751262;-0.5842853;0.06173739,0.08235744;-0.6144102;0.00234288,-0.0730732;0.002356451;-0.03247697,-0.1052383;-0.2941946;-0.0004942268,-0.1038586;-0.5887252;0.05651288,-0.1039901;-0.617458;-0.005140364,0.003541783;0.3998668;0.007445641,0;0;0,0.004000067;0.1994746;0.01392418,0.01046127;0.4992419;0.02190653,0.1199886;0.3782693;-0.01680628,0.171076;0.1853579;-0.003568049,0.2209021;-0.05770974;-0.03415374,-0.1034014;0.3625546;-0.001553986,-0.1611568;0.1710763;-0.002184037,-0.2247492;-0.06953467;-0.02589795,0.07022201;0.004851205;-0.03801756,0.08682065;-0.2930904;-0.007109629,0.07461934;-0.5864052;0.05467694,0.08979375;-0.6157994;-0.004198328,-0.07199206;0.003068959;-0.03475234,-0.09989683;-0.2945441;-0.009300219,-0.09844011;-0.5892681;0.04669645,-0.1003052;-0.6158309;-0.01760481,0.008392572;0.3992634;0.02199548,9.851719
-0;0;0,0.001383936;0.1998873;0.006570253,0.004209252;0.499807;0.003398634,0.1145179;0.3769631;-0.03133799,0.1646989;0.1837865;-0.01850557,0.1989787;-0.06154659;-0.05221855,-0.1095581;0.3610066;-0.006564695,-0.1740793;0.1736452;0.02050367,-0.2626455;-0.06011;0.01669035,0.06877492;0.005657301;-0.04047227,0.08534822;-0.2915547;-0.003185138,0.07457311;-0.5843215;0.06140223,0.08162903;-0.6142148;0.001675624,-0.07312936;0.002328319;-0.03235235,-0.1057381;-0.2941479;-0.0001263469,-0.1043445;-0.5888025;0.05623653,-0.1042929;-0.6176357;-0.005288418,0.003153425;0.3998789;0.00703935,0;0;0,0.004000067;0.1994746;0.01392418,0.01046127;0.4992419;0.02190653,0.1199886;0.3782693;-0.01680628,0.171076;0.1853579;-0.003568049,0.2209021;-0.05770974;-0.03415374,-0.1034014;0.3625546;-0.001553986,-0.1611568;0.1710763;-0.002184037,-0.2247492;-0.06953467;-0.02589795,0.07022201;0.004851205;-0.03801756,0.08682065;-0.2930904;-0.007109629,0.07461934;-0.5864052;0.05467694,0.08979375;-0.6157994;-0.004198328,-0.07199206;0.003068959;-0.03475234,-0.09989683;-0.2945441;-0.009300219,-0.09844011;-0.5892681;0.04669645,-0.1003052;-0.6158309;-0.01760481,0.008392572;0.3992634;0.02199548,9.873877
-0;0;0,0.001156516;0.1998959;0.006346734,0.003650959;0.4998164;0.002921339,0.1139927;0.3768951;-0.03190015,0.1643917;0.1837955;-0.01876601,0.1989849;-0.06155384;-0.05203753,-0.1099495;0.3607325;-0.006679977,-0.1765135;0.174352;0.0221565,-0.2693747;-0.05772236;0.01787978,0.0687082;0.005749742;-0.04057246,0.08460856;-0.2915382;-0.003598496,0.07362457;-0.5842475;0.06121396,0.08093094;-0.6140908;0.001450624,-0.07317799;0.002240896;-0.0322484,-0.1066508;-0.2941777;-0.0003803149,-0.1052182;-0.5888765;0.0557497,-0.1050123;-0.6168515;-0.006859068,0.002698159;0.3998898;0.006632379,0;0;0,0.00384241;0.1994899;0.01374836,0.01007109;0.4992673;0.02158028,0.1197537;0.3783431;-0.01691571,0.1709361;0.1854514;-0.003756694,0.2204277;-0.05774331;-0.0338718,-0.1036008;0.3625072;-0.00227551,-0.1613684;0.1710326;-0.002896783,-0.2253022;-0.06949887;-0.02649883,0.07048544;0.00485611;-0.03752627,0.08686575;-0.2931798;-0.007421512,0.07470107;-0.5865546;0.05408667,0.08980614;-0.6159994;-0.004738089,-0.07181523;0.003067752;-0.0351164,-0.09992352;-0.2944714;-0.009032125,-0.09820823;-0.5893331;0.04622784,-0.09974984;-0.6152328;-0.01886322,0.008080932;0.3992872;0.02169173,9.896173
-0;0;0,0.001156516;0.1998959;0.006346734,0.003650959;0.4998164;0.002921339,0.1139927;0.3768951;-0.03190015,0.1643917;0.1837955;-0.01876601,0.1989849;-0.06155384;-0.05203753,-0.1099495;0.3607325;-0.006679977,-0.1765135;0.174352;0.0221565,-0.2693747;-0.05772236;0.01787978,0.0687082;0.005749742;-0.04057246,0.08460856;-0.2915382;-0.003598496,0.07362457;-0.5842475;0.06121396,0.08093094;-0.6140908;0.001450624,-0.07317799;0.002240896;-0.0322484,-0.1066508;-0.2941777;-0.0003803149,-0.1052182;-0.5888765;0.0557497,-0.1050123;-0.6168515;-0.006859068,0.002698159;0.3998898;0.006632379,0;0;0,0.00384241;0.1994899;0.01374836,0.01007109;0.4992673;0.02158028,0.1197537;0.3783431;-0.01691571,0.1709361;0.1854514;-0.003756694,0.2204277;-0.05774331;-0.0338718,-0.1036008;0.3625072;-0.00227551,-0.1613684;0.1710326;-0.002896783,-0.2253022;-0.06949887;-0.02649883,0.07048544;0.00485611;-0.03752627,0.08686575;-0.2931798;-0.007421512,0.07470107;-0.5865546;0.05408667,0.08980614;-0.6159994;-0.004738089,-0.07181523;0.003067752;-0.0351164,-0.09992352;-0.2944714;-0.009032125,-0.09820823;-0.5893331;0.04622784,-0.09974984;-0.6152328;-0.01886322,0.008080932;0.3992872;0.02169173,9.907378
-0;0;0,0.001126857;0.199904;0.006094506,0.00354014;0.4998213;0.002346364,0.1138806;0.3768806;-0.03243873,0.1643022;0.1837995;-0.01912257,0.1995768;-0.06157015;-0.05151787,-0.1099582;0.360359;-0.006648893,-0.17812;0.1745692;0.02226712,-0.2742139;-0.05618794;0.01813178,0.06877856;0.005806847;-0.04044491,0.08415074;-0.2915594;-0.003879204,0.07298951;-0.5843029;0.06074775,0.07976676;-0.6146619;0.001616504,-0.07314847;0.002197199;-0.03231834,-0.106962;-0.2942119;-0.0007224344,-0.105581;-0.5890034;0.05491999,-0.1052036;-0.6168448;-0.007854022,0.002614181;0.3998984;0.00616132,0;0;0,0.00384241;0.1994899;0.01374836,0.01007109;0.4992673;0.02158028,0.1197537;0.3783431;-0.01691571,0.1709361;0.1854514;-0.003756694,0.2204277;-0.05774331;-0.0338718,-0.1036008;0.3625072;-0.00227551,-0.1613684;0.1710326;-0.002896783,-0.2253022;-0.06949887;-0.02649883,0.07048544;0.00485611;-0.03752627,0.08686575;-0.2931798;-0.007421512,0.07470107;-0.5865546;0.05408667,0.08980614;-0.6159994;-0.004738089,-0.07181523;0.003067752;-0.0351164,-0.09992352;-0.2944714;-0.009032125,-0.09820823;-0.5893331;0.04622784,-0.09974984;-0.6152328;-0.01886322,0.008080932;0.3992872;0.02169173,9.929669
-0;0;0,0.001126857;0.199904;0.006094506,0.00354014;0.4998213;0.002346364,0.1138806;0.3768806;-0.03243873,0.1643022;0.1837995;-0.01912257,0.1995768;-0.06157015;-0.05151787,-0.1099582;0.360359;-0.006648893,-0.17812;0.1745692;0.02226712,-0.2742139;-0.05618794;0.01813178,0.06877856;0.005806847;-0.04044491,0.08415074;-0.2915594;-0.003879204,0.07298951;-0.5843029;0.06074775,0.07976676;-0.6146619;0.001616504,-0.07314847;0.002197199;-0.03231834,-0.106962;-0.2942119;-0.0007224344,-0.105581;-0.5890034;0.05491999,-0.1052036;-0.6168448;-0.007854022,0.002614181;0.3998984;0.00616132,0;0;0,0.003777205;0.1995094;0.01348168,0.009956805;0.4992938;0.02112584,0.1194909;0.3786465;-0.01793629,0.1720022;0.1861164;-0.004718849,0.2218025;-0.05713211;-0.03387563,-0.1036424;0.362493;-0.002934283,-0.1614484;0.1710297;-0.003468848,-0.2258547;-0.0693582;-0.02724869,0.07060811;0.004985801;-0.03727783,0.08691571;-0.2931106;-0.007737914,0.07482679;-0.5865136;0.05365015,0.09021941;-0.6160684;-0.004951093,-0.07168728;0.003001692;-0.03538252,-0.09969488;-0.2945238;-0.009035392,-0.09825777;-0.5894971;0.04563336,-0.09961888;-0.6145458;-0.02044117,0.007974962;0.3993136;0.02126924,9.94139
-0;0;0,0.0009121838;0.1999169;0.005693507,0.003084295;0.4998333;0.001620458,0.1134787;0.3769315;-0.03314181,0.1643716;0.1840034;-0.01940646,0.2002131;-0.06134778;-0.05131564,-0.1099403;0.3589822;-0.006526069,-0.1805149;0.1741813;0.02293283,-0.2807229;-0.0548289;0.0193687,0.06886301;0.005870262;-0.04029176,0.08373461;-0.2916032;-0.004397508,0.07240584;-0.5843956;0.05997841,0.07931187;-0.6160281;0.0026334,-0.07313026;0.002144252;-0.03236304,-0.1072414;-0.2942121;-0.000592459,-0.1059071;-0.5891302;0.05437594,-0.1055849;-0.6166865;-0.008750293,0.002220353;0.3999125;0.005503512,0;0;0,0.003777205;0.1995094;0.01348168,0.009956805;0.4992938;0.02112584,0.1194909;0.3786465;-0.01793629,0.1720022;0.1861164;-0.004718849,0.2218025;-0.05713211;-0.03387563,-0.1036424;0.362493;-0.002934283,-0.1614484;0.1710297;-0.003468848,-0.2258547;-0.0693582;-0.02724869,0.07060811;0.004985801;-0.03727783,0.08691571;-0.2931106;-0.007737914,0.07482679;-0.5865136;0.05365015,0.09021941;-0.6160684;-0.004951093,-0.07168728;0.003001692;-0.03538252,-0.09969488;-0.2945238;-0.009035392,-0.09825777;-0.5894971;0.04563336,-0.09961888;-0.6145458;-0.02044117,0.007974962;0.3993136;0.02126924,9.963166
-0;0;0,0.0009121838;0.1999169;0.005693507,0.003084295;0.4998333;0.001620458,0.1134787;0.3769315;-0.03314181,0.1643716;0.1840034;-0.01940646,0.2002131;-0.06134778;-0.05131564,-0.1099403;0.3589822;-0.006526069,-0.1805149;0.1741813;0.02293283,-0.2807229;-0.0548289;0.0193687,0.06886301;0.005870262;-0.04029176,0.08373461;-0.2916032;-0.004397508,0.07240584;-0.5843956;0.05997841,0.07931187;-0.6160281;0.0026334,-0.07313026;0.002144252;-0.03236304,-0.1072414;-0.2942121;-0.000592459,-0.1059071;-0.5891302;0.05437594,-0.1055849;-0.6166865;-0.008750293,0.002220353;0.3999125;0.005503512,0;0;0,0.003777205;0.1995094;0.01348168,0.009956805;0.4992938;0.02112584,0.1194909;0.3786465;-0.01793629,0.1720022;0.1861164;-0.004718849,0.2218025;-0.05713211;-0.03387563,-0.1036424;0.362493;-0.002934283,-0.1614484;0.1710297;-0.003468848,-0.2258547;-0.0693582;-0.02724869,0.07060811;0.004985801;-0.03727783,0.08691571;-0.2931106;-0.007737914,0.07482679;-0.5865136;0.05365015,0.09021941;-0.6160684;-0.004951093,-0.07168728;0.003001692;-0.03538252,-0.09969488;-0.2945238;-0.009035392,-0.09825777;-0.5894971;0.04563336,-0.09961888;-0.6145458;-0.02044117,0.007974962;0.3993136;0.02126924,9.985715
-0;0;0,0.0009326571;0.1999207;0.005553304,0.003028845;0.4998337;0.001200785,0.1134304;0.3768306;-0.03349258,0.1646309;0.1839982;-0.01955776,0.200787;-0.06132466;-0.05132938,-0.1099934;0.3590764;-0.006824357,-0.1825404;0.175144;0.02327269,-0.2891645;-0.05096765;0.02107816,0.06888313;0.005870735;-0.04025728,0.08362734;-0.2916291;-0.00452939,0.07215592;-0.5845082;0.05942548,0.07906057;-0.6160819;0.001996804,-0.07310922;0.002146557;-0.0324104,-0.1074738;-0.2942027;-0.0008479841,-0.1061349;-0.5891802;0.05380074,-0.1057173;-0.6166545;-0.009425599,0.002202941;0.3999163;0.005179167,0;0;0,0.003742468;0.199522;0.01330332,0.00987126;0.4993124;0.02078246,0.1194867;0.3787763;-0.01811208,0.1716271;0.1861683;-0.00456402,0.2210752;-0.05723836;-0.03299049,-0.1036631;0.3625154;-0.003472526,-0.1615152;0.1710659;-0.003944486,-0.2265475;-0.06916155;-0.02764267,0.07053844;0.005015332;-0.03740554,0.08684612;-0.2930838;-0.007893628,0.07477462;-0.5865228;0.05332626,0.09013627;-0.616127;-0.00521585,-0.07173695;0.002945155;-0.03528649,-0.09975508;-0.2945904;-0.009064712,-0.09836294;-0.5896513;0.04513047,-0.09965304;-0.6145909;-0.02106921,0.007904753;0.3993319;0.02096412,9.996901
-0;0;0,0.0009326571;0.1999207;0.005553304,0.003028845;0.4998337;0.001200785,0.1134304;0.3768306;-0.03349258,0.1646309;0.1839982;-0.01955776,0.200787;-0.06132466;-0.05132938,-0.1099934;0.3590764;-0.006824357,-0.1825404;0.175144;0.02327269,-0.2891645;-0.05096765;0.02107816,0.06888313;0.005870735;-0.04025728,0.08362734;-0.2916291;-0.00452939,0.07215592;-0.5845082;0.05942548,0.07906057;-0.6160819;0.001996804,-0.07310922;0.002146557;-0.0324104,-0.1074738;-0.2942027;-0.0008479841,-0.1061349;-0.5891802;0.05380074,-0.1057173;-0.6166545;-0.009425599,0.002202941;0.3999163;0.005179167,0;0;0,0.003742468;0.199522;0.01330332,0.00987126;0.4993124;0.02078246,0.1194867;0.3787763;-0.01811208,0.1716271;0.1861683;-0.00456402,0.2210752;-0.05723836;-0.03299049,-0.1036631;0.3625154;-0.003472526,-0.1615152;0.1710659;-0.003944486,-0.2265475;-0.06916155;-0.02764267,0.07053844;0.005015332;-0.03740554,0.08684612;-0.2930838;-0.007893628,0.07477462;-0.5865228;0.05332626,0.09013627;-0.616127;-0.00521585,-0.07173695;0.002945155;-0.03528649,-0.09975508;-0.2945904;-0.009064712,-0.09836294;-0.5896513;0.04513047,-0.09965304;-0.6145909;-0.02106921,0.007904753;0.3993319;0.02096412,10.01937
-0;0;0,0.0008283232;0.199927;0.005338627,0.002844692;0.4998372;0.0008302415,0.1133009;0.3768034;-0.03373307,0.1649025;0.1841137;-0.01931255,0.2022684;-0.06104541;-0.05094783,-0.1103551;0.3596704;-0.007019854,-0.1844131;0.1763799;0.0233118,-0.2962516;-0.04720376;0.02173371,0.06888575;0.00581322;-0.04026114,0.08370505;-0.2916754;-0.004471283,0.07197969;-0.5846511;0.05899317,0.07894253;-0.6161872;0.00151803,-0.07309478;0.00221035;-0.03243866,-0.1075424;-0.2941576;-0.001143452,-0.1061445;-0.5891662;0.05333583,-0.1058737;-0.6167105;-0.009805337,0.002063386;0.3999227;0.004889668,0;0;0,0.003742468;0.199522;0.01330332,0.00987126;0.4993124;0.02078246,0.1194867;0.3787763;-0.01811208,0.1716271;0.1861683;-0.00456402,0.2210752;-0.05723836;-0.03299049,-0.1036631;0.3625154;-0.003472526,-0.1615152;0.1710659;-0.003944486,-0.2265475;-0.06916155;-0.02764267,0.07053844;0.005015332;-0.03740554,0.08684612;-0.2930838;-0.007893628,0.07477462;-0.5865228;0.05332626,0.09013627;-0.616127;-0.00521585,-0.07173695;0.002945155;-0.03528649,-0.09975508;-0.2945904;-0.009064712,-0.09836294;-0.5896513;0.04513047,-0.09965304;-0.6145909;-0.02106921,0.007904753;0.3993319;0.02096412,10.04135
-0;0;0,0.0008283232;0.199927;0.005338627,0.002844692;0.4998372;0.0008302415,0.1133009;0.3768034;-0.03373307,0.1649025;0.1841137;-0.01931255,0.2022684;-0.06104541;-0.05094783,-0.1103551;0.3596704;-0.007019854,-0.1844131;0.1763799;0.0233118,-0.2962516;-0.04720376;0.02173371,0.06888575;0.00581322;-0.04026114,0.08370505;-0.2916754;-0.004471283,0.07197969;-0.5846511;0.05899317,0.07894253;-0.6161872;0.00151803,-0.07309478;0.00221035;-0.03243866,-0.1075424;-0.2941576;-0.001143452,-0.1061445;-0.5891662;0.05333583,-0.1058737;-0.6167105;-0.009805337,0.002063386;0.3999227;0.004889668,0;0;0,0.003651846;0.1995244;0.01329203,0.009590165;0.4993198;0.0207414,0.1193292;0.3787628;-0.01796984,0.1710235;0.1860893;-0.003665072,0.2202284;-0.05739157;-0.03187734,-0.1037664;0.3624601;-0.003940308,-0.1618455;0.171079;-0.004206869,-0.2283502;-0.06877287;-0.02762075,0.07062884;0.005066909;-0.03722758,0.0868085;-0.2930292;-0.007614814,0.07477431;-0.5865078;0.05342234,0.08960797;-0.6163331;-0.004954655,-0.0716706;0.002896159;-0.03542509,-0.09977995;-0.2946237;-0.009122463,-0.09830319;-0.5896323;0.04535475,-0.09984303;-0.6141357;-0.02133013,0.007686906;0.3993381;0.02092298,10.05267
-0;0;0,0.0008660294;0.1999273;0.005323479,0.002821804;0.499834;0.0005937605,0.1132387;0.3767731;-0.03406867,0.1650979;0.1841919;-0.01913253,0.2025497;-0.0609839;-0.05053654,-0.1102651;0.3594073;-0.007044237,-0.1863749;0.1770797;0.02400312,-0.3039217;-0.04356202;0.02399508,0.06891423;0.005845379;-0.0402077,0.08356544;-0.2916467;-0.00437776,0.07185135;-0.5847661;0.05842186,0.07870246;-0.6163639;0.001020979,-0.07309046;0.00216759;-0.03245128,-0.1076294;-0.2941838;-0.001099035,-0.1061479;-0.5892661;0.05297732,-0.1061657;-0.6161577;-0.01095762,0.002072083;0.3999228;0.004739481,0;0;0,0.003651846;0.1995244;0.01329203,0.009590165;0.4993198;0.0207414,0.1193292;0.3787628;-0.01796984,0.1710235;0.1860893;-0.003665072,0.2202284;-0.05739157;-0.03187734,-0.1037664;0.3624601;-0.003940308,-0.1618455;0.171079;-0.004206869,-0.2283502;-0.06877287;-0.02762075,0.07062884;0.005066909;-0.03722758,0.0868085;-0.2930292;-0.007614814,0.07477431;-0.5865078;0.05342234,0.08960797;-0.6163331;-0.004954655,-0.0716706;0.002896159;-0.03542509,-0.09977995;-0.2946237;-0.009122463,-0.09830319;-0.5896323;0.04535475,-0.09984303;-0.6141357;-0.02133013,0.007686906;0.3993381;0.02092298,10.07489
-0;0;0,0.0008895994;0.1999213;0.005538121,0.002785646;0.4998305;0.0009857477,0.1131274;0.3770081;-0.03416449,0.1652247;0.184509;-0.01900002,0.2029022;-0.06067766;-0.05004709,-0.1102887;0.359529;-0.006945157,-0.1881843;0.1780831;0.02483,-0.3116014;-0.03932804;0.02561093,0.06889894;0.005824438;-0.04023695,0.08353698;-0.291686;-0.004553843,0.07190552;-0.5848424;0.05808802,0.07839817;-0.6161084;0.0001768731,-0.07307853;0.002192887;-0.03247644,-0.1078293;-0.2941796;-0.001561482,-0.1063069;-0.5893021;0.05229402,-0.1069623;-0.6158378;-0.01206317,0.002067635;0.3999174;0.005089781,0;0;0,0.003651846;0.1995244;0.01329203,0.009590165;0.4993198;0.0207414,0.1193292;0.3787628;-0.01796984,0.1710235;0.1860893;-0.003665072,0.2202284;-0.05739157;-0.03187734,-0.1037664;0.3624601;-0.003940308,-0.1618455;0.171079;-0.004206869,-0.2283502;-0.06877287;-0.02762075,0.07062884;0.005066909;-0.03722758,0.0868085;-0.2930292;-0.007614814,0.07477431;-0.5865078;0.05342234,0.08960797;-0.6163331;-0.004954655,-0.0716706;0.002896159;-0.03542509,-0.09977995;-0.2946237;-0.009122463,-0.09830319;-0.5896323;0.04535475,-0.09984303;-0.6141357;-0.02133013,0.007686906;0.3993381;0.02092298,10.09735
-0;0;0,0.0008895994;0.1999213;0.005538121,0.002785646;0.4998305;0.0009857477,0.1131274;0.3770081;-0.03416449,0.1652247;0.184509;-0.01900002,0.2029022;-0.06067766;-0.05004709,-0.1102887;0.359529;-0.006945157,-0.1881843;0.1780831;0.02483,-0.3116014;-0.03932804;0.02561093,0.06889894;0.005824438;-0.04023695,0.08353698;-0.291686;-0.004553843,0.07190552;-0.5848424;0.05808802,0.07839817;-0.6161084;0.0001768731,-0.07307853;0.002192887;-0.03247644,-0.1078293;-0.2941796;-0.001561482,-0.1063069;-0.5893021;0.05229402,-0.1069623;-0.6158378;-0.01206317,0.002067635;0.3999174;0.005089781,0;0;0,0.003368811;0.1995474;0.01301895,0.008871224;0.4993551;0.0202919,0.1188645;0.3787006;-0.01813904,0.1703706;0.1859949;-0.003592039,0.2191531;-0.05762671;-0.03131909,-0.1041997;0.3622898;-0.004424209,-0.162438;0.170957;-0.004652642,-0.2307135;-0.06842245;-0.02780289,0.07069388;0.005201042;-0.03708537,0.08634409;-0.2929213;-0.007451871,0.07451478;-0.5865401;0.0529471,0.09012592;-0.6157003;-0.006128754,-0.07157741;0.00278988;-0.03562149,-0.1000992;-0.294708;-0.009515222,-0.09864271;-0.5897107;0.04499437,-0.1004333;-0.6135759;-0.02239058,0.007164443;0.39937;0.02053748,10.10846
-0;0;0,0.0008895994;0.1999213;0.005538121,0.002785646;0.4998305;0.0009857477,0.1131274;0.3770081;-0.03416449,0.1652247;0.184509;-0.01900002,0.2029022;-0.06067766;-0.05004709,-0.1102887;0.359529;-0.006945157,-0.1881843;0.1780831;0.02483,-0.3116014;-0.03932804;0.02561093,0.06889894;0.005824438;-0.04023695,0.08353698;-0.291686;-0.004553843,0.07190552;-0.5848424;0.05808802,0.07839817;-0.6161084;0.0001768731,-0.07307853;0.002192887;-0.03247644,-0.1078293;-0.2941796;-0.001561482,-0.1063069;-0.5893021;0.05229402,-0.1069623;-0.6158378;-0.01206317,0.002067635;0.3999174;0.005089781,0;0;0,0.003368811;0.1995474;0.01301895,0.008871224;0.4993551;0.0202919,0.1188645;0.3787006;-0.01813904,0.1703706;0.1859949;-0.003592039,0.2191531;-0.05762671;-0.03131909,-0.1041997;0.3622898;-0.004424209,-0.162438;0.170957;-0.004652642,-0.2307135;-0.06842245;-0.02780289,0.07069388;0.005201042;-0.03708537,0.08634409;-0.2929213;-0.007451871,0.07451478;-0.5865401;0.0529471,0.09012592;-0.6157003;-0.006128754,-0.07157741;0.00278988;-0.03562149,-0.1000992;-0.294708;-0.009515222,-0.09864271;-0.5897107;0.04499437,-0.1004333;-0.6135759;-0.02239058,0.007164443;0.39937;0.02053748,10.11984
-0;0;0,0.0009441313;0.1999231;0.005466339,0.002914815;0.4998301;0.0008127345,0.1132253;0.3769166;-0.03424559,0.1655492;0.1844873;-0.01897612,0.2033488;-0.06069015;-0.04994738,-0.1103103;0.3596533;-0.006359911,-0.1897206;0.1789281;0.02577156,-0.3204067;-0.03419407;0.02607771,0.06890167;0.005774611;-0.04023947,0.08359138;-0.2917551;-0.004739292,0.07188173;-0.5849106;0.05789259,0.07830695;-0.6161213;-0.0001035072,-0.07307708;0.002245607;-0.03247609,-0.1076583;-0.294176;-0.001843335,-0.1064266;-0.5893102;0.05195569,-0.1073299;-0.6152436;-0.0131081,0.00216504;0.3999187;0.004952978,0;0;0,0.003368811;0.1995474;0.01301895,0.008871224;0.4993551;0.0202919,0.1188645;0.3787006;-0.01813904,0.1703706;0.1859949;-0.003592039,0.2191531;-0.05762671;-0.03131909,-0.1041997;0.3622898;-0.004424209,-0.162438;0.170957;-0.004652642,-0.2307135;-0.06842245;-0.02780289,0.07069388;0.005201042;-0.03708537,0.08634409;-0.2929213;-0.007451871,0.07451478;-0.5865401;0.0529471,0.09012592;-0.6157003;-0.006128754,-0.07157741;0.00278988;-0.03562149,-0.1000992;-0.294708;-0.009515222,-0.09864271;-0.5897107;0.04499437,-0.1004333;-0.6135759;-0.02239058,0.007164443;0.39937;0.02053748,10.14203
-0;0;0,0.0009441313;0.1999231;0.005466339,0.002914815;0.4998301;0.0008127345,0.1132253;0.3769166;-0.03424559,0.1655492;0.1844873;-0.01897612,0.2033488;-0.06069015;-0.04994738,-0.1103103;0.3596533;-0.006359911,-0.1897206;0.1789281;0.02577156,-0.3204067;-0.03419407;0.02607771,0.06890167;0.005774611;-0.04023947,0.08359138;-0.2917551;-0.004739292,0.07188173;-0.5849106;0.05789259,0.07830695;-0.6161213;-0.0001035072,-0.07307708;0.002245607;-0.03247609,-0.1076583;-0.294176;-0.001843335,-0.1064266;-0.5893102;0.05195569,-0.1073299;-0.6152436;-0.0131081,0.00216504;0.3999187;0.004952978,0;0;0,0.003130294;0.1995579;0.01291675,0.008344982;0.4993721;0.02012916,0.1184839;0.3787146;-0.01823544,0.1696663;0.1859657;-0.003129262,0.2186668;-0.05761218;-0.0308564,-0.1045594;0.362267;-0.004671138,-0.1632669;0.1710775;-0.004836955,-0.2336701;-0.06762269;-0.02861919,0.07078636;0.005324889;-0.03689087,0.08611033;-0.2928438;-0.007555062,0.07440044;-0.5864875;0.05274656,0.0894632;-0.6152261;-0.007030766,-0.07148769;0.002688127;-0.03580899,-0.1005097;-0.2947268;-0.009312415,-0.09886698;-0.5897874;0.04487786,-0.1003895;-0.6136797;-0.02248387,0.006768424;0.3993849;0.0203961,10.15299
-0;0;0,0.001131354;0.199918;0.005616032,0.003423801;0.4998249;0.001130498,0.1135195;0.3768919;-0.03427515,0.1658302;0.1844783;-0.01876391,0.2035753;-0.06071207;-0.04969915,-0.1098632;0.3593341;-0.005369211,-0.1912511;0.1795164;0.02690469,-0.329455;-0.02880256;0.02519909,0.06891614;0.005753414;-0.0402177,0.08356723;-0.2917502;-0.00448345,0.07202812;-0.5848686;0.05835324,0.07840572;-0.6158846;8.027628E-05,-0.07307312;0.002263348;-0.03248378,-0.1074608;-0.2941705;-0.001751419,-0.1065697;-0.5893592;0.05175437,-0.1075657;-0.6152462;-0.01336212,0.002569813;0.3999124;0.005224412,0;0;0,0.003130294;0.1995579;0.01291675,0.008344982;0.4993721;0.02012916,0.1184839;0.3787146;-0.01823544,0.1696663;0.1859657;-0.003129262,0.2186668;-0.05761218;-0.0308564,-0.1045594;0.362267;-0.004671138,-0.1632669;0.1710775;-0.004836955,-0.2336701;-0.06762269;-0.02861919,0.07078636;0.005324889;-0.03689087,0.08611033;-0.2928438;-0.007555062,0.07440044;-0.5864875;0.05274656,0.0894632;-0.6152261;-0.007030766,-0.07148769;0.002688127;-0.03580899,-0.1005097;-0.2947268;-0.009312415,-0.09886698;-0.5897874;0.04487786,-0.1003895;-0.6136797;-0.02248387,0.006768424;0.3993849;0.0203961,10.16567
-0;0;0,0.001131354;0.199918;0.005616032,0.003423801;0.4998249;0.001130498,0.1135195;0.3768919;-0.03427515,0.1658302;0.1844783;-0.01876391,0.2035753;-0.06071207;-0.04969915,-0.1098632;0.3593341;-0.005369211,-0.1912511;0.1795164;0.02690469,-0.329455;-0.02880256;0.02519909,0.06891614;0.005753414;-0.0402177,0.08356723;-0.2917502;-0.00448345,0.07202812;-0.5848686;0.05835324,0.07840572;-0.6158846;8.027628E-05,-0.07307312;0.002263348;-0.03248378,-0.1074608;-0.2941705;-0.001751419,-0.1065697;-0.5893592;0.05175437,-0.1075657;-0.6152462;-0.01336212,0.002569813;0.3999124;0.005224412,0;0;0,0.003130294;0.1995579;0.01291675,0.008344982;0.4993721;0.02012916,0.1184839;0.3787146;-0.01823544,0.1696663;0.1859657;-0.003129262,0.2186668;-0.05761218;-0.0308564,-0.1045594;0.362267;-0.004671138,-0.1632669;0.1710775;-0.004836955,-0.2336701;-0.06762269;-0.02861919,0.07078636;0.005324889;-0.03689087,0.08611033;-0.2928438;-0.007555062,0.07440044;-0.5864875;0.05274656,0.0894632;-0.6152261;-0.007030766,-0.07148769;0.002688127;-0.03580899,-0.1005097;-0.2947268;-0.009312415,-0.09886698;-0.5897874;0.04487786,-0.1003895;-0.6136797;-0.02248387,0.006768424;0.3993849;0.0203961,10.18644
-0;0;0,0.001198841;0.1999175;0.005618538,0.003604697;0.4998231;0.001109672,0.1137914;0.3768442;-0.03388837,0.1656227;0.1842849;-0.01857596,0.2032302;-0.06090778;-0.04965989,-0.1097513;0.3593558;-0.005149713,-0.1932461;0.1806854;0.02809925,-0.3355751;-0.02481782;0.02480036,0.06892532;0.005719117;-0.04020686,0.08368824;-0.2917496;-0.004228849,0.07222907;-0.5849831;0.05808368,0.07852943;-0.616233;0.0001288839,-0.07307614;0.002299972;-0.03247442,-0.1072869;-0.2941932;-0.002119174,-0.1065957;-0.5893378;0.05163171,-0.1070339;-0.6163332;-0.01217669,0.002711201;0.3999114;0.005215111,0;0;0,0.003032258;0.1995679;0.01278463,0.00818304;0.4993872;0.01986905,0.1183713;0.3786475;-0.01831856,0.1692196;0.1858363;-0.002882325,0.218128;-0.05787422;-0.02958748,-0.1046273;0.3620756;-0.004975919,-0.1639172;0.1710659;-0.004997793,-0.2366545;-0.06701316;-0.02796802,0.07094479;0.005272103;-0.0365929,0.08600359;-0.2929431;-0.007594138,0.07433056;-0.5866276;0.05251538,0.08921508;-0.6155083;-0.007119182,-0.07139748;0.002725678;-0.03598569,-0.1006461;-0.2946478;-0.009273816,-0.09861641;-0.5896308;0.04532362,-0.09974854;-0.6144693;-0.02099314,0.00661695;0.3993999;0.02015619,10.19749
-0;0;0,0.001198841;0.1999175;0.005618538,0.003604697;0.4998231;0.001109672,0.1137914;0.3768442;-0.03388837,0.1656227;0.1842849;-0.01857596,0.2032302;-0.06090778;-0.04965989,-0.1097513;0.3593558;-0.005149713,-0.1932461;0.1806854;0.02809925,-0.3355751;-0.02481782;0.02480036,0.06892532;0.005719117;-0.04020686,0.08368824;-0.2917496;-0.004228849,0.07222907;-0.5849831;0.05808368,0.07852943;-0.616233;0.0001288839,-0.07307614;0.002299972;-0.03247442,-0.1072869;-0.2941932;-0.002119174,-0.1065957;-0.5893378;0.05163171,-0.1070339;-0.6163332;-0.01217669,0.002711201;0.3999114;0.005215111,0;0;0,0.003032258;0.1995679;0.01278463,0.00818304;0.4993872;0.01986905,0.1183713;0.3786475;-0.01831856,0.1692196;0.1858363;-0.002882325,0.218128;-0.05787422;-0.02958748,-0.1046273;0.3620756;-0.004975919,-0.1639172;0.1710659;-0.004997793,-0.2366545;-0.06701316;-0.02796802,0.07094479;0.005272103;-0.0365929,0.08600359;-0.2929431;-0.007594138,0.07433056;-0.5866276;0.05251538,0.08921508;-0.6155083;-0.007119182,-0.07139748;0.002725678;-0.03598569,-0.1006461;-0.2946478;-0.009273816,-0.09861641;-0.5896308;0.04532362,-0.09974854;-0.6144693;-0.02099314,0.00661695;0.3993999;0.02015619,10.20908
-0;0;0,0.001198841;0.1999175;0.005618538,0.003604697;0.4998231;0.001109672,0.1137914;0.3768442;-0.03388837,0.1656227;0.1842849;-0.01857596,0.2032302;-0.06090778;-0.04965989,-0.1097513;0.3593558;-0.005149713,-0.1932461;0.1806854;0.02809925,-0.3355751;-0.02481782;0.02480036,0.06892532;0.005719117;-0.04020686,0.08368824;-0.2917496;-0.004228849,0.07222907;-0.5849831;0.05808368,0.07852943;-0.616233;0.0001288839,-0.07307614;0.002299972;-0.03247442,-0.1072869;-0.2941932;-0.002119174,-0.1065957;-0.5893378;0.05163171,-0.1070339;-0.6163332;-0.01217669,0.002711201;0.3999114;0.005215111,0;0;0,0.003032258;0.1995679;0.01278463,0.00818304;0.4993872;0.01986905,0.1183713;0.3786475;-0.01831856,0.1692196;0.1858363;-0.002882325,0.218128;-0.05787422;-0.02958748,-0.1046273;0.3620756;-0.004975919,-0.1639172;0.1710659;-0.004997793,-0.2366545;-0.06701316;-0.02796802,0.07094479;0.005272103;-0.0365929,0.08600359;-0.2929431;-0.007594138,0.07433056;-0.5866276;0.05251538,0.08921508;-0.6155083;-0.007119182,-0.07139748;0.002725678;-0.03598569,-0.1006461;-0.2946478;-0.009273816,-0.09861641;-0.5896308;0.04532362,-0.09974854;-0.6144693;-0.02099314,0.00661695;0.3993999;0.02015619,10.22062
-0;0;0,0.001275939;0.1999163;0.005642777,0.003915166;0.4998203;0.001171608,0.1140249;0.3768741;-0.03381607,0.1656117;0.1842501;-0.0184933,0.2033405;-0.0609259;-0.04956226,-0.1096364;0.359593;-0.004878315,-0.1953141;0.1820119;0.02865197,-0.3425035;-0.02002348;0.02453269,0.06890956;0.005670928;-0.04024068,0.08375467;-0.2917778;-0.004131205,0.07232683;-0.5850682;0.05791815,0.07853324;-0.6164356;0.0001182891,-0.07311213;0.002392924;-0.03238658,-0.1072171;-0.2941287;-0.002190527,-0.1066778;-0.5892773;0.05154027,-0.1073674;-0.6152402;-0.01349176,0.002931835;0.3999091;0.005270053,0;0;0,0.002876028;0.1995699;0.01279034,0.007726301;0.4993953;0.01984221,0.1180112;0.3781815;-0.01807991,0.1688297;0.1853601;-0.002672752,0.2175383;-0.05845322;-0.02879823,-0.1048357;0.3617648;-0.005204095,-0.1656579;0.1712378;-0.004862267,-0.241278;-0.06596968;-0.0275386,0.07104191;0.005285836;-0.036402,0.08560296;-0.2929482;-0.007342305,0.07408457;-0.5867651;0.05214654,0.08890089;-0.6151125;-0.008203831,-0.07133386;0.002693421;-0.03611406,-0.100958;-0.294628;-0.009236962,-0.0988219;-0.5896584;0.04509999,-0.1001371;-0.6132213;-0.02262567,0.006255306;0.3994066;0.02013158,10.24264
-0;0;0,0.001275939;0.1999163;0.005642777,0.003915166;0.4998203;0.001171608,0.1140249;0.3768741;-0.03381607,0.1656117;0.1842501;-0.0184933,0.2033405;-0.0609259;-0.04956226,-0.1096364;0.359593;-0.004878315,-0.1953141;0.1820119;0.02865197,-0.3425035;-0.02002348;0.02453269,0.06890956;0.005670928;-0.04024068,0.08375467;-0.2917778;-0.004131205,0.07232683;-0.5850682;0.05791815,0.07853324;-0.6164356;0.0001182891,-0.07311213;0.002392924;-0.03238658,-0.1072171;-0.2941287;-0.002190527,-0.1066778;-0.5892773;0.05154027,-0.1073674;-0.6152402;-0.01349176,0.002931835;0.3999091;0.005270053,0;0;0,0.002876028;0.1995699;0.01279034,0.007726301;0.4993953;0.01984221,0.1180112;0.3781815;-0.01807991,0.1688297;0.1853601;-0.002672752,0.2175383;-0.05845322;-0.02879823,-0.1048357;0.3617648;-0.005204095,-0.1656579;0.1712378;-0.004862267,-0.241278;-0.06596968;-0.0275386,0.07104191;0.005285836;-0.036402,0.08560296;-0.2929482;-0.007342305,0.07408457;-0.5867651;0.05214654,0.08890089;-0.6151125;-0.008203831,-0.07133386;0.002693421;-0.03611406,-0.100958;-0.294628;-0.009236962,-0.0988219;-0.5896584;0.04509999,-0.1001371;-0.6132213;-0.02262567,0.006255306;0.3994066;0.02013158,10.2549
-0;0;0,0.001358734;0.1999146;0.005682876,0.004117699;0.499818;0.001255217,0.1141652;0.3768294;-0.03379767,0.1656537;0.1841799;-0.0184649,0.2033229;-0.0609965;-0.04960288,-0.1094725;0.3596212;-0.004880558,-0.1979326;0.1835819;0.02954283,-0.3509434;-0.01403546;0.02362051,0.06891406;0.005642476;-0.04023699,0.08372714;-0.2917875;-0.003960393,0.07223502;-0.5851283;0.05783871,0.07902444;-0.6170999;0.0009656101,-0.07312553;0.002407606;-0.03235522,-0.1071727;-0.2941065;-0.00202121,-0.1066988;-0.5892916;0.05151004,-0.1073668;-0.615617;-0.01309639,0.003099991;0.3999068;0.005342613,0;0;0,0.002876028;0.1995699;0.01279034,0.007726301;0.4993953;0.01984221,0.1180112;0.3781815;-0.01807991,0.1688297;0.1853601;-0.002672752,0.2175383;-0.05845322;-0.02879823,-0.1048357;0.3617648;-0.005204095,-0.1656579;0.1712378;-0.004862267,-0.241278;-0.06596968;-0.0275386,0.07104191;0.005285836;-0.036402,0.08560296;-0.2929482;-0.007342305,0.07408457;-0.5867651;0.05214654,0.08890089;-0.6151125;-0.008203831,-0.07133386;0.002693421;-0.03611406,-0.100958;-0.294628;-0.009236962,-0.0988219;-0.5896584;0.04509999,-0.1001371;-0.6132213;-0.02262567,0.006255306;0.3994066;0.02013158,10.2692
-0;0;0,0.001358734;0.1999146;0.005682876,0.004117699;0.499818;0.001255217,0.1141652;0.3768294;-0.03379767,0.1656537;0.1841799;-0.0184649,0.2033229;-0.0609965;-0.04960288,-0.1094725;0.3596212;-0.004880558,-0.1979326;0.1835819;0.02954283,-0.3509434;-0.01403546;0.02362051,0.06891406;0.005642476;-0.04023699,0.08372714;-0.2917875;-0.003960393,0.07223502;-0.5851283;0.05783871,0.07902444;-0.6170999;0.0009656101,-0.07312553;0.002407606;-0.03235522,-0.1071727;-0.2941065;-0.00202121,-0.1066988;-0.5892916;0.05151004,-0.1073668;-0.615617;-0.01309639,0.003099991;0.3999068;0.005342613,0;0;0,0.002805087;0.1995773;0.01268916,0.00760661;0.4994065;0.01963984,0.1180427;0.3783315;-0.01793156,0.1686713;0.1854857;-0.002207283,0.2170929;-0.05838075;-0.0283705,-0.1049154;0.3617256;-0.005437244,-0.1672129;0.1716782;-0.004418927,-0.2458394;-0.06463787;-0.02615757,0.07111752;0.005293125;-0.03625301,0.08542466;-0.2929354;-0.007011352,0.07400321;-0.5867997;0.05226154,0.08901998;-0.6147642;-0.008533541,-0.07127193;0.002688529;-0.03623649,-0.1009585;-0.2946291;-0.009385958,-0.09854688;-0.5895289;0.04564427,-0.09988485;-0.6144133;-0.02061678,0.006147335;0.3994176;0.01994721,10.28175
-0;0;0,0.00150416;0.1999083;0.005864772,0.004482011;0.4998147;0.001778846,0.1143443;0.3765972;-0.03359141,0.1656417;0.183887;-0.01838019,0.2032112;-0.06128034;-0.04970889,-0.1091848;0.3596836;-0.004650319,-0.1996915;0.1847631;0.03015432,-0.355902;-0.01032303;0.02385605,0.06890383;0.005602936;-0.04026001,0.08368938;-0.2918338;-0.004027918,0.07208266;-0.5851519;0.05785771,0.0789271;-0.6170375;0.0008673109,-0.07314364;0.002443245;-0.03231158,-0.1072484;-0.2940977;-0.002306236,-0.1067675;-0.589249;0.05141094,-0.1080782;-0.6155127;-0.01325835,0.00339656;0.3998994;0.005748211,0;0;0,0.002805087;0.1995773;0.01268916,0.00760661;0.4994065;0.01963984,0.1180427;0.3783315;-0.01793156,0.1686713;0.1854857;-0.002207283,0.2170929;-0.05838075;-0.0283705,-0.1049154;0.3617256;-0.005437244,-0.1672129;0.1716782;-0.004418927,-0.2458394;-0.06463787;-0.02615757,0.07111752;0.005293125;-0.03625301,0.08542466;-0.2929354;-0.007011352,0.07400321;-0.5867997;0.05226154,0.08901998;-0.6147642;-0.008533541,-0.07127193;0.002688529;-0.03623649,-0.1009585;-0.2946291;-0.009385958,-0.09854688;-0.5895289;0.04564427,-0.09988485;-0.6144133;-0.02061678,0.006147335;0.3994176;0.01994721,10.29412
-0;0;0,0.00150416;0.1999083;0.005864772,0.004482011;0.4998147;0.001778846,0.1143443;0.3765972;-0.03359141,0.1656417;0.183887;-0.01838019,0.2032112;-0.06128034;-0.04970889,-0.1091848;0.3596836;-0.004650319,-0.1996915;0.1847631;0.03015432,-0.355902;-0.01032303;0.02385605,0.06890383;0.005602936;-0.04026001,0.08368938;-0.2918338;-0.004027918,0.07208266;-0.5851519;0.05785771,0.0789271;-0.6170375;0.0008673109,-0.07314364;0.002443245;-0.03231158,-0.1072484;-0.2940977;-0.002306236,-0.1067675;-0.589249;0.05141094,-0.1080782;-0.6155127;-0.01325835,0.00339656;0.3998994;0.005748211,0;0;0,0.002805087;0.1995773;0.01268916,0.00760661;0.4994065;0.01963984,0.1180427;0.3783315;-0.01793156,0.1686713;0.1854857;-0.002207283,0.2170929;-0.05838075;-0.0283705,-0.1049154;0.3617256;-0.005437244,-0.1672129;0.1716782;-0.004418927,-0.2458394;-0.06463787;-0.02615757,0.07111752;0.005293125;-0.03625301,0.08542466;-0.2929354;-0.007011352,0.07400321;-0.5867997;0.05226154,0.08901998;-0.6147642;-0.008533541,-0.07127193;0.002688529;-0.03623649,-0.1009585;-0.2946291;-0.009385958,-0.09854688;-0.5895289;0.04564427,-0.09988485;-0.6144133;-0.02061678,0.006147335;0.3994176;0.01994721,10.30575
-0;0;0,0.001685692;0.1999006;0.006073913,0.005246338;0.4998084;0.002544025,0.1146316;0.376551;-0.03370925,0.1659894;0.1838689;-0.01834699,0.2034067;-0.06128143;-0.04998956,-0.1088801;0.360258;-0.003812371,-0.202055;0.1868477;0.03150504,-0.3636184;-0.003775135;0.0237461,0.06891071;0.005593852;-0.0402495,0.08379687;-0.2918518;-0.004131533,0.07216765;-0.585197;0.05762086,0.07865325;-0.6175107;0.001208249,-0.0731435;0.002450728;-0.03231133,-0.1071383;-0.2941102;-0.002378525,-0.106406;-0.5892566;0.05136228,-0.1080645;-0.6155958;-0.01321,0.003934025;0.3998879;0.006308669,0;0;0,0.003116001;0.1995835;0.01251881,0.008940541;0.4994122;0.01844182,0.1190848;0.3782886;-0.01813131,0.1696692;0.1854408;-0.002290433,0.2178805;-0.05856895;-0.02748838,-0.104554;0.3619016;-0.004096001,-0.171377;0.1733969;-0.003291521,-0.2506087;-0.06272089;-0.02498796,0.07116865;0.005263394;-0.03615687,0.08528673;-0.2929672;-0.006844267,0.07411784;-0.5869195;0.05203908,0.08846243;-0.6149854;-0.008788157,-0.07123798;0.002707301;-0.03630178,-0.1011595;-0.2945788;-0.009363359,-0.09864669;-0.5895056;0.04551729,-0.1000549;-0.6144547;-0.02066924,0.00701844;0.3994336;0.01920511,10.32816
-0;0;0,0.001685692;0.1999006;0.006073913,0.005246338;0.4998084;0.002544025,0.1146316;0.376551;-0.03370925,0.1659894;0.1838689;-0.01834699,0.2034067;-0.06128143;-0.04998956,-0.1088801;0.360258;-0.003812371,-0.202055;0.1868477;0.03150504,-0.3636184;-0.003775135;0.0237461,0.06891071;0.005593852;-0.0402495,0.08379687;-0.2918518;-0.004131533,0.07216765;-0.585197;0.05762086,0.07865325;-0.6175107;0.001208249,-0.0731435;0.002450728;-0.03231133,-0.1071383;-0.2941102;-0.002378525,-0.106406;-0.5892566;0.05136228,-0.1080645;-0.6155958;-0.01321,0.003934025;0.3998879;0.006308669,0;0;0,0.003116001;0.1995835;0.01251881,0.008940541;0.4994122;0.01844182,0.1190848;0.3782886;-0.01813131,0.1696692;0.1854408;-0.002290433,0.2178805;-0.05856895;-0.02748838,-0.104554;0.3619016;-0.004096001,-0.171377;0.1733969;-0.003291521,-0.2506087;-0.06272089;-0.02498796,0.07116865;0.005263394;-0.03615687,0.08528673;-0.2929672;-0.006844267,0.07411784;-0.5869195;0.05203908,0.08846243;-0.6149854;-0.008788157,-0.07123798;0.002707301;-0.03630178,-0.1011595;-0.2945788;-0.009363359,-0.09864669;-0.5895056;0.04551729,-0.1000549;-0.6144547;-0.02066924,0.00701844;0.3994336;0.01920511,10.35026
-0;0;0,0.001783682;0.1998968;0.006170582,0.005479482;0.4998049;0.002817292,0.1148577;0.3764285;-0.03334216,0.1660668;0.1836819;-0.01829528,0.2030273;-0.06154789;-0.04985883,-0.1087462;0.3603492;-0.00326689,-0.2041067;0.1882272;0.03251557,-0.3705144;0.001861244;0.02378557,0.06893273;0.005582003;-0.04021342,0.08382972;-0.2918666;-0.004124224,0.07218566;-0.5852184;0.05759394,0.07876018;-0.6175014;0.001146831,-0.07312059;0.002486329;-0.0323604,-0.1071724;-0.2940603;-0.002351025,-0.1060144;-0.5890901;0.05201923,-0.1078742;-0.6155164;-0.0124444,0.004130775;0.3998827;0.006525618,0;0;0,0.003116001;0.1995835;0.01251881,0.008940541;0.4994122;0.01844182,0.1190848;0.3782886;-0.01813131,0.1696692;0.1854408;-0.002290433,0.2178805;-0.05856895;-0.02748838,-0.104554;0.3619016;-0.004096001,-0.171377;0.1733969;-0.003291521,-0.2506087;-0.06272089;-0.02498796,0.07116865;0.005263394;-0.03615687,0.08528673;-0.2929672;-0.006844267,0.07411784;-0.5869195;0.05203908,0.08846243;-0.6149854;-0.008788157,-0.07123798;0.002707301;-0.03630178,-0.1011595;-0.2945788;-0.009363359,-0.09864669;-0.5895056;0.04551729,-0.1000549;-0.6144547;-0.02066924,0.00701844;0.3994336;0.01920511,10.36404
-0;0;0,0.001783682;0.1998968;0.006170582,0.005479482;0.4998049;0.002817292,0.1148577;0.3764285;-0.03334216,0.1660668;0.1836819;-0.01829528,0.2030273;-0.06154789;-0.04985883,-0.1087462;0.3603492;-0.00326689,-0.2041067;0.1882272;0.03251557,-0.3705144;0.001861244;0.02378557,0.06893273;0.005582003;-0.04021342,0.08382972;-0.2918666;-0.004124224,0.07218566;-0.5852184;0.05759394,0.07876018;-0.6175014;0.001146831,-0.07312059;0.002486329;-0.0323604,-0.1071724;-0.2940603;-0.002351025,-0.1060144;-0.5890901;0.05201923,-0.1078742;-0.6155164;-0.0124444,0.004130775;0.3998827;0.006525618,0;0;0,0.002923008;0.1995889;0.01247917,0.008480569;0.4994253;0.01832756,0.1186917;0.378393;-0.01830623,0.1691027;0.1855128;-0.002307562,0.2174209;-0.05850026;-0.0272672,-0.1049965;0.3620107;-0.004123263,-0.1733716;0.1740657;-0.002894764,-0.2576965;-0.06039651;-0.02330995,0.07117458;0.005233537;-0.03614954,0.08495809;-0.2930452;-0.007170307,0.07397238;-0.586971;0.0518802,0.08778781;-0.6151631;-0.008907273,-0.07114206;0.002741342;-0.03648687,-0.1015939;-0.2944707;-0.009326532,-0.09905536;-0.5895582;0.04468196,-0.1006012;-0.6146846;-0.02130016,0.006627252;0.3994454;0.01908834,10.38379
-0;0;0,0.001895814;0.1998929;0.00626524,0.005679864;0.4997998;0.002940604,0.1149897;0.3761697;-0.03320765,0.1659261;0.1833444;-0.01824488,0.2025206;-0.06190297;-0.05009702,-0.1087138;0.3606291;-0.002546951,-0.2060389;0.1896131;0.03324914,-0.3766768;0.007122487;0.02431086,0.06888807;0.005570275;-0.04029151,0.08364788;-0.2918785;-0.00414785,0.07186739;-0.585242;0.05748854,0.0786282;-0.6174695;0.0009825528,-0.07314813;0.002510371;-0.03229627,-0.1073151;-0.2940376;-0.00243073,-0.1061646;-0.5890416;0.05207906,-0.1081159;-0.6149541;-0.01298615,0.004312619;0.3998779;0.006648362,0;0;0,0.002923008;0.1995889;0.01247917,0.008480569;0.4994253;0.01832756,0.1186917;0.378393;-0.01830623,0.1691027;0.1855128;-0.002307562,0.2174209;-0.05850026;-0.0272672,-0.1049965;0.3620107;-0.004123263,-0.1733716;0.1740657;-0.002894764,-0.2576965;-0.06039651;-0.02330995,0.07117458;0.005233537;-0.03614954,0.08495809;-0.2930452;-0.007170307,0.07397238;-0.586971;0.0518802,0.08778781;-0.6151631;-0.008907273,-0.07114206;0.002741342;-0.03648687,-0.1015939;-0.2944707;-0.009326532,-0.09905536;-0.5895582;0.04468196,-0.1006012;-0.6146846;-0.02130016,0.006627252;0.3994454;0.01908834,10.40627
-0;0;0,0.001895814;0.1998929;0.00626524,0.005679864;0.4997998;0.002940604,0.1149897;0.3761697;-0.03320765,0.1659261;0.1833444;-0.01824488,0.2025206;-0.06190297;-0.05009702,-0.1087138;0.3606291;-0.002546951,-0.2060389;0.1896131;0.03324914,-0.3766768;0.007122487;0.02431086,0.06888807;0.005570275;-0.04029151,0.08364788;-0.2918785;-0.00414785,0.07186739;-0.585242;0.05748854,0.0786282;-0.6174695;0.0009825528,-0.07314813;0.002510371;-0.03229627,-0.1073151;-0.2940376;-0.00243073,-0.1061646;-0.5890416;0.05207906,-0.1081159;-0.6149541;-0.01298615,0.004312619;0.3998779;0.006648362,0;0;0,0.002923008;0.1995889;0.01247917,0.008480569;0.4994253;0.01832756,0.1186917;0.378393;-0.01830623,0.1691027;0.1855128;-0.002307562,0.2174209;-0.05850026;-0.0272672,-0.1049965;0.3620107;-0.004123263,-0.1733716;0.1740657;-0.002894764,-0.2576965;-0.06039651;-0.02330995,0.07117458;0.005233537;-0.03614954,0.08495809;-0.2930452;-0.007170307,0.07397238;-0.586971;0.0518802,0.08778781;-0.6151631;-0.008907273,-0.07114206;0.002741342;-0.03648687,-0.1015939;-0.2944707;-0.009326532,-0.09905536;-0.5895582;0.04468196,-0.1006012;-0.6146846;-0.02130016,0.006627252;0.3994454;0.01908834,10.41731
-0;0;0,0.001981115;0.1998874;0.006412492,0.005908262;0.4997954;0.003361935,0.1151354;0.3761429;-0.0329748,0.1659783;0.1832832;-0.01813703,0.2022897;-0.06198208;-0.05017468,-0.1087922;0.3611238;-0.001037374,-0.2088574;0.1915184;0.03390492,-0.3819057;0.01137501;0.02377474,0.06887481;0.005560387;-0.04031552,0.0836764;-0.2918771;-0.004095506,0.07185312;-0.5852565;0.05745738,0.07859601;-0.6174075;0.0008381456,-0.07315975;0.002536606;-0.03226787,-0.1073467;-0.294008;-0.002392128,-0.1062115;-0.5890306;0.05201765,-0.1082324;-0.6150528;-0.01291727,0.004497065;0.3998707;0.00697688,0;0;0,0.002748711;0.1995964;0.01239907,0.008164691;0.4994367;0.01818192,0.1184852;0.3782647;-0.0181269,0.1687813;0.1853569;-0.002098858,0.217159;-0.05869129;-0.02659547,-0.1054153;0.3621104;-0.003728315,-0.1749951;0.1746089;-0.002366055,-0.2666973;-0.05711955;-0.02218129,0.07114358;0.005166731;-0.0362201,0.08465212;-0.2931052;-0.007041223,0.07370793;-0.5870688;0.05182836,0.08732169;-0.6151983;-0.009085044,-0.07111423;0.002820312;-0.03653507,-0.1019321;-0.2943575;-0.009412739,-0.09936432;-0.5894645;0.04448736,-0.1011043;-0.6144813;-0.02161453,0.006345344;0.3994563;0.0189616,10.43954
-0;0;0,0.001981115;0.1998874;0.006412492,0.005908262;0.4997954;0.003361935,0.1151354;0.3761429;-0.0329748,0.1659783;0.1832832;-0.01813703,0.2022897;-0.06198208;-0.05017468,-0.1087922;0.3611238;-0.001037374,-0.2088574;0.1915184;0.03390492,-0.3819057;0.01137501;0.02377474,0.06887481;0.005560387;-0.04031552,0.0836764;-0.2918771;-0.004095506,0.07185312;-0.5852565;0.05745738,0.07859601;-0.6174075;0.0008381456,-0.07315975;0.002536606;-0.03226787,-0.1073467;-0.294008;-0.002392128,-0.1062115;-0.5890306;0.05201765,-0.1082324;-0.6150528;-0.01291727,0.004497065;0.3998707;0.00697688,0;0;0,0.002748711;0.1995964;0.01239907,0.008164691;0.4994367;0.01818192,0.1184852;0.3782647;-0.0181269,0.1687813;0.1853569;-0.002098858,0.217159;-0.05869129;-0.02659547,-0.1054153;0.3621104;-0.003728315,-0.1749951;0.1746089;-0.002366055,-0.2666973;-0.05711955;-0.02218129,0.07114358;0.005166731;-0.0362201,0.08465212;-0.2931052;-0.007041223,0.07370793;-0.5870688;0.05182836,0.08732169;-0.6151983;-0.009085044,-0.07111423;0.002820312;-0.03653507,-0.1019321;-0.2943575;-0.009412739,-0.09936432;-0.5894645;0.04448736,-0.1011043;-0.6144813;-0.02161453,0.006345344;0.3994563;0.0189616,10.45094
-0;0;0,0.002092141;0.1998795;0.006620262,0.006091845;0.4997885;0.003792685,0.1155068;0.3762121;-0.03209494,0.1661663;0.1832225;-0.01836145,0.2021436;-0.06203142;-0.05086017,-0.1088172;0.3616645;-0.0005597142,-0.2111818;0.193498;0.03467516,-0.38675;0.01576853;0.02529114,0.06881472;0.005489706;-0.04042768,0.08352794;-0.2919754;-0.00439962,0.07172021;-0.5853301;0.05727354,0.07830022;-0.6172817;0.0003468916,-0.07318719;0.002606516;-0.03220002,-0.1074369;-0.293939;-0.002405023,-0.1062925;-0.588972;0.05194751,-0.1083169;-0.6156095;-0.01226002,0.004666607;0.3998616;0.007340428,0;0;0,0.002748711;0.1995964;0.01239907,0.008164691;0.4994367;0.01818192,0.1184852;0.3782647;-0.0181269,0.1687813;0.1853569;-0.002098858,0.217159;-0.05869129;-0.02659547,-0.1054153;0.3621104;-0.003728315,-0.1749951;0.1746089;-0.002366055,-0.2666973;-0.05711955;-0.02218129,0.07114358;0.005166731;-0.0362201,0.08465212;-0.2931052;-0.007041223,0.07370793;-0.5870688;0.05182836,0.08732169;-0.6151983;-0.009085044,-0.07111423;0.002820312;-0.03653507,-0.1019321;-0.2943575;-0.009412739,-0.09936432;-0.5894645;0.04448736,-0.1011043;-0.6144813;-0.02161453,0.006345344;0.3994563;0.0189616,10.47357
-0;0;0,0.002195316;0.1998734;0.006768113,0.006414133;0.4997824;0.00424021,0.1155939;0.3760509;-0.03209916,0.166186;0.183042;-0.01838771,0.2017644;-0.06223829;-0.05112569,-0.1086423;0.3617946;9.420095E-05,-0.2128341;0.1946089;0.03463434,-0.3916716;0.02015451;0.02553534,0.06880183;0.005397869;-0.04046198,0.08359943;-0.2920626;-0.00443032,0.07177431;-0.5854262;0.05719749,0.078291;-0.6169692;-0.0003200322,-0.07321802;0.0027475;-0.03211811,-0.1073113;-0.2938332;-0.002494575,-0.1064577;-0.5889474;0.05142085,-0.1082467;-0.614898;-0.01360453,0.004909505;0.3998529;0.007680601,0;0;0,0.002730656;0.1995909;0.0124914,0.00795717;0.4994345;0.0183231,0.1182615;0.3782798;-0.01823635,0.1684793;0.1853715;-0.001971278,0.2168421;-0.05864927;-0.02676903,-0.1055612;0.3620797;-0.003632402,-0.1773512;0.1754202;-0.001535186,-0.2754602;-0.05382273;-0.01948883,0.07121786;0.005117686;-0.03608081,0.08429337;-0.2931749;-0.006915737,0.07327079;-0.5871278;0.05199251,0.08736772;-0.6149247;-0.009235866,-0.07106312;0.002838183;-0.03663299,-0.1021635;-0.294312;-0.009530351,-0.09949678;-0.5894084;0.04442329,-0.1020213;-0.6147843;-0.02124326,0.006188807;0.3994529;0.01906531,10.49527
-0;0;0,0.002195316;0.1998734;0.006768113,0.006414133;0.4997824;0.00424021,0.1155939;0.3760509;-0.03209916,0.166186;0.183042;-0.01838771,0.2017644;-0.06223829;-0.05112569,-0.1086423;0.3617946;9.420095E-05,-0.2128341;0.1946089;0.03463434,-0.3916716;0.02015451;0.02553534,0.06880183;0.005397869;-0.04046198,0.08359943;-0.2920626;-0.00443032,0.07177431;-0.5854262;0.05719749,0.078291;-0.6169692;-0.0003200322,-0.07321802;0.0027475;-0.03211811,-0.1073113;-0.2938332;-0.002494575,-0.1064577;-0.5889474;0.05142085,-0.1082467;-0.614898;-0.01360453,0.004909505;0.3998529;0.007680601,0;0;0,0.002730656;0.1995909;0.0124914,0.00795717;0.4994345;0.0183231,0.1182615;0.3782798;-0.01823635,0.1684793;0.1853715;-0.001971278,0.2168421;-0.05864927;-0.02676903,-0.1055612;0.3620797;-0.003632402,-0.1773512;0.1754202;-0.001535186,-0.2754602;-0.05382273;-0.01948883,0.07121786;0.005117686;-0.03608081,0.08429337;-0.2931749;-0.006915737,0.07327079;-0.5871278;0.05199251,0.08736772;-0.6149247;-0.009235866,-0.07106312;0.002838183;-0.03663299,-0.1021635;-0.294312;-0.009530351,-0.09949678;-0.5894084;0.04442329,-0.1020213;-0.6147843;-0.02124326,0.006188807;0.3994529;0.01906531,10.50701
-0;0;0,0.002195316;0.1998734;0.006768113,0.006414133;0.4997824;0.00424021,0.1155939;0.3760509;-0.03209916,0.166186;0.183042;-0.01838771,0.2017644;-0.06223829;-0.05112569,-0.1086423;0.3617946;9.420095E-05,-0.2128341;0.1946089;0.03463434,-0.3916716;0.02015451;0.02553534,0.06880183;0.005397869;-0.04046198,0.08359943;-0.2920626;-0.00443032,0.07177431;-0.5854262;0.05719749,0.078291;-0.6169692;-0.0003200322,-0.07321802;0.0027475;-0.03211811,-0.1073113;-0.2938332;-0.002494575,-0.1064577;-0.5889474;0.05142085,-0.1082467;-0.614898;-0.01360453,0.004909505;0.3998529;0.007680601,0;0;0,0.002730656;0.1995909;0.0124914,0.00795717;0.4994345;0.0183231,0.1182615;0.3782798;-0.01823635,0.1684793;0.1853715;-0.001971278,0.2168421;-0.05864927;-0.02676903,-0.1055612;0.3620797;-0.003632402,-0.1773512;0.1754202;-0.001535186,-0.2754602;-0.05382273;-0.01948883,0.07121786;0.005117686;-0.03608081,0.08429337;-0.2931749;-0.006915737,0.07327079;-0.5871278;0.05199251,0.08736772;-0.6149247;-0.009235866,-0.07106312;0.002838183;-0.03663299,-0.1021635;-0.294312;-0.009530351,-0.09949678;-0.5894084;0.04442329,-0.1020213;-0.6147843;-0.02124326,0.006188807;0.3994529;0.01906531,10.5179
-0;0;0,0.002370312;0.1998679;0.006871271,0.006944453;0.4997733;0.004536571,0.1160838;0.3758965;-0.03152737,0.1664702;0.1827863;-0.0185021,0.2016241;-0.06247449;-0.05183879,-0.1082606;0.361859;0.0002148263,-0.2147807;0.1963397;0.03566695,-0.3958266;0.02419913;0.0261802,0.06877904;0.005309803;-0.04051233,0.08370651;-0.2921573;-0.004588682,0.07166464;-0.5856383;0.05643511,0.07875872;-0.6171851;-0.001008745,-0.07323441;0.00285846;-0.03207102,-0.1071517;-0.2937657;-0.002681317,-0.1063438;-0.5889064;0.05108961,-0.1089055;-0.6144348;-0.01440001,0.005308475;0.3998436;0.007910601,0;0;0,0.002537778;0.1996007;0.01237435,0.007561089;0.4994508;0.01808789,0.1179096;0.3782401;-0.01839175,0.1680977;0.1853329;-0.002021816,0.2165201;-0.05868648;-0.02671608,-0.1059376;0.3619615;-0.003549904,-0.180589;0.1764351;-0.0008803634,-0.2827183;-0.05101858;-0.01916782,0.07117274;0.005123111;-0.03616899,0.08390179;-0.2932045;-0.007210463,0.07284284;-0.587157;0.05169319,0.08710881;-0.6149907;-0.009449217,-0.07105339;0.002837426;-0.03665193,-0.1024305;-0.2942795;-0.009503841,-0.09992421;-0.5894082;0.04428053,-0.1016674;-0.6174638;-0.01820377,0.005827542;0.3994687;0.01885005,10.54017
-0;0;0,0.00261756;0.1998573;0.007086036,0.007713783;0.4997568;0.00509327,0.1164305;0.3753884;-0.03144929,0.1666568;0.1822191;-0.01868454,0.2016309;-0.06304009;-0.05222159,-0.1077582;0.3619573;0.001314929,-0.2159499;0.1974381;0.03635744,-0.398926;0.02735321;0.0268241,0.06870435;0.005209987;-0.04065178,0.08374386;-0.2922634;-0.004826937,0.07165354;-0.5857301;0.05625593,0.07884447;-0.6171718;-0.001324736,-0.07332183;0.002986674;-0.03185889,-0.1071603;-0.2936912;-0.002924213,-0.1063492;-0.5888357;0.05082592,-0.1090242;-0.6141344;-0.01492312,0.00589219;0.3998265;0.008350944,0;0;0,0.002537778;0.1996007;0.01237435,0.007561089;0.4994508;0.01808789,0.1179096;0.3782401;-0.01839175,0.1680977;0.1853329;-0.002021816,0.2165201;-0.05868648;-0.02671608,-0.1059376;0.3619615;-0.003549904,-0.180589;0.1764351;-0.0008803634,-0.2827183;-0.05101858;-0.01916782,0.07117274;0.005123111;-0.03616899,0.08390179;-0.2932045;-0.007210463,0.07284284;-0.587157;0.05169319,0.08710881;-0.6149907;-0.009449217,-0.07105339;0.002837426;-0.03665193,-0.1024305;-0.2942795;-0.009503841,-0.09992421;-0.5894082;0.04428053,-0.1016674;-0.6174638;-0.01820377,0.005827542;0.3994687;0.01885005,10.56239
-0;0;0,0.00261756;0.1998573;0.007086036,0.007713783;0.4997568;0.00509327,0.1164305;0.3753884;-0.03144929,0.1666568;0.1822191;-0.01868454,0.2016309;-0.06304009;-0.05222159,-0.1077582;0.3619573;0.001314929,-0.2159499;0.1974381;0.03635744,-0.398926;0.02735321;0.0268241,0.06870435;0.005209987;-0.04065178,0.08374386;-0.2922634;-0.004826937,0.07165354;-0.5857301;0.05625593,0.07884447;-0.6171718;-0.001324736,-0.07332183;0.002986674;-0.03185889,-0.1071603;-0.2936912;-0.002924213,-0.1063492;-0.5888357;0.05082592,-0.1090242;-0.6141344;-0.01492312,0.00589219;0.3998265;0.008350944,0;0;0,0.002537778;0.1996007;0.01237435,0.007561089;0.4994508;0.01808789,0.1179096;0.3782401;-0.01839175,0.1680977;0.1853329;-0.002021816,0.2165201;-0.05868648;-0.02671608,-0.1059376;0.3619615;-0.003549904,-0.180589;0.1764351;-0.0008803634,-0.2827183;-0.05101858;-0.01916782,0.07117274;0.005123111;-0.03616899,0.08390179;-0.2932045;-0.007210463,0.07284284;-0.587157;0.05169319,0.08710881;-0.6149907;-0.009449217,-0.07105339;0.002837426;-0.03665193,-0.1024305;-0.2942795;-0.009503841,-0.09992421;-0.5894082;0.04428053,-0.1016674;-0.6174638;-0.01820377,0.005827542;0.3994687;0.01885005,10.57368
-0;0;0,0.002683845;0.1998519;0.007211358,0.007909053;0.4997517;0.005552073,0.1167068;0.3754097;-0.03079284,0.1666865;0.1821328;-0.01870785,0.2014306;-0.06310865;-0.05261207,-0.1077835;0.3623041;0.002750824,-0.2184981;0.1991808;0.03641157,-0.4035977;0.0313796;0.02741605,0.06868783;0.005184241;-0.04068298,0.08364636;-0.2922837;-0.004779544,0.0712502;-0.585772;0.0561385,0.07827099;-0.6155012;-0.003811177,-0.07334262;0.003035344;-0.03180639,-0.1071623;-0.293657;-0.002998907,-0.1064013;-0.5887643;0.05095587,-0.1087594;-0.6147663;-0.0139913,0.006047293;0.3998182;0.008687607,0;0;0,0.00248025;0.1996059;0.01230214,0.007351916;0.4994611;0.01790125,0.1178739;0.3786061;-0.01833655,0.1678491;0.1856369;-0.002046298,0.2162639;-0.05839059;-0.02667521,-0.1063136;0.3620089;-0.002736874,-0.1829961;0.1773081;-0.0004076145,-0.2921874;-0.04687673;-0.01825237,0.07119513;0.00521758;-0.03611135,0.08361837;-0.2931526;-0.007460143,0.07254504;-0.5870934;0.0514992,0.08666287;-0.6145326;-0.01017623,-0.07100542;0.002746941;-0.03675164,-0.1026688;-0.2943539;-0.009760426,-0.1002272;-0.5894829;0.04402541,-0.1048132;-0.5567793;-0.0543606,0.005654356;0.3994786;0.01869185,10.59576
-0;0;0,0.002683845;0.1998519;0.007211358,0.007909053;0.4997517;0.005552073,0.1167068;0.3754097;-0.03079284,0.1666865;0.1821328;-0.01870785,0.2014306;-0.06310865;-0.05261207,-0.1077835;0.3623041;0.002750824,-0.2184981;0.1991808;0.03641157,-0.4035977;0.0313796;0.02741605,0.06868783;0.005184241;-0.04068298,0.08364636;-0.2922837;-0.004779544,0.0712502;-0.585772;0.0561385,0.07827099;-0.6155012;-0.003811177,-0.07334262;0.003035344;-0.03180639,-0.1071623;-0.293657;-0.002998907,-0.1064013;-0.5887643;0.05095587,-0.1087594;-0.6147663;-0.0139913,0.006047293;0.3998182;0.008687607,0;0;0,0.00248025;0.1996059;0.01230214,0.007351916;0.4994611;0.01790125,0.1178739;0.3786061;-0.01833655,0.1678491;0.1856369;-0.002046298,0.2162639;-0.05839059;-0.02667521,-0.1063136;0.3620089;-0.002736874,-0.1829961;0.1773081;-0.0004076145,-0.2921874;-0.04687673;-0.01825237,0.07119513;0.00521758;-0.03611135,0.08361837;-0.2931526;-0.007460143,0.07254504;-0.5870934;0.0514992,0.08666287;-0.6145326;-0.01017623,-0.07100542;0.002746941;-0.03675164,-0.1026688;-0.2943539;-0.009760426,-0.1002272;-0.5894829;0.04402541,-0.1048132;-0.5567793;-0.0543606,0.005654356;0.3994786;0.01869185,10.60746
-0;0;0,0.002895964;0.1998468;0.007272253,0.008365193;0.4997432;0.005764107,0.1169829;0.3753281;-0.03084433,0.1667196;0.1819841;-0.0188291,0.2014321;-0.06325041;-0.05281543,-0.107511;0.3625864;0.002885405,-0.2204703;0.201076;0.03686503,-0.408883;0.03697067;0.02849324,0.0686722;0.005104386;-0.04071945,0.08392105;-0.2923727;-0.005013984,0.07152377;-0.5858377;0.0560156,0.07842033;-0.6156707;-0.003810294,-0.07333625;0.003106516;-0.0318142,-0.1068441;-0.2936428;-0.003229404,-0.1064723;-0.5888448;0.05020898,-0.1081832;-0.61481;-0.01480141,0.006414039;0.3998097;0.008844325,0;0;0,0.00248025;0.1996059;0.01230214,0.007351916;0.4994611;0.01790125,0.1178739;0.3786061;-0.01833655,0.1678491;0.1856369;-0.002046298,0.2162639;-0.05839059;-0.02667521,-0.1063136;0.3620089;-0.002736874,-0.1829961;0.1773081;-0.0004076145,-0.2921874;-0.04687673;-0.01825237,0.07119513;0.00521758;-0.03611135,0.08361837;-0.2931526;-0.007460143,0.07254504;-0.5870934;0.0514992,0.08666287;-0.6145326;-0.01017623,-0.07100542;0.002746941;-0.03675164,-0.1026688;-0.2943539;-0.009760426,-0.1002272;-0.5894829;0.04402541,-0.1048132;-0.5567793;-0.0543606,0.005654356;0.3994786;0.01869185,10.62934
-0;0;0,0.002895964;0.1998468;0.007272253,0.008365193;0.4997432;0.005764107,0.1169829;0.3753281;-0.03084433,0.1667196;0.1819841;-0.0188291,0.2014321;-0.06325041;-0.05281543,-0.107511;0.3625864;0.002885405,-0.2204703;0.201076;0.03686503,-0.408883;0.03697067;0.02849324,0.0686722;0.005104386;-0.04071945,0.08392105;-0.2923727;-0.005013984,0.07152377;-0.5858377;0.0560156,0.07842033;-0.6156707;-0.003810294,-0.07333625;0.003106516;-0.0318142,-0.1068441;-0.2936428;-0.003229404,-0.1064723;-0.5888448;0.05020898,-0.1081832;-0.61481;-0.01480141,0.006414039;0.3998097;0.008844325,0;0;0,0.002445488;0.1996107;0.01223014,0.007166225;0.4994707;0.01771242,0.117863;0.3784013;-0.01797401,0.1673744;0.1852974;-0.001864588,0.2155311;-0.05876677;-0.02663574,-0.1064979;0.361889;-0.002434814,-0.1869461;0.1788015;0.0002245374,-0.3024015;-0.0422771;-0.01693036,0.07116742;0.00524571;-0.03616186,0.08335545;-0.2931264;-0.007429892,0.07223544;-0.587099;0.05136219,0.08608532;-0.6145939;-0.01030397,-0.07100711;0.002715118;-0.03675075,-0.1029155;-0.2943692;-0.009865884,-0.1005403;-0.5894781;0.04403289,-0.105121;-0.556785;-0.0543515,0.005513559;0.3994878;0.01853571,10.64103
-0;0;0,0.002895964;0.1998468;0.007272253,0.008365193;0.4997432;0.005764107,0.1169829;0.3753281;-0.03084433,0.1667196;0.1819841;-0.0188291,0.2014321;-0.06325041;-0.05281543,-0.107511;0.3625864;0.002885405,-0.2204703;0.201076;0.03686503,-0.408883;0.03697067;0.02849324,0.0686722;0.005104386;-0.04071945,0.08392105;-0.2923727;-0.005013984,0.07152377;-0.5858377;0.0560156,0.07842033;-0.6156707;-0.003810294,-0.07333625;0.003106516;-0.0318142,-0.1068441;-0.2936428;-0.003229404,-0.1064723;-0.5888448;0.05020898,-0.1081832;-0.61481;-0.01480141,0.006414039;0.3998097;0.008844325,0;0;0,0.002445488;0.1996107;0.01223014,0.007166225;0.4994707;0.01771242,0.117863;0.3784013;-0.01797401,0.1673744;0.1852974;-0.001864588,0.2155311;-0.05876677;-0.02663574,-0.1064979;0.361889;-0.002434814,-0.1869461;0.1788015;0.0002245374,-0.3024015;-0.0422771;-0.01693036,0.07116742;0.00524571;-0.03616186,0.08335545;-0.2931264;-0.007429892,0.07223544;-0.587099;0.05136219,0.08608532;-0.6145939;-0.01030397,-0.07100711;0.002715118;-0.03675075,-0.1029155;-0.2943692;-0.009865884,-0.1005403;-0.5894781;0.04403289,-0.105121;-0.556785;-0.0543515,0.005513559;0.3994878;0.01853571,10.65235
-0;0;0,0.002934195;0.1998389;0.007470007,0.008456217;0.4997358;0.006298876,0.1170939;0.3754343;-0.03040646,0.1667274;0.182036;-0.01884727,0.2012703;-0.06318074;-0.05313301,-0.107351;0.3622479;0.003859674,-0.2219314;0.2017904;0.03739633,-0.4117181;0.03928886;0.02877871,0.06866506;0.005109225;-0.04073089,0.08388329;-0.2923698;-0.005028326,0.07140703;-0.58577;0.05629576,0.07850071;-0.6155114;-0.003629096,-0.07334466;0.00308979;-0.03179646,-0.1067998;-0.2936813;-0.003376795,-0.1063564;-0.588873;0.05011778,-0.1078737;-0.6145724;-0.01520678,0.006493937;0.3997992;0.009267275,0;0;0,0.002445488;0.1996107;0.01223014,0.007166225;0.4994707;0.01771242,0.117863;0.3784013;-0.01797401,0.1673744;0.1852974;-0.001864588,0.2155311;-0.05876677;-0.02663574,-0.1064979;0.361889;-0.002434814,-0.1869461;0.1788015;0.0002245374,-0.3024015;-0.0422771;-0.01693036,0.07116742;0.00524571;-0.03616186,0.08335545;-0.2931264;-0.007429892,0.07223544;-0.587099;0.05136219,0.08608532;-0.6145939;-0.01030397,-0.07100711;0.002715118;-0.03675075,-0.1029155;-0.2943692;-0.009865884,-0.1005403;-0.5894781;0.04403289,-0.105121;-0.556785;-0.0543515,0.005513559;0.3994878;0.01853571,10.66371
-0;0;0,0.002934195;0.1998389;0.007470007,0.008456217;0.4997358;0.006298876,0.1170939;0.3754343;-0.03040646,0.1667274;0.182036;-0.01884727,0.2012703;-0.06318074;-0.05313301,-0.107351;0.3622479;0.003859674,-0.2219314;0.2017904;0.03739633,-0.4117181;0.03928886;0.02877871,0.06866506;0.005109225;-0.04073089,0.08388329;-0.2923698;-0.005028326,0.07140703;-0.58577;0.05629576,0.07850071;-0.6155114;-0.003629096,-0.07334466;0.00308979;-0.03179646,-0.1067998;-0.2936813;-0.003376795,-0.1063564;-0.588873;0.05011778,-0.1078737;-0.6145724;-0.01520678,0.006493937;0.3997992;0.009267275,0;0;0,0.002382105;0.1996178;0.0121268,0.006958608;0.4994828;0.01747995,0.1177622;0.3784722;-0.01800109,0.1671245;0.1853425;-0.001744404,0.2152487;-0.05871554;-0.0266386,-0.1068064;0.3620562;-0.002159888,-0.1898477;0.1801408;0.001147187,-0.3128613;-0.03684245;-0.01576261,0.07119726;0.005249068;-0.03610261,0.08331838;-0.2931263;-0.007375596,0.07207891;-0.5870862;0.05145674,0.08517832;-0.6141915;-0.01085838,-0.0709589;0.002698268;-0.03684499,-0.1030237;-0.2943738;-0.01001153,-0.1008874;-0.5895182;0.04370245,-0.1025015;-0.6177015;-0.01862556,0.005345181;0.3994995;0.01833448,10.67499
-0;0;0,0.003005129;0.1998347;0.007554834,0.00867583;0.4997292;0.00650669,0.1171522;0.3752026;-0.03041117,0.1667508;0.1817949;-0.01885926,0.2012336;-0.06342568;-0.05317838,-0.1072185;0.3623482;0.004090397,-0.2228017;0.2025992;0.03756859,-0.4146435;0.04252273;0.02907126,0.06866365;0.005086183;-0.04073615,0.08386225;-0.292392;-0.005019072,0.07136793;-0.5857813;0.05635389,0.07852034;-0.6155097;-0.003581312,-0.07334711;0.003113164;-0.03178852,-0.1067111;-0.2936757;-0.003447607,-0.1063541;-0.5888828;0.04996249,-0.1079172;-0.6155341;-0.01424136,0.006664635;0.3997923;0.009436565,0;0;0,0.002382105;0.1996178;0.0121268,0.006958608;0.4994828;0.01747995,0.1177622;0.3784722;-0.01800109,0.1671245;0.1853425;-0.001744404,0.2152487;-0.05871554;-0.0266386,-0.1068064;0.3620562;-0.002159888,-0.1898477;0.1801408;0.001147187,-0.3128613;-0.03684245;-0.01576261,0.07119726;0.005249068;-0.03610261,0.08331838;-0.2931263;-0.007375596,0.07207891;-0.5870862;0.05145674,0.08517832;-0.6141915;-0.01085838,-0.0709589;0.002698268;-0.03684499,-0.1030237;-0.2943738;-0.01001153,-0.1008874;-0.5895182;0.04370245,-0.1025015;-0.6177015;-0.01862556,0.005345181;0.3994995;0.01833448,10.69765
-0;0;0,0.003005129;0.1998347;0.007554834,0.00867583;0.4997292;0.00650669,0.1171522;0.3752026;-0.03041117,0.1667508;0.1817949;-0.01885926,0.2012336;-0.06342568;-0.05317838,-0.1072185;0.3623482;0.004090397,-0.2228017;0.2025992;0.03756859,-0.4146435;0.04252273;0.02907126,0.06866365;0.005086183;-0.04073615,0.08386225;-0.292392;-0.005019072,0.07136793;-0.5857813;0.05635389,0.07852034;-0.6155097;-0.003581312,-0.07334711;0.003113164;-0.03178852,-0.1067111;-0.2936757;-0.003447607,-0.1063541;-0.5888828;0.04996249,-0.1079172;-0.6155341;-0.01424136,0.006664635;0.3997923;0.009436565,0;0;0,0.002382105;0.1996178;0.0121268,0.006958608;0.4994828;0.01747995,0.1177622;0.3784722;-0.01800109,0.1671245;0.1853425;-0.001744404,0.2152487;-0.05871554;-0.0266386,-0.1068064;0.3620562;-0.002159888,-0.1898477;0.1801408;0.001147187,-0.3128613;-0.03684245;-0.01576261,0.07119726;0.005249068;-0.03610261,0.08331838;-0.2931263;-0.007375596,0.07207891;-0.5870862;0.05145674,0.08517832;-0.6141915;-0.01085838,-0.0709589;0.002698268;-0.03684499,-0.1030237;-0.2943738;-0.01001153,-0.1008874;-0.5895182;0.04370245,-0.1025015;-0.6177015;-0.01862556,0.005345181;0.3994995;0.01833448,10.70903
-0;0;0,0.003005129;0.1998347;0.007554834,0.00867583;0.4997292;0.00650669,0.1171522;0.3752026;-0.03041117,0.1667508;0.1817949;-0.01885926,0.2012336;-0.06342568;-0.05317838,-0.1072185;0.3623482;0.004090397,-0.2228017;0.2025992;0.03756859,-0.4146435;0.04252273;0.02907126,0.06866365;0.005086183;-0.04073615,0.08386225;-0.292392;-0.005019072,0.07136793;-0.5857813;0.05635389,0.07852034;-0.6155097;-0.003581312,-0.07334711;0.003113164;-0.03178852,-0.1067111;-0.2936757;-0.003447607,-0.1063541;-0.5888828;0.04996249,-0.1079172;-0.6155341;-0.01424136,0.006664635;0.3997923;0.009436565,0;0;0,0.002406192;0.1996171;0.01213382,0.006901449;0.499484;0.01745365,0.1178126;0.3784506;-0.01777223,0.1669319;0.1852566;-0.001543624,0.214814;-0.0588344;-0.02658143,-0.1069401;0.3622816;-0.001986137,-0.1925998;0.1815926;0.001740254,-0.324574;-0.02998388;-0.01609828,0.07119012;0.005187671;-0.03612553,0.08340484;-0.2931823;-0.007382646,0.07193636;-0.5871534;0.0513495,0.08499174;-0.6144375;-0.01075306,-0.0709632;0.002760876;-0.03683208,-0.1029174;-0.2943034;-0.009780809,-0.1012817;-0.5895455;0.04341129,-0.102193;-0.6161258;-0.0208897,0.005320795;0.3995002;0.01831818,10.72082
-0;0;0,0.003081268;0.1998284;0.007687614,0.008870715;0.4997211;0.006827186,0.1172082;0.3750097;-0.03031794,0.1667818;0.1815831;-0.01897886,0.2010552;-0.06364447;-0.05345781,-0.1071321;0.3625712;0.004258935,-0.2246593;0.204227;0.03764304,-0.4189258;0.0470611;0.02993543,0.06866936;0.005020554;-0.04073466,0.0839209;-0.2924608;-0.005066,0.07131965;-0.5857437;0.05679154,0.07854527;-0.6148287;-0.003981341,-0.0733516;0.003176131;-0.03177192,-0.1063999;-0.2936378;-0.00332371,-0.1061738;-0.5888789;0.04989912,-0.1081404;-0.614549;-0.01544742,0.006822558;0.3997833;0.00969813,0;0;0,0.002406192;0.1996171;0.01213382,0.006901449;0.499484;0.01745365,0.1178126;0.3784506;-0.01777223,0.1669319;0.1852566;-0.001543624,0.214814;-0.0588344;-0.02658143,-0.1069401;0.3622816;-0.001986137,-0.1925998;0.1815926;0.001740254,-0.324574;-0.02998388;-0.01609828,0.07119012;0.005187671;-0.03612553,0.08340484;-0.2931823;-0.007382646,0.07193636;-0.5871534;0.0513495,0.08499174;-0.6144375;-0.01075306,-0.0709632;0.002760876;-0.03683208,-0.1029174;-0.2943034;-0.009780809,-0.1012817;-0.5895455;0.04341129,-0.102193;-0.6161258;-0.0208897,0.005320795;0.3995002;0.01831818,10.74319
-0;0;0,0.003081268;0.1998284;0.007687614,0.008870715;0.4997211;0.006827186,0.1172082;0.3750097;-0.03031794,0.1667818;0.1815831;-0.01897886,0.2010552;-0.06364447;-0.05345781,-0.1071321;0.3625712;0.004258935,-0.2246593;0.204227;0.03764304,-0.4189258;0.0470611;0.02993543,0.06866936;0.005020554;-0.04073466,0.0839209;-0.2924608;-0.005066,0.07131965;-0.5857437;0.05679154,0.07854527;-0.6148287;-0.003981341,-0.0733516;0.003176131;-0.03177192,-0.1063999;-0.2936378;-0.00332371,-0.1061738;-0.5888789;0.04989912,-0.1081404;-0.614549;-0.01544742,0.006822558;0.3997833;0.00969813,0;0;0,0.002406192;0.1996171;0.01213382,0.006901449;0.499484;0.01745365,0.1178126;0.3784506;-0.01777223,0.1669319;0.1852566;-0.001543624,0.214814;-0.0588344;-0.02658143,-0.1069401;0.3622816;-0.001986137,-0.1925998;0.1815926;0.001740254,-0.324574;-0.02998388;-0.01609828,0.07119012;0.005187671;-0.03612553,0.08340484;-0.2931823;-0.007382646,0.07193636;-0.5871534;0.0513495,0.08499174;-0.6144375;-0.01075306,-0.0709632;0.002760876;-0.03683208,-0.1029174;-0.2943034;-0.009780809,-0.1012817;-0.5895455;0.04341129,-0.102193;-0.6161258;-0.0208897,0.005320795;0.3995002;0.01831818,10.75454
-0;0;0,0.003133062;0.1998235;0.007794553,0.008890618;0.4997164;0.006909914,0.117139;0.3749973;-0.03051039,0.1667272;0.1815742;-0.01917446,0.2007762;-0.06367794;-0.0537004,-0.107118;0.3626281;0.004470065,-0.2261821;0.205417;0.03776332,-0.4217564;0.04987781;0.03013391,0.06866338;0.004989628;-0.04074855,0.08388183;-0.2925215;-0.005315326,0.0710606;-0.5857543;0.05673428,0.07952874;-0.6144012;-0.004445426,-0.07334416;0.003201356;-0.03178657,-0.1064649;-0.2936306;-0.003611816,-0.1062549;-0.588868;0.04963145,-0.1087876;-0.6145031;-0.01573601,0.006861935;0.3997787;0.009799069,0;0;0,0.002442392;0.1996181;0.01210954,0.006915747;0.4994866;0.01736156,0.1178476;0.3782523;-0.01769433,0.1666666;0.1849937;-0.001330042,0.2144401;-0.05909717;-0.02657592,-0.1070444;0.3625256;-0.001777878,-0.1951198;0.1830071;0.002201306,-0.3315507;-0.02567519;-0.01619151,0.07118409;0.005150866;-0.03614268,0.08322114;-0.2932181;-0.007314608,0.07182049;-0.5872599;0.05107592,0.0843818;-0.614189;-0.01156696,-0.07096709;0.00279559;-0.03682195,-0.1029741;-0.2942896;-0.01006373,-0.1015942;-0.5896038;0.04273382,-0.1026293;-0.6163228;-0.02139983,0.005346195;0.3995028;0.01824809,10.76604
-0;0;0,0.003133062;0.1998235;0.007794553,0.008890618;0.4997164;0.006909914,0.117139;0.3749973;-0.03051039,0.1667272;0.1815742;-0.01917446,0.2007762;-0.06367794;-0.0537004,-0.107118;0.3626281;0.004470065,-0.2261821;0.205417;0.03776332,-0.4217564;0.04987781;0.03013391,0.06866338;0.004989628;-0.04074855,0.08388183;-0.2925215;-0.005315326,0.0710606;-0.5857543;0.05673428,0.07952874;-0.6144012;-0.004445426,-0.07334416;0.003201356;-0.03178657,-0.1064649;-0.2936306;-0.003611816,-0.1062549;-0.588868;0.04963145,-0.1087876;-0.6145031;-0.01573601,0.006861935;0.3997787;0.009799069,0;0;0,0.002442392;0.1996181;0.01210954,0.006915747;0.4994866;0.01736156,0.1178476;0.3782523;-0.01769433,0.1666666;0.1849937;-0.001330042,0.2144401;-0.05909717;-0.02657592,-0.1070444;0.3625256;-0.001777878,-0.1951198;0.1830071;0.002201306,-0.3315507;-0.02567519;-0.01619151,0.07118409;0.005150866;-0.03614268,0.08322114;-0.2932181;-0.007314608,0.07182049;-0.5872599;0.05107592,0.0843818;-0.614189;-0.01156696,-0.07096709;0.00279559;-0.03682195,-0.1029741;-0.2942896;-0.01006373,-0.1015942;-0.5896038;0.04273382,-0.1026293;-0.6163228;-0.02139983,0.005346195;0.3995028;0.01824809,10.7776
-0;0;0,0.003133062;0.1998235;0.007794553,0.008890618;0.4997164;0.006909914,0.117139;0.3749973;-0.03051039,0.1667272;0.1815742;-0.01917446,0.2007762;-0.06367794;-0.0537004,-0.107118;0.3626281;0.004470065,-0.2261821;0.205417;0.03776332,-0.4217564;0.04987781;0.03013391,0.06866338;0.004989628;-0.04074855,0.08388183;-0.2925215;-0.005315326,0.0710606;-0.5857543;0.05673428,0.07952874;-0.6144012;-0.004445426,-0.07334416;0.003201356;-0.03178657,-0.1064649;-0.2936306;-0.003611816,-0.1062549;-0.588868;0.04963145,-0.1087876;-0.6145031;-0.01573601,0.006861935;0.3997787;0.009799069,0;0;0,0.002442392;0.1996181;0.01210954,0.006915747;0.4994866;0.01736156,0.1178476;0.3782523;-0.01769433,0.1666666;0.1849937;-0.001330042,0.2144401;-0.05909717;-0.02657592,-0.1070444;0.3625256;-0.001777878,-0.1951198;0.1830071;0.002201306,-0.3315507;-0.02567519;-0.01619151,0.07118409;0.005150866;-0.03614268,0.08322114;-0.2932181;-0.007314608,0.07182049;-0.5872599;0.05107592,0.0843818;-0.614189;-0.01156696,-0.07096709;0.00279559;-0.03682195,-0.1029741;-0.2942896;-0.01006373,-0.1015942;-0.5896038;0.04273382,-0.1026293;-0.6163228;-0.02139983,0.005346195;0.3995028;0.01824809,10.78933
-0;0;0,0.003196356;0.1998187;0.007892008,0.008996261;0.4997106;0.007058674,0.1171643;0.3749333;-0.03053594,0.1665772;0.1814644;-0.0192164,0.2006488;-0.06375653;-0.05394165,-0.1070605;0.362761;0.00451529,-0.2280876;0.2069921;0.03750721,-0.4249146;0.05301756;0.03036583,0.06862321;0.004957245;-0.04082011,0.08377058;-0.2925584;-0.005394142,0.07085786;-0.5857561;0.05680241,0.07955708;-0.6145585;-0.004144236,-0.07339235;0.003230766;-0.03167215,-0.1065396;-0.2936176;-0.00370211,-0.1062564;-0.5888767;0.04941991,-0.1092654;-0.6150473;-0.01530243,0.006960225;0.3997728;0.00993706,0;0;0,0.002509387;0.1996187;0.01208619,0.006988161;0.4994886;0.01725175,0.1179147;0.3782539;-0.01780993,0.1666043;0.1849582;-0.001497494,0.2140598;-0.05920818;-0.02661179,-0.1070305;0.3626438;-0.001712015,-0.198947;0.1850766;0.002896084,-0.3416851;-0.01926371;-0.01636243,0.07120419;0.00505027;-0.03611727,0.08301782;-0.2933428;-0.007446591,0.07159474;-0.5873758;0.05098438,0.08412643;-0.614225;-0.01176237,-0.07091831;0.002913506;-0.0369067,-0.1031375;-0.2941742;-0.01043409,-0.1019889;-0.5895077;0.04226127,-0.1029227;-0.6161967;-0.02190977,0.00542432;0.399505;0.01816658,10.81151
-0;0;0,0.003170508;0.1998121;0.008066271,0.008833915;0.4997076;0.00752409,0.1169647;0.3750607;-0.03051532,0.1662847;0.1815703;-0.01915803,0.2002733;-0.06367131;-0.05381854,-0.1070482;0.3622878;0.005699964,-0.2295044;0.2075458;0.03824812,-0.4284708;0.05635501;0.03091872,0.06859478;0.004962739;-0.04086717,0.08371232;-0.2925542;-0.005438916,0.07085873;-0.5857221;0.05690945,0.07915694;-0.6148061;-0.003727794,-0.07342917;0.003210916;-0.03158872,-0.1065617;-0.2936528;-0.003764294,-0.1063499;-0.5889091;0.04937366,-0.109423;-0.6153151;-0.01506768,0.006856357;0.3997657;0.01029921,0;0;0,0.002509387;0.1996187;0.01208619,0.006988161;0.4994886;0.01725175,0.1179147;0.3782539;-0.01780993,0.1666043;0.1849582;-0.001497494,0.2140598;-0.05920818;-0.02661179,-0.1070305;0.3626438;-0.001712015,-0.198947;0.1850766;0.002896084,-0.3416851;-0.01926371;-0.01636243,0.07120419;0.00505027;-0.03611727,0.08301782;-0.2933428;-0.007446591,0.07159474;-0.5873758;0.05098438,0.08412643;-0.614225;-0.01176237,-0.07091831;0.002913506;-0.0369067,-0.1031375;-0.2941742;-0.01043409,-0.1019889;-0.5895077;0.04226127,-0.1029227;-0.6161967;-0.02190977,0.00542432;0.399505;0.01816658,10.83407
-0;0;0,0.003170508;0.1998121;0.008066271,0.008833915;0.4997076;0.00752409,0.1169647;0.3750607;-0.03051532,0.1662847;0.1815703;-0.01915803,0.2002733;-0.06367131;-0.05381854,-0.1070482;0.3622878;0.005699964,-0.2295044;0.2075458;0.03824812,-0.4284708;0.05635501;0.03091872,0.06859478;0.004962739;-0.04086717,0.08371232;-0.2925542;-0.005438916,0.07085873;-0.5857221;0.05690945,0.07915694;-0.6148061;-0.003727794,-0.07342917;0.003210916;-0.03158872,-0.1065617;-0.2936528;-0.003764294,-0.1063499;-0.5889091;0.04937366,-0.109423;-0.6153151;-0.01506768,0.006856357;0.3997657;0.01029921,0;0;0,0.002509387;0.1996187;0.01208619,0.006988161;0.4994886;0.01725175,0.1179147;0.3782539;-0.01780993,0.1666043;0.1849582;-0.001497494,0.2140598;-0.05920818;-0.02661179,-0.1070305;0.3626438;-0.001712015,-0.198947;0.1850766;0.002896084,-0.3416851;-0.01926371;-0.01636243,0.07120419;0.00505027;-0.03611727,0.08301782;-0.2933428;-0.007446591,0.07159474;-0.5873758;0.05098438,0.08412643;-0.614225;-0.01176237,-0.07091831;0.002913506;-0.0369067,-0.1031375;-0.2941742;-0.01043409,-0.1019889;-0.5895077;0.04226127,-0.1029227;-0.6161967;-0.02190977,0.00542432;0.399505;0.01816658,10.84587
-0;0;0,0.003170508;0.1998121;0.008066271,0.008833915;0.4997076;0.00752409,0.1169647;0.3750607;-0.03051532,0.1662847;0.1815703;-0.01915803,0.2002733;-0.06367131;-0.05381854,-0.1070482;0.3622878;0.005699964,-0.2295044;0.2075458;0.03824812,-0.4284708;0.05635501;0.03091872,0.06859478;0.004962739;-0.04086717,0.08371232;-0.2925542;-0.005438916,0.07085873;-0.5857221;0.05690945,0.07915694;-0.6148061;-0.003727794,-0.07342917;0.003210916;-0.03158872,-0.1065617;-0.2936528;-0.003764294,-0.1063499;-0.5889091;0.04937366,-0.109423;-0.6153151;-0.01506768,0.006856357;0.3997657;0.01029921,0;0;0,0.002549249;0.1996293;0.01190094,0.007101372;0.4995032;0.0167496,0.1179996;0.3781783;-0.01812962,0.1664561;0.1848342;-0.001696469,0.2134621;-0.0594074;-0.02692461,-0.1071349;0.3630797;-0.001832413,-0.2023769;0.187296;0.003558776,-0.348401;-0.01474616;-0.0153076,0.07116777;0.004970967;-0.03619999,0.08278705;-0.293445;-0.007688425,0.07116735;-0.5875025;0.05057969,0.08364329;-0.6141226;-0.01245763,-0.07091915;0.002998414;-0.03689829,-0.103394;-0.2940869;-0.01071192,-0.1026895;-0.5894842;0.04163249,-0.104453;-0.614563;-0.02439831,0.005504009;0.3995212;0.01777602,10.85693
-0;0;0,0.003150502;0.1998091;0.00814817,0.008703279;0.4997066;0.007605216,0.1167768;0.3750536;-0.03069511,0.165911;0.181518;-0.01930197,0.1999374;-0.06371206;-0.05400699,-0.1071147;0.3622509;0.005536909,-0.2313057;0.2089737;0.03844118,-0.4317003;0.05968106;0.03111105,0.06851194;0.004960177;-0.04100624,0.08350877;-0.2925632;-0.005581327,0.07068696;-0.5857282;0.05678803,0.07695001;-0.6180487;0.0003602356,-0.07347807;0.003192836;-0.03147665,-0.1067475;-0.2936954;-0.004080979,-0.1063754;-0.5888596;0.04956586,-0.1088887;-0.6153352;-0.01481711,0.006768025;0.3997639;0.0103837,0;0;0,0.002549249;0.1996293;0.01190094,0.007101372;0.4995032;0.0167496,0.1179996;0.3781783;-0.01812962,0.1664561;0.1848342;-0.001696469,0.2134621;-0.0594074;-0.02692461,-0.1071349;0.3630797;-0.001832413,-0.2023769;0.187296;0.003558776,-0.348401;-0.01474616;-0.0153076,0.07116777;0.004970967;-0.03619999,0.08278705;-0.293445;-0.007688425,0.07116735;-0.5875025;0.05057969,0.08364329;-0.6141226;-0.01245763,-0.07091915;0.002998414;-0.03689829,-0.103394;-0.2940869;-0.01071192,-0.1026895;-0.5894842;0.04163249,-0.104453;-0.614563;-0.02439831,0.005504009;0.3995212;0.01777602,10.87894
-0;0;0,0.003111009;0.1998066;0.008223471,0.008526279;0.4997068;0.007743153,0.116598;0.3751722;-0.03079657,0.1657254;0.1816385;-0.01934201,0.1996405;-0.06359522;-0.05412998,-0.1073392;0.3628458;0.00378704,-0.2324046;0.2106505;0.03835899,-0.4357516;0.0653729;0.03169247,0.0684569;0.004964482;-0.04109753,0.08334417;-0.2925617;-0.00564966,0.07022285;-0.5856715;0.05691601,0.07786468;-0.6169637;-0.0008177347,-0.0735051;0.003166996;-0.03141609,-0.1069716;-0.2937106;-0.004145706,-0.1064909;-0.5889223;0.04923797,-0.1090431;-0.6154413;-0.01509193,0.006643733;0.3997625;0.01049962,0;0;0,0.002549249;0.1996293;0.01190094,0.007101372;0.4995032;0.0167496,0.1179996;0.3781783;-0.01812962,0.1664561;0.1848342;-0.001696469,0.2134621;-0.0594074;-0.02692461,-0.1071349;0.3630797;-0.001832413,-0.2023769;0.187296;0.003558776,-0.348401;-0.01474616;-0.0153076,0.07116777;0.004970967;-0.03619999,0.08278705;-0.293445;-0.007688425,0.07116735;-0.5875025;0.05057969,0.08364329;-0.6141226;-0.01245763,-0.07091915;0.002998414;-0.03689829,-0.103394;-0.2940869;-0.01071192,-0.1026895;-0.5894842;0.04163249,-0.104453;-0.614563;-0.02439831,0.005504009;0.3995212;0.01777602,10.90184
-0;0;0,0.003111009;0.1998066;0.008223471,0.008526279;0.4997068;0.007743153,0.116598;0.3751722;-0.03079657,0.1657254;0.1816385;-0.01934201,0.1996405;-0.06359522;-0.05412998,-0.1073392;0.3628458;0.00378704,-0.2324046;0.2106505;0.03835899,-0.4357516;0.0653729;0.03169247,0.0684569;0.004964482;-0.04109753,0.08334417;-0.2925617;-0.00564966,0.07022285;-0.5856715;0.05691601,0.07786468;-0.6169637;-0.0008177347,-0.0735051;0.003166996;-0.03141609,-0.1069716;-0.2937106;-0.004145706,-0.1064909;-0.5889223;0.04923797,-0.1090431;-0.6154413;-0.01509193,0.006643733;0.3997625;0.01049962,0;0;0,0.002728248;0.1996294;0.01186025,0.0075194;0.4995014;0.01658444,0.1182748;0.3780424;-0.01838343,0.1666978;0.1846866;-0.001989422,0.2135474;-0.05960108;-0.02706199,-0.1069984;0.3634612;-0.001466461,-0.2061267;0.1898486;0.004212238,-0.3596036;-0.006605491;-0.01451219,0.0711271;0.004891837;-0.03629057,0.08255176;-0.2935193;-0.007649584,0.0710784;-0.5876104;0.0504776,0.08327207;-0.6143295;-0.01249456,-0.0709547;0.003093691;-0.03682199,-0.1036155;-0.293993;-0.01088389,-0.1031399;-0.5894192;0.04129972,-0.1044133;-0.6151;-0.02405162,0.005847073;0.3995211;0.01765368,10.91282
-0;0;0,0.003200692;0.1998064;0.008194057,0.008684342;0.4997053;0.007671186,0.1167088;0.3751704;-0.03092458,0.1658311;0.1816459;-0.01929557,0.1996803;-0.06356905;-0.05427952,-0.1073538;0.3631398;0.004765124,-0.2333889;0.211564;0.03852804,-0.4382914;0.06850506;0.03152024,0.06840077;0.004917853;-0.04119647,0.08330812;-0.292571;-0.005445026,0.0702801;-0.5857382;0.05687085,0.07790799;-0.6173016;-0.0004809313,-0.07358455;0.003225198;-0.03122357,-0.1069266;-0.2936866;-0.004173685,-0.1064855;-0.5889224;0.0490771,-0.1084936;-0.6159486;-0.01466398,0.006780432;0.3997618;0.01043993,0;0;0,0.002728248;0.1996294;0.01186025,0.0075194;0.4995014;0.01658444,0.1182748;0.3780424;-0.01838343,0.1666978;0.1846866;-0.001989422,0.2135474;-0.05960108;-0.02706199,-0.1069984;0.3634612;-0.001466461,-0.2061267;0.1898486;0.004212238,-0.3596036;-0.006605491;-0.01451219,0.0711271;0.004891837;-0.03629057,0.08255176;-0.2935193;-0.007649584,0.0710784;-0.5876104;0.0504776,0.08327207;-0.6143295;-0.01249456,-0.0709547;0.003093691;-0.03682199,-0.1036155;-0.293993;-0.01088389,-0.1031399;-0.5894192;0.04129972,-0.1044133;-0.6151;-0.02405162,0.005847073;0.3995211;0.01765368,10.92519
-0;0;0,0.003200692;0.1998064;0.008194057,0.008684342;0.4997053;0.007671186,0.1167088;0.3751704;-0.03092458,0.1658311;0.1816459;-0.01929557,0.1996803;-0.06356905;-0.05427952,-0.1073538;0.3631398;0.004765124,-0.2333889;0.211564;0.03852804,-0.4382914;0.06850506;0.03152024,0.06840077;0.004917853;-0.04119647,0.08330812;-0.292571;-0.005445026,0.0702801;-0.5857382;0.05687085,0.07790799;-0.6173016;-0.0004809313,-0.07358455;0.003225198;-0.03122357,-0.1069266;-0.2936866;-0.004173685,-0.1064855;-0.5889224;0.0490771,-0.1084936;-0.6159486;-0.01466398,0.006780432;0.3997618;0.01043993,0;0;0,0.002728248;0.1996294;0.01186025,0.0075194;0.4995014;0.01658444,0.1182748;0.3780424;-0.01838343,0.1666978;0.1846866;-0.001989422,0.2135474;-0.05960108;-0.02706199,-0.1069984;0.3634612;-0.001466461,-0.2061267;0.1898486;0.004212238,-0.3596036;-0.006605491;-0.01451219,0.0711271;0.004891837;-0.03629057,0.08255176;-0.2935193;-0.007649584,0.0710784;-0.5876104;0.0504776,0.08327207;-0.6143295;-0.01249456,-0.0709547;0.003093691;-0.03682199,-0.1036155;-0.293993;-0.01088389,-0.1031399;-0.5894192;0.04129972,-0.1044133;-0.6151;-0.02405162,0.005847073;0.3995211;0.01765368,10.94602
-0;0;0,0.003200692;0.1998064;0.008194057,0.008684342;0.4997053;0.007671186,0.1167088;0.3751704;-0.03092458,0.1658311;0.1816459;-0.01929557,0.1996803;-0.06356905;-0.05427952,-0.1073538;0.3631398;0.004765124,-0.2333889;0.211564;0.03852804,-0.4382914;0.06850506;0.03152024,0.06840077;0.004917853;-0.04119647,0.08330812;-0.292571;-0.005445026,0.0702801;-0.5857382;0.05687085,0.07790799;-0.6173016;-0.0004809313,-0.07358455;0.003225198;-0.03122357,-0.1069266;-0.2936866;-0.004173685,-0.1064855;-0.5889224;0.0490771,-0.1084936;-0.6159486;-0.01466398,0.006780432;0.3997618;0.01043993,0;0;0,0.0029105;0.1996289;0.01182452,0.008161846;0.4994956;0.01635973,0.1187706;0.3776523;-0.01821613,0.1663235;0.1840889;-0.001725819,0.2128011;-0.06025639;-0.02692956,-0.1066384;0.3636538;-0.00132346,-0.2088991;0.1918887;0.004961973,-0.3682509;5.879998E-05;-0.01259664,0.07113431;0.004818539;-0.03628624,0.0826872;-0.2935666;-0.00742751,0.0710383;-0.5877068;0.05041598,0.08312555;-0.6144927;-0.01249534,-0.07095733;0.003171814;-0.03681026,-0.1036436;-0.2939197;-0.01096002,-0.1034443;-0.5894141;0.04083812,-0.1049278;-0.6143284;-0.02538615,0.006317615;0.3995191;0.01750746,10.95725
-0;0;0,0.003257479;0.1998084;0.008124985,0.008754005;0.4997066;0.007411262,0.1166976;0.375158;-0.03132764,0.1658847;0.1816518;-0.01966778,0.1997752;-0.06354101;-0.0547667,-0.1073499;0.3632825;0.005036466,-0.2344975;0.2125576;0.03843498,-0.44118;0.07207112;0.03165772,0.06834051;0.004882662;-0.04130054,0.08304697;-0.292623;-0.005605869,0.06994435;-0.5858374;0.05647178,0.07758622;-0.6167535;-0.001787867,-0.07360277;0.003241899;-0.0311789,-0.1070246;-0.2936819;-0.004360076,-0.1064335;-0.5889804;0.04854047,-0.1082484;-0.6149245;-0.01649181,0.006851288;0.3997648;0.01024518,0;0;0,0.0029105;0.1996289;0.01182452,0.008161846;0.4994956;0.01635973,0.1187706;0.3776523;-0.01821613,0.1663235;0.1840889;-0.001725819,0.2128011;-0.06025639;-0.02692956,-0.1066384;0.3636538;-0.00132346,-0.2088991;0.1918887;0.004961973,-0.3682509;5.879998E-05;-0.01259664,0.07113431;0.004818539;-0.03628624,0.0826872;-0.2935666;-0.00742751,0.0710383;-0.5877068;0.05041598,0.08312555;-0.6144927;-0.01249534,-0.07095733;0.003171814;-0.03681026,-0.1036436;-0.2939197;-0.01096002,-0.1034443;-0.5894141;0.04083812,-0.1049278;-0.6143284;-0.02538615,0.006317615;0.3995191;0.01750746,10.9794
-0;0;0,0.003257479;0.1998084;0.008124985,0.008754005;0.4997066;0.007411262,0.1166976;0.375158;-0.03132764,0.1658847;0.1816518;-0.01966778,0.1997752;-0.06354101;-0.0547667,-0.1073499;0.3632825;0.005036466,-0.2344975;0.2125576;0.03843498,-0.44118;0.07207112;0.03165772,0.06834051;0.004882662;-0.04130054,0.08304697;-0.292623;-0.005605869,0.06994435;-0.5858374;0.05647178,0.07758622;-0.6167535;-0.001787867,-0.07360277;0.003241899;-0.0311789,-0.1070246;-0.2936819;-0.004360076,-0.1064335;-0.5889804;0.04854047,-0.1082484;-0.6149245;-0.01649181,0.006851288;0.3997648;0.01024518,0;0;0,0.0029105;0.1996289;0.01182452,0.008161846;0.4994956;0.01635973,0.1187706;0.3776523;-0.01821613,0.1663235;0.1840889;-0.001725819,0.2128011;-0.06025639;-0.02692956,-0.1066384;0.3636538;-0.00132346,-0.2088991;0.1918887;0.004961973,-0.3682509;5.879998E-05;-0.01259664,0.07113431;0.004818539;-0.03628624,0.0826872;-0.2935666;-0.00742751,0.0710383;-0.5877068;0.05041598,0.08312555;-0.6144927;-0.01249534,-0.07095733;0.003171814;-0.03681026,-0.1036436;-0.2939197;-0.01096002,-0.1034443;-0.5894141;0.04083812,-0.1049278;-0.6143284;-0.02538615,0.006317615;0.3995191;0.01750746,10.99065
-0;0;0,0.003264118;0.1998132;0.008002483,0.008733543;0.4997113;0.007056716,0.1166395;0.3752097;-0.03175911,0.1659358;0.1817362;-0.02001704,0.1998683;-0.06344354;-0.05516674,-0.1074123;0.3633511;0.005518527,-0.235398;0.2132217;0.03839482,-0.4452485;0.07751086;0.03166121,0.06826531;0.004940936;-0.0414178,0.08302866;-0.2926004;-0.006045368,0.06972912;-0.5858396;0.05587289,0.07756895;-0.6166318;-0.002532218,-0.07361963;0.003161411;-0.03114729,-0.1072731;-0.29377;-0.004704611,-0.1066963;-0.5891224;0.04789375,-0.108066;-0.6150336;-0.0171879,0.006840759;0.3997716;0.009965614,0;0;0,0.00310788;0.1996309;0.01174121,0.008704515;0.4994941;0.01608082,0.1191633;0.3773379;-0.01834557,0.1666727;0.1837653;-0.001838172,0.2126345;-0.06069209;-0.02690013,-0.1063576;0.3638492;-0.001013663,-0.2114391;0.1937956;0.005283264,-0.376522;0.006813794;-0.01161171,0.071127;0.004790127;-0.03630434,0.08293672;-0.2935496;-0.007081695,0.0708418;-0.5877131;0.05055119,0.08275089;-0.6146579;-0.01219964,-0.07095888;0.003187728;-0.0368059,-0.1035684;-0.2939039;-0.01085973,-0.1036414;-0.5894512;0.04063569,-0.1055049;-0.6133029;-0.02676199,0.006745732;0.3995206;0.01729469,11.01325
-0;0;0,0.003264118;0.1998132;0.008002483,0.008733543;0.4997113;0.007056716,0.1166395;0.3752097;-0.03175911,0.1659358;0.1817362;-0.02001704,0.1998683;-0.06344354;-0.05516674,-0.1074123;0.3633511;0.005518527,-0.235398;0.2132217;0.03839482,-0.4452485;0.07751086;0.03166121,0.06826531;0.004940936;-0.0414178,0.08302866;-0.2926004;-0.006045368,0.06972912;-0.5858396;0.05587289,0.07756895;-0.6166318;-0.002532218,-0.07361963;0.003161411;-0.03114729,-0.1072731;-0.29377;-0.004704611,-0.1066963;-0.5891224;0.04789375,-0.108066;-0.6150336;-0.0171879,0.006840759;0.3997716;0.009965614,0;0;0,0.00310788;0.1996309;0.01174121,0.008704515;0.4994941;0.01608082,0.1191633;0.3773379;-0.01834557,0.1666727;0.1837653;-0.001838172,0.2126345;-0.06069209;-0.02690013,-0.1063576;0.3638492;-0.001013663,-0.2114391;0.1937956;0.005283264,-0.376522;0.006813794;-0.01161171,0.071127;0.004790127;-0.03630434,0.08293672;-0.2935496;-0.007081695,0.0708418;-0.5877131;0.05055119,0.08275089;-0.6146579;-0.01219964,-0.07095888;0.003187728;-0.0368059,-0.1035684;-0.2939039;-0.01085973,-0.1036414;-0.5894512;0.04063569,-0.1055049;-0.6133029;-0.02676199,0.006745732;0.3995206;0.01729469,11.02496
-0;0;0,0.003321189;0.1998162;0.00790362,0.008821147;0.4997137;0.006850654,0.1167146;0.3751447;-0.03191332,0.1660892;0.1816941;-0.02012304,0.1999895;-0.06346872;-0.0554215,-0.1072271;0.3630138;0.005476435,-0.2366052;0.2141772;0.03877757,-0.4482331;0.08131221;0.03099976,0.06823323;0.004992627;-0.04146445,0.08301979;-0.2925649;-0.006238233,0.06942762;-0.5858035;0.05561917,0.07763088;-0.6162251;-0.003245659,-0.07365638;0.003079677;-0.03106854,-0.1072112;-0.2938859;-0.004885696,-0.1069359;-0.589228;0.04777314,-0.1075232;-0.6163011;-0.01594011,0.006922089;0.3997749;0.009787477,0;0;0,0.00310788;0.1996309;0.01174121,0.008704515;0.4994941;0.01608082,0.1191633;0.3773379;-0.01834557,0.1666727;0.1837653;-0.001838172,0.2126345;-0.06069209;-0.02690013,-0.1063576;0.3638492;-0.001013663,-0.2114391;0.1937956;0.005283264,-0.376522;0.006813794;-0.01161171,0.071127;0.004790127;-0.03630434,0.08293672;-0.2935496;-0.007081695,0.0708418;-0.5877131;0.05055119,0.08275089;-0.6146579;-0.01219964,-0.07095888;0.003187728;-0.0368059,-0.1035684;-0.2939039;-0.01085973,-0.1036414;-0.5894512;0.04063569,-0.1055049;-0.6133029;-0.02676199,0.006745732;0.3995206;0.01729469,11.03706
-0;0;0,0.003332143;0.1998192;0.007821324,0.008820247;0.4997168;0.006655908,0.1167118;0.3749945;-0.03200418,0.1660921;0.181542;-0.02026907,0.199982;-0.06360914;-0.055658,-0.1071953;0.362922;0.005401293,-0.2382107;0.2156182;0.03911396,-0.4512818;0.08513282;0.03049474,0.06821326;0.005011252;-0.04149504,0.08301003;-0.2925727;-0.006497417,0.06931806;-0.5857751;0.05551001,0.0777029;-0.6162487;-0.003258057,-0.0736675;0.003054523;-0.03104464,-0.1072418;-0.2939269;-0.005067851,-0.1068212;-0.5892391;0.04775764,-0.1075647;-0.6161343;-0.01616866,0.006926335;0.3997788;0.009623961,0;0;0,0.003231323;0.1996327;0.01167651,0.009094737;0.4994935;0.01579319,0.1194529;0.3772233;-0.01849554,0.1668684;0.1836396;-0.001847511,0.2125101;-0.06087245;-0.0269605,-0.1062432;0.3641627;-0.0006811731,-0.2145164;0.1961395;0.006038527,-0.3862088;0.01516619;-0.01040479,0.07109962;0.004732711;-0.03636546,0.0831954;-0.2935862;-0.007047709,0.07088076;-0.5877767;0.0504007,0.0828014;-0.6149197;-0.01210407,-0.07098371;0.003293382;-0.03674869,-0.1036589;-0.293802;-0.01092916,-0.1036206;-0.5893894;0.04033578,-0.1056254;-0.6130183;-0.02730127,0.007042579;0.399523;0.01709434,11.05727
-0;0;0,0.003332143;0.1998192;0.007821324,0.008820247;0.4997168;0.006655908,0.1167118;0.3749945;-0.03200418,0.1660921;0.181542;-0.02026907,0.199982;-0.06360914;-0.055658,-0.1071953;0.362922;0.005401293,-0.2382107;0.2156182;0.03911396,-0.4512818;0.08513282;0.03049474,0.06821326;0.005011252;-0.04149504,0.08301003;-0.2925727;-0.006497417,0.06931806;-0.5857751;0.05551001,0.0777029;-0.6162487;-0.003258057,-0.0736675;0.003054523;-0.03104464,-0.1072418;-0.2939269;-0.005067851,-0.1068212;-0.5892391;0.04775764,-0.1075647;-0.6161343;-0.01616866,0.006926335;0.3997788;0.009623961,0;0;0,0.003231323;0.1996327;0.01167651,0.009094737;0.4994935;0.01579319,0.1194529;0.3772233;-0.01849554,0.1668684;0.1836396;-0.001847511,0.2125101;-0.06087245;-0.0269605,-0.1062432;0.3641627;-0.0006811731,-0.2145164;0.1961395;0.006038527,-0.3862088;0.01516619;-0.01040479,0.07109962;0.004732711;-0.03636546,0.0831954;-0.2935862;-0.007047709,0.07088076;-0.5877767;0.0504007,0.0828014;-0.6149197;-0.01210407,-0.07098371;0.003293382;-0.03674869,-0.1036589;-0.293802;-0.01092916,-0.1036206;-0.5893894;0.04033578,-0.1056254;-0.6130183;-0.02730127,0.007042579;0.399523;0.01709434,11.06927
-0;0;0,0.003332143;0.1998192;0.007821324,0.008820247;0.4997168;0.006655908,0.1167118;0.3749945;-0.03200418,0.1660921;0.181542;-0.02026907,0.199982;-0.06360914;-0.055658,-0.1071953;0.362922;0.005401293,-0.2382107;0.2156182;0.03911396,-0.4512818;0.08513282;0.03049474,0.06821326;0.005011252;-0.04149504,0.08301003;-0.2925727;-0.006497417,0.06931806;-0.5857751;0.05551001,0.0777029;-0.6162487;-0.003258057,-0.0736675;0.003054523;-0.03104464,-0.1072418;-0.2939269;-0.005067851,-0.1068212;-0.5892391;0.04775764,-0.1075647;-0.6161343;-0.01616866,0.006926335;0.3997788;0.009623961,0;0;0,0.003231323;0.1996327;0.01167651,0.009094737;0.4994935;0.01579319,0.1194529;0.3772233;-0.01849554,0.1668684;0.1836396;-0.001847511,0.2125101;-0.06087245;-0.0269605,-0.1062432;0.3641627;-0.0006811731,-0.2145164;0.1961395;0.006038527,-0.3862088;0.01516619;-0.01040479,0.07109962;0.004732711;-0.03636546,0.0831954;-0.2935862;-0.007047709,0.07088076;-0.5877767;0.0504007,0.0828014;-0.6149197;-0.01210407,-0.07098371;0.003293382;-0.03674869,-0.1036589;-0.293802;-0.01092916,-0.1036206;-0.5893894;0.04033578,-0.1056254;-0.6130183;-0.02730127,0.007042579;0.399523;0.01709434,11.08014
-0;0;0,0.003423238;0.1998216;0.007721345,0.009034202;0.4997164;0.006438111,0.1168879;0.3747334;-0.03199707,0.1663357;0.1813014;-0.02020907,0.1999931;-0.0638274;-0.05597312,-0.1070417;0.3629454;0.005360928,-0.2390631;0.2166608;0.03958309,-0.4540464;0.08942486;0.02992768,0.06813176;0.00498094;-0.04163236,0.08290529;-0.2926118;-0.006699819,0.06974079;-0.5859592;0.05473325,0.07724009;-0.6178215;-0.002208136,-0.07374867;0.003086356;-0.03084813,-0.1073659;-0.2939284;-0.005312111,-0.1068624;-0.5892522;0.04744777,-0.107724;-0.6154224;-0.01733933,0.007091942;0.3997805;0.009445466,0;0;0,0.003584012;0.1996317;0.01159097,0.01013566;0.4994811;0.01547124,0.120207;0.3769221;-0.01869998,0.1672853;0.1832641;-0.001959454,0.2127119;-0.06126824;-0.02726438,-0.1056243;0.3645341;-0.0004908331,-0.2173248;0.1987934;0.006790906,-0.3940917;0.02263482;-0.008095534,0.07105496;0.004651964;-0.03646302,0.08314873;-0.2936421;-0.006892767,0.07085291;-0.5879019;0.05020357,0.08245243;-0.6154716;-0.01183182,-0.07102678;0.003407843;-0.03665491,-0.1037262;-0.2936971;-0.01097558,-0.1037795;-0.5892823;0.04030184,-0.105751;-0.6129295;-0.02731632,0.007844959;0.3995169;0.01685615,11.10249
-0;0;0,0.003423238;0.1998216;0.007721345,0.009034202;0.4997164;0.006438111,0.1168879;0.3747334;-0.03199707,0.1663357;0.1813014;-0.02020907,0.1999931;-0.0638274;-0.05597312,-0.1070417;0.3629454;0.005360928,-0.2390631;0.2166608;0.03958309,-0.4540464;0.08942486;0.02992768,0.06813176;0.00498094;-0.04163236,0.08290529;-0.2926118;-0.006699819,0.06974079;-0.5859592;0.05473325,0.07724009;-0.6178215;-0.002208136,-0.07374867;0.003086356;-0.03084813,-0.1073659;-0.2939284;-0.005312111,-0.1068624;-0.5892522;0.04744777,-0.107724;-0.6154224;-0.01733933,0.007091942;0.3997805;0.009445466,0;0;0,0.003584012;0.1996317;0.01159097,0.01013566;0.4994811;0.01547124,0.120207;0.3769221;-0.01869998,0.1672853;0.1832641;-0.001959454,0.2127119;-0.06126824;-0.02726438,-0.1056243;0.3645341;-0.0004908331,-0.2173248;0.1987934;0.006790906,-0.3940917;0.02263482;-0.008095534,0.07105496;0.004651964;-0.03646302,0.08314873;-0.2936421;-0.006892767,0.07085291;-0.5879019;0.05020357,0.08245243;-0.6154716;-0.01183182,-0.07102678;0.003407843;-0.03665491,-0.1037262;-0.2936971;-0.01097558,-0.1037795;-0.5892823;0.04030184,-0.105751;-0.6129295;-0.02731632,0.007844959;0.3995169;0.01685615,11.1138
-0;0;0,0.003527875;0.1998224;0.007652729,0.00924757;0.4997147;0.006257536,0.1170179;0.3744361;-0.03209233,0.1664877;0.1810122;-0.02026317,0.2000621;-0.06408592;-0.05631413,-0.1068385;0.3628727;0.005221206,-0.2398754;0.2175795;0.03973301,-0.4588659;0.09743063;0.0293695,0.06813506;0.00493936;-0.0416319,0.08313569;-0.2926712;-0.006948572,0.07001592;-0.5861133;0.05404009,0.07721967;-0.6178089;-0.003178246,-0.07374887;0.003124357;-0.03084383,-0.1072495;-0.2939336;-0.00565928,-0.1070382;-0.589298;0.04687542,-0.1073207;-0.6161466;-0.0171106,0.007271823;0.3997805;0.00930173,0;0;0,0.003666395;0.1996325;0.0115519,0.01028194;0.4994816;0.01534246,0.1203287;0.3770323;-0.01890099,0.1675656;0.1834028;-0.002278591,0.2126662;-0.06122735;-0.02721867,-0.1056673;0.3648099;1.620501E-05,-0.2217319;0.202088;0.007131204,-0.4044001;0.03199391;-0.00702269,0.07103992;0.004610724;-0.03649755,0.08318976;-0.2936777;-0.006892961,0.07089891;-0.5879275;0.05025614,0.08265155;-0.6157113;-0.01148155,-0.07102983;0.003460096;-0.03664411,-0.1036639;-0.293641;-0.01083814,-0.1037925;-0.5892543;0.04027758,-0.1057684;-0.6128177;-0.02743145,0.007977154;0.3995182;0.01675736,11.13596
-0;0;0,0.003527875;0.1998224;0.007652729,0.00924757;0.4997147;0.006257536,0.1170179;0.3744361;-0.03209233,0.1664877;0.1810122;-0.02026317,0.2000621;-0.06408592;-0.05631413,-0.1068385;0.3628727;0.005221206,-0.2398754;0.2175795;0.03973301,-0.4588659;0.09743063;0.0293695,0.06813506;0.00493936;-0.0416319,0.08313569;-0.2926712;-0.006948572,0.07001592;-0.5861133;0.05404009,0.07721967;-0.6178089;-0.003178246,-0.07374887;0.003124357;-0.03084383,-0.1072495;-0.2939336;-0.00565928,-0.1070382;-0.589298;0.04687542,-0.1073207;-0.6161466;-0.0171106,0.007271823;0.3997805;0.00930173,0;0;0,0.003666395;0.1996325;0.0115519,0.01028194;0.4994816;0.01534246,0.1203287;0.3770323;-0.01890099,0.1675656;0.1834028;-0.002278591,0.2126662;-0.06122735;-0.02721867,-0.1056673;0.3648099;1.620501E-05,-0.2217319;0.202088;0.007131204,-0.4044001;0.03199391;-0.00702269,0.07103992;0.004610724;-0.03649755,0.08318976;-0.2936777;-0.006892961,0.07089891;-0.5879275;0.05025614,0.08265155;-0.6157113;-0.01148155,-0.07102983;0.003460096;-0.03664411,-0.1036639;-0.293641;-0.01083814,-0.1037925;-0.5892543;0.04027758,-0.1057684;-0.6128177;-0.02743145,0.007977154;0.3995182;0.01675736,11.14736
-0;0;0,0.003651546;0.1998217;0.007612353,0.009573727;0.4997097;0.006161482,0.1172981;0.374255;-0.0319837,0.1667704;0.1808145;-0.02043987,0.20042;-0.06426936;-0.05651768,-0.1065477;0.3627549;0.005104052,-0.2409732;0.2188228;0.03993698,-0.4619588;0.1023821;0.02959533,0.06807005;0.004917188;-0.04174073,0.08309317;-0.2927063;-0.00717767,0.06996101;-0.5861591;0.05375647,0.07737395;-0.6181718;-0.002979554,-0.07382102;0.00313478;-0.03066968,-0.1071888;-0.2939738;-0.005909109,-0.1070715;-0.589351;0.04655338,-0.1065038;-0.616055;-0.01760405,0.007523857;0.3997777;0.00922553,0;0;0,0.003666395;0.1996325;0.0115519,0.01028194;0.4994816;0.01534246,0.1203287;0.3770323;-0.01890099,0.1675656;0.1834028;-0.002278591,0.2126662;-0.06122735;-0.02721867,-0.1056673;0.3648099;1.620501E-05,-0.2217319;0.202088;0.007131204,-0.4044001;0.03199391;-0.00702269,0.07103992;0.004610724;-0.03649755,0.08318976;-0.2936777;-0.006892961,0.07089891;-0.5879275;0.05025614,0.08265155;-0.6157113;-0.01148155,-0.07102983;0.003460096;-0.03664411,-0.1036639;-0.293641;-0.01083814,-0.1037925;-0.5892543;0.04027758,-0.1057684;-0.6128177;-0.02743145,0.007977154;0.3995182;0.01675736,11.16924
-0;0;0,0.003651546;0.1998217;0.007612353,0.009573727;0.4997097;0.006161482,0.1172981;0.374255;-0.0319837,0.1667704;0.1808145;-0.02043987,0.20042;-0.06426936;-0.05651768,-0.1065477;0.3627549;0.005104052,-0.2409732;0.2188228;0.03993698,-0.4619588;0.1023821;0.02959533,0.06807005;0.004917188;-0.04174073,0.08309317;-0.2927063;-0.00717767,0.06996101;-0.5861591;0.05375647,0.07737395;-0.6181718;-0.002979554,-0.07382102;0.00313478;-0.03066968,-0.1071888;-0.2939738;-0.005909109,-0.1070715;-0.589351;0.04655338,-0.1065038;-0.616055;-0.01760405,0.007523857;0.3997777;0.00922553,0;0;0,0.003666395;0.1996325;0.0115519,0.01028194;0.4994816;0.01534246,0.1203287;0.3770323;-0.01890099,0.1675656;0.1834028;-0.002278591,0.2126662;-0.06122735;-0.02721867,-0.1056673;0.3648099;1.620501E-05,-0.2217319;0.202088;0.007131204,-0.4044001;0.03199391;-0.00702269,0.07103992;0.004610724;-0.03649755,0.08318976;-0.2936777;-0.006892961,0.07089891;-0.5879275;0.05025614,0.08265155;-0.6157113;-0.01148155,-0.07102983;0.003460096;-0.03664411,-0.1036639;-0.293641;-0.01083814,-0.1037925;-0.5892543;0.04027758,-0.1057684;-0.6128177;-0.02743145,0.007977154;0.3995182;0.01675736,11.1809
-0;0;0,0.003642657;0.199823;0.007583359,0.009549242;0.4997108;0.00603651,0.117254;0.3742963;-0.03216872,0.1667928;0.180881;-0.02048967,0.2004276;-0.0642097;-0.05653493,-0.1065528;0.3626457;0.005721973,-0.2421628;0.2197347;0.04016589,-0.465223;0.1073524;0.02947241,0.06807634;0.004910261;-0.0417313,0.08328617;-0.2927428;-0.007507056,0.0697659;-0.5859876;0.05433704,0.07757685;-0.6171921;-0.003497355,-0.07380061;0.003140169;-0.03071823,-0.1069819;-0.2939928;-0.006000226,-0.1069573;-0.5894029;0.04627684,-0.1067794;-0.6164039;-0.0175261,0.007506061;0.3997797;0.009134755,0;0;0,0.003851168;0.1996327;0.01148674,0.01067173;0.499479;0.01515109,0.1206136;0.3770079;-0.01917901,0.1675878;0.1833021;-0.00270224,0.212905;-0.06130978;-0.02742838,-0.1054723;0.3648301;0.0007617269,-0.2262759;0.205578;0.007487771,-0.4109926;0.03758503;-0.005085808,0.0709508;0.004598524;-0.03667201,0.08316043;-0.2936563;-0.006756127,0.07079639;-0.5879356;0.05022528,0.08239129;-0.6154925;-0.01182692,-0.07110676;0.003488502;-0.03649189,-0.1039577;-0.2936103;-0.01093581,-0.1041879;-0.5892428;0.04006771,-0.1060425;-0.6128422;-0.02760569,0.0083071;0.3995175;0.01660588,11.20304
-0;0;0,0.003642657;0.199823;0.007583359,0.009549242;0.4997108;0.00603651,0.117254;0.3742963;-0.03216872,0.1667928;0.180881;-0.02048967,0.2004276;-0.0642097;-0.05653493,-0.1065528;0.3626457;0.005721973,-0.2421628;0.2197347;0.04016589,-0.465223;0.1073524;0.02947241,0.06807634;0.004910261;-0.0417313,0.08328617;-0.2927428;-0.007507056,0.0697659;-0.5859876;0.05433704,0.07757685;-0.6171921;-0.003497355,-0.07380061;0.003140169;-0.03071823,-0.1069819;-0.2939928;-0.006000226,-0.1069573;-0.5894029;0.04627684,-0.1067794;-0.6164039;-0.0175261,0.007506061;0.3997797;0.009134755,0;0;0,0.003851168;0.1996327;0.01148674,0.01067173;0.499479;0.01515109,0.1206136;0.3770079;-0.01917901,0.1675878;0.1833021;-0.00270224,0.212905;-0.06130978;-0.02742838,-0.1054723;0.3648301;0.0007617269,-0.2262759;0.205578;0.007487771,-0.4109926;0.03758503;-0.005085808,0.0709508;0.004598524;-0.03667201,0.08316043;-0.2936563;-0.006756127,0.07079639;-0.5879356;0.05022528,0.08239129;-0.6154925;-0.01182692,-0.07110676;0.003488502;-0.03649189,-0.1039577;-0.2936103;-0.01093581,-0.1041879;-0.5892428;0.04006771,-0.1060425;-0.6128422;-0.02760569,0.0083071;0.3995175;0.01660588,11.21405
-0;0;0,0.003745513;0.1998219;0.007560642,0.009826048;0.4997059;0.005969861,0.1173813;0.374234;-0.0324115,0.1669673;0.1808321;-0.02070951,0.2005894;-0.06428179;-0.05660863,-0.1063602;0.3627232;0.005531278,-0.2434836;0.2213327;0.04025709,-0.4694961;0.1150134;0.02955323,0.06814461;0.004934115;-0.04161691,0.08352042;-0.292754;-0.007773612,0.07010827;-0.5860307;0.05394272,0.07873395;-0.6175704;-0.00330127,-0.07373714;0.003113079;-0.03087299,-0.1068946;-0.2940304;-0.006248707,-0.1068834;-0.5894765;0.04582404,-0.1064882;-0.6150109;-0.01970761,0.007720521;0.3997766;0.009086515,0;0;0,0.003851168;0.1996327;0.01148674,0.01067173;0.499479;0.01515109,0.1206136;0.3770079;-0.01917901,0.1675878;0.1833021;-0.00270224,0.212905;-0.06130978;-0.02742838,-0.1054723;0.3648301;0.0007617269,-0.2262759;0.205578;0.007487771,-0.4109926;0.03758503;-0.005085808,0.0709508;0.004598524;-0.03667201,0.08316043;-0.2936563;-0.006756127,0.07079639;-0.5879356;0.05022528,0.08239129;-0.6154925;-0.01182692,-0.07110676;0.003488502;-0.03649189,-0.1039577;-0.2936103;-0.01093581,-0.1041879;-0.5892428;0.04006771,-0.1060425;-0.6128422;-0.02760569,0.0083071;0.3995175;0.01660588,11.22567
-0;0;0,0.003745513;0.1998219;0.007560642,0.009826048;0.4997059;0.005969861,0.1173813;0.374234;-0.0324115,0.1669673;0.1808321;-0.02070951,0.2005894;-0.06428179;-0.05660863,-0.1063602;0.3627232;0.005531278,-0.2434836;0.2213327;0.04025709,-0.4694961;0.1150134;0.02955323,0.06814461;0.004934115;-0.04161691,0.08352042;-0.292754;-0.007773612,0.07010827;-0.5860307;0.05394272,0.07873395;-0.6175704;-0.00330127,-0.07373714;0.003113079;-0.03087299,-0.1068946;-0.2940304;-0.006248707,-0.1068834;-0.5894765;0.04582404,-0.1064882;-0.6150109;-0.01970761,0.007720521;0.3997766;0.009086515,0;0;0,0.004029838;0.199632;0.01143683,0.01122544;0.499471;0.01498362,0.1208962;0.3767361;-0.01957828,0.1676244;0.1829914;-0.002860056,0.2130747;-0.06159508;-0.02759266,-0.1052273;0.3650842;0.00136602,-0.2310768;0.2097749;0.007764914,-0.4203493;0.04686137;-0.003858425,0.07089372;0.004555318;-0.03678761,0.08337454;-0.2936755;-0.006743861,0.07082456;-0.5879452;0.05024572,0.08218607;-0.6156103;-0.01171432,-0.07116925;0.003645147;-0.03635451,-0.104026;-0.2934603;-0.01088341,-0.1045871;-0.5890869;0.04015253,-0.1061304;-0.6140928;-0.02596655,0.008730119;0.3995133;0.01647685,11.24758
-0;0;0,0.003940761;0.1998203;0.007505177,0.01028777;0.4996983;0.005841106,0.1176004;0.373972;-0.03275859,0.1670677;0.1805427;-0.02100749,0.2008424;-0.06458198;-0.05668905,-0.1059814;0.3627064;0.005323019,-0.245039;0.2232252;0.04007903,-0.4736088;0.1225399;0.02920209,0.06812773;0.00486834;-0.04165228,0.08375405;-0.2928517;-0.008206978,0.07035138;-0.5861114;0.05359237,0.07896058;-0.6171802;-0.004319053,-0.07371905;0.003172927;-0.03091008,-0.1067909;-0.2940107;-0.006657962,-0.1067218;-0.5895085;0.04512072,-0.1068333;-0.6141245;-0.02145583,0.0080921;0.3997717;0.008982331,0;0;0,0.004029838;0.199632;0.01143683,0.01122544;0.499471;0.01498362,0.1208962;0.3767361;-0.01957828,0.1676244;0.1829914;-0.002860056,0.2130747;-0.06159508;-0.02759266,-0.1052273;0.3650842;0.00136602,-0.2310768;0.2097749;0.007764914,-0.4203493;0.04686137;-0.003858425,0.07089372;0.004555318;-0.03678761,0.08337454;-0.2936755;-0.006743861,0.07082456;-0.5879452;0.05024572,0.08218607;-0.6156103;-0.01171432,-0.07116925;0.003645147;-0.03635451,-0.104026;-0.2934603;-0.01088341,-0.1045871;-0.5890869;0.04015253,-0.1061304;-0.6140928;-0.02596655,0.008730119;0.3995133;0.01647685,11.25867
-0;0;0,0.003940761;0.1998203;0.007505177,0.01028777;0.4996983;0.005841106,0.1176004;0.373972;-0.03275859,0.1670677;0.1805427;-0.02100749,0.2008424;-0.06458198;-0.05668905,-0.1059814;0.3627064;0.005323019,-0.245039;0.2232252;0.04007903,-0.4736088;0.1225399;0.02920209,0.06812773;0.00486834;-0.04165228,0.08375405;-0.2928517;-0.008206978,0.07035138;-0.5861114;0.05359237,0.07896058;-0.6171802;-0.004319053,-0.07371905;0.003172927;-0.03091008,-0.1067909;-0.2940107;-0.006657962,-0.1067218;-0.5895085;0.04512072,-0.1068333;-0.6141245;-0.02145583,0.0080921;0.3997717;0.008982331,0;0;0,0.004029838;0.199632;0.01143683,0.01122544;0.499471;0.01498362,0.1208962;0.3767361;-0.01957828,0.1676244;0.1829914;-0.002860056,0.2130747;-0.06159508;-0.02759266,-0.1052273;0.3650842;0.00136602,-0.2310768;0.2097749;0.007764914,-0.4203493;0.04686137;-0.003858425,0.07089372;0.004555318;-0.03678761,0.08337454;-0.2936755;-0.006743861,0.07082456;-0.5879452;0.05024572,0.08218607;-0.6156103;-0.01171432,-0.07116925;0.003645147;-0.03635451,-0.104026;-0.2934603;-0.01088341,-0.1045871;-0.5890869;0.04015253,-0.1061304;-0.6140928;-0.02596655,0.008730119;0.3995133;0.01647685,11.27035
-0;0;0,0.004045487;0.1998177;0.007519127,0.01055397;0.499692;0.005856629,0.1177116;0.3739363;-0.03298506,0.1672175;0.1805229;-0.02113448,0.201233;-0.06461933;-0.05646457,-0.1058776;0.3630101;0.005619217,-0.2469228;0.2254498;0.04002021,-0.4776368;0.1298075;0.02890277,0.06807187;0.004825557;-0.04174846,0.08384402;-0.2928768;-0.008214802,0.07051845;-0.5861545;0.05351607,0.07903136;-0.6165907;-0.00528485,-0.07377893;0.003223601;-0.03076163,-0.1067116;-0.2939973;-0.006778317,-0.1066959;-0.589515;0.04488678,-0.1068161;-0.6142086;-0.02160259,0.008304268;0.3997668;0.009000842,0;0;0,0.004346671;0.1996288;0.01137768,0.01216328;0.4994537;0.01480548,0.1215571;0.3765731;-0.01981309,0.1680867;0.18278;-0.003102478,0.2134707;-0.06182304;-0.02779347,-0.1045891;0.3650939;0.001822944,-0.2359928;0.214461;0.008363295,-0.4262055;0.05260167;-0.002624319,0.07089515;0.004502835;-0.03679134,0.08345152;-0.2937253;-0.006753113,0.0710082;-0.5879796;0.0503401,0.08216776;-0.6158834;-0.01135646,-0.07114524;0.003698467;-0.03639609,-0.1040239;-0.2934038;-0.01091588,-0.104819;-0.5889938;0.04032783,-0.1067724;-0.6127594;-0.02716152,0.009452282;0.3995021;0.01633618,11.29207
-0;0;0,0.004045487;0.1998177;0.007519127,0.01055397;0.499692;0.005856629,0.1177116;0.3739363;-0.03298506,0.1672175;0.1805229;-0.02113448,0.201233;-0.06461933;-0.05646457,-0.1058776;0.3630101;0.005619217,-0.2469228;0.2254498;0.04002021,-0.4776368;0.1298075;0.02890277,0.06807187;0.004825557;-0.04174846,0.08384402;-0.2928768;-0.008214802,0.07051845;-0.5861545;0.05351607,0.07903136;-0.6165907;-0.00528485,-0.07377893;0.003223601;-0.03076163,-0.1067116;-0.2939973;-0.006778317,-0.1066959;-0.589515;0.04488678,-0.1068161;-0.6142086;-0.02160259,0.008304268;0.3997668;0.009000842,0;0;0,0.004346671;0.1996288;0.01137768,0.01216328;0.4994537;0.01480548,0.1215571;0.3765731;-0.01981309,0.1680867;0.18278;-0.003102478,0.2134707;-0.06182304;-0.02779347,-0.1045891;0.3650939;0.001822944,-0.2359928;0.214461;0.008363295,-0.4262055;0.05260167;-0.002624319,0.07089515;0.004502835;-0.03679134,0.08345152;-0.2937253;-0.006753113,0.0710082;-0.5879796;0.0503401,0.08216776;-0.6158834;-0.01135646,-0.07114524;0.003698467;-0.03639609,-0.1040239;-0.2934038;-0.01091588,-0.104819;-0.5889938;0.04032783,-0.1067724;-0.6127594;-0.02716152,0.009452282;0.3995021;0.01633618,11.30368
-0;0;0,0.004045487;0.1998177;0.007519127,0.01055397;0.499692;0.005856629,0.1177116;0.3739363;-0.03298506,0.1672175;0.1805229;-0.02113448,0.201233;-0.06461933;-0.05646457,-0.1058776;0.3630101;0.005619217,-0.2469228;0.2254498;0.04002021,-0.4776368;0.1298075;0.02890277,0.06807187;0.004825557;-0.04174846,0.08384402;-0.2928768;-0.008214802,0.07051845;-0.5861545;0.05351607,0.07903136;-0.6165907;-0.00528485,-0.07377893;0.003223601;-0.03076163,-0.1067116;-0.2939973;-0.006778317,-0.1066959;-0.589515;0.04488678,-0.1068161;-0.6142086;-0.02160259,0.008304268;0.3997668;0.009000842,0;0;0,0.004346671;0.1996288;0.01137768,0.01216328;0.4994537;0.01480548,0.1215571;0.3765731;-0.01981309,0.1680867;0.18278;-0.003102478,0.2134707;-0.06182304;-0.02779347,-0.1045891;0.3650939;0.001822944,-0.2359928;0.214461;0.008363295,-0.4262055;0.05260167;-0.002624319,0.07089515;0.004502835;-0.03679134,0.08345152;-0.2937253;-0.006753113,0.0710082;-0.5879796;0.0503401,0.08216776;-0.6158834;-0.01135646,-0.07114524;0.003698467;-0.03639609,-0.1040239;-0.2934038;-0.01091588,-0.104819;-0.5889938;0.04032783,-0.1067724;-0.6127594;-0.02716152,0.009452282;0.3995021;0.01633618,11.31551
-0;0;0,0.004099365;0.1998172;0.007502799,0.01069257;0.4996894;0.005798809,0.1177911;0.3739556;-0.03311679,0.1674397;0.1805968;-0.02097676,0.2012631;-0.06455328;-0.05643679,-0.1058187;0.3631581;0.00566381,-0.2492801;0.2279726;0.03948247,-0.4821582;0.1377662;0.02805402,0.06806952;0.004813689;-0.04175368,0.08385833;-0.2928925;-0.008261152,0.07054332;-0.5862257;0.05320665,0.07933773;-0.6168932;-0.005234927,-0.07376742;0.003227414;-0.03078881,-0.1067117;-0.2940001;-0.006904371,-0.1066708;-0.5895262;0.04471343,-0.1064697;-0.6147325;-0.02119533,0.008413708;0.3997653;0.008959856,0;0;0,0.004500124;0.1996277;0.01133678,0.01241994;0.4994507;0.01470056,0.1211663;0.3765645;-0.02177377,0.1705132;0.1834783;-0.004962651,0.2166566;-0.06103332;-0.02914599,-0.1045539;0.3655557;0.002207317,-0.2405196;0.2190033;0.008187497,-0.4340065;0.06100935;-0.001848026,0.07081876;0.004497985;-0.03693875,0.08341787;-0.2937306;-0.006922606,0.07096072;-0.5879976;0.05010203,0.08224835;-0.616208;-0.01118179,-0.07120337;0.003686814;-0.03628343,-0.1042594;-0.293415;-0.01102833,-0.1051789;-0.5890266;0.04008891,-0.1080393;-0.6121674;-0.02804506,0.00968505;0.3995001;0.01625105,11.33734
-0;0;0,0.004050315;0.1998197;0.007461679,0.01056582;0.4996929;0.005640917,0.1176699;0.3738913;-0.03324323,0.1673324;0.1805463;-0.02094077,0.2010424;-0.06460528;-0.05649844,-0.1059015;0.3630849;0.005776064,-0.252887;0.2316498;0.03924327,-0.4873651;0.1457736;0.02718716,0.06816398;0.004803597;-0.04160044,0.08385308;-0.2929515;-0.008498047,0.07051244;-0.5863131;0.05282893,0.07973931;-0.6171919;-0.005252846,-0.07370081;0.003237321;-0.0309469,-0.1067393;-0.2939847;-0.007123029,-0.1068262;-0.589547;0.04428604,-0.1066911;-0.6141343;-0.0223227,0.008312486;0.3997695;0.008843157,0;0;0,0.004500124;0.1996277;0.01133678,0.01241994;0.4994507;0.01470056,0.1211663;0.3765645;-0.02177377,0.1705132;0.1834783;-0.004962651,0.2166566;-0.06103332;-0.02914599,-0.1045539;0.3655557;0.002207317,-0.2405196;0.2190033;0.008187497,-0.4340065;0.06100935;-0.001848026,0.07081876;0.004497985;-0.03693875,0.08341787;-0.2937306;-0.006922606,0.07096072;-0.5879976;0.05010203,0.08224835;-0.616208;-0.01118179,-0.07120337;0.003686814;-0.03628343,-0.1042594;-0.293415;-0.01102833,-0.1051789;-0.5890266;0.04008891,-0.1080393;-0.6121674;-0.02804506,0.00968505;0.3995001;0.01625105,11.35898
-0;0;0,0.004050315;0.1998197;0.007461679,0.01056582;0.4996929;0.005640917,0.1176699;0.3738913;-0.03324323,0.1673324;0.1805463;-0.02094077,0.2010424;-0.06460528;-0.05649844,-0.1059015;0.3630849;0.005776064,-0.252887;0.2316498;0.03924327,-0.4873651;0.1457736;0.02718716,0.06816398;0.004803597;-0.04160044,0.08385308;-0.2929515;-0.008498047,0.07051244;-0.5863131;0.05282893,0.07973931;-0.6171919;-0.005252846,-0.07370081;0.003237321;-0.0309469,-0.1067393;-0.2939847;-0.007123029,-0.1068262;-0.589547;0.04428604,-0.1066911;-0.6141343;-0.0223227,0.008312486;0.3997695;0.008843157,0;0;0,0.004500124;0.1996277;0.01133678,0.01241994;0.4994507;0.01470056,0.1211663;0.3765645;-0.02177377,0.1705132;0.1834783;-0.004962651,0.2166566;-0.06103332;-0.02914599,-0.1045539;0.3655557;0.002207317,-0.2405196;0.2190033;0.008187497,-0.4340065;0.06100935;-0.001848026,0.07081876;0.004497985;-0.03693875,0.08341787;-0.2937306;-0.006922606,0.07096072;-0.5879976;0.05010203,0.08224835;-0.616208;-0.01118179,-0.07120337;0.003686814;-0.03628343,-0.1042594;-0.293415;-0.01102833,-0.1051789;-0.5890266;0.04008891,-0.1080393;-0.6121674;-0.02804506,0.00968505;0.3995001;0.01625105,11.37057
-0;0;0,0.004050315;0.1998197;0.007461679,0.01056582;0.4996929;0.005640917,0.1176699;0.3738913;-0.03324323,0.1673324;0.1805463;-0.02094077,0.2010424;-0.06460528;-0.05649844,-0.1059015;0.3630849;0.005776064,-0.252887;0.2316498;0.03924327,-0.4873651;0.1457736;0.02718716,0.06816398;0.004803597;-0.04160044,0.08385308;-0.2929515;-0.008498047,0.07051244;-0.5863131;0.05282893,0.07973931;-0.6171919;-0.005252846,-0.07370081;0.003237321;-0.0309469,-0.1067393;-0.2939847;-0.007123029,-0.1068262;-0.589547;0.04428604,-0.1066911;-0.6141343;-0.0223227,0.008312486;0.3997695;0.008843157,0;0;0,0.004720186;0.1996245;0.0113047,0.01306258;0.4994361;0.01469023,0.1215751;0.3763909;-0.02195661,0.1697325;0.1830385;-0.004760085,0.2157009;-0.06147146;-0.02929069,-0.1042237;0.3659085;0.002660722,-0.244257;0.22322;0.008196834,-0.4401262;0.06822032;-0.002307981,0.07081056;0.004456528;-0.03695947,0.08352428;-0.2937679;-0.006949872,0.07090008;-0.588039;0.0500159,0.08270659;-0.6161712;-0.01127001,-0.07119768;0.00372445;-0.03629074,-0.1043184;-0.2933738;-0.01107815,-0.1052008;-0.5888857;0.04061235,-0.1092047;-0.6159131;-0.02303313,0.01018073;0.3994894;0.01622401,11.38198
-0;0;0,0.004121042;0.1998197;0.007423216,0.01092258;0.499685;0.005500887,0.117924;0.3737955;-0.03322,0.167553;0.1804404;-0.02094003,0.2013343;-0.06477635;-0.05597636,-0.105702;0.3631452;0.006270804,-0.2550679;0.2341215;0.03856202,-0.4908534;0.1520843;0.02532952,0.06814111;0.004802133;-0.04163807,0.08386549;-0.2929198;-0.008255806,0.07050695;-0.5863416;0.05277888,0.07957087;-0.6171426;-0.00543661,-0.07373694;0.003242261;-0.03086022,-0.1066609;-0.2939939;-0.007055324,-0.1067743;-0.5895777;0.04423084,-0.1182015;-0.5573478;-0.05351188,0.008546478;0.3997663;0.00875697,0;0;0,0.004720186;0.1996245;0.0113047,0.01306258;0.4994361;0.01469023,0.1215751;0.3763909;-0.02195661,0.1697325;0.1830385;-0.004760085,0.2157009;-0.06147146;-0.02929069,-0.1042237;0.3659085;0.002660722,-0.244257;0.22322;0.008196834,-0.4401262;0.06822032;-0.002307981,0.07081056;0.004456528;-0.03695947,0.08352428;-0.2937679;-0.006949872,0.07090008;-0.588039;0.0500159,0.08270659;-0.6161712;-0.01127001,-0.07119768;0.00372445;-0.03629074,-0.1043184;-0.2933738;-0.01107815,-0.1052008;-0.5888857;0.04061235,-0.1092047;-0.6159131;-0.02303313,0.01018073;0.3994894;0.01622401,11.40438
-0;0;0,0.004121042;0.1998197;0.007423216,0.01092258;0.499685;0.005500887,0.117924;0.3737955;-0.03322,0.167553;0.1804404;-0.02094003,0.2013343;-0.06477635;-0.05597636,-0.105702;0.3631452;0.006270804,-0.2550679;0.2341215;0.03856202,-0.4908534;0.1520843;0.02532952,0.06814111;0.004802133;-0.04163807,0.08386549;-0.2929198;-0.008255806,0.07050695;-0.5863416;0.05277888,0.07957087;-0.6171426;-0.00543661,-0.07373694;0.003242261;-0.03086022,-0.1066609;-0.2939939;-0.007055324,-0.1067743;-0.5895777;0.04423084,-0.1182015;-0.5573478;-0.05351188,0.008546478;0.3997663;0.00875697,0;0;0,0.004720186;0.1996245;0.0113047,0.01306258;0.4994361;0.01469023,0.1215751;0.3763909;-0.02195661,0.1697325;0.1830385;-0.004760085,0.2157009;-0.06147146;-0.02929069,-0.1042237;0.3659085;0.002660722,-0.244257;0.22322;0.008196834,-0.4401262;0.06822032;-0.002307981,0.07081056;0.004456528;-0.03695947,0.08352428;-0.2937679;-0.006949872,0.07090008;-0.588039;0.0500159,0.08270659;-0.6161712;-0.01127001,-0.07119768;0.00372445;-0.03629074,-0.1043184;-0.2933738;-0.01107815,-0.1052008;-0.5888857;0.04061235,-0.1092047;-0.6159131;-0.02303313,0.01018073;0.3994894;0.01622401,11.41554
-0;0;0,0.004160441;0.19982;0.007394199,0.01112399;0.4996794;0.005283577,0.1180761;0.3737317;-0.03327188,0.1678634;0.1804233;-0.02089966,0.2013891;-0.06481801;-0.05600986,-0.1055585;0.3631093;0.006285924,-0.2566882;0.2361382;0.03850608,-0.4949769;0.1618237;0.0245112,0.06813269;0.004794766;-0.04165269,0.08387789;-0.2928954;-0.007997498,0.07051764;-0.5863425;0.05291497,0.07934416;-0.6168973;-0.005676948,-0.07376174;0.003253265;-0.0307997,-0.1066152;-0.2939879;-0.006959191,-0.1066;-0.5895646;0.04436763,-0.1180363;-0.5573425;-0.05337261,0.008681998;0.3997651;0.008623148,0;0;0,0.00497725;0.1996224;0.01123139,0.01405091;0.4994149;0.01437463,0.1222717;0.3761676;-0.02208269,0.1694205;0.1825818;-0.004717762,0.2149845;-0.06200252;-0.0292622,-0.103644;0.3661747;0.002832201,-0.2468662;0.2266669;0.007830076,-0.4459184;0.0757041;-0.001576385,0.07077337;0.004365059;-0.03704155,0.08357479;-0.2938504;-0.006979916,0.0708976;-0.5880965;0.05010345,0.08272069;-0.6162141;-0.01119791,-0.07123137;0.003843429;-0.03621216,-0.1043035;-0.2932537;-0.0109232,-0.1051305;-0.5887433;0.04089598,-0.1089042;-0.6147804;-0.02394318,0.01088768;0.3994781;0.01599899,11.43779
-0;0;0,0.004160441;0.19982;0.007394199,0.01112399;0.4996794;0.005283577,0.1180761;0.3737317;-0.03327188,0.1678634;0.1804233;-0.02089966,0.2013891;-0.06481801;-0.05600986,-0.1055585;0.3631093;0.006285924,-0.2566882;0.2361382;0.03850608,-0.4949769;0.1618237;0.0245112,0.06813269;0.004794766;-0.04165269,0.08387789;-0.2928954;-0.007997498,0.07051764;-0.5863425;0.05291497,0.07934416;-0.6168973;-0.005676948,-0.07376174;0.003253265;-0.0307997,-0.1066152;-0.2939879;-0.006959191,-0.1066;-0.5895646;0.04436763,-0.1180363;-0.5573425;-0.05337261,0.008681998;0.3997651;0.008623148,0;0;0,0.00497725;0.1996224;0.01123139,0.01405091;0.4994149;0.01437463,0.1222717;0.3761676;-0.02208269,0.1694205;0.1825818;-0.004717762,0.2149845;-0.06200252;-0.0292622,-0.103644;0.3661747;0.002832201,-0.2468662;0.2266669;0.007830076,-0.4459184;0.0757041;-0.001576385,0.07077337;0.004365059;-0.03704155,0.08357479;-0.2938504;-0.006979916,0.0708976;-0.5880965;0.05010345,0.08272069;-0.6162141;-0.01119791,-0.07123137;0.003843429;-0.03621216,-0.1043035;-0.2932537;-0.0109232,-0.1051305;-0.5887433;0.04089598,-0.1089042;-0.6147804;-0.02394318,0.01088768;0.3994781;0.01599899,11.44908
-0;0;0,0.00419315;0.1998196;0.007385994,0.01125935;0.4996762;0.005234465,0.1181682;0.3738342;-0.03338733,0.1679045;0.1805212;-0.02088086,0.201562;-0.06468728;-0.05609393,-0.1054808;0.3631722;0.006333835,-0.2586914;0.2386539;0.03829796,-0.4982502;0.1685683;0.0241712,0.06813128;0.004791582;-0.04165537,0.08386338;-0.2928784;-0.007815704,0.07058474;-0.586406;0.05272528,0.07933961;-0.6169968;-0.005827833,-0.07375909;0.003251697;-0.03080621,-0.1066198;-0.2939889;-0.006968778,-0.1065901;-0.5895826;0.04426007,-0.1047112;-0.6157483;-0.02051063,0.008781953;0.3997633;0.008592687,0;0;0,0.00497725;0.1996224;0.01123139,0.01405091;0.4994149;0.01437463,0.1222717;0.3761676;-0.02208269,0.1694205;0.1825818;-0.004717762,0.2149845;-0.06200252;-0.0292622,-0.103644;0.3661747;0.002832201,-0.2468662;0.2266669;0.007830076,-0.4459184;0.0757041;-0.001576385,0.07077337;0.004365059;-0.03704155,0.08357479;-0.2938504;-0.006979916,0.0708976;-0.5880965;0.05010345,0.08272069;-0.6162141;-0.01119791,-0.07123137;0.003843429;-0.03621216,-0.1043035;-0.2932537;-0.0109232,-0.1051305;-0.5887433;0.04089598,-0.1089042;-0.6147804;-0.02394318,0.01088768;0.3994781;0.01599899,11.47149
-0;0;0,0.004352101;0.1998194;0.007297887,0.01214216;0.4996533;0.004774278,0.1186848;0.3735951;-0.03373843,0.1685198;0.1803268;-0.02093819,0.2020478;-0.06487755;-0.05630323,-0.1049148;0.3632337;0.006328557,-0.2605562;0.2416428;0.03781464,-0.50124;0.1754871;0.02385867,0.06809518;0.004778491;-0.04171584,0.0839532;-0.2928807;-0.007840972,0.07057045;-0.5864308;0.0525682,0.07933909;-0.6168461;-0.006223656,-0.07379373;0.003272193;-0.03072095,-0.1065857;-0.2939862;-0.007011516,-0.1065689;-0.5895942;0.04413465,-0.1050467;-0.6147642;-0.02179835,0.009376066;0.3997538;0.008301215,0;0;0,0.005296206;0.199624;0.01105437,0.01491203;0.4994034;0.01379048,0.1229515;0.3758047;-0.02232046,0.1695185;0.1820712;-0.005033212,0.2150037;-0.06250694;-0.02978485,-0.1030319;0.3662305;0.002894755,-0.2495728;0.2301844;0.007042081,-0.4523389;0.08417039;-0.0010726,0.07074733;0.004341519;-0.03709401,0.08372403;-0.2938859;-0.00722803,0.07090981;-0.588083;0.05007722,0.08265171;-0.6162922;-0.01112292,-0.0712383;0.003866189;-0.03619607,-0.1043399;-0.2932422;-0.01107768,-0.1049643;-0.5887521;0.04062821,-0.1088377;-0.6138296;-0.02531394,0.01157382;0.3994747;0.0155575,11.4934
-0;0;0,0.004352101;0.1998194;0.007297887,0.01214216;0.4996533;0.004774278,0.1186848;0.3735951;-0.03373843,0.1685198;0.1803268;-0.02093819,0.2020478;-0.06487755;-0.05630323,-0.1049148;0.3632337;0.006328557,-0.2605562;0.2416428;0.03781464,-0.50124;0.1754871;0.02385867,0.06809518;0.004778491;-0.04171584,0.0839532;-0.2928807;-0.007840972,0.07057045;-0.5864308;0.0525682,0.07933909;-0.6168461;-0.006223656,-0.07379373;0.003272193;-0.03072095,-0.1065857;-0.2939862;-0.007011516,-0.1065689;-0.5895942;0.04413465,-0.1050467;-0.6147642;-0.02179835,0.009376066;0.3997538;0.008301215,0;0;0,0.005296206;0.199624;0.01105437,0.01491203;0.4994034;0.01379048,0.1229515;0.3758047;-0.02232046,0.1695185;0.1820712;-0.005033212,0.2150037;-0.06250694;-0.02978485,-0.1030319;0.3662305;0.002894755,-0.2495728;0.2301844;0.007042081,-0.4523389;0.08417039;-0.0010726,0.07074733;0.004341519;-0.03709401,0.08372403;-0.2938859;-0.00722803,0.07090981;-0.588083;0.05007722,0.08265171;-0.6162922;-0.01112292,-0.0712383;0.003866189;-0.03619607,-0.1043399;-0.2932422;-0.01107768,-0.1049643;-0.5887521;0.04062821,-0.1088377;-0.6138296;-0.02531394,0.01157382;0.3994747;0.0155575,11.50497
-0;0;0,0.004352101;0.1998194;0.007297887,0.01214216;0.4996533;0.004774278,0.1186848;0.3735951;-0.03373843,0.1685198;0.1803268;-0.02093819,0.2020478;-0.06487755;-0.05630323,-0.1049148;0.3632337;0.006328557,-0.2605562;0.2416428;0.03781464,-0.50124;0.1754871;0.02385867,0.06809518;0.004778491;-0.04171584,0.0839532;-0.2928807;-0.007840972,0.07057045;-0.5864308;0.0525682,0.07933909;-0.6168461;-0.006223656,-0.07379373;0.003272193;-0.03072095,-0.1065857;-0.2939862;-0.007011516,-0.1065689;-0.5895942;0.04413465,-0.1050467;-0.6147642;-0.02179835,0.009376066;0.3997538;0.008301215,0;0;0,0.005599459;0.1996223;0.01093492,0.01591762;0.4993805;0.01341875,0.1235749;0.3752862;-0.02267416,0.1697678;0.1814948;-0.005036624,0.2151389;-0.06307298;-0.03009816,-0.1023615;0.3663445;0.003045187,-0.2526575;0.2344562;0.007119661,-0.458211;0.09233418;0.0001153094,0.0706558;0.004267907;-0.03727658,0.08394988;-0.2939509;-0.0074642,0.07085492;-0.5880855;0.05009761,0.08242382;-0.6168379;-0.01043528,-0.07129128;0.003988362;-0.03607834,-0.1044175;-0.2931227;-0.01102509,-0.1047386;-0.5886507;0.04058018,-0.1093157;-0.6139072;-0.02511237,0.01232843;0.3994621;0.01526987,11.51631
-0;0;0,0.004480701;0.1998178;0.007264442,0.01262979;0.49964;0.004562412,0.1190049;0.3734704;-0.0338672,0.1686489;0.1801616;-0.02093704,0.202149;-0.0650506;-0.05627443,-0.1046218;0.3633798;0.006333989,-0.2621979;0.2442638;0.03765759,-0.5040678;0.1827898;0.0228279,0.068097;0.00476979;-0.04171389,0.08408511;-0.2928815;-0.007830363,0.07076413;-0.5864477;0.05251383,0.07939715;-0.6168725;-0.006285213,-0.07378872;0.003279682;-0.0307322,-0.1064414;-0.2939879;-0.00694529,-0.1064415;-0.5896208;0.04405655,-0.1052164;-0.6144096;-0.02231453,0.009720083;0.3997471;0.00816078,0;0;0,0.005599459;0.1996223;0.01093492,0.01591762;0.4993805;0.01341875,0.1235749;0.3752862;-0.02267416,0.1697678;0.1814948;-0.005036624,0.2151389;-0.06307298;-0.03009816,-0.1023615;0.3663445;0.003045187,-0.2526575;0.2344562;0.007119661,-0.458211;0.09233418;0.0001153094,0.0706558;0.004267907;-0.03727658,0.08394988;-0.2939509;-0.0074642,0.07085492;-0.5880855;0.05009761,0.08242382;-0.6168379;-0.01043528,-0.07129128;0.003988362;-0.03607834,-0.1044175;-0.2931227;-0.01102509,-0.1047386;-0.5886507;0.04058018,-0.1093157;-0.6139072;-0.02511237,0.01232843;0.3994621;0.01526987,11.53841
-0;0;0,0.004480701;0.1998178;0.007264442,0.01262979;0.49964;0.004562412,0.1190049;0.3734704;-0.0338672,0.1686489;0.1801616;-0.02093704,0.202149;-0.0650506;-0.05627443,-0.1046218;0.3633798;0.006333989,-0.2621979;0.2442638;0.03765759,-0.5040678;0.1827898;0.0228279,0.068097;0.00476979;-0.04171389,0.08408511;-0.2928815;-0.007830363,0.07076413;-0.5864477;0.05251383,0.07939715;-0.6168725;-0.006285213,-0.07378872;0.003279682;-0.0307322,-0.1064414;-0.2939879;-0.00694529,-0.1064415;-0.5896208;0.04405655,-0.1052164;-0.6144096;-0.02231453,0.009720083;0.3997471;0.00816078,0;0;0,0.005599459;0.1996223;0.01093492,0.01591762;0.4993805;0.01341875,0.1235749;0.3752862;-0.02267416,0.1697678;0.1814948;-0.005036624,0.2151389;-0.06307298;-0.03009816,-0.1023615;0.3663445;0.003045187,-0.2526575;0.2344562;0.007119661,-0.458211;0.09233418;0.0001153094,0.0706558;0.004267907;-0.03727658,0.08394988;-0.2939509;-0.0074642,0.07085492;-0.5880855;0.05009761,0.08242382;-0.6168379;-0.01043528,-0.07129128;0.003988362;-0.03607834,-0.1044175;-0.2931227;-0.01102509,-0.1047386;-0.5886507;0.04058018,-0.1093157;-0.6139072;-0.02511237,0.01232843;0.3994621;0.01526987,11.5501
-0;0;0,0.004738701;0.1998145;0.007192179,0.01344896;0.4996181;0.004227803,0.1195632;0.373244;-0.03419162,0.1690898;0.1799095;-0.02119525,0.2024253;-0.06534959;-0.05636198,-0.1040143;0.3634694;0.006260314,-0.2641302;0.2477635;0.03748621,-0.5066721;0.1891142;0.02220092,0.06804446;0.004760199;-0.04180061,0.08388007;-0.2929221;-0.008118674,0.07083648;-0.5865067;0.0521967,0.07928713;-0.6172813;-0.006147642,-0.07385048;0.003311192;-0.0305801,-0.1066142;-0.2939648;-0.007053141,-0.106576;-0.5895963;0.04395687,-0.1058578;-0.6150045;-0.02171718,0.01036276;0.399734;0.007921913,0;0;0,0.005599459;0.1996223;0.01093492,0.01591762;0.4993805;0.01341875,0.1235749;0.3752862;-0.02267416,0.1697678;0.1814948;-0.005036624,0.2151389;-0.06307298;-0.03009816,-0.1023615;0.3663445;0.003045187,-0.2526575;0.2344562;0.007119661,-0.458211;0.09233418;0.0001153094,0.0706558;0.004267907;-0.03727658,0.08394988;-0.2939509;-0.0074642,0.07085492;-0.5880855;0.05009761,0.08242382;-0.6168379;-0.01043528,-0.07129128;0.003988362;-0.03607834,-0.1044175;-0.2931227;-0.01102509,-0.1047386;-0.5886507;0.04058018,-0.1093157;-0.6139072;-0.02511237,0.01232843;0.3994621;0.01526987,11.57193
-0;0;0,0.004738701;0.1998145;0.007192179,0.01344896;0.4996181;0.004227803,0.1195632;0.373244;-0.03419162,0.1690898;0.1799095;-0.02119525,0.2024253;-0.06534959;-0.05636198,-0.1040143;0.3634694;0.006260314,-0.2641302;0.2477635;0.03748621,-0.5066721;0.1891142;0.02220092,0.06804446;0.004760199;-0.04180061,0.08388007;-0.2929221;-0.008118674,0.07083648;-0.5865067;0.0521967,0.07928713;-0.6172813;-0.006147642,-0.07385048;0.003311192;-0.0305801,-0.1066142;-0.2939648;-0.007053141,-0.106576;-0.5895963;0.04395687,-0.1058578;-0.6150045;-0.02171718,0.01036276;0.399734;0.007921913,0;0;0,0.005812728;0.1996215;0.01083791,0.01666661;0.4993626;0.01308571,0.1240015;0.375063;-0.02319032,0.1698045;0.1812121;-0.005192801,0.2150858;-0.06332584;-0.03070336,-0.1018764;0.3664883;0.003119553,-0.2545551;0.2373645;0.007150884,-0.4638379;0.1007642;0.0007435451,0.0705852;0.004251449;-0.03741197,0.0841553;-0.2939591;-0.007640136,0.07087428;-0.5880588;0.05005688,0.08228927;-0.6166822;-0.01067252,-0.07132163;0.004047134;-0.03601174,-0.1044209;-0.2930723;-0.01102201,-0.1047141;-0.5886045;0.04055995,-0.1092393;-0.6139161;-0.02507295,0.0128921;0.3994525;0.01501769,11.58306
-0;0;0,0.004841569;0.1998107;0.00722899,0.01382733;0.4996082;0.004419156,0.1198679;0.3736339;-0.03427092,0.1690407;0.1802183;-0.02113893,0.2022308;-0.0650712;-0.05623136,-0.1037726;0.3636028;0.006511049,-0.2668408;0.2518384;0.03680106,-0.5096572;0.1944082;0.02124546,0.06803722;0.004748383;-0.04181375,0.08381701;-0.2929308;-0.008077927,0.07082263;-0.5865293;0.05218071,0.07821421;-0.6164087;-0.007523831,-0.07385822;0.00332708;-0.03055966,-0.106564;-0.2939596;-0.007086849,-0.1066847;-0.5895987;0.04387893,-0.105669;-0.6150822;-0.02170459,0.01065139;0.3997246;0.008049664,0;0;0,0.005812728;0.1996215;0.01083791,0.01666661;0.4993626;0.01308571,0.1240015;0.375063;-0.02319032,0.1698045;0.1812121;-0.005192801,0.2150858;-0.06332584;-0.03070336,-0.1018764;0.3664883;0.003119553,-0.2545551;0.2373645;0.007150884,-0.4638379;0.1007642;0.0007435451,0.0705852;0.004251449;-0.03741197,0.0841553;-0.2939591;-0.007640136,0.07087428;-0.5880588;0.05005688,0.08228927;-0.6166822;-0.01067252,-0.07132163;0.004047134;-0.03601174,-0.1044209;-0.2930723;-0.01102201,-0.1047141;-0.5886045;0.04055995,-0.1092393;-0.6139161;-0.02507295,0.0128921;0.3994525;0.01501769,11.60513
-0;0;0,0.004841569;0.1998107;0.00722899,0.01382733;0.4996082;0.004419156,0.1198679;0.3736339;-0.03427092,0.1690407;0.1802183;-0.02113893,0.2022308;-0.0650712;-0.05623136,-0.1037726;0.3636028;0.006511049,-0.2668408;0.2518384;0.03680106,-0.5096572;0.1944082;0.02124546,0.06803722;0.004748383;-0.04181375,0.08381701;-0.2929308;-0.008077927,0.07082263;-0.5865293;0.05218071,0.07821421;-0.6164087;-0.007523831,-0.07385822;0.00332708;-0.03055966,-0.106564;-0.2939596;-0.007086849,-0.1066847;-0.5895987;0.04387893,-0.105669;-0.6150822;-0.02170459,0.01065139;0.3997246;0.008049664,0;0;0,0.005812728;0.1996215;0.01083791,0.01666661;0.4993626;0.01308571,0.1240015;0.375063;-0.02319032,0.1698045;0.1812121;-0.005192801,0.2150858;-0.06332584;-0.03070336,-0.1018764;0.3664883;0.003119553,-0.2545551;0.2373645;0.007150884,-0.4638379;0.1007642;0.0007435451,0.0705852;0.004251449;-0.03741197,0.0841553;-0.2939591;-0.007640136,0.07087428;-0.5880588;0.05005688,0.08228927;-0.6166822;-0.01067252,-0.07132163;0.004047134;-0.03601174,-0.1044209;-0.2930723;-0.01102201,-0.1047141;-0.5886045;0.04055995,-0.1092393;-0.6139161;-0.02507295,0.0128921;0.3994525;0.01501769,11.61671
-0;0;0,0.005002475;0.1998084;0.007181734,0.01450392;0.4995888;0.0042333,0.1203221;0.3736809;-0.03457198,0.1693576;0.1802346;-0.02137877,0.202411;-0.06510963;-0.05621662,-0.1033119;0.3637146;0.006509727,-0.2676259;0.2537323;0.03658992,-0.511459;0.2006922;0.02135354,0.06801584;0.004761634;-0.04184701,0.08378521;-0.2929058;-0.008002762,0.07072857;-0.5865007;0.05225969,0.07814717;-0.6162573;-0.007605582,-0.07386357;0.003319032;-0.03054759,-0.1065294;-0.2939718;-0.007071793,-0.1068773;-0.5895764;0.04409268,-0.1053723;-0.615833;-0.02058086,0.0111529;0.3997125;0.007906651,0;0;0,0.006117254;0.199622;0.01065973,0.01759985;0.499342;0.01259745,0.1246252;0.3745562;-0.02353973,0.1698802;0.1805933;-0.005363042,0.214885;-0.06393714;-0.0314284,-0.1012801;0.3667169;0.003278622,-0.2577985;0.2422753;0.007318227,-0.4680244;0.1070853;0.001960944,0.07047324;0.004205529;-0.03762759,0.08429776;-0.2939617;-0.007541118,0.07097637;-0.5880712;0.05009685,0.08248253;-0.6166684;-0.01064928,-0.07136351;0.004057844;-0.03592747,-0.1044078;-0.2930669;-0.01092846,-0.1045874;-0.5886179;0.04054572,-0.1082658;-0.6141652;-0.02486885,0.01361219;0.3994421;0.01462824,11.62774
-0;0;0,0.005002475;0.1998084;0.007181734,0.01450392;0.4995888;0.0042333,0.1203221;0.3736809;-0.03457198,0.1693576;0.1802346;-0.02137877,0.202411;-0.06510963;-0.05621662,-0.1033119;0.3637146;0.006509727,-0.2676259;0.2537323;0.03658992,-0.511459;0.2006922;0.02135354,0.06801584;0.004761634;-0.04184701,0.08378521;-0.2929058;-0.008002762,0.07072857;-0.5865007;0.05225969,0.07814717;-0.6162573;-0.007605582,-0.07386357;0.003319032;-0.03054759,-0.1065294;-0.2939718;-0.007071793,-0.1068773;-0.5895764;0.04409268,-0.1053723;-0.615833;-0.02058086,0.0111529;0.3997125;0.007906651,0;0;0,0.006117254;0.199622;0.01065973,0.01759985;0.499342;0.01259745,0.1246252;0.3745562;-0.02353973,0.1698802;0.1805933;-0.005363042,0.214885;-0.06393714;-0.0314284,-0.1012801;0.3667169;0.003278622,-0.2577985;0.2422753;0.007318227,-0.4680244;0.1070853;0.001960944,0.07047324;0.004205529;-0.03762759,0.08429776;-0.2939617;-0.007541118,0.07097637;-0.5880712;0.05009685,0.08248253;-0.6166684;-0.01064928,-0.07136351;0.004057844;-0.03592747,-0.1044078;-0.2930669;-0.01092846,-0.1045874;-0.5886179;0.04054572,-0.1082658;-0.6141652;-0.02486885,0.01361219;0.3994421;0.01462824,11.63935
-0;0;0,0.005218474;0.1998067;0.007074151,0.01527049;0.4995666;0.003862948,0.1209537;0.3735327;-0.03465247,0.169689;0.1800117;-0.02144227,0.2023895;-0.06538011;-0.05627788,-0.1027822;0.3638676;0.006435234,-0.2703446;0.2587193;0.0358746,-0.5142695;0.2060653;0.02076801,0.0679934;0.004735148;-0.04188647,0.08382824;-0.2929124;-0.007898197,0.07086241;-0.5865485;0.05218292,0.07759789;-0.6163695;-0.007677268,-0.07387201;0.003340033;-0.03052491,-0.1064893;-0.2939538;-0.007020311,-0.1068107;-0.5895587;0.04414281,-0.1063227;-0.6158749;-0.02047602,0.01173706;0.3996997;0.00762058,0;0;0,0.006404943;0.1996195;0.01053734,0.01837837;0.4993215;0.01227436,0.1252965;0.3745002;-0.02361111,0.1701985;0.18046;-0.005384557,0.215085;-0.06397118;-0.03256143,-0.1007818;0.3670396;0.003264053,-0.2595286;0.2454627;0.007569152,-0.4720442;0.1138534;0.003552987,0.07032968;0.004157155;-0.03790057,0.08424553;-0.2939817;-0.007575518,0.07093859;-0.5880954;0.05004427,0.08255403;-0.6164789;-0.01095665,-0.07143234;0.004125942;-0.03578263,-0.1044247;-0.2930076;-0.01081972,-0.1045467;-0.5885742;0.04056522,-0.1101423;-0.6131905;-0.02577557,0.01422918;0.3994296;0.01437018,11.66224
-0;0;0,0.005218474;0.1998067;0.007074151,0.01527049;0.4995666;0.003862948,0.1209537;0.3735327;-0.03465247,0.169689;0.1800117;-0.02144227,0.2023895;-0.06538011;-0.05627788,-0.1027822;0.3638676;0.006435234,-0.2703446;0.2587193;0.0358746,-0.5142695;0.2060653;0.02076801,0.0679934;0.004735148;-0.04188647,0.08382824;-0.2929124;-0.007898197,0.07086241;-0.5865485;0.05218292,0.07759789;-0.6163695;-0.007677268,-0.07387201;0.003340033;-0.03052491,-0.1064893;-0.2939538;-0.007020311,-0.1068107;-0.5895587;0.04414281,-0.1063227;-0.6158749;-0.02047602,0.01173706;0.3996997;0.00762058,0;0;0,0.006404943;0.1996195;0.01053734,0.01837837;0.4993215;0.01227436,0.1252965;0.3745002;-0.02361111,0.1701985;0.18046;-0.005384557,0.215085;-0.06397118;-0.03256143,-0.1007818;0.3670396;0.003264053,-0.2595286;0.2454627;0.007569152,-0.4720442;0.1138534;0.003552987,0.07032968;0.004157155;-0.03790057,0.08424553;-0.2939817;-0.007575518,0.07093859;-0.5880954;0.05004427,0.08255403;-0.6164789;-0.01095665,-0.07143234;0.004125942;-0.03578263,-0.1044247;-0.2930076;-0.01081972,-0.1045467;-0.5885742;0.04056522,-0.1101423;-0.6131905;-0.02577557,0.01422918;0.3994296;0.01437018,11.67371
-0;0;0,0.005421453;0.1998051;0.006967383,0.01569897;0.499556;0.00360591,0.1213524;0.3732794;-0.03465306,0.1697649;0.1796848;-0.02133539,0.2019683;-0.06574981;-0.05633255,-0.102513;0.3641987;0.006339987,-0.2714366;0.2611698;0.03549258,-0.5158558;0.2108453;0.02043609,0.06799822;0.004720301;-0.04188031,0.08380634;-0.2929223;-0.007836077,0.07070079;-0.5865786;0.05211562,0.07742622;-0.6158959;-0.008411545,-0.07385654;0.00335692;-0.03056046,-0.1065948;-0.2939202;-0.00701236,-0.10677;-0.5895059;0.04426212,-0.1055511;-0.6165764;-0.01944542,0.01211262;0.3996927;0.007406545,0;0;0,0.006404943;0.1996195;0.01053734,0.01837837;0.4993215;0.01227436,0.1252965;0.3745002;-0.02361111,0.1701985;0.18046;-0.005384557,0.215085;-0.06397118;-0.03256143,-0.1007818;0.3670396;0.003264053,-0.2595286;0.2454627;0.007569152,-0.4720442;0.1138534;0.003552987,0.07032968;0.004157155;-0.03790057,0.08424553;-0.2939817;-0.007575518,0.07093859;-0.5880954;0.05004427,0.08255403;-0.6164789;-0.01095665,-0.07143234;0.004125942;-0.03578263,-0.1044247;-0.2930076;-0.01081972,-0.1045467;-0.5885742;0.04056522,-0.1101423;-0.6131905;-0.02577557,0.01422918;0.3994296;0.01437018,11.69423
-0;0;0,0.005421453;0.1998051;0.006967383,0.01569897;0.499556;0.00360591,0.1213524;0.3732794;-0.03465306,0.1697649;0.1796848;-0.02133539,0.2019683;-0.06574981;-0.05633255,-0.102513;0.3641987;0.006339987,-0.2714366;0.2611698;0.03549258,-0.5158558;0.2108453;0.02043609,0.06799822;0.004720301;-0.04188031,0.08380634;-0.2929223;-0.007836077,0.07070079;-0.5865786;0.05211562,0.07742622;-0.6158959;-0.008411545,-0.07385654;0.00335692;-0.03056046,-0.1065948;-0.2939202;-0.00701236,-0.10677;-0.5895059;0.04426212,-0.1055511;-0.6165764;-0.01944542,0.01211262;0.3996927;0.007406545,0;0;0,0.006404943;0.1996195;0.01053734,0.01837837;0.4993215;0.01227436,0.1252965;0.3745002;-0.02361111,0.1701985;0.18046;-0.005384557,0.215085;-0.06397118;-0.03256143,-0.1007818;0.3670396;0.003264053,-0.2595286;0.2454627;0.007569152,-0.4720442;0.1138534;0.003552987,0.07032968;0.004157155;-0.03790057,0.08424553;-0.2939817;-0.007575518,0.07093859;-0.5880954;0.05004427,0.08255403;-0.6164789;-0.01095665,-0.07143234;0.004125942;-0.03578263,-0.1044247;-0.2930076;-0.01081972,-0.1045467;-0.5885742;0.04056522,-0.1101423;-0.6131905;-0.02577557,0.01422918;0.3994296;0.01437018,11.70601
-0;0;0,0.005841887;0.1997952;0.006910945,0.01710898;0.4995111;0.003552138,0.1222391;0.372685;-0.03483308,0.1704483;0.1790369;-0.0215555,0.2018552;-0.06653224;-0.056332,-0.1015826;0.3646065;0.006410378,-0.272365;0.264541;0.03505078,-0.5176306;0.2181287;0.02124221,0.06798286;0.004710925;-0.04190629,0.08384036;-0.2929826;-0.008333351,0.07089861;-0.5866286;0.05170459,0.07748024;-0.6161394;-0.008583929,-0.07386338;0.003369517;-0.03054254,-0.1066398;-0.2939076;-0.007047586,-0.1068074;-0.5894772;0.04432004,-0.1061222;-0.6159279;-0.02013784,0.01317967;0.3996601;0.007337801,0;0;0,0.006599355;0.1996164;0.01047575,0.01867458;0.4993147;0.01221808,0.1253083;0.374899;-0.02470272,0.1733501;0.1815486;-0.00716416,0.2196716;-0.06265496;-0.0339771,-0.1005909;0.3672691;0.003412805,-0.2622033;0.2495172;0.00740215,-0.476475;0.1207362;0.005641602,0.0703211;0.004102921;-0.03792241,0.08433826;-0.2939992;-0.007285396,0.07099199;-0.5881152;0.05031406,0.08267496;-0.616062;-0.011231,-0.07145765;0.004142269;-0.03573019,-0.1043956;-0.2929804;-0.0105658,-0.1043859;-0.5885245;0.04094823,-0.1097765;-0.6125724;-0.02604315,0.01450673;0.3994234;0.01430467,11.72762
-0;0;0,0.005841887;0.1997952;0.006910945,0.01710898;0.4995111;0.003552138,0.1222391;0.372685;-0.03483308,0.1704483;0.1790369;-0.0215555,0.2018552;-0.06653224;-0.056332,-0.1015826;0.3646065;0.006410378,-0.272365;0.264541;0.03505078,-0.5176306;0.2181287;0.02124221,0.06798286;0.004710925;-0.04190629,0.08384036;-0.2929826;-0.008333351,0.07089861;-0.5866286;0.05170459,0.07748024;-0.6161394;-0.008583929,-0.07386338;0.003369517;-0.03054254,-0.1066398;-0.2939076;-0.007047586,-0.1068074;-0.5894772;0.04432004,-0.1061222;-0.6159279;-0.02013784,0.01317967;0.3996601;0.007337801,0;0;0,0.006599355;0.1996164;0.01047575,0.01867458;0.4993147;0.01221808,0.1253083;0.374899;-0.02470272,0.1733501;0.1815486;-0.00716416,0.2196716;-0.06265496;-0.0339771,-0.1005909;0.3672691;0.003412805,-0.2622033;0.2495172;0.00740215,-0.476475;0.1207362;0.005641602,0.0703211;0.004102921;-0.03792241,0.08433826;-0.2939992;-0.007285396,0.07099199;-0.5881152;0.05031406,0.08267496;-0.616062;-0.011231,-0.07145765;0.004142269;-0.03573019,-0.1043956;-0.2929804;-0.0105658,-0.1043859;-0.5885245;0.04094823,-0.1097765;-0.6125724;-0.02604315,0.01450673;0.3994234;0.01430467,11.73971
-0;0;0,0.006007452;0.1997924;0.006850476,0.01762044;0.4994928;0.003305001,0.1226395;0.372509;-0.03490862,0.1706142;0.1788017;-0.02164516,0.2014879;-0.06685027;-0.05631352,-0.1012843;0.3649272;0.006407293,-0.2735783;0.2673609;0.03461337,-0.5189445;0.2214774;0.02082404,0.0679741;0.004672742;-0.04192479,0.08381699;-0.2930082;-0.00823414,0.07029497;-0.5866528;0.05168262,0.07771596;-0.6161593;-0.008514065,-0.07386843;0.003432719;-0.03052329,-0.1065906;-0.293857;-0.007111726,-0.1065615;-0.5894219;0.04428261,-0.106301;-0.6155498;-0.02055935,0.01358023;0.3996487;0.007157023,0;0;0,0.006599355;0.1996164;0.01047575,0.01867458;0.4993147;0.01221808,0.1253083;0.374899;-0.02470272,0.1733501;0.1815486;-0.00716416,0.2196716;-0.06265496;-0.0339771,-0.1005909;0.3672691;0.003412805,-0.2622033;0.2495172;0.00740215,-0.476475;0.1207362;0.005641602,0.0703211;0.004102921;-0.03792241,0.08433826;-0.2939992;-0.007285396,0.07099199;-0.5881152;0.05031406,0.08267496;-0.616062;-0.011231,-0.07145765;0.004142269;-0.03573019,-0.1043956;-0.2929804;-0.0105658,-0.1043859;-0.5885245;0.04094823,-0.1097765;-0.6125724;-0.02604315,0.01450673;0.3994234;0.01430467,11.76146
-0;0;0,0.006007452;0.1997924;0.006850476,0.01762044;0.4994928;0.003305001,0.1226395;0.372509;-0.03490862,0.1706142;0.1788017;-0.02164516,0.2014879;-0.06685027;-0.05631352,-0.1012843;0.3649272;0.006407293,-0.2735783;0.2673609;0.03461337,-0.5189445;0.2214774;0.02082404,0.0679741;0.004672742;-0.04192479,0.08381699;-0.2930082;-0.00823414,0.07029497;-0.5866528;0.05168262,0.07771596;-0.6161593;-0.008514065,-0.07386843;0.003432719;-0.03052329,-0.1065906;-0.293857;-0.007111726,-0.1065615;-0.5894219;0.04428261,-0.106301;-0.6155498;-0.02055935,0.01358023;0.3996487;0.007157023,0;0;0,0.00679769;0.1996108;0.01045515,0.01925828;0.4992935;0.01222779,0.1258847;0.3747953;-0.02430241,0.172208;0.1810535;-0.006463053,0.2180323;-0.06322256;-0.03346971,-0.1002001;0.3674408;0.003497946,-0.264581;0.2536191;0.008346851,-0.4809881;0.1284512;0.007373556,0.07027276;0.004067365;-0.03801572,0.08438367;-0.2940139;-0.007219074,0.07087328;-0.5881485;0.05024672,0.08275168;-0.6164541;-0.01080354,-0.07148604;0.004163782;-0.03567084,-0.1043378;-0.2929595;-0.01040148,-0.104245;-0.5884995;0.04113559,-0.1097185;-0.6122967;-0.0261252,0.01495886;0.3994074;0.01429441,11.77313
-0;0;0,0.006211917;0.1997877;0.006803481,0.01810203;0.499477;0.00320501,0.1229726;0.3722348;-0.03500024,0.1707112;0.1784759;-0.02163928,0.2007034;-0.06735374;-0.05581938,-0.100932;0.3650673;0.006503064,-0.2739889;0.2688743;0.03475633,-0.5198739;0.2260329;0.02043138,0.06795847;0.004639847;-0.04195376,0.08385234;-0.293024;-0.008136261,0.07031569;-0.5866185;0.05202236,0.07830669;-0.6162791;-0.007896956,-0.0738773;0.003468321;-0.03049779,-0.1065277;-0.2938277;-0.007066397,-0.1064141;-0.5893965;0.04430564,-0.1049946;-0.6169934;-0.01875538,0.01397941;0.3996366;0.007066665,0;0;0,0.00679769;0.1996108;0.01045515,0.01925828;0.4992935;0.01222779,0.1258847;0.3747953;-0.02430241,0.172208;0.1810535;-0.006463053,0.2180323;-0.06322256;-0.03346971,-0.1002001;0.3674408;0.003497946,-0.264581;0.2536191;0.008346851,-0.4809881;0.1284512;0.007373556,0.07027276;0.004067365;-0.03801572,0.08438367;-0.2940139;-0.007219074,0.07087328;-0.5881485;0.05024672,0.08275168;-0.6164541;-0.01080354,-0.07148604;0.004163782;-0.03567084,-0.1043378;-0.2929595;-0.01040148,-0.104245;-0.5884995;0.04113559,-0.1097185;-0.6122967;-0.0261252,0.01495886;0.3994074;0.01429441,11.7948
-0;0;0,0.006211917;0.1997877;0.006803481,0.01810203;0.499477;0.00320501,0.1229726;0.3722348;-0.03500024,0.1707112;0.1784759;-0.02163928,0.2007034;-0.06735374;-0.05581938,-0.100932;0.3650673;0.006503064,-0.2739889;0.2688743;0.03475633,-0.5198739;0.2260329;0.02043138,0.06795847;0.004639847;-0.04195376,0.08385234;-0.293024;-0.008136261,0.07031569;-0.5866185;0.05202236,0.07830669;-0.6162791;-0.007896956,-0.0738773;0.003468321;-0.03049779,-0.1065277;-0.2938277;-0.007066397,-0.1064141;-0.5893965;0.04430564,-0.1049946;-0.6169934;-0.01875538,0.01397941;0.3996366;0.007066665,0;0;0,0.007056069;0.1996049;0.01039678,0.01965266;0.4992818;0.01223898,0.1261941;0.3743342;-0.02420343,0.1715852;0.180416;-0.005890314,0.2171783;-0.06386176;-0.03327004,-0.09992003;0.3677099;0.003605356,-0.2668901;0.25775;0.009066277,-0.4840394;0.1338716;0.008475851,0.07026754;0.004033466;-0.03802898,0.08438581;-0.294031;-0.007073293,0.0707192;-0.5881631;0.05036828,0.08260158;-0.616971;-0.01003148,-0.07150837;0.004168757;-0.03562548,-0.1043849;-0.2929416;-0.0102368,-0.1043447;-0.5884656;0.04139239,-0.109663;-0.6123862;-0.02574524,0.01532811;0.3993961;0.01427549,11.80635
-0;0;0,0.006211917;0.1997877;0.006803481,0.01810203;0.499477;0.00320501,0.1229726;0.3722348;-0.03500024,0.1707112;0.1784759;-0.02163928,0.2007034;-0.06735374;-0.05581938,-0.100932;0.3650673;0.006503064,-0.2739889;0.2688743;0.03475633,-0.5198739;0.2260329;0.02043138,0.06795847;0.004639847;-0.04195376,0.08385234;-0.293024;-0.008136261,0.07031569;-0.5866185;0.05202236,0.07830669;-0.6162791;-0.007896956,-0.0738773;0.003468321;-0.03049779,-0.1065277;-0.2938277;-0.007066397,-0.1064141;-0.5893965;0.04430564,-0.1049946;-0.6169934;-0.01875538,0.01397941;0.3996366;0.007066665,0;0;0,0.007056069;0.1996049;0.01039678,0.01965266;0.4992818;0.01223898,0.1261941;0.3743342;-0.02420343,0.1715852;0.180416;-0.005890314,0.2171783;-0.06386176;-0.03327004,-0.09992003;0.3677099;0.003605356,-0.2668901;0.25775;0.009066277,-0.4840394;0.1338716;0.008475851,0.07026754;0.004033466;-0.03802898,0.08438581;-0.294031;-0.007073293,0.0707192;-0.5881631;0.05036828,0.08260158;-0.616971;-0.01003148,-0.07150837;0.004168757;-0.03562548,-0.1043849;-0.2929416;-0.0102368,-0.1043447;-0.5884656;0.04139239,-0.109663;-0.6123862;-0.02574524,0.01532811;0.3993961;0.01427549,11.81755
-0;0;0,0.006483187;0.1997794;0.006795757,0.01866769;0.4994579;0.003258524,0.1233593;0.3721016;-0.0351393,0.1704359;0.1781927;-0.02160645,0.2001875;-0.06766683;-0.0557813,-0.1005383;0.3653366;0.006489156,-0.2750661;0.2715923;0.03391196,-0.5222837;0.2366602;0.02113483,0.06783438;0.004572979;-0.04216141,0.08368391;-0.2930286;-0.007780135,0.06942235;-0.5865819;0.05241152,0.07801089;-0.6155266;-0.008366533,-0.07392364;0.003507391;-0.03038081,-0.106586;-0.2937968;-0.007070104,-0.1064424;-0.5893267;0.04452529,-0.1048074;-0.6170946;-0.01831959,0.01445863;0.3996201;0.007090842,0;0;0,0.007056069;0.1996049;0.01039678,0.01965266;0.4992818;0.01223898,0.1261941;0.3743342;-0.02420343,0.1715852;0.180416;-0.005890314,0.2171783;-0.06386176;-0.03327004,-0.09992003;0.3677099;0.003605356,-0.2668901;0.25775;0.009066277,-0.4840394;0.1338716;0.008475851,0.07026754;0.004033466;-0.03802898,0.08438581;-0.294031;-0.007073293,0.0707192;-0.5881631;0.05036828,0.08260158;-0.616971;-0.01003148,-0.07150837;0.004168757;-0.03562548,-0.1043849;-0.2929416;-0.0102368,-0.1043447;-0.5884656;0.04139239,-0.109663;-0.6123862;-0.02574524,0.01532811;0.3993961;0.01427549,11.83981
-0;0;0,0.006483187;0.1997794;0.006795757,0.01866769;0.4994579;0.003258524,0.1233593;0.3721016;-0.0351393,0.1704359;0.1781927;-0.02160645,0.2001875;-0.06766683;-0.0557813,-0.1005383;0.3653366;0.006489156,-0.2750661;0.2715923;0.03391196,-0.5222837;0.2366602;0.02113483,0.06783438;0.004572979;-0.04216141,0.08368391;-0.2930286;-0.007780135,0.06942235;-0.5865819;0.05241152,0.07801089;-0.6155266;-0.008366533,-0.07392364;0.003507391;-0.03038081,-0.106586;-0.2937968;-0.007070104,-0.1064424;-0.5893267;0.04452529,-0.1048074;-0.6170946;-0.01831959,0.01445863;0.3996201;0.007090842,0;0;0,0.007541671;0.1995992;0.01016307,0.02106095;0.4992381;0.01133032,0.1274321;0.374235;-0.0243102,0.1720564;0.1801189;-0.006210523,0.217631;-0.06419213;-0.03332258,-0.09904034;0.3681346;0.003664277,-0.267983;0.2612391;0.009298392,-0.4868196;0.1403696;0.01034404,0.07016578;0.00384463;-0.03823585,0.08471089;-0.2941495;-0.006804317,0.07094755;-0.5882317;0.05086907,0.08278864;-0.6170067;-0.009581655,-0.07157364;0.004300939;-0.03547836,-0.1040834;-0.2928344;-0.009910833,-0.104066;-0.5883646;0.04168317,-0.1093056;-0.6124253;-0.02530613,0.01639386;0.3993733;0.01361844,11.8513
-0;0;0,0.006792089;0.199773;0.006680229,0.01920252;0.4994419;0.003086606,0.1238096;0.3716989;-0.0351219,0.1706358;0.1777374;-0.02147522,0.1998658;-0.06814496;-0.0559351,-0.1001238;0.3655433;0.006480191,-0.2761975;0.2744803;0.03304302,-0.5236866;0.2412248;0.02107687,0.06781155;0.004583485;-0.04219698,0.08359905;-0.2929792;-0.007452264,0.06926016;-0.5865307;0.05273021,0.07856707;-0.6155736;-0.007813957,-0.07393923;0.003491626;-0.03034466,-0.1067222;-0.2937993;-0.007034417,-0.1064434;-0.5893446;0.04447197,-0.1179632;-0.5571508;-0.05325332,0.01493912;0.3996068;0.006930165,0;0;0,0.007541671;0.1995992;0.01016307,0.02106095;0.4992381;0.01133032,0.1274321;0.374235;-0.0243102,0.1720564;0.1801189;-0.006210523,0.217631;-0.06419213;-0.03332258,-0.09904034;0.3681346;0.003664277,-0.267983;0.2612391;0.009298392,-0.4868196;0.1403696;0.01034404,0.07016578;0.00384463;-0.03823585,0.08471089;-0.2941495;-0.006804317,0.07094755;-0.5882317;0.05086907,0.08278864;-0.6170067;-0.009581655,-0.07157364;0.004300939;-0.03547836,-0.1040834;-0.2928344;-0.009910833,-0.104066;-0.5883646;0.04168317,-0.1093056;-0.6124253;-0.02530613,0.01639386;0.3993733;0.01361844,11.87336
-0;0;0,0.007084805;0.1997642;0.006638094,0.02009324;0.4994062;0.002907667,0.1244427;0.3712382;-0.03506688,0.1707474;0.1771358;-0.02164456,0.1995424;-0.06881149;-0.05600664,-0.09948888;0.3656426;0.006477685,-0.2771693;0.277562;0.03239015,-0.5250994;0.2472585;0.02178919,0.06790497;0.004556528;-0.04204942,0.08376363;-0.293014;-0.00740464,0.06938946;-0.5865489;0.05285036,0.07916219;-0.6155247;-0.007708009,-0.07383179;0.003561581;-0.03059708,-0.1064657;-0.2937138;-0.006882995,-0.1061268;-0.5892417;0.04472274,-0.1175973;-0.5570506;-0.05300786,0.01561105;0.3995823;0.006793416,0;0;0,0.007541671;0.1995992;0.01016307,0.02106095;0.4992381;0.01133032,0.1274321;0.374235;-0.0243102,0.1720564;0.1801189;-0.006210523,0.217631;-0.06419213;-0.03332258,-0.09904034;0.3681346;0.003664277,-0.267983;0.2612391;0.009298392,-0.4868196;0.1403696;0.01034404,0.07016578;0.00384463;-0.03823585,0.08471089;-0.2941495;-0.006804317,0.07094755;-0.5882317;0.05086907,0.08278864;-0.6170067;-0.009581655,-0.07157364;0.004300939;-0.03547836,-0.1040834;-0.2928344;-0.009910833,-0.104066;-0.5883646;0.04168317,-0.1093056;-0.6124253;-0.02530613,0.01639386;0.3993733;0.01361844,11.89576
-0;0;0,0.007084805;0.1997642;0.006638094,0.02009324;0.4994062;0.002907667,0.1244427;0.3712382;-0.03506688,0.1707474;0.1771358;-0.02164456,0.1995424;-0.06881149;-0.05600664,-0.09948888;0.3656426;0.006477685,-0.2771693;0.277562;0.03239015,-0.5250994;0.2472585;0.02178919,0.06790497;0.004556528;-0.04204942,0.08376363;-0.293014;-0.00740464,0.06938946;-0.5865489;0.05285036,0.07916219;-0.6155247;-0.007708009,-0.07383179;0.003561581;-0.03059708,-0.1064657;-0.2937138;-0.006882995,-0.1061268;-0.5892417;0.04472274,-0.1175973;-0.5570506;-0.05300786,0.01561105;0.3995823;0.006793416,0;0;0,0.007679495;0.1995959;0.01012456,0.02120137;0.4992348;0.01133324,0.1276376;0.3742623;-0.02419491,0.1717339;0.1800444;-0.005893828,0.2171822;-0.06429696;-0.03294435,-0.09897154;0.3684264;0.003707076,-0.2692908;0.2637749;0.009984588,-0.4930797;0.1523517;0.01184029,0.07016804;0.003785118;-0.03823765,0.08486856;-0.2941836;-0.00663719,0.07114015;-0.5882571;0.05108893,0.0828737;-0.6170437;-0.009367563,-0.07156048;0.004343478;-0.03549974,-0.1039999;-0.2927943;-0.009870822,-0.1040125;-0.5882832;0.04195919,-0.1092658;-0.61266;-0.02467782,0.01654745;0.3993689;0.01360246,11.91798
-0;0;0,0.007319929;0.1997536;0.0067009,0.02046924;0.499391;0.003084698,0.1247915;0.3711072;-0.03483219,0.1709482;0.1769623;-0.02151516,0.1993296;-0.06902574;-0.05592986,-0.0992396;0.3659411;0.00663483,-0.2775552;0.2791377;0.03249449,-0.5256383;0.2500489;0.02207446,0.06795554;0.004519757;-0.04197161,0.08380862;-0.2930226;-0.007082872,0.06947564;-0.5865688;0.05312663,0.07925969;-0.6155902;-0.007370513,-0.07379457;0.00359399;-0.03068298,-0.1063548;-0.2936668;-0.006685188,-0.105949;-0.5892161;0.04479732,-0.1173605;-0.5570043;-0.05294394,0.01595243;0.3995671;0.006930104,0;0;0,0.007679495;0.1995959;0.01012456,0.02120137;0.4992348;0.01133324,0.1276376;0.3742623;-0.02419491,0.1717339;0.1800444;-0.005893828,0.2171822;-0.06429696;-0.03294435,-0.09897154;0.3684264;0.003707076,-0.2692908;0.2637749;0.009984588,-0.4930797;0.1523517;0.01184029,0.07016804;0.003785118;-0.03823765,0.08486856;-0.2941836;-0.00663719,0.07114015;-0.5882571;0.05108893,0.0828737;-0.6170437;-0.009367563,-0.07156048;0.004343478;-0.03549974,-0.1039999;-0.2927943;-0.009870822,-0.1040125;-0.5882832;0.04195919,-0.1092658;-0.61266;-0.02467782,0.01654745;0.3993689;0.01360246,11.94027
-0;0;0,0.007319929;0.1997536;0.0067009,0.02046924;0.499391;0.003084698,0.1247915;0.3711072;-0.03483219,0.1709482;0.1769623;-0.02151516,0.1993296;-0.06902574;-0.05592986,-0.0992396;0.3659411;0.00663483,-0.2775552;0.2791377;0.03249449,-0.5256383;0.2500489;0.02207446,0.06795554;0.004519757;-0.04197161,0.08380862;-0.2930226;-0.007082872,0.06947564;-0.5865688;0.05312663,0.07925969;-0.6155902;-0.007370513,-0.07379457;0.00359399;-0.03068298,-0.1063548;-0.2936668;-0.006685188,-0.105949;-0.5892161;0.04479732,-0.1173605;-0.5570043;-0.05294394,0.01595243;0.3995671;0.006930104,0;0;0,0.007679495;0.1995959;0.01012456,0.02120137;0.4992348;0.01133324,0.1276376;0.3742623;-0.02419491,0.1717339;0.1800444;-0.005893828,0.2171822;-0.06429696;-0.03294435,-0.09897154;0.3684264;0.003707076,-0.2692908;0.2637749;0.009984588,-0.4930797;0.1523517;0.01184029,0.07016804;0.003785118;-0.03823765,0.08486856;-0.2941836;-0.00663719,0.07114015;-0.5882571;0.05108893,0.0828737;-0.6170437;-0.009367563,-0.07156048;0.004343478;-0.03549974,-0.1039999;-0.2927943;-0.009870822,-0.1040125;-0.5882832;0.04195919,-0.1092658;-0.61266;-0.02467782,0.01654745;0.3993689;0.01360246,11.95163
-0;0;0,0.007700537;0.1997318;0.006922784,0.02119471;0.4993548;0.003405013,0.125306;0.3707358;-0.03451835,0.1710882;0.1765056;-0.02115395,0.1990018;-0.06955631;-0.05542313,-0.09873358;0.3662176;0.006949924,-0.2776047;0.2805753;0.03284465,-0.5262105;0.2565697;0.02194313,0.06780069;0.004383788;-0.04223564,0.08406068;-0.2930427;-0.006555378,0.06965064;-0.5865264;0.05393988,0.0793128;-0.6157329;-0.00633423,-0.07388703;0.003693809;-0.03044769,-0.1060924;-0.2935891;-0.006246148,-0.1057217;-0.5891219;0.04533066,-0.1171228;-0.5568919;-0.05241515,0.01654791;0.3995358;0.007221851,0;0;0,0.007884711;0.1995896;0.01009184,0.02140535;0.4992284;0.01142494,0.1279304;0.3743315;-0.02400867,0.1714417;0.1799746;-0.005783472,0.2169344;-0.06436396;-0.03278535,-0.09879964;0.3685574;0.003951737,-0.2705398;0.266288;0.01075599,-0.4952292;0.1567056;0.0132771,0.07017081;0.003732652;-0.03823773,0.08485223;-0.2942082;-0.006367601,0.07106221;-0.5882931;0.05128601,0.08295015;-0.6177262;-0.008287873,-0.07153516;0.004368193;-0.03554772,-0.104177;-0.2927238;-0.009646313,-0.1041759;-0.5881877;0.0423255,-0.1094507;-0.6130344;-0.02378155,0.01677381;0.3993604;0.01364468,11.97361
-0;0;0,0.007700537;0.1997318;0.006922784,0.02119471;0.4993548;0.003405013,0.125306;0.3707358;-0.03451835,0.1710882;0.1765056;-0.02115395,0.1990018;-0.06955631;-0.05542313,-0.09873358;0.3662176;0.006949924,-0.2776047;0.2805753;0.03284465,-0.5262105;0.2565697;0.02194313,0.06780069;0.004383788;-0.04223564,0.08406068;-0.2930427;-0.006555378,0.06965064;-0.5865264;0.05393988,0.0793128;-0.6157329;-0.00633423,-0.07388703;0.003693809;-0.03044769,-0.1060924;-0.2935891;-0.006246148,-0.1057217;-0.5891219;0.04533066,-0.1171228;-0.5568919;-0.05241515,0.01654791;0.3995358;0.007221851,0;0;0,0.007884711;0.1995896;0.01009184,0.02140535;0.4992284;0.01142494,0.1279304;0.3743315;-0.02400867,0.1714417;0.1799746;-0.005783472,0.2169344;-0.06436396;-0.03278535,-0.09879964;0.3685574;0.003951737,-0.2705398;0.266288;0.01075599,-0.4952292;0.1567056;0.0132771,0.07017081;0.003732652;-0.03823773,0.08485223;-0.2942082;-0.006367601,0.07106221;-0.5882931;0.05128601,0.08295015;-0.6177262;-0.008287873,-0.07153516;0.004368193;-0.03554772,-0.104177;-0.2927238;-0.009646313,-0.1041759;-0.5881877;0.0423255,-0.1094507;-0.6130344;-0.02378155,0.01677381;0.3993604;0.01364468,11.98499
-0;0;0,0.008033519;0.199714;0.007055815,0.02200367;0.4993171;0.003683959,0.1258682;0.3703872;-0.03427093,0.1710653;0.1760078;-0.02108479,0.1981139;-0.07008496;-0.05582275,-0.09825719;0.3667474;0.007208654,-0.2780462;0.2831351;0.03337901,-0.5269102;0.2625304;0.02145755,0.06788956;0.004318402;-0.04209938,0.08414868;-0.2930943;-0.00630397,0.06988496;-0.5865332;0.05444296,0.07921243;-0.6154723;-0.006233443,-0.07382338;0.003782275;-0.03059088,-0.1058148;-0.2934833;-0.005898634,-0.1055521;-0.5890268;0.04561859,-0.1169132;-0.5567844;-0.05213413,0.01718519;0.3995041;0.007444919,0;0;0,0.007884711;0.1995896;0.01009184,0.02140535;0.4992284;0.01142494,0.1279304;0.3743315;-0.02400867,0.1714417;0.1799746;-0.005783472,0.2169344;-0.06436396;-0.03278535,-0.09879964;0.3685574;0.003951737,-0.2705398;0.266288;0.01075599,-0.4952292;0.1567056;0.0132771,0.07017081;0.003732652;-0.03823773,0.08485223;-0.2942082;-0.006367601,0.07106221;-0.5882931;0.05128601,0.08295015;-0.6177262;-0.008287873,-0.07153516;0.004368193;-0.03554772,-0.104177;-0.2927238;-0.009646313,-0.1041759;-0.5881877;0.0423255,-0.1094507;-0.6130344;-0.02378155,0.01677381;0.3993604;0.01364468,11.99642
-0;0;0,0.008033519;0.199714;0.007055815,0.02200367;0.4993171;0.003683959,0.1258682;0.3703872;-0.03427093,0.1710653;0.1760078;-0.02108479,0.1981139;-0.07008496;-0.05582275,-0.09825719;0.3667474;0.007208654,-0.2780462;0.2831351;0.03337901,-0.5269102;0.2625304;0.02145755,0.06788956;0.004318402;-0.04209938,0.08414868;-0.2930943;-0.00630397,0.06988496;-0.5865332;0.05444296,0.07921243;-0.6154723;-0.006233443,-0.07382338;0.003782275;-0.03059088,-0.1058148;-0.2934833;-0.005898634,-0.1055521;-0.5890268;0.04561859,-0.1169132;-0.5567844;-0.05213413,0.01718519;0.3995041;0.007444919,0;0;0,0.008055381;0.1995895;0.009956924,0.02178028;0.4992199;0.01107461,0.128319;0.374255;-0.02401393,0.1716527;0.1798672;-0.005695574,0.217021;-0.06449822;-0.03266335,-0.09858097;0.3688425;0.00388407,-0.2727202;0.2708094;0.01194874,-0.4984434;0.1634186;0.01598403,0.07011261;0.003702088;-0.03834732,0.08493795;-0.2942193;-0.006361928,0.07105991;-0.588257;0.05151112,0.08291929;-0.6176733;-0.008090831,-0.07158304;0.004373303;-0.03545056,-0.1040988;-0.2927297;-0.009517517,-0.1041434;-0.5881723;0.04257529,-0.1094197;-0.6129293;-0.02363309,0.0170866;0.3993564;0.0133661,12.00764
-0;0;0,0.008293282;0.1996961;0.007260195,0.02235301;0.4992978;0.004178139,0.1261764;0.3702196;-0.03383819,0.171035;0.175746;-0.0208872,0.1977457;-0.07035245;-0.05584551,-0.09794299;0.3668069;0.007676324,-0.2790214;0.2857321;0.03292464,-0.5280579;0.2665746;0.02225753,0.06797016;0.004247227;-0.04197641,0.08418579;-0.2931515;-0.006044719,0.07013669;-0.5864941;0.05521479,0.07959179;-0.615308;-0.005604297,-0.07376488;0.00386528;-0.03072135,-0.105547;-0.2933495;-0.005161971,-0.1053085;-0.588941;0.04607879,-0.1166771;-0.5566768;-0.05167701,0.01752259;0.3994821;0.007851806,0;0;0,0.008055381;0.1995895;0.009956924,0.02178028;0.4992199;0.01107461,0.128319;0.374255;-0.02401393,0.1716527;0.1798672;-0.005695574,0.217021;-0.06449822;-0.03266335,-0.09858097;0.3688425;0.00388407,-0.2727202;0.2708094;0.01194874,-0.4984434;0.1634186;0.01598403,0.07011261;0.003702088;-0.03834732,0.08493795;-0.2942193;-0.006361928,0.07105991;-0.588257;0.05151112,0.08291929;-0.6176733;-0.008090831,-0.07158304;0.004373303;-0.03545056,-0.1040988;-0.2927297;-0.009517517,-0.1041434;-0.5881723;0.04257529,-0.1094197;-0.6129293;-0.02363309,0.0170866;0.3993564;0.0133661,12.02941
-0;0;0,0.008293282;0.1996961;0.007260195,0.02235301;0.4992978;0.004178139,0.1261764;0.3702196;-0.03383819,0.171035;0.175746;-0.0208872,0.1977457;-0.07035245;-0.05584551,-0.09794299;0.3668069;0.007676324,-0.2790214;0.2857321;0.03292464,-0.5280579;0.2665746;0.02225753,0.06797016;0.004247227;-0.04197641,0.08418579;-0.2931515;-0.006044719,0.07013669;-0.5864941;0.05521479,0.07959179;-0.615308;-0.005604297,-0.07376488;0.00386528;-0.03072135,-0.105547;-0.2933495;-0.005161971,-0.1053085;-0.588941;0.04607879,-0.1166771;-0.5566768;-0.05167701,0.01752259;0.3994821;0.007851806,0;0;0,0.008055381;0.1995895;0.009956924,0.02178028;0.4992199;0.01107461,0.128319;0.374255;-0.02401393,0.1716527;0.1798672;-0.005695574,0.217021;-0.06449822;-0.03266335,-0.09858097;0.3688425;0.00388407,-0.2727202;0.2708094;0.01194874,-0.4984434;0.1634186;0.01598403,0.07011261;0.003702088;-0.03834732,0.08493795;-0.2942193;-0.006361928,0.07105991;-0.588257;0.05151112,0.08291929;-0.6176733;-0.008090831,-0.07158304;0.004373303;-0.03545056,-0.1040988;-0.2927297;-0.009517517,-0.1041434;-0.5881723;0.04257529,-0.1094197;-0.6129293;-0.02363309,0.0170866;0.3993564;0.0133661,12.0409
-0;0;0,0.008642541;0.1996742;0.007452862,0.02323609;0.4992518;0.004483169,0.1268079;0.3700068;-0.03354632,0.1713188;0.1754525;-0.02060716,0.1978167;-0.07064702;-0.05571974,-0.09734292;0.3670042;0.007877243,-0.2791418;0.2877631;0.03376156,-0.5286963;0.2766844;0.02377021,0.0679407;0.004131801;-0.04203557,0.08422071;-0.29321;-0.005665001,0.07051232;-0.5865595;0.05563877,0.07975046;-0.6154529;-0.005110603,-0.07380199;0.003971937;-0.03061844,-0.1052112;-0.2932748;-0.004969385,-0.1049676;-0.5888181;0.04654863,-0.116282;-0.5565355;-0.05121677,0.01818861;0.3994451;0.008109684,0;0;0,0.008356619;0.1995722;0.01005578,0.0223451;0.4991896;0.01135898,0.1288285;0.3738755;-0.02348093,0.1718481;0.179382;-0.005547563,0.2170801;-0.06503953;-0.03223394,-0.09822239;0.3691905;0.004461944,-0.2733556;0.2730093;0.01326823,-0.5027729;0.1738683;0.0194935,0.07013202;0.003695298;-0.03831246,0.08482233;-0.2941445;-0.005514976,0.0709317;-0.5882251;0.05213592,0.0826702;-0.6176644;-0.007459436,-0.07158447;0.004354028;-0.03545004,-0.1040977;-0.2926883;-0.008827196,-0.1041927;-0.5881085;0.04339223,-0.109766;-0.6139657;-0.02152795,0.01757222;0.3993285;0.01358918,12.06295
-0;0;0,0.008642541;0.1996742;0.007452862,0.02323609;0.4992518;0.004483169,0.1268079;0.3700068;-0.03354632,0.1713188;0.1754525;-0.02060716,0.1978167;-0.07064702;-0.05571974,-0.09734292;0.3670042;0.007877243,-0.2791418;0.2877631;0.03376156,-0.5286963;0.2766844;0.02377021,0.0679407;0.004131801;-0.04203557,0.08422071;-0.29321;-0.005665001,0.07051232;-0.5865595;0.05563877,0.07975046;-0.6154529;-0.005110603,-0.07380199;0.003971937;-0.03061844,-0.1052112;-0.2932748;-0.004969385,-0.1049676;-0.5888181;0.04654863,-0.116282;-0.5565355;-0.05121677,0.01818861;0.3994451;0.008109684,0;0;0,0.008356619;0.1995722;0.01005578,0.0223451;0.4991896;0.01135898,0.1288285;0.3738755;-0.02348093,0.1718481;0.179382;-0.005547563,0.2170801;-0.06503953;-0.03223394,-0.09822239;0.3691905;0.004461944,-0.2733556;0.2730093;0.01326823,-0.5027729;0.1738683;0.0194935,0.07013202;0.003695298;-0.03831246,0.08482233;-0.2941445;-0.005514976,0.0709317;-0.5882251;0.05213592,0.0826702;-0.6176644;-0.007459436,-0.07158447;0.004354028;-0.03545004,-0.1040977;-0.2926883;-0.008827196,-0.1041927;-0.5881085;0.04339223,-0.109766;-0.6139657;-0.02152795,0.01757222;0.3993285;0.01358918,12.07436
-0;0;0,0.008818775;0.1996637;0.007526805,0.02348977;0.4992391;0.004729605,0.1270522;0.3699555;-0.03332951,0.1711349;0.1752988;-0.0204648,0.1971788;-0.07075322;-0.05624326,-0.09719483;0.367339;0.007869411,-0.2798251;0.2901551;0.03411507,-0.5294902;0.2811839;0.02479631,0.06791555;0.004051575;-0.042084,0.08422946;-0.2932678;-0.005545858,0.07064664;-0.5865735;0.05599532,0.07918505;-0.6148146;-0.005692787,-0.07383283;0.004042928;-0.03053469,-0.1051107;-0.2932033;-0.004720662,-0.1049558;-0.5887222;0.04693732,-0.1161876;-0.5564294;-0.05083947,0.01843353;0.3994309;0.008302004,0;0;0,0.008356619;0.1995722;0.01005578,0.0223451;0.4991896;0.01135898,0.1288285;0.3738755;-0.02348093,0.1718481;0.179382;-0.005547563,0.2170801;-0.06503953;-0.03223394,-0.09822239;0.3691905;0.004461944,-0.2733556;0.2730093;0.01326823,-0.5027729;0.1738683;0.0194935,0.07013202;0.003695298;-0.03831246,0.08482233;-0.2941445;-0.005514976,0.0709317;-0.5882251;0.05213592,0.0826702;-0.6176644;-0.007459436,-0.07158447;0.004354028;-0.03545004,-0.1040977;-0.2926883;-0.008827196,-0.1041927;-0.5881085;0.04339223,-0.109766;-0.6139657;-0.02152795,0.01757222;0.3993285;0.01358918,12.09628
-0;0;0,0.008818775;0.1996637;0.007526805,0.02348977;0.4992391;0.004729605,0.1270522;0.3699555;-0.03332951,0.1711349;0.1752988;-0.0204648,0.1971788;-0.07075322;-0.05624326,-0.09719483;0.367339;0.007869411,-0.2798251;0.2901551;0.03411507,-0.5294902;0.2811839;0.02479631,0.06791555;0.004051575;-0.042084,0.08422946;-0.2932678;-0.005545858,0.07064664;-0.5865735;0.05599532,0.07918505;-0.6148146;-0.005692787,-0.07383283;0.004042928;-0.03053469,-0.1051107;-0.2932033;-0.004720662,-0.1049558;-0.5887222;0.04693732,-0.1161876;-0.5564294;-0.05083947,0.01843353;0.3994309;0.008302004,0;0;0,0.008548548;0.1995666;0.01000469,0.02277628;0.4991731;0.01126161,0.1291517;0.3736754;-0.02353146,0.1719285;0.1791569;-0.005291089,0.2168906;-0.06532769;-0.03185575,-0.09796094;0.3695439;0.004360739,-0.274549;0.2761966;0.01450584,-0.5055685;0.1808563;0.02084745,0.07006557;0.00366972;-0.03843628,0.08494786;-0.2941424;-0.005474545,0.07096699;-0.5881879;0.05233336,0.0827233;-0.617584;-0.007315956,-0.07164036;0.004358806;-0.03533639,-0.1040828;-0.2926882;-0.008679533,-0.1041215;-0.5880848;0.04367355,-0.1096426;-0.6147113;-0.0203412,0.01792705;0.399316;0.01350412,12.119
-0;0;0,0.009053127;0.1996512;0.007577931,0.02402178;0.4992126;0.004844638,0.1274038;0.3695314;-0.03316473,0.1710085;0.1747586;-0.02042841,0.1967001;-0.07133985;-0.05614235,-0.0968432;0.3676139;0.008012602,-0.2805554;0.292989;0.03410798,-0.5303534;0.2867672;0.02621931,0.06797224;0.003974494;-0.04199974,0.0842723;-0.2933264;-0.005305544,0.0710203;-0.5866853;0.05605384,0.07921384;-0.6153741;-0.005109388,-0.07378132;0.004145958;-0.03064519,-0.1048974;-0.2931212;-0.004876982,-0.1048543;-0.588572;0.04716957,-0.116061;-0.5562841;-0.05060923,0.01886742;0.3994086;0.008394865,0;0;0,0.008548548;0.1995666;0.01000469,0.02277628;0.4991731;0.01126161,0.1291517;0.3736754;-0.02353146,0.1719285;0.1791569;-0.005291089,0.2168906;-0.06532769;-0.03185575,-0.09796094;0.3695439;0.004360739,-0.274549;0.2761966;0.01450584,-0.5055685;0.1808563;0.02084745,0.07006557;0.00366972;-0.03843628,0.08494786;-0.2941424;-0.005474545,0.07096699;-0.5881879;0.05233336,0.0827233;-0.617584;-0.007315956,-0.07164036;0.004358806;-0.03533639,-0.1040828;-0.2926882;-0.008679533,-0.1041215;-0.5880848;0.04367355,-0.1096426;-0.6147113;-0.0203412,0.01792705;0.399316;0.01350412,12.13051
-0;0;0,0.009053127;0.1996512;0.007577931,0.02402178;0.4992126;0.004844638,0.1274038;0.3695314;-0.03316473,0.1710085;0.1747586;-0.02042841,0.1967001;-0.07133985;-0.05614235,-0.0968432;0.3676139;0.008012602,-0.2805554;0.292989;0.03410798,-0.5303534;0.2867672;0.02621931,0.06797224;0.003974494;-0.04199974,0.0842723;-0.2933264;-0.005305544,0.0710203;-0.5866853;0.05605384,0.07921384;-0.6153741;-0.005109388,-0.07378132;0.004145958;-0.03064519,-0.1048974;-0.2931212;-0.004876982,-0.1048543;-0.588572;0.04716957,-0.116061;-0.5562841;-0.05060923,0.01886742;0.3994086;0.008394865,0;0;0,0.008548548;0.1995666;0.01000469,0.02277628;0.4991731;0.01126161,0.1291517;0.3736754;-0.02353146,0.1719285;0.1791569;-0.005291089,0.2168906;-0.06532769;-0.03185575,-0.09796094;0.3695439;0.004360739,-0.274549;0.2761966;0.01450584,-0.5055685;0.1808563;0.02084745,0.07006557;0.00366972;-0.03843628,0.08494786;-0.2941424;-0.005474545,0.07096699;-0.5881879;0.05233336,0.0827233;-0.617584;-0.007315956,-0.07164036;0.004358806;-0.03533639,-0.1040828;-0.2926882;-0.008679533,-0.1041215;-0.5880848;0.04367355,-0.1096426;-0.6147113;-0.0203412,0.01792705;0.399316;0.01350412,12.15238
-0;0;0,0.009334588;0.1996333;0.007707698,0.0247082;0.4991758;0.005124635,0.1278983;0.3691791;-0.03281468,0.1710296;0.1743042;-0.02002984,0.1964074;-0.07173601;-0.05636441,-0.09642278;0.3680002;0.008114568,-0.2810752;0.2960982;0.03519906,-0.5309608;0.2923153;0.02864998,0.06793032;0.003885721;-0.04207579,0.08426532;-0.2933833;-0.005139176,0.07124075;-0.5867028;0.0564566,0.07962161;-0.6150614;-0.005103841,-0.07378819;0.004237155;-0.03061616,-0.1046494;-0.2930462;-0.004728289,-0.1046367;-0.5884578;0.04754056,-0.1157518;-0.5561567;-0.05025107,0.01940121;0.3993778;0.008614941,0;0;0,0.008824592;0.1995519;0.01005884,0.02345731;0.4991388;0.01130997,0.129603;0.3735328;-0.02364374,0.1722155;0.179006;-0.005109636,0.2170931;-0.06549948;-0.03162451,-0.09751312;0.3697811;0.004634865,-0.2751397;0.2785521;0.01586284,-0.5078739;0.1875626;0.02332821,0.07003352;0.003555383;-0.03850539,0.08506933;-0.2941988;-0.005092878,0.07106221;-0.588263;0.05261325,0.08387619;-0.61779;-0.006642692,-0.07167336;0.004459051;-0.03525685,-0.1038455;-0.2926197;-0.008626791,-0.1042037;-0.5879229;0.04424939,-0.1088471;-0.6167657;-0.01708782,0.01845973;0.399289;0.01355552,12.16452
-0;0;0,0.009334588;0.1996333;0.007707698,0.0247082;0.4991758;0.005124635,0.1278983;0.3691791;-0.03281468,0.1710296;0.1743042;-0.02002984,0.1964074;-0.07173601;-0.05636441,-0.09642278;0.3680002;0.008114568,-0.2810752;0.2960982;0.03519906,-0.5309608;0.2923153;0.02864998,0.06793032;0.003885721;-0.04207579,0.08426532;-0.2933833;-0.005139176,0.07124075;-0.5867028;0.0564566,0.07962161;-0.6150614;-0.005103841,-0.07378819;0.004237155;-0.03061616,-0.1046494;-0.2930462;-0.004728289,-0.1046367;-0.5884578;0.04754056,-0.1157518;-0.5561567;-0.05025107,0.01940121;0.3993778;0.008614941,0;0;0,0.008824592;0.1995519;0.01005884,0.02345731;0.4991388;0.01130997,0.129603;0.3735328;-0.02364374,0.1722155;0.179006;-0.005109636,0.2170931;-0.06549948;-0.03162451,-0.09751312;0.3697811;0.004634865,-0.2751397;0.2785521;0.01586284,-0.5078739;0.1875626;0.02332821,0.07003352;0.003555383;-0.03850539,0.08506933;-0.2941988;-0.005092878,0.07106221;-0.588263;0.05261325,0.08387619;-0.61779;-0.006642692,-0.07167336;0.004459051;-0.03525685,-0.1038455;-0.2926197;-0.008626791,-0.1042037;-0.5879229;0.04424939,-0.1088471;-0.6167657;-0.01708782,0.01845973;0.399289;0.01355552,12.1858
-0;0;0,0.009694874;0.1996038;0.008019836,0.02525932;0.4991378;0.005716886,0.1283887;0.3692592;-0.03240555,0.1712322;0.1743158;-0.01969803,0.1963688;-0.07176204;-0.05594536,-0.09598204;0.3681895;0.008544883,-0.2813461;0.2982585;0.03592758,-0.5312635;0.2961969;0.02983788,0.06801342;0.00374651;-0.041954,0.08461832;-0.293445;-0.004517477,0.07171474;-0.5867368;0.05723547,0.08024399;-0.6152789;-0.004070196,-0.07372284;0.004405247;-0.03074959,-0.1040401;-0.2929153;-0.004646251,-0.1041347;-0.5882473;0.04806975,-0.1152511;-0.555918;-0.04972683,0.01990277;0.39934;0.009139114,0;0;0,0.008824592;0.1995519;0.01005884,0.02345731;0.4991388;0.01130997,0.129603;0.3735328;-0.02364374,0.1722155;0.179006;-0.005109636,0.2170931;-0.06549948;-0.03162451,-0.09751312;0.3697811;0.004634865,-0.2751397;0.2785521;0.01586284,-0.5078739;0.1875626;0.02332821,0.07003352;0.003555383;-0.03850539,0.08506933;-0.2941988;-0.005092878,0.07106221;-0.588263;0.05261325,0.08387619;-0.61779;-0.006642692,-0.07167336;0.004459051;-0.03525685,-0.1038455;-0.2926197;-0.008626791,-0.1042037;-0.5879229;0.04424939,-0.1088471;-0.6167657;-0.01708782,0.01845973;0.399289;0.01355552,12.19729
-0;0;0,0.009694874;0.1996038;0.008019836,0.02525932;0.4991378;0.005716886,0.1283887;0.3692592;-0.03240555,0.1712322;0.1743158;-0.01969803,0.1963688;-0.07176204;-0.05594536,-0.09598204;0.3681895;0.008544883,-0.2813461;0.2982585;0.03592758,-0.5312635;0.2961969;0.02983788,0.06801342;0.00374651;-0.041954,0.08461832;-0.293445;-0.004517477,0.07171474;-0.5867368;0.05723547,0.08024399;-0.6152789;-0.004070196,-0.07372284;0.004405247;-0.03074959,-0.1040401;-0.2929153;-0.004646251,-0.1041347;-0.5882473;0.04806975,-0.1152511;-0.555918;-0.04972683,0.01990277;0.39934;0.009139114,0;0;0,0.009245276;0.199534;0.01003532,0.02444143;0.4990931;0.01119378,0.1302219;0.3731527;-0.02400345,0.1730932;0.1787126;-0.005159056,0.2174975;-0.06595887;-0.03092933,-0.09682271;0.3700003;0.005066733,-0.2757024;0.2813275;0.01686497,-0.5094729;0.1930613;0.02463832,0.06981767;0.003545552;-0.0388963,0.08509237;-0.294084;-0.004496992,0.07108077;-0.5880895;0.05350723,0.08359613;-0.6170559;-0.006556626,-0.07184523;0.004445729;-0.03490699,-0.1036231;-0.2926833;-0.008364936,-0.1040403;-0.5879655;0.04462849,-0.1114435;-0.5553457;-0.05357091,0.01925286;0.3992539;0.01347456,12.21949
-0;0;0,0.01004253;0.1995805;0.008172048,0.02597749;0.499096;0.006065494,0.1290181;0.3692145;-0.03203196,0.1716443;0.1741974;-0.01972978,0.1966919;-0.07194711;-0.05558358,-0.09545562;0.3684262;0.009105006,-0.2813896;0.3003117;0.03719355,-0.5312789;0.3039791;0.0307207,0.06782551;0.003616451;-0.04226843,0.0847194;-0.2934416;-0.003912963,0.07124524;-0.5863932;0.05931494,0.07999378;-0.6128441;-0.004549958,-0.07385276;0.004498527;-0.03042255,-0.1039004;-0.2928543;-0.004375847,-0.1040709;-0.5881463;0.04856376,-0.1152118;-0.5558106;-0.04923119,0.02050357;0.3993027;0.009432331,0;0;0,0.009245276;0.199534;0.01003532,0.02444143;0.4990931;0.01119378,0.1302219;0.3731527;-0.02400345,0.1730932;0.1787126;-0.005159056,0.2174975;-0.06595887;-0.03092933,-0.09682271;0.3700003;0.005066733,-0.2757024;0.2813275;0.01686497,-0.5094729;0.1930613;0.02463832,0.06981767;0.003545552;-0.0388963,0.08509237;-0.294084;-0.004496992,0.07108077;-0.5880895;0.05350723,0.08359613;-0.6170559;-0.006556626,-0.07184523;0.004445729;-0.03490699,-0.1036231;-0.2926833;-0.008364936,-0.1040403;-0.5879655;0.04462849,-0.1114435;-0.5553457;-0.05357091,0.01925286;0.3992539;0.01347456,12.23088
-0;0;0,0.01004253;0.1995805;0.008172048,0.02597749;0.499096;0.006065494,0.1290181;0.3692145;-0.03203196,0.1716443;0.1741974;-0.01972978,0.1966919;-0.07194711;-0.05558358,-0.09545562;0.3684262;0.009105006,-0.2813896;0.3003117;0.03719355,-0.5312789;0.3039791;0.0307207,0.06782551;0.003616451;-0.04226843,0.0847194;-0.2934416;-0.003912963,0.07124524;-0.5863932;0.05931494,0.07999378;-0.6128441;-0.004549958,-0.07385276;0.004498527;-0.03042255,-0.1039004;-0.2928543;-0.004375847,-0.1040709;-0.5881463;0.04856376,-0.1152118;-0.5558106;-0.04923119,0.02050357;0.3993027;0.009432331,0;0;0,0.009245276;0.199534;0.01003532,0.02444143;0.4990931;0.01119378,0.1302219;0.3731527;-0.02400345,0.1730932;0.1787126;-0.005159056,0.2174975;-0.06595887;-0.03092933,-0.09682271;0.3700003;0.005066733,-0.2757024;0.2813275;0.01686497,-0.5094729;0.1930613;0.02463832,0.06981767;0.003545552;-0.0388963,0.08509237;-0.294084;-0.004496992,0.07108077;-0.5880895;0.05350723,0.08359613;-0.6170559;-0.006556626,-0.07184523;0.004445729;-0.03490699,-0.1036231;-0.2926833;-0.008364936,-0.1040403;-0.5879655;0.04462849,-0.1114435;-0.5553457;-0.05357091,0.01925286;0.3992539;0.01347456,12.25293
-0;0;0,0.01017979;0.1995782;0.008057876,0.02627991;0.4990847;0.005902479,0.1292171;0.3689379;-0.03214931,0.1714799;0.1738573;-0.01960234,0.1959093;-0.07231054;-0.05572122,-0.09525718;0.3686507;0.009284376,-0.2816862;0.3020855;0.03780295,-0.5314693;0.3112373;0.03284423,0.0677973;0.00349578;-0.04232381,0.08489016;-0.293529;-0.003799722,0.07164733;-0.5864962;0.05940529,0.08016808;-0.6133844;-0.003963515,-0.07385532;0.004622058;-0.03039783,-0.1039129;-0.2927383;-0.00444819,-0.1041415;-0.5879611;0.04887567,-0.1051198;-0.6161371;-0.0134746,0.02076429;0.3992941;0.00928116,0;0;0,0.009444979;0.1995348;0.009831846,0.02494181;0.4990795;0.01066379,0.1306693;0.3728423;-0.02408509,0.1734328;0.1783762;-0.005265223,0.2176445;-0.06633508;-0.03098949,-0.09649139;0.3701657;0.005101115,-0.2776033;0.2863079;0.01799913,-0.5121097;0.2000871;0.02652627,0.06976715;0.003491173;-0.03899173,0.08506147;-0.2941534;-0.004730839,0.07107327;-0.5881234;0.05345785,0.08361787;-0.6171737;-0.006489471,-0.07187734;0.00448976;-0.03483519,-0.1035768;-0.2926614;-0.008446455,-0.1040726;-0.5879258;0.04464506,-0.1114715;-0.5553223;-0.05355176,0.01965914;0.3992478;0.01305645,12.26413
-0;0;0,0.01017979;0.1995782;0.008057876,0.02627991;0.4990847;0.005902479,0.1292171;0.3689379;-0.03214931,0.1714799;0.1738573;-0.01960234,0.1959093;-0.07231054;-0.05572122,-0.09525718;0.3686507;0.009284376,-0.2816862;0.3020855;0.03780295,-0.5314693;0.3112373;0.03284423,0.0677973;0.00349578;-0.04232381,0.08489016;-0.293529;-0.003799722,0.07164733;-0.5864962;0.05940529,0.08016808;-0.6133844;-0.003963515,-0.07385532;0.004622058;-0.03039783,-0.1039129;-0.2927383;-0.00444819,-0.1041415;-0.5879611;0.04887567,-0.1051198;-0.6161371;-0.0134746,0.02076429;0.3992941;0.00928116,0;0;0,0.009444979;0.1995348;0.009831846,0.02494181;0.4990795;0.01066379,0.1306693;0.3728423;-0.02408509,0.1734328;0.1783762;-0.005265223,0.2176445;-0.06633508;-0.03098949,-0.09649139;0.3701657;0.005101115,-0.2776033;0.2863079;0.01799913,-0.5121097;0.2000871;0.02652627,0.06976715;0.003491173;-0.03899173,0.08506147;-0.2941534;-0.004730839,0.07107327;-0.5881234;0.05345785,0.08361787;-0.6171737;-0.006489471,-0.07187734;0.00448976;-0.03483519,-0.1035768;-0.2926614;-0.008446455,-0.1040726;-0.5879258;0.04464506,-0.1114715;-0.5553223;-0.05355176,0.01965914;0.3992478;0.01305645,12.27538
-0;0;0,0.01046579;0.1995599;0.008142596,0.02704625;0.4990406;0.006033516,0.1298079;0.3688386;-0.03196982,0.1716708;0.173673;-0.01940522,0.1957716;-0.07240723;-0.05633318,-0.09475389;0.3689271;0.009661552,-0.2816865;0.3040507;0.03876935,-0.5313398;0.3162979;0.03394636,0.06767532;0.003427637;-0.04252413,0.08487742;-0.2936007;-0.004075937,0.07175467;-0.5864187;0.05984109,0.08062769;-0.6135461;-0.003187828,-0.0739224;0.004682112;-0.0302251,-0.1038952;-0.2926762;-0.004155274,-0.1040716;-0.5878626;0.04937032,-0.1049825;-0.6162253;-0.01274615,0.02134893;0.3992597;0.009396967,0;0;0,0.009444979;0.1995348;0.009831846,0.02494181;0.4990795;0.01066379,0.1306693;0.3728423;-0.02408509,0.1734328;0.1783762;-0.005265223,0.2176445;-0.06633508;-0.03098949,-0.09649139;0.3701657;0.005101115,-0.2776033;0.2863079;0.01799913,-0.5121097;0.2000871;0.02652627,0.06976715;0.003491173;-0.03899173,0.08506147;-0.2941534;-0.004730839,0.07107327;-0.5881234;0.05345785,0.08361787;-0.6171737;-0.006489471,-0.07187734;0.00448976;-0.03483519,-0.1035768;-0.2926614;-0.008446455,-0.1040726;-0.5879258;0.04464506,-0.1114715;-0.5553223;-0.05355176,0.01965914;0.3992478;0.01305645,12.29907
-0;0;0,0.01046579;0.1995599;0.008142596,0.02704625;0.4990406;0.006033516,0.1298079;0.3688386;-0.03196982,0.1716708;0.173673;-0.01940522,0.1957716;-0.07240723;-0.05633318,-0.09475389;0.3689271;0.009661552,-0.2816865;0.3040507;0.03876935,-0.5313398;0.3162979;0.03394636,0.06767532;0.003427637;-0.04252413,0.08487742;-0.2936007;-0.004075937,0.07175467;-0.5864187;0.05984109,0.08062769;-0.6135461;-0.003187828,-0.0739224;0.004682112;-0.0302251,-0.1038952;-0.2926762;-0.004155274,-0.1040716;-0.5878626;0.04937032,-0.1049825;-0.6162253;-0.01274615,0.02134893;0.3992597;0.009396967,0;0;0,0.009526796;0.1995336;0.009776302,0.02502945;0.4990781;0.01060938,0.1306588;0.3727632;-0.0244036,0.1733951;0.1783243;-0.005242934,0.2173833;-0.0664313;-0.030928,-0.09650675;0.3705657;0.005204021,-0.2785619;0.2888972;0.0188479,-0.5149642;0.2079991;0.02718384,0.06966887;0.003412205;-0.03917403,0.085031;-0.2942266;-0.004893735,0.07110125;-0.5881202;0.05369417,0.08373996;-0.6177262;-0.005493205,-0.07194187;0.004553542;-0.03469341,-0.103627;-0.2925979;-0.008291846,-0.104036;-0.5877905;0.04519797,-0.111542;-0.5551843;-0.05299123,0.01975456;0.3992459;0.01299852,12.32004
-0;0;0,0.01056123;0.1995596;0.00802782,0.02715148;0.4990405;0.005983207,0.1300852;0.3687635;-0.03159451,0.1717151;0.1735374;-0.0191959,0.1954206;-0.07252187;-0.0565172,-0.09473072;0.3693247;0.01006455,-0.2828576;0.3084637;0.040135,-0.5324863;0.3215767;0.03645112,0.06759588;0.003417663;-0.04265111,0.08461586;-0.2935548;-0.003693976,0.07154529;-0.5863521;0.06032912,0.08083144;-0.6128668;-0.00338316,-0.0739994;0.004687185;-0.03003531,-0.1042745;-0.2926289;-0.003832543,-0.1043546;-0.587718;0.05022706,-0.1043906;-0.6164343;-0.01144736,0.02147369;0.3992575;0.009315891,0;0;0,0.009526796;0.1995336;0.009776302,0.02502945;0.4990781;0.01060938,0.1306588;0.3727632;-0.0244036,0.1733951;0.1783243;-0.005242934,0.2173833;-0.0664313;-0.030928,-0.09650675;0.3705657;0.005204021,-0.2785619;0.2888972;0.0188479,-0.5149642;0.2079991;0.02718384,0.06966887;0.003412205;-0.03917403,0.085031;-0.2942266;-0.004893735,0.07110125;-0.5881202;0.05369417,0.08373996;-0.6177262;-0.005493205,-0.07194187;0.004553542;-0.03469341,-0.103627;-0.2925979;-0.008291846,-0.104036;-0.5877905;0.04519797,-0.111542;-0.5551843;-0.05299123,0.01975456;0.3992459;0.01299852,12.33262
-0;0;0,0.01056123;0.1995596;0.00802782,0.02715148;0.4990405;0.005983207,0.1300852;0.3687635;-0.03159451,0.1717151;0.1735374;-0.0191959,0.1954206;-0.07252187;-0.0565172,-0.09473072;0.3693247;0.01006455,-0.2828576;0.3084637;0.040135,-0.5324863;0.3215767;0.03645112,0.06759588;0.003417663;-0.04265111,0.08461586;-0.2935548;-0.003693976,0.07154529;-0.5863521;0.06032912,0.08083144;-0.6128668;-0.00338316,-0.0739994;0.004687185;-0.03003531,-0.1042745;-0.2926289;-0.003832543,-0.1043546;-0.587718;0.05022706,-0.1043906;-0.6164343;-0.01144736,0.02147369;0.3992575;0.009315891,0;0;0,0.009526796;0.1995336;0.009776302,0.02502945;0.4990781;0.01060938,0.1306588;0.3727632;-0.0244036,0.1733951;0.1783243;-0.005242934,0.2173833;-0.0664313;-0.030928,-0.09650675;0.3705657;0.005204021,-0.2785619;0.2888972;0.0188479,-0.5149642;0.2079991;0.02718384,0.06966887;0.003412205;-0.03917403,0.085031;-0.2942266;-0.004893735,0.07110125;-0.5881202;0.05369417,0.08373996;-0.6177262;-0.005493205,-0.07194187;0.004553542;-0.03469341,-0.103627;-0.2925979;-0.008291846,-0.104036;-0.5877905;0.04519797,-0.111542;-0.5551843;-0.05299123,0.01975456;0.3992459;0.01299852,12.35326
-0;0;0,0.01067181;0.1995466;0.008201971,0.02738247;0.4990219;0.006305585,0.1302274;0.3686963;-0.03138434,0.1715321;0.1733921;-0.01912782,0.1947793;-0.07265866;-0.05679172,-0.09462869;0.369608;0.01028161,-0.2831277;0.3104598;0.04142024,-0.532579;0.3267483;0.03846943,0.0675071;0.003441527;-0.04278957,0.0847341;-0.2935379;-0.003976073,0.07170805;-0.5862483;0.06045182,0.08106562;-0.6129177;-0.003063869,-0.07404067;0.004672027;-0.02993579,-0.1043659;-0.2926257;-0.003583878,-0.1044715;-0.5876744;0.050696,-0.1057466;-0.6147202;-0.01304035,0.0216531;0.3992401;0.009587468,0;0;0,0.009599384;0.1995353;0.009669842,0.02525031;0.4990724;0.01025795,0.1308681;0.3726201;-0.02445437,0.173551;0.1781388;-0.005607691,0.2174778;-0.06663427;-0.03123154,-0.09643117;0.3708451;0.005371094,-0.2809108;0.2951952;0.02100258,-0.5171677;0.2137758;0.02832294,0.06963971;0.003388997;-0.03922787,0.08510499;-0.2942538;-0.005028956,0.0711354;-0.5881185;0.05369429,0.08324538;-0.6181766;-0.004991699,-0.07194915;0.004565117;-0.03467679,-0.1035986;-0.2926054;-0.008447239,-0.1039908;-0.5878017;0.04502237,-0.1115141;-0.5552104;-0.05316286,0.01992691;0.3992449;0.0127365,12.36507
-0;0;0,0.01067181;0.1995466;0.008201971,0.02738247;0.4990219;0.006305585,0.1302274;0.3686963;-0.03138434,0.1715321;0.1733921;-0.01912782,0.1947793;-0.07265866;-0.05679172,-0.09462869;0.369608;0.01028161,-0.2831277;0.3104598;0.04142024,-0.532579;0.3267483;0.03846943,0.0675071;0.003441527;-0.04278957,0.0847341;-0.2935379;-0.003976073,0.07170805;-0.5862483;0.06045182,0.08106562;-0.6129177;-0.003063869,-0.07404067;0.004672027;-0.02993579,-0.1043659;-0.2926257;-0.003583878,-0.1044715;-0.5876744;0.050696,-0.1057466;-0.6147202;-0.01304035,0.0216531;0.3992401;0.009587468,0;0;0,0.009599384;0.1995353;0.009669842,0.02525031;0.4990724;0.01025795,0.1308681;0.3726201;-0.02445437,0.173551;0.1781388;-0.005607691,0.2174778;-0.06663427;-0.03123154,-0.09643117;0.3708451;0.005371094,-0.2809108;0.2951952;0.02100258,-0.5171677;0.2137758;0.02832294,0.06963971;0.003388997;-0.03922787,0.08510499;-0.2942538;-0.005028956,0.0711354;-0.5881185;0.05369429,0.08324538;-0.6181766;-0.004991699,-0.07194915;0.004565117;-0.03467679,-0.1035986;-0.2926054;-0.008447239,-0.1039908;-0.5878017;0.04502237,-0.1115141;-0.5552104;-0.05316286,0.01992691;0.3992449;0.0127365,12.38689
-0;0;0,0.01076355;0.1995384;0.008282397,0.02753668;0.4990111;0.006576853,0.1303228;0.3684976;-0.03116702,0.1713162;0.1731246;-0.01896272,0.1944378;-0.07295847;-0.05649278,-0.09459679;0.3700531;0.01067982,-0.2833041;0.3119327;0.04248468,-0.5324012;0.3331128;0.04104984,0.06745438;0.003383074;-0.04287727,0.08459655;-0.2936274;-0.004264608,0.07165553;-0.5861895;0.06085012,0.08094427;-0.6128751;-0.00265608,-0.0740622;0.004742131;-0.02987144,-0.1048423;-0.2925237;-0.00368751,-0.1043857;-0.5874327;0.05134429,-0.1020187;-0.6167619;-0.009493869,0.02179934;0.3992279;0.009800102,0;0;0,0.009599384;0.1995353;0.009669842,0.02525031;0.4990724;0.01025795,0.1308681;0.3726201;-0.02445437,0.173551;0.1781388;-0.005607691,0.2174778;-0.06663427;-0.03123154,-0.09643117;0.3708451;0.005371094,-0.2809108;0.2951952;0.02100258,-0.5171677;0.2137758;0.02832294,0.06963971;0.003388997;-0.03922787,0.08510499;-0.2942538;-0.005028956,0.0711354;-0.5881185;0.05369429,0.08324538;-0.6181766;-0.004991699,-0.07194915;0.004565117;-0.03467679,-0.1035986;-0.2926054;-0.008447239,-0.1039908;-0.5878017;0.04502237,-0.1115141;-0.5552104;-0.05316286,0.01992691;0.3992449;0.0127365,12.40918
-0;0;0,0.01104017;0.1995169;0.008433364,0.02811512;0.4989727;0.006838019,0.1307487;0.3685257;-0.03110039,0.1714128;0.1730878;-0.01883551,0.1942665;-0.07299188;-0.05655189,-0.09421311;0.3703906;0.011189,-0.2834656;0.3147464;0.04416183,-0.5323942;0.3377888;0.04225104,0.06742;0.003302946;-0.04293756,0.08487841;-0.2936453;-0.003989339,0.07201035;-0.5861882;0.06122606,0.08186929;-0.6130719;-0.001953833,-0.07408693;0.004826413;-0.02979654,-0.1046241;-0.2924576;-0.003534446,-0.1040749;-0.5873061;0.05181959,-0.1022493;-0.6163769;-0.009372476,0.02227293;0.3991948;0.01003848,0;0;0,0.009719908;0.1995291;0.009678702,0.02552938;0.4990579;0.0102984,0.1310733;0.3724945;-0.02440989,0.1736615;0.1779781;-0.005711876,0.2175138;-0.06677273;-0.03167402,-0.0962752;0.3711335;0.005358021,-0.281554;0.29758;0.0215338,-0.5198866;0.2226497;0.03064631,0.06960787;0.003331461;-0.03928925,0.08512669;-0.2943012;-0.005026408,0.07117609;-0.58816;0.05373045,0.0831085;-0.6182706;-0.0049203,-0.0719794;0.00460828;-0.03460824,-0.1035841;-0.2925893;-0.008632949,-0.1042815;-0.5876358;0.04565448,-0.1075273;-0.6159742;-0.01641439,0.0201533;0.3992329;0.0127628,12.43162
-0;0;0,0.01104017;0.1995169;0.008433364,0.02811512;0.4989727;0.006838019,0.1307487;0.3685257;-0.03110039,0.1714128;0.1730878;-0.01883551,0.1942665;-0.07299188;-0.05655189,-0.09421311;0.3703906;0.011189,-0.2834656;0.3147464;0.04416183,-0.5323942;0.3377888;0.04225104,0.06742;0.003302946;-0.04293756,0.08487841;-0.2936453;-0.003989339,0.07201035;-0.5861882;0.06122606,0.08186929;-0.6130719;-0.001953833,-0.07408693;0.004826413;-0.02979654,-0.1046241;-0.2924576;-0.003534446,-0.1040749;-0.5873061;0.05181959,-0.1022493;-0.6163769;-0.009372476,0.02227293;0.3991948;0.01003848,0;0;0,0.009719908;0.1995291;0.009678702,0.02552938;0.4990579;0.0102984,0.1310733;0.3724945;-0.02440989,0.1736615;0.1779781;-0.005711876,0.2175138;-0.06677273;-0.03167402,-0.0962752;0.3711335;0.005358021,-0.281554;0.29758;0.0215338,-0.5198866;0.2226497;0.03064631,0.06960787;0.003331461;-0.03928925,0.08512669;-0.2943012;-0.005026408,0.07117609;-0.58816;0.05373045,0.0831085;-0.6182706;-0.0049203,-0.0719794;0.00460828;-0.03460824,-0.1035841;-0.2925893;-0.008632949,-0.1042815;-0.5876358;0.04565448,-0.1075273;-0.6159742;-0.01641439,0.0201533;0.3992329;0.0127628,12.44429
-0;0;0,0.01106459;0.1995142;0.008465892,0.02811016;0.4989725;0.007030527,0.1306334;0.3682375;-0.03110083,0.1707207;0.1726501;-0.0193283,0.1928287;-0.07349327;-0.05707324,-0.09428817;0.3707764;0.01154717,-0.2843041;0.3181924;0.04514598,-0.533197;0.3416826;0.04441773,0.06731255;0.003301477;-0.04310592,0.08452015;-0.2936726;-0.004243378,0.07188178;-0.5861319;0.06139098,0.08161261;-0.613132;-0.001666818,-0.074155;0.004829941;-0.02962613,-0.1050043;-0.2924654;-0.003861576,-0.1043077;-0.5871916;0.05213853,-0.1026466;-0.6164728;-0.00878536,0.02229099;0.3991915;0.01017591,0;0;0,0.009719908;0.1995291;0.009678702,0.02552938;0.4990579;0.0102984,0.1310733;0.3724945;-0.02440989,0.1736615;0.1779781;-0.005711876,0.2175138;-0.06677273;-0.03167402,-0.0962752;0.3711335;0.005358021,-0.281554;0.29758;0.0215338,-0.5198866;0.2226497;0.03064631,0.06960787;0.003331461;-0.03928925,0.08512669;-0.2943012;-0.005026408,0.07117609;-0.58816;0.05373045,0.0831085;-0.6182706;-0.0049203,-0.0719794;0.00460828;-0.03460824,-0.1035841;-0.2925893;-0.008632949,-0.1042815;-0.5876358;0.04565448,-0.1075273;-0.6159742;-0.01641439,0.0201533;0.3992329;0.0127628,12.46488
-0;0;0,0.01106459;0.1995142;0.008465892,0.02811016;0.4989725;0.007030527,0.1306334;0.3682375;-0.03110083,0.1707207;0.1726501;-0.0193283,0.1928287;-0.07349327;-0.05707324,-0.09428817;0.3707764;0.01154717,-0.2843041;0.3181924;0.04514598,-0.533197;0.3416826;0.04441773,0.06731255;0.003301477;-0.04310592,0.08452015;-0.2936726;-0.004243378,0.07188178;-0.5861319;0.06139098,0.08161261;-0.613132;-0.001666818,-0.074155;0.004829941;-0.02962613,-0.1050043;-0.2924654;-0.003861576,-0.1043077;-0.5871916;0.05213853,-0.1026466;-0.6164728;-0.00878536,0.02229099;0.3991915;0.01017591,0;0;0,0.009874264;0.1995243;0.009619904,0.02592545;0.4990405;0.01015022,0.1312614;0.372223;-0.02471723,0.1736313;0.1776381;-0.00623697,0.2173298;-0.0671767;-0.03185245,-0.09604064;0.371386;0.005490977,-0.2818566;0.2994397;0.02270105,-0.5228317;0.2336903;0.03309173,0.0695848;0.003303497;-0.03933245,0.0851206;-0.294312;-0.004928097,0.07107174;-0.5881351;0.05398407,0.08319201;-0.6180891;-0.004841622,-0.07201128;0.004628364;-0.03453915,-0.1035681;-0.2925741;-0.008561555,-0.1041738;-0.5875851;0.04591931,-0.1074683;-0.6158137;-0.01628548,0.02046721;0.3992207;0.01264282,12.47633
-0;0;0,0.01106459;0.1995142;0.008465892,0.02811016;0.4989725;0.007030527,0.1306334;0.3682375;-0.03110083,0.1707207;0.1726501;-0.0193283,0.1928287;-0.07349327;-0.05707324,-0.09428817;0.3707764;0.01154717,-0.2843041;0.3181924;0.04514598,-0.533197;0.3416826;0.04441773,0.06731255;0.003301477;-0.04310592,0.08452015;-0.2936726;-0.004243378,0.07188178;-0.5861319;0.06139098,0.08161261;-0.613132;-0.001666818,-0.074155;0.004829941;-0.02962613,-0.1050043;-0.2924654;-0.003861576,-0.1043077;-0.5871916;0.05213853,-0.1026466;-0.6164728;-0.00878536,0.02229099;0.3991915;0.01017591,0;0;0,0.009874264;0.1995243;0.009619904,0.02592545;0.4990405;0.01015022,0.1312614;0.372223;-0.02471723,0.1736313;0.1776381;-0.00623697,0.2173298;-0.0671767;-0.03185245,-0.09604064;0.371386;0.005490977,-0.2818566;0.2994397;0.02270105,-0.5228317;0.2336903;0.03309173,0.0695848;0.003303497;-0.03933245,0.0851206;-0.294312;-0.004928097,0.07107174;-0.5881351;0.05398407,0.08319201;-0.6180891;-0.004841622,-0.07201128;0.004628364;-0.03453915,-0.1035681;-0.2925741;-0.008561555,-0.1041738;-0.5875851;0.04591931,-0.1074683;-0.6158137;-0.01628548,0.02046721;0.3992207;0.01264282,12.48742
-0;0;0,0.01121768;0.1995028;0.008531486,0.02841286;0.4989527;0.007167336,0.1308655;0.3682627;-0.03107969,0.1708179;0.1726394;-0.01944676,0.1923317;-0.07355921;-0.05717455,-0.09411788;0.3711378;0.01198372,-0.284374;0.3195012;0.04569227,-0.5327454;0.3479671;0.04685521,0.06725409;0.003241639;-0.04320161,0.08472231;-0.2937312;-0.004446127,0.0721815;-0.5861199;0.06152036,0.08206363;-0.6133189;-0.001270249,-0.07414616;0.004901054;-0.0296366,-0.1050087;-0.2923959;-0.003906569,-0.1040171;-0.5870626;0.05240125,-0.1155778;-0.5546616;-0.04535674,0.02254888;0.3991738;0.01029688,0;0;0,0.009874264;0.1995243;0.009619904,0.02592545;0.4990405;0.01015022,0.1312614;0.372223;-0.02471723,0.1736313;0.1776381;-0.00623697,0.2173298;-0.0671767;-0.03185245,-0.09604064;0.371386;0.005490977,-0.2818566;0.2994397;0.02270105,-0.5228317;0.2336903;0.03309173,0.0695848;0.003303497;-0.03933245,0.0851206;-0.294312;-0.004928097,0.07107174;-0.5881351;0.05398407,0.08319201;-0.6180891;-0.004841622,-0.07201128;0.004628364;-0.03453915,-0.1035681;-0.2925741;-0.008561555,-0.1041738;-0.5875851;0.04591931,-0.1074683;-0.6158137;-0.01628548,0.02046721;0.3992207;0.01264282,12.50955
-0;0;0,0.01121768;0.1995028;0.008531486,0.02841286;0.4989527;0.007167336,0.1308655;0.3682627;-0.03107969,0.1708179;0.1726394;-0.01944676,0.1923317;-0.07355921;-0.05717455,-0.09411788;0.3711378;0.01198372,-0.284374;0.3195012;0.04569227,-0.5327454;0.3479671;0.04685521,0.06725409;0.003241639;-0.04320161,0.08472231;-0.2937312;-0.004446127,0.0721815;-0.5861199;0.06152036,0.08206363;-0.6133189;-0.001270249,-0.07414616;0.004901054;-0.0296366,-0.1050087;-0.2923959;-0.003906569,-0.1040171;-0.5870626;0.05240125,-0.1155778;-0.5546616;-0.04535674,0.02254888;0.3991738;0.01029688,0;0;0,0.010031;0.1995216;0.009513407,0.02640299;0.4990208;0.009876594,0.1315262;0.3719971;-0.02508727,0.1739892;0.1774125;-0.006819198,0.2171597;-0.06748033;-0.03258401,-0.09574491;0.3715871;0.005634951,-0.2826366;0.3027024;0.02370074,-0.5242321;0.2393345;0.03447709,0.06956685;0.00329232;-0.03936514,0.08506083;-0.2943554;-0.005221792,0.07116966;-0.5881271;0.05398336,0.08333309;-0.6180833;-0.004830383,-0.07202333;0.004636384;-0.03451294,-0.1036606;-0.292563;-0.008597801,-0.1044715;-0.5874658;0.04646342,-0.1073413;-0.61461;-0.01710173,0.02083541;0.3992084;0.01242413,12.52091
-0;0;0,0.01129179;0.1994947;0.008622259,0.02854913;0.4989413;0.007370041,0.1309384;0.3682722;-0.03104933,0.170676;0.1726001;-0.01950143,0.1916446;-0.07352874;-0.05798407,-0.09407099;0.3714458;0.01234348,-0.2843577;0.3204641;0.04686624,-0.5324551;0.3512356;0.04776613,0.06729071;0.003203593;-0.04314739,0.0847064;-0.2937993;-0.004599109,0.07241607;-0.5860996;0.06180486,0.08155697;-0.6129681;-0.001501426,-0.07408559;0.004963371;-0.02977734,-0.104907;-0.2923828;-0.004571551,-0.1039614;-0.5869082;0.05247115,-0.1025154;-0.6151933;-0.00973298,0.0226692;0.3991624;0.01046679,0;0;0,0.010031;0.1995216;0.009513407,0.02640299;0.4990208;0.009876594,0.1315262;0.3719971;-0.02508727,0.1739892;0.1774125;-0.006819198,0.2171597;-0.06748033;-0.03258401,-0.09574491;0.3715871;0.005634951,-0.2826366;0.3027024;0.02370074,-0.5242321;0.2393345;0.03447709,0.06956685;0.00329232;-0.03936514,0.08506083;-0.2943554;-0.005221792,0.07116966;-0.5881271;0.05398336,0.08333309;-0.6180833;-0.004830383,-0.07202333;0.004636384;-0.03451294,-0.1036606;-0.292563;-0.008597801,-0.1044715;-0.5874658;0.04646342,-0.1073413;-0.61461;-0.01710173,0.02083541;0.3992084;0.01242413,12.53232
-0;0;0,0.01129179;0.1994947;0.008622259,0.02854913;0.4989413;0.007370041,0.1309384;0.3682722;-0.03104933,0.170676;0.1726001;-0.01950143,0.1916446;-0.07352874;-0.05798407,-0.09407099;0.3714458;0.01234348,-0.2843577;0.3204641;0.04686624,-0.5324551;0.3512356;0.04776613,0.06729071;0.003203593;-0.04314739,0.0847064;-0.2937993;-0.004599109,0.07241607;-0.5860996;0.06180486,0.08155697;-0.6129681;-0.001501426,-0.07408559;0.004963371;-0.02977734,-0.104907;-0.2923828;-0.004571551,-0.1039614;-0.5869082;0.05247115,-0.1025154;-0.6151933;-0.00973298,0.0226692;0.3991624;0.01046679,0;0;0,0.010031;0.1995216;0.009513407,0.02640299;0.4990208;0.009876594,0.1315262;0.3719971;-0.02508727,0.1739892;0.1774125;-0.006819198,0.2171597;-0.06748033;-0.03258401,-0.09574491;0.3715871;0.005634951,-0.2826366;0.3027024;0.02370074,-0.5242321;0.2393345;0.03447709,0.06956685;0.00329232;-0.03936514,0.08506083;-0.2943554;-0.005221792,0.07116966;-0.5881271;0.05398336,0.08333309;-0.6180833;-0.004830383,-0.07202333;0.004636384;-0.03451294,-0.1036606;-0.292563;-0.008597801,-0.1044715;-0.5874658;0.04646342,-0.1073413;-0.61461;-0.01710173,0.02083541;0.3992084;0.01242413,12.5545
-0;0;0,0.01143442;0.1994835;0.008694528,0.02886689;0.4989201;0.007528503,0.1310795;0.3681765;-0.03116877,0.1705656;0.1724511;-0.01966133,0.1909958;-0.07362442;-0.05876928,-0.09387589;0.3717088;0.01252772,-0.2843557;0.3218925;0.04768121,-0.5314351;0.3597367;0.05211036,0.06715982;0.00313432;-0.0433559,0.08466203;-0.2938753;-0.004898403,0.07263225;-0.5860589;0.06206445,0.08158102;-0.6133145;-0.0007964484,-0.0741378;0.005024316;-0.02963685,-0.1049869;-0.2923612;-0.004934825,-0.1039936;-0.5868006;0.05255007,-0.1026072;-0.6145676;-0.01030186,0.02292997;0.3991438;0.01060099,0;0;0,0.01014307;0.1995219;0.009387644,0.02672984;0.499009;0.009452789,0.1318296;0.3722409;-0.02543391,0.1739754;0.1775425;-0.007650418,0.2168641;-0.06739053;-0.03350372,-0.0956121;0.3720701;0.005441602,-0.2834589;0.3060488;0.02427693,-0.5268336;0.2505523;0.03802071,0.06950359;0.003290987;-0.03947683,0.08486;-0.2943833;-0.005503476,0.07124508;-0.5881133;0.05397204,0.0834244;-0.6180403;-0.004878096,-0.07204767;0.004652701;-0.03445992,-0.1036866;-0.2925528;-0.008616855,-0.1043725;-0.5874596;0.04642451,-0.107309;-0.6141433;-0.01769242,0.02108961;0.3992035;0.01211159,12.56588
-0;0;0,0.01143442;0.1994835;0.008694528,0.02886689;0.4989201;0.007528503,0.1310795;0.3681765;-0.03116877,0.1705656;0.1724511;-0.01966133,0.1909958;-0.07362442;-0.05876928,-0.09387589;0.3717088;0.01252772,-0.2843557;0.3218925;0.04768121,-0.5314351;0.3597367;0.05211036,0.06715982;0.00313432;-0.0433559,0.08466203;-0.2938753;-0.004898403,0.07263225;-0.5860589;0.06206445,0.08158102;-0.6133145;-0.0007964484,-0.0741378;0.005024316;-0.02963685,-0.1049869;-0.2923612;-0.004934825,-0.1039936;-0.5868006;0.05255007,-0.1026072;-0.6145676;-0.01030186,0.02292997;0.3991438;0.01060099,0;0;0,0.01014307;0.1995219;0.009387644,0.02672984;0.499009;0.009452789,0.1318296;0.3722409;-0.02543391,0.1739754;0.1775425;-0.007650418,0.2168641;-0.06739053;-0.03350372,-0.0956121;0.3720701;0.005441602,-0.2834589;0.3060488;0.02427693,-0.5268336;0.2505523;0.03802071,0.06950359;0.003290987;-0.03947683,0.08486;-0.2943833;-0.005503476,0.07124508;-0.5881133;0.05397204,0.0834244;-0.6180403;-0.004878096,-0.07204767;0.004652701;-0.03445992,-0.1036866;-0.2925528;-0.008616855,-0.1043725;-0.5874596;0.04642451,-0.107309;-0.6141433;-0.01769242,0.02108961;0.3992035;0.01211159,12.58774
-0;0;0,0.01171967;0.1994617;0.008813751,0.02941935;0.4988823;0.00771153,0.1317971;0.368295;-0.03041119,0.172301;0.17269;-0.02050531,0.1929296;-0.07330737;-0.05999938,-0.09350261;0.3720474;0.0131449,-0.2840791;0.3230306;0.04889329,-0.5308071;0.363134;0.05302112,0.06717543;0.003041229;-0.04333835,0.08490396;-0.2939692;-0.004990824,0.07309502;-0.5860849;0.06230675,0.08225024;-0.6143537;0.0007423982,-0.07412457;0.005139647;-0.02965015,-0.1047235;-0.2922639;-0.004854033,-0.1035756;-0.5866891;0.05270012,-0.1021381;-0.6145468;-0.01003826,0.02338156;0.3991118;0.01077605,0;0;0,0.01014307;0.1995219;0.009387644,0.02672984;0.499009;0.009452789,0.1318296;0.3722409;-0.02543391,0.1739754;0.1775425;-0.007650418,0.2168641;-0.06739053;-0.03350372,-0.0956121;0.3720701;0.005441602,-0.2834589;0.3060488;0.02427693,-0.5268336;0.2505523;0.03802071,0.06950359;0.003290987;-0.03947683,0.08486;-0.2943833;-0.005503476,0.07124508;-0.5881133;0.05397204,0.0834244;-0.6180403;-0.004878096,-0.07204767;0.004652701;-0.03445992,-0.1036866;-0.2925528;-0.008616855,-0.1043725;-0.5874596;0.04642451,-0.107309;-0.6141433;-0.01769242,0.02108961;0.3992035;0.01211159,12.6103
-0;0;0,0.01171967;0.1994617;0.008813751,0.02941935;0.4988823;0.00771153,0.1317971;0.368295;-0.03041119,0.172301;0.17269;-0.02050531,0.1929296;-0.07330737;-0.05999938,-0.09350261;0.3720474;0.0131449,-0.2840791;0.3230306;0.04889329,-0.5308071;0.363134;0.05302112,0.06717543;0.003041229;-0.04333835,0.08490396;-0.2939692;-0.004990824,0.07309502;-0.5860849;0.06230675,0.08225024;-0.6143537;0.0007423982,-0.07412457;0.005139647;-0.02965015,-0.1047235;-0.2922639;-0.004854033,-0.1035756;-0.5866891;0.05270012,-0.1021381;-0.6145468;-0.01003826,0.02338156;0.3991118;0.01077605,0;0;0,0.01026043;0.1995206;0.009287526,0.02688674;0.4990056;0.009264052,0.1319339;0.3723352;-0.02581078,0.1736976;0.1775177;-0.00843385,0.2162482;-0.06751214;-0.03392541,-0.09562126;0.3726588;0.005782111,-0.28437;0.3094985;0.02539549,-0.5281099;0.2557575;0.03963465,0.06943651;0.00328154;-0.03959549,0.08449951;-0.2943739;-0.005326346,0.07098546;-0.5881056;0.05416393,0.08259302;-0.6179866;-0.004863854,-0.07209983;0.004671114;-0.03434816,-0.104046;-0.2925292;-0.008825572,-0.1047036;-0.5873696;0.04657055,-0.107343;-0.6146906;-0.01678942,0.02124387;0.399201;0.01195083,12.62156
-0;0;0,0.01171021;0.199459;0.00888705,0.02938808;0.4988813;0.007951608,0.1316747;0.3684639;-0.03062857,0.1716278;0.1727385;-0.02086622,0.1919653;-0.07325624;-0.06052699,-0.09354742;0.3721729;0.01340882,-0.2843204;0.3243455;0.04971615,-0.5307005;0.3665329;0.05384857,0.06717733;0.003042874;-0.04333528,0.08468305;-0.2939895;-0.005056053,0.07292181;-0.5860516;0.06248226,0.08211279;-0.6143683;0.0009840876,-0.07410746;0.005146943;-0.02969164,-0.1051307;-0.2922229;-0.005019097,-0.1038818;-0.5866071;0.05274216,-0.1021982;-0.6147564;-0.009626485,0.02336494;0.3991084;0.01096364,0;0;0,0.01026043;0.1995206;0.009287526,0.02688674;0.4990056;0.009264052,0.1319339;0.3723352;-0.02581078,0.1736976;0.1775177;-0.00843385,0.2162482;-0.06751214;-0.03392541,-0.09562126;0.3726588;0.005782111,-0.28437;0.3094985;0.02539549,-0.5281099;0.2557575;0.03963465,0.06943651;0.00328154;-0.03959549,0.08449951;-0.2943739;-0.005326346,0.07098546;-0.5881056;0.05416393,0.08259302;-0.6179866;-0.004863854,-0.07209983;0.004671114;-0.03434816,-0.104046;-0.2925292;-0.008825572,-0.1047036;-0.5873696;0.04657055,-0.107343;-0.6146906;-0.01678942,0.02124387;0.399201;0.01195083,12.63275
-0;0;0,0.01171021;0.199459;0.00888705,0.02938808;0.4988813;0.007951608,0.1316747;0.3684639;-0.03062857,0.1716278;0.1727385;-0.02086622,0.1919653;-0.07325624;-0.06052699,-0.09354742;0.3721729;0.01340882,-0.2843204;0.3243455;0.04971615,-0.5307005;0.3665329;0.05384857,0.06717733;0.003042874;-0.04333528,0.08468305;-0.2939895;-0.005056053,0.07292181;-0.5860516;0.06248226,0.08211279;-0.6143683;0.0009840876,-0.07410746;0.005146943;-0.02969164,-0.1051307;-0.2922229;-0.005019097,-0.1038818;-0.5866071;0.05274216,-0.1021982;-0.6147564;-0.009626485,0.02336494;0.3991084;0.01096364,0;0;0,0.01026043;0.1995206;0.009287526,0.02688674;0.4990056;0.009264052,0.1319339;0.3723352;-0.02581078,0.1736976;0.1775177;-0.00843385,0.2162482;-0.06751214;-0.03392541,-0.09562126;0.3726588;0.005782111,-0.28437;0.3094985;0.02539549,-0.5281099;0.2557575;0.03963465,0.06943651;0.00328154;-0.03959549,0.08449951;-0.2943739;-0.005326346,0.07098546;-0.5881056;0.05416393,0.08259302;-0.6179866;-0.004863854,-0.07209983;0.004671114;-0.03434816,-0.104046;-0.2925292;-0.008825572,-0.1047036;-0.5873696;0.04657055,-0.107343;-0.6146906;-0.01678942,0.02124387;0.399201;0.01195083,12.65512
-0;0;0,0.01181218;0.1994519;0.008910738,0.0295424;0.4988711;0.008003535,0.1317461;0.3683999;-0.03072786,0.1715388;0.1726457;-0.02088705,0.1911417;-0.07323681;-0.06159936,-0.09345731;0.3724023;0.01354711,-0.2842737;0.3253431;0.05062177,-0.5302624;0.3697643;0.05466975,0.06705377;0.003046832;-0.04352596,0.0847383;-0.2939485;-0.005041804,0.07306385;-0.5860058;0.06253242,0.08222995;-0.6142291;0.0009118915,-0.07414306;0.005163197;-0.02959979,-0.1051076;-0.2922408;-0.005267218,-0.1037818;-0.5865542;0.05285218,-0.1021481;-0.6147798;-0.009422116,0.02350795;0.3990986;0.01101062,0;0;0,0.01032604;0.1995207;0.009211174,0.02708701;0.4989976;0.008962172,0.1320229;0.3722885;-0.0261899,0.1735995;0.1774348;-0.00877041,0.2158488;-0.0675918;-0.0347885,-0.09564403;0.3733718;0.005912203,-0.2853588;0.3134859;0.0264544,-0.5292497;0.260512;0.04098096,0.06938632;0.00325533;-0.03968553,0.0843676;-0.294406;-0.005432244,0.07086948;-0.5880679;0.05440512,0.08312218;-0.6178083;-0.004682414,-0.07214464;0.00480895;-0.03423485,-0.1042185;-0.2923954;-0.008920455,-0.1046919;-0.5872172;0.04657631,-0.1078768;-0.6142907;-0.01705968,0.02139916;0.399198;0.01173454,12.66636
-0;0;0,0.01181218;0.1994519;0.008910738,0.0295424;0.4988711;0.008003535,0.1317461;0.3683999;-0.03072786,0.1715388;0.1726457;-0.02088705,0.1911417;-0.07323681;-0.06159936,-0.09345731;0.3724023;0.01354711,-0.2842737;0.3253431;0.05062177,-0.5302624;0.3697643;0.05466975,0.06705377;0.003046832;-0.04352596,0.0847383;-0.2939485;-0.005041804,0.07306385;-0.5860058;0.06253242,0.08222995;-0.6142291;0.0009118915,-0.07414306;0.005163197;-0.02959979,-0.1051076;-0.2922408;-0.005267218,-0.1037818;-0.5865542;0.05285218,-0.1021481;-0.6147798;-0.009422116,0.02350795;0.3990986;0.01101062,0;0;0,0.01032604;0.1995207;0.009211174,0.02708701;0.4989976;0.008962172,0.1320229;0.3722885;-0.0261899,0.1735995;0.1774348;-0.00877041,0.2158488;-0.0675918;-0.0347885,-0.09564403;0.3733718;0.005912203,-0.2853588;0.3134859;0.0264544,-0.5292497;0.260512;0.04098096,0.06938632;0.00325533;-0.03968553,0.0843676;-0.294406;-0.005432244,0.07086948;-0.5880679;0.05440512,0.08312218;-0.6178083;-0.004682414,-0.07214464;0.00480895;-0.03423485,-0.1042185;-0.2923954;-0.008920455,-0.1046919;-0.5872172;0.04657631,-0.1078768;-0.6142907;-0.01705968,0.02139916;0.399198;0.01173454,12.67744
-0;0;0,0.01193257;0.1994431;0.008947563,0.02978384;0.4988551;0.008105945,0.131798;0.3685982;-0.0311981,0.1711582;0.1727725;-0.02104645,0.1901409;-0.0731077;-0.0620661,-0.09330161;0.3726301;0.01377576,-0.2841477;0.3258728;0.051079,-0.5298945;0.3715949;0.05532295,0.06688645;0.002983208;-0.04378703,0.08491045;-0.2939699;-0.005134635,0.07323202;-0.585966;0.06270271,0.08269483;-0.6145086;0.001534868,-0.07418928;0.005211861;-0.02947519,-0.1052061;-0.2922051;-0.005368358,-0.1037143;-0.5864829;0.05292732,-0.1024384;-0.6144146;-0.009722672,0.02371548;0.3990842;0.01109588,0;0;0,0.01032604;0.1995207;0.009211174,0.02708701;0.4989976;0.008962172,0.1320229;0.3722885;-0.0261899,0.1735995;0.1774348;-0.00877041,0.2158488;-0.0675918;-0.0347885,-0.09564403;0.3733718;0.005912203,-0.2853588;0.3134859;0.0264544,-0.5292497;0.260512;0.04098096,0.06938632;0.00325533;-0.03968553,0.0843676;-0.294406;-0.005432244,0.07086948;-0.5880679;0.05440512,0.08312218;-0.6178083;-0.004682414,-0.07214464;0.00480895;-0.03423485,-0.1042185;-0.2923954;-0.008920455,-0.1046919;-0.5872172;0.04657631,-0.1078768;-0.6142907;-0.01705968,0.02139916;0.399198;0.01173454,12.68943
-0;0;0,0.01193257;0.1994431;0.008947563,0.02978384;0.4988551;0.008105945,0.131798;0.3685982;-0.0311981,0.1711582;0.1727725;-0.02104645,0.1901409;-0.0731077;-0.0620661,-0.09330161;0.3726301;0.01377576,-0.2841477;0.3258728;0.051079,-0.5298945;0.3715949;0.05532295,0.06688645;0.002983208;-0.04378703,0.08491045;-0.2939699;-0.005134635,0.07323202;-0.585966;0.06270271,0.08269483;-0.6145086;0.001534868,-0.07418928;0.005211861;-0.02947519,-0.1052061;-0.2922051;-0.005368358,-0.1037143;-0.5864829;0.05292732,-0.1024384;-0.6144146;-0.009722672,0.02371548;0.3990842;0.01109588,0;0;0,0.01046363;0.199522;0.009026163,0.02729242;0.498995;0.008548746,0.1319866;0.3721309;-0.02708819,0.173369;0.1772165;-0.009887801,0.2152957;-0.06790382;-0.0355435,-0.09527687;0.3728298;0.004624081,-0.2865036;0.3183999;0.02629769,-0.5310728;0.2693693;0.04308705,0.06927908;0.003135018;-0.03988209,0.08406845;-0.2945127;-0.005427085,0.07056857;-0.5881335;0.05461087,0.08267087;-0.6178985;-0.004474543,-0.07221363;0.004867293;-0.03408079,-0.1044403;-0.2923388;-0.008981317,-0.1046625;-0.5871397;0.04662823,-0.1084672;-0.6135953;-0.01771509,0.02159432;0.399198;0.01139462,12.71068
-0;0;0,0.01193257;0.1994431;0.008947563,0.02978384;0.4988551;0.008105945,0.131798;0.3685982;-0.0311981,0.1711582;0.1727725;-0.02104645,0.1901409;-0.0731077;-0.0620661,-0.09330161;0.3726301;0.01377576,-0.2841477;0.3258728;0.051079,-0.5298945;0.3715949;0.05532295,0.06688645;0.002983208;-0.04378703,0.08491045;-0.2939699;-0.005134635,0.07323202;-0.585966;0.06270271,0.08269483;-0.6145086;0.001534868,-0.07418928;0.005211861;-0.02947519,-0.1052061;-0.2922051;-0.005368358,-0.1037143;-0.5864829;0.05292732,-0.1024384;-0.6144146;-0.009722672,0.02371548;0.3990842;0.01109588,0;0;0,0.01046363;0.199522;0.009026163,0.02729242;0.498995;0.008548746,0.1319866;0.3721309;-0.02708819,0.173369;0.1772165;-0.009887801,0.2152957;-0.06790382;-0.0355435,-0.09527687;0.3728298;0.004624081,-0.2865036;0.3183999;0.02629769,-0.5310728;0.2693693;0.04308705,0.06927908;0.003135018;-0.03988209,0.08406845;-0.2945127;-0.005427085,0.07056857;-0.5881335;0.05461087,0.08267087;-0.6178985;-0.004474543,-0.07221363;0.004867293;-0.03408079,-0.1044403;-0.2923388;-0.008981317,-0.1046625;-0.5871397;0.04662823,-0.1084672;-0.6135953;-0.01771509,0.02159432;0.399198;0.01139462,12.7225
-0;0;0,0.01227938;0.1994218;0.008952724,0.03031637;0.4988227;0.008132362,0.1321175;0.3685323;-0.03145153,0.1711928;0.1726314;-0.021656,0.1899495;-0.07327777;-0.06260577,-0.09293486;0.3729404;0.01402196,-0.2837234;0.3260455;0.05144659,-0.5290355;0.3740972;0.05505487,0.06680686;0.002841088;-0.04391778,0.08542249;-0.2940783;-0.005286641,0.07393897;-0.5860914;0.0625107,0.08283025;-0.6158399;0.002835542,-0.07416627;0.005357892;-0.0295069,-0.104888;-0.2920981;-0.005504612,-0.1031004;-0.5864199;0.05255992,-0.1013605;-0.6133066;-0.01135719,0.02415247;0.3990574;0.01111341,0;0;0,0.01046363;0.199522;0.009026163,0.02729242;0.498995;0.008548746,0.1319866;0.3721309;-0.02708819,0.173369;0.1772165;-0.009887801,0.2152957;-0.06790382;-0.0355435,-0.09527687;0.3728298;0.004624081,-0.2865036;0.3183999;0.02629769,-0.5310728;0.2693693;0.04308705,0.06927908;0.003135018;-0.03988209,0.08406845;-0.2945127;-0.005427085,0.07056857;-0.5881335;0.05461087,0.08267087;-0.6178985;-0.004474543,-0.07221363;0.004867293;-0.03408079,-0.1044403;-0.2923388;-0.008981317,-0.1046625;-0.5871397;0.04662823,-0.1084672;-0.6135953;-0.01771509,0.02159432;0.399198;0.01139462,12.74421
-0;0;0,0.01227938;0.1994218;0.008952724,0.03031637;0.4988227;0.008132362,0.1321175;0.3685323;-0.03145153,0.1711928;0.1726314;-0.021656,0.1899495;-0.07327777;-0.06260577,-0.09293486;0.3729404;0.01402196,-0.2837234;0.3260455;0.05144659,-0.5290355;0.3740972;0.05505487,0.06680686;0.002841088;-0.04391778,0.08542249;-0.2940783;-0.005286641,0.07393897;-0.5860914;0.0625107,0.08283025;-0.6158399;0.002835542,-0.07416627;0.005357892;-0.0295069,-0.104888;-0.2920981;-0.005504612,-0.1031004;-0.5864199;0.05255992,-0.1013605;-0.6133066;-0.01135719,0.02415247;0.3990574;0.01111341,0;0;0,0.01053189;0.1995232;0.008921422,0.02739997;0.4989934;0.008274173,0.1320387;0.3720114;-0.02735161,0.1731414;0.1769979;-0.01060965,0.2146568;-0.06814244;-0.036738,-0.09546466;0.3739336;0.005212815,-0.2873744;0.3220026;0.02698042,-0.5326178;0.2767314;0.04447819,0.06911121;0.003202363;-0.04016694,0.08379477;-0.294414;-0.005397186,0.07057776;-0.5880734;0.05451497,0.08188445;-0.6181505;-0.00430518,-0.07228963;0.004895739;-0.03391521,-0.1046048;-0.2923197;-0.009041265,-0.1046822;-0.5871059;0.04664611,-0.1083767;-0.6142057;-0.01693038,0.02169356;0.3991987;0.01118143,12.75554
-0;0;0,0.01237581;0.1994169;0.00893057,0.03053062;0.4988104;0.008087059,0.1322535;0.3685557;-0.03160631,0.1711191;0.1726096;-0.02188126,0.1896465;-0.07329869;-0.06294047,-0.09278096;0.3730516;0.01421465,-0.2835963;0.3264095;0.05181802,-0.5284041;0.3770077;0.05481624,0.06674109;0.002815656;-0.04401929,0.08552442;-0.2940855;-0.005329914,0.07406668;-0.5861182;0.06238768,0.08362522;-0.6153299;0.002103865,-0.07419285;0.005392183;-0.02943375,-0.10496;-0.2920828;-0.005726414,-0.1029079;-0.5862964;0.0528749,-0.1012694;-0.6131864;-0.01104106,0.02432743;0.3990479;0.01108077,0;0;0,0.01053189;0.1995232;0.008921422,0.02739997;0.4989934;0.008274173,0.1320387;0.3720114;-0.02735161,0.1731414;0.1769979;-0.01060965,0.2146568;-0.06814244;-0.036738,-0.09546466;0.3739336;0.005212815,-0.2873744;0.3220026;0.02698042,-0.5326178;0.2767314;0.04447819,0.06911121;0.003202363;-0.04016694,0.08379477;-0.294414;-0.005397186,0.07057776;-0.5880734;0.05451497,0.08188445;-0.6181505;-0.00430518,-0.07228963;0.004895739;-0.03391521,-0.1046048;-0.2923197;-0.009041265,-0.1046822;-0.5871059;0.04664611,-0.1083767;-0.6142057;-0.01693038,0.02169356;0.3991987;0.01118143,12.76704
-0;0;0,0.01244019;0.1994126;0.008937,0.03066173;0.498802;0.008121992,0.1322136;0.3685054;-0.0319517,0.1708393;0.1725212;-0.0220407,0.1895107;-0.07337931;-0.06308147,-0.09266484;0.3730775;0.01436581,-0.2834679;0.3266326;0.05227455,-0.5278782;0.3791295;0.05504476,0.0667519;0.00279123;-0.04400447,0.08563662;-0.2941182;-0.005427986,0.07411179;-0.5861027;0.06248537,0.08356699;-0.6149872;0.001757819,-0.07417491;0.005430933;-0.02947179,-0.1051135;-0.2920413;-0.005954662,-0.1028369;-0.5862198;0.05281501,-0.1011997;-0.6134937;-0.01063617,0.02444765;0.39904;0.0111081,0;0;0,0.01053189;0.1995232;0.008921422,0.02739997;0.4989934;0.008274173,0.1320387;0.3720114;-0.02735161,0.1731414;0.1769979;-0.01060965,0.2146568;-0.06814244;-0.036738,-0.09546466;0.3739336;0.005212815,-0.2873744;0.3220026;0.02698042,-0.5326178;0.2767314;0.04447819,0.06911121;0.003202363;-0.04016694,0.08379477;-0.294414;-0.005397186,0.07057776;-0.5880734;0.05451497,0.08188445;-0.6181505;-0.00430518,-0.07228963;0.004895739;-0.03391521,-0.1046048;-0.2923197;-0.009041265,-0.1046822;-0.5871059;0.04664611,-0.1083767;-0.6142057;-0.01693038,0.02169356;0.3991987;0.01118143,12.78884
-0;0;0,0.01244019;0.1994126;0.008937,0.03066173;0.498802;0.008121992,0.1322136;0.3685054;-0.0319517,0.1708393;0.1725212;-0.0220407,0.1895107;-0.07337931;-0.06308147,-0.09266484;0.3730775;0.01436581,-0.2834679;0.3266326;0.05227455,-0.5278782;0.3791295;0.05504476,0.0667519;0.00279123;-0.04400447,0.08563662;-0.2941182;-0.005427986,0.07411179;-0.5861027;0.06248537,0.08356699;-0.6149872;0.001757819,-0.07417491;0.005430933;-0.02947179,-0.1051135;-0.2920413;-0.005954662,-0.1028369;-0.5862198;0.05281501,-0.1011997;-0.6134937;-0.01063617,0.02444765;0.39904;0.0111081,0;0;0,0.01063655;0.199521;0.008845994,0.02762271;0.4989843;0.008101319,0.1320627;0.3717724;-0.02779055,0.1728912;0.1766734;-0.01137596,0.2138266;-0.06851734;-0.03794253,-0.09541451;0.3744958;0.005367926,-0.2878102;0.3246081;0.02761908,-0.5337111;0.2831252;0.04528156,0.0690334;0.003162436;-0.0403037,0.08372045;-0.2944406;-0.005422287,0.07070173;-0.588104;0.05451387,0.08191055;-0.6174709;-0.005279638,-0.07233286;0.004925609;-0.03381856,-0.1046186;-0.2923252;-0.00933215,-0.1046125;-0.5870546;0.04665502,-0.1068192;-0.6152889;-0.01559066,0.02187955;0.3991926;0.01103973,12.80048
-0;0;0,0.01244019;0.1994126;0.008937,0.03066173;0.498802;0.008121992,0.1322136;0.3685054;-0.0319517,0.1708393;0.1725212;-0.0220407,0.1895107;-0.07337931;-0.06308147,-0.09266484;0.3730775;0.01436581,-0.2834679;0.3266326;0.05227455,-0.5278782;0.3791295;0.05504476,0.0667519;0.00279123;-0.04400447,0.08563662;-0.2941182;-0.005427986,0.07411179;-0.5861027;0.06248537,0.08356699;-0.6149872;0.001757819,-0.07417491;0.005430933;-0.02947179,-0.1051135;-0.2920413;-0.005954662,-0.1028369;-0.5862198;0.05281501,-0.1011997;-0.6134937;-0.01063617,0.02444765;0.39904;0.0111081,0;0;0,0.01063655;0.199521;0.008845994,0.02762271;0.4989843;0.008101319,0.1320627;0.3717724;-0.02779055,0.1728912;0.1766734;-0.01137596,0.2138266;-0.06851734;-0.03794253,-0.09541451;0.3744958;0.005367926,-0.2878102;0.3246081;0.02761908,-0.5337111;0.2831252;0.04528156,0.0690334;0.003162436;-0.0403037,0.08372045;-0.2944406;-0.005422287,0.07070173;-0.588104;0.05451387,0.08191055;-0.6174709;-0.005279638,-0.07233286;0.004925609;-0.03381856,-0.1046186;-0.2923252;-0.00933215,-0.1046125;-0.5870546;0.04665502,-0.1068192;-0.6152889;-0.01559066,0.02187955;0.3991926;0.01103973,12.81152
-0;0;0,0.01261612;0.1994014;0.008939196,0.03103901;0.4987788;0.008208301,0.1325037;0.3683837;-0.03193774,0.1706567;0.1722874;-0.02242013,0.1897212;-0.07364284;-0.06310035,-0.09232635;0.3730668;0.01455465,-0.2831841;0.3270502;0.05270953,-0.5272928;0.3809595;0.05487893,0.0667456;0.002674128;-0.04402128,0.08589092;-0.2942078;-0.005361751,0.07456111;-0.5861818;0.06262992,0.08407473;-0.615026;0.001859229,-0.07418055;0.005572916;-0.02943107,-0.1047796;-0.2919388;-0.005968332,-0.1024434;-0.5860963;0.05290343,-0.1010731;-0.6134391;-0.01047007,0.02478492;0.3990184;0.01116881,0;0;0,0.01063655;0.199521;0.008845994,0.02762271;0.4989843;0.008101319,0.1320627;0.3717724;-0.02779055,0.1728912;0.1766734;-0.01137596,0.2138266;-0.06851734;-0.03794253,-0.09541451;0.3744958;0.005367926,-0.2878102;0.3246081;0.02761908,-0.5337111;0.2831252;0.04528156,0.0690334;0.003162436;-0.0403037,0.08372045;-0.2944406;-0.005422287,0.07070173;-0.588104;0.05451387,0.08191055;-0.6174709;-0.005279638,-0.07233286;0.004925609;-0.03381856,-0.1046186;-0.2923252;-0.00933215,-0.1046125;-0.5870546;0.04665502,-0.1068192;-0.6152889;-0.01559066,0.02187955;0.3991926;0.01103973,12.83344
-0;0;0,0.01261612;0.1994014;0.008939196,0.03103901;0.4987788;0.008208301,0.1325037;0.3683837;-0.03193774,0.1706567;0.1722874;-0.02242013,0.1897212;-0.07364284;-0.06310035,-0.09232635;0.3730668;0.01455465,-0.2831841;0.3270502;0.05270953,-0.5272928;0.3809595;0.05487893,0.0667456;0.002674128;-0.04402128,0.08589092;-0.2942078;-0.005361751,0.07456111;-0.5861818;0.06262992,0.08407473;-0.615026;0.001859229,-0.07418055;0.005572916;-0.02943107,-0.1047796;-0.2919388;-0.005968332,-0.1024434;-0.5860963;0.05290343,-0.1010731;-0.6134391;-0.01047007,0.02478492;0.3990184;0.01116881,0;0;0,0.01067232;0.1995263;0.008681962,0.02758731;0.4989927;0.007697813,0.1317175;0.371469;-0.02884845,0.1721359;0.1762989;-0.01226551,0.2122882;-0.06899051;-0.03911526,-0.095552;0.3750143;0.005664787,-0.288579;0.3277766;0.02822904,-0.5352473;0.2909952;0.04560348,0.06891405;0.00310406;-0.04051196,0.08333119;-0.294486;-0.005407505,0.07036203;-0.5881252;0.05465763,0.08047222;-0.6187444;-0.003637481,-0.0723971;0.005026779;-0.03366587,-0.1052196;-0.2922018;-0.009627296,-0.105017;-0.5868024;0.04703352,-0.1074518;-0.6151465;-0.01506537,0.02187625;0.3992018;0.01072171,12.84533
-0;0;0,0.01261612;0.1994014;0.008939196,0.03103901;0.4987788;0.008208301,0.1325037;0.3683837;-0.03193774,0.1706567;0.1722874;-0.02242013,0.1897212;-0.07364284;-0.06310035,-0.09232635;0.3730668;0.01455465,-0.2831841;0.3270502;0.05270953,-0.5272928;0.3809595;0.05487893,0.0667456;0.002674128;-0.04402128,0.08589092;-0.2942078;-0.005361751,0.07456111;-0.5861818;0.06262992,0.08407473;-0.615026;0.001859229,-0.07418055;0.005572916;-0.02943107,-0.1047796;-0.2919388;-0.005968332,-0.1024434;-0.5860963;0.05290343,-0.1010731;-0.6134391;-0.01047007,0.02478492;0.3990184;0.01116881,0;0;0,0.01067232;0.1995263;0.008681962,0.02758731;0.4989927;0.007697813,0.1317175;0.371469;-0.02884845,0.1721359;0.1762989;-0.01226551,0.2122882;-0.06899051;-0.03911526,-0.095552;0.3750143;0.005664787,-0.288579;0.3277766;0.02822904,-0.5352473;0.2909952;0.04560348,0.06891405;0.00310406;-0.04051196,0.08333119;-0.294486;-0.005407505,0.07036203;-0.5881252;0.05465763,0.08047222;-0.6187444;-0.003637481,-0.0723971;0.005026779;-0.03366587,-0.1052196;-0.2922018;-0.009627296,-0.105017;-0.5868024;0.04703352,-0.1074518;-0.6151465;-0.01506537,0.02187625;0.3992018;0.01072171,12.85602
-0;0;0,0.01268052;0.1993983;0.008917206,0.03117501;0.4987713;0.008190785,0.1325863;0.3683743;-0.03205022,0.1704453;0.1722205;-0.02254282,0.1897559;-0.07370381;-0.0631422,-0.09222006;0.3731229;0.01454,-0.283129;0.3275084;0.05292114,-0.5269938;0.3825255;0.05468059,0.06669661;0.002660529;-0.04409631,0.08599783;-0.2942126;-0.005446196,0.07468689;-0.5861699;0.06261996,0.08418522;-0.6148803;0.001673646,-0.07420758;0.0055963;-0.02935841,-0.1046937;-0.2919365;-0.006016251,-0.1021059;-0.5860331;0.05314874,-0.1011059;-0.613328;-0.01029018,0.02490487;0.3990119;0.01114747,0;0;0,0.01067232;0.1995263;0.008681962,0.02758731;0.4989927;0.007697813,0.1317175;0.371469;-0.02884845,0.1721359;0.1762989;-0.01226551,0.2122882;-0.06899051;-0.03911526,-0.095552;0.3750143;0.005664787,-0.288579;0.3277766;0.02822904,-0.5352473;0.2909952;0.04560348,0.06891405;0.00310406;-0.04051196,0.08333119;-0.294486;-0.005407505,0.07036203;-0.5881252;0.05465763,0.08047222;-0.6187444;-0.003637481,-0.0723971;0.005026779;-0.03366587,-0.1052196;-0.2922018;-0.009627296,-0.105017;-0.5868024;0.04703352,-0.1074518;-0.6151465;-0.01506537,0.02187625;0.3992018;0.01072171,12.87815
-0;0;0,0.01264572;0.199404;0.008839932,0.03111855;0.4987781;0.008014741,0.132594;0.3683982;-0.03208845,0.1702152;0.1721946;-0.02266558,0.1896879;-0.0737246;-0.06321862,-0.09227595;0.373226;0.014556,-0.2831453;0.327428;0.05291536,-0.5266288;0.3841034;0.05483282,0.06665969;0.00267329;-0.04415132,0.08605707;-0.2941945;-0.005508538,0.07531917;-0.5863454;0.06181544,0.08292508;-0.6170663;0.003280893,-0.0742501;0.005590724;-0.02925178,-0.1046457;-0.2919668;-0.006107917,-0.102095;-0.5861094;0.05282966,-0.1000133;-0.6141852;-0.009618983,0.02486553;0.3990186;0.01100404,0;0;0,0.01083602;0.1995249;0.008509726,0.0279916;0.4989761;0.007198661,0.1322027;0.3711422;-0.02854456,0.1724648;0.1758464;-0.01310135,0.2116998;-0.0695221;-0.04057737,-0.09537323;0.3755646;0.006004712,-0.2888401;0.3305536;0.02934077,-0.5363511;0.2994013;0.04570705,0.06872284;0.003135192;-0.04083308,0.08324238;-0.2943788;-0.005131438,0.07026343;-0.5880474;0.05478776,0.08078598;-0.6186857;-0.00340794,-0.07250929;0.004956747;-0.03343401,-0.1053998;-0.2922755;-0.00953356,-0.1051312;-0.5868457;0.04728456,-0.107712;-0.6131719;-0.01727272,0.0221975;0.3991935;0.01033973,12.8895
-0;0;0,0.01264572;0.199404;0.008839932,0.03111855;0.4987781;0.008014741,0.132594;0.3683982;-0.03208845,0.1702152;0.1721946;-0.02266558,0.1896879;-0.0737246;-0.06321862,-0.09227595;0.373226;0.014556,-0.2831453;0.327428;0.05291536,-0.5266288;0.3841034;0.05483282,0.06665969;0.00267329;-0.04415132,0.08605707;-0.2941945;-0.005508538,0.07531917;-0.5863454;0.06181544,0.08292508;-0.6170663;0.003280893,-0.0742501;0.005590724;-0.02925178,-0.1046457;-0.2919668;-0.006107917,-0.102095;-0.5861094;0.05282966,-0.1000133;-0.6141852;-0.009618983,0.02486553;0.3990186;0.01100404,0;0;0,0.01083602;0.1995249;0.008509726,0.0279916;0.4989761;0.007198661,0.1322027;0.3711422;-0.02854456,0.1724648;0.1758464;-0.01310135,0.2116998;-0.0695221;-0.04057737,-0.09537323;0.3755646;0.006004712,-0.2888401;0.3305536;0.02934077,-0.5363511;0.2994013;0.04570705,0.06872284;0.003135192;-0.04083308,0.08324238;-0.2943788;-0.005131438,0.07026343;-0.5880474;0.05478776,0.08078598;-0.6186857;-0.00340794,-0.07250929;0.004956747;-0.03343401,-0.1053998;-0.2922755;-0.00953356,-0.1051312;-0.5868457;0.04728456,-0.107712;-0.6131719;-0.01727272,0.0221975;0.3991935;0.01033973,12.90106
-0;0;0,0.01264572;0.199404;0.008839932,0.03111855;0.4987781;0.008014741,0.132594;0.3683982;-0.03208845,0.1702152;0.1721946;-0.02266558,0.1896879;-0.0737246;-0.06321862,-0.09227595;0.373226;0.014556,-0.2831453;0.327428;0.05291536,-0.5266288;0.3841034;0.05483282,0.06665969;0.00267329;-0.04415132,0.08605707;-0.2941945;-0.005508538,0.07531917;-0.5863454;0.06181544,0.08292508;-0.6170663;0.003280893,-0.0742501;0.005590724;-0.02925178,-0.1046457;-0.2919668;-0.006107917,-0.102095;-0.5861094;0.05282966,-0.1000133;-0.6141852;-0.009618983,0.02486553;0.3990186;0.01100404,0;0;0,0.01083602;0.1995249;0.008509726,0.0279916;0.4989761;0.007198661,0.1322027;0.3711422;-0.02854456,0.1724648;0.1758464;-0.01310135,0.2116998;-0.0695221;-0.04057737,-0.09537323;0.3755646;0.006004712,-0.2888401;0.3305536;0.02934077,-0.5363511;0.2994013;0.04570705,0.06872284;0.003135192;-0.04083308,0.08324238;-0.2943788;-0.005131438,0.07026343;-0.5880474;0.05478776,0.08078598;-0.6186857;-0.00340794,-0.07250929;0.004956747;-0.03343401,-0.1053998;-0.2922755;-0.00953356,-0.1051312;-0.5868457;0.04728456,-0.107712;-0.6131719;-0.01727272,0.0221975;0.3991935;0.01033973,12.92286
-0;0;0,0.0126556;0.1994043;0.008818278,0.03117792;0.4987755;0.008001735,0.132629;0.3682997;-0.03206825,0.1702353;0.1720952;-0.02260462,0.1896015;-0.07383248;-0.06315748,-0.09222974;0.3732339;0.01457429,-0.2830778;0.3273797;0.0529724,-0.5261828;0.3856745;0.05426871,0.06663956;0.002678876;-0.04418136,0.08586583;-0.2941918;-0.005475532,0.07526221;-0.5863407;0.06187877,0.08297726;-0.6164497;0.002523575,-0.07427659;0.005594769;-0.02918369,-0.1045856;-0.2919706;-0.006027635,-0.1021455;-0.5861293;0.05283426,-0.09995785;-0.6143184;-0.009468801,0.02491282;0.3990166;0.01098634,0;0;0,0.01091619;0.1995225;0.008462807,0.0282171;0.4989651;0.007085399,0.132205;0.3706904;-0.02880569,0.1722072;0.1753493;-0.01326071,0.2108696;-0.07001343;-0.04158669,-0.09530144;0.3760388;0.006151592,-0.289196;0.333406;0.0303869,-0.5374734;0.3095417;0.04738222,0.06871261;0.003102617;-0.0408528,0.08318793;-0.2944266;-0.005260393,0.07026508;-0.588026;0.05500897,0.08084653;-0.6184419;-0.003483124,-0.07252004;0.005001427;-0.03340403,-0.1054483;-0.2922312;-0.009561023,-0.1051705;-0.5867953;0.04728857,-0.1078484;-0.613195;-0.01717786,0.02237369;0.399186;0.01024679,12.93438
-0;0;0,0.0126556;0.1994043;0.008818278,0.03117792;0.4987755;0.008001735,0.132629;0.3682997;-0.03206825,0.1702353;0.1720952;-0.02260462,0.1896015;-0.07383248;-0.06315748,-0.09222974;0.3732339;0.01457429,-0.2830778;0.3273797;0.0529724,-0.5261828;0.3856745;0.05426871,0.06663956;0.002678876;-0.04418136,0.08586583;-0.2941918;-0.005475532,0.07526221;-0.5863407;0.06187877,0.08297726;-0.6164497;0.002523575,-0.07427659;0.005594769;-0.02918369,-0.1045856;-0.2919706;-0.006027635,-0.1021455;-0.5861293;0.05283426,-0.09995785;-0.6143184;-0.009468801,0.02491282;0.3990166;0.01098634,0;0;0,0.01091619;0.1995225;0.008462807,0.0282171;0.4989651;0.007085399,0.132205;0.3706904;-0.02880569,0.1722072;0.1753493;-0.01326071,0.2108696;-0.07001343;-0.04158669,-0.09530144;0.3760388;0.006151592,-0.289196;0.333406;0.0303869,-0.5374734;0.3095417;0.04738222,0.06871261;0.003102617;-0.0408528,0.08318793;-0.2944266;-0.005260393,0.07026508;-0.588026;0.05500897,0.08084653;-0.6184419;-0.003483124,-0.07252004;0.005001427;-0.03340403,-0.1054483;-0.2922312;-0.009561023,-0.1051705;-0.5867953;0.04728857,-0.1078484;-0.613195;-0.01717786,0.02237369;0.399186;0.01024679,12.95639
-0;0;0,0.01273383;0.1994013;0.008773774,0.0313703;0.4987655;0.007943762,0.1328145;0.3683257;-0.0320909,0.1703793;0.1721147;-0.02259836,0.1896517;-0.07382573;-0.06311868,-0.09193704;0.3723989;0.01070101,-0.2822902;0.3278686;0.05292335,-0.5258889;0.384005;0.05581567,0.06665604;0.002655743;-0.04415789,0.08601975;-0.2942083;-0.005469047,0.07550309;-0.5863686;0.06184951,0.0830624;-0.6162888;0.002220571,-0.07429177;0.005636886;-0.0291369,-0.1044004;-0.2919511;-0.006010635,-0.1018856;-0.5861104;0.05284535,-0.1006963;-0.613916;-0.00996276,0.02507523;0.3990085;0.01093032,0;0;0,0.01091619;0.1995225;0.008462807,0.0282171;0.4989651;0.007085399,0.132205;0.3706904;-0.02880569,0.1722072;0.1753493;-0.01326071,0.2108696;-0.07001343;-0.04158669,-0.09530144;0.3760388;0.006151592,-0.289196;0.333406;0.0303869,-0.5374734;0.3095417;0.04738222,0.06871261;0.003102617;-0.0408528,0.08318793;-0.2944266;-0.005260393,0.07026508;-0.588026;0.05500897,0.08084653;-0.6184419;-0.003483124,-0.07252004;0.005001427;-0.03340403,-0.1054483;-0.2922312;-0.009561023,-0.1051705;-0.5867953;0.04728857,-0.1078484;-0.613195;-0.01717786,0.02237369;0.399186;0.01024679,12.97886
-0;0;0,0.01277271;0.199397;0.008815362,0.03149692;0.4987566;0.008106939,0.1329416;0.3684769;-0.03204902,0.1701718;0.1722206;-0.02218023,0.1897939;-0.07364675;-0.06297493,-0.09185961;0.3725273;0.01139467,-0.2823303;0.3278845;0.05296306,-0.5257316;0.384908;0.05499971,0.06664971;0.00268381;-0.04416573,0.08623759;-0.2941952;-0.005705465,0.07575512;-0.5863121;0.06180617,0.08352068;-0.6161006;0.002027478,-0.07429539;0.005617235;-0.02913144,-0.1042063;-0.2919945;-0.006052986,-0.1016527;-0.5861216;0.05296177,-0.1001941;-0.6136352;-0.01020079,0.02518362;0.3989991;0.01103937,0;0;0,0.01097193;0.1995231;0.008376525,0.02823768;0.4989678;0.006955096,0.1321117;0.3703804;-0.02907207,0.1717896;0.1749539;-0.01376983,0.2093991;-0.07043812;-0.04323638,-0.09536905;0.3765606;0.006221521,-0.2899656;0.3379153;0.03149457,-0.5383394;0.3148901;0.04823722,0.06869333;0.003022375;-0.0408912,0.08290558;-0.2945178;-0.005284388,0.07020206;-0.5881112;0.05506107,0.08134686;-0.6182677;-0.003681768,-0.07253342;0.005078928;-0.03336327,-0.1057474;-0.2921116;-0.009391882,-0.1055687;-0.586668;0.04749802,-0.1079632;-0.6136016;-0.01634159,0.02241365;0.3991879;0.01012563,13.00124
-0;0;0,0.01277271;0.199397;0.008815362,0.03149692;0.4987566;0.008106939,0.1329416;0.3684769;-0.03204902,0.1701718;0.1722206;-0.02218023,0.1897939;-0.07364675;-0.06297493,-0.09185961;0.3725273;0.01139467,-0.2823303;0.3278845;0.05296306,-0.5257316;0.384908;0.05499971,0.06664971;0.00268381;-0.04416573,0.08623759;-0.2941952;-0.005705465,0.07575512;-0.5863121;0.06180617,0.08352068;-0.6161006;0.002027478,-0.07429539;0.005617235;-0.02913144,-0.1042063;-0.2919945;-0.006052986,-0.1016527;-0.5861216;0.05296177,-0.1001941;-0.6136352;-0.01020079,0.02518362;0.3989991;0.01103937,0;0;0,0.01097193;0.1995231;0.008376525,0.02823768;0.4989678;0.006955096,0.1321117;0.3703804;-0.02907207,0.1717896;0.1749539;-0.01376983,0.2093991;-0.07043812;-0.04323638,-0.09536905;0.3765606;0.006221521,-0.2899656;0.3379153;0.03149457,-0.5383394;0.3148901;0.04823722,0.06869333;0.003022375;-0.0408912,0.08290558;-0.2945178;-0.005284388,0.07020206;-0.5881112;0.05506107,0.08134686;-0.6182677;-0.003681768,-0.07253342;0.005078928;-0.03336327,-0.1057474;-0.2921116;-0.009391882,-0.1055687;-0.586668;0.04749802,-0.1079632;-0.6136016;-0.01634159,0.02241365;0.3991879;0.01012563,13.01272
-0;0;0,0.01298694;0.1993814;0.008854927,0.0318788;0.4987302;0.008209125,0.1333038;0.3683282;-0.0318279,0.170373;0.172043;-0.02192999,0.1900052;-0.07382883;-0.0626933,-0.09155727;0.3727037;0.01180501,-0.2820662;0.3277192;0.05282633,-0.5253423;0.3852994;0.05392554,0.06675315;0.002647858;-0.04401143,0.08648823;-0.2942378;-0.005678248,0.07609343;-0.5863293;0.06195689,0.08436379;-0.6158943;0.001948424,-0.07427646;0.005639369;-0.02917541,-0.1036931;-0.291997;-0.005781449,-0.1007631;-0.5859631;0.0540127,-0.0996796;-0.6125014;-0.01033556,0.0255298;0.3989747;0.0111319,0;0;0,0.01097193;0.1995231;0.008376525,0.02823768;0.4989678;0.006955096,0.1321117;0.3703804;-0.02907207,0.1717896;0.1749539;-0.01376983,0.2093991;-0.07043812;-0.04323638,-0.09536905;0.3765606;0.006221521,-0.2899656;0.3379153;0.03149457,-0.5383394;0.3148901;0.04823722,0.06869333;0.003022375;-0.0408912,0.08290558;-0.2945178;-0.005284388,0.07020206;-0.5881112;0.05506107,0.08134686;-0.6182677;-0.003681768,-0.07253342;0.005078928;-0.03336327,-0.1057474;-0.2921116;-0.009391882,-0.1055687;-0.586668;0.04749802,-0.1079632;-0.6136016;-0.01634159,0.02241365;0.3991879;0.01012563,13.03457
-0;0;0,0.01298694;0.1993814;0.008854927,0.0318788;0.4987302;0.008209125,0.1333038;0.3683282;-0.0318279,0.170373;0.172043;-0.02192999,0.1900052;-0.07382883;-0.0626933,-0.09155727;0.3727037;0.01180501,-0.2820662;0.3277192;0.05282633,-0.5253423;0.3852994;0.05392554,0.06675315;0.002647858;-0.04401143,0.08648823;-0.2942378;-0.005678248,0.07609343;-0.5863293;0.06195689,0.08436379;-0.6158943;0.001948424,-0.07427646;0.005639369;-0.02917541,-0.1036931;-0.291997;-0.005781449,-0.1007631;-0.5859631;0.0540127,-0.0996796;-0.6125014;-0.01033556,0.0255298;0.3989747;0.0111319,0;0;0,0.01104731;0.1995191;0.008371186,0.02837788;0.4989603;0.006974361,0.13198;0.3700123;-0.02950171,0.1714242;0.1745529;-0.01401661,0.2084078;-0.07087365;-0.04398358,-0.09528159;0.3767082;0.006375931,-0.2905608;0.3415249;0.03143935,-0.5392996;0.323273;0.04864014,0.06856589;0.003048419;-0.04110262,0.08271183;-0.2944797;-0.005368188,0.07014009;-0.5880196;0.05526403,0.08132314;-0.6176813;-0.004141025,-0.07261869;0.005040636;-0.03318308,-0.1058769;-0.2921562;-0.00935157,-0.1057314;-0.5867199;0.04750136,-0.1083984;-0.6126581;-0.01750847,0.02253537;0.3991811;0.01013494,13.0459
-0;0;0,0.01298694;0.1993814;0.008854927,0.0318788;0.4987302;0.008209125,0.1333038;0.3683282;-0.0318279,0.170373;0.172043;-0.02192999,0.1900052;-0.07382883;-0.0626933,-0.09155727;0.3727037;0.01180501,-0.2820662;0.3277192;0.05282633,-0.5253423;0.3852994;0.05392554,0.06675315;0.002647858;-0.04401143,0.08648823;-0.2942378;-0.005678248,0.07609343;-0.5863293;0.06195689,0.08436379;-0.6158943;0.001948424,-0.07427646;0.005639369;-0.02917541,-0.1036931;-0.291997;-0.005781449,-0.1007631;-0.5859631;0.0540127,-0.0996796;-0.6125014;-0.01033556,0.0255298;0.3989747;0.0111319,0;0;0,0.01104731;0.1995191;0.008371186,0.02837788;0.4989603;0.006974361,0.13198;0.3700123;-0.02950171,0.1714242;0.1745529;-0.01401661,0.2084078;-0.07087365;-0.04398358,-0.09528159;0.3767082;0.006375931,-0.2905608;0.3415249;0.03143935,-0.5392996;0.323273;0.04864014,0.06856589;0.003048419;-0.04110262,0.08271183;-0.2944797;-0.005368188,0.07014009;-0.5880196;0.05526403,0.08132314;-0.6176813;-0.004141025,-0.07261869;0.005040636;-0.03318308,-0.1058769;-0.2921562;-0.00935157,-0.1057314;-0.5867199;0.04750136,-0.1083984;-0.6126581;-0.01750847,0.02253537;0.3991811;0.01013494,13.05685
-0;0;0,0.0129714;0.1993835;0.008829074,0.03185285;0.4987329;0.008142004,0.1332921;0.3682428;-0.03179422,0.1690117;0.171748;-0.02112208,0.1902215;-0.07389052;-0.06249657,-0.09158343;0.3727337;0.01192692,-0.282129;0.3274983;0.05249956,-0.5253138;0.3854581;0.05385979,0.06676535;0.002661428;-0.04399209,0.0864496;-0.2942339;-0.005708024,0.07591113;-0.5862847;0.06208065,0.08423701;-0.6159726;0.002243262,-0.07427111;0.005615148;-0.02919372,-0.1037438;-0.2919988;-0.005585926,-0.1007272;-0.5860041;0.05401065,-0.09973023;-0.6128849;-0.00992959,0.02550859;0.3989775;0.01107875,0;0;0,0.01104731;0.1995191;0.008371186,0.02837788;0.4989603;0.006974361,0.13198;0.3700123;-0.02950171,0.1714242;0.1745529;-0.01401661,0.2084078;-0.07087365;-0.04398358,-0.09528159;0.3767082;0.006375931,-0.2905608;0.3415249;0.03143935,-0.5392996;0.323273;0.04864014,0.06856589;0.003048419;-0.04110262,0.08271183;-0.2944797;-0.005368188,0.07014009;-0.5880196;0.05526403,0.08132314;-0.6176813;-0.004141025,-0.07261869;0.005040636;-0.03318308,-0.1058769;-0.2921562;-0.00935157,-0.1057314;-0.5867199;0.04750136,-0.1083984;-0.6126581;-0.01750847,0.02253537;0.3991811;0.01013494,13.07936
-0;0;0,0.01300013;0.1993813;0.008837716,0.03196311;0.4987255;0.008177313,0.1334335;0.3681466;-0.03157523,0.1690278;0.1716339;-0.020814,0.1903093;-0.07412447;-0.06143299,-0.0914759;0.3726707;0.01241699,-0.28206;0.3268203;0.05210911,-0.524973;0.3859213;0.05270779,0.06681774;0.002660495;-0.04391254,0.0864258;-0.2942635;-0.005811889,0.07599615;-0.5862964;0.06207031,0.08458337;-0.615721;0.001920596,-0.07423283;0.005606776;-0.02929251,-0.1037204;-0.2919896;-0.005483413,-0.1003951;-0.5859975;0.05408463,-0.09979322;-0.613028;-0.009679995,0.02559912;0.3989711;0.01110507,0;0;0,0.01115348;0.1995158;0.008308395,0.02862196;0.4989484;0.006808078,0.1321226;0.3699073;-0.02971286,0.171454;0.1744093;-0.0144289,0.2079349;-0.0710867;-0.04444306,-0.09515542;0.3770116;0.006671665,-0.2908604;0.3444664;0.03197717,-0.5396991;0.3278773;0.04941573,0.06835335;0.003034594;-0.04145612,0.0824747;-0.2944904;-0.005686399,0.07015572;-0.5879908;0.05518863,0.08173109;-0.6178794;-0.003835253,-0.07272647;0.005006379;-0.03295142,-0.1060754;-0.2922122;-0.009521626,-0.1057326;-0.5867157;0.04764143,-0.1093351;-0.6125985;-0.01738795,0.02273333;0.3991731;0.01000487,13.09063
-0;0;0,0.01300013;0.1993813;0.008837716,0.03196311;0.4987255;0.008177313,0.1334335;0.3681466;-0.03157523,0.1690278;0.1716339;-0.020814,0.1903093;-0.07412447;-0.06143299,-0.0914759;0.3726707;0.01241699,-0.28206;0.3268203;0.05210911,-0.524973;0.3859213;0.05270779,0.06681774;0.002660495;-0.04391254,0.0864258;-0.2942635;-0.005811889,0.07599615;-0.5862964;0.06207031,0.08458337;-0.615721;0.001920596,-0.07423283;0.005606776;-0.02929251,-0.1037204;-0.2919896;-0.005483413,-0.1003951;-0.5859975;0.05408463,-0.09979322;-0.613028;-0.009679995,0.02559912;0.3989711;0.01110507,0;0;0,0.01115348;0.1995158;0.008308395,0.02862196;0.4989484;0.006808078,0.1321226;0.3699073;-0.02971286,0.171454;0.1744093;-0.0144289,0.2079349;-0.0710867;-0.04444306,-0.09515542;0.3770116;0.006671665,-0.2908604;0.3444664;0.03197717,-0.5396991;0.3278773;0.04941573,0.06835335;0.003034594;-0.04145612,0.0824747;-0.2944904;-0.005686399,0.07015572;-0.5879908;0.05518863,0.08173109;-0.6178794;-0.003835253,-0.07272647;0.005006379;-0.03295142,-0.1060754;-0.2922122;-0.009521626,-0.1057326;-0.5867157;0.04764143,-0.1093351;-0.6125985;-0.01738795,0.02273333;0.3991731;0.01000487,13.10183
-0;0;0,0.01300013;0.1993813;0.008837716,0.03196311;0.4987255;0.008177313,0.1334335;0.3681466;-0.03157523,0.1690278;0.1716339;-0.020814,0.1903093;-0.07412447;-0.06143299,-0.0914759;0.3726707;0.01241699,-0.28206;0.3268203;0.05210911,-0.524973;0.3859213;0.05270779,0.06681774;0.002660495;-0.04391254,0.0864258;-0.2942635;-0.005811889,0.07599615;-0.5862964;0.06207031,0.08458337;-0.615721;0.001920596,-0.07423283;0.005606776;-0.02929251,-0.1037204;-0.2919896;-0.005483413,-0.1003951;-0.5859975;0.05408463,-0.09979322;-0.613028;-0.009679995,0.02559912;0.3989711;0.01110507,0;0;0,0.01115348;0.1995158;0.008308395,0.02862196;0.4989484;0.006808078,0.1321226;0.3699073;-0.02971286,0.171454;0.1744093;-0.0144289,0.2079349;-0.0710867;-0.04444306,-0.09515542;0.3770116;0.006671665,-0.2908604;0.3444664;0.03197717,-0.5396991;0.3278773;0.04941573,0.06835335;0.003034594;-0.04145612,0.0824747;-0.2944904;-0.005686399,0.07015572;-0.5879908;0.05518863,0.08173109;-0.6178794;-0.003835253,-0.07272647;0.005006379;-0.03295142,-0.1060754;-0.2922122;-0.009521626,-0.1057326;-0.5867157;0.04764143,-0.1093351;-0.6125985;-0.01738795,0.02273333;0.3991731;0.01000487,13.11319
-0;0;0,0.01291533;0.1993886;0.008796763,0.03182533;0.4987364;0.008108023,0.1333891;0.3682226;-0.03149379,0.1689076;0.1717176;-0.02034969,0.1904694;-0.07415418;-0.0601263,-0.09157582;0.3725971;0.01255805,-0.28217;0.3260953;0.0514351,-0.5249857;0.3855978;0.05149738,0.06685242;0.00267193;-0.04385903,0.08646928;-0.294258;-0.005808759,0.07606844;-0.5863038;0.06202253,0.08477043;-0.6158023;0.001987088,-0.07420126;0.005583523;-0.0293768,-0.1037562;-0.292001;-0.005503392,-0.1000961;-0.5859569;0.05430081,-0.1006554;-0.614301;-0.007843263,0.02547794;0.3989811;0.01103978,0;0;0,0.01127607;0.1995174;0.008103025,0.02911074;0.4989239;0.006034991,0.1324539;0.3696697;-0.03015496,0.1715981;0.1741217;-0.01503143,0.2075881;-0.07138701;-0.04553028,-0.0948511;0.3771724;0.006656625,-0.2911399;0.3484706;0.03209149,-0.5403254;0.3371524;0.04877927,0.06826836;0.003006032;-0.04159802,0.0820957;-0.2945449;-0.005929403,0.07003797;-0.5879854;0.05528557,0.08147267;-0.6184982;-0.002911802,-0.07275876;0.0050536;-0.03287284,-0.1061623;-0.2921658;-0.009531887,-0.1059197;-0.5866642;0.04765783,-0.1080784;-0.6127069;-0.0172486,0.02308357;0.399164;0.009445673,13.13542
-0;0;0,0.01291533;0.1993886;0.008796763,0.03182533;0.4987364;0.008108023,0.1333891;0.3682226;-0.03149379,0.1689076;0.1717176;-0.02034969,0.1904694;-0.07415418;-0.0601263,-0.09157582;0.3725971;0.01255805,-0.28217;0.3260953;0.0514351,-0.5249857;0.3855978;0.05149738,0.06685242;0.00267193;-0.04385903,0.08646928;-0.294258;-0.005808759,0.07606844;-0.5863038;0.06202253,0.08477043;-0.6158023;0.001987088,-0.07420126;0.005583523;-0.0293768,-0.1037562;-0.292001;-0.005503392,-0.1000961;-0.5859569;0.05430081,-0.1006554;-0.614301;-0.007843263,0.02547794;0.3989811;0.01103978,0;0;0,0.01127607;0.1995174;0.008103025,0.02911074;0.4989239;0.006034991,0.1324539;0.3696697;-0.03015496,0.1715981;0.1741217;-0.01503143,0.2075881;-0.07138701;-0.04553028,-0.0948511;0.3771724;0.006656625,-0.2911399;0.3484706;0.03209149,-0.5403254;0.3371524;0.04877927,0.06826836;0.003006032;-0.04159802,0.0820957;-0.2945449;-0.005929403,0.07003797;-0.5879854;0.05528557,0.08147267;-0.6184982;-0.002911802,-0.07275876;0.0050536;-0.03287284,-0.1061623;-0.2921658;-0.009531887,-0.1059197;-0.5866642;0.04765783,-0.1080784;-0.6127069;-0.0172486,0.02308357;0.399164;0.009445673,13.14662
-0;0;0,0.01296023;0.1993888;0.008725124,0.03199894;0.4987285;0.007979991,0.1335818;0.3682514;-0.03148927,0.1692241;0.1717955;-0.01988371,0.1909858;-0.07428867;-0.05821124,-0.09142141;0.3725144;0.01253584,-0.2818743;0.3248441;0.05068362,-0.524455;0.3852969;0.05044517,0.06685739;0.00268815;-0.04385046,0.08667506;-0.2942339;-0.005842946,0.07624641;-0.5863099;0.061854,0.08500776;-0.6156048;0.001558464,-0.07425451;0.005570889;-0.02924437,-0.1036543;-0.2920428;-0.005543293,-0.09964932;-0.5859643;0.05440778,-0.100341;-0.6153712;-0.006371077,0.02561356;0.398976;0.01092373,0;0;0,0.01127607;0.1995174;0.008103025,0.02911074;0.4989239;0.006034991,0.1324539;0.3696697;-0.03015496,0.1715981;0.1741217;-0.01503143,0.2075881;-0.07138701;-0.04553028,-0.0948511;0.3771724;0.006656625,-0.2911399;0.3484706;0.03209149,-0.5403254;0.3371524;0.04877927,0.06826836;0.003006032;-0.04159802,0.0820957;-0.2945449;-0.005929403,0.07003797;-0.5879854;0.05528557,0.08147267;-0.6184982;-0.002911802,-0.07275876;0.0050536;-0.03287284,-0.1061623;-0.2921658;-0.009531887,-0.1059197;-0.5866642;0.04765783,-0.1080784;-0.6127069;-0.0172486,0.02308357;0.399164;0.009445673,13.16883
-0;0;0,0.01296023;0.1993888;0.008725124,0.03199894;0.4987285;0.007979991,0.1335818;0.3682514;-0.03148927,0.1692241;0.1717955;-0.01988371,0.1909858;-0.07428867;-0.05821124,-0.09142141;0.3725144;0.01253584,-0.2818743;0.3248441;0.05068362,-0.524455;0.3852969;0.05044517,0.06685739;0.00268815;-0.04385046,0.08667506;-0.2942339;-0.005842946,0.07624641;-0.5863099;0.061854,0.08500776;-0.6156048;0.001558464,-0.07425451;0.005570889;-0.02924437,-0.1036543;-0.2920428;-0.005543293,-0.09964932;-0.5859643;0.05440778,-0.100341;-0.6153712;-0.006371077,0.02561356;0.398976;0.01092373,0;0;0,0.01141183;0.1995103;0.008088563,0.02941017;0.4989064;0.005943676,0.1325729;0.3696534;-0.03054664,0.1715503;0.1740785;-0.01534043,0.2070223;-0.07143763;-0.04638172,-0.09467576;0.377476;0.006850323,-0.2911679;0.3507048;0.03281447,-0.5405037;0.3413306;0.04842746,0.06816056;0.002910204;-0.04178122,0.08222502;-0.2946388;-0.006188806,0.07023447;-0.5880092;0.05537407,0.08163153;-0.6185537;-0.002786912,-0.07281135;0.005145431;-0.03274188,-0.1061427;-0.2921062;-0.009708675,-0.1060912;-0.5866532;0.04722988,-0.1083787;-0.6124144;-0.01800058,0.02332328;0.3991511;0.009383372,13.17993
-0;0;0,0.0129459;0.1993887;0.008750161,0.03201312;0.4987271;0.008073926,0.133649;0.3681836;-0.03122784,0.169432;0.1717799;-0.01917927,0.1916874;-0.07453249;-0.05571516,-0.09140173;0.3724565;0.01251183,-0.2817279;0.3238945;0.05016416,-0.5242746;0.3844826;0.04976945,0.06691645;0.002722156;-0.04375819,0.08654934;-0.2942167;-0.005786009,0.07636699;-0.5863066;0.06188852,0.08540379;-0.6160359;0.002209578,-0.07423431;0.005544437;-0.02930062,-0.1036667;-0.2920599;-0.005522531,-0.09907986;-0.5858113;0.05521546,-0.09995198;-0.6156713;-0.004964449,0.02562173;0.398974;0.01098656,0;0;0,0.01141183;0.1995103;0.008088563,0.02941017;0.4989064;0.005943676,0.1325729;0.3696534;-0.03054664,0.1715503;0.1740785;-0.01534043,0.2070223;-0.07143763;-0.04638172,-0.09467576;0.377476;0.006850323,-0.2911679;0.3507048;0.03281447,-0.5405037;0.3413306;0.04842746,0.06816056;0.002910204;-0.04178122,0.08222502;-0.2946388;-0.006188806,0.07023447;-0.5880092;0.05537407,0.08163153;-0.6185537;-0.002786912,-0.07281135;0.005145431;-0.03274188,-0.1061427;-0.2921062;-0.009708675,-0.1060912;-0.5866532;0.04722988,-0.1083787;-0.6124144;-0.01800058,0.02332328;0.3991511;0.009383372,13.20212
-0;0;0,0.0129459;0.1993887;0.008750161,0.03201312;0.4987271;0.008073926,0.133649;0.3681836;-0.03122784,0.169432;0.1717799;-0.01917927,0.1916874;-0.07453249;-0.05571516,-0.09140173;0.3724565;0.01251183,-0.2817279;0.3238945;0.05016416,-0.5242746;0.3844826;0.04976945,0.06691645;0.002722156;-0.04375819,0.08654934;-0.2942167;-0.005786009,0.07636699;-0.5863066;0.06188852,0.08540379;-0.6160359;0.002209578,-0.07423431;0.005544437;-0.02930062,-0.1036667;-0.2920599;-0.005522531,-0.09907986;-0.5858113;0.05521546,-0.09995198;-0.6156713;-0.004964449,0.02562173;0.398974;0.01098656,0;0;0,0.01141183;0.1995103;0.008088563,0.02941017;0.4989064;0.005943676,0.1325729;0.3696534;-0.03054664,0.1715503;0.1740785;-0.01534043,0.2070223;-0.07143763;-0.04638172,-0.09467576;0.377476;0.006850323,-0.2911679;0.3507048;0.03281447,-0.5405037;0.3413306;0.04842746,0.06816056;0.002910204;-0.04178122,0.08222502;-0.2946388;-0.006188806,0.07023447;-0.5880092;0.05537407,0.08163153;-0.6185537;-0.002786912,-0.07281135;0.005145431;-0.03274188,-0.1061427;-0.2921062;-0.009708675,-0.1060912;-0.5866532;0.04722988,-0.1083787;-0.6124144;-0.01800058,0.02332328;0.3991511;0.009383372,13.21374
-0;0;0,0.01294256;0.1993887;0.008754176,0.03205796;0.4987243;0.008103329,0.1337186;0.368104;-0.03105694,0.169498;0.1717425;-0.01832974,0.1924554;-0.07467194;-0.05372609,-0.09135473;0.372385;0.01253335,-0.2815946;0.323141;0.04973319,-0.5245676;0.3819754;0.0481099,0.06703866;0.002767436;-0.04356787,0.0867306;-0.2941678;-0.005598128,0.07665038;-0.586315;0.06184372,0.08590693;-0.616321;0.002570078,-0.07419094;0.005502452;-0.02941817,-0.1034645;-0.2921119;-0.005569788,-0.09879918;-0.5858709;0.05512544,-0.1005292;-0.6149496;-0.006059211,0.02565295;0.3989718;0.0110026,0;0;0,0.01146462;0.1995138;0.007925117,0.0294397;0.49891;0.005583161,0.1325342;0.369389;-0.03088214,0.1714037;0.1737765;-0.01588521,0.2067044;-0.07180431;-0.04660861,-0.09466374;0.3776441;0.006827966,-0.2914837;0.3533852;0.03277806,-0.5409589;0.3485588;0.04823121,0.06803662;0.002907768;-0.04198289,0.08188799;-0.2946194;-0.006125666,0.06990078;-0.5880113;0.05533589,0.08092179;-0.6181195;-0.003496081,-0.0728947;0.005175333;-0.03255116,-0.1063523;-0.2920896;-0.009875225,-0.1062516;-0.5865829;0.0473405,-0.1092744;-0.6116035;-0.01871075,0.02337082;0.3991557;0.009084135,13.2246
-0;0;0,0.01294256;0.1993887;0.008754176,0.03205796;0.4987243;0.008103329,0.1337186;0.368104;-0.03105694,0.169498;0.1717425;-0.01832974,0.1924554;-0.07467194;-0.05372609,-0.09135473;0.372385;0.01253335,-0.2815946;0.323141;0.04973319,-0.5245676;0.3819754;0.0481099,0.06703866;0.002767436;-0.04356787,0.0867306;-0.2941678;-0.005598128,0.07665038;-0.586315;0.06184372,0.08590693;-0.616321;0.002570078,-0.07419094;0.005502452;-0.02941817,-0.1034645;-0.2921119;-0.005569788,-0.09879918;-0.5858709;0.05512544,-0.1005292;-0.6149496;-0.006059211,0.02565295;0.3989718;0.0110026,0;0;0,0.01146462;0.1995138;0.007925117,0.0294397;0.49891;0.005583161,0.1325342;0.369389;-0.03088214,0.1714037;0.1737765;-0.01588521,0.2067044;-0.07180431;-0.04660861,-0.09466374;0.3776441;0.006827966,-0.2914837;0.3533852;0.03277806,-0.5409589;0.3485588;0.04823121,0.06803662;0.002907768;-0.04198289,0.08188799;-0.2946194;-0.006125666,0.06990078;-0.5880113;0.05533589,0.08092179;-0.6181195;-0.003496081,-0.0728947;0.005175333;-0.03255116,-0.1063523;-0.2920896;-0.009875225,-0.1062516;-0.5865829;0.0473405,-0.1092744;-0.6116035;-0.01871075,0.02337082;0.3991557;0.009084135,13.2468
-0;0;0,0.01294256;0.1993887;0.008754176,0.03205796;0.4987243;0.008103329,0.1337186;0.368104;-0.03105694,0.169498;0.1717425;-0.01832974,0.1924554;-0.07467194;-0.05372609,-0.09135473;0.372385;0.01253335,-0.2815946;0.323141;0.04973319,-0.5245676;0.3819754;0.0481099,0.06703866;0.002767436;-0.04356787,0.0867306;-0.2941678;-0.005598128,0.07665038;-0.586315;0.06184372,0.08590693;-0.616321;0.002570078,-0.07419094;0.005502452;-0.02941817,-0.1034645;-0.2921119;-0.005569788,-0.09879918;-0.5858709;0.05512544,-0.1005292;-0.6149496;-0.006059211,0.02565295;0.3989718;0.0110026,0;0;0,0.01146462;0.1995138;0.007925117,0.0294397;0.49891;0.005583161,0.1325342;0.369389;-0.03088214,0.1714037;0.1737765;-0.01588521,0.2067044;-0.07180431;-0.04660861,-0.09466374;0.3776441;0.006827966,-0.2914837;0.3533852;0.03277806,-0.5409589;0.3485588;0.04823121,0.06803662;0.002907768;-0.04198289,0.08188799;-0.2946194;-0.006125666,0.06990078;-0.5880113;0.05533589,0.08092179;-0.6181195;-0.003496081,-0.0728947;0.005175333;-0.03255116,-0.1063523;-0.2920896;-0.009875225,-0.1062516;-0.5865829;0.0473405,-0.1092744;-0.6116035;-0.01871075,0.02337082;0.3991557;0.009084135,13.25813
-0;0;0,0.01278695;0.1993967;0.008799912,0.03151839;0.4987577;0.008343291,0.1334088;0.3681725;-0.0307278,0.1692872;0.1718384;-0.01785736,0.1931163;-0.07457128;-0.05270661,-0.09170844;0.3722385;0.01256538,-0.2818603;0.321692;0.04844445,-0.5250137;0.379792;0.04755234,0.06707099;0.002827918;-0.0435142,0.08669573;-0.29412;-0.005608797,0.07659467;-0.5862318;0.06198315,0.0859092;-0.6164049;0.002944987,-0.07417702;0.005385832;-0.02947477,-0.1033524;-0.2922325;-0.005555267,-0.09866057;-0.5860028;0.05508275,-0.1001279;-0.614908;-0.006332416,0.0252625;0.3989933;0.01115841,0;0;0,0.01158361;0.1995101;0.007845001,0.02969154;0.4988983;0.005472305,0.1328749;0.3692375;-0.03053275,0.1715634;0.1735231;-0.01642443,0.2069048;-0.07209897;-0.04676912,-0.0944923;0.37784;0.006969295,-0.2914411;0.3550153;0.03324093,-0.5410038;0.3518489;0.04767839,0.06796776;0.002856507;-0.0420978,0.08178591;-0.2946577;-0.006120574,0.0699922;-0.5880578;0.05533908,0.08082785;-0.6190732;-0.002272476,-0.07297591;0.005180281;-0.0323679,-0.1064574;-0.2920911;-0.009812627,-0.106503;-0.5865729;0.04746274,-0.1089529;-0.6150551;-0.01446094,0.02358397;0.3991465;0.008976107,13.27001
-0;0;0,0.01268076;0.1993999;0.008882118,0.03119238;0.4987755;0.008681376,0.1332519;0.3682261;-0.03029428,0.1692891;0.1719509;-0.01697624,0.1932568;-0.07437587;-0.05231278,-0.09191419;0.3720635;0.01258877,-0.2819345;0.3206181;0.04788278,-0.5255681;0.3766508;0.04615334,0.06714595;0.002818631;-0.04339904,0.08663111;-0.294134;-0.005458601,0.07626797;-0.5862556;0.06205118,0.08612939;-0.6158789;0.002361257,-0.07415474;0.005370213;-0.02953363,-0.1032725;-0.2922488;-0.005551936,-0.09877493;-0.5860298;0.05504936,-0.1000901;-0.6149191;-0.006389577,0.02501664;0.3990033;0.01139377,0;0;0,0.01158361;0.1995101;0.007845001,0.02969154;0.4988983;0.005472305,0.1328749;0.3692375;-0.03053275,0.1715634;0.1735231;-0.01642443,0.2069048;-0.07209897;-0.04676912,-0.0944923;0.37784;0.006969295,-0.2914411;0.3550153;0.03324093,-0.5410038;0.3518489;0.04767839,0.06796776;0.002856507;-0.0420978,0.08178591;-0.2946577;-0.006120574,0.0699922;-0.5880578;0.05533908,0.08082785;-0.6190732;-0.002272476,-0.07297591;0.005180281;-0.0323679,-0.1064574;-0.2920911;-0.009812627,-0.106503;-0.5865729;0.04746274,-0.1089529;-0.6150551;-0.01446094,0.02358397;0.3991465;0.008976107,13.29169
-0;0;0,0.01268076;0.1993999;0.008882118,0.03119238;0.4987755;0.008681376,0.1332519;0.3682261;-0.03029428,0.1692891;0.1719509;-0.01697624,0.1932568;-0.07437587;-0.05231278,-0.09191419;0.3720635;0.01258877,-0.2819345;0.3206181;0.04788278,-0.5255681;0.3766508;0.04615334,0.06714595;0.002818631;-0.04339904,0.08663111;-0.294134;-0.005458601,0.07626797;-0.5862556;0.06205118,0.08612939;-0.6158789;0.002361257,-0.07415474;0.005370213;-0.02953363,-0.1032725;-0.2922488;-0.005551936,-0.09877493;-0.5860298;0.05504936,-0.1000901;-0.6149191;-0.006389577,0.02501664;0.3990033;0.01139377,0;0;0,0.01158361;0.1995101;0.007845001,0.02969154;0.4988983;0.005472305,0.1328749;0.3692375;-0.03053275,0.1715634;0.1735231;-0.01642443,0.2069048;-0.07209897;-0.04676912,-0.0944923;0.37784;0.006969295,-0.2914411;0.3550153;0.03324093,-0.5410038;0.3518489;0.04767839,0.06796776;0.002856507;-0.0420978,0.08178591;-0.2946577;-0.006120574,0.0699922;-0.5880578;0.05533908,0.08082785;-0.6190732;-0.002272476,-0.07297591;0.005180281;-0.0323679,-0.1064574;-0.2920911;-0.009812627,-0.106503;-0.5865729;0.04746274,-0.1089529;-0.6150551;-0.01446094,0.02358397;0.3991465;0.008976107,13.30299
-0;0;0,0.01270125;0.1993951;0.008959177,0.03128995;0.4987661;0.008867649,0.1334644;0.3683431;-0.02988105,0.1696288;0.1720918;-0.01655564,0.1940948;-0.07425502;-0.05140781,-0.09183071;0.3720141;0.0126105,-0.2817741;0.3194394;0.04663129,-0.5260592;0.3725266;0.04407779,0.06724116;0.00279384;-0.04325297,0.0868272;-0.2941563;-0.005344912,0.07648988;-0.5862805;0.06215787,0.08634594;-0.6157544;0.002268437,-0.07413409;0.00537411;-0.02958471,-0.1027673;-0.2922769;-0.005418677,-0.09852462;-0.5861177;0.05491057,-0.09952823;-0.6153977;-0.006029379,0.02509207;0.3989942;0.011543,0;0;0,0.01164213;0.1995086;0.007795769,0.02977663;0.4988956;0.00543661,0.1330561;0.3691108;-0.0302084,0.1717421;0.1733651;-0.01653251,0.2069093;-0.0722784;-0.0469056,-0.0944399;0.377985;0.007104657,-0.2914718;0.3558048;0.03330548,-0.5411125;0.3577076;0.0465671,0.06790478;0.002861289;-0.04219899,0.0816754;-0.2946187;-0.005922146,0.06981449;-0.5880158;0.055539,0.08045851;-0.6192299;-0.001828082,-0.07305437;0.005147294;-0.03219572,-0.1066009;-0.2921246;-0.009745155,-0.1066621;-0.5866232;0.04744379,-0.1092043;-0.6148643;-0.01478043,0.02366589;0.3991436;0.008929905,13.32505
-0;0;0,0.01270125;0.1993951;0.008959177,0.03128995;0.4987661;0.008867649,0.1334644;0.3683431;-0.02988105,0.1696288;0.1720918;-0.01655564,0.1940948;-0.07425502;-0.05140781,-0.09183071;0.3720141;0.0126105,-0.2817741;0.3194394;0.04663129,-0.5260592;0.3725266;0.04407779,0.06724116;0.00279384;-0.04325297,0.0868272;-0.2941563;-0.005344912,0.07648988;-0.5862805;0.06215787,0.08634594;-0.6157544;0.002268437,-0.07413409;0.00537411;-0.02958471,-0.1027673;-0.2922769;-0.005418677,-0.09852462;-0.5861177;0.05491057,-0.09952823;-0.6153977;-0.006029379,0.02509207;0.3989942;0.011543,0;0;0,0.01164213;0.1995086;0.007795769,0.02977663;0.4988956;0.00543661,0.1330561;0.3691108;-0.0302084,0.1717421;0.1733651;-0.01653251,0.2069093;-0.0722784;-0.0469056,-0.0944399;0.377985;0.007104657,-0.2914718;0.3558048;0.03330548,-0.5411125;0.3577076;0.0465671,0.06790478;0.002861289;-0.04219899,0.0816754;-0.2946187;-0.005922146,0.06981449;-0.5880158;0.055539,0.08045851;-0.6192299;-0.001828082,-0.07305437;0.005147294;-0.03219572,-0.1066009;-0.2921246;-0.009745155,-0.1066621;-0.5866232;0.04744379,-0.1092043;-0.6148643;-0.01478043,0.02366589;0.3991436;0.008929905,13.33687
-0;0;0,0.01260255;0.1993984;0.009026406,0.03088495;0.4987887;0.009161185,0.133232;0.368418;-0.02957179,0.1695466;0.1722104;-0.01601345,0.1943332;-0.07416996;-0.05039839,-0.09207135;0.3718063;0.01249824,-0.2818947;0.3183364;0.0457857,-0.5265168;0.3698303;0.04288551,0.06730543;0.00281083;-0.04315179,0.08676737;-0.2941432;-0.005210247,0.07634472;-0.5863152;0.06207194,0.08639342;-0.6160309;0.002536833,-0.07411533;0.005336518;-0.02963848,-0.1027569;-0.2923132;-0.005466219,-0.09853643;-0.5861495;0.05488664,-0.09884845;-0.614928;-0.006707501,0.02480269;0.3990074;0.01174854,0;0;0,0.01164213;0.1995086;0.007795769,0.02977663;0.4988956;0.00543661,0.1330561;0.3691108;-0.0302084,0.1717421;0.1733651;-0.01653251,0.2069093;-0.0722784;-0.0469056,-0.0944399;0.377985;0.007104657,-0.2914718;0.3558048;0.03330548,-0.5411125;0.3577076;0.0465671,0.06790478;0.002861289;-0.04219899,0.0816754;-0.2946187;-0.005922146,0.06981449;-0.5880158;0.055539,0.08045851;-0.6192299;-0.001828082,-0.07305437;0.005147294;-0.03219572,-0.1066009;-0.2921246;-0.009745155,-0.1066621;-0.5866232;0.04744379,-0.1092043;-0.6148643;-0.01478043,0.02366589;0.3991436;0.008929905,13.35849
-0;0;0,0.01260255;0.1993984;0.009026406,0.03088495;0.4987887;0.009161185,0.133232;0.368418;-0.02957179,0.1695466;0.1722104;-0.01601345,0.1943332;-0.07416996;-0.05039839,-0.09207135;0.3718063;0.01249824,-0.2818947;0.3183364;0.0457857,-0.5265168;0.3698303;0.04288551,0.06730543;0.00281083;-0.04315179,0.08676737;-0.2941432;-0.005210247,0.07634472;-0.5863152;0.06207194,0.08639342;-0.6160309;0.002536833,-0.07411533;0.005336518;-0.02963848,-0.1027569;-0.2923132;-0.005466219,-0.09853643;-0.5861495;0.05488664,-0.09884845;-0.614928;-0.006707501,0.02480269;0.3990074;0.01174854,0;0;0,0.01164521;0.1995111;0.007728549,0.02974981;0.4988989;0.005256196,0.1330103;0.369261;-0.030554,0.1714653;0.173492;-0.01656348,0.2064574;-0.07217716;-0.04693144,-0.09447017;0.3780779;0.007068367,-0.2915922;0.3567194;0.03327333,-0.5413147;0.3620999;0.04374824,0.06787582;0.002850803;-0.04224626,0.08168253;-0.2946174;-0.005885959,0.06976919;-0.5879911;0.05567668,0.0803269;-0.6186218;-0.002523165,-0.0730712;0.005163842;-0.03215485,-0.106666;-0.2921172;-0.009898011,-0.1067945;-0.5865693;0.04752988,-0.1092587;-0.613661;-0.016116,0.02365314;0.3991475;0.008788217,13.37002
-0;0;0,0.01260255;0.1993984;0.009026406,0.03088495;0.4987887;0.009161185,0.133232;0.368418;-0.02957179,0.1695466;0.1722104;-0.01601345,0.1943332;-0.07416996;-0.05039839,-0.09207135;0.3718063;0.01249824,-0.2818947;0.3183364;0.0457857,-0.5265168;0.3698303;0.04288551,0.06730543;0.00281083;-0.04315179,0.08676737;-0.2941432;-0.005210247,0.07634472;-0.5863152;0.06207194,0.08639342;-0.6160309;0.002536833,-0.07411533;0.005336518;-0.02963848,-0.1027569;-0.2923132;-0.005466219,-0.09853643;-0.5861495;0.05488664,-0.09884845;-0.614928;-0.006707501,0.02480269;0.3990074;0.01174854,0;0;0,0.01164521;0.1995111;0.007728549,0.02974981;0.4988989;0.005256196,0.1330103;0.369261;-0.030554,0.1714653;0.173492;-0.01656348,0.2064574;-0.07217716;-0.04693144,-0.09447017;0.3780779;0.007068367,-0.2915922;0.3567194;0.03327333,-0.5413147;0.3620999;0.04374824,0.06787582;0.002850803;-0.04224626,0.08168253;-0.2946174;-0.005885959,0.06976919;-0.5879911;0.05567668,0.0803269;-0.6186218;-0.002523165,-0.0730712;0.005163842;-0.03215485,-0.106666;-0.2921172;-0.009898011,-0.1067945;-0.5865693;0.04752988,-0.1092587;-0.613661;-0.016116,0.02365314;0.3991475;0.008788217,13.38136
-0;0;0,0.01002519;0.1995994;0.007719563,0.02487195;0.4991753;0.0060622,0.1272425;0.3699085;-0.03575281,0.1745427;0.1758595;-0.02537581,0.2049631;-0.06946957;-0.06263482,-0.09716697;0.3734842;0.01265849,-0.2952528;0.3518243;0.02977173,-0.5450794;0.3497937;0.03885857,0.06596667;0.004361846;-0.04504855,0.09011828;-0.2923304;-0.007760376,0.07989913;-0.5838975;0.06212685,0.09093054;-0.6142181;0.003587037,-0.07511392;0.003654965;-0.02728624,-0.1004997;-0.2945283;-0.00625436,-0.09589452;-0.5882294;0.0547245,-0.09598384;-0.616629;-0.00735205,0.01996317;0.3993465;0.009242289,0;0;0,0.01164521;0.1995111;0.007728549,0.02974981;0.4988989;0.005256196,0.1330103;0.369261;-0.030554,0.1714653;0.173492;-0.01656348,0.2064574;-0.07217716;-0.04693144,-0.09447017;0.3780779;0.007068367,-0.2915922;0.3567194;0.03327333,-0.5413147;0.3620999;0.04374824,0.06787582;0.002850803;-0.04224626,0.08168253;-0.2946174;-0.005885959,0.06976919;-0.5879911;0.05567668,0.0803269;-0.6186218;-0.002523165,-0.0730712;0.005163842;-0.03215485,-0.106666;-0.2921172;-0.009898011,-0.1067945;-0.5865693;0.04752988,-0.1092587;-0.613661;-0.016116,0.02365314;0.3991475;0.008788217,21.84749
-0;0;0,0.01002519;0.1995994;0.007719563,0.02487195;0.4991753;0.0060622,0.1272425;0.3699085;-0.03575281,0.1745427;0.1758595;-0.02537581,0.2049631;-0.06946957;-0.06263482,-0.09716697;0.3734842;0.01265849,-0.2952528;0.3518243;0.02977173,-0.5450794;0.3497937;0.03885857,0.06596667;0.004361846;-0.04504855,0.09011828;-0.2923304;-0.007760376,0.07989913;-0.5838975;0.06212685,0.09093054;-0.6142181;0.003587037,-0.07511392;0.003654965;-0.02728624,-0.1004997;-0.2945283;-0.00625436,-0.09589452;-0.5882294;0.0547245,-0.09598384;-0.616629;-0.00735205,0.01996317;0.3993465;0.009242289,0;0;0,0.01169822;0.1995087;0.007708236,0.0298281;0.4988954;0.005262244,0.1328993;0.3690833;-0.0309401,0.1710039;0.1732536;-0.01684215,0.206036;-0.07247451;-0.04668232,-0.09442621;0.378226;0.007306126,-0.2916021;0.3571987;0.0333737,-0.5413338;0.3654244;0.04152389,0.0678387;0.002808438;-0.04230867,0.08161443;-0.2946391;-0.005768292,0.06953624;-0.5879918;0.05586242,0.08019961;-0.618793;-0.002081178,-0.07311286;0.005189722;-0.03205582,-0.1069782;-0.2920834;-0.01010481,-0.1069837;-0.5864767;0.04762382,-0.1094092;-0.6124607;-0.01734195,0.02372738;0.3991438;0.008782271,21.86386
-0;0;0,0.01011431;0.1995966;0.007675671,0.02501715;0.4991698;0.005990927,0.1274652;0.3698359;-0.03554811,0.1746386;0.1757506;-0.02527435,0.2048298;-0.06962831;-0.06239177,-0.09705302;0.373548;0.01264648,-0.2951059;0.3513727;0.02947816,-0.5449419;0.3498701;0.03840791,0.06596533;0.004353389;-0.04505133,0.09021077;-0.2923321;-0.007770147,0.07996531;-0.583959;0.06186316,0.09113768;-0.6145055;0.003661532,-0.07513473;0.003660181;-0.0272282,-0.1003559;-0.2945428;-0.006278118,-0.09588955;-0.5882108;0.0548706,-0.1086277;-0.5558866;-0.04272708,0.02009054;0.399342;0.009173982,0;0;0,0.01169822;0.1995087;0.007708236,0.0298281;0.4988954;0.005262244,0.1328993;0.3690833;-0.0309401,0.1710039;0.1732536;-0.01684215,0.206036;-0.07247451;-0.04668232,-0.09442621;0.378226;0.007306126,-0.2916021;0.3571987;0.0333737,-0.5413338;0.3654244;0.04152389,0.0678387;0.002808438;-0.04230867,0.08161443;-0.2946391;-0.005768292,0.06953624;-0.5879918;0.05586242,0.08019961;-0.618793;-0.002081178,-0.07311286;0.005189722;-0.03205582,-0.1069782;-0.2920834;-0.01010481,-0.1069837;-0.5864767;0.04762382,-0.1094092;-0.6124607;-0.01734195,0.02372738;0.3991438;0.008782271,21.87985
-0;0;0,0.01019023;0.1995933;0.007659694,0.02522408;0.4991605;0.005989804,0.1275748;0.3697323;-0.03559333,0.1747534;0.1756642;-0.02502185,0.2049841;-0.06968331;-0.06231359,-0.09689212;0.3734841;0.01261644,-0.2949587;0.3512288;0.02917877,-0.5448008;0.3498919;0.03796284,0.06603847;0.004364762;-0.04494295,0.09043081;-0.292337;-0.007887505,0.08018052;-0.5839757;0.06169535,0.09135204;-0.6145257;0.003498267,-0.07508967;0.00365203;-0.02735333,-0.1002261;-0.2945556;-0.006368672,-0.09581249;-0.5882736;0.0545432,-0.1085488;-0.555945;-0.04305553,0.02023932;0.3993351;0.009159104,0;0;0,0.01169822;0.1995087;0.007708236,0.0298281;0.4988954;0.005262244,0.1328993;0.3690833;-0.0309401,0.1710039;0.1732536;-0.01684215,0.206036;-0.07247451;-0.04668232,-0.09442621;0.378226;0.007306126,-0.2916021;0.3571987;0.0333737,-0.5413338;0.3654244;0.04152389,0.0678387;0.002808438;-0.04230867,0.08161443;-0.2946391;-0.005768292,0.06953624;-0.5879918;0.05586242,0.08019961;-0.618793;-0.002081178,-0.07311286;0.005189722;-0.03205582,-0.1069782;-0.2920834;-0.01010481,-0.1069837;-0.5864767;0.04762382,-0.1094092;-0.6124607;-0.01734195,0.02372738;0.3991438;0.008782271,21.9002
-0;0;0,0.01019023;0.1995933;0.007659694,0.02522408;0.4991605;0.005989804,0.1275748;0.3697323;-0.03559333,0.1747534;0.1756642;-0.02502185,0.2049841;-0.06968331;-0.06231359,-0.09689212;0.3734841;0.01261644,-0.2949587;0.3512288;0.02917877,-0.5448008;0.3498919;0.03796284,0.06603847;0.004364762;-0.04494295,0.09043081;-0.292337;-0.007887505,0.08018052;-0.5839757;0.06169535,0.09135204;-0.6145257;0.003498267,-0.07508967;0.00365203;-0.02735333,-0.1002261;-0.2945556;-0.006368672,-0.09581249;-0.5882736;0.0545432,-0.1085488;-0.555945;-0.04305553,0.02023932;0.3993351;0.009159104,0;0;0,0.01174298;0.1995073;0.007678176,0.02991677;0.4988911;0.005200417,0.1330879;0.3688969;-0.03053935,0.1712231;0.1730277;-0.01708736,0.2061842;-0.0727368;-0.04671054,-0.09436992;0.3783248;0.00733612,-0.2916673;0.3578678;0.03293361,-0.5414044;0.3675339;0.03909692,0.06785336;0.002768596;-0.04228778,0.08168644;-0.2946776;-0.005757827,0.06970574;-0.5880295;0.05589515,0.08041698;-0.6187912;-0.002094708,-0.0731125;0.005226471;-0.0320507,-0.1069417;-0.2920447;-0.01001793,-0.1068513;-0.586444;0.04767973,-0.1099855;-0.612691;-0.01694673,0.02380266;0.3991406;0.00872956,21.91186
-0;0;0,0.01019023;0.1995933;0.007659694,0.02522408;0.4991605;0.005989804,0.1275748;0.3697323;-0.03559333,0.1747534;0.1756642;-0.02502185,0.2049841;-0.06968331;-0.06231359,-0.09689212;0.3734841;0.01261644,-0.2949587;0.3512288;0.02917877,-0.5448008;0.3498919;0.03796284,0.06603847;0.004364762;-0.04494295,0.09043081;-0.292337;-0.007887505,0.08018052;-0.5839757;0.06169535,0.09135204;-0.6145257;0.003498267,-0.07508967;0.00365203;-0.02735333,-0.1002261;-0.2945556;-0.006368672,-0.09581249;-0.5882736;0.0545432,-0.1085488;-0.555945;-0.04305553,0.02023932;0.3993351;0.009159104,0;0;0,0.01174298;0.1995073;0.007678176,0.02991677;0.4988911;0.005200417,0.1330879;0.3688969;-0.03053935,0.1712231;0.1730277;-0.01708736,0.2061842;-0.0727368;-0.04671054,-0.09436992;0.3783248;0.00733612,-0.2916673;0.3578678;0.03293361,-0.5414044;0.3675339;0.03909692,0.06785336;0.002768596;-0.04228778,0.08168644;-0.2946776;-0.005757827,0.06970574;-0.5880295;0.05589515,0.08041698;-0.6187912;-0.002094708,-0.0731125;0.005226471;-0.0320507,-0.1069417;-0.2920447;-0.01001793,-0.1068513;-0.586444;0.04767973,-0.1099855;-0.612691;-0.01694673,0.02380266;0.3991406;0.00872956,21.92295
-0;0;0,0.0102139;0.1995939;0.007612918,0.0252868;0.4991589;0.005893269,0.1277117;0.3697766;-0.03550041,0.1748188;0.1756845;-0.025052,0.2050695;-0.06971996;-0.06195114,-0.09683632;0.3734657;0.01255449,-0.2949047;0.3511287;0.02898546,-0.5447505;0.3497571;0.03765667,0.06605768;0.004336838;-0.04491743,0.0905809;-0.2923667;-0.00796267,0.08021691;-0.5839841;0.06169249,0.09125768;-0.6141447;0.002935551,-0.07506832;0.003676341;-0.02740862,-0.1001432;-0.2945425;-0.006509295,-0.0957401;-0.5882783;0.05431759,-0.1084314;-0.5559521;-0.04328655,0.02029054;0.3993345;0.009075604,0;0;0,0.01174298;0.1995073;0.007678176,0.02991677;0.4988911;0.005200417,0.1330879;0.3688969;-0.03053935,0.1712231;0.1730277;-0.01708736,0.2061842;-0.0727368;-0.04671054,-0.09436992;0.3783248;0.00733612,-0.2916673;0.3578678;0.03293361,-0.5414044;0.3675339;0.03909692,0.06785336;0.002768596;-0.04228778,0.08168644;-0.2946776;-0.005757827,0.06970574;-0.5880295;0.05589515,0.08041698;-0.6187912;-0.002094708,-0.0731125;0.005226471;-0.0320507,-0.1069417;-0.2920447;-0.01001793,-0.1068513;-0.586444;0.04767973,-0.1099855;-0.612691;-0.01694673,0.02380266;0.3991406;0.00872956,21.94495
-0;0;0,0.0102139;0.1995939;0.007612918,0.0252868;0.4991589;0.005893269,0.1277117;0.3697766;-0.03550041,0.1748188;0.1756845;-0.025052,0.2050695;-0.06971996;-0.06195114,-0.09683632;0.3734657;0.01255449,-0.2949047;0.3511287;0.02898546,-0.5447505;0.3497571;0.03765667,0.06605768;0.004336838;-0.04491743,0.0905809;-0.2923667;-0.00796267,0.08021691;-0.5839841;0.06169249,0.09125768;-0.6141447;0.002935551,-0.07506832;0.003676341;-0.02740862,-0.1001432;-0.2945425;-0.006509295,-0.0957401;-0.5882783;0.05431759,-0.1084314;-0.5559521;-0.04328655,0.02029054;0.3993345;0.009075604,0;0;0,0.01184276;0.1995016;0.007672532,0.03010917;0.4988795;0.005172111,0.1333438;0.368769;-0.03020277,0.1714871;0.1728835;-0.01701308,0.2063949;-0.07285824;-0.04688673,-0.09422214;0.3783908;0.007390608,-0.2915851;0.358184;0.03267997,-0.5412002;0.3715886;0.03623523,0.06776664;0.002752461;-0.04242767,0.08175153;-0.2946532;-0.005626604,0.06978932;-0.5880073;0.0560195,0.08070216;-0.6188355;-0.001839928,-0.07317404;0.00525666;-0.03190495,-0.1068544;-0.2920342;-0.00991028,-0.1068885;-0.5864795;0.04755265,-0.1092574;-0.6130775;-0.01669012,0.02396455;0.3991312;0.008711346,21.9567
-0;0;0,0.01021656;0.1995934;0.007621503,0.02532056;0.4991567;0.005886796,0.1277795;0.3696799;-0.03532057,0.1746482;0.1755342;-0.02479473,0.2049014;-0.06984797;-0.06183949,-0.09681723;0.373466;0.01253724,-0.294883;0.3510648;0.02891206,-0.5447361;0.3497686;0.03738135,0.06604283;0.004318821;-0.04494098,0.09058212;-0.2923645;-0.007835321,0.080267;-0.5840452;0.0615618,0.09156822;-0.6144357;0.003169529,-0.07508036;0.003703772;-0.0273719,-0.1000997;-0.2945258;-0.006559378,-0.09571118;-0.5882789;0.05418509,-0.1083467;-0.5559528;-0.04342627,0.02031053;0.3993332;0.009076498,0;0;0,0.01184276;0.1995016;0.007672532,0.03010917;0.4988795;0.005172111,0.1333438;0.368769;-0.03020277,0.1714871;0.1728835;-0.01701308,0.2063949;-0.07285824;-0.04688673,-0.09422214;0.3783908;0.007390608,-0.2915851;0.358184;0.03267997,-0.5412002;0.3715886;0.03623523,0.06776664;0.002752461;-0.04242767,0.08175153;-0.2946532;-0.005626604,0.06978932;-0.5880073;0.0560195,0.08070216;-0.6188355;-0.001839928,-0.07317404;0.00525666;-0.03190495,-0.1068544;-0.2920342;-0.00991028,-0.1068885;-0.5864795;0.04755265,-0.1092574;-0.6130775;-0.01669012,0.02396455;0.3991312;0.008711346,21.97967
-0;0;0,0.01021656;0.1995934;0.007621503,0.02532056;0.4991567;0.005886796,0.1277795;0.3696799;-0.03532057,0.1746482;0.1755342;-0.02479473,0.2049014;-0.06984797;-0.06183949,-0.09681723;0.373466;0.01253724,-0.294883;0.3510648;0.02891206,-0.5447361;0.3497686;0.03738135,0.06604283;0.004318821;-0.04494098,0.09058212;-0.2923645;-0.007835321,0.080267;-0.5840452;0.0615618,0.09156822;-0.6144357;0.003169529,-0.07508036;0.003703772;-0.0273719,-0.1000997;-0.2945258;-0.006559378,-0.09571118;-0.5882789;0.05418509,-0.1083467;-0.5559528;-0.04342627,0.02031053;0.3993332;0.009076498,0;0;0,0.01184276;0.1995016;0.007672532,0.03010917;0.4988795;0.005172111,0.1333438;0.368769;-0.03020277,0.1714871;0.1728835;-0.01701308,0.2063949;-0.07285824;-0.04688673,-0.09422214;0.3783908;0.007390608,-0.2915851;0.358184;0.03267997,-0.5412002;0.3715886;0.03623523,0.06776664;0.002752461;-0.04242767,0.08175153;-0.2946532;-0.005626604,0.06978932;-0.5880073;0.0560195,0.08070216;-0.6188355;-0.001839928,-0.07317404;0.00525666;-0.03190495,-0.1068544;-0.2920342;-0.00991028,-0.1068885;-0.5864795;0.04755265,-0.1092574;-0.6130775;-0.01669012,0.02396455;0.3991312;0.008711346,21.99073
-0;0;0,0.0103156;0.1995926;0.007509075,0.02551675;0.4991506;0.005649496,0.1279303;0.3696589;-0.03555914,0.1747382;0.1755074;-0.02487044,0.2048238;-0.06987293;-0.06206355,-0.09663743;0.3734043;0.01225675,-0.2947077;0.3510712;0.02867031,-0.5445697;0.3496711;0.03685843,0.06600943;0.004304631;-0.04499139,0.09075259;-0.2923906;-0.008117106,0.08039454;-0.5840859;0.06121222,0.09158932;-0.6142092;0.002433512,-0.07509984;0.003730225;-0.02731483,-0.09989297;-0.294522;-0.006557247,-0.0957376;-0.5884649;0.05327883,-0.09377225;-0.6177596;-0.007618487,0.02047967;0.3993295;0.008870732,0;0;0,0.01185807;0.1995005;0.007677489,0.03011767;0.4988789;0.005193294,0.1331931;0.3687178;-0.03060617,0.1711205;0.1728238;-0.01693021,0.2062335;-0.07292798;-0.04647962,-0.09422514;0.378479;0.007491967,-0.2917519;0.3587484;0.03186195,-0.5412377;0.3746918;0.03348672,0.06773487;0.002736577;-0.04247939,0.08173975;-0.2946739;-0.005724713,0.06991916;-0.5879865;0.05614585,0.08083809;-0.6187617;-0.001786422,-0.07320995;0.005257008;-0.03182243,-0.1067895;-0.2920319;-0.009647287,-0.1068173;-0.5864965;0.0477163,-0.1092764;-0.6117744;-0.01806508,0.02397808;0.3991302;0.008727813,22.01354
-0;0;0,0.01036206;0.199591;0.00748656,0.02564021;0.4991449;0.00558661,0.1280126;0.3696656;-0.03564908,0.1748289;0.1755185;-0.02491847,0.2048915;-0.06985298;-0.0621886,-0.0965477;0.3734234;0.01218319,-0.2946093;0.3510314;0.02862121,-0.5444776;0.3495675;0.03660258,0.06603485;0.004273872;-0.04495702,0.09084185;-0.2924199;-0.008113109,0.08051348;-0.584142;0.06110785,0.09061332;-0.6129423;0.0003748387,-0.07507122;0.003763397;-0.02738883,-0.0997892;-0.2945005;-0.00670876,-0.09561238;-0.5884492;0.05309702,-0.09377209;-0.6170151;-0.008741602,0.02057514;0.3993256;0.008819696,0;0;0,0.01185807;0.1995005;0.007677489,0.03011767;0.4988789;0.005193294,0.1331931;0.3687178;-0.03060617,0.1711205;0.1728238;-0.01693021,0.2062335;-0.07292798;-0.04647962,-0.09422514;0.378479;0.007491967,-0.2917519;0.3587484;0.03186195,-0.5412377;0.3746918;0.03348672,0.06773487;0.002736577;-0.04247939,0.08173975;-0.2946739;-0.005724713,0.06991916;-0.5879865;0.05614585,0.08083809;-0.6187617;-0.001786422,-0.07320995;0.005257008;-0.03182243,-0.1067895;-0.2920319;-0.009647287,-0.1068173;-0.5864965;0.0477163,-0.1092764;-0.6117744;-0.01806508,0.02397808;0.3991302;0.008727813,22.03428
-0;0;0,0.01036206;0.199591;0.00748656,0.02564021;0.4991449;0.00558661,0.1280126;0.3696656;-0.03564908,0.1748289;0.1755185;-0.02491847,0.2048915;-0.06985298;-0.0621886,-0.0965477;0.3734234;0.01218319,-0.2946093;0.3510314;0.02862121,-0.5444776;0.3495675;0.03660258,0.06603485;0.004273872;-0.04495702,0.09084185;-0.2924199;-0.008113109,0.08051348;-0.584142;0.06110785,0.09061332;-0.6129423;0.0003748387,-0.07507122;0.003763397;-0.02738883,-0.0997892;-0.2945005;-0.00670876,-0.09561238;-0.5884492;0.05309702,-0.09377209;-0.6170151;-0.008741602,0.02057514;0.3993256;0.008819696,0;0;0,0.01185807;0.1995005;0.007677489,0.03011767;0.4988789;0.005193294,0.1331931;0.3687178;-0.03060617,0.1711205;0.1728238;-0.01693021,0.2062335;-0.07292798;-0.04647962,-0.09422514;0.378479;0.007491967,-0.2917519;0.3587484;0.03186195,-0.5412377;0.3746918;0.03348672,0.06773487;0.002736577;-0.04247939,0.08173975;-0.2946739;-0.005724713,0.06991916;-0.5879865;0.05614585,0.08083809;-0.6187617;-0.001786422,-0.07320995;0.005257008;-0.03182243,-0.1067895;-0.2920319;-0.009647287,-0.1068173;-0.5864965;0.0477163,-0.1092764;-0.6117744;-0.01806508,0.02397808;0.3991302;0.008727813,22.04565
-0;0;0,0.01041388;0.1995891;0.007465271,0.02578127;0.4991384;0.005539893,0.1281245;0.3697647;-0.03574602,0.1749211;0.1756107;-0.0250542,0.2049913;-0.06976596;-0.06228435,-0.09642419;0.3733405;0.01213036,-0.2944957;0.3508936;0.0283728,-0.5443646;0.3495535;0.03635608,0.0660501;0.004258596;-0.04493606,0.09098752;-0.2924278;-0.008121423,0.08077901;-0.5842419;0.06072844,0.09083924;-0.6135557;0.0006609187,-0.07504454;0.003774806;-0.02746028,-0.09966795;-0.2945019;-0.006851483,-0.09526446;-0.5884259;0.05305919,-0.09386362;-0.6173763;-0.008299276,0.02068162;0.3993211;0.008778578,0;0;0,0.01189793;0.1994963;0.007723913,0.0301844;0.4988737;0.00531966,0.1331519;0.3687777;-0.03083549,0.170955;0.1728763;-0.0169219,0.2061549;-0.07285668;-0.04652355,-0.09417713;0.3785391;0.007666805,-0.2918343;0.3589471;0.03107174,-0.5411221;0.3777013;0.02910169,0.06782387;0.002695573;-0.04233978,0.08186032;-0.2947053;-0.005519785,0.06997952;-0.587988;0.05648125,0.08117668;-0.6185075;-0.001752932,-0.07313611;0.005309178;-0.03198318,-0.1066296;-0.2919616;-0.009438209,-0.1067244;-0.5863971;0.0480748,-0.1092604;-0.6121308;-0.01717831,0.02403833;0.3991244;0.008829479,22.06779
-0;0;0,0.01041388;0.1995891;0.007465271,0.02578127;0.4991384;0.005539893,0.1281245;0.3697647;-0.03574602,0.1749211;0.1756107;-0.0250542,0.2049913;-0.06976596;-0.06228435,-0.09642419;0.3733405;0.01213036,-0.2944957;0.3508936;0.0283728,-0.5443646;0.3495535;0.03635608,0.0660501;0.004258596;-0.04493606,0.09098752;-0.2924278;-0.008121423,0.08077901;-0.5842419;0.06072844,0.09083924;-0.6135557;0.0006609187,-0.07504454;0.003774806;-0.02746028,-0.09966795;-0.2945019;-0.006851483,-0.09526446;-0.5884259;0.05305919,-0.09386362;-0.6173763;-0.008299276,0.02068162;0.3993211;0.008778578,0;0;0,0.01189793;0.1994963;0.007723913,0.0301844;0.4988737;0.00531966,0.1331519;0.3687777;-0.03083549,0.170955;0.1728763;-0.0169219,0.2061549;-0.07285668;-0.04652355,-0.09417713;0.3785391;0.007666805,-0.2918343;0.3589471;0.03107174,-0.5411221;0.3777013;0.02910169,0.06782387;0.002695573;-0.04233978,0.08186032;-0.2947053;-0.005519785,0.06997952;-0.587988;0.05648125,0.08117668;-0.6185075;-0.001752932,-0.07313611;0.005309178;-0.03198318,-0.1066296;-0.2919616;-0.009438209,-0.1067244;-0.5863971;0.0480748,-0.1092604;-0.6121308;-0.01717831,0.02403833;0.3991244;0.008829479,22.08993
-0;0;0,0.01038548;0.1995905;0.007469008,0.0257527;0.4991394;0.00551347,0.1280745;0.3697611;-0.03579031,0.1748219;0.175596;-0.02508575,0.2049693;-0.06978121;-0.06224965,-0.09638955;0.3730756;0.01246121,-0.2945406;0.3509522;0.02816872,-0.5444184;0.3493482;0.03581756,0.06602847;0.004279679;-0.04496582,0.09090724;-0.2924015;-0.008069456,0.08080982;-0.5842397;0.0606948,0.09081212;-0.6134604;0.0004948452,-0.07506422;0.003737528;-0.02741157,-0.09952976;-0.2945467;-0.00672435,-0.09531924;-0.5885975;0.05257453,-0.09336514;-0.6176463;-0.008642152,0.02064647;0.3993229;0.008766638,0;0;0,0.01189793;0.1994963;0.007723913,0.0301844;0.4988737;0.00531966,0.1331519;0.3687777;-0.03083549,0.170955;0.1728763;-0.0169219,0.2061549;-0.07285668;-0.04652355,-0.09417713;0.3785391;0.007666805,-0.2918343;0.3589471;0.03107174,-0.5411221;0.3777013;0.02910169,0.06782387;0.002695573;-0.04233978,0.08186032;-0.2947053;-0.005519785,0.06997952;-0.587988;0.05648125,0.08117668;-0.6185075;-0.001752932,-0.07313611;0.005309178;-0.03198318,-0.1066296;-0.2919616;-0.009438209,-0.1067244;-0.5863971;0.0480748,-0.1092604;-0.6121308;-0.01717831,0.02403833;0.3991244;0.008829479,22.10154
-0;0;0,0.01038548;0.1995905;0.007469008,0.0257527;0.4991394;0.00551347,0.1280745;0.3697611;-0.03579031,0.1748219;0.175596;-0.02508575,0.2049693;-0.06978121;-0.06224965,-0.09638955;0.3730756;0.01246121,-0.2945406;0.3509522;0.02816872,-0.5444184;0.3493482;0.03581756,0.06602847;0.004279679;-0.04496582,0.09090724;-0.2924015;-0.008069456,0.08080982;-0.5842397;0.0606948,0.09081212;-0.6134604;0.0004948452,-0.07506422;0.003737528;-0.02741157,-0.09952976;-0.2945467;-0.00672435,-0.09531924;-0.5885975;0.05257453,-0.09336514;-0.6176463;-0.008642152,0.02064647;0.3993229;0.008766638,0;0;0,0.01199211;0.1994886;0.007777533,0.03034936;0.4988621;0.005447432,0.1332874;0.3687746;-0.03076509,0.1710647;0.1728716;-0.01680331,0.2062814;-0.07286175;-0.0463816,-0.09405746;0.3786789;0.007823442,-0.2918471;0.3591346;0.03012304,-0.5410206;0.3790107;0.02593356,0.06784938;0.002638404;-0.0423025,0.08203254;-0.2947568;-0.005493246,0.07028096;-0.5880342;0.05655741,0.08120892;-0.6193027;-0.0006790124,-0.07312984;0.005365359;-0.03198812,-0.1066037;-0.2919208;-0.009617453,-0.1066309;-0.5862935;0.04821601,-0.1093876;-0.6129944;-0.01588843,0.02418466;0.3991132;0.008935622,22.11263
-0;0;0,0.01043305;0.1995874;0.007485449,0.02590544;0.4991308;0.005526208,0.1281395;0.3697988;-0.03591947,0.1748755;0.1756385;-0.02507872,0.2048521;-0.06971805;-0.06251646,-0.09627999;0.3730698;0.01235235,-0.2944245;0.3508527;0.02800993,-0.5443058;0.3489578;0.03547563,0.06600244;0.004265027;-0.04500542,0.09101953;-0.2924211;-0.008243106,0.08100717;-0.5842711;0.06048372,0.09090526;-0.6135862;0.00039104,-0.07508157;0.003756769;-0.02736136,-0.09947358;-0.2945458;-0.006852077,-0.09529853;-0.5885681;0.05259078,-0.09409293;-0.6173389;-0.00900225,0.02076009;0.3993164;0.008783685,0;0;0,0.01199211;0.1994886;0.007777533,0.03034936;0.4988621;0.005447432,0.1332874;0.3687746;-0.03076509,0.1710647;0.1728716;-0.01680331,0.2062814;-0.07286175;-0.0463816,-0.09405746;0.3786789;0.007823442,-0.2918471;0.3591346;0.03012304,-0.5410206;0.3790107;0.02593356,0.06784938;0.002638404;-0.0423025,0.08203254;-0.2947568;-0.005493246,0.07028096;-0.5880342;0.05655741,0.08120892;-0.6193027;-0.0006790124,-0.07312984;0.005365359;-0.03198812,-0.1066037;-0.2919208;-0.009617453,-0.1066309;-0.5862935;0.04821601,-0.1093876;-0.6129944;-0.01588843,0.02418466;0.3991132;0.008935622,22.13477
-0;0;0,0.01043305;0.1995874;0.007485449,0.02590544;0.4991308;0.005526208,0.1281395;0.3697988;-0.03591947,0.1748755;0.1756385;-0.02507872,0.2048521;-0.06971805;-0.06251646,-0.09627999;0.3730698;0.01235235,-0.2944245;0.3508527;0.02800993,-0.5443058;0.3489578;0.03547563,0.06600244;0.004265027;-0.04500542,0.09101953;-0.2924211;-0.008243106,0.08100717;-0.5842711;0.06048372,0.09090526;-0.6135862;0.00039104,-0.07508157;0.003756769;-0.02736136,-0.09947358;-0.2945458;-0.006852077,-0.09529853;-0.5885681;0.05259078,-0.09409293;-0.6173389;-0.00900225,0.02076009;0.3993164;0.008783685,0;0;0,0.01199211;0.1994886;0.007777533,0.03034936;0.4988621;0.005447432,0.1332874;0.3687746;-0.03076509,0.1710647;0.1728716;-0.01680331,0.2062814;-0.07286175;-0.0463816,-0.09405746;0.3786789;0.007823442,-0.2918471;0.3591346;0.03012304,-0.5410206;0.3790107;0.02593356,0.06784938;0.002638404;-0.0423025,0.08203254;-0.2947568;-0.005493246,0.07028096;-0.5880342;0.05655741,0.08120892;-0.6193027;-0.0006790124,-0.07312984;0.005365359;-0.03198812,-0.1066037;-0.2919208;-0.009617453,-0.1066309;-0.5862935;0.04821601,-0.1093876;-0.6129944;-0.01588843,0.02418466;0.3991132;0.008935622,22.14643
-0;0;0,0.01039535;0.199588;0.007520149,0.02583364;0.4991332;0.005595027,0.128105;0.3699093;-0.03585389,0.1748095;0.1757416;-0.02500958,0.2047394;-0.06959546;-0.06261191,-0.09633553;0.373014;0.01231527,-0.2944602;0.3504554;0.02773359,-0.5443612;0.3481417;0.03437894,0.06603077;0.004246022;-0.04496563,0.0910508;-0.2924626;-0.008386686,0.08093035;-0.5842285;0.06067989,0.09098446;-0.613018;-7.47554E-05,-0.07506323;0.0037682;-0.02741008,-0.09936558;-0.2945403;-0.006881123,-0.0952713;-0.5885828;0.05246774,-0.09444243;-0.6170027;-0.009577669,0.0206946;0.3993183;0.008846336,0;0;0,0.01198465;0.1994893;0.007771022,0.03030808;0.4988649;0.005441618,0.1332527;0.3687841;-0.03079852,0.1710819;0.1728963;-0.0167657,0.2063282;-0.07283664;-0.04631293,-0.09409799;0.3787701;0.007597642,-0.2920557;0.3592585;0.02838334,-0.5411181;0.380144;0.02275367,0.06785171;0.002624954;-0.04229958,0.08200749;-0.2947645;-0.005432852,0.07039528;-0.5880736;0.05649375,0.08148094;-0.6193892;-0.0006453469,-0.07312827;0.005382991;-0.03198873,-0.10665;-0.2919036;-0.009694951,-0.1067799;-0.5861996;0.04852691,-0.1088776;-0.6135998;-0.01475666,0.02415728;0.3991151;0.008928143,22.1684
-0;0;0,0.0103708;0.1995876;0.00756594,0.0257718;0.4991355;0.005752246,0.1280448;0.3698453;-0.03571331,0.1747377;0.1756669;-0.02501078,0.2047122;-0.06965627;-0.06266788,-0.0963496;0.3728369;0.01236951,-0.2945005;0.350274;0.02744034,-0.5444188;0.3477898;0.03333046,0.06603946;0.004248736;-0.04495262,0.09100696;-0.2924669;-0.008394755,0.08052886;-0.5841849;0.06082122,0.09152877;-0.6128461;6.426126E-05,-0.07505717;0.003763384;-0.02742734,-0.09935776;-0.2945432;-0.006867785,-0.09528968;-0.588593;0.05244633,-0.0946007;-0.6168438;-0.009813868,0.02064233;0.3993188;0.008963648,0;0;0,0.01198465;0.1994893;0.007771022,0.03030808;0.4988649;0.005441618,0.1332527;0.3687841;-0.03079852,0.1710819;0.1728963;-0.0167657,0.2063282;-0.07283664;-0.04631293,-0.09409799;0.3787701;0.007597642,-0.2920557;0.3592585;0.02838334,-0.5411181;0.380144;0.02275367,0.06785171;0.002624954;-0.04229958,0.08200749;-0.2947645;-0.005432852,0.07039528;-0.5880736;0.05649375,0.08148094;-0.6193892;-0.0006453469,-0.07312827;0.005382991;-0.03198873,-0.10665;-0.2919036;-0.009694951,-0.1067799;-0.5861996;0.04852691,-0.1088776;-0.6135998;-0.01475666,0.02415728;0.3991151;0.008928143,22.19088
-0;0;0,0.0103708;0.1995876;0.00756594,0.0257718;0.4991355;0.005752246,0.1280448;0.3698453;-0.03571331,0.1747377;0.1756669;-0.02501078,0.2047122;-0.06965627;-0.06266788,-0.0963496;0.3728369;0.01236951,-0.2945005;0.350274;0.02744034,-0.5444188;0.3477898;0.03333046,0.06603946;0.004248736;-0.04495262,0.09100696;-0.2924669;-0.008394755,0.08052886;-0.5841849;0.06082122,0.09152877;-0.6128461;6.426126E-05,-0.07505717;0.003763384;-0.02742734,-0.09935776;-0.2945432;-0.006867785,-0.09528968;-0.588593;0.05244633,-0.0946007;-0.6168438;-0.009813868,0.02064233;0.3993188;0.008963648,0;0;0,0.01198465;0.1994893;0.007771022,0.03030808;0.4988649;0.005441618,0.1332527;0.3687841;-0.03079852,0.1710819;0.1728963;-0.0167657,0.2063282;-0.07283664;-0.04631293,-0.09409799;0.3787701;0.007597642,-0.2920557;0.3592585;0.02838334,-0.5411181;0.380144;0.02275367,0.06785171;0.002624954;-0.04229958,0.08200749;-0.2947645;-0.005432852,0.07039528;-0.5880736;0.05649375,0.08148094;-0.6193892;-0.0006453469,-0.07312827;0.005382991;-0.03198873,-0.10665;-0.2919036;-0.009694951,-0.1067799;-0.5861996;0.04852691,-0.1088776;-0.6135998;-0.01475666,0.02415728;0.3991151;0.008928143,22.20235
-0;0;0,0.0103708;0.1995876;0.00756594,0.0257718;0.4991355;0.005752246,0.1280448;0.3698453;-0.03571331,0.1747377;0.1756669;-0.02501078,0.2047122;-0.06965627;-0.06266788,-0.0963496;0.3728369;0.01236951,-0.2945005;0.350274;0.02744034,-0.5444188;0.3477898;0.03333046,0.06603946;0.004248736;-0.04495262,0.09100696;-0.2924669;-0.008394755,0.08052886;-0.5841849;0.06082122,0.09152877;-0.6128461;6.426126E-05,-0.07505717;0.003763384;-0.02742734,-0.09935776;-0.2945432;-0.006867785,-0.09528968;-0.588593;0.05244633,-0.0946007;-0.6168438;-0.009813868,0.02064233;0.3993188;0.008963648,0;0;0,0.01184934;0.1994881;0.008004965,0.02918006;0.4989372;0.007030802,0.1324537;0.3690211;-0.03028211,0.1702858;0.1731379;-0.01619293,0.2055879;-0.07258153;-0.04578526,-0.09478105;0.3787807;0.0079813,-0.2928517;0.3591892;0.02758177,-0.5417577;0.3804863;0.01797744,0.06786627;0.002632647;-0.04227575,0.08193107;-0.294743;-0.00526312,0.0703375;-0.5880602;0.05662872,0.08150845;-0.619402;-0.0004564561,-0.07314441;0.005357965;-0.03195605,-0.1069355;-0.2919088;-0.009805486,-0.1069355;-0.5861514;0.04868634,-0.1083756;-0.6140563;-0.01399335,0.02346353;0.3991417;0.009891271,22.21304
-0;0;0,0.0103708;0.1995876;0.00756594,0.0257718;0.4991355;0.005752246,0.1280448;0.3698453;-0.03571331,0.1747377;0.1756669;-0.02501078,0.2047122;-0.06965627;-0.06266788,-0.0963496;0.3728369;0.01236951,-0.2945005;0.350274;0.02744034,-0.5444188;0.3477898;0.03333046,0.06603946;0.004248736;-0.04495262,0.09100696;-0.2924669;-0.008394755,0.08052886;-0.5841849;0.06082122,0.09152877;-0.6128461;6.426126E-05,-0.07505717;0.003763384;-0.02742734,-0.09935776;-0.2945432;-0.006867785,-0.09528968;-0.588593;0.05244633,-0.0946007;-0.6168438;-0.009813868,0.02064233;0.3993188;0.008963648,0;0;0,0.01184934;0.1994881;0.008004965,0.02918006;0.4989372;0.007030802,0.1324537;0.3690211;-0.03028211,0.1702858;0.1731379;-0.01619293,0.2055879;-0.07258153;-0.04578526,-0.09478105;0.3787807;0.0079813,-0.2928517;0.3591892;0.02758177,-0.5417577;0.3804863;0.01797744,0.06786627;0.002632647;-0.04227575,0.08193107;-0.294743;-0.00526312,0.0703375;-0.5880602;0.05662872,0.08150845;-0.619402;-0.0004564561,-0.07314441;0.005357965;-0.03195605,-0.1069355;-0.2919088;-0.009805486,-0.1069355;-0.5861514;0.04868634,-0.1083756;-0.6140563;-0.01399335,0.02346353;0.3991417;0.009891271,22.22503
-0;0;0,0.01028032;0.1995871;0.007701397,0.02557194;0.4991421;0.006144347,0.1278201;0.3699843;-0.03562646,0.1745252;0.1758074;-0.02495153,0.2044262;-0.06952953;-0.06257766,-0.09651505;0.3727759;0.01235345,-0.2946624;0.3498578;0.02692683,-0.5445979;0.3477733;0.03221039,0.06606095;0.004183144;-0.04492721,0.09107189;-0.2925256;-0.008343775,0.08065257;-0.5842814;0.06072133,0.09164431;-0.6129438;-3.565475E-05,-0.07503952;0.00382149;-0.02746754,-0.09925336;-0.294495;-0.006949274,-0.09502349;-0.5885261;0.05244589,-0.09448;-0.6181083;-0.008104809,0.02047141;0.3993211;0.009269129,0;0;0,0.01184934;0.1994881;0.008004965,0.02918006;0.4989372;0.007030802,0.1324537;0.3690211;-0.03028211,0.1702858;0.1731379;-0.01619293,0.2055879;-0.07258153;-0.04578526,-0.09478105;0.3787807;0.0079813,-0.2928517;0.3591892;0.02758177,-0.5417577;0.3804863;0.01797744,0.06786627;0.002632647;-0.04227575,0.08193107;-0.294743;-0.00526312,0.0703375;-0.5880602;0.05662872,0.08150845;-0.619402;-0.0004564561,-0.07314441;0.005357965;-0.03195605,-0.1069355;-0.2919088;-0.009805486,-0.1069355;-0.5861514;0.04868634,-0.1083756;-0.6140563;-0.01399335,0.02346353;0.3991417;0.009891271,22.24733
-0;0;0,0.01028032;0.1995871;0.007701397,0.02557194;0.4991421;0.006144347,0.1278201;0.3699843;-0.03562646,0.1745252;0.1758074;-0.02495153,0.2044262;-0.06952953;-0.06257766,-0.09651505;0.3727759;0.01235345,-0.2946624;0.3498578;0.02692683,-0.5445979;0.3477733;0.03221039,0.06606095;0.004183144;-0.04492721,0.09107189;-0.2925256;-0.008343775,0.08065257;-0.5842814;0.06072133,0.09164431;-0.6129438;-3.565475E-05,-0.07503952;0.00382149;-0.02746754,-0.09925336;-0.294495;-0.006949274,-0.09502349;-0.5885261;0.05244589,-0.09448;-0.6181083;-0.008104809,0.02047141;0.3993211;0.009269129,0;0;0,0.01166225;0.1994875;0.008290497,0.02845545;0.4989703;0.00831975,0.132177;0.3693648;-0.02886175,0.1700097;0.1734276;-0.01554484,0.2053758;-0.072226;-0.04560341,-0.09533769;0.3789021;0.008153768,-0.2935816;0.3595026;0.02612594,-0.5423601;0.3809253;0.01386493,0.06792805;0.00258866;-0.04217913,0.08213352;-0.2947934;-0.005271807,0.07044649;-0.5880598;0.05684307,0.08180747;-0.6191868;-0.000509657,-0.07310732;0.005418751;-0.03203057,-0.1068437;-0.291862;-0.009984501,-0.1066649;-0.5860622;0.04871994,-0.1081365;-0.6140718;-0.01382868,0.02291114;0.3991551;0.01080559,22.25855
-0;0;0,0.01032724;0.1995819;0.007773639,0.02579608;0.4991292;0.006422255,0.1279013;0.3699422;-0.0355638,0.1745638;0.1757511;-0.02496043,0.2045737;-0.06956856;-0.062612,-0.09634373;0.372636;0.01239469,-0.2945008;0.3494915;0.02647032,-0.5444853;0.3471842;0.02801221,0.06604534;0.004178492;-0.04495055,0.09113858;-0.2925274;-0.008399725,0.08062805;-0.5842339;0.06085975,0.09202618;-0.6127627;4.984438E-06,-0.07505006;0.003828832;-0.02743771,-0.09913689;-0.2944981;-0.006922321,-0.09491268;-0.5885382;0.05242946,-0.1076608;-0.5561772;-0.04517357,0.02061751;0.3993098;0.009466562,0;0;0,0.01166225;0.1994875;0.008290497,0.02845545;0.4989703;0.00831975,0.132177;0.3693648;-0.02886175,0.1700097;0.1734276;-0.01554484,0.2053758;-0.072226;-0.04560341,-0.09533769;0.3789021;0.008153768,-0.2935816;0.3595026;0.02612594,-0.5423601;0.3809253;0.01386493,0.06792805;0.00258866;-0.04217913,0.08213352;-0.2947934;-0.005271807,0.07044649;-0.5880598;0.05684307,0.08180747;-0.6191868;-0.000509657,-0.07310732;0.005418751;-0.03203057,-0.1068437;-0.291862;-0.009984501,-0.1066649;-0.5860622;0.04871994,-0.1081365;-0.6140718;-0.01382868,0.02291114;0.3991551;0.01080559,22.27023
-0;0;0,0.01032724;0.1995819;0.007773639,0.02579608;0.4991292;0.006422255,0.1279013;0.3699422;-0.0355638,0.1745638;0.1757511;-0.02496043,0.2045737;-0.06956856;-0.062612,-0.09634373;0.372636;0.01239469,-0.2945008;0.3494915;0.02647032,-0.5444853;0.3471842;0.02801221,0.06604534;0.004178492;-0.04495055,0.09113858;-0.2925274;-0.008399725,0.08062805;-0.5842339;0.06085975,0.09202618;-0.6127627;4.984438E-06,-0.07505006;0.003828832;-0.02743771,-0.09913689;-0.2944981;-0.006922321,-0.09491268;-0.5885382;0.05242946,-0.1076608;-0.5561772;-0.04517357,0.02061751;0.3993098;0.009466562,0;0;0,0.01166225;0.1994875;0.008290497,0.02845545;0.4989703;0.00831975,0.132177;0.3693648;-0.02886175,0.1700097;0.1734276;-0.01554484,0.2053758;-0.072226;-0.04560341,-0.09533769;0.3789021;0.008153768,-0.2935816;0.3595026;0.02612594,-0.5423601;0.3809253;0.01386493,0.06792805;0.00258866;-0.04217913,0.08213352;-0.2947934;-0.005271807,0.07044649;-0.5880598;0.05684307,0.08180747;-0.6191868;-0.000509657,-0.07310732;0.005418751;-0.03203057,-0.1068437;-0.291862;-0.009984501,-0.1066649;-0.5860622;0.04871994,-0.1081365;-0.6140718;-0.01382868,0.02291114;0.3991551;0.01080559,22.28172
-0;0;0,0.0102778;0.1995771;0.007958503,0.02556475;0.4991361;0.007092849,0.1276855;0.3702248;-0.03537874,0.174403;0.1760412;-0.02488106,0.2043871;-0.06927338;-0.0625864,-0.09650106;0.3725861;0.01265617,-0.2947654;0.349674;0.02555168,-0.5447488;0.3468877;0.02481916,0.06604327;0.00417678;-0.04495376,0.0910513;-0.2925263;-0.008322217,0.0805737;-0.584254;0.06085284,0.09232987;-0.6120118;-0.0009170882,-0.0750605;0.00382645;-0.02740948,-0.09912115;-0.2945004;-0.006862538,-0.09494179;-0.5885512;0.05243938,-0.09430686;-0.6182131;-0.00800541,0.02045483;0.399308;0.009961688,0;0;0,0.01170483;0.1994845;0.008302085,0.02858551;0.4989624;0.008337148,0.1322578;0.369351;-0.02884939,0.1700687;0.173419;-0.01539574,0.2055221;-0.07226767;-0.04507907,-0.09525462;0.3789285;0.008004474,-0.2936758;0.3594576;0.02381286,-0.54243;0.3808858;0.01107686,0.06792794;0.002572455;-0.04218029,0.08213855;-0.2948014;-0.005208779,0.07041458;-0.5880599;0.05693599,0.08202864;-0.6192465;-0.0002814978,-0.07310612;0.005434555;-0.03203062,-0.1068919;-0.2918439;-0.0100296,-0.1066225;-0.5860412;0.04868894,-0.1081565;-0.6139447;-0.01399031,0.02299581;0.3991497;0.01082257,22.30405
-0;0;0,0.0102778;0.1995771;0.007958503,0.02556475;0.4991361;0.007092849,0.1276855;0.3702248;-0.03537874,0.174403;0.1760412;-0.02488106,0.2043871;-0.06927338;-0.0625864,-0.09650106;0.3725861;0.01265617,-0.2947654;0.349674;0.02555168,-0.5447488;0.3468877;0.02481916,0.06604327;0.00417678;-0.04495376,0.0910513;-0.2925263;-0.008322217,0.0805737;-0.584254;0.06085284,0.09232987;-0.6120118;-0.0009170882,-0.0750605;0.00382645;-0.02740948,-0.09912115;-0.2945004;-0.006862538,-0.09494179;-0.5885512;0.05243938,-0.09430686;-0.6182131;-0.00800541,0.02045483;0.399308;0.009961688,0;0;0,0.01170483;0.1994845;0.008302085,0.02858551;0.4989624;0.008337148,0.1322578;0.369351;-0.02884939,0.1700687;0.173419;-0.01539574,0.2055221;-0.07226767;-0.04507907,-0.09525462;0.3789285;0.008004474,-0.2936758;0.3594576;0.02381286,-0.54243;0.3808858;0.01107686,0.06792794;0.002572455;-0.04218029,0.08213855;-0.2948014;-0.005208779,0.07041458;-0.5880599;0.05693599,0.08202864;-0.6192465;-0.0002814978,-0.07310612;0.005434555;-0.03203062,-0.1068919;-0.2918439;-0.0100296,-0.1066225;-0.5860412;0.04868894,-0.1081565;-0.6139447;-0.01399031,0.02299581;0.3991497;0.01082257,22.316
-0;0;0,0.01033049;0.1995758;0.007923209,0.02571059;0.4991299;0.006967937,0.1278224;0.3702359;-0.03544059,0.1745779;0.1760565;-0.02503433,0.2045575;-0.06924991;-0.06279689,-0.09637989;0.3725666;0.01254493,-0.2946993;0.349181;0.02361517,-0.5446544;0.3467405;0.01955381,0.06602608;0.004152769;-0.04498122,0.0912229;-0.2925479;-0.008459944,0.0808345;-0.5843008;0.06062219,0.09181665;-0.611717;-0.001716536,-0.07507414;0.003860696;-0.02736728,-0.09889895;-0.2944975;-0.007001171,-0.09472752;-0.5885286;0.05239828,-0.1075123;-0.5561475;-0.04520359,0.02057278;0.399304;0.009864708,0;0;0,0.01170483;0.1994845;0.008302085,0.02858551;0.4989624;0.008337148,0.1322578;0.369351;-0.02884939,0.1700687;0.173419;-0.01539574,0.2055221;-0.07226767;-0.04507907,-0.09525462;0.3789285;0.008004474,-0.2936758;0.3594576;0.02381286,-0.54243;0.3808858;0.01107686,0.06792794;0.002572455;-0.04218029,0.08213855;-0.2948014;-0.005208779,0.07041458;-0.5880599;0.05693599,0.08202864;-0.6192465;-0.0002814978,-0.07310612;0.005434555;-0.03203062,-0.1068919;-0.2918439;-0.0100296,-0.1066225;-0.5860412;0.04868894,-0.1081565;-0.6139447;-0.01399031,0.02299581;0.3991497;0.01082257,22.32666
-0;0;0,0.01033049;0.1995758;0.007923209,0.02571059;0.4991299;0.006967937,0.1278224;0.3702359;-0.03544059,0.1745779;0.1760565;-0.02503433,0.2045575;-0.06924991;-0.06279689,-0.09637989;0.3725666;0.01254493,-0.2946993;0.349181;0.02361517,-0.5446544;0.3467405;0.01955381,0.06602608;0.004152769;-0.04498122,0.0912229;-0.2925479;-0.008459944,0.0808345;-0.5843008;0.06062219,0.09181665;-0.611717;-0.001716536,-0.07507414;0.003860696;-0.02736728,-0.09889895;-0.2944975;-0.007001171,-0.09472752;-0.5885286;0.05239828,-0.1075123;-0.5561475;-0.04520359,0.02057278;0.399304;0.009864708,0;0;0,0.01176533;0.1994779;0.008377025,0.02871056;0.4989519;0.008434473,0.1324021;0.3693292;-0.02863455,0.1702496;0.1734156;-0.01501751,0.2057847;-0.07223463;-0.04490447,-0.09512849;0.3788456;0.007745651,-0.2939213;0.3607514;0.02015677,-0.5427795;0.3805566;0.006840355,0.0679737;0.002542179;-0.04210834,0.08225384;-0.2948264;-0.005121596,0.07048462;-0.5880589;0.05713709,0.08238542;-0.6188056;-0.0006413162,-0.07307801;0.005477448;-0.03208742,-0.1067392;-0.2918045;-0.009943549,-0.1064256;-0.5860047;0.0487601,-0.1076452;-0.6139173;-0.01391481,0.02310036;0.3991402;0.01091826,22.33837
-0;0;0,0.01034303;0.1995761;0.007900893,0.02575924;0.4991281;0.006891693,0.1279462;0.37025;-0.03530343,0.1746527;0.1760476;-0.02510863,0.2047012;-0.06923196;-0.06299049,-0.09631314;0.3724357;0.01246645,-0.2946967;0.3488706;0.02188125,-0.5445558;0.3465236;0.01382452,0.06600974;0.004185226;-0.0450022,0.09125305;-0.2925182;-0.008534793,0.08112918;-0.5843447;0.06027492,0.09170475;-0.6125387;-0.001156863,-0.07510265;0.003812155;-0.02729577,-0.09875741;-0.2945626;-0.006974097,-0.09464844;-0.588685;0.05197608,-0.09381849;-0.6183903;-0.008409206,0.02061015;0.3993033;0.009806128,0;0;0,0.01176533;0.1994779;0.008377025,0.02871056;0.4989519;0.008434473,0.1324021;0.3693292;-0.02863455,0.1702496;0.1734156;-0.01501751,0.2057847;-0.07223463;-0.04490447,-0.09512849;0.3788456;0.007745651,-0.2939213;0.3607514;0.02015677,-0.5427795;0.3805566;0.006840355,0.0679737;0.002542179;-0.04210834,0.08225384;-0.2948264;-0.005121596,0.07048462;-0.5880589;0.05713709,0.08238542;-0.6188056;-0.0006413162,-0.07307801;0.005477448;-0.03208742,-0.1067392;-0.2918045;-0.009943549,-0.1064256;-0.5860047;0.0487601,-0.1076452;-0.6139173;-0.01391481,0.02310036;0.3991402;0.01091826,22.36082
-0;0;0,0.01034303;0.1995761;0.007900893,0.02575924;0.4991281;0.006891693,0.1279462;0.37025;-0.03530343,0.1746527;0.1760476;-0.02510863,0.2047012;-0.06923196;-0.06299049,-0.09631314;0.3724357;0.01246645,-0.2946967;0.3488706;0.02188125,-0.5445558;0.3465236;0.01382452,0.06600974;0.004185226;-0.0450022,0.09125305;-0.2925182;-0.008534793,0.08112918;-0.5843447;0.06027492,0.09170475;-0.6125387;-0.001156863,-0.07510265;0.003812155;-0.02729577,-0.09875741;-0.2945626;-0.006974097,-0.09464844;-0.588685;0.05197608,-0.09381849;-0.6183903;-0.008409206,0.02061015;0.3993033;0.009806128,0;0;0,0.01176533;0.1994779;0.008377025,0.02871056;0.4989519;0.008434473,0.1324021;0.3693292;-0.02863455,0.1702496;0.1734156;-0.01501751,0.2057847;-0.07223463;-0.04490447,-0.09512849;0.3788456;0.007745651,-0.2939213;0.3607514;0.02015677,-0.5427795;0.3805566;0.006840355,0.0679737;0.002542179;-0.04210834,0.08225384;-0.2948264;-0.005121596,0.07048462;-0.5880589;0.05713709,0.08238542;-0.6188056;-0.0006413162,-0.07307801;0.005477448;-0.03208742,-0.1067392;-0.2918045;-0.009943549,-0.1064256;-0.5860047;0.0487601,-0.1076452;-0.6139173;-0.01391481,0.02310036;0.3991402;0.01091826,22.3725
-0;0;0,0.01034303;0.1995761;0.007900893,0.02575924;0.4991281;0.006891693,0.1279462;0.37025;-0.03530343,0.1746527;0.1760476;-0.02510863,0.2047012;-0.06923196;-0.06299049,-0.09631314;0.3724357;0.01246645,-0.2946967;0.3488706;0.02188125,-0.5445558;0.3465236;0.01382452,0.06600974;0.004185226;-0.0450022,0.09125305;-0.2925182;-0.008534793,0.08112918;-0.5843447;0.06027492,0.09170475;-0.6125387;-0.001156863,-0.07510265;0.003812155;-0.02729577,-0.09875741;-0.2945626;-0.006974097,-0.09464844;-0.588685;0.05197608,-0.09381849;-0.6183903;-0.008409206,0.02061015;0.3993033;0.009806128,0;0;0,0.01178499;0.1994767;0.008376115,0.02884646;0.4989429;0.008282133,0.1325434;0.3693059;-0.0285113,0.1703815;0.1734002;-0.01475559,0.2059984;-0.07221876;-0.04480176,-0.09505189;0.3788353;0.007731071,-0.294026;0.361329;0.01787074,-0.5427771;0.3805326;0.001929156,0.06800714;0.002521623;-0.04205556,0.08206423;-0.2948588;-0.005079146,0.07047736;-0.5880939;0.057202,0.08242511;-0.6188916;-0.0004953519,-0.07305489;0.005494778;-0.03213705,-0.1068063;-0.2917804;-0.01003965,-0.1063341;-0.5859118;0.0490074,-0.1076721;-0.6135691;-0.01398099,0.02317728;0.3991367;0.01084821,22.38376
-0;0;0,0.01034392;0.1995712;0.008021155,0.02582573;0.4991202;0.007183135,0.1279476;0.370086;-0.03504809,0.174727;0.1758915;-0.0250405,0.2047976;-0.06935963;-0.06308872,-0.09628119;0.3724196;0.01239552,-0.2947305;0.3485744;0.0194169,-0.5443749;0.3452815;0.006501774,0.0660002;0.004159248;-0.04501861,0.09139091;-0.2925401;-0.008620843,0.08124804;-0.58439;0.06008697,0.09184929;-0.6126571;-0.001247238,-0.07511351;0.003847788;-0.02726086,-0.09861888;-0.2945441;-0.00701721,-0.09452207;-0.588672;0.05190653,-0.09370471;-0.6184467;-0.008387115,0.02064684;0.3992954;0.01004473,0;0;0,0.01178499;0.1994767;0.008376115,0.02884646;0.4989429;0.008282133,0.1325434;0.3693059;-0.0285113,0.1703815;0.1734002;-0.01475559,0.2059984;-0.07221876;-0.04480176,-0.09505189;0.3788353;0.007731071,-0.294026;0.361329;0.01787074,-0.5427771;0.3805326;0.001929156,0.06800714;0.002521623;-0.04205556,0.08206423;-0.2948588;-0.005079146,0.07047736;-0.5880939;0.057202,0.08242511;-0.6188916;-0.0004953519,-0.07305489;0.005494778;-0.03213705,-0.1068063;-0.2917804;-0.01003965,-0.1063341;-0.5859118;0.0490074,-0.1076721;-0.6135691;-0.01398099,0.02317728;0.3991367;0.01084821,22.40613
-0;0;0,0.01034392;0.1995712;0.008021155,0.02582573;0.4991202;0.007183135,0.1279476;0.370086;-0.03504809,0.174727;0.1758915;-0.0250405,0.2047976;-0.06935963;-0.06308872,-0.09628119;0.3724196;0.01239552,-0.2947305;0.3485744;0.0194169,-0.5443749;0.3452815;0.006501774,0.0660002;0.004159248;-0.04501861,0.09139091;-0.2925401;-0.008620843,0.08124804;-0.58439;0.06008697,0.09184929;-0.6126571;-0.001247238,-0.07511351;0.003847788;-0.02726086,-0.09861888;-0.2945441;-0.00701721,-0.09452207;-0.588672;0.05190653,-0.09370471;-0.6184467;-0.008387115,0.02064684;0.3992954;0.01004473,0;0;0,0.01178499;0.1994767;0.008376115,0.02884646;0.4989429;0.008282133,0.1325434;0.3693059;-0.0285113,0.1703815;0.1734002;-0.01475559,0.2059984;-0.07221876;-0.04480176,-0.09505189;0.3788353;0.007731071,-0.294026;0.361329;0.01787074,-0.5427771;0.3805326;0.001929156,0.06800714;0.002521623;-0.04205556,0.08206423;-0.2948588;-0.005079146,0.07047736;-0.5880939;0.057202,0.08242511;-0.6188916;-0.0004953519,-0.07305489;0.005494778;-0.03213705,-0.1068063;-0.2917804;-0.01003965,-0.1063341;-0.5859118;0.0490074,-0.1076721;-0.6135691;-0.01398099,0.02317728;0.3991367;0.01084821,22.42002
-0;0;0,0.01036868;0.1995659;0.008120596,0.02593599;0.4991107;0.007412825,0.1280426;0.3699408;-0.0347243,0.1748888;0.1757486;-0.02498658,0.2050306;-0.06946231;-0.0632365,-0.09617735;0.3722702;0.01236895,-0.2947174;0.348293;0.01500528,-0.5441257;0.3460421;-0.002036993,0.06597628;0.004120938;-0.04505717,0.09137353;-0.2925817;-0.008690294,0.08135217;-0.5844294;0.0600448,0.09208423;-0.6130479;-0.0008153096,-0.07518851;0.003896555;-0.02704635,-0.0983661;-0.294522;-0.006818576,-0.09424654;-0.5886947;0.05187961,-0.093301;-0.6185176;-0.008348316,0.02072243;0.3992866;0.0102335,0;0;0,0.01200922;0.1994612;0.008427347,0.02923629;0.4989182;0.008366635,0.1328512;0.3691811;-0.02836068,0.1706145;0.1733113;-0.01390533,0.2062545;-0.07223718;-0.04449512,-0.09475151;0.3788841;0.007532218,-0.2938356;0.3616046;0.01571615,-0.5423424;0.3799264;-0.004498664,0.06805788;0.002463023;-0.04197689,0.08234382;-0.2949011;-0.004956394,0.07077911;-0.5881543;0.05724352,0.08267298;-0.6186185;-0.0009291023,-0.07303017;0.005560043;-0.03218197,-0.106504;-0.2917347;-0.009925747,-0.1059142;-0.5858639;0.04913092,-0.1074968;-0.6133857;-0.01401864,0.02348228;0.3991164;0.01091175,22.44004
-0;0;0,0.01043489;0.1995623;0.008122995,0.02609479;0.4991024;0.007422892,0.1281614;0.3698846;-0.03469992,0.1751859;0.1757417;-0.0248392,0.2052219;-0.06941502;-0.06351787,-0.0960072;0.372045;0.01208735,-0.2944749;0.3474061;0.01021389,-0.5435957;0.34806;-0.01072379,0.06600042;0.004078582;-0.04502565,0.0916044;-0.2926263;-0.008822601,0.08163664;-0.584484;0.05987768,0.0922884;-0.6131364;-0.0009527691,-0.07515718;0.003937469;-0.02712737,-0.0980597;-0.2944992;-0.006852916,-0.09389163;-0.5887072;0.05166417,-0.09327259;-0.6184925;-0.008617863,0.02084672;0.3992799;0.01023847,0;0;0,0.01200922;0.1994612;0.008427347,0.02923629;0.4989182;0.008366635,0.1328512;0.3691811;-0.02836068,0.1706145;0.1733113;-0.01390533,0.2062545;-0.07223718;-0.04449512,-0.09475151;0.3788841;0.007532218,-0.2938356;0.3616046;0.01571615,-0.5423424;0.3799264;-0.004498664,0.06805788;0.002463023;-0.04197689,0.08234382;-0.2949011;-0.004956394,0.07077911;-0.5881543;0.05724352,0.08267298;-0.6186185;-0.0009291023,-0.07303017;0.005560043;-0.03218197,-0.106504;-0.2917347;-0.009925747,-0.1059142;-0.5858639;0.04913092,-0.1074968;-0.6133857;-0.01401864,0.02348228;0.3991164;0.01091175,22.46177
-0;0;0,0.01043489;0.1995623;0.008122995,0.02609479;0.4991024;0.007422892,0.1281614;0.3698846;-0.03469992,0.1751859;0.1757417;-0.0248392,0.2052219;-0.06941502;-0.06351787,-0.0960072;0.372045;0.01208735,-0.2944749;0.3474061;0.01021389,-0.5435957;0.34806;-0.01072379,0.06600042;0.004078582;-0.04502565,0.0916044;-0.2926263;-0.008822601,0.08163664;-0.584484;0.05987768,0.0922884;-0.6131364;-0.0009527691,-0.07515718;0.003937469;-0.02712737,-0.0980597;-0.2944992;-0.006852916,-0.09389163;-0.5887072;0.05166417,-0.09327259;-0.6184925;-0.008617863,0.02084672;0.3992799;0.01023847,0;0;0,0.01200922;0.1994612;0.008427347,0.02923629;0.4989182;0.008366635,0.1328512;0.3691811;-0.02836068,0.1706145;0.1733113;-0.01390533,0.2062545;-0.07223718;-0.04449512,-0.09475151;0.3788841;0.007532218,-0.2938356;0.3616046;0.01571615,-0.5423424;0.3799264;-0.004498664,0.06805788;0.002463023;-0.04197689,0.08234382;-0.2949011;-0.004956394,0.07077911;-0.5881543;0.05724352,0.08267298;-0.6186185;-0.0009291023,-0.07303017;0.005560043;-0.03218197,-0.106504;-0.2917347;-0.009925747,-0.1059142;-0.5858639;0.04913092,-0.1074968;-0.6133857;-0.01401864,0.02348228;0.3991164;0.01091175,22.47334
-0;0;0,0.01043489;0.1995623;0.008122995,0.02609479;0.4991024;0.007422892,0.1281614;0.3698846;-0.03469992,0.1751859;0.1757417;-0.0248392,0.2052219;-0.06941502;-0.06351787,-0.0960072;0.372045;0.01208735,-0.2944749;0.3474061;0.01021389,-0.5435957;0.34806;-0.01072379,0.06600042;0.004078582;-0.04502565,0.0916044;-0.2926263;-0.008822601,0.08163664;-0.584484;0.05987768,0.0922884;-0.6131364;-0.0009527691,-0.07515718;0.003937469;-0.02712737,-0.0980597;-0.2944992;-0.006852916,-0.09389163;-0.5887072;0.05166417,-0.09327259;-0.6184925;-0.008617863,0.02084672;0.3992799;0.01023847,0;0;0,0.01182404;0.1994611;0.00868737,0.02850625;0.4989494;0.009584389,0.1322682;0.3694502;-0.02783724,0.1699111;0.1735743;-0.01315209,0.2056489;-0.07195126;-0.04381176,-0.09525853;0.3789095;0.007454807,-0.2945213;0.362497;0.01245083,-0.5429978;0.3794839;-0.009249488,0.06814693;0.002459477;-0.04183236,0.08233475;-0.2949299;-0.004977789,0.07083336;-0.588158;0.05735192,0.08260477;-0.6185542;-0.0009394214,-0.07288814;0.005566016;-0.03250137,-0.1065356;-0.2916942;-0.01004651,-0.1057043;-0.5857888;0.04917888,-0.1075972;-0.6132744;-0.01400658,0.02294746;0.3991278;0.01176328,22.48467
-0;0;0,0.01045296;0.1995558;0.008258182,0.02620511;0.4990911;0.007713282,0.1283507;0.370114;-0.03433444,0.1756485;0.1760254;-0.02471545,0.2054571;-0.06908005;-0.0638916,-0.09593789;0.3720279;0.01192539,-0.2942229;0.3468075;0.005070271,-0.5427926;0.3487197;-0.02156574,0.06603882;0.004059779;-0.04497101,0.09177734;-0.2926731;-0.0090946,0.08177207;-0.5845328;0.05959196,0.09330084;-0.6138687;-0.0001817532,-0.07511556;0.003955374;-0.02723983,-0.09796888;-0.2944824;-0.006925398,-0.09371711;-0.5887189;0.05144202,-0.09321793;-0.6185056;-0.008839268,0.02092026;0.3992693;0.01048381,0;0;0,0.01182404;0.1994611;0.00868737,0.02850625;0.4989494;0.009584389,0.1322682;0.3694502;-0.02783724,0.1699111;0.1735743;-0.01315209,0.2056489;-0.07195126;-0.04381176,-0.09525853;0.3789095;0.007454807,-0.2945213;0.362497;0.01245083,-0.5429978;0.3794839;-0.009249488,0.06814693;0.002459477;-0.04183236,0.08233475;-0.2949299;-0.004977789,0.07083336;-0.588158;0.05735192,0.08260477;-0.6185542;-0.0009394214,-0.07288814;0.005566016;-0.03250137,-0.1065356;-0.2916942;-0.01004651,-0.1057043;-0.5857888;0.04917888,-0.1075972;-0.6132744;-0.01400658,0.02294746;0.3991278;0.01176328,22.50665
-0;0;0,0.01045296;0.1995558;0.008258182,0.02620511;0.4990911;0.007713282,0.1283507;0.370114;-0.03433444,0.1756485;0.1760254;-0.02471545,0.2054571;-0.06908005;-0.0638916,-0.09593789;0.3720279;0.01192539,-0.2942229;0.3468075;0.005070271,-0.5427926;0.3487197;-0.02156574,0.06603882;0.004059779;-0.04497101,0.09177734;-0.2926731;-0.0090946,0.08177207;-0.5845328;0.05959196,0.09330084;-0.6138687;-0.0001817532,-0.07511556;0.003955374;-0.02723983,-0.09796888;-0.2944824;-0.006925398,-0.09371711;-0.5887189;0.05144202,-0.09321793;-0.6185056;-0.008839268,0.02092026;0.3992693;0.01048381,0;0;0,0.01182404;0.1994611;0.00868737,0.02850625;0.4989494;0.009584389,0.1322682;0.3694502;-0.02783724,0.1699111;0.1735743;-0.01315209,0.2056489;-0.07195126;-0.04381176,-0.09525853;0.3789095;0.007454807,-0.2945213;0.362497;0.01245083,-0.5429978;0.3794839;-0.009249488,0.06814693;0.002459477;-0.04183236,0.08233475;-0.2949299;-0.004977789,0.07083336;-0.588158;0.05735192,0.08260477;-0.6185542;-0.0009394214,-0.07288814;0.005566016;-0.03250137,-0.1065356;-0.2916942;-0.01004651,-0.1057043;-0.5857888;0.04917888,-0.1075972;-0.6132744;-0.01400658,0.02294746;0.3991278;0.01176328,22.51798
-0;0;0,0.01047542;0.1995525;0.008310003,0.02630014;0.499084;0.007819673,0.1285061;0.3700921;-0.03401961,0.1758818;0.1760103;-0.02464919,0.2056751;-0.06905176;-0.06410737,-0.0958843;0.3720649;0.01172533,-0.2938822;0.3471331;-0.001512662,-0.5412986;0.3503625;-0.03721511,0.06612421;0.004003753;-0.0448504,0.09184092;-0.2927433;-0.0090755,0.08186436;-0.5846262;0.05951633,0.09361213;-0.6139272;-0.0002611093,-0.07508683;0.003987949;-0.02731419,-0.09780242;-0.2944444;-0.006767465,-0.09356325;-0.5887116;0.05144604,-0.1057135;-0.5562946;-0.04624332,0.0209871;0.3992633;0.01057544,0;0;0,0.01179885;0.1994605;0.008734713,0.02859301;0.4989423;0.009543946,0.1323615;0.3693505;-0.02763443,0.1700991;0.1735155;-0.01264965,0.2057402;-0.07200734;-0.04344336,-0.09519998;0.3788852;0.00724381,-0.2945205;0.3626801;0.01019868,-0.5428402;0.3793006;-0.01348766,0.06821229;0.002412975;-0.0417284,0.08228809;-0.2950287;-0.005254198,0.07078766;-0.5881609;0.05752498,0.08310288;-0.6177815;-0.001710936,-0.07285152;0.005593787;-0.0325786,-0.1065519;-0.2916705;-0.01025753,-0.1055283;-0.5857485;0.04904769,-0.1063649;-0.6146808;-0.01234438,0.02299454;0.3991239;0.0117661,22.54044
-0;0;0,0.01047542;0.1995525;0.008310003,0.02630014;0.499084;0.007819673,0.1285061;0.3700921;-0.03401961,0.1758818;0.1760103;-0.02464919,0.2056751;-0.06905176;-0.06410737,-0.0958843;0.3720649;0.01172533,-0.2938822;0.3471331;-0.001512662,-0.5412986;0.3503625;-0.03721511,0.06612421;0.004003753;-0.0448504,0.09184092;-0.2927433;-0.0090755,0.08186436;-0.5846262;0.05951633,0.09361213;-0.6139272;-0.0002611093,-0.07508683;0.003987949;-0.02731419,-0.09780242;-0.2944444;-0.006767465,-0.09356325;-0.5887116;0.05144604,-0.1057135;-0.5562946;-0.04624332,0.0209871;0.3992633;0.01057544,0;0;0,0.01179885;0.1994605;0.008734713,0.02859301;0.4989423;0.009543946,0.1323615;0.3693505;-0.02763443,0.1700991;0.1735155;-0.01264965,0.2057402;-0.07200734;-0.04344336,-0.09519998;0.3788852;0.00724381,-0.2945205;0.3626801;0.01019868,-0.5428402;0.3793006;-0.01348766,0.06821229;0.002412975;-0.0417284,0.08228809;-0.2950287;-0.005254198,0.07078766;-0.5881609;0.05752498,0.08310288;-0.6177815;-0.001710936,-0.07285152;0.005593787;-0.0325786,-0.1065519;-0.2916705;-0.01025753,-0.1055283;-0.5857485;0.04904769,-0.1063649;-0.6146808;-0.01234438,0.02299454;0.3991239;0.0117661,22.55162
-0;0;0,0.01043325;0.1995496;0.008433537,0.02618976;0.4990848;0.008136484,0.1284499;0.3701056;-0.03369806,0.1758586;0.1760354;-0.02425306,0.205584;-0.06896974;-0.06411353,-0.09596362;0.3720075;0.0114509,-0.2936617;0.3476365;-0.00647972,-0.5402567;0.3507747;-0.04748024,0.06626631;0.003989551;-0.04464145,0.09205963;-0.2927811;-0.009118732,0.08203218;-0.5846691;0.05944401,0.09371202;-0.6134739;-0.0009992309,-0.07504467;0.003997643;-0.02742839,-0.09759153;-0.2944337;-0.006682422,-0.09353815;-0.5887348;0.05137301,-0.105514;-0.5563117;-0.04633897,0.0208989;0.3992612;0.01082973,0;0;0,0.01179885;0.1994605;0.008734713,0.02859301;0.4989423;0.009543946,0.1323615;0.3693505;-0.02763443,0.1700991;0.1735155;-0.01264965,0.2057402;-0.07200734;-0.04344336,-0.09519998;0.3788852;0.00724381,-0.2945205;0.3626801;0.01019868,-0.5428402;0.3793006;-0.01348766,0.06821229;0.002412975;-0.0417284,0.08228809;-0.2950287;-0.005254198,0.07078766;-0.5881609;0.05752498,0.08310288;-0.6177815;-0.001710936,-0.07285152;0.005593787;-0.0325786,-0.1065519;-0.2916705;-0.01025753,-0.1055283;-0.5857485;0.04904769,-0.1063649;-0.6146808;-0.01234438,0.02299454;0.3991239;0.0117661,22.57375
-0;0;0,0.01035954;0.1995466;0.008592551,0.02602653;0.4990863;0.008427523,0.1285688;0.3702494;-0.03291727,0.1758573;0.1761341;-0.02380263,0.2057646;-0.06871948;-0.0644507,-0.09605862;0.3718296;0.01061288,-0.2935174;0.3484568;-0.01092166,-0.5384585;0.3519073;-0.0608412,0.0664391;0.0038681;-0.04439464,0.09219917;-0.292974;-0.009449083,0.08228967;-0.5849438;0.05878194,0.09347361;-0.6143342;-0.0009849668,-0.0749044;0.004115692;-0.02779194,-0.09738398;-0.2943347;-0.007248363,-0.09371847;-0.5886364;0.0508301,-0.1052155;-0.5562167;-0.04693877,0.02076318;0.3992603;0.01108642,0;0;0,0.01183374;0.1994549;0.008814923,0.02870741;0.4989318;0.00964938,0.1325829;0.3693153;-0.02714182,0.1700007;0.1734375;-0.01191704,0.2060445;-0.07208861;-0.04221189,-0.09510282;0.3788676;0.007204989,-0.294481;0.3631156;0.007656111,-0.5426556;0.3785771;-0.01823476,0.06831443;0.002369256;-0.0415635,0.08243391;-0.2950824;-0.005188361,0.07099839;-0.588213;0.05761053,0.08333345;-0.6174998;-0.002067253,-0.07271346;0.005624027;-0.03288043,-0.1064571;-0.2916183;-0.01033327,-0.1052429;-0.5856871;0.04901367,-0.106087;-0.6144578;-0.01258555,0.0230846;0.3991148;0.01187232,22.59592
-0;0;0,0.01035954;0.1995466;0.008592551,0.02602653;0.4990863;0.008427523,0.1285688;0.3702494;-0.03291727,0.1758573;0.1761341;-0.02380263,0.2057646;-0.06871948;-0.0644507,-0.09605862;0.3718296;0.01061288,-0.2935174;0.3484568;-0.01092166,-0.5384585;0.3519073;-0.0608412,0.0664391;0.0038681;-0.04439464,0.09219917;-0.292974;-0.009449083,0.08228967;-0.5849438;0.05878194,0.09347361;-0.6143342;-0.0009849668,-0.0749044;0.004115692;-0.02779194,-0.09738398;-0.2943347;-0.007248363,-0.09371847;-0.5886364;0.0508301,-0.1052155;-0.5562167;-0.04693877,0.02076318;0.3992603;0.01108642,0;0;0,0.01183374;0.1994549;0.008814923,0.02870741;0.4989318;0.00964938,0.1325829;0.3693153;-0.02714182,0.1700007;0.1734375;-0.01191704,0.2060445;-0.07208861;-0.04221189,-0.09510282;0.3788676;0.007204989,-0.294481;0.3631156;0.007656111,-0.5426556;0.3785771;-0.01823476,0.06831443;0.002369256;-0.0415635,0.08243391;-0.2950824;-0.005188361,0.07099839;-0.588213;0.05761053,0.08333345;-0.6174998;-0.002067253,-0.07271346;0.005624027;-0.03288043,-0.1064571;-0.2916183;-0.01033327,-0.1052429;-0.5856871;0.04901367,-0.106087;-0.6144578;-0.01258555,0.0230846;0.3991148;0.01187232,22.60712
-0;0;0,0.01035954;0.1995466;0.008592551,0.02602653;0.4990863;0.008427523,0.1285688;0.3702494;-0.03291727,0.1758573;0.1761341;-0.02380263,0.2057646;-0.06871948;-0.0644507,-0.09605862;0.3718296;0.01061288,-0.2935174;0.3484568;-0.01092166,-0.5384585;0.3519073;-0.0608412,0.0664391;0.0038681;-0.04439464,0.09219917;-0.292974;-0.009449083,0.08228967;-0.5849438;0.05878194,0.09347361;-0.6143342;-0.0009849668,-0.0749044;0.004115692;-0.02779194,-0.09738398;-0.2943347;-0.007248363,-0.09371847;-0.5886364;0.0508301,-0.1052155;-0.5562167;-0.04693877,0.02076318;0.3992603;0.01108642,0;0;0,0.01183374;0.1994549;0.008814923,0.02870741;0.4989318;0.00964938,0.1325829;0.3693153;-0.02714182,0.1700007;0.1734375;-0.01191704,0.2060445;-0.07208861;-0.04221189,-0.09510282;0.3788676;0.007204989,-0.294481;0.3631156;0.007656111,-0.5426556;0.3785771;-0.01823476,0.06831443;0.002369256;-0.0415635,0.08243391;-0.2950824;-0.005188361,0.07099839;-0.588213;0.05761053,0.08333345;-0.6174998;-0.002067253,-0.07271346;0.005624027;-0.03288043,-0.1064571;-0.2916183;-0.01033327,-0.1052429;-0.5856871;0.04901367,-0.106087;-0.6144578;-0.01258555,0.0230846;0.3991148;0.01187232,22.61855
-0;0;0,0.01032531;0.1995434;0.008706862,0.0258669;0.49909;0.008840621,0.1286051;0.3704568;-0.03239231,0.1757282;0.1763094;-0.02310805,0.2059174;-0.06846665;-0.06401391,-0.09616806;0.371842;0.01030663,-0.2927145;0.34896;-0.01877769,-0.5360065;0.3529733;-0.07616197,0.06651578;0.003870168;-0.04427948,0.09217697;-0.2929949;-0.009455916,0.08237774;-0.584971;0.05876381,0.09389166;-0.613903;-0.001545001,-0.07488167;0.00410447;-0.02785475,-0.09737948;-0.2943427;-0.007284494,-0.09373001;-0.5886259;0.05088827,-0.1049733;-0.556201;-0.04691105,0.02065301;0.3992586;0.01138897,0;0;0,0.01191577;0.1994436;0.008959575,0.0291611;0.4988982;0.01019738,0.1328035;0.3690917;-0.02678085,0.1701864;0.1732421;-0.01111407,0.2064319;-0.07224467;-0.04148718,-0.09479608;0.3788379;0.007213799,-0.2941857;0.3635426;0.004079008,-0.5420925;0.3785282;-0.02451563,0.06835954;0.002331743;-0.04149139,0.08254462;-0.2951189;-0.0051331,0.07105884;-0.5882188;0.05779941,0.08363069;-0.6172349;-0.002187237,-0.07269605;0.005656066;-0.03291341,-0.1065034;-0.2915865;-0.01046468,-0.1051069;-0.5856311;0.04899766,-0.106167;-0.6141202;-0.01295666,0.02337461;0.3990875;0.01227777,22.63115
-0;0;0,0.01032531;0.1995434;0.008706862,0.0258669;0.49909;0.008840621,0.1286051;0.3704568;-0.03239231,0.1757282;0.1763094;-0.02310805,0.2059174;-0.06846665;-0.06401391,-0.09616806;0.371842;0.01030663,-0.2927145;0.34896;-0.01877769,-0.5360065;0.3529733;-0.07616197,0.06651578;0.003870168;-0.04427948,0.09217697;-0.2929949;-0.009455916,0.08237774;-0.584971;0.05876381,0.09389166;-0.613903;-0.001545001,-0.07488167;0.00410447;-0.02785475,-0.09737948;-0.2943427;-0.007284494,-0.09373001;-0.5886259;0.05088827,-0.1049733;-0.556201;-0.04691105,0.02065301;0.3992586;0.01138897,0;0;0,0.01191577;0.1994436;0.008959575,0.0291611;0.4988982;0.01019738,0.1328035;0.3690917;-0.02678085,0.1701864;0.1732421;-0.01111407,0.2064319;-0.07224467;-0.04148718,-0.09479608;0.3788379;0.007213799,-0.2941857;0.3635426;0.004079008,-0.5420925;0.3785282;-0.02451563,0.06835954;0.002331743;-0.04149139,0.08254462;-0.2951189;-0.0051331,0.07105884;-0.5882188;0.05779941,0.08363069;-0.6172349;-0.002187237,-0.07269605;0.005656066;-0.03291341,-0.1065034;-0.2915865;-0.01046468,-0.1051069;-0.5856311;0.04899766,-0.106167;-0.6141202;-0.01295666,0.02337461;0.3990875;0.01227777,22.6516
-0;0;0,0.01029378;0.1995416;0.008786479,0.02578035;0.499091;0.009044806,0.1287134;0.3704097;-0.03176398,0.1756328;0.1762229;-0.02227325,0.2058592;-0.06841776;-0.06395423,-0.09613332;0.3714793;0.009296359,-0.2920705;0.349394;-0.02418294,-0.5344983;0.3528652;-0.08514762,0.06673959;0.003814986;-0.04394625,0.09229571;-0.2931012;-0.009484053,0.08253754;-0.5851192;0.05856207,0.09373675;-0.6140395;-0.001821455,-0.07481976;0.004136297;-0.02801598,-0.09732317;-0.2943104;-0.007445034,-0.09348749;-0.5885193;0.05109061,-0.1042425;-0.5560976;-0.04676301,0.02058552;0.3992575;0.01155075,0;0;0,0.01191577;0.1994436;0.008959575,0.0291611;0.4988982;0.01019738,0.1328035;0.3690917;-0.02678085,0.1701864;0.1732421;-0.01111407,0.2064319;-0.07224467;-0.04148718,-0.09479608;0.3788379;0.007213799,-0.2941857;0.3635426;0.004079008,-0.5420925;0.3785282;-0.02451563,0.06835954;0.002331743;-0.04149139,0.08254462;-0.2951189;-0.0051331,0.07105884;-0.5882188;0.05779941,0.08363069;-0.6172349;-0.002187237,-0.07269605;0.005656066;-0.03291341,-0.1065034;-0.2915865;-0.01046468,-0.1051069;-0.5856311;0.04899766,-0.106167;-0.6141202;-0.01295666,0.02337461;0.3990875;0.01227777,22.66314
-0;0;0,0.01029378;0.1995416;0.008786479,0.02578035;0.499091;0.009044806,0.1287134;0.3704097;-0.03176398,0.1756328;0.1762229;-0.02227325,0.2058592;-0.06841776;-0.06395423,-0.09613332;0.3714793;0.009296359,-0.2920705;0.349394;-0.02418294,-0.5344983;0.3528652;-0.08514762,0.06673959;0.003814986;-0.04394625,0.09229571;-0.2931012;-0.009484053,0.08253754;-0.5851192;0.05856207,0.09373675;-0.6140395;-0.001821455,-0.07481976;0.004136297;-0.02801598,-0.09732317;-0.2943104;-0.007445034,-0.09348749;-0.5885193;0.05109061,-0.1042425;-0.5560976;-0.04676301,0.02058552;0.3992575;0.01155075,0;0;0,0.01194893;0.1994382;0.009034263,0.0293052;0.4988859;0.01028583,0.1331072;0.3686147;-0.02576351,0.1706425;0.1727697;-0.01040719,0.2064684;-0.07279822;-0.04062155,-0.09466104;0.3787629;0.006966203,-0.2940519;0.3641393;0.001540463,-0.5414914;0.3769284;-0.0317783,0.06848779;0.002216632;-0.0412857,0.08281381;-0.2952652;-0.005239468,0.0712791;-0.5883493;0.0577578,0.08407114;-0.6171149;-0.002511147,-0.07262471;0.005698726;-0.03306322,-0.1063281;-0.2915511;-0.01055451,-0.1048942;-0.585579;0.04898975,-0.1058977;-0.614116;-0.01290487,0.02348318;0.3990774;0.01237586,22.68551
-0;0;0,0.01013511;0.1995431;0.008935919,0.02545617;0.4991011;0.009520163,0.1287005;0.3704276;-0.03078661,0.1753082;0.1761671;-0.02126942,0.2053232;-0.06845815;-0.06319304,-0.09633522;0.3713789;0.008167362,-0.2910221;0.3529479;-0.0337531,-0.5322496;0.3552431;-0.09935812,0.06696001;0.003889035;-0.04360313,0.09180567;-0.2931202;-0.009423561,0.08205686;-0.5851776;0.05845452,0.09311976;-0.6139576;-0.00213683,-0.07474961;0.004077057;-0.02821123,-0.09760587;-0.2943366;-0.007550362,-0.09376445;-0.5885502;0.05096146,-0.09310172;-0.6187202;-0.008807488,0.0203207;0.3992615;0.01190314,0;0;0,0.01194893;0.1994382;0.009034263,0.0293052;0.4988859;0.01028583,0.1331072;0.3686147;-0.02576351,0.1706425;0.1727697;-0.01040719,0.2064684;-0.07279822;-0.04062155,-0.09466104;0.3787629;0.006966203,-0.2940519;0.3641393;0.001540463,-0.5414914;0.3769284;-0.0317783,0.06848779;0.002216632;-0.0412857,0.08281381;-0.2952652;-0.005239468,0.0712791;-0.5883493;0.0577578,0.08407114;-0.6171149;-0.002511147,-0.07262471;0.005698726;-0.03306322,-0.1063281;-0.2915511;-0.01055451,-0.1048942;-0.585579;0.04898975,-0.1058977;-0.614116;-0.01290487,0.02348318;0.3990774;0.01237586,22.70787
-0;0;0,0.009828869;0.1995542;0.009029693,0.02487144;0.4991265;0.009817559,0.1285282;0.3704174;-0.02974122,0.1747942;0.1760572;-0.02059922,0.2046099;-0.06875297;-0.06157467,-0.09673429;0.3712176;0.007131395,-0.2906529;0.3527363;-0.03818989,-0.5303046;0.3558036;-0.1093072,0.06721854;0.003968935;-0.04319624,0.09123739;-0.2931511;-0.009390838,0.08149891;-0.5852469;0.05832326,0.09322339;-0.6141908;-0.001929488,-0.0746186;0.003998904;-0.028567,-0.09794728;-0.294359;-0.007630154,-0.09388675;-0.5885541;0.05095919,-0.1033852;-0.5561442;-0.04702227,0.0198318;0.39928;0.01211617,0;0;0,0.01192288;0.1994341;0.009159934,0.02930503;0.4988787;0.01068141,0.1331804;0.3688236;-0.02536549,0.170858;0.1730377;-0.00960906,0.2061217;-0.07275903;-0.03859957,-0.09461936;0.3785975;0.006634335,-0.2939198;0.3643425;-0.002091314,-0.540879;0.3765058;-0.03901337,0.0685501;0.002218571;-0.04118205,0.08287447;-0.2952755;-0.005236033,0.07132218;-0.5883389;0.05785426,0.08464053;-0.6168661;-0.002611458,-0.0725594;0.005692346;-0.03320738,-0.1066208;-0.2915133;-0.01065377,-0.1048246;-0.5855367;0.04890282,-0.1060481;-0.61403;-0.01304317,0.02346643;0.3990695;0.01268768,22.72984
-0;0;0,0.009828869;0.1995542;0.009029693,0.02487144;0.4991265;0.009817559,0.1285282;0.3704174;-0.02974122,0.1747942;0.1760572;-0.02059922,0.2046099;-0.06875297;-0.06157467,-0.09673429;0.3712176;0.007131395,-0.2906529;0.3527363;-0.03818989,-0.5303046;0.3558036;-0.1093072,0.06721854;0.003968935;-0.04319624,0.09123739;-0.2931511;-0.009390838,0.08149891;-0.5852469;0.05832326,0.09322339;-0.6141908;-0.001929488,-0.0746186;0.003998904;-0.028567,-0.09794728;-0.294359;-0.007630154,-0.09388675;-0.5885541;0.05095919,-0.1033852;-0.5561442;-0.04702227,0.0198318;0.39928;0.01211617,0;0;0,0.01192288;0.1994341;0.009159934,0.02930503;0.4988787;0.01068141,0.1331804;0.3688236;-0.02536549,0.170858;0.1730377;-0.00960906,0.2061217;-0.07275903;-0.03859957,-0.09461936;0.3785975;0.006634335,-0.2939198;0.3643425;-0.002091314,-0.540879;0.3765058;-0.03901337,0.0685501;0.002218571;-0.04118205,0.08287447;-0.2952755;-0.005236033,0.07132218;-0.5883389;0.05785426,0.08464053;-0.6168661;-0.002611458,-0.0725594;0.005692346;-0.03320738,-0.1066208;-0.2915133;-0.01065377,-0.1048246;-0.5855367;0.04890282,-0.1060481;-0.61403;-0.01304317,0.02346643;0.3990695;0.01268768,22.74147
-0;0;0,0.009828869;0.1995542;0.009029693,0.02487144;0.4991265;0.009817559,0.1285282;0.3704174;-0.02974122,0.1747942;0.1760572;-0.02059922,0.2046099;-0.06875297;-0.06157467,-0.09673429;0.3712176;0.007131395,-0.2906529;0.3527363;-0.03818989,-0.5303046;0.3558036;-0.1093072,0.06721854;0.003968935;-0.04319624,0.09123739;-0.2931511;-0.009390838,0.08149891;-0.5852469;0.05832326,0.09322339;-0.6141908;-0.001929488,-0.0746186;0.003998904;-0.028567,-0.09794728;-0.294359;-0.007630154,-0.09388675;-0.5885541;0.05095919,-0.1033852;-0.5561442;-0.04702227,0.0198318;0.39928;0.01211617,0;0;0,0.01192288;0.1994341;0.009159934,0.02930503;0.4988787;0.01068141,0.1331804;0.3688236;-0.02536549,0.170858;0.1730377;-0.00960906,0.2061217;-0.07275903;-0.03859957,-0.09461936;0.3785975;0.006634335,-0.2939198;0.3643425;-0.002091314,-0.540879;0.3765058;-0.03901337,0.0685501;0.002218571;-0.04118205,0.08287447;-0.2952755;-0.005236033,0.07132218;-0.5883389;0.05785426,0.08464053;-0.6168661;-0.002611458,-0.0725594;0.005692346;-0.03320738,-0.1066208;-0.2915133;-0.01065377,-0.1048246;-0.5855367;0.04890282,-0.1060481;-0.61403;-0.01304317,0.02346643;0.3990695;0.01268768,22.75289
-0;0;0,0.009504875;0.1995614;0.009215432,0.02421462;0.4991498;0.01037453,0.1282679;0.3705836;-0.02869577,0.1742271;0.1761868;-0.01881436,0.2040959;-0.06866802;-0.05948329,-0.09722758;0.3712563;0.00639227,-0.2898868;0.3524001;-0.04387556,-0.5274185;0.3572624;-0.1216898,0.06766959;0.004099532;-0.04247376,0.09054267;-0.2931967;-0.009431779,0.08087333;-0.5853145;0.05819722,0.09210251;-0.6141611;-0.002276968,-0.07438052;0.003900322;-0.02919462,-0.09841263;-0.2943677;-0.00777806,-0.09445599;-0.5885857;0.05070389,-0.1034064;-0.5561692;-0.04733034,0.01928944;0.3992944;0.01252773,0;0;0,0.01192288;0.1994341;0.009159934,0.02930503;0.4988787;0.01068141,0.1331804;0.3688236;-0.02536549,0.170858;0.1730377;-0.00960906,0.2061217;-0.07275903;-0.03859957,-0.09461936;0.3785975;0.006634335,-0.2939198;0.3643425;-0.002091314,-0.540879;0.3765058;-0.03901337,0.0685501;0.002218571;-0.04118205,0.08287447;-0.2952755;-0.005236033,0.07132218;-0.5883389;0.05785426,0.08464053;-0.6168661;-0.002611458,-0.0725594;0.005692346;-0.03320738,-0.1066208;-0.2915133;-0.01065377,-0.1048246;-0.5855367;0.04890282,-0.1060481;-0.61403;-0.01304317,0.02346643;0.3990695;0.01268768,22.76514
-0;0;0,0.009504875;0.1995614;0.009215432,0.02421462;0.4991498;0.01037453,0.1282679;0.3705836;-0.02869577,0.1742271;0.1761868;-0.01881436,0.2040959;-0.06866802;-0.05948329,-0.09722758;0.3712563;0.00639227,-0.2898868;0.3524001;-0.04387556,-0.5274185;0.3572624;-0.1216898,0.06766959;0.004099532;-0.04247376,0.09054267;-0.2931967;-0.009431779,0.08087333;-0.5853145;0.05819722,0.09210251;-0.6141611;-0.002276968,-0.07438052;0.003900322;-0.02919462,-0.09841263;-0.2943677;-0.00777806,-0.09445599;-0.5885857;0.05070389,-0.1034064;-0.5561692;-0.04733034,0.01928944;0.3992944;0.01252773,0;0;0,0.01167169;0.1994312;0.00953924,0.02846912;0.4989031;0.01202911,0.1325879;0.3692075;-0.02456399,0.1701906;0.173416;-0.008698065,0.2054659;-0.07236502;-0.03780723,-0.09513278;0.3783514;0.006501437,-0.2943071;0.3636933;-0.004209093,-0.5404724;0.3770903;-0.04572066,0.06863891;0.00216215;-0.04103688,0.08289892;-0.2953556;-0.00526195,0.07139149;-0.5884182;0.05784008,0.0848069;-0.6169341;-0.002618812,-0.07252406;0.005684178;-0.03328589,-0.1065802;-0.2915203;-0.01070995,-0.1051071;-0.5855743;0.04870505,-0.1059918;-0.6142305;-0.01303978,0.02284459;0.3990754;0.01370234,22.77578
-0;0;0,0.009335484;0.1995618;0.009376673,0.02383698;0.4991596;0.01090287,0.1283472;0.3708475;-0.02748551,0.1740974;0.1763959;-0.01771389,0.2041599;-0.06885862;-0.05574661,-0.09735448;0.3711209;0.004580029,-0.2892543;0.3517768;-0.04833738,-0.522979;0.3590072;-0.1367709,0.06796776;0.004151698;-0.04198984,0.09023582;-0.2932383;-0.009381302,0.08055244;-0.5853331;0.05834492,0.09171472;-0.6140717;-0.002282154,-0.07411256;0.003862773;-0.0298732,-0.09856448;-0.2943252;-0.007827297,-0.09467576;-0.5885619;0.05056482,-0.1027157;-0.5561484;-0.04754772,0.01899254;0.3992972;0.01291471,0;0;0,0.01167169;0.1994312;0.00953924,0.02846912;0.4989031;0.01202911,0.1325879;0.3692075;-0.02456399,0.1701906;0.173416;-0.008698065,0.2054659;-0.07236502;-0.03780723,-0.09513278;0.3783514;0.006501437,-0.2943071;0.3636933;-0.004209093,-0.5404724;0.3770903;-0.04572066,0.06863891;0.00216215;-0.04103688,0.08289892;-0.2953556;-0.00526195,0.07139149;-0.5884182;0.05784008,0.0848069;-0.6169341;-0.002618812,-0.07252406;0.005684178;-0.03328589,-0.1065802;-0.2915203;-0.01070995,-0.1051071;-0.5855743;0.04870505,-0.1059918;-0.6142305;-0.01303978,0.02284459;0.3990754;0.01370234,22.79709
-0;0;0,0.009335484;0.1995618;0.009376673,0.02383698;0.4991596;0.01090287,0.1283472;0.3708475;-0.02748551,0.1740974;0.1763959;-0.01771389,0.2041599;-0.06885862;-0.05574661,-0.09735448;0.3711209;0.004580029,-0.2892543;0.3517768;-0.04833738,-0.522979;0.3590072;-0.1367709,0.06796776;0.004151698;-0.04198984,0.09023582;-0.2932383;-0.009381302,0.08055244;-0.5853331;0.05834492,0.09171472;-0.6140717;-0.002282154,-0.07411256;0.003862773;-0.0298732,-0.09856448;-0.2943252;-0.007827297,-0.09467576;-0.5885619;0.05056482,-0.1027157;-0.5561484;-0.04754772,0.01899254;0.3992972;0.01291471,0;0;0,0.01167169;0.1994312;0.00953924,0.02846912;0.4989031;0.01202911,0.1325879;0.3692075;-0.02456399,0.1701906;0.173416;-0.008698065,0.2054659;-0.07236502;-0.03780723,-0.09513278;0.3783514;0.006501437,-0.2943071;0.3636933;-0.004209093,-0.5404724;0.3770903;-0.04572066,0.06863891;0.00216215;-0.04103688,0.08289892;-0.2953556;-0.00526195,0.07139149;-0.5884182;0.05784008,0.0848069;-0.6169341;-0.002618812,-0.07252406;0.005684178;-0.03328589,-0.1065802;-0.2915203;-0.01070995,-0.1051071;-0.5855743;0.04870505,-0.1059918;-0.6142305;-0.01303978,0.02284459;0.3990754;0.01370234,22.81956
-0;0;0,0.009193549;0.1995629;0.009494451,0.0234815;0.4991699;0.01111799,0.1286287;0.3710477;-0.02585324,0.1741822;0.1765783;-0.01553233,0.2038429;-0.06870569;-0.05369036,-0.09746473;0.3711363;0.002543382,-0.2881101;0.3550166;-0.05571874,-0.5218366;0.3594186;-0.1443333,0.06844415;0.004161967;-0.04120773,0.08965065;-0.2933353;-0.008871451,0.08004722;-0.5854093;0.0589563,0.0908509;-0.6146083;-0.001133617,-0.07388429;0.003828411;-0.03043772,-0.09878941;-0.2942931;-0.008002575,-0.09484288;-0.5885255;0.05040699,-0.0944659;-0.61875;-0.009291325,0.01870316;0.399304;0.01310769,0;0;0,0.01171008;0.1994166;0.009792376,0.02877873;0.4988704;0.01252018,0.1328604;0.3692098;-0.02397211,0.1702647;0.1733803;-0.008106386,0.205514;-0.07248309;-0.03654382,-0.09488428;0.3782608;0.0064771,-0.2939462;0.3637176;-0.00628378,-0.5392507;0.3763831;-0.05281626,0.06886122;0.002122357;-0.04066482,0.08337776;-0.2954621;-0.005553812,0.07184927;-0.5884892;0.05770944,0.08564673;-0.6167678;-0.00297071,-0.07240423;0.005718744;-0.03353987,-0.1063518;-0.2914939;-0.01090785,-0.1048843;-0.5855418;0.04853728,-0.1061427;-0.6142181;-0.01317544,0.02305332;0.3990475;0.0141345,22.83301
-0;0;0,0.009193549;0.1995629;0.009494451,0.0234815;0.4991699;0.01111799,0.1286287;0.3710477;-0.02585324,0.1741822;0.1765783;-0.01553233,0.2038429;-0.06870569;-0.05369036,-0.09746473;0.3711363;0.002543382,-0.2881101;0.3550166;-0.05571874,-0.5218366;0.3594186;-0.1443333,0.06844415;0.004161967;-0.04120773,0.08965065;-0.2933353;-0.008871451,0.08004722;-0.5854093;0.0589563,0.0908509;-0.6146083;-0.001133617,-0.07388429;0.003828411;-0.03043772,-0.09878941;-0.2942931;-0.008002575,-0.09484288;-0.5885255;0.05040699,-0.0944659;-0.61875;-0.009291325,0.01870316;0.399304;0.01310769,0;0;0,0.01171008;0.1994166;0.009792376,0.02877873;0.4988704;0.01252018,0.1328604;0.3692098;-0.02397211,0.1702647;0.1733803;-0.008106386,0.205514;-0.07248309;-0.03654382,-0.09488428;0.3782608;0.0064771,-0.2939462;0.3637176;-0.00628378,-0.5392507;0.3763831;-0.05281626,0.06886122;0.002122357;-0.04066482,0.08337776;-0.2954621;-0.005553812,0.07184927;-0.5884892;0.05770944,0.08564673;-0.6167678;-0.00297071,-0.07240423;0.005718744;-0.03353987,-0.1063518;-0.2914939;-0.01090785,-0.1048843;-0.5855418;0.04853728,-0.1061427;-0.6142181;-0.01317544,0.02305332;0.3990475;0.0141345,22.85262
-0;0;0,0.009059614;0.1995575;0.009732282,0.02317437;0.4991706;0.01176925,0.1284999;0.3708998;-0.02489966,0.1741374;0.1765319;-0.01313864,0.2034981;-0.06869131;-0.05191418,-0.0974731;0.3709627;0.001036372,-0.2874161;0.3560632;-0.05978843,-0.5174346;0.3611135;-0.1575943,0.0689605;0.004252975;-0.04032816,0.08926576;-0.2933917;-0.008779194,0.07963558;-0.5855021;0.05888773,0.09033879;-0.6148038;-0.001084585,-0.07346459;0.003722616;-0.0314499,-0.09907854;-0.2942722;-0.008146528,-0.09511951;-0.5885013;0.05027885,-0.1012301;-0.556104;-0.04796984,0.0184531;0.3992991;0.01361245,0;0;0,0.01171008;0.1994166;0.009792376,0.02877873;0.4988704;0.01252018,0.1328604;0.3692098;-0.02397211,0.1702647;0.1733803;-0.008106386,0.205514;-0.07248309;-0.03654382,-0.09488428;0.3782608;0.0064771,-0.2939462;0.3637176;-0.00628378,-0.5392507;0.3763831;-0.05281626,0.06886122;0.002122357;-0.04066482,0.08337776;-0.2954621;-0.005553812,0.07184927;-0.5884892;0.05770944,0.08564673;-0.6167678;-0.00297071,-0.07240423;0.005718744;-0.03353987,-0.1063518;-0.2914939;-0.01090785,-0.1048843;-0.5855418;0.04853728,-0.1061427;-0.6142181;-0.01317544,0.02305332;0.3990475;0.0141345,22.86417
-0;0;0,0.009059614;0.1995575;0.009732282,0.02317437;0.4991706;0.01176925,0.1284999;0.3708998;-0.02489966,0.1741374;0.1765319;-0.01313864,0.2034981;-0.06869131;-0.05191418,-0.0974731;0.3709627;0.001036372,-0.2874161;0.3560632;-0.05978843,-0.5174346;0.3611135;-0.1575943,0.0689605;0.004252975;-0.04032816,0.08926576;-0.2933917;-0.008779194,0.07963558;-0.5855021;0.05888773,0.09033879;-0.6148038;-0.001084585,-0.07346459;0.003722616;-0.0314499,-0.09907854;-0.2942722;-0.008146528,-0.09511951;-0.5885013;0.05027885,-0.1012301;-0.556104;-0.04796984,0.0184531;0.3992991;0.01361245,0;0;0,0.01172637;0.199414;0.009825177,0.02885998;0.4988638;0.01258038,0.1330289;0.3690425;-0.02345899,0.1702913;0.1731708;-0.007780524,0.20516;-0.0728793;-0.03504755,-0.09476173;0.3780771;0.005981956,-0.2934495;0.3631867;-0.01138045,-0.5378904;0.3753399;-0.06237994,0.06888204;0.002142063;-0.04062851,0.08333339;-0.2954636;-0.005671021,0.07165222;-0.5884712;0.0576546,0.08568648;-0.6163154;-0.003528044,-0.07239603;0.005691536;-0.0335622,-0.1063263;-0.2915254;-0.0109602,-0.1046582;-0.5855343;0.0486715,-0.105843;-0.6146905;-0.01242593,0.02310738;0.3990423;0.01418778,22.88665
-0;0;0,0.00900464;0.1995564;0.009805171,0.02299434;0.4991748;0.01185659,0.1286897;0.37101;-0.02392773,0.1743253;0.1766874;-0.01143175,0.2036677;-0.06894688;-0.04752598,-0.09748114;0.3711479;-0.0004108045,-0.2857036;0.3548442;-0.06603473,-0.5142846;0.3617194;-0.1670469,0.06933448;0.004361625;-0.03966996,0.08910816;-0.2933611;-0.008521968,0.0794425;-0.5855531;0.05878675,0.09001183;-0.6144373;-0.001757096,-0.07325337;0.003637407;-0.0319486,-0.09916979;-0.294306;-0.008324765,-0.0952763;-0.5885531;0.05001449,-0.09482112;-0.6182864;-0.01033777,0.01831204;0.3993016;0.01370675,0;0;0,0.01172637;0.199414;0.009825177,0.02885998;0.4988638;0.01258038,0.1330289;0.3690425;-0.02345899,0.1702913;0.1731708;-0.007780524,0.20516;-0.0728793;-0.03504755,-0.09476173;0.3780771;0.005981956,-0.2934495;0.3631867;-0.01138045,-0.5378904;0.3753399;-0.06237994,0.06888204;0.002142063;-0.04062851,0.08333339;-0.2954636;-0.005671021,0.07165222;-0.5884712;0.0576546,0.08568648;-0.6163154;-0.003528044,-0.07239603;0.005691536;-0.0335622,-0.1063263;-0.2915254;-0.0109602,-0.1046582;-0.5855343;0.0486715,-0.105843;-0.6146905;-0.01242593,0.02310738;0.3990423;0.01418778,22.89777
-0;0;0,0.00900464;0.1995564;0.009805171,0.02299434;0.4991748;0.01185659,0.1286897;0.37101;-0.02392773,0.1743253;0.1766874;-0.01143175,0.2036677;-0.06894688;-0.04752598,-0.09748114;0.3711479;-0.0004108045,-0.2857036;0.3548442;-0.06603473,-0.5142846;0.3617194;-0.1670469,0.06933448;0.004361625;-0.03966996,0.08910816;-0.2933611;-0.008521968,0.0794425;-0.5855531;0.05878675,0.09001183;-0.6144373;-0.001757096,-0.07325337;0.003637407;-0.0319486,-0.09916979;-0.294306;-0.008324765,-0.0952763;-0.5885531;0.05001449,-0.09482112;-0.6182864;-0.01033777,0.01831204;0.3993016;0.01370675,0;0;0,0.01172637;0.199414;0.009825177,0.02885998;0.4988638;0.01258038,0.1330289;0.3690425;-0.02345899,0.1702913;0.1731708;-0.007780524,0.20516;-0.0728793;-0.03504755,-0.09476173;0.3780771;0.005981956,-0.2934495;0.3631867;-0.01138045,-0.5378904;0.3753399;-0.06237994,0.06888204;0.002142063;-0.04062851,0.08333339;-0.2954636;-0.005671021,0.07165222;-0.5884712;0.0576546,0.08568648;-0.6163154;-0.003528044,-0.07239603;0.005691536;-0.0335622,-0.1063263;-0.2915254;-0.0109602,-0.1046582;-0.5855343;0.0486715,-0.105843;-0.6146905;-0.01242593,0.02310738;0.3990423;0.01418778,22.92025
-0;0;0,0.008988776;0.1995513;0.009923251,0.0229568;0.4991695;0.01212575,0.1290303;0.3710985;-0.02266162,0.1745808;0.1767875;-0.009686515,0.2034796;-0.06889257;-0.04582765,-0.09746865;0.3715115;-0.001259597,-0.2838627;0.3545063;-0.07174408,-0.5091663;0.3632097;-0.1797374,0.06960771;0.004287205;-0.03919676,0.08899379;-0.2935083;-0.008504609,0.07928898;-0.5856698;0.05893053,0.08995824;-0.6140847;-0.002202649,-0.07285812;0.003752107;-0.03282706,-0.09911222;-0.2941093;-0.008551426,-0.09529689;-0.5883352;0.0499001,-0.09458006;-0.6182243;-0.01024321,0.01827825;0.3992953;0.0139296,0;0;0,0.01166388;0.1994075;0.01003067,0.02882067;0.4988528;0.01304612,0.132995;0.3690812;-0.02304861,0.1701301;0.1732123;-0.007037863,0.2050186;-0.07290314;-0.0336834,-0.0947394;0.3779263;0.005684461,-0.2932064;0.3628944;-0.01393412,-0.5366377;0.3757593;-0.06939325,0.06894278;0.002150232;-0.04052492,0.08329459;-0.295482;-0.005753148,0.07182416;-0.5885039;0.05754453,0.08575925;-0.6160151;-0.004082024,-0.07235985;0.00568804;-0.03364073,-0.1062362;-0.2915354;-0.01104349,-0.10455;-0.5855296;0.04866027,-0.1078237;-0.6132295;-0.01420482,0.02305454;0.399031;0.01458261,22.94204
-0;0;0,0.008988776;0.1995513;0.009923251,0.0229568;0.4991695;0.01212575,0.1290303;0.3710985;-0.02266162,0.1745808;0.1767875;-0.009686515,0.2034796;-0.06889257;-0.04582765,-0.09746865;0.3715115;-0.001259597,-0.2838627;0.3545063;-0.07174408,-0.5091663;0.3632097;-0.1797374,0.06960771;0.004287205;-0.03919676,0.08899379;-0.2935083;-0.008504609,0.07928898;-0.5856698;0.05893053,0.08995824;-0.6140847;-0.002202649,-0.07285812;0.003752107;-0.03282706,-0.09911222;-0.2941093;-0.008551426,-0.09529689;-0.5883352;0.0499001,-0.09458006;-0.6182243;-0.01024321,0.01827825;0.3992953;0.0139296,0;0;0,0.01166388;0.1994075;0.01003067,0.02882067;0.4988528;0.01304612,0.132995;0.3690812;-0.02304861,0.1701301;0.1732123;-0.007037863,0.2050186;-0.07290314;-0.0336834,-0.0947394;0.3779263;0.005684461,-0.2932064;0.3628944;-0.01393412,-0.5366377;0.3757593;-0.06939325,0.06894278;0.002150232;-0.04052492,0.08329459;-0.295482;-0.005753148,0.07182416;-0.5885039;0.05754453,0.08575925;-0.6160151;-0.004082024,-0.07235985;0.00568804;-0.03364073,-0.1062362;-0.2915354;-0.01104349,-0.10455;-0.5855296;0.04866027,-0.1078237;-0.6132295;-0.01420482,0.02305454;0.399031;0.01458261,22.95342
-0;0;0,0.008930189;0.1995474;0.01005472,0.02278356;0.4991694;0.01242103,0.1292247;0.3712852;-0.02154902,0.174853;0.1770895;-0.007193336,0.2036702;-0.06869452;-0.04268686,-0.09739597;0.3715935;-0.002665513,-0.2830283;0.3540094;-0.07499412,-0.5047001;0.3648755;-0.1900747,0.06991176;0.004321076;-0.03864808,0.08886953;-0.2935658;-0.008581236,0.07871375;-0.5857447;0.05871181,0.09006274;-0.6143162;-0.002097167,-0.07266783;0.003703874;-0.03325159,-0.09914435;-0.2941051;-0.008576678,-0.0953715;-0.5883868;0.04959544,-0.09458536;-0.6170356;-0.0121602,0.01814238;0.3992926;0.01417641,0;0;0,0.01166388;0.1994075;0.01003067,0.02882067;0.4988528;0.01304612,0.132995;0.3690812;-0.02304861,0.1701301;0.1732123;-0.007037863,0.2050186;-0.07290314;-0.0336834,-0.0947394;0.3779263;0.005684461,-0.2932064;0.3628944;-0.01393412,-0.5366377;0.3757593;-0.06939325,0.06894278;0.002150232;-0.04052492,0.08329459;-0.295482;-0.005753148,0.07182416;-0.5885039;0.05754453,0.08575925;-0.6160151;-0.004082024,-0.07235985;0.00568804;-0.03364073,-0.1062362;-0.2915354;-0.01104349,-0.10455;-0.5855296;0.04866027,-0.1078237;-0.6132295;-0.01420482,0.02305454;0.399031;0.01458261,22.96472
-0;0;0,0.008930189;0.1995474;0.01005472,0.02278356;0.4991694;0.01242103,0.1292247;0.3712852;-0.02154902,0.174853;0.1770895;-0.007193336,0.2036702;-0.06869452;-0.04268686,-0.09739597;0.3715935;-0.002665513,-0.2830283;0.3540094;-0.07499412,-0.5047001;0.3648755;-0.1900747,0.06991176;0.004321076;-0.03864808,0.08886953;-0.2935658;-0.008581236,0.07871375;-0.5857447;0.05871181,0.09006274;-0.6143162;-0.002097167,-0.07266783;0.003703874;-0.03325159,-0.09914435;-0.2941051;-0.008576678,-0.0953715;-0.5883868;0.04959544,-0.09458536;-0.6170356;-0.0121602,0.01814238;0.3992926;0.01417641,0;0;0,0.01160168;0.1993964;0.01031897,0.02880724;0.4988344;0.01369928,0.1329959;0.369166;-0.02247893,0.1698254;0.1732397;-0.006464703,0.2049784;-0.07281713;-0.03330313,-0.09468022;0.3777348;0.005421559,-0.2927197;0.3624018;-0.01792906,-0.5345964;0.3752995;-0.07981028,0.06903441;0.002083411;-0.04037214,0.08353581;-0.2955749;-0.005886897,0.0719905;-0.5885997;0.05738369,0.08606978;-0.6159937;-0.004357155,-0.07229386;0.005745499;-0.03377258,-0.1061211;-0.2914825;-0.01116185,-0.1043396;-0.5855055;0.04839733,-0.1080755;-0.6126326;-0.01514369,0.02301883;0.3990123;0.01512733,22.98682
-0;0;0,0.008815522;0.1995477;0.01014914,0.02251207;0.499176;0.01261795,0.1294474;0.3718035;-0.0203806,0.1747682;0.1775844;-0.005381407,0.203652;-0.06835614;-0.03971731,-0.09738486;0.3715934;-0.004025256,-0.2816768;0.3536949;-0.07963034,-0.5009896;0.3661757;-0.1989874,0.0703892;0.004257719;-0.03777872,0.08874089;-0.2937459;-0.00850299,0.07871186;-0.5860131;0.05842475,0.09002569;-0.6144847;-0.002519529,-0.07234086;0.003740857;-0.03395299,-0.09912376;-0.2940081;-0.008888774,-0.09548528;-0.5882811;0.04933668,-0.09523661;-0.6165625;-0.01288838,0.01791977;0.3992963;0.01434298,0;0;0,0.01160168;0.1993964;0.01031897,0.02880724;0.4988344;0.01369928,0.1329959;0.369166;-0.02247893,0.1698254;0.1732397;-0.006464703,0.2049784;-0.07281713;-0.03330313,-0.09468022;0.3777348;0.005421559,-0.2927197;0.3624018;-0.01792906,-0.5345964;0.3752995;-0.07981028,0.06903441;0.002083411;-0.04037214,0.08353581;-0.2955749;-0.005886897,0.0719905;-0.5885997;0.05738369,0.08606978;-0.6159937;-0.004357155,-0.07229386;0.005745499;-0.03377258,-0.1061211;-0.2914825;-0.01116185,-0.1043396;-0.5855055;0.04839733,-0.1080755;-0.6126326;-0.01514369,0.02301883;0.3990123;0.01512733,23.00931
-0;0;0,0.008815522;0.1995477;0.01014914,0.02251207;0.499176;0.01261795,0.1294474;0.3718035;-0.0203806,0.1747682;0.1775844;-0.005381407,0.203652;-0.06835614;-0.03971731,-0.09738486;0.3715934;-0.004025256,-0.2816768;0.3536949;-0.07963034,-0.5009896;0.3661757;-0.1989874,0.0703892;0.004257719;-0.03777872,0.08874089;-0.2937459;-0.00850299,0.07871186;-0.5860131;0.05842475,0.09002569;-0.6144847;-0.002519529,-0.07234086;0.003740857;-0.03395299,-0.09912376;-0.2940081;-0.008888774,-0.09548528;-0.5882811;0.04933668,-0.09523661;-0.6165625;-0.01288838,0.01791977;0.3992963;0.01434298,0;0;0,0.01160168;0.1993964;0.01031897,0.02880724;0.4988344;0.01369928,0.1329959;0.369166;-0.02247893,0.1698254;0.1732397;-0.006464703,0.2049784;-0.07281713;-0.03330313,-0.09468022;0.3777348;0.005421559,-0.2927197;0.3624018;-0.01792906,-0.5345964;0.3752995;-0.07981028,0.06903441;0.002083411;-0.04037214,0.08353581;-0.2955749;-0.005886897,0.0719905;-0.5885997;0.05738369,0.08606978;-0.6159937;-0.004357155,-0.07229386;0.005745499;-0.03377258,-0.1061211;-0.2914825;-0.01116185,-0.1043396;-0.5855055;0.04839733,-0.1080755;-0.6126326;-0.01514369,0.02301883;0.3990123;0.01512733,23.02089
-0;0;0,0.008626971;0.1995502;0.01026217,0.02204503;0.4991899;0.01283019,0.1292368;0.3717724;-0.01961316,0.1749863;0.1777333;-0.003619144,0.2032779;-0.06852873;-0.03609374,-0.09754765;0.3714878;-0.004988889,-0.2801421;0.3542198;-0.08474528,-0.4970828;0.3674774;-0.2082805,0.07082059;0.004337851;-0.03695438,0.08840361;-0.2937714;-0.008288568,0.07826757;-0.5861264;0.05823801,0.08950639;-0.6148252;-0.002426594,-0.07208125;0.003666049;-0.03450874,-0.09934029;-0.2940118;-0.009115206,-0.09583148;-0.5883313;0.04888226,-0.09563147;-0.6161219;-0.01395547,0.01754005;0.3993059;0.01452966,0;0;0,0.01150581;0.1993899;0.01055001,0.02861542;0.4988291;0.01428748,0.1331496;0.3697717;-0.02156709,0.1698006;0.1737849;-0.005886259,0.205145;-0.07224211;-0.0327464,-0.09475362;0.3774976;0.005360689,-0.2923723;0.3620396;-0.02124573,-0.5326572;0.3742365;-0.0891752,0.06914458;0.002015656;-0.0401866,0.08375427;-0.2956622;-0.005916085,0.07211729;-0.5887311;0.05713328,0.08588235;-0.6171133;-0.003420357,-0.07223111;0.005763486;-0.03390351,-0.1059352;-0.2914583;-0.01102894,-0.1042128;-0.5854745;0.04856554,-0.1072325;-0.6117575;-0.01602374,0.02285865;0.3990035;0.01560019,23.04248
-0;0;0,0.008626971;0.1995502;0.01026217,0.02204503;0.4991899;0.01283019,0.1292368;0.3717724;-0.01961316,0.1749863;0.1777333;-0.003619144,0.2032779;-0.06852873;-0.03609374,-0.09754765;0.3714878;-0.004988889,-0.2801421;0.3542198;-0.08474528,-0.4970828;0.3674774;-0.2082805,0.07082059;0.004337851;-0.03695438,0.08840361;-0.2937714;-0.008288568,0.07826757;-0.5861264;0.05823801,0.08950639;-0.6148252;-0.002426594,-0.07208125;0.003666049;-0.03450874,-0.09934029;-0.2940118;-0.009115206,-0.09583148;-0.5883313;0.04888226,-0.09563147;-0.6161219;-0.01395547,0.01754005;0.3993059;0.01452966,0;0;0,0.01150581;0.1993899;0.01055001,0.02861542;0.4988291;0.01428748,0.1331496;0.3697717;-0.02156709,0.1698006;0.1737849;-0.005886259,0.205145;-0.07224211;-0.0327464,-0.09475362;0.3774976;0.005360689,-0.2923723;0.3620396;-0.02124573,-0.5326572;0.3742365;-0.0891752,0.06914458;0.002015656;-0.0401866,0.08375427;-0.2956622;-0.005916085,0.07211729;-0.5887311;0.05713328,0.08588235;-0.6171133;-0.003420357,-0.07223111;0.005763486;-0.03390351,-0.1059352;-0.2914583;-0.01102894,-0.1042128;-0.5854745;0.04856554,-0.1072325;-0.6117575;-0.01602374,0.02285865;0.3990035;0.01560019,23.0541
-0;0;0,0.008537469;0.1995462;0.01041222,0.02186469;0.4991876;0.01331099,0.1292391;0.3717849;-0.01878512,0.1748404;0.1777436;-0.002398925,0.20315;-0.06870054;-0.03344489,-0.09752851;0.3717388;-0.00592985,-0.277874;0.3545791;-0.09067091,-0.4886622;0.3699732;-0.2242051,0.07095156;0.004300261;-0.03670672,0.08833247;-0.2938152;-0.007982764,0.07813325;-0.5862416;0.05821984,0.08930447;-0.615111;-0.002235301,-0.07178982;0.003738331;-0.03510336,-0.09933424;-0.2938792;-0.009313671,-0.09604189;-0.5882213;0.04858188,-0.0962881;-0.6158231;-0.01448864,0.01739399;0.3993;0.01488358,0;0;0,0.01150581;0.1993899;0.01055001,0.02861542;0.4988291;0.01428748,0.1331496;0.3697717;-0.02156709,0.1698006;0.1737849;-0.005886259,0.205145;-0.07224211;-0.0327464,-0.09475362;0.3774976;0.005360689,-0.2923723;0.3620396;-0.02124573,-0.5326572;0.3742365;-0.0891752,0.06914458;0.002015656;-0.0401866,0.08375427;-0.2956622;-0.005916085,0.07211729;-0.5887311;0.05713328,0.08588235;-0.6171133;-0.003420357,-0.07223111;0.005763486;-0.03390351,-0.1059352;-0.2914583;-0.01102894,-0.1042128;-0.5854745;0.04856554,-0.1072325;-0.6117575;-0.01602374,0.02285865;0.3990035;0.01560019,23.06686
-0;0;0,0.008537469;0.1995462;0.01041222,0.02186469;0.4991876;0.01331099,0.1292391;0.3717849;-0.01878512,0.1748404;0.1777436;-0.002398925,0.20315;-0.06870054;-0.03344489,-0.09752851;0.3717388;-0.00592985,-0.277874;0.3545791;-0.09067091,-0.4886622;0.3699732;-0.2242051,0.07095156;0.004300261;-0.03670672,0.08833247;-0.2938152;-0.007982764,0.07813325;-0.5862416;0.05821984,0.08930447;-0.615111;-0.002235301,-0.07178982;0.003738331;-0.03510336,-0.09933424;-0.2938792;-0.009313671,-0.09604189;-0.5882213;0.04858188,-0.0962881;-0.6158231;-0.01448864,0.01739399;0.3993;0.01488358,0;0;0,0.01157044;0.1993783;0.01069691,0.02886918;0.4988044;0.01459367,0.1335926;0.3699843;-0.02072289,0.170102;0.173922;-0.005667293,0.2052214;-0.07215706;-0.03234498,-0.09450203;0.3773676;0.005100364,-0.2915576;0.3616481;-0.02526401,-0.5298796;0.3732269;-0.09988692,0.06919679;0.002044864;-0.04009516,0.08395142;-0.2956617;-0.006137647,0.072211;-0.58868;0.05712703,0.0861949;-0.6164476;-0.004164465,-0.07219054;0.005750354;-0.03399206,-0.1057389;-0.2914777;-0.0109712,-0.1039581;-0.5854893;0.04864451,-0.1079916;-0.6110677;-0.01671316,0.02304406;0.3989822;0.01585765,23.08886
-0;0;0,0.008665636;0.1995275;0.01066312,0.02226847;0.4991503;0.01422897,0.1295275;0.3712828;-0.01778563,0.1751066;0.1773048;-0.0006077737,0.2029596;-0.06922248;-0.03140579,-0.09675172;0.3713259;-0.00726733,-0.2752046;0.3550591;-0.09609286,-0.4851419;0.3692124;-0.2310967,0.07121188;0.004213422;-0.03620932,0.0883402;-0.2939408;-0.007736513,0.07808616;-0.586403;0.05829912,0.088456;-0.6143313;-0.003504153,-0.07139067;0.003697851;-0.03591237,-0.0992723;-0.2938217;-0.009365246,-0.09570074;-0.5880247;0.04921654,-0.09504501;-0.6172222;-0.0118353,0.01769833;0.3992636;0.01555086,0;0;0,0.01157044;0.1993783;0.01069691,0.02886918;0.4988044;0.01459367,0.1335926;0.3699843;-0.02072289,0.170102;0.173922;-0.005667293,0.2052214;-0.07215706;-0.03234498,-0.09450203;0.3773676;0.005100364,-0.2915576;0.3616481;-0.02526401,-0.5298796;0.3732269;-0.09988692,0.06919679;0.002044864;-0.04009516,0.08395142;-0.2956617;-0.006137647,0.072211;-0.58868;0.05712703,0.0861949;-0.6164476;-0.004164465,-0.07219054;0.005750354;-0.03399206,-0.1057389;-0.2914777;-0.0109712,-0.1039581;-0.5854893;0.04864451,-0.1079916;-0.6110677;-0.01671316,0.02304406;0.3989822;0.01585765,23.10969
-0;0;0,0.008665636;0.1995275;0.01066312,0.02226847;0.4991503;0.01422897,0.1295275;0.3712828;-0.01778563,0.1751066;0.1773048;-0.0006077737,0.2029596;-0.06922248;-0.03140579,-0.09675172;0.3713259;-0.00726733,-0.2752046;0.3550591;-0.09609286,-0.4851419;0.3692124;-0.2310967,0.07121188;0.004213422;-0.03620932,0.0883402;-0.2939408;-0.007736513,0.07808616;-0.586403;0.05829912,0.088456;-0.6143313;-0.003504153,-0.07139067;0.003697851;-0.03591237,-0.0992723;-0.2938217;-0.009365246,-0.09570074;-0.5880247;0.04921654,-0.09504501;-0.6172222;-0.0118353,0.01769833;0.3992636;0.01555086,0;0;0,0.01157162;0.199367;0.01090397,0.02896589;0.4987807;0.01534767,0.1336634;0.3701978;-0.02030538,0.1702586;0.174139;-0.00541519,0.2053889;-0.07196669;-0.03183224,-0.09428747;0.3769332;0.004768747,-0.2906334;0.3610958;-0.02983557,-0.5275218;0.3724079;-0.1089298,0.06922634;0.002084106;-0.04004211,0.08401135;-0.2956212;-0.00608705,0.07228288;-0.5886233;0.05725513,0.08615476;-0.6160442;-0.004499033,-0.07216998;0.0057003;-0.03404408,-0.1056249;-0.2915324;-0.01094631,-0.1037805;-0.5855401;0.04868646,-0.10755;-0.6118093;-0.01587985,0.02309794;0.3989586;0.01641113,23.12144
-0;0;0,0.008455543;0.199533;0.0107271,0.02185756;0.4991645;0.01435033,0.1294809;0.371383;-0.01674061,0.1750508;0.1774959;0.00145678,0.2019946;-0.06918693;-0.02890178,-0.09687826;0.371203;-0.008091047,-0.273685;0.3553747;-0.1002258,-0.4778414;0.3651366;-0.2441872,0.07145567;0.004302747;-0.03571517,0.08816953;-0.2939132;-0.007645104,0.07792339;-0.5864275;0.05816049,0.08819406;-0.6149146;-0.002948344,-0.07113075;0.00367813;-0.03642645,-0.09941112;-0.2937641;-0.009437954,-0.09585658;-0.5879594;0.0491832,-0.09531333;-0.6172019;-0.01181126,0.01735144;0.3992745;0.01564855,0;0;0,0.01157162;0.199367;0.01090397,0.02896589;0.4987807;0.01534767,0.1336634;0.3701978;-0.02030538,0.1702586;0.174139;-0.00541519,0.2053889;-0.07196669;-0.03183224,-0.09428747;0.3769332;0.004768747,-0.2906334;0.3610958;-0.02983557,-0.5275218;0.3724079;-0.1089298,0.06922634;0.002084106;-0.04004211,0.08401135;-0.2956212;-0.00608705,0.07228288;-0.5886233;0.05725513,0.08615476;-0.6160442;-0.004499033,-0.07216998;0.0057003;-0.03404408,-0.1056249;-0.2915324;-0.01094631,-0.1037805;-0.5855401;0.04868646,-0.10755;-0.6118093;-0.01587985,0.02309794;0.3989586;0.01641113,23.1437
-0;0;0,0.008169673;0.1995414;0.01079352,0.02131367;0.4991836;0.01450273,0.1293962;0.3717993;-0.0156616,0.175365;0.1780357;0.002845947,0.2017746;-0.06885742;-0.02624602,-0.09706239;0.3712817;-0.00933009,-0.2708205;0.3555676;-0.1071114,-0.472862;0.3654778;-0.2540163,0.07175935;0.004387599;-0.03509052,0.08781505;-0.29393;-0.007725401,0.07766224;-0.5864108;0.05824345,0.08769165;-0.6145128;-0.003396541,-0.07081937;0.003608629;-0.03703503,-0.09963578;-0.2937309;-0.009488262,-0.09613781;-0.587952;0.04900727,-0.0965131;-0.6171961;-0.0119864,0.01689356;0.3992893;0.01576217,0;0;0,0.01157162;0.199367;0.01090397,0.02896589;0.4987807;0.01534767,0.1336634;0.3701978;-0.02030538,0.1702586;0.174139;-0.00541519,0.2053889;-0.07196669;-0.03183224,-0.09428747;0.3769332;0.004768747,-0.2906334;0.3610958;-0.02983557,-0.5275218;0.3724079;-0.1089298,0.06922634;0.002084106;-0.04004211,0.08401135;-0.2956212;-0.00608705,0.07228288;-0.5886233;0.05725513,0.08615476;-0.6160442;-0.004499033,-0.07216998;0.0057003;-0.03404408,-0.1056249;-0.2915324;-0.01094631,-0.1037805;-0.5855401;0.04868646,-0.10755;-0.6118093;-0.01587985,0.02309794;0.3989586;0.01641113,23.16582
-0;0;0,0.008169673;0.1995414;0.01079352,0.02131367;0.4991836;0.01450273,0.1293962;0.3717993;-0.0156616,0.175365;0.1780357;0.002845947,0.2017746;-0.06885742;-0.02624602,-0.09706239;0.3712817;-0.00933009,-0.2708205;0.3555676;-0.1071114,-0.472862;0.3654778;-0.2540163,0.07175935;0.004387599;-0.03509052,0.08781505;-0.29393;-0.007725401,0.07766224;-0.5864108;0.05824345,0.08769165;-0.6145128;-0.003396541,-0.07081937;0.003608629;-0.03703503,-0.09963578;-0.2937309;-0.009488262,-0.09613781;-0.587952;0.04900727,-0.0965131;-0.6171961;-0.0119864,0.01689356;0.3992893;0.01576217,0;0;0,0.01163058;0.1993567;0.01102836,0.0291342;0.4987628;0.0155294,0.1338346;0.3702627;-0.02008545,0.1706522;0.1742582;-0.005027984,0.2057607;-0.07180655;-0.0318519,-0.09407023;0.376793;0.00435673,-0.2895747;0.3597716;-0.03422115,-0.5249712;0.3711454;-0.1176427,0.06932592;0.002021705;-0.03987265,0.084282;-0.2957112;-0.006236285,0.07272173;-0.5887206;0.05710356,0.08667454;-0.6162319;-0.00451874,-0.07209259;0.005748457;-0.03419964,-0.1053321;-0.2914917;-0.01088779,-0.1033224;-0.585456;0.04895314,-0.1070281;-0.6117128;-0.01563142,0.02323237;0.3989426;0.01658346,23.17707
-0;0;0,0.007957793;0.1995374;0.01102356,0.02074506;0.49919;0.01513114,0.1291701;0.3720306;-0.01459862,0.1750603;0.1782419;0.003840562,0.200941;-0.06881841;-0.02429161,-0.09736409;0.3714369;-0.009633269,-0.2689612;0.3555795;-0.1111369,-0.4670223;0.3639138;-0.2634601,0.07228359;0.004323163;-0.03400577,0.08752535;-0.2941312;-0.007686043,0.07737851;-0.5866271;0.05821683,0.08748605;-0.6147332;-0.003405206,-0.07038942;0.003579129;-0.03784863,-0.09992307;-0.2936194;-0.009550072,-0.09618329;-0.587831;0.0489783,-0.09561358;-0.5555059;-0.04944564,0.01645257;0.3992884;0.01625223,0;0;0,0.01163058;0.1993567;0.01102836,0.0291342;0.4987628;0.0155294,0.1338346;0.3702627;-0.02008545,0.1706522;0.1742582;-0.005027984,0.2057607;-0.07180655;-0.0318519,-0.09407023;0.376793;0.00435673,-0.2895747;0.3597716;-0.03422115,-0.5249712;0.3711454;-0.1176427,0.06932592;0.002021705;-0.03987265,0.084282;-0.2957112;-0.006236285,0.07272173;-0.5887206;0.05710356,0.08667454;-0.6162319;-0.00451874,-0.07209259;0.005748457;-0.03419964,-0.1053321;-0.2914917;-0.01088779,-0.1033224;-0.585456;0.04895314,-0.1070281;-0.6117128;-0.01563142,0.02323237;0.3989426;0.01658346,23.19918
-0;0;0,0.007957793;0.1995374;0.01102356,0.02074506;0.49919;0.01513114,0.1291701;0.3720306;-0.01459862,0.1750603;0.1782419;0.003840562,0.200941;-0.06881841;-0.02429161,-0.09736409;0.3714369;-0.009633269,-0.2689612;0.3555795;-0.1111369,-0.4670223;0.3639138;-0.2634601,0.07228359;0.004323163;-0.03400577,0.08752535;-0.2941312;-0.007686043,0.07737851;-0.5866271;0.05821683,0.08748605;-0.6147332;-0.003405206,-0.07038942;0.003579129;-0.03784863,-0.09992307;-0.2936194;-0.009550072,-0.09618329;-0.587831;0.0489783,-0.09561358;-0.5555059;-0.04944564,0.01645257;0.3992884;0.01625223,0;0;0,0.01163058;0.1993567;0.01102836,0.0291342;0.4987628;0.0155294,0.1338346;0.3702627;-0.02008545,0.1706522;0.1742582;-0.005027984,0.2057607;-0.07180655;-0.0318519,-0.09407023;0.376793;0.00435673,-0.2895747;0.3597716;-0.03422115,-0.5249712;0.3711454;-0.1176427,0.06932592;0.002021705;-0.03987265,0.084282;-0.2957112;-0.006236285,0.07272173;-0.5887206;0.05710356,0.08667454;-0.6162319;-0.00451874,-0.07209259;0.005748457;-0.03419964,-0.1053321;-0.2914917;-0.01088779,-0.1033224;-0.585456;0.04895314,-0.1070281;-0.6117128;-0.01563142,0.02323237;0.3989426;0.01658346,23.22139
-0;0;0,0.007703489;0.1995436;0.01109172,0.02032045;0.4992034;0.01523123,0.128945;0.3721949;-0.01411962,0.1747371;0.1783944;0.004439669,0.2000483;-0.06881841;-0.02285841,-0.0974237;0.371478;-0.01091715,-0.2659767;0.3547789;-0.1172705,-0.4602343;0.3621303;-0.2744644,0.07241118;0.004452676;-0.03371638,0.087301;-0.294044;-0.007677574,0.07704549;-0.5865852;0.05800727,0.08801086;-0.61516;-0.002867535,-0.07010787;0.003465221;-0.0383781,-0.1001254;-0.2936381;-0.009593608,-0.09631693;-0.5878474;0.04894247,-0.09517211;-0.5555376;-0.04947371,0.01608182;0.3992993;0.01633122,0;0;0,0.01163058;0.1993567;0.01102836,0.0291342;0.4987628;0.0155294,0.1338346;0.3702627;-0.02008545,0.1706522;0.1742582;-0.005027984,0.2057607;-0.07180655;-0.0318519,-0.09407023;0.376793;0.00435673,-0.2895747;0.3597716;-0.03422115,-0.5249712;0.3711454;-0.1176427,0.06932592;0.002021705;-0.03987265,0.084282;-0.2957112;-0.006236285,0.07272173;-0.5887206;0.05710356,0.08667454;-0.6162319;-0.00451874,-0.07209259;0.005748457;-0.03419964,-0.1053321;-0.2914917;-0.01088779,-0.1033224;-0.585456;0.04895314,-0.1070281;-0.6117128;-0.01563142,0.02323237;0.3989426;0.01658346,23.23264
-0;0;0,0.007703489;0.1995436;0.01109172,0.02032045;0.4992034;0.01523123,0.128945;0.3721949;-0.01411962,0.1747371;0.1783944;0.004439669,0.2000483;-0.06881841;-0.02285841,-0.0974237;0.371478;-0.01091715,-0.2659767;0.3547789;-0.1172705,-0.4602343;0.3621303;-0.2744644,0.07241118;0.004452676;-0.03371638,0.087301;-0.294044;-0.007677574,0.07704549;-0.5865852;0.05800727,0.08801086;-0.61516;-0.002867535,-0.07010787;0.003465221;-0.0383781,-0.1001254;-0.2936381;-0.009593608,-0.09631693;-0.5878474;0.04894247,-0.09517211;-0.5555376;-0.04947371,0.01608182;0.3992993;0.01633122,0;0;0,0.01171051;0.1993432;0.01118789,0.02931767;0.4987389;0.01599752,0.1340856;0.3700045;-0.01922242,0.1709715;0.1740323;-0.00391527,0.2063246;-0.07189088;-0.03169949,-0.09373747;0.3762435;0.003891361,-0.2887271;0.359291;-0.03723828,-0.5216909;0.3698472;-0.1273295,0.06942843;0.001952845;-0.03969735,0.08457591;-0.2957951;-0.006279953,0.07298338;-0.5888075;0.0570397,0.08708482;-0.6165318;-0.004279692,-0.0720299;0.005805395;-0.03432186,-0.1049494;-0.2914647;-0.01093773,-0.1029062;-0.5854065;0.04901247,-0.1066402;-0.6114365;-0.01583723,0.02337635;0.3989199;0.01693496,23.24394
-0;0;0,0.007594425;0.1995382;0.011262,0.01993828;0.4992034;0.01587202,0.1287758;0.3722725;-0.01338247,0.1744356;0.1784346;0.005112242,0.1997623;-0.06879264;-0.02203988,-0.09746446;0.3713982;-0.01129717,-0.2631337;0.3536655;-0.1219284,-0.4553803;0.3613094;-0.2815618,0.07243004;0.004426305;-0.03367933,0.08716564;-0.2940827;-0.007694064,0.07675391;-0.5865823;0.05815098,0.08782552;-0.6147251;-0.003258444,-0.07004802;0.003481466;-0.03848575,-0.1002477;-0.2935753;-0.009413043,-0.09639705;-0.5877995;0.0490448,-0.0949178;-0.5554815;-0.04936841,0.01581809;0.3992925;0.01679144,0;0;0,0.01171051;0.1993432;0.01118789,0.02931767;0.4987389;0.01599752,0.1340856;0.3700045;-0.01922242,0.1709715;0.1740323;-0.00391527,0.2063246;-0.07189088;-0.03169949,-0.09373747;0.3762435;0.003891361,-0.2887271;0.359291;-0.03723828,-0.5216909;0.3698472;-0.1273295,0.06942843;0.001952845;-0.03969735,0.08457591;-0.2957951;-0.006279953,0.07298338;-0.5888075;0.0570397,0.08708482;-0.6165318;-0.004279692,-0.0720299;0.005805395;-0.03432186,-0.1049494;-0.2914647;-0.01093773,-0.1029062;-0.5854065;0.04901247,-0.1066402;-0.6114365;-0.01583723,0.02337635;0.3989199;0.01693496,23.26614
-0;0;0,0.007594425;0.1995382;0.011262,0.01993828;0.4992034;0.01587202,0.1287758;0.3722725;-0.01338247,0.1744356;0.1784346;0.005112242,0.1997623;-0.06879264;-0.02203988,-0.09746446;0.3713982;-0.01129717,-0.2631337;0.3536655;-0.1219284,-0.4553803;0.3613094;-0.2815618,0.07243004;0.004426305;-0.03367933,0.08716564;-0.2940827;-0.007694064,0.07675391;-0.5865823;0.05815098,0.08782552;-0.6147251;-0.003258444,-0.07004802;0.003481466;-0.03848575,-0.1002477;-0.2935753;-0.009413043,-0.09639705;-0.5877995;0.0490448,-0.0949178;-0.5554815;-0.04936841,0.01581809;0.3992925;0.01679144,0;0;0,0.01171479;0.1993315;0.01138971,0.02939483;0.4987134;0.01680408,0.1341866;0.3700678;-0.01854066,0.171183;0.1740971;-0.003482583,0.2066108;-0.07177286;-0.03163982,-0.09350027;0.3758485;0.0034457,-0.287299;0.3585536;-0.04284605,-0.5180019;0.3684865;-0.1386456,0.06949774;0.001945193;-0.03957626,0.08451579;-0.2957997;-0.006073803,0.07313141;-0.5888449;0.05713151,0.08765205;-0.6154425;-0.005494043,-0.07195275;0.005746583;-0.03449318,-0.1047757;-0.2915154;-0.01087107,-0.1027371;-0.5854562;0.04908408,-0.105962;-0.6122797;-0.0148514,0.02342209;0.3988945;0.01751845,23.2775
-0;0;0,0.007413806;0.1995365;0.01141087,0.01950086;0.4992077;0.01634161,0.1284375;0.3723294;-0.01310488,0.1743131;0.1785372;0.005335236,0.1992541;-0.0688349;-0.02083683,-0.09749425;0.3709463;-0.0117128,-0.2599781;0.3522296;-0.1268157,-0.4472346;0.3599233;-0.2922722,0.07253695;0.004462472;-0.03344362,0.0869458;-0.2940556;-0.007379591,0.07630828;-0.586569;0.05836844,0.0873929;-0.6146086;-0.003169701,-0.06984344;0.003421488;-0.03886111,-0.1003505;-0.2935495;-0.009237304,-0.09653755;-0.5877873;0.04915425,-0.09482397;-0.5554626;-0.04925636,0.01548442;0.3992916;0.01713795,0;0;0,0.01171479;0.1993315;0.01138971,0.02939483;0.4987134;0.01680408,0.1341866;0.3700678;-0.01854066,0.171183;0.1740971;-0.003482583,0.2066108;-0.07177286;-0.03163982,-0.09350027;0.3758485;0.0034457,-0.287299;0.3585536;-0.04284605,-0.5180019;0.3684865;-0.1386456,0.06949774;0.001945193;-0.03957626,0.08451579;-0.2957997;-0.006073803,0.07313141;-0.5888449;0.05713151,0.08765205;-0.6154425;-0.005494043,-0.07195275;0.005746583;-0.03449318,-0.1047757;-0.2915154;-0.01087107,-0.1027371;-0.5854562;0.04908408,-0.105962;-0.6122797;-0.0148514,0.02342209;0.3988945;0.01751845,23.2995
-0;0;0,0.007413806;0.1995365;0.01141087,0.01950086;0.4992077;0.01634161,0.1284375;0.3723294;-0.01310488,0.1743131;0.1785372;0.005335236,0.1992541;-0.0688349;-0.02083683,-0.09749425;0.3709463;-0.0117128,-0.2599781;0.3522296;-0.1268157,-0.4472346;0.3599233;-0.2922722,0.07253695;0.004462472;-0.03344362,0.0869458;-0.2940556;-0.007379591,0.07630828;-0.586569;0.05836844,0.0873929;-0.6146086;-0.003169701,-0.06984344;0.003421488;-0.03886111,-0.1003505;-0.2935495;-0.009237304,-0.09653755;-0.5877873;0.04915425,-0.09482397;-0.5554626;-0.04925636,0.01548442;0.3992916;0.01713795,0;0;0,0.01171479;0.1993315;0.01138971,0.02939483;0.4987134;0.01680408,0.1341866;0.3700678;-0.01854066,0.171183;0.1740971;-0.003482583,0.2066108;-0.07177286;-0.03163982,-0.09350027;0.3758485;0.0034457,-0.287299;0.3585536;-0.04284605,-0.5180019;0.3684865;-0.1386456,0.06949774;0.001945193;-0.03957626,0.08451579;-0.2957997;-0.006073803,0.07313141;-0.5888449;0.05713151,0.08765205;-0.6154425;-0.005494043,-0.07195275;0.005746583;-0.03449318,-0.1047757;-0.2915154;-0.01087107,-0.1027371;-0.5854562;0.04908408,-0.105962;-0.6122797;-0.0148514,0.02342209;0.3988945;0.01751845,23.32198
-0;0;0,0.007320253;0.1995296;0.01159152,0.01902531;0.4992058;0.01713452,0.1281675;0.3721875;-0.01225566,0.1737776;0.1783141;0.005988061,0.1988274;-0.06904997;-0.02015603,-0.09751751;0.3708224;-0.01214541,-0.2565565;0.3505544;-0.1317106,-0.4396012;0.3585941;-0.3017987,0.07273121;0.004468982;-0.03301816,0.08691658;-0.2940883;-0.00728265,0.07628638;-0.58662;0.05838491,0.08739384;-0.6145971;-0.003228247,-0.06950167;0.003453978;-0.03946629,-0.1002648;-0.2934217;-0.009160371,-0.09647279;-0.587664;0.04921029,-0.09434815;-0.5553314;-0.04919372,0.0151716;0.3992818;0.01770809,0;0;0,0.01169343;0.1993062;0.01184519,0.02952406;0.4986578;0.01837944,0.1341584;0.3703647;-0.0179222,0.1713861;0.1744126;-0.00319572,0.2071996;-0.0714028;-0.03134118,-0.09326993;0.3756475;0.003517462,-0.2859502;0.3586675;-0.04733536,-0.5152841;0.3676064;-0.1464618,0.06958381;0.001985238;-0.03942272,0.08479475;-0.2957735;-0.00613106,0.07334721;-0.5888008;0.05714604,0.08796847;-0.6153207;-0.005550988,-0.07188787;0.005735947;-0.03462994,-0.1045206;-0.2915286;-0.01077766,-0.1023772;-0.5855076;0.04898649,-0.1061683;-0.6116983;-0.01567109,0.02348537;0.3988408;0.01869201,23.33339
-0;0;0,0.007223376;0.1995237;0.01175211,0.01865597;0.4992026;0.01771278,0.1280905;0.3726852;-0.0115803,0.1739815;0.1788408;0.006262496,0.1992332;-0.06851238;-0.01979066,-0.09754994;0.3708111;-0.01255188,-0.2534114;0.3497165;-0.1360923,-0.4318235;0.357038;-0.3110652,0.07289592;0.004461721;-0.03265389,0.08684501;-0.2941305;-0.007196013,0.07616896;-0.5866818;0.05837667,0.08733988;-0.614698;-0.003175575,-0.06923423;0.00350943;-0.03992875,-0.1002446;-0.2932831;-0.009064985,-0.09642819;-0.5875201;0.04933041,-0.09396867;-0.5551866;-0.04906597,0.01491159;0.3992736;0.01814485,0;0;0,0.01169343;0.1993062;0.01184519,0.02952406;0.4986578;0.01837944,0.1341584;0.3703647;-0.0179222,0.1713861;0.1744126;-0.00319572,0.2071996;-0.0714028;-0.03134118,-0.09326993;0.3756475;0.003517462,-0.2859502;0.3586675;-0.04733536,-0.5152841;0.3676064;-0.1464618,0.06958381;0.001985238;-0.03942272,0.08479475;-0.2957735;-0.00613106,0.07334721;-0.5888008;0.05714604,0.08796847;-0.6153207;-0.005550988,-0.07188787;0.005735947;-0.03462994,-0.1045206;-0.2915286;-0.01077766,-0.1023772;-0.5855076;0.04898649,-0.1061683;-0.6116983;-0.01567109,0.02348537;0.3988408;0.01869201,23.35524
-0;0;0,0.007223376;0.1995237;0.01175211,0.01865597;0.4992026;0.01771278,0.1280905;0.3726852;-0.0115803,0.1739815;0.1788408;0.006262496,0.1992332;-0.06851238;-0.01979066,-0.09754994;0.3708111;-0.01255188,-0.2534114;0.3497165;-0.1360923,-0.4318235;0.357038;-0.3110652,0.07289592;0.004461721;-0.03265389,0.08684501;-0.2941305;-0.007196013,0.07616896;-0.5866818;0.05837667,0.08733988;-0.614698;-0.003175575,-0.06923423;0.00350943;-0.03992875,-0.1002446;-0.2932831;-0.009064985,-0.09642819;-0.5875201;0.04933041,-0.09396867;-0.5551866;-0.04906597,0.01491159;0.3992736;0.01814485,0;0;0,0.01169343;0.1993062;0.01184519,0.02952406;0.4986578;0.01837944,0.1341584;0.3703647;-0.0179222,0.1713861;0.1744126;-0.00319572,0.2071996;-0.0714028;-0.03134118,-0.09326993;0.3756475;0.003517462,-0.2859502;0.3586675;-0.04733536,-0.5152841;0.3676064;-0.1464618,0.06958381;0.001985238;-0.03942272,0.08479475;-0.2957735;-0.00613106,0.07334721;-0.5888008;0.05714604,0.08796847;-0.6153207;-0.005550988,-0.07188787;0.005735947;-0.03462994,-0.1045206;-0.2915286;-0.01077766,-0.1023772;-0.5855076;0.04898649,-0.1061683;-0.6116983;-0.01567109,0.02348537;0.3988408;0.01869201,23.36649
-0;0;0,0.007223376;0.1995237;0.01175211,0.01865597;0.4992026;0.01771278,0.1280905;0.3726852;-0.0115803,0.1739815;0.1788408;0.006262496,0.1992332;-0.06851238;-0.01979066,-0.09754994;0.3708111;-0.01255188,-0.2534114;0.3497165;-0.1360923,-0.4318235;0.357038;-0.3110652,0.07289592;0.004461721;-0.03265389,0.08684501;-0.2941305;-0.007196013,0.07616896;-0.5866818;0.05837667,0.08733988;-0.614698;-0.003175575,-0.06923423;0.00350943;-0.03992875,-0.1002446;-0.2932831;-0.009064985,-0.09642819;-0.5875201;0.04933041,-0.09396867;-0.5551866;-0.04906597,0.01491159;0.3992736;0.01814485,0;0;0,0.01169343;0.1993062;0.01184519,0.02952406;0.4986578;0.01837944,0.1341584;0.3703647;-0.0179222,0.1713861;0.1744126;-0.00319572,0.2071996;-0.0714028;-0.03134118,-0.09326993;0.3756475;0.003517462,-0.2859502;0.3586675;-0.04733536,-0.5152841;0.3676064;-0.1464618,0.06958381;0.001985238;-0.03942272,0.08479475;-0.2957735;-0.00613106,0.07334721;-0.5888008;0.05714604,0.08796847;-0.6153207;-0.005550988,-0.07188787;0.005735947;-0.03462994,-0.1045206;-0.2915286;-0.01077766,-0.1023772;-0.5855076;0.04898649,-0.1061683;-0.6116983;-0.01567109,0.02348537;0.3988408;0.01869201,23.3888
-0;0;0,0.007161114;0.1995174;0.01189638,0.01843466;0.4991943;0.01826257,0.1280592;0.3727422;-0.0107567,0.1739574;0.1788939;0.007025138,0.1993297;-0.06836;-0.01984027,-0.09736426;0.3706248;-0.01321933,-0.2494229;0.348178;-0.1411815,-0.4240873;0.3549442;-0.3199176,0.07296483;0.004434599;-0.03250334,0.08680373;-0.2941584;-0.006993847,0.0761192;-0.5867255;0.0585071,0.08739568;-0.6147752;-0.002983395,-0.06889819;0.003606263;-0.04049734,-0.09996515;-0.2931058;-0.008924562,-0.09622712;-0.5873588;0.04939525,-0.09692074;-0.6172358;-0.01076434,0.01475482;0.3992625;0.01854848,0;0;0,0.01164476;0.1992948;0.01208306,0.02945587;0.4986404;0.01891201,0.1342885;0.3703353;-0.01687984,0.1721039;0.1744985;-0.00211667,0.2078987;-0.07119806;-0.03130484,-0.09321801;0.3754571;0.003379671,-0.2847891;0.358243;-0.0514309,-0.5119268;0.3668825;-0.1555166,0.06961613;0.002009532;-0.0393644,0.08485323;-0.2957224;-0.005845565,0.07373649;-0.5887647;0.05742072,0.08786105;-0.6155227;-0.00509895,-0.07186378;0.005722135;-0.0346822,-0.1044382;-0.2915387;-0.01070478,-0.1026261;-0.5854176;0.0495608,-0.1057857;-0.6125914;-0.01395468,0.02342477;0.3988227;0.01914387,23.40049
-0;0;0,0.007161114;0.1995174;0.01189638,0.01843466;0.4991943;0.01826257,0.1280592;0.3727422;-0.0107567,0.1739574;0.1788939;0.007025138,0.1993297;-0.06836;-0.01984027,-0.09736426;0.3706248;-0.01321933,-0.2494229;0.348178;-0.1411815,-0.4240873;0.3549442;-0.3199176,0.07296483;0.004434599;-0.03250334,0.08680373;-0.2941584;-0.006993847,0.0761192;-0.5867255;0.0585071,0.08739568;-0.6147752;-0.002983395,-0.06889819;0.003606263;-0.04049734,-0.09996515;-0.2931058;-0.008924562,-0.09622712;-0.5873588;0.04939525,-0.09692074;-0.6172358;-0.01076434,0.01475482;0.3992625;0.01854848,0;0;0,0.01164476;0.1992948;0.01208306,0.02945587;0.4986404;0.01891201,0.1342885;0.3703353;-0.01687984,0.1721039;0.1744985;-0.00211667,0.2078987;-0.07119806;-0.03130484,-0.09321801;0.3754571;0.003379671,-0.2847891;0.358243;-0.0514309,-0.5119268;0.3668825;-0.1555166,0.06961613;0.002009532;-0.0393644,0.08485323;-0.2957224;-0.005845565,0.07373649;-0.5887647;0.05742072,0.08786105;-0.6155227;-0.00509895,-0.07186378;0.005722135;-0.0346822,-0.1044382;-0.2915387;-0.01070478,-0.1026261;-0.5854176;0.0495608,-0.1057857;-0.6125914;-0.01395468,0.02342477;0.3988227;0.01914387,23.42233
-0;0;0,0.007068955;0.1995132;0.01202204,0.01779723;0.4992;0.0188362,0.1278422;0.3730321;-0.009727728,0.1740983;0.1792121;0.00742417,0.1996912;-0.06795758;-0.02000141,-0.09745755;0.3706441;-0.01399732,-0.24706;0.3466551;-0.1445486,-0.4166341;0.3546247;-0.3280728,0.07299819;0.004410032;-0.03243171,0.08680312;-0.2941811;-0.006882071,0.07615659;-0.586808;0.05835721,0.08712709;-0.615158;-0.002805859,-0.06879166;0.003648359;-0.04067429,-0.09982186;-0.2930375;-0.008820903,-0.09618532;-0.5872728;0.04959482,-0.09662731;-0.6171294;-0.01059414,0.01431719;0.3992606;0.01897994,0;0;0,0.01163874;0.1992757;0.01239838,0.02949772;0.4986081;0.01964944,0.1343535;0.3703256;-0.01617404,0.1722436;0.1744738;-0.001806596,0.2083095;-0.07113144;-0.03142645,-0.09300987;0.3752031;0.003020192,-0.2830111;0.3580577;-0.05702625,-0.5062927;0.3657328;-0.1692155,0.06977267;0.00195545;-0.03908901,0.08505147;-0.295805;-0.00584336,0.07389914;-0.5888789;0.05727043,0.08804963;-0.6155587;-0.005339261,-0.07178874;0.005710237;-0.03483919,-0.1042978;-0.29155;-0.01076636,-0.1023681;-0.585454;0.04937308,-0.1056807;-0.6133133;-0.01329236,0.02345301;0.398791;0.0197537,23.4337
-0;0;0,0.007068955;0.1995132;0.01202204,0.01779723;0.4992;0.0188362,0.1278422;0.3730321;-0.009727728,0.1740983;0.1792121;0.00742417,0.1996912;-0.06795758;-0.02000141,-0.09745755;0.3706441;-0.01399732,-0.24706;0.3466551;-0.1445486,-0.4166341;0.3546247;-0.3280728,0.07299819;0.004410032;-0.03243171,0.08680312;-0.2941811;-0.006882071,0.07615659;-0.586808;0.05835721,0.08712709;-0.615158;-0.002805859,-0.06879166;0.003648359;-0.04067429,-0.09982186;-0.2930375;-0.008820903,-0.09618532;-0.5872728;0.04959482,-0.09662731;-0.6171294;-0.01059414,0.01431719;0.3992606;0.01897994,0;0;0,0.01163874;0.1992757;0.01239838,0.02949772;0.4986081;0.01964944,0.1343535;0.3703256;-0.01617404,0.1722436;0.1744738;-0.001806596,0.2083095;-0.07113144;-0.03142645,-0.09300987;0.3752031;0.003020192,-0.2830111;0.3580577;-0.05702625,-0.5062927;0.3657328;-0.1692155,0.06977267;0.00195545;-0.03908901,0.08505147;-0.295805;-0.00584336,0.07389914;-0.5888789;0.05727043,0.08804963;-0.6155587;-0.005339261,-0.07178874;0.005710237;-0.03483919,-0.1042978;-0.29155;-0.01076636,-0.1023681;-0.585454;0.04937308,-0.1056807;-0.6133133;-0.01329236,0.02345301;0.398791;0.0197537,23.44487
-0;0;0,0.007003843;0.1995091;0.01212686,0.0175672;0.4991965;0.01914993,0.1277865;0.3730928;-0.009064412,0.173942;0.1792554;0.00816085,0.2000056;-0.06776571;-0.02014599,-0.09732628;0.3704994;-0.01464085,-0.2433201;0.345293;-0.1489928,-0.4088448;0.3547447;-0.3361084,0.07307358;0.004358457;-0.03226848,0.08678117;-0.2942421;-0.006777119,0.07617329;-0.5868834;0.05840358,0.0871387;-0.6153505;-0.002610076,-0.06860336;0.003758664;-0.0409811,-0.09968853;-0.2928762;-0.008709021,-0.09606871;-0.5871193;0.04966805,-0.09664975;-0.6166362;-0.01096806,0.01414368;0.3992552;0.01923472,0;0;0,0.01163874;0.1992757;0.01239838,0.02949772;0.4986081;0.01964944,0.1343535;0.3703256;-0.01617404,0.1722436;0.1744738;-0.001806596,0.2083095;-0.07113144;-0.03142645,-0.09300987;0.3752031;0.003020192,-0.2830111;0.3580577;-0.05702625,-0.5062927;0.3657328;-0.1692155,0.06977267;0.00195545;-0.03908901,0.08505147;-0.295805;-0.00584336,0.07389914;-0.5888789;0.05727043,0.08804963;-0.6155587;-0.005339261,-0.07178874;0.005710237;-0.03483919,-0.1042978;-0.29155;-0.01076636,-0.1023681;-0.585454;0.04937308,-0.1056807;-0.6133133;-0.01329236,0.02345301;0.398791;0.0197537,23.4668
-0;0;0,0.007003843;0.1995091;0.01212686,0.0175672;0.4991965;0.01914993,0.1277865;0.3730928;-0.009064412,0.173942;0.1792554;0.00816085,0.2000056;-0.06776571;-0.02014599,-0.09732628;0.3704994;-0.01464085,-0.2433201;0.345293;-0.1489928,-0.4088448;0.3547447;-0.3361084,0.07307358;0.004358457;-0.03226848,0.08678117;-0.2942421;-0.006777119,0.07617329;-0.5868834;0.05840358,0.0871387;-0.6153505;-0.002610076,-0.06860336;0.003758664;-0.0409811,-0.09968853;-0.2928762;-0.008709021,-0.09606871;-0.5871193;0.04966805,-0.09664975;-0.6166362;-0.01096806,0.01414368;0.3992552;0.01923472,0;0;0,0.01156552;0.1992634;0.01266315,0.02924045;0.4985987;0.02021835,0.1343527;0.3704847;-0.01526399,0.1724366;0.1746495;-0.001185429,0.2089477;-0.07086006;-0.03105168,-0.09293728;0.3747015;0.002439134,-0.2816239;0.3574608;-0.06159303,-0.5013459;0.3674465;-0.1804312,0.06991019;0.001945674;-0.03884301,0.08504592;-0.2958424;-0.005779728,0.07395619;-0.5889482;0.0571963,0.08796261;-0.615791;-0.005245779,-0.07171551;0.005648165;-0.03499976,-0.1042077;-0.2916059;-0.01082713,-0.1022406;-0.5855091;0.0493149,-0.1050975;-0.6128175;-0.01405101,0.02326866;0.3987772;0.02023079,23.47856
-0;0;0,0.007003843;0.1995091;0.01212686,0.0175672;0.4991965;0.01914993,0.1277865;0.3730928;-0.009064412,0.173942;0.1792554;0.00816085,0.2000056;-0.06776571;-0.02014599,-0.09732628;0.3704994;-0.01464085,-0.2433201;0.345293;-0.1489928,-0.4088448;0.3547447;-0.3361084,0.07307358;0.004358457;-0.03226848,0.08678117;-0.2942421;-0.006777119,0.07617329;-0.5868834;0.05840358,0.0871387;-0.6153505;-0.002610076,-0.06860336;0.003758664;-0.0409811,-0.09968853;-0.2928762;-0.008709021,-0.09606871;-0.5871193;0.04966805,-0.09664975;-0.6166362;-0.01096806,0.01414368;0.3992552;0.01923472,0;0;0,0.01156552;0.1992634;0.01266315,0.02924045;0.4985987;0.02021835,0.1343527;0.3704847;-0.01526399,0.1724366;0.1746495;-0.001185429,0.2089477;-0.07086006;-0.03105168,-0.09293728;0.3747015;0.002439134,-0.2816239;0.3574608;-0.06159303,-0.5013459;0.3674465;-0.1804312,0.06991019;0.001945674;-0.03884301,0.08504592;-0.2958424;-0.005779728,0.07395619;-0.5889482;0.0571963,0.08796261;-0.615791;-0.005245779,-0.07171551;0.005648165;-0.03499976,-0.1042077;-0.2916059;-0.01082713,-0.1022406;-0.5855091;0.0493149,-0.1050975;-0.6128175;-0.01405101,0.02326866;0.3987772;0.02023079,23.48999
-0;0;0,0.006934836;0.1995057;0.01222302,0.0172293;0.4991966;0.01947211,0.127605;0.3730867;-0.008546682,0.1737814;0.1792469;0.008597147,0.2002518;-0.06764513;-0.02044806,-0.09728945;0.3704962;-0.01529603,-0.2410397;0.3439902;-0.1517999,-0.4008919;0.3505708;-0.3439039,0.07314162;0.004304118;-0.03212129,0.08683926;-0.2943007;-0.006674118,0.07619212;-0.5869607;0.05841624,0.08723191;-0.6156242;-0.002330489,-0.0684613;0.003806194;-0.04121364,-0.0995584;-0.2927901;-0.008600406,-0.09597746;-0.5870625;0.04963137,-0.09637474;-0.6165668;-0.01102261,0.01389869;0.3992521;0.01949323,0;0;0,0.01156552;0.1992634;0.01266315,0.02924045;0.4985987;0.02021835,0.1343527;0.3704847;-0.01526399,0.1724366;0.1746495;-0.001185429,0.2089477;-0.07086006;-0.03105168,-0.09293728;0.3747015;0.002439134,-0.2816239;0.3574608;-0.06159303,-0.5013459;0.3674465;-0.1804312,0.06991019;0.001945674;-0.03884301,0.08504592;-0.2958424;-0.005779728,0.07395619;-0.5889482;0.0571963,0.08796261;-0.615791;-0.005245779,-0.07171551;0.005648165;-0.03499976,-0.1042077;-0.2916059;-0.01082713,-0.1022406;-0.5855091;0.0493149,-0.1050975;-0.6128175;-0.01405101,0.02326866;0.3987772;0.02023079,23.50256
-0;0;0,0.006892357;0.1995043;0.01226908,0.01703097;0.4991991;0.01956313,0.1274869;0.372883;-0.008160941,0.1738103;0.1790838;0.009044753,0.2004437;-0.06771885;-0.02060507,-0.09722047;0.3702781;-0.01570497,-0.2383484;0.3426864;-0.1547072,-0.395052;0.3476988;-0.3494348,0.07331619;0.004146787;-0.03174175,0.08693712;-0.2944925;-0.006661385,0.07639425;-0.5871524;0.05844668,0.08763172;-0.6155802;-0.00256807,-0.06817587;0.003876469;-0.04167761,-0.09927756;-0.2926619;-0.008546084,-0.09571066;-0.5869284;0.04971624,-0.09603875;-0.6163856;-0.01099985,0.01375443;0.3992528;0.01958014,0;0;0,0.01166;0.1992365;0.01299486,0.02952849;0.498555;0.02072897,0.1345221;0.3703914;-0.01493078,0.1725986;0.1745611;-0.0007650619,0.2099099;-0.07077666;-0.03105163,-0.09251408;0.3744614;0.001935687,-0.2796269;0.3570294;-0.06651071,-0.4972981;0.3654121;-0.189185,0.07002942;0.002065499;-0.03862142,0.08512145;-0.2957594;-0.00587118,0.07407534;-0.588901;0.05694575,0.08818182;-0.6158889;-0.005294714,-0.07162;0.005606199;-0.0352015,-0.1039859;-0.2916384;-0.01074548,-0.1019241;-0.5855881;0.04916546,-0.1047286;-0.6125881;-0.01457721,0.02349648;0.3987371;0.02070379,23.52294
-0;0;0,0.006892357;0.1995043;0.01226908,0.01703097;0.4991991;0.01956313,0.1274869;0.372883;-0.008160941,0.1738103;0.1790838;0.009044753,0.2004437;-0.06771885;-0.02060507,-0.09722047;0.3702781;-0.01570497,-0.2383484;0.3426864;-0.1547072,-0.395052;0.3476988;-0.3494348,0.07331619;0.004146787;-0.03174175,0.08693712;-0.2944925;-0.006661385,0.07639425;-0.5871524;0.05844668,0.08763172;-0.6155802;-0.00256807,-0.06817587;0.003876469;-0.04167761,-0.09927756;-0.2926619;-0.008546084,-0.09571066;-0.5869284;0.04971624,-0.09603875;-0.6163856;-0.01099985,0.01375443;0.3992528;0.01958014,0;0;0,0.01166;0.1992365;0.01299486,0.02952849;0.498555;0.02072897,0.1345221;0.3703914;-0.01493078,0.1725986;0.1745611;-0.0007650619,0.2099099;-0.07077666;-0.03105163,-0.09251408;0.3744614;0.001935687,-0.2796269;0.3570294;-0.06651071,-0.4972981;0.3654121;-0.189185,0.07002942;0.002065499;-0.03862142,0.08512145;-0.2957594;-0.00587118,0.07407534;-0.588901;0.05694575,0.08818182;-0.6158889;-0.005294714,-0.07162;0.005606199;-0.0352015,-0.1039859;-0.2916384;-0.01074548,-0.1019241;-0.5855881;0.04916546,-0.1047286;-0.6125881;-0.01457721,0.02349648;0.3987371;0.02070379,23.53438
-0;0;0,0.006892357;0.1995043;0.01226908,0.01703097;0.4991991;0.01956313,0.1274869;0.372883;-0.008160941,0.1738103;0.1790838;0.009044753,0.2004437;-0.06771885;-0.02060507,-0.09722047;0.3702781;-0.01570497,-0.2383484;0.3426864;-0.1547072,-0.395052;0.3476988;-0.3494348,0.07331619;0.004146787;-0.03174175,0.08693712;-0.2944925;-0.006661385,0.07639425;-0.5871524;0.05844668,0.08763172;-0.6155802;-0.00256807,-0.06817587;0.003876469;-0.04167761,-0.09927756;-0.2926619;-0.008546084,-0.09571066;-0.5869284;0.04971624,-0.09603875;-0.6163856;-0.01099985,0.01375443;0.3992528;0.01958014,0;0;0,0.01166;0.1992365;0.01299486,0.02952849;0.498555;0.02072897,0.1345221;0.3703914;-0.01493078,0.1725986;0.1745611;-0.0007650619,0.2099099;-0.07077666;-0.03105163,-0.09251408;0.3744614;0.001935687,-0.2796269;0.3570294;-0.06651071,-0.4972981;0.3654121;-0.189185,0.07002942;0.002065499;-0.03862142,0.08512145;-0.2957594;-0.00587118,0.07407534;-0.588901;0.05694575,0.08818182;-0.6158889;-0.005294714,-0.07162;0.005606199;-0.0352015,-0.1039859;-0.2916384;-0.01074548,-0.1019241;-0.5855881;0.04916546,-0.1047286;-0.6125881;-0.01457721,0.02349648;0.3987371;0.02070379,23.54702
-0;0;0,0.006818525;0.1995016;0.0123532,0.01680834;0.499198;0.01977547,0.1274371;0.3729661;-0.007550806,0.1739296;0.1791634;0.009151677,0.2008296;-0.06753002;-0.02115918,-0.09711196;0.3700821;-0.01624656,-0.235504;0.3419099;-0.1578586,-0.3886169;0.3451195;-0.3554596,0.07345489;0.004117861;-0.03142327,0.08694324;-0.2945523;-0.006640026,0.07647341;-0.587172;0.05865988,0.08806955;-0.6154774;-0.002444845,-0.06797409;0.003773401;-0.04201528,-0.09919325;-0.2927021;-0.008434787,-0.09565019;-0.5869871;0.04973522,-0.09612049;-0.616161;-0.01134898,0.01358051;0.3992501;0.0197591,0;0;0,0.01159085;0.1992264;0.01320914,0.02914708;0.4985488;0.02151739,0.134369;0.3707645;-0.01435119,0.1728877;0.1750179;-0.0002242904,0.2105252;-0.07024585;-0.03070582,-0.09250423;0.374289;0.001152707,-0.2773464;0.3572322;-0.07329496,-0.4911441;0.3639483;-0.2026992,0.07026821;0.002025842;-0.03818735,0.08517189;-0.295846;-0.005780336,0.07401624;-0.5890251;0.0568422,0.08841354;-0.6159893;-0.00536095,-0.07136147;0.005416665;-0.03575192,-0.1036995;-0.2917873;-0.01077095,-0.1016963;-0.5857306;0.04917392,-0.104486;-0.6124684;-0.01488478,0.02324464;0.3987234;0.02128127,23.56708
-0;0;0,0.006818525;0.1995016;0.0123532,0.01680834;0.499198;0.01977547,0.1274371;0.3729661;-0.007550806,0.1739296;0.1791634;0.009151677,0.2008296;-0.06753002;-0.02115918,-0.09711196;0.3700821;-0.01624656,-0.235504;0.3419099;-0.1578586,-0.3886169;0.3451195;-0.3554596,0.07345489;0.004117861;-0.03142327,0.08694324;-0.2945523;-0.006640026,0.07647341;-0.587172;0.05865988,0.08806955;-0.6154774;-0.002444845,-0.06797409;0.003773401;-0.04201528,-0.09919325;-0.2927021;-0.008434787,-0.09565019;-0.5869871;0.04973522,-0.09612049;-0.616161;-0.01134898,0.01358051;0.3992501;0.0197591,0;0;0,0.01159085;0.1992264;0.01320914,0.02914708;0.4985488;0.02151739,0.134369;0.3707645;-0.01435119,0.1728877;0.1750179;-0.0002242904,0.2105252;-0.07024585;-0.03070582,-0.09250423;0.374289;0.001152707,-0.2773464;0.3572322;-0.07329496,-0.4911441;0.3639483;-0.2026992,0.07026821;0.002025842;-0.03818735,0.08517189;-0.295846;-0.005780336,0.07401624;-0.5890251;0.0568422,0.08841354;-0.6159893;-0.00536095,-0.07136147;0.005416665;-0.03575192,-0.1036995;-0.2917873;-0.01077095,-0.1016963;-0.5857306;0.04917392,-0.104486;-0.6124684;-0.01488478,0.02324464;0.3987234;0.02128127,23.57868
-0;0;0,0.00675936;0.1994984;0.01243746,0.01657177;0.4991964;0.02001684,0.1274346;0.3730814;-0.006722372,0.1738423;0.1792433;0.009804416,0.2008699;-0.06732205;-0.02142095,-0.09702209;0.3700412;-0.01684003,-0.2329251;0.3404809;-0.1605639,-0.3769192;0.3365367;-0.3648925,0.07363905;0.004083619;-0.03099377,0.08693755;-0.2946178;-0.006486291,0.07637854;-0.5872965;0.05853475,0.08768628;-0.6161383;-0.001930963,-0.0675635;0.003746964;-0.04267474,-0.09883966;-0.292622;-0.008218057,-0.09523521;-0.5869077;0.04994454,-0.09545492;-0.6158945;-0.01138278,0.01340073;0.3992468;0.0199545,0;0;0,0.01159085;0.1992264;0.01320914,0.02914708;0.4985488;0.02151739,0.134369;0.3707645;-0.01435119,0.1728877;0.1750179;-0.0002242904,0.2105252;-0.07024585;-0.03070582,-0.09250423;0.374289;0.001152707,-0.2773464;0.3572322;-0.07329496,-0.4911441;0.3639483;-0.2026992,0.07026821;0.002025842;-0.03818735,0.08517189;-0.295846;-0.005780336,0.07401624;-0.5890251;0.0568422,0.08841354;-0.6159893;-0.00536095,-0.07136147;0.005416665;-0.03575192,-0.1036995;-0.2917873;-0.01077095,-0.1016963;-0.5857306;0.04917392,-0.104486;-0.6124684;-0.01488478,0.02324464;0.3987234;0.02128127,23.60162
-0;0;0,0.00670355;0.1994959;0.01250833,0.01634996;0.4991962;0.02018888,0.1274532;0.3731182;-0.00576238,0.1740247;0.1792628;0.01008731,0.2011154;-0.067237;-0.02159723,-0.09686144;0.3697472;-0.01745584,-0.2303479;0.3396102;-0.1633089,-0.3739671;0.33419;-0.3678674,0.07376235;0.004087461;-0.03069867,0.08680375;-0.2946031;-0.005922347,0.07633593;-0.5873426;0.05883904,0.08766774;-0.6155457;-0.002446044,-0.0674268;0.003738066;-0.04289117,-0.09875804;-0.292564;-0.007913772,-0.09523238;-0.5869042;0.04997778,-0.09516294;-0.6155034;-0.01184583,0.01322456;0.3992451;0.02010669,0;0;0,0.01159303;0.1992133;0.01340389,0.02917043;0.4985291;0.02188792,0.1345245;0.3709196;-0.01373193,0.1733678;0.1752391;0.0004217643,0.2117641;-0.06991145;-0.03002397,-0.09224919;0.3739668;0.0004979633,-0.2755633;0.356659;-0.07758139,-0.4844563;0.3637029;-0.2147459,0.07050346;0.002006488;-0.03775231,0.08536172;-0.2959172;-0.005804233,0.07427465;-0.5890077;0.0572436,0.08838752;-0.6166527;-0.004173715,-0.07129195;0.005410037;-0.03589134,-0.1035597;-0.2917779;-0.01063044,-0.1016167;-0.5857623;0.04911415,-0.1043178;-0.612279;-0.01521226,0.02326127;0.3987042;0.02160221,23.62337
-0;0;0,0.00670355;0.1994959;0.01250833,0.01634996;0.4991962;0.02018888,0.1274532;0.3731182;-0.00576238,0.1740247;0.1792628;0.01008731,0.2011154;-0.067237;-0.02159723,-0.09686144;0.3697472;-0.01745584,-0.2303479;0.3396102;-0.1633089,-0.3739671;0.33419;-0.3678674,0.07376235;0.004087461;-0.03069867,0.08680375;-0.2946031;-0.005922347,0.07633593;-0.5873426;0.05883904,0.08766774;-0.6155457;-0.002446044,-0.0674268;0.003738066;-0.04289117,-0.09875804;-0.292564;-0.007913772,-0.09523238;-0.5869042;0.04997778,-0.09516294;-0.6155034;-0.01184583,0.01322456;0.3992451;0.02010669,0;0;0,0.01159303;0.1992133;0.01340389,0.02917043;0.4985291;0.02188792,0.1345245;0.3709196;-0.01373193,0.1733678;0.1752391;0.0004217643,0.2117641;-0.06991145;-0.03002397,-0.09224919;0.3739668;0.0004979633,-0.2755633;0.356659;-0.07758139,-0.4844563;0.3637029;-0.2147459,0.07050346;0.002006488;-0.03775231,0.08536172;-0.2959172;-0.005804233,0.07427465;-0.5890077;0.0572436,0.08838752;-0.6166527;-0.004173715,-0.07129195;0.005410037;-0.03589134,-0.1035597;-0.2917779;-0.01063044,-0.1016167;-0.5857623;0.04911415,-0.1043178;-0.612279;-0.01521226,0.02326127;0.3987042;0.02160221,23.63485
-0;0;0,0.00670355;0.1994959;0.01250833,0.01634996;0.4991962;0.02018888,0.1274532;0.3731182;-0.00576238,0.1740247;0.1792628;0.01008731,0.2011154;-0.067237;-0.02159723,-0.09686144;0.3697472;-0.01745584,-0.2303479;0.3396102;-0.1633089,-0.3739671;0.33419;-0.3678674,0.07376235;0.004087461;-0.03069867,0.08680375;-0.2946031;-0.005922347,0.07633593;-0.5873426;0.05883904,0.08766774;-0.6155457;-0.002446044,-0.0674268;0.003738066;-0.04289117,-0.09875804;-0.292564;-0.007913772,-0.09523238;-0.5869042;0.04997778,-0.09516294;-0.6155034;-0.01184583,0.01322456;0.3992451;0.02010669,0;0;0,0.01159303;0.1992133;0.01340389,0.02917043;0.4985291;0.02188792,0.1345245;0.3709196;-0.01373193,0.1733678;0.1752391;0.0004217643,0.2117641;-0.06991145;-0.03002397,-0.09224919;0.3739668;0.0004979633,-0.2755633;0.356659;-0.07758139,-0.4844563;0.3637029;-0.2147459,0.07050346;0.002006488;-0.03775231,0.08536172;-0.2959172;-0.005804233,0.07427465;-0.5890077;0.0572436,0.08838752;-0.6166527;-0.004173715,-0.07129195;0.005410037;-0.03589134,-0.1035597;-0.2917779;-0.01063044,-0.1016167;-0.5857623;0.04911415,-0.1043178;-0.612279;-0.01521226,0.02326127;0.3987042;0.02160221,23.64639
-0;0;0,0.006698917;0.1994915;0.01257992,0.01635692;0.4991884;0.02038176,0.1274479;0.3728946;-0.00537258,0.1740673;0.1790816;0.0108504,0.2011958;-0.06730217;-0.02169287,-0.09671737;0.3697703;-0.01777419,-0.2278087;0.338713;-0.1655934,-0.3683102;0.3316453;-0.3722558,0.07384488;0.004065277;-0.03050256,0.08674693;-0.2946497;-0.005948756,0.0765175;-0.587384;0.05887429,0.0888212;-0.6163862;-0.001186289,-0.06727886;0.003672501;-0.04312849,-0.0984979;-0.2925753;-0.007595304,-0.09496128;-0.5869377;0.05018238,-0.0947555;-0.6154224;-0.01178629,0.01321529;0.3992378;0.0202584,0;0;0,0.01160907;0.1992023;0.0135528,0.02921575;0.4985128;0.02215232,0.1346238;0.3709588;-0.01334314,0.173521;0.1752863;0.000773441,0.2124903;-0.06979887;-0.02946994,-0.0919209;0.3736208;-0.0004416127,-0.2732527;0.3560121;-0.08295663,-0.4801788;0.36342;-0.223052,0.07068121;0.001990062;-0.03741932,0.08555314;-0.2959677;-0.005796429,0.07445543;-0.5890948;0.05707957,0.08796312;-0.6170419;-0.004090492,-0.07121821;0.005393519;-0.03603993,-0.1034703;-0.2917735;-0.01051401,-0.1014796;-0.5857787;0.04912635,-0.1044213;-0.6101031;-0.01771094,0.02329768;0.3986886;0.02183583,23.66796
-0;0;0,0.006698917;0.1994915;0.01257992,0.01635692;0.4991884;0.02038176,0.1274479;0.3728946;-0.00537258,0.1740673;0.1790816;0.0108504,0.2011958;-0.06730217;-0.02169287,-0.09671737;0.3697703;-0.01777419,-0.2278087;0.338713;-0.1655934,-0.3683102;0.3316453;-0.3722558,0.07384488;0.004065277;-0.03050256,0.08674693;-0.2946497;-0.005948756,0.0765175;-0.587384;0.05887429,0.0888212;-0.6163862;-0.001186289,-0.06727886;0.003672501;-0.04312849,-0.0984979;-0.2925753;-0.007595304,-0.09496128;-0.5869377;0.05018238,-0.0947555;-0.6154224;-0.01178629,0.01321529;0.3992378;0.0202584,0;0;0,0.01160907;0.1992023;0.0135528,0.02921575;0.4985128;0.02215232,0.1346238;0.3709588;-0.01334314,0.173521;0.1752863;0.000773441,0.2124903;-0.06979887;-0.02946994,-0.0919209;0.3736208;-0.0004416127,-0.2732527;0.3560121;-0.08295663,-0.4801788;0.36342;-0.223052,0.07068121;0.001990062;-0.03741932,0.08555314;-0.2959677;-0.005796429,0.07445543;-0.5890948;0.05707957,0.08796312;-0.6170419;-0.004090492,-0.07121821;0.005393519;-0.03603993,-0.1034703;-0.2917735;-0.01051401,-0.1014796;-0.5857787;0.04912635,-0.1044213;-0.6101031;-0.01771094,0.02329768;0.3986886;0.02183583,23.67985
-0;0;0,0.006620464;0.1994863;0.0127039,0.01607423;0.4991834;0.02073384,0.1272347;0.3728499;-0.005050141,0.1738716;0.1790599;0.01139589,0.2011321;-0.06723693;-0.02169066,-0.09663711;0.3697291;-0.01830501,-0.2245169;0.3382773;-0.1688292,-0.3636971;0.3318643;-0.3764051,0.07409227;0.004197448;-0.02987836,0.08674382;-0.2945703;-0.005841162,0.0766298;-0.587326;0.05890303,0.08903268;-0.6164399;-0.0009898432,-0.06702943;0.003639435;-0.04351792,-0.09839569;-0.2925371;-0.007522944,-0.09492504;-0.5868945;0.05028459,-0.0944787;-0.6154345;-0.01161256,0.01300177;0.3992308;0.02054035,0;0;0,0.01160907;0.1992023;0.0135528,0.02921575;0.4985128;0.02215232,0.1346238;0.3709588;-0.01334314,0.173521;0.1752863;0.000773441,0.2124903;-0.06979887;-0.02946994,-0.0919209;0.3736208;-0.0004416127,-0.2732527;0.3560121;-0.08295663,-0.4801788;0.36342;-0.223052,0.07068121;0.001990062;-0.03741932,0.08555314;-0.2959677;-0.005796429,0.07445543;-0.5890948;0.05707957,0.08796312;-0.6170419;-0.004090492,-0.07121821;0.005393519;-0.03603993,-0.1034703;-0.2917735;-0.01051401,-0.1014796;-0.5857787;0.04912635,-0.1044213;-0.6101031;-0.01771094,0.02329768;0.3986886;0.02183583,23.70184
-0;0;0,0.006620464;0.1994863;0.0127039,0.01607423;0.4991834;0.02073384,0.1272347;0.3728499;-0.005050141,0.1738716;0.1790599;0.01139589,0.2011321;-0.06723693;-0.02169066,-0.09663711;0.3697291;-0.01830501,-0.2245169;0.3382773;-0.1688292,-0.3636971;0.3318643;-0.3764051,0.07409227;0.004197448;-0.02987836,0.08674382;-0.2945703;-0.005841162,0.0766298;-0.587326;0.05890303,0.08903268;-0.6164399;-0.0009898432,-0.06702943;0.003639435;-0.04351792,-0.09839569;-0.2925371;-0.007522944,-0.09492504;-0.5868945;0.05028459,-0.0944787;-0.6154345;-0.01161256,0.01300177;0.3992308;0.02054035,0;0;0,0.01159598;0.1991869;0.01378832,0.02917323;0.4984899;0.02269619,0.1347823;0.3708955;-0.01226151,0.174078;0.1753061;0.001903174,0.2130373;-0.06978567;-0.0282991,-0.0917376;0.3736363;-0.001117986,-0.2713544;0.3556589;-0.08722618,-0.4731213;0.3613589;-0.2347308,0.07082138;0.002009023;-0.03715234,0.08562196;-0.295967;-0.005668323,0.07450259;-0.5891272;0.05704897,0.0885323;-0.6171414;-0.003917765,-0.0711627;0.005379091;-0.03615157,-0.1033076;-0.2917738;-0.01032769,-0.1012964;-0.5858016;0.04920056,-0.1034913;-0.6106009;-0.01713377,0.02326696;0.3986654;0.02228067,23.71292
-0;0;0,0.006557551;0.1994815;0.01281168,0.0158719;0.4991768;0.02106792,0.1272539;0.3732432;-0.004418919,0.1740309;0.1794482;0.01156228,0.2012739;-0.06683308;-0.02165435,-0.09644967;0.3695601;-0.0188814,-0.2218497;0.3383639;-0.1715301,-0.3589166;0.331671;-0.3804987,0.07429097;0.004341518;-0.02935989,0.08682872;-0.2944649;-0.005747914,0.07680425;-0.5872346;0.05894718,0.08926872;-0.6163224;-0.0009673052,-0.06666235;0.003586223;-0.04408253,-0.09816146;-0.2924943;-0.007420477,-0.09483866;-0.5868626;0.05034002,-0.09448683;-0.6158218;-0.01102221,0.01284623;0.399223;0.0207988,0;0;0,0.01159598;0.1991869;0.01378832,0.02917323;0.4984899;0.02269619,0.1347823;0.3708955;-0.01226151,0.174078;0.1753061;0.001903174,0.2130373;-0.06978567;-0.0282991,-0.0917376;0.3736363;-0.001117986,-0.2713544;0.3556589;-0.08722618,-0.4731213;0.3613589;-0.2347308,0.07082138;0.002009023;-0.03715234,0.08562196;-0.295967;-0.005668323,0.07450259;-0.5891272;0.05704897,0.0885323;-0.6171414;-0.003917765,-0.0711627;0.005379091;-0.03615157,-0.1033076;-0.2917738;-0.01032769,-0.1012964;-0.5858016;0.04920056,-0.1034913;-0.6106009;-0.01713377,0.02326696;0.3986654;0.02228067,23.72403
-0;0;0,0.006557551;0.1994815;0.01281168,0.0158719;0.4991768;0.02106792,0.1272539;0.3732432;-0.004418919,0.1740309;0.1794482;0.01156228,0.2012739;-0.06683308;-0.02165435,-0.09644967;0.3695601;-0.0188814,-0.2218497;0.3383639;-0.1715301,-0.3589166;0.331671;-0.3804987,0.07429097;0.004341518;-0.02935989,0.08682872;-0.2944649;-0.005747914,0.07680425;-0.5872346;0.05894718,0.08926872;-0.6163224;-0.0009673052,-0.06666235;0.003586223;-0.04408253,-0.09816146;-0.2924943;-0.007420477,-0.09483866;-0.5868626;0.05034002,-0.09448683;-0.6158218;-0.01102221,0.01284623;0.399223;0.0207988,0;0;0,0.01159598;0.1991869;0.01378832,0.02917323;0.4984899;0.02269619,0.1347823;0.3708955;-0.01226151,0.174078;0.1753061;0.001903174,0.2130373;-0.06978567;-0.0282991,-0.0917376;0.3736363;-0.001117986,-0.2713544;0.3556589;-0.08722618,-0.4731213;0.3613589;-0.2347308,0.07082138;0.002009023;-0.03715234,0.08562196;-0.295967;-0.005668323,0.07450259;-0.5891272;0.05704897,0.0885323;-0.6171414;-0.003917765,-0.0711627;0.005379091;-0.03615157,-0.1033076;-0.2917738;-0.01032769,-0.1012964;-0.5858016;0.04920056,-0.1034913;-0.6106009;-0.01713377,0.02326696;0.3986654;0.02228067,23.74645
-0;0;0,0.006485713;0.1994771;0.01291552,0.01562267;0.4991722;0.02137321,0.1272711;0.3736212;-0.003627688,0.1732031;0.1796128;0.01221588,0.2015114;-0.06647561;-0.02153496,-0.09628455;0.3695313;-0.01958529,-0.2200443;0.3378243;-0.1734625,-0.3537658;0.330048;-0.3845503,0.07446195;0.004318791;-0.0289269,0.08682682;-0.2945284;-0.005743193,0.07692717;-0.5872913;0.05900141,0.0892944;-0.6160122;-0.001414493,-0.06637758;0.003566931;-0.04451172,-0.09796832;-0.2924343;-0.00729214,-0.0944824;-0.5866714;0.05112384,-0.09418934;-0.6149585;-0.01109383,0.0126572;0.3992167;0.0210407,0;0;0,0.01148237;0.1991791;0.013994,0.02878476;0.4984925;0.0230861,0.1348399;0.3712932;-0.0111275,0.1747399;0.1757903;0.002533468,0.2137102;-0.0692005;-0.02846338,-0.09183089;0.3735282;-0.001604905,-0.2685713;0.3542723;-0.09321291,-0.4679661;0.3608397;-0.2438735,0.07107993;0.002258676;-0.0366407,0.08580747;-0.2957883;-0.00580083,0.07473473;-0.5890095;0.05663926,0.08872848;-0.6172112;-0.004095148,-0.07108023;0.005318981;-0.03632229,-0.1032188;-0.2918221;-0.01035545,-0.10126;-0.5858891;0.04898063,-0.1026838;-0.6118561;-0.01603466,0.02298082;0.3986622;0.02261389,23.75744
-0;0;0,0.006485713;0.1994771;0.01291552,0.01562267;0.4991722;0.02137321,0.1272711;0.3736212;-0.003627688,0.1732031;0.1796128;0.01221588,0.2015114;-0.06647561;-0.02153496,-0.09628455;0.3695313;-0.01958529,-0.2200443;0.3378243;-0.1734625,-0.3537658;0.330048;-0.3845503,0.07446195;0.004318791;-0.0289269,0.08682682;-0.2945284;-0.005743193,0.07692717;-0.5872913;0.05900141,0.0892944;-0.6160122;-0.001414493,-0.06637758;0.003566931;-0.04451172,-0.09796832;-0.2924343;-0.00729214,-0.0944824;-0.5866714;0.05112384,-0.09418934;-0.6149585;-0.01109383,0.0126572;0.3992167;0.0210407,0;0;0,0.01148237;0.1991791;0.013994,0.02878476;0.4984925;0.0230861,0.1348399;0.3712932;-0.0111275,0.1747399;0.1757903;0.002533468,0.2137102;-0.0692005;-0.02846338,-0.09183089;0.3735282;-0.001604905,-0.2685713;0.3542723;-0.09321291,-0.4679661;0.3608397;-0.2438735,0.07107993;0.002258676;-0.0366407,0.08580747;-0.2957883;-0.00580083,0.07473473;-0.5890095;0.05663926,0.08872848;-0.6172112;-0.004095148,-0.07108023;0.005318981;-0.03632229,-0.1032188;-0.2918221;-0.01035545,-0.10126;-0.5858891;0.04898063,-0.1026838;-0.6118561;-0.01603466,0.02298082;0.3986622;0.02261389,23.76895
-0;0;0,0.006485713;0.1994771;0.01291552,0.01562267;0.4991722;0.02137321,0.1272711;0.3736212;-0.003627688,0.1732031;0.1796128;0.01221588,0.2015114;-0.06647561;-0.02153496,-0.09628455;0.3695313;-0.01958529,-0.2200443;0.3378243;-0.1734625,-0.3537658;0.330048;-0.3845503,0.07446195;0.004318791;-0.0289269,0.08682682;-0.2945284;-0.005743193,0.07692717;-0.5872913;0.05900141,0.0892944;-0.6160122;-0.001414493,-0.06637758;0.003566931;-0.04451172,-0.09796832;-0.2924343;-0.00729214,-0.0944824;-0.5866714;0.05112384,-0.09418934;-0.6149585;-0.01109383,0.0126572;0.3992167;0.0210407,0;0;0,0.01148237;0.1991791;0.013994,0.02878476;0.4984925;0.0230861,0.1348399;0.3712932;-0.0111275,0.1747399;0.1757903;0.002533468,0.2137102;-0.0692005;-0.02846338,-0.09183089;0.3735282;-0.001604905,-0.2685713;0.3542723;-0.09321291,-0.4679661;0.3608397;-0.2438735,0.07107993;0.002258676;-0.0366407,0.08580747;-0.2957883;-0.00580083,0.07473473;-0.5890095;0.05663926,0.08872848;-0.6172112;-0.004095148,-0.07108023;0.005318981;-0.03632229,-0.1032188;-0.2918221;-0.01035545,-0.10126;-0.5858891;0.04898063,-0.1026838;-0.6118561;-0.01603466,0.02298082;0.3986622;0.02261389,23.79085
-0;0;0,0.006344337;0.1994676;0.01313142,0.01536876;0.4991659;0.02158972,0.1271223;0.3736439;-0.00314929,0.1731054;0.179668;0.01294126,0.2011219;-0.06645156;-0.02082623,-0.0963176;0.3697421;-0.01999624,-0.2172633;0.3376368;-0.1760135,-0.3503318;0.328738;-0.3874694,0.07459034;0.00439243;-0.028583,0.08687818;-0.2944591;-0.005414283,0.07699004;-0.587258;0.05916924,0.08948564;-0.6161227;-0.001032274,-0.06601693;0.003470703;-0.04505241,-0.09776823;-0.2923884;-0.006852053,-0.09431531;-0.5866421;0.05148148,-0.09360101;-0.6147101;-0.01100757,0.0124463;0.3992091;0.02126034,0;0;0,0.01130123;0.1991794;0.01413731,0.02815558;0.4985137;0.02337757,0.1346491;0.3713225;-0.01001151,0.1742648;0.1757529;0.003519787,0.2135536;-0.06923947;-0.02706054,-0.09203437;0.3734068;-0.002392475,-0.2662657;0.3537126;-0.09859833,-0.4620485;0.3624898;-0.2538146,0.07131617;0.002298747;-0.03617623,0.08589461;-0.29578;-0.005573142,0.07474287;-0.5890517;0.05661475,0.08874892;-0.6170308;-0.00440244,-0.07097661;0.005341341;-0.03652109,-0.1029123;-0.291783;-0.01011556,-0.1011454;-0.5858848;0.04905359,-0.1028825;-0.6140409;-0.01330505,0.02252594;0.3986737;0.02285664,23.80259
-0;0;0,0.006344337;0.1994676;0.01313142,0.01536876;0.4991659;0.02158972,0.1271223;0.3736439;-0.00314929,0.1731054;0.179668;0.01294126,0.2011219;-0.06645156;-0.02082623,-0.0963176;0.3697421;-0.01999624,-0.2172633;0.3376368;-0.1760135,-0.3503318;0.328738;-0.3874694,0.07459034;0.00439243;-0.028583,0.08687818;-0.2944591;-0.005414283,0.07699004;-0.587258;0.05916924,0.08948564;-0.6161227;-0.001032274,-0.06601693;0.003470703;-0.04505241,-0.09776823;-0.2923884;-0.006852053,-0.09431531;-0.5866421;0.05148148,-0.09360101;-0.6147101;-0.01100757,0.0124463;0.3992091;0.02126034,0;0;0,0.01130123;0.1991794;0.01413731,0.02815558;0.4985137;0.02337757,0.1346491;0.3713225;-0.01001151,0.1742648;0.1757529;0.003519787,0.2135536;-0.06923947;-0.02706054,-0.09203437;0.3734068;-0.002392475,-0.2662657;0.3537126;-0.09859833,-0.4620485;0.3624898;-0.2538146,0.07131617;0.002298747;-0.03617623,0.08589461;-0.29578;-0.005573142,0.07474287;-0.5890517;0.05661475,0.08874892;-0.6170308;-0.00440244,-0.07097661;0.005341341;-0.03652109,-0.1029123;-0.291783;-0.01011556,-0.1011454;-0.5858848;0.04905359,-0.1028825;-0.6140409;-0.01330505,0.02252594;0.3986737;0.02285664,23.8134
-0;0;0,0.006080416;0.1994692;0.01323176,0.01486633;0.4991755;0.02163776,0.126812;0.3737378;-0.002824189,0.1729305;0.1798052;0.01339974,0.2008441;-0.06632012;-0.02041114,-0.09645884;0.3696536;-0.02048208,-0.2158898;0.336614;-0.1774681,-0.345498;0.3299119;-0.3911427,0.07472812;0.004529925;-0.02819908,0.08671742;-0.2943573;-0.005336784,0.07694084;-0.5871252;0.05940408,0.08934684;-0.6160404;-0.0007496774,-0.06584161;0.003323911;-0.04531925,-0.09797509;-0.2924397;-0.006701492,-0.09460585;-0.5866703;0.05175348,-0.09334031;-0.615828;-0.009340312,0.01206402;0.3992153;0.02133772,0;0;0,0.01130123;0.1991794;0.01413731,0.02815558;0.4985137;0.02337757,0.1346491;0.3713225;-0.01001151,0.1742648;0.1757529;0.003519787,0.2135536;-0.06923947;-0.02706054,-0.09203437;0.3734068;-0.002392475,-0.2662657;0.3537126;-0.09859833,-0.4620485;0.3624898;-0.2538146,0.07131617;0.002298747;-0.03617623,0.08589461;-0.29578;-0.005573142,0.07474287;-0.5890517;0.05661475,0.08874892;-0.6170308;-0.00440244,-0.07097661;0.005341341;-0.03652109,-0.1029123;-0.291783;-0.01011556,-0.1011454;-0.5858848;0.04905359,-0.1028825;-0.6140409;-0.01330505,0.02252594;0.3986737;0.02285664,23.83584
-0;0;0,0.006080416;0.1994692;0.01323176,0.01486633;0.4991755;0.02163776,0.126812;0.3737378;-0.002824189,0.1729305;0.1798052;0.01339974,0.2008441;-0.06632012;-0.02041114,-0.09645884;0.3696536;-0.02048208,-0.2158898;0.336614;-0.1774681,-0.345498;0.3299119;-0.3911427,0.07472812;0.004529925;-0.02819908,0.08671742;-0.2943573;-0.005336784,0.07694084;-0.5871252;0.05940408,0.08934684;-0.6160404;-0.0007496774,-0.06584161;0.003323911;-0.04531925,-0.09797509;-0.2924397;-0.006701492,-0.09460585;-0.5866703;0.05175348,-0.09334031;-0.615828;-0.009340312,0.01206402;0.3992153;0.02133772,0;0;0,0.01120958;0.1991756;0.01426332,0.02778581;0.4985192;0.02370314,0.134286;0.3714443;-0.01018753,0.1742979;0.1760376;0.004484567,0.2132046;-0.0689878;-0.02631823,-0.09206207;0.3732033;-0.002987582,-0.2641022;0.3534866;-0.1030548,-0.4561542;0.3607427;-0.2629403,0.07140645;0.002305125;-0.03599729,0.08599928;-0.295758;-0.005249552,0.07506353;-0.5891609;0.05635516,0.08866459;-0.6176047;-0.004155789,-0.07089757;0.005304628;-0.03667964,-0.1027385;-0.2917922;-0.009853769,-0.1008924;-0.5859209;0.04917919,-0.1027801;-0.6141827;-0.01304246,0.02226155;0.3986737;0.0231155,23.84698
-0;0;0,0.006080416;0.1994692;0.01323176,0.01486633;0.4991755;0.02163776,0.126812;0.3737378;-0.002824189,0.1729305;0.1798052;0.01339974,0.2008441;-0.06632012;-0.02041114,-0.09645884;0.3696536;-0.02048208,-0.2158898;0.336614;-0.1774681,-0.345498;0.3299119;-0.3911427,0.07472812;0.004529925;-0.02819908,0.08671742;-0.2943573;-0.005336784,0.07694084;-0.5871252;0.05940408,0.08934684;-0.6160404;-0.0007496774,-0.06584161;0.003323911;-0.04531925,-0.09797509;-0.2924397;-0.006701492,-0.09460585;-0.5866703;0.05175348,-0.09334031;-0.615828;-0.009340312,0.01206402;0.3992153;0.02133772,0;0;0,0.01120958;0.1991756;0.01426332,0.02778581;0.4985192;0.02370314,0.134286;0.3714443;-0.01018753,0.1742979;0.1760376;0.004484567,0.2132046;-0.0689878;-0.02631823,-0.09206207;0.3732033;-0.002987582,-0.2641022;0.3534866;-0.1030548,-0.4561542;0.3607427;-0.2629403,0.07140645;0.002305125;-0.03599729,0.08599928;-0.295758;-0.005249552,0.07506353;-0.5891609;0.05635516,0.08866459;-0.6176047;-0.004155789,-0.07089757;0.005304628;-0.03667964,-0.1027385;-0.2917922;-0.009853769,-0.1008924;-0.5859209;0.04917919,-0.1027801;-0.6141827;-0.01304246,0.02226155;0.3986737;0.0231155,23.85786
-0;0;0,0.005952511;0.1994633;0.01337776,0.01445584;0.499178;0.02177556,0.1265495;0.373707;-0.00244214,0.1729622;0.1798982;0.014411,0.2004095;-0.06631468;-0.01914243,-0.09645909;0.369623;-0.02110684,-0.2145691;0.3356215;-0.178885,-0.3423672;0.32697;-0.3935773,0.07483854;0.004567439;-0.02789856,0.08673042;-0.2943384;-0.00522981,0.07684939;-0.5871059;0.05949722,0.08940652;-0.6156236;-0.0011434,-0.06554868;0.003266415;-0.04574605,-0.09779589;-0.2924041;-0.006515279,-0.09442613;-0.5866046;0.05209143,-0.09342586;-0.615104;-0.009850882,0.0117576;0.3992149;0.02147802,0;0;0,0.01120958;0.1991756;0.01426332,0.02778581;0.4985192;0.02370314,0.134286;0.3714443;-0.01018753,0.1742979;0.1760376;0.004484567,0.2132046;-0.0689878;-0.02631823,-0.09206207;0.3732033;-0.002987582,-0.2641022;0.3534866;-0.1030548,-0.4561542;0.3607427;-0.2629403,0.07140645;0.002305125;-0.03599729,0.08599928;-0.295758;-0.005249552,0.07506353;-0.5891609;0.05635516,0.08866459;-0.6176047;-0.004155789,-0.07089757;0.005304628;-0.03667964,-0.1027385;-0.2917922;-0.009853769,-0.1008924;-0.5859209;0.04917919,-0.1027801;-0.6141827;-0.01304246,0.02226155;0.3986737;0.0231155,23.88053
-0;0;0,0.005901155;0.1994589;0.01346532,0.01428103;0.4991716;0.02205553,0.12647;0.3734756;-0.001657637,0.1733921;0.1798288;0.01564105,0.2004969;-0.06649882;-0.01734427,-0.09648691;0.3696602;-0.02122105,-0.2125624;0.3348891;-0.1803356,-0.3404534;0.3251975;-0.3949281,0.07500178;0.004649099;-0.02744302,0.08685297;-0.2942917;-0.005218107,0.0770321;-0.5870595;0.0595164,0.0900698;-0.6158499;-0.0006674603,-0.06533645;0.003357638;-0.04604209,-0.09757337;-0.2922591;-0.006399844,-0.09418049;-0.586431;0.05234852,-0.09305339;-0.6162881;-0.00783094,0.01161126;0.3992079;0.02169416,0;0;0,0.01100191;0.1991676;0.01453345,0.02706283;0.4985226;0.02450761,0.1339099;0.3713248;-0.008977439,0.1741196;0.175945;0.005511178,0.2132022;-0.06905027;-0.02530899,-0.09220365;0.3729182;-0.00374374,-0.2624523;0.3530765;-0.1068054,-0.4511442;0.3613728;-0.2705935,0.07179345;0.002370919;-0.03521476,0.08598397;-0.295775;-0.005087538,0.07496494;-0.5892261;0.05627219,0.08955813;-0.6177327;-0.003925476,-0.07072719;0.005250822;-0.03701475,-0.1026044;-0.2918026;-0.009754688,-0.1008306;-0.585983;0.04902252,-0.1030236;-0.6137963;-0.01374909,0.02173661;0.3986676;0.02372594,23.90301
-0;0;0,0.005901155;0.1994589;0.01346532,0.01428103;0.4991716;0.02205553,0.12647;0.3734756;-0.001657637,0.1733921;0.1798288;0.01564105,0.2004969;-0.06649882;-0.01734427,-0.09648691;0.3696602;-0.02122105,-0.2125624;0.3348891;-0.1803356,-0.3404534;0.3251975;-0.3949281,0.07500178;0.004649099;-0.02744302,0.08685297;-0.2942917;-0.005218107,0.0770321;-0.5870595;0.0595164,0.0900698;-0.6158499;-0.0006674603,-0.06533645;0.003357638;-0.04604209,-0.09757337;-0.2922591;-0.006399844,-0.09418049;-0.586431;0.05234852,-0.09305339;-0.6162881;-0.00783094,0.01161126;0.3992079;0.02169416,0;0;0,0.01100191;0.1991676;0.01453345,0.02706283;0.4985226;0.02450761,0.1339099;0.3713248;-0.008977439,0.1741196;0.175945;0.005511178,0.2132022;-0.06905027;-0.02530899,-0.09220365;0.3729182;-0.00374374,-0.2624523;0.3530765;-0.1068054,-0.4511442;0.3613728;-0.2705935,0.07179345;0.002370919;-0.03521476,0.08598397;-0.295775;-0.005087538,0.07496494;-0.5892261;0.05627219,0.08955813;-0.6177327;-0.003925476,-0.07072719;0.005250822;-0.03701475,-0.1026044;-0.2918026;-0.009754688,-0.1008306;-0.585983;0.04902252,-0.1030236;-0.6137963;-0.01374909,0.02173661;0.3986676;0.02372594,23.91423
-0;0;0,0.005811271;0.1994538;0.01358011,0.01408944;0.4991708;0.02210555,0.1264896;0.3737052;-0.0009223204,0.1735073;0.180075;0.01630237,0.2003558;-0.06637608;-0.01596246,-0.09649184;0.3698079;-0.0216375,-0.2104786;0.334041;-0.1820362,-0.3365369;0.3241646;-0.3977021,0.07510523;0.004671317;-0.02715478,0.08692726;-0.2942873;-0.005154872,0.07715265;-0.5870624;0.05955376,0.09011491;-0.6164609;0.0001580678,-0.06516685;0.00324031;-0.04629019,-0.09735939;-0.292315;-0.00615662,-0.09400912;-0.5865511;0.05227232,-0.09296622;-0.6161564;-0.008241378,0.01144828;0.3992063;0.02177525,0;0;0,0.01100191;0.1991676;0.01453345,0.02706283;0.4985226;0.02450761,0.1339099;0.3713248;-0.008977439,0.1741196;0.175945;0.005511178,0.2132022;-0.06905027;-0.02530899,-0.09220365;0.3729182;-0.00374374,-0.2624523;0.3530765;-0.1068054,-0.4511442;0.3613728;-0.2705935,0.07179345;0.002370919;-0.03521476,0.08598397;-0.295775;-0.005087538,0.07496494;-0.5892261;0.05627219,0.08955813;-0.6177327;-0.003925476,-0.07072719;0.005250822;-0.03701475,-0.1026044;-0.2918026;-0.009754688,-0.1008306;-0.585983;0.04902252,-0.1030236;-0.6137963;-0.01374909,0.02173661;0.3986676;0.02372594,23.93606
-0;0;0,0.005811271;0.1994538;0.01358011,0.01408944;0.4991708;0.02210555,0.1264896;0.3737052;-0.0009223204,0.1735073;0.180075;0.01630237,0.2003558;-0.06637608;-0.01596246,-0.09649184;0.3698079;-0.0216375,-0.2104786;0.334041;-0.1820362,-0.3365369;0.3241646;-0.3977021,0.07510523;0.004671317;-0.02715478,0.08692726;-0.2942873;-0.005154872,0.07715265;-0.5870624;0.05955376,0.09011491;-0.6164609;0.0001580678,-0.06516685;0.00324031;-0.04629019,-0.09735939;-0.292315;-0.00615662,-0.09400912;-0.5865511;0.05227232,-0.09296622;-0.6161564;-0.008241378,0.01144828;0.3992063;0.02177525,0;0;0,0.01064625;0.1991814;0.01460967,0.02576957;0.4985759;0.02485695,0.133377;0.3717251;-0.007733583,0.1737242;0.1763676;0.006672566,0.2129716;-0.06868157;-0.02350307,-0.09281284;0.3727443;-0.004495222,-0.2604212;0.352801;-0.1117784,-0.4446947;0.3615835;-0.2804976,0.07215159;0.002444977;-0.03446984,0.08594017;-0.2957608;-0.004751064,0.0748798;-0.5892818;0.05626616,0.08945709;-0.617744;-0.003993072,-0.07046933;0.005190432;-0.03751175,-0.1023572;-0.291792;-0.009500967,-0.1008122;-0.5860541;0.04887237,-0.1030495;-0.613773;-0.0140145,0.02083225;0.3987017;0.02398297,23.94744
-0;0;0,0.005811271;0.1994538;0.01358011,0.01408944;0.4991708;0.02210555,0.1264896;0.3737052;-0.0009223204,0.1735073;0.180075;0.01630237,0.2003558;-0.06637608;-0.01596246,-0.09649184;0.3698079;-0.0216375,-0.2104786;0.334041;-0.1820362,-0.3365369;0.3241646;-0.3977021,0.07510523;0.004671317;-0.02715478,0.08692726;-0.2942873;-0.005154872,0.07715265;-0.5870624;0.05955376,0.09011491;-0.6164609;0.0001580678,-0.06516685;0.00324031;-0.04629019,-0.09735939;-0.292315;-0.00615662,-0.09400912;-0.5865511;0.05227232,-0.09296622;-0.6161564;-0.008241378,0.01144828;0.3992063;0.02177525,0;0;0,0.01064625;0.1991814;0.01460967,0.02576957;0.4985759;0.02485695,0.133377;0.3717251;-0.007733583,0.1737242;0.1763676;0.006672566,0.2129716;-0.06868157;-0.02350307,-0.09281284;0.3727443;-0.004495222,-0.2604212;0.352801;-0.1117784,-0.4446947;0.3615835;-0.2804976,0.07215159;0.002444977;-0.03446984,0.08594017;-0.2957608;-0.004751064,0.0748798;-0.5892818;0.05626616,0.08945709;-0.617744;-0.003993072,-0.07046933;0.005190432;-0.03751175,-0.1023572;-0.291792;-0.009500967,-0.1008122;-0.5860541;0.04887237,-0.1030495;-0.613773;-0.0140145,0.02083225;0.3987017;0.02398297,23.95873
-0;0;0,0.005626856;0.199446;0.01377048,0.01384911;0.4991632;0.02233441,0.1263275;0.3736699;-0.000307532,0.173522;0.1801134;0.01725798,0.2002126;-0.06642511;-0.01446556,-0.09632997;0.3695909;-0.02224028,-0.2090562;0.333495;-0.1834541,-0.3331006;0.324213;-0.4003108,0.07523153;0.004774247;-0.02678476,0.08689068;-0.2942049;-0.004977925,0.07714806;-0.5869589;0.05983091,0.08977176;-0.6158406;-0.0003214702,-0.06491411;0.003110922;-0.04665276,-0.09739135;-0.292329;-0.005903292,-0.09385452;-0.5864757;0.05296246,-0.09278724;-0.6157842;-0.007939309,0.0112161;0.3991985;0.02200039,0;0;0,0.01064625;0.1991814;0.01460967,0.02576957;0.4985759;0.02485695,0.133377;0.3717251;-0.007733583,0.1737242;0.1763676;0.006672566,0.2129716;-0.06868157;-0.02350307,-0.09281284;0.3727443;-0.004495222,-0.2604212;0.352801;-0.1117784,-0.4446947;0.3615835;-0.2804976,0.07215159;0.002444977;-0.03446984,0.08594017;-0.2957608;-0.004751064,0.0748798;-0.5892818;0.05626616,0.08945709;-0.617744;-0.003993072,-0.07046933;0.005190432;-0.03751175,-0.1023572;-0.291792;-0.009500967,-0.1008122;-0.5860541;0.04887237,-0.1030495;-0.613773;-0.0140145,0.02083225;0.3987017;0.02398297,23.98084
-0;0;0,0.005520717;0.1994449;0.01382891,0.01352036;0.499166;0.02247184,0.1262831;0.373689;0.0008028913,0.173632;0.1801596;0.01825178,0.2001525;-0.06644678;-0.01308425,-0.09641343;0.3696516;-0.02254729,-0.2084258;0.3329791;-0.1841281,-0.3308832;0.3241228;-0.4019026,0.07539338;0.004836597;-0.02631438,0.08684605;-0.2941768;-0.004871493,0.07722794;-0.5868605;0.06027275,0.08904681;-0.6140824;-0.002153967,-0.06473359;0.003111113;-0.04690291,-0.09737119;-0.2922578;-0.005768761,-0.09385216;-0.586432;0.05296049,-0.09311973;-0.6153067;-0.008506935,0.01097771;0.399199;0.02210793,0;0;0,0.01045458;0.1991788;0.01478154,0.02517426;0.4985812;0.02538466,0.1332545;0.3720889;-0.006454583,0.1742216;0.1768614;0.007963944,0.2129205;-0.06822646;-0.02260314,-0.09301379;0.37286;-0.005171115,-0.2581459;0.3520468;-0.1160683,-0.4380397;0.3605573;-0.2894632,0.07236416;0.002505275;-0.03401694,0.08585293;-0.2957232;-0.004388953,0.07470684;-0.5893263;0.05621634,0.08843449;-0.6170164;-0.005231176,-0.07025789;0.005135126;-0.03791383,-0.1022158;-0.2917994;-0.009477831,-0.1006332;-0.5860748;0.04882702,-0.1025095;-0.614773;-0.01284211,0.02038104;0.3987011;0.0243898,24.0036
-0;0;0,0.005520717;0.1994449;0.01382891,0.01352036;0.499166;0.02247184,0.1262831;0.373689;0.0008028913,0.173632;0.1801596;0.01825178,0.2001525;-0.06644678;-0.01308425,-0.09641343;0.3696516;-0.02254729,-0.2084258;0.3329791;-0.1841281,-0.3308832;0.3241228;-0.4019026,0.07539338;0.004836597;-0.02631438,0.08684605;-0.2941768;-0.004871493,0.07722794;-0.5868605;0.06027275,0.08904681;-0.6140824;-0.002153967,-0.06473359;0.003111113;-0.04690291,-0.09737119;-0.2922578;-0.005768761,-0.09385216;-0.586432;0.05296049,-0.09311973;-0.6153067;-0.008506935,0.01097771;0.399199;0.02210793,0;0;0,0.01045458;0.1991788;0.01478154,0.02517426;0.4985812;0.02538466,0.1332545;0.3720889;-0.006454583,0.1742216;0.1768614;0.007963944,0.2129205;-0.06822646;-0.02260314,-0.09301379;0.37286;-0.005171115,-0.2581459;0.3520468;-0.1160683,-0.4380397;0.3605573;-0.2894632,0.07236416;0.002505275;-0.03401694,0.08585293;-0.2957232;-0.004388953,0.07470684;-0.5893263;0.05621634,0.08843449;-0.6170164;-0.005231176,-0.07025789;0.005135126;-0.03791383,-0.1022158;-0.2917994;-0.009477831,-0.1006332;-0.5860748;0.04882702,-0.1025095;-0.614773;-0.01284211,0.02038104;0.3987011;0.0243898,24.01486
-0;0;0,0.005409916;0.1994349;0.01401677,0.01335607;0.4991557;0.02270945,0.1262254;0.3737606;0.001436347,0.1738025;0.1802947;0.0189683,0.1999778;-0.06647806;-0.01133098,-0.09628552;0.3698919;-0.0231464,-0.2066008;0.3322707;-0.1856739,-0.3286355;0.3236054;-0.4036933,0.07550161;0.004899506;-0.02599042,0.08699634;-0.2941229;-0.004695784,0.07737072;-0.5868143;0.06041274,0.08929187;-0.6144478;-0.001481663,-0.06458581;0.00305984;-0.04710956,-0.09726481;-0.2922414;-0.005525175,-0.09382443;-0.5863656;0.05345919,-0.09289873;-0.6152725;-0.007964261,0.01082741;0.3991883;0.02233482,0;0;0,0.01045458;0.1991788;0.01478154,0.02517426;0.4985812;0.02538466,0.1332545;0.3720889;-0.006454583,0.1742216;0.1768614;0.007963944,0.2129205;-0.06822646;-0.02260314,-0.09301379;0.37286;-0.005171115,-0.2581459;0.3520468;-0.1160683,-0.4380397;0.3605573;-0.2894632,0.07236416;0.002505275;-0.03401694,0.08585293;-0.2957232;-0.004388953,0.07470684;-0.5893263;0.05621634,0.08843449;-0.6170164;-0.005231176,-0.07025789;0.005135126;-0.03791383,-0.1022158;-0.2917994;-0.009477831,-0.1006332;-0.5860748;0.04882702,-0.1025095;-0.614773;-0.01284211,0.02038104;0.3987011;0.0243898,24.0371
-0;0;0,0.005198674;0.1994262;0.01421783,0.01306649;0.4991468;0.02297343,0.1260155;0.3737824;0.002010891,0.1735018;0.1803166;0.0197882,0.1999382;-0.06642358;-0.01055019,-0.09627078;0.3697098;-0.02345398,-0.2058367;0.3316912;-0.1863954,-0.3241954;0.3222993;-0.4064022,0.07561517;0.004926411;-0.02565301,0.08692573;-0.2941027;-0.004353939,0.07730606;-0.5868317;0.06058604,0.08908005;-0.6142638;-0.001588285,-0.06449744;0.003057281;-0.04723063,-0.09747879;-0.2921371;-0.005129706,-0.09401125;-0.5862334;0.05399225,-0.09325151;-0.6160488;-0.006248247,0.01055349;0.3991791;0.0225909,0;0;0,0.01020305;0.1991851;0.01487319,0.02464007;0.4985979;0.02557004,0.1331252;0.372321;-0.005315466,0.173712;0.1770137;0.009099366,0.2126504;-0.06801213;-0.02165985,-0.09322516;0.372849;-0.005877277,-0.2559409;0.3507999;-0.1200589,-0.4318703;0.3608539;-0.297394,0.0727722;0.002587899;-0.03312867,0.08579435;-0.2957282;-0.004181584,0.07460012;-0.5893812;0.05617224,0.08777186;-0.6168109;-0.005724065,-0.06992856;0.005054969;-0.03852848,-0.1022389;-0.2917976;-0.009639412,-0.1007293;-0.5860749;0.04865817,-0.1028023;-0.6144422;-0.01342463,0.01993614;0.3987138;0.0245453,24.05889
-0;0;0,0.005198674;0.1994262;0.01421783,0.01306649;0.4991468;0.02297343,0.1260155;0.3737824;0.002010891,0.1735018;0.1803166;0.0197882,0.1999382;-0.06642358;-0.01055019,-0.09627078;0.3697098;-0.02345398,-0.2058367;0.3316912;-0.1863954,-0.3241954;0.3222993;-0.4064022,0.07561517;0.004926411;-0.02565301,0.08692573;-0.2941027;-0.004353939,0.07730606;-0.5868317;0.06058604,0.08908005;-0.6142638;-0.001588285,-0.06449744;0.003057281;-0.04723063,-0.09747879;-0.2921371;-0.005129706,-0.09401125;-0.5862334;0.05399225,-0.09325151;-0.6160488;-0.006248247,0.01055349;0.3991791;0.0225909,0;0;0,0.01020305;0.1991851;0.01487319,0.02464007;0.4985979;0.02557004,0.1331252;0.372321;-0.005315466,0.173712;0.1770137;0.009099366,0.2126504;-0.06801213;-0.02165985,-0.09322516;0.372849;-0.005877277,-0.2559409;0.3507999;-0.1200589,-0.4318703;0.3608539;-0.297394,0.0727722;0.002587899;-0.03312867,0.08579435;-0.2957282;-0.004181584,0.07460012;-0.5893812;0.05617224,0.08777186;-0.6168109;-0.005724065,-0.06992856;0.005054969;-0.03852848,-0.1022389;-0.2917976;-0.009639412,-0.1007293;-0.5860749;0.04865817,-0.1028023;-0.6144422;-0.01342463,0.01993614;0.3987138;0.0245453,24.07045
-0;0;0,0.005024745;0.1994208;0.01435561,0.01274819;0.499144;0.02313421,0.125917;0.3741886;0.002672775,0.1734864;0.1807626;0.02065966,0.1994407;-0.06601256;-0.009810232,-0.0962316;0.3697946;-0.02406525,-0.2041018;0.3307987;-0.1879046,-0.3193458;0.3216413;-0.4095687,0.07573247;0.0049576;-0.02529851,0.08690669;-0.2940996;-0.004324213,0.0774199;-0.5867982;0.06077231,0.08916282;-0.615019;-0.0004126467,-0.06430066;0.003001882;-0.04750172,-0.09761298;-0.2920741;-0.004834902,-0.09434012;-0.5862035;0.0541333,-0.09349498;-0.6151353;-0.007259328,0.0102785;0.3991752;0.02275758,0;0;0,0.01020305;0.1991851;0.01487319,0.02464007;0.4985979;0.02557004,0.1331252;0.372321;-0.005315466,0.173712;0.1770137;0.009099366,0.2126504;-0.06801213;-0.02165985,-0.09322516;0.372849;-0.005877277,-0.2559409;0.3507999;-0.1200589,-0.4318703;0.3608539;-0.297394,0.0727722;0.002587899;-0.03312867,0.08579435;-0.2957282;-0.004181584,0.07460012;-0.5893812;0.05617224,0.08777186;-0.6168109;-0.005724065,-0.06992856;0.005054969;-0.03852848,-0.1022389;-0.2917976;-0.009639412,-0.1007293;-0.5860749;0.04865817,-0.1028023;-0.6144422;-0.01342463,0.01993614;0.3987138;0.0245453,24.09234
-0;0;0,0.005024745;0.1994208;0.01435561,0.01274819;0.499144;0.02313421,0.125917;0.3741886;0.002672775,0.1734864;0.1807626;0.02065966,0.1994407;-0.06601256;-0.009810232,-0.0962316;0.3697946;-0.02406525,-0.2041018;0.3307987;-0.1879046,-0.3193458;0.3216413;-0.4095687,0.07573247;0.0049576;-0.02529851,0.08690669;-0.2940996;-0.004324213,0.0774199;-0.5867982;0.06077231,0.08916282;-0.615019;-0.0004126467,-0.06430066;0.003001882;-0.04750172,-0.09761298;-0.2920741;-0.004834902,-0.09434012;-0.5862035;0.0541333,-0.09349498;-0.6151353;-0.007259328,0.0102785;0.3991752;0.02275758,0;0;0,0.01004239;0.1991899;0.01491759,0.02415879;0.4986148;0.02569353,0.1330985;0.3724963;-0.004061297,0.1739045;0.1772271;0.01024988,0.2125838;-0.06795216;-0.01960049,-0.09334503;0.3728646;-0.006660767,-0.2533379;0.3495427;-0.1243823,-0.4251711;0.3616051;-0.3055669,0.07291541;0.002546221;-0.03281553,0.08575489;-0.295782;-0.003911497,0.07451215;-0.5894804;0.05621212,0.08757758;-0.6168597;-0.005769584,-0.06972414;0.005098843;-0.03889146,-0.1020425;-0.2917149;-0.009614149,-0.1006124;-0.5860697;0.04829271,-0.1024895;-0.6146018;-0.01358771,0.0195746;0.3987254;0.02465017,24.10515
-0;0;0,0.004766031;0.1994195;0.01446129,0.01235683;0.4991445;0.02331512,0.1256824;0.3742719;0.003247416,0.1730107;0.1808206;0.02159474,0.1993361;-0.06588955;-0.009082172,-0.09626421;0.369987;-0.02470989,-0.2029229;0.3302907;-0.1891731,-0.317776;0.3215082;-0.4110551,0.07588293;0.00502485;-0.02483005,0.08669273;-0.2940698;-0.004201893,0.07716466;-0.5867445;0.06099566,0.08896008;-0.6150492;-7.183105E-05,-0.06412088;0.00294592;-0.0477476,-0.0978702;-0.2920319;-0.004746292,-0.09454108;-0.5861622;0.05421349,-0.09334909;-0.6150704;-0.007203747,0.009951022;0.3991743;0.02289714,0;0;0,0.01004239;0.1991899;0.01491759,0.02415879;0.4986148;0.02569353,0.1330985;0.3724963;-0.004061297,0.1739045;0.1772271;0.01024988,0.2125838;-0.06795216;-0.01960049,-0.09334503;0.3728646;-0.006660767,-0.2533379;0.3495427;-0.1243823,-0.4251711;0.3616051;-0.3055669,0.07291541;0.002546221;-0.03281553,0.08575489;-0.295782;-0.003911497,0.07451215;-0.5894804;0.05621212,0.08757758;-0.6168597;-0.005769584,-0.06972414;0.005098843;-0.03889146,-0.1020425;-0.2917149;-0.009614149,-0.1006124;-0.5860697;0.04829271,-0.1024895;-0.6146018;-0.01358771,0.0195746;0.3987254;0.02465017,24.12622
-0;0;0,0.004766031;0.1994195;0.01446129,0.01235683;0.4991445;0.02331512,0.1256824;0.3742719;0.003247416,0.1730107;0.1808206;0.02159474,0.1993361;-0.06588955;-0.009082172,-0.09626421;0.369987;-0.02470989,-0.2029229;0.3302907;-0.1891731,-0.317776;0.3215082;-0.4110551,0.07588293;0.00502485;-0.02483005,0.08669273;-0.2940698;-0.004201893,0.07716466;-0.5867445;0.06099566,0.08896008;-0.6150492;-7.183105E-05,-0.06412088;0.00294592;-0.0477476,-0.0978702;-0.2920319;-0.004746292,-0.09454108;-0.5861622;0.05421349,-0.09334909;-0.6150704;-0.007203747,0.009951022;0.3991743;0.02289714,0;0;0,0.01004239;0.1991899;0.01491759,0.02415879;0.4986148;0.02569353,0.1330985;0.3724963;-0.004061297,0.1739045;0.1772271;0.01024988,0.2125838;-0.06795216;-0.01960049,-0.09334503;0.3728646;-0.006660767,-0.2533379;0.3495427;-0.1243823,-0.4251711;0.3616051;-0.3055669,0.07291541;0.002546221;-0.03281553,0.08575489;-0.295782;-0.003911497,0.07451215;-0.5894804;0.05621212,0.08757758;-0.6168597;-0.005769584,-0.06972414;0.005098843;-0.03889146,-0.1020425;-0.2917149;-0.009614149,-0.1006124;-0.5860697;0.04829271,-0.1024895;-0.6146018;-0.01358771,0.0195746;0.3987254;0.02465017,24.1488
-0;0;0,0.00471609;0.1994183;0.01449442,0.01226655;0.499144;0.02335388,0.1256752;0.3742979;0.003669295,0.172912;0.1808257;0.0220331,0.1993003;-0.06588978;-0.008546703,-0.0960152;0.3700388;-0.02542265,-0.2005494;0.3297736;-0.191107,-0.3104079;0.3310004;-0.4156724,0.07605563;0.005058689;-0.0242889,0.0867515;-0.2940713;-0.004118394,0.07722768;-0.5867349;0.06112996,0.08901307;-0.6150624;8.978322E-05,-0.06380101;0.002879758;-0.0481782,-0.09773956;-0.2919951;-0.004623655,-0.0944124;-0.5861191;0.05436829,-0.09344795;-0.6153057;-0.006693553,0.009873894;0.3991735;0.02293714,0;0;0,0.009890773;0.1991832;0.01510706,0.02383019;0.4986109;0.02602974,0.1329947;0.3724148;-0.002971774,0.1738743;0.1771603;0.01132965,0.2121974;-0.06821136;-0.01737743,-0.09343131;0.3728946;-0.007100604,-0.2510945;0.3487083;-0.1277543,-0.4195008;0.3613858;-0.3120873,0.07330291;0.002549055;-0.03194034,0.08577412;-0.2958733;-0.003858609,0.07450267;-0.5895953;0.05614444,0.08740171;-0.6167011;-0.006211873,-0.0694588;0.005116756;-0.03936107,-0.1017993;-0.2916325;-0.009461612,-0.1004656;-0.5860566;0.04809436,-0.1017579;-0.6149936;-0.01328379,0.01929022;0.3987198;0.02494487,24.16027
-0;0;0,0.00471609;0.1994183;0.01449442,0.01226655;0.499144;0.02335388,0.1256752;0.3742979;0.003669295,0.172912;0.1808257;0.0220331,0.1993003;-0.06588978;-0.008546703,-0.0960152;0.3700388;-0.02542265,-0.2005494;0.3297736;-0.191107,-0.3104079;0.3310004;-0.4156724,0.07605563;0.005058689;-0.0242889,0.0867515;-0.2940713;-0.004118394,0.07722768;-0.5867349;0.06112996,0.08901307;-0.6150624;8.978322E-05,-0.06380101;0.002879758;-0.0481782,-0.09773956;-0.2919951;-0.004623655,-0.0944124;-0.5861191;0.05436829,-0.09344795;-0.6153057;-0.006693553,0.009873894;0.3991735;0.02293714,0;0;0,0.009890773;0.1991832;0.01510706,0.02383019;0.4986109;0.02602974,0.1329947;0.3724148;-0.002971774,0.1738743;0.1771603;0.01132965,0.2121974;-0.06821136;-0.01737743,-0.09343131;0.3728946;-0.007100604,-0.2510945;0.3487083;-0.1277543,-0.4195008;0.3613858;-0.3120873,0.07330291;0.002549055;-0.03194034,0.08577412;-0.2958733;-0.003858609,0.07450267;-0.5895953;0.05614444,0.08740171;-0.6167011;-0.006211873,-0.0694588;0.005116756;-0.03936107,-0.1017993;-0.2916325;-0.009461612,-0.1004656;-0.5860566;0.04809436,-0.1017579;-0.6149936;-0.01328379,0.01929022;0.3987198;0.02494487,24.17117
-0;0;0,0.004506894;0.1994155;0.01459966,0.01194462;0.4991426;0.02349257,0.1255101;0.3745675;0.004177017,0.1729816;0.1811609;0.02262527,0.1990611;-0.06557837;-0.008027365,-0.09615164;0.3700512;-0.02561503,-0.1982077;0.3294542;-0.1927571,-0.297899;0.3188943;-0.421777,0.07615087;0.005077505;-0.02398464,0.08660364;-0.2940712;-0.003964435,0.07707063;-0.5867447;0.06123782,0.08901006;-0.6153503;0.0005863011,-0.06369307;0.002886719;-0.04832039,-0.09796505;-0.2919064;-0.004474245,-0.09483882;-0.5860499;0.05443091,-0.09409141;-0.6152482;-0.006618816,0.009589827;0.3991712;0.02307548,0;0;0,0.009890773;0.1991832;0.01510706,0.02383019;0.4986109;0.02602974,0.1329947;0.3724148;-0.002971774,0.1738743;0.1771603;0.01132965,0.2121974;-0.06821136;-0.01737743,-0.09343131;0.3728946;-0.007100604,-0.2510945;0.3487083;-0.1277543,-0.4195008;0.3613858;-0.3120873,0.07330291;0.002549055;-0.03194034,0.08577412;-0.2958733;-0.003858609,0.07450267;-0.5895953;0.05614444,0.08740171;-0.6167011;-0.006211873,-0.0694588;0.005116756;-0.03936107,-0.1017993;-0.2916325;-0.009461612,-0.1004656;-0.5860566;0.04809436,-0.1017579;-0.6149936;-0.01328379,0.01929022;0.3987198;0.02494487,24.19305
-0;0;0,0.004506894;0.1994155;0.01459966,0.01194462;0.4991426;0.02349257,0.1255101;0.3745675;0.004177017,0.1729816;0.1811609;0.02262527,0.1990611;-0.06557837;-0.008027365,-0.09615164;0.3700512;-0.02561503,-0.1982077;0.3294542;-0.1927571,-0.297899;0.3188943;-0.421777,0.07615087;0.005077505;-0.02398464,0.08660364;-0.2940712;-0.003964435,0.07707063;-0.5867447;0.06123782,0.08901006;-0.6153503;0.0005863011,-0.06369307;0.002886719;-0.04832039,-0.09796505;-0.2919064;-0.004474245,-0.09483882;-0.5860499;0.05443091,-0.09409141;-0.6152482;-0.006618816,0.009589827;0.3991712;0.02307548,0;0;0,0.009735784;0.1991903;0.01511378,0.02336156;0.4986326;0.026019,0.1330136;0.3727285;-0.001698552,0.1743322;0.1775897;0.01291765,0.2123325;-0.06776895;-0.01632481,-0.0936152;0.3729292;-0.007697221,-0.2486729;0.3477895;-0.1314919,-0.412173;0.3623805;-0.3200518,0.07350313;0.002501886;-0.03148064,0.0858734;-0.2959666;-0.00384783,0.07464465;-0.5896459;0.05637157,0.08741922;-0.6169904;-0.005714189,-0.06923633;0.005117784;-0.03975097,-0.1014864;-0.2915602;-0.009056805,-0.1002658;-0.5860744;0.04803863,-0.1019683;-0.6144989;-0.013983,0.01893737;0.3987362;0.02495106,24.21564
-0;0;0,0.004275844;0.1994156;0.01466755,0.01142505;0.4991512;0.02348006,0.1251878;0.3746349;0.004591247,0.1726316;0.18122;0.02302386,0.198703;-0.06553014;-0.007548396,-0.09649582;0.3700896;-0.02571319,-0.1974398;0.3290963;-0.1934328,-0.2985923;0.3189352;-0.4218292,0.07631507;0.005072575;-0.02345804,0.08649414;-0.2941081;-0.003777126,0.07670256;-0.5867072;0.06171982,0.08916637;-0.6151016;0.0009007044,-0.06338569;0.002940801;-0.04871967,-0.0980648;-0.2917095;-0.004238419,-0.09482232;-0.5858388;0.05473123,-0.0947267;-0.6150438;-0.006314248,0.00919329;0.3991768;0.02311042,0;0;0,0.009735784;0.1991903;0.01511378,0.02336156;0.4986326;0.026019,0.1330136;0.3727285;-0.001698552,0.1743322;0.1775897;0.01291765,0.2123325;-0.06776895;-0.01632481,-0.0936152;0.3729292;-0.007697221,-0.2486729;0.3477895;-0.1314919,-0.412173;0.3623805;-0.3200518,0.07350313;0.002501886;-0.03148064,0.0858734;-0.2959666;-0.00384783,0.07464465;-0.5896459;0.05637157,0.08741922;-0.6169904;-0.005714189,-0.06923633;0.005117784;-0.03975097,-0.1014864;-0.2915602;-0.009056805,-0.1002658;-0.5860744;0.04803863,-0.1019683;-0.6144989;-0.013983,0.01893737;0.3987362;0.02495106,24.22669
-0;0;0,0.004275844;0.1994156;0.01466755,0.01142505;0.4991512;0.02348006,0.1251878;0.3746349;0.004591247,0.1726316;0.18122;0.02302386,0.198703;-0.06553014;-0.007548396,-0.09649582;0.3700896;-0.02571319,-0.1974398;0.3290963;-0.1934328,-0.2985923;0.3189352;-0.4218292,0.07631507;0.005072575;-0.02345804,0.08649414;-0.2941081;-0.003777126,0.07670256;-0.5867072;0.06171982,0.08916637;-0.6151016;0.0009007044,-0.06338569;0.002940801;-0.04871967,-0.0980648;-0.2917095;-0.004238419,-0.09482232;-0.5858388;0.05473123,-0.0947267;-0.6150438;-0.006314248,0.00919329;0.3991768;0.02311042,0;0;0,0.009735784;0.1991903;0.01511378,0.02336156;0.4986326;0.026019,0.1330136;0.3727285;-0.001698552,0.1743322;0.1775897;0.01291765,0.2123325;-0.06776895;-0.01632481,-0.0936152;0.3729292;-0.007697221,-0.2486729;0.3477895;-0.1314919,-0.412173;0.3623805;-0.3200518,0.07350313;0.002501886;-0.03148064,0.0858734;-0.2959666;-0.00384783,0.07464465;-0.5896459;0.05637157,0.08741922;-0.6169904;-0.005714189,-0.06923633;0.005117784;-0.03975097,-0.1014864;-0.2915602;-0.009056805,-0.1002658;-0.5860744;0.04803863,-0.1019683;-0.6144989;-0.013983,0.01893737;0.3987362;0.02495106,24.2493
-0;0;0,0.004055534;0.1994103;0.01480085,0.01100894;0.4991466;0.0237267,0.1249039;0.3748158;0.005150821,0.1724865;0.1814462;0.02370085,0.1982134;-0.06530584;-0.007146236,-0.09652364;0.3699825;-0.02617268,-0.1833041;0.3480024;-0.2050191,-0.3063936;0.3095147;-0.4191865,0.07640994;0.005139823;-0.02313229,0.08629306;-0.2940486;-0.003418542,0.07650129;-0.5866631;0.06200971,0.0883742;-0.6143223;0.0001381598,-0.06336409;0.0028965;-0.04875042,-0.09840043;-0.2916625;-0.003945854,-0.09506401;-0.5858128;0.05491426,-0.09540049;-0.6144658;-0.006839994,0.008817481;0.3991714;0.02333748,0;0;0,0.009583307;0.1991962;0.01513417,0.02285722;0.498652;0.02609038,0.1328666;0.3732309;-0.001166122,0.174116;0.1780625;0.01324796,0.2117964;-0.06748851;-0.01476843,-0.0938351;0.373225;-0.008348133,-0.2463439;0.3473385;-0.1351195,-0.4083298;0.3619309;-0.3249816,0.07369123;0.002484843;-0.03103914,0.08590618;-0.2960111;-0.003634835,0.07456729;-0.5897452;0.05629624,0.08719929;-0.6175756;-0.005208723,-0.06885341;0.005244004;-0.04039441,-0.1012236;-0.2913455;-0.008980636,-0.100069;-0.5858945;0.04793657,-0.1015999;-0.6147886;-0.01349119,0.01857185;0.3987496;0.0250161,24.27182
-0;0;0,0.004055534;0.1994103;0.01480085,0.01100894;0.4991466;0.0237267,0.1249039;0.3748158;0.005150821,0.1724865;0.1814462;0.02370085,0.1982134;-0.06530584;-0.007146236,-0.09652364;0.3699825;-0.02617268,-0.1833041;0.3480024;-0.2050191,-0.3063936;0.3095147;-0.4191865,0.07640994;0.005139823;-0.02313229,0.08629306;-0.2940486;-0.003418542,0.07650129;-0.5866631;0.06200971,0.0883742;-0.6143223;0.0001381598,-0.06336409;0.0028965;-0.04875042,-0.09840043;-0.2916625;-0.003945854,-0.09506401;-0.5858128;0.05491426,-0.09540049;-0.6144658;-0.006839994,0.008817481;0.3991714;0.02333748,0;0;0,0.009583307;0.1991962;0.01513417,0.02285722;0.498652;0.02609038,0.1328666;0.3732309;-0.001166122,0.174116;0.1780625;0.01324796,0.2117964;-0.06748851;-0.01476843,-0.0938351;0.373225;-0.008348133,-0.2463439;0.3473385;-0.1351195,-0.4083298;0.3619309;-0.3249816,0.07369123;0.002484843;-0.03103914,0.08590618;-0.2960111;-0.003634835,0.07456729;-0.5897452;0.05629624,0.08719929;-0.6175756;-0.005208723,-0.06885341;0.005244004;-0.04039441,-0.1012236;-0.2913455;-0.008980636,-0.100069;-0.5858945;0.04793657,-0.1015999;-0.6147886;-0.01349119,0.01857185;0.3987496;0.0250161,24.28306
-0;0;0,0.004015934;0.1994139;0.01476478,0.0108424;0.4991544;0.0236402,0.1248679;0.3749779;0.005521098,0.172599;0.1816516;0.02414113,0.1983029;-0.06510453;-0.006692611,-0.09659813;0.3700895;-0.02642744,-0.1834839;0.3475501;-0.205153,-0.3042064;0.3081469;-0.420498,0.07647462;0.00520791;-0.02290218,0.0864429;-0.2939937;-0.003432615,0.07655028;-0.5865582;0.06220354,0.0903673;-0.6153203;0.002156649,-0.06325223;0.002815454;-0.0489002,-0.09825484;-0.2917058;-0.003821917,-0.09493875;-0.5858165;0.05523663,-0.09520251;-0.6143969;-0.006610401,0.008681626;0.3991784;0.02327175,0;0;0,0.009583307;0.1991962;0.01513417,0.02285722;0.498652;0.02609038,0.1328666;0.3732309;-0.001166122,0.174116;0.1780625;0.01324796,0.2117964;-0.06748851;-0.01476843,-0.0938351;0.373225;-0.008348133,-0.2463439;0.3473385;-0.1351195,-0.4083298;0.3619309;-0.3249816,0.07369123;0.002484843;-0.03103914,0.08590618;-0.2960111;-0.003634835,0.07456729;-0.5897452;0.05629624,0.08719929;-0.6175756;-0.005208723,-0.06885341;0.005244004;-0.04039441,-0.1012236;-0.2913455;-0.008980636,-0.100069;-0.5858945;0.04793657,-0.1015999;-0.6147886;-0.01349119,0.01857185;0.3987496;0.0250161,24.30503
-0;0;0,0.003901185;0.1994112;0.01483142,0.01057089;0.4991517;0.023814,0.1246856;0.3748936;0.006184565,0.1722818;0.1815117;0.02457077,0.197908;-0.06524774;-0.00630112,-0.09667618;0.370033;-0.02659754,-0.1880305;0.320038;-0.1973456,-0.2971624;0.3130533;-0.4221598,0.07657512;0.00527023;-0.0225494,0.08633453;-0.2939563;-0.003360504,0.07646394;-0.5865104;0.06232592,0.09014861;-0.61546;0.002495442,-0.06303569;0.00277388;-0.04918136,-0.09843869;-0.2916179;-0.003572997,-0.09516229;-0.5857353;0.05545428,-0.09537582;-0.6144019;-0.006283291,0.008438513;0.3991752;0.0234188,0;0;0,0.00933445;0.1992107;0.01509863,0.02226471;0.4986835;0.0259863,0.1326804;0.3734827;-0.0002091527,0.1740749;0.1783635;0.01445353,0.2115841;-0.06728965;-0.01288828,-0.09415528;0.3732324;-0.008892819,-0.2446614;0.3472525;-0.1380166,-0.4034436;0.3612921;-0.3306071,0.07392905;0.002482911;-0.03046851,0.08595468;-0.2960657;-0.003558494,0.07461167;-0.5898764;0.05599481,0.08877441;-0.617779;-0.005083937,-0.06865914;0.005204473;-0.04072881,-0.1011408;-0.2913408;-0.009013858,-0.100149;-0.5857725;0.04851032,-0.09529941;-0.5531539;-0.04984805,0.01810529;0.3987755;0.02494674,24.32714
-0;0;0,0.003901185;0.1994112;0.01483142,0.01057089;0.4991517;0.023814,0.1246856;0.3748936;0.006184565,0.1722818;0.1815117;0.02457077,0.197908;-0.06524774;-0.00630112,-0.09667618;0.370033;-0.02659754,-0.1880305;0.320038;-0.1973456,-0.2971624;0.3130533;-0.4221598,0.07657512;0.00527023;-0.0225494,0.08633453;-0.2939563;-0.003360504,0.07646394;-0.5865104;0.06232592,0.09014861;-0.61546;0.002495442,-0.06303569;0.00277388;-0.04918136,-0.09843869;-0.2916179;-0.003572997,-0.09516229;-0.5857353;0.05545428,-0.09537582;-0.6144019;-0.006283291,0.008438513;0.3991752;0.0234188,0;0;0,0.00933445;0.1992107;0.01509863,0.02226471;0.4986835;0.0259863,0.1326804;0.3734827;-0.0002091527,0.1740749;0.1783635;0.01445353,0.2115841;-0.06728965;-0.01288828,-0.09415528;0.3732324;-0.008892819,-0.2446614;0.3472525;-0.1380166,-0.4034436;0.3612921;-0.3306071,0.07392905;0.002482911;-0.03046851,0.08595468;-0.2960657;-0.003558494,0.07461167;-0.5898764;0.05599481,0.08877441;-0.617779;-0.005083937,-0.06865914;0.005204473;-0.04072881,-0.1011408;-0.2913408;-0.009013858,-0.100149;-0.5857725;0.04851032,-0.09529941;-0.5531539;-0.04984805,0.01810529;0.3987755;0.02494674,24.3388
-0;0;0,0.003749724;0.1994111;0.01487181,0.01021079;0.4991548;0.02388777,0.1244658;0.3751415;0.00649075,0.1721879;0.1818316;0.02530197,0.1975593;-0.06490594;-0.005953277,-0.09667211;0.3700356;-0.02716933,-0.178926;0.3453127;-0.2077879,-0.2976119;0.3073424;-0.424518,0.07667635;0.005338209;-0.0221865,0.08643296;-0.2939027;-0.003220743,0.07625015;-0.5863922;0.06270491,0.09029356;-0.6151185;0.002663635,-0.06285617;0.002710036;-0.04941414,-0.09855369;-0.291562;-0.003265969,-0.09534013;-0.5856743;0.05579,-0.09584197;-0.6146916;-0.005496372,0.008133339;0.3991771;0.02349219,0;0;0,0.00933445;0.1992107;0.01509863,0.02226471;0.4986835;0.0259863,0.1326804;0.3734827;-0.0002091527,0.1740749;0.1783635;0.01445353,0.2115841;-0.06728965;-0.01288828,-0.09415528;0.3732324;-0.008892819,-0.2446614;0.3472525;-0.1380166,-0.4034436;0.3612921;-0.3306071,0.07392905;0.002482911;-0.03046851,0.08595468;-0.2960657;-0.003558494,0.07461167;-0.5898764;0.05599481,0.08877441;-0.617779;-0.005083937,-0.06865914;0.005204473;-0.04072881,-0.1011408;-0.2913408;-0.009013858,-0.100149;-0.5857725;0.04851032,-0.09529941;-0.5531539;-0.04984805,0.01810529;0.3987755;0.02494674,24.36094
-0;0;0,0.003749724;0.1994111;0.01487181,0.01021079;0.4991548;0.02388777,0.1244658;0.3751415;0.00649075,0.1721879;0.1818316;0.02530197,0.1975593;-0.06490594;-0.005953277,-0.09667211;0.3700356;-0.02716933,-0.178926;0.3453127;-0.2077879,-0.2976119;0.3073424;-0.424518,0.07667635;0.005338209;-0.0221865,0.08643296;-0.2939027;-0.003220743,0.07625015;-0.5863922;0.06270491,0.09029356;-0.6151185;0.002663635,-0.06285617;0.002710036;-0.04941414,-0.09855369;-0.291562;-0.003265969,-0.09534013;-0.5856743;0.05579,-0.09584197;-0.6146916;-0.005496372,0.008133339;0.3991771;0.02349219,0;0;0,0.009022408;0.1992145;0.01523759,0.02125219;0.4987058;0.02642083,0.132057;0.3737704;0.0004741699,0.1736737;0.1787075;0.01525569,0.2109063;-0.06702122;-0.01178373,-0.09464072;0.3735583;-0.009681668,-0.2430508;0.3471067;-0.1411152,-0.3986607;0.3606753;-0.3363111,0.07428227;0.002547526;-0.02959145,0.08605056;-0.2960885;-0.003552409,0.07465652;-0.5899222;0.05587814,0.08877079;-0.61762;-0.005471949,-0.06834985;0.005125035;-0.04125569,-0.1004159;-0.2913163;-0.008175343,-0.09979636;-0.5859227;0.04845259,-0.1014849;-0.6165959;-0.01061497,0.01734574;0.3987886;0.02528204,24.38318
-0;0;0,0.003643629;0.1994084;0.01493348,0.00993152;0.4991536;0.02401787,0.1243633;0.3753983;0.007136377,0.1721322;0.1820857;0.02580089,0.1974038;-0.06465755;-0.005489884,-0.09679189;0.3700629;-0.02730672,-0.1792149;0.3449838;-0.2077991,-0.296707;0.3077281;-0.4253022,0.07675932;0.005373609;-0.02188909,0.08636888;-0.2938665;-0.002836576,0.07619654;-0.5863688;0.06303415,0.09004588;-0.6150783;0.002925824,-0.06282894;0.002722384;-0.04944807,-0.09867248;-0.2914773;-0.002952926,-0.09520605;-0.5854955;0.05655611,-0.0957962;-0.6143202;-0.004976872,0.007900944;0.399175;0.02360395,0;0;0,0.009022408;0.1992145;0.01523759,0.02125219;0.4987058;0.02642083,0.132057;0.3737704;0.0004741699,0.1736737;0.1787075;0.01525569,0.2109063;-0.06702122;-0.01178373,-0.09464072;0.3735583;-0.009681668,-0.2430508;0.3471067;-0.1411152,-0.3986607;0.3606753;-0.3363111,0.07428227;0.002547526;-0.02959145,0.08605056;-0.2960885;-0.003552409,0.07465652;-0.5899222;0.05587814,0.08877079;-0.61762;-0.005471949,-0.06834985;0.005125035;-0.04125569,-0.1004159;-0.2913163;-0.008175343,-0.09979636;-0.5859227;0.04845259,-0.1014849;-0.6165959;-0.01061497,0.01734574;0.3987886;0.02528204,24.39414
-0;0;0,0.003643629;0.1994084;0.01493348,0.00993152;0.4991536;0.02401787,0.1243633;0.3753983;0.007136377,0.1721322;0.1820857;0.02580089,0.1974038;-0.06465755;-0.005489884,-0.09679189;0.3700629;-0.02730672,-0.1792149;0.3449838;-0.2077991,-0.296707;0.3077281;-0.4253022,0.07675932;0.005373609;-0.02188909,0.08636888;-0.2938665;-0.002836576,0.07619654;-0.5863688;0.06303415,0.09004588;-0.6150783;0.002925824,-0.06282894;0.002722384;-0.04944807,-0.09867248;-0.2914773;-0.002952926,-0.09520605;-0.5854955;0.05655611,-0.0957962;-0.6143202;-0.004976872,0.007900944;0.399175;0.02360395,0;0;0,0.009022408;0.1992145;0.01523759,0.02125219;0.4987058;0.02642083,0.132057;0.3737704;0.0004741699,0.1736737;0.1787075;0.01525569,0.2109063;-0.06702122;-0.01178373,-0.09464072;0.3735583;-0.009681668,-0.2430508;0.3471067;-0.1411152,-0.3986607;0.3606753;-0.3363111,0.07428227;0.002547526;-0.02959145,0.08605056;-0.2960885;-0.003552409,0.07465652;-0.5899222;0.05587814,0.08877079;-0.61762;-0.005471949,-0.06834985;0.005125035;-0.04125569,-0.1004159;-0.2913163;-0.008175343,-0.09979636;-0.5859227;0.04845259,-0.1014849;-0.6165959;-0.01061497,0.01734574;0.3987886;0.02528204,24.41681
-0;0;0,0.003598791;0.199405;0.01498933,0.009794797;0.4991503;0.02412867,0.1243885;0.3755491;0.008012949,0.1719783;0.1821842;0.02659302,0.1970516;-0.06452651;-0.005111158,-0.09658717;0.3702269;-0.02795453,-0.1799108;0.3376631;-0.206831,-0.2944789;0.3109908;-0.4274273,0.07685146;0.005285056;-0.02158521,0.08651555;-0.293962;-0.002669835,0.07634928;-0.5863791;0.0635794,0.08868638;-0.6144249;0.00228804,-0.06271435;0.00278134;-0.04959005,-0.09850284;-0.2914959;-0.003545582,-0.09515274;-0.5853533;0.05675899,-0.09582398;-0.6142162;-0.004724171,0.007787092;0.3991714;0.02370042,0;0;0,0.008873617;0.1992173;0.01528867,0.02097473;0.4987108;0.0265549,0.131992;0.373635;0.001517298,0.173484;0.1785065;0.01577537,0.2102212;-0.06747447;-0.009596754,-0.09443493;0.3733179;-0.01078489,-0.2412593;0.3466108;-0.1439365,-0.3930973;0.3606338;-0.342049,0.07443655;0.002592805;-0.02919718,0.08602531;-0.2960783;-0.003482042,0.07464865;-0.5899283;0.05587074,0.08858142;-0.6177806;-0.005324833,-0.0677262;0.004990942;-0.04228773,-0.1001423;-0.2913062;-0.008269969,-0.09969747;-0.5859159;0.04834189,-0.1014613;-0.6159788;-0.01154812,0.01711204;0.3987922;0.02538599,24.42763
-0;0;0,0.003598791;0.199405;0.01498933,0.009794797;0.4991503;0.02412867,0.1243885;0.3755491;0.008012949,0.1719783;0.1821842;0.02659302,0.1970516;-0.06452651;-0.005111158,-0.09658717;0.3702269;-0.02795453,-0.1799108;0.3376631;-0.206831,-0.2944789;0.3109908;-0.4274273,0.07685146;0.005285056;-0.02158521,0.08651555;-0.293962;-0.002669835,0.07634928;-0.5863791;0.0635794,0.08868638;-0.6144249;0.00228804,-0.06271435;0.00278134;-0.04959005,-0.09850284;-0.2914959;-0.003545582,-0.09515274;-0.5853533;0.05675899,-0.09582398;-0.6142162;-0.004724171,0.007787092;0.3991714;0.02370042,0;0;0,0.008873617;0.1992173;0.01528867,0.02097473;0.4987108;0.0265549,0.131992;0.373635;0.001517298,0.173484;0.1785065;0.01577537,0.2102212;-0.06747447;-0.009596754,-0.09443493;0.3733179;-0.01078489,-0.2412593;0.3466108;-0.1439365,-0.3930973;0.3606338;-0.342049,0.07443655;0.002592805;-0.02919718,0.08602531;-0.2960783;-0.003482042,0.07464865;-0.5899283;0.05587074,0.08858142;-0.6177806;-0.005324833,-0.0677262;0.004990942;-0.04228773,-0.1001423;-0.2913062;-0.008269969,-0.09969747;-0.5859159;0.04834189,-0.1014613;-0.6159788;-0.01154812,0.01711204;0.3987922;0.02538599,24.43945
-0;0;0,0.003439843;0.1994026;0.01505933,0.009447276;0.499148;0.02430732,0.1241244;0.3756275;0.008344132,0.1717753;0.1822866;0.02701717,0.196849;-0.06442262;-0.004698595,-0.09694636;0.3702381;-0.02770215,-0.1794184;0.3399589;-0.2073728,-0.2929196;0.3079155;-0.4278058,0.07696045;0.005310352;-0.02118702,0.08634495;-0.2939544;-0.002411263,0.07616437;-0.5863496;0.06393173,0.08843648;-0.6141362;0.002298579,-0.06249867;0.002767088;-0.0498624,-0.09844445;-0.2914462;-0.00353254,-0.09536671;-0.5852375;0.05710737,-0.09583176;-0.6138728;-0.004668545,0.007482304;0.3991684;0.02385067,0;0;0,0.008873617;0.1992173;0.01528867,0.02097473;0.4987108;0.0265549,0.131992;0.373635;0.001517298,0.173484;0.1785065;0.01577537,0.2102212;-0.06747447;-0.009596754,-0.09443493;0.3733179;-0.01078489,-0.2412593;0.3466108;-0.1439365,-0.3930973;0.3606338;-0.342049,0.07443655;0.002592805;-0.02919718,0.08602531;-0.2960783;-0.003482042,0.07464865;-0.5899283;0.05587074,0.08858142;-0.6177806;-0.005324833,-0.0677262;0.004990942;-0.04228773,-0.1001423;-0.2913062;-0.008269969,-0.09969747;-0.5859159;0.04834189,-0.1014613;-0.6159788;-0.01154812,0.01711204;0.3987922;0.02538599,24.46101
-0;0;0,0.003439843;0.1994026;0.01505933,0.009447276;0.499148;0.02430732,0.1241244;0.3756275;0.008344132,0.1717753;0.1822866;0.02701717,0.196849;-0.06442262;-0.004698595,-0.09694636;0.3702381;-0.02770215,-0.1794184;0.3399589;-0.2073728,-0.2929196;0.3079155;-0.4278058,0.07696045;0.005310352;-0.02118702,0.08634495;-0.2939544;-0.002411263,0.07616437;-0.5863496;0.06393173,0.08843648;-0.6141362;0.002298579,-0.06249867;0.002767088;-0.0498624,-0.09844445;-0.2914462;-0.00353254,-0.09536671;-0.5852375;0.05710737,-0.09583176;-0.6138728;-0.004668545,0.007482304;0.3991684;0.02385067,0;0;0,0.008649383;0.1992144;0.01545323,0.02046254;0.4987103;0.02696848,0.1316071;0.3736385;0.002035785,0.1730787;0.1785559;0.01696595,0.2095645;-0.06750192;-0.008020861,-0.0945479;0.3732966;-0.01140247,-0.239775;0.3457832;-0.1461322,-0.3888819;0.3594595;-0.3463323,0.0745206;0.002733402;-0.02896907,0.08597432;-0.2959671;-0.0035365,0.07467434;-0.5898103;0.05586506,0.08911802;-0.6188539;-0.003662024,-0.06759113;0.00490021;-0.04251384,-0.1001443;-0.2913556;-0.008267764,-0.09974585;-0.5860147;0.0480869,-0.1019484;-0.6158906;-0.01203792,0.01668536;0.3987896;0.02570911,24.47283
-0;0;0,0.003439843;0.1994026;0.01505933,0.009447276;0.499148;0.02430732,0.1241244;0.3756275;0.008344132,0.1717753;0.1822866;0.02701717,0.196849;-0.06442262;-0.004698595,-0.09694636;0.3702381;-0.02770215,-0.1794184;0.3399589;-0.2073728,-0.2929196;0.3079155;-0.4278058,0.07696045;0.005310352;-0.02118702,0.08634495;-0.2939544;-0.002411263,0.07616437;-0.5863496;0.06393173,0.08843648;-0.6141362;0.002298579,-0.06249867;0.002767088;-0.0498624,-0.09844445;-0.2914462;-0.00353254,-0.09536671;-0.5852375;0.05710737,-0.09583176;-0.6138728;-0.004668545,0.007482304;0.3991684;0.02385067,0;0;0,0.008649383;0.1992144;0.01545323,0.02046254;0.4987103;0.02696848,0.1316071;0.3736385;0.002035785,0.1730787;0.1785559;0.01696595,0.2095645;-0.06750192;-0.008020861,-0.0945479;0.3732966;-0.01140247,-0.239775;0.3457832;-0.1461322,-0.3888819;0.3594595;-0.3463323,0.0745206;0.002733402;-0.02896907,0.08597432;-0.2959671;-0.0035365,0.07467434;-0.5898103;0.05586506,0.08911802;-0.6188539;-0.003662024,-0.06759113;0.00490021;-0.04251384,-0.1001443;-0.2913556;-0.008267764,-0.09974585;-0.5860147;0.0480869,-0.1019484;-0.6158906;-0.01203792,0.01668536;0.3987896;0.02570911,24.48428
-0;0;0,0.003034333;0.1994061;0.01510007,0.008568375;0.4991641;0.0241831,0.1235869;0.3760488;0.008890418,0.1711458;0.1826767;0.02747475,0.1963168;-0.06405453;-0.003991494,-0.09753138;0.3703842;-0.02802945,-0.1798847;0.3408354;-0.207876,-0.2904938;0.3075611;-0.4295931,0.07706907;0.005392695;-0.02076717,0.08588022;-0.293893;-0.002047742,0.07564309;-0.5862719;0.06435859,0.08799282;-0.61402;0.002692461,-0.06231712;0.002694902;-0.05009304,-0.09892656;-0.2913911;-0.003475804,-0.09558491;-0.5850585;0.05774762,-0.09573645;-0.6141075;-0.003499635,0.00678775;0.3991807;0.02381923,0;0;0,0.008649383;0.1992144;0.01545323,0.02046254;0.4987103;0.02696848,0.1316071;0.3736385;0.002035785,0.1730787;0.1785559;0.01696595,0.2095645;-0.06750192;-0.008020861,-0.0945479;0.3732966;-0.01140247,-0.239775;0.3457832;-0.1461322,-0.3888819;0.3594595;-0.3463323,0.0745206;0.002733402;-0.02896907,0.08597432;-0.2959671;-0.0035365,0.07467434;-0.5898103;0.05586506,0.08911802;-0.6188539;-0.003662024,-0.06759113;0.00490021;-0.04251384,-0.1001443;-0.2913556;-0.008267764,-0.09974585;-0.5860147;0.0480869,-0.1019484;-0.6158906;-0.01203792,0.01668536;0.3987896;0.02570911,24.50606
-0;0;0,0.002856168;0.1994101;0.01508203,0.008127425;0.4991735;0.02413707,0.1224657;0.3747708;0.005392566,0.167771;0.1813377;0.02843781,0.192002;-0.06552008;-0.002772387,-0.09772728;0.3703384;-0.02836462,-0.1801083;0.3414058;-0.2082987,-0.2902596;0.3070084;-0.4300722,0.07715622;0.005446882;-0.02042668,0.08556996;-0.2938505;-0.001710588,0.07526303;-0.586234;0.06466461,0.08768575;-0.6141847;0.003269441,-0.06226742;0.002648548;-0.05015729,-0.09910788;-0.2913513;-0.003180135,-0.09585482;-0.5850019;0.05812877,-0.0955534;-0.6147493;-0.002205811,0.006425335;0.3991886;0.02378805,0;0;0,0.008482991;0.1992185;0.01549271,0.0201646;0.4987199;0.0269979,0.1314381;0.373767;0.002418485,0.1733089;0.1787919;0.01763516,0.2092136;-0.06744334;-0.006428244,-0.09454225;0.3730716;-0.01201751,-0.2375942;0.3449421;-0.1489295,-0.3826346;0.3587531;-0.3520859,0.07484272;0.002912768;-0.02810842,0.08610849;-0.2958587;-0.003436686,0.07501094;-0.5897502;0.05576365,0.08896922;-0.6194471;-0.003003348,-0.06729641;0.0047986;-0.04299031,-0.09998874;-0.2913871;-0.008273046,-0.09957775;-0.5860693;0.04796049,-0.1021423;-0.6164361;-0.01149203,0.01641877;0.398798;0.02574226,24.52808
-0;0;0,0.002856168;0.1994101;0.01508203,0.008127425;0.4991735;0.02413707,0.1224657;0.3747708;0.005392566,0.167771;0.1813377;0.02843781,0.192002;-0.06552008;-0.002772387,-0.09772728;0.3703384;-0.02836462,-0.1801083;0.3414058;-0.2082987,-0.2902596;0.3070084;-0.4300722,0.07715622;0.005446882;-0.02042668,0.08556996;-0.2938505;-0.001710588,0.07526303;-0.586234;0.06466461,0.08768575;-0.6141847;0.003269441,-0.06226742;0.002648548;-0.05015729,-0.09910788;-0.2913513;-0.003180135,-0.09585482;-0.5850019;0.05812877,-0.0955534;-0.6147493;-0.002205811,0.006425335;0.3991886;0.02378805,0;0;0,0.008482991;0.1992185;0.01549271,0.0201646;0.4987199;0.0269979,0.1314381;0.373767;0.002418485,0.1733089;0.1787919;0.01763516,0.2092136;-0.06744334;-0.006428244,-0.09454225;0.3730716;-0.01201751,-0.2375942;0.3449421;-0.1489295,-0.3826346;0.3587531;-0.3520859,0.07484272;0.002912768;-0.02810842,0.08610849;-0.2958587;-0.003436686,0.07501094;-0.5897502;0.05576365,0.08896922;-0.6194471;-0.003003348,-0.06729641;0.0047986;-0.04299031,-0.09998874;-0.2913871;-0.008273046,-0.09957775;-0.5860693;0.04796049,-0.1021423;-0.6164361;-0.01149203,0.01641877;0.398798;0.02574226,24.53975
-0;0;0,0.002856168;0.1994101;0.01508203,0.008127425;0.4991735;0.02413707,0.1224657;0.3747708;0.005392566,0.167771;0.1813377;0.02843781,0.192002;-0.06552008;-0.002772387,-0.09772728;0.3703384;-0.02836462,-0.1801083;0.3414058;-0.2082987,-0.2902596;0.3070084;-0.4300722,0.07715622;0.005446882;-0.02042668,0.08556996;-0.2938505;-0.001710588,0.07526303;-0.586234;0.06466461,0.08768575;-0.6141847;0.003269441,-0.06226742;0.002648548;-0.05015729,-0.09910788;-0.2913513;-0.003180135,-0.09585482;-0.5850019;0.05812877,-0.0955534;-0.6147493;-0.002205811,0.006425335;0.3991886;0.02378805,0;0;0,0.008482991;0.1992185;0.01549271,0.0201646;0.4987199;0.0269979,0.1314381;0.373767;0.002418485,0.1733089;0.1787919;0.01763516,0.2092136;-0.06744334;-0.006428244,-0.09454225;0.3730716;-0.01201751,-0.2375942;0.3449421;-0.1489295,-0.3826346;0.3587531;-0.3520859,0.07484272;0.002912768;-0.02810842,0.08610849;-0.2958587;-0.003436686,0.07501094;-0.5897502;0.05576365,0.08896922;-0.6194471;-0.003003348,-0.06729641;0.0047986;-0.04299031,-0.09998874;-0.2913871;-0.008273046,-0.09957775;-0.5860693;0.04796049,-0.1021423;-0.6164361;-0.01149203,0.01641877;0.398798;0.02574226,24.55123
-0;0;0,0.002619326;0.1994288;0.01487588,0.007167315;0.4992219;0.02327724,0.122212;0.3756358;0.006451359,0.1677242;0.1821402;0.02854378,0.1924541;-0.06469953;-0.002417199,-0.09849089;0.370385;-0.0288037,-0.1806701;0.3418099;-0.2088871,-0.2902128;0.306887;-0.4308799,0.07724694;0.005538765;-0.02005573,0.08531564;-0.2937751;-0.001451099,0.07503828;-0.5861443;0.06499141,0.0874304;-0.6140484;0.003530927,-0.0620495;0.002557491;-0.05043133,-0.0992797;-0.2913722;-0.00332237,-0.09610089;-0.5849514;0.05833098,-0.09594785;-0.6149315;-0.001695331,0.005749416;0.399232;0.02317521,0;0;0,0.008284546;0.1992185;0.01559998,0.01974945;0.4987253;0.02718616,0.1311808;0.3738959;0.00293663,0.1733451;0.1789711;0.01798617,0.2088992;-0.06735259;-0.005689556,-0.094559;0.3729866;-0.0127841,-0.2359623;0.3444037;-0.1513053,-0.3777814;0.3569407;-0.3568051,0.07511781;0.002935237;-0.02736237,0.0861901;-0.2958963;-0.003338322,0.07515585;-0.5898898;0.05536493,0.088857;-0.6200265;-0.002862081,-0.06705082;0.00479909;-0.04337229,-0.09993209;-0.291342;-0.008453678,-0.09953795;-0.5860339;0.04772895,-0.1026622;-0.6154447;-0.01296841,0.01606203;0.3988015;0.02590154,24.57301
-0;0;0,0.002619326;0.1994288;0.01487588,0.007167315;0.4992219;0.02327724,0.122212;0.3756358;0.006451359,0.1677242;0.1821402;0.02854378,0.1924541;-0.06469953;-0.002417199,-0.09849089;0.370385;-0.0288037,-0.1806701;0.3418099;-0.2088871,-0.2902128;0.306887;-0.4308799,0.07724694;0.005538765;-0.02005573,0.08531564;-0.2937751;-0.001451099,0.07503828;-0.5861443;0.06499141,0.0874304;-0.6140484;0.003530927,-0.0620495;0.002557491;-0.05043133,-0.0992797;-0.2913722;-0.00332237,-0.09610089;-0.5849514;0.05833098,-0.09594785;-0.6149315;-0.001695331,0.005749416;0.399232;0.02317521,0;0;0,0.008284546;0.1992185;0.01559998,0.01974945;0.4987253;0.02718616,0.1311808;0.3738959;0.00293663,0.1733451;0.1789711;0.01798617,0.2088992;-0.06735259;-0.005689556,-0.094559;0.3729866;-0.0127841,-0.2359623;0.3444037;-0.1513053,-0.3777814;0.3569407;-0.3568051,0.07511781;0.002935237;-0.02736237,0.0861901;-0.2958963;-0.003338322,0.07515585;-0.5898898;0.05536493,0.088857;-0.6200265;-0.002862081,-0.06705082;0.00479909;-0.04337229,-0.09993209;-0.291342;-0.008453678,-0.09953795;-0.5860339;0.04772895,-0.1026622;-0.6154447;-0.01296841,0.01606203;0.3988015;0.02590154,24.58409
-0;0;0,0.00245093;0.1994323;0.01485736,0.006692055;0.4992307;0.02324051,0.1220647;0.3759123;0.00769317,0.1682679;0.1824983;0.02905387,0.193192;-0.06433806;-0.001777668,-0.09881411;0.3703629;-0.02893433,-0.1806797;0.3420692;-0.2092049,-0.2900122;0.3061837;-0.4311478,0.07733691;0.005518177;-0.01971171,0.08522045;-0.2938061;-0.001196556,0.07489373;-0.5861646;0.06528598,0.08725309;-0.6146691;0.004587751,-0.0618795;0.002579818;-0.05063863,-0.09926008;-0.2912628;-0.003107265,-0.09652408;-0.5848917;0.05833072,-0.09729071;-0.6120764;-0.005245466,0.005371447;0.3992395;0.02313785,0;0;0,0.008284546;0.1992185;0.01559998,0.01974945;0.4987253;0.02718616,0.1311808;0.3738959;0.00293663,0.1733451;0.1789711;0.01798617,0.2088992;-0.06735259;-0.005689556,-0.094559;0.3729866;-0.0127841,-0.2359623;0.3444037;-0.1513053,-0.3777814;0.3569407;-0.3568051,0.07511781;0.002935237;-0.02736237,0.0861901;-0.2958963;-0.003338322,0.07515585;-0.5898898;0.05536493,0.088857;-0.6200265;-0.002862081,-0.06705082;0.00479909;-0.04337229,-0.09993209;-0.291342;-0.008453678,-0.09953795;-0.5860339;0.04772895,-0.1026622;-0.6154447;-0.01296841,0.01606203;0.3988015;0.02590154,24.60653
-0;0;0,0.00245093;0.1994323;0.01485736,0.006692055;0.4992307;0.02324051,0.1220647;0.3759123;0.00769317,0.1682679;0.1824983;0.02905387,0.193192;-0.06433806;-0.001777668,-0.09881411;0.3703629;-0.02893433,-0.1806797;0.3420692;-0.2092049,-0.2900122;0.3061837;-0.4311478,0.07733691;0.005518177;-0.01971171,0.08522045;-0.2938061;-0.001196556,0.07489373;-0.5861646;0.06528598,0.08725309;-0.6146691;0.004587751,-0.0618795;0.002579818;-0.05063863,-0.09926008;-0.2912628;-0.003107265,-0.09652408;-0.5848917;0.05833072,-0.09729071;-0.6120764;-0.005245466,0.005371447;0.3992395;0.02313785,0;0;0,0.008109792;0.1992199;0.01567402,0.0194162;0.4987312;0.02729866,0.1310819;0.3742095;0.003686408,0.1734501;0.1793158;0.01856557,0.2090829;-0.06702551;-0.004807031,-0.09461816;0.373053;-0.01338628,-0.2344646;0.3433833;-0.1532529,-0.3722171;0.3562529;-0.3614802,0.07529145;0.002993276;-0.02687448,0.08619852;-0.2958799;-0.003298344,0.07511715;-0.5898833;0.05534668,0.08879127;-0.6200733;-0.002813332,-0.06682994;0.004784479;-0.04371347,-0.0999234;-0.2913036;-0.008546837,-0.09951551;-0.5860121;0.04754903,-0.1023776;-0.6159021;-0.01252919,0.01576919;0.3988061;0.02600169,24.61772
-0;0;0,0.002456586;0.1994315;0.01486759,0.00669976;0.4992288;0.02330008,0.1221676;0.3762274;0.008031183,0.1687397;0.1829496;0.02981948,0.193328;-0.06384028;-0.001647241,-0.09865262;0.3705719;-0.02933466,-0.1799317;0.3424856;-0.2099029,-0.288707;0.3057832;-0.4319859,0.07736494;0.005508961;-0.01960399,0.08527812;-0.2938221;-0.00121134,0.07479995;-0.5861678;0.06530362,0.08654249;-0.6145672;0.004347589,-0.06182279;0.002603988;-0.05070662,-0.09904237;-0.2912942;-0.003392886,-0.09628962;-0.5847874;0.05868913,-0.09683032;-0.6146978;-0.001427647,0.005371968;0.3992377;0.023174,0;0;0,0.008109792;0.1992199;0.01567402,0.0194162;0.4987312;0.02729866,0.1310819;0.3742095;0.003686408,0.1734501;0.1793158;0.01856557,0.2090829;-0.06702551;-0.004807031,-0.09461816;0.373053;-0.01338628,-0.2344646;0.3433833;-0.1532529,-0.3722171;0.3562529;-0.3614802,0.07529145;0.002993276;-0.02687448,0.08619852;-0.2958799;-0.003298344,0.07511715;-0.5898833;0.05534668,0.08879127;-0.6200733;-0.002813332,-0.06682994;0.004784479;-0.04371347,-0.0999234;-0.2913036;-0.008546837,-0.09951551;-0.5860121;0.04754903,-0.1023776;-0.6159021;-0.01252919,0.01576919;0.3988061;0.02600169,24.62906
-0;0;0,0.002456586;0.1994315;0.01486759,0.00669976;0.4992288;0.02330008,0.1221676;0.3762274;0.008031183,0.1687397;0.1829496;0.02981948,0.193328;-0.06384028;-0.001647241,-0.09865262;0.3705719;-0.02933466,-0.1799317;0.3424856;-0.2099029,-0.288707;0.3057832;-0.4319859,0.07736494;0.005508961;-0.01960399,0.08527812;-0.2938221;-0.00121134,0.07479995;-0.5861678;0.06530362,0.08654249;-0.6145672;0.004347589,-0.06182279;0.002603988;-0.05070662,-0.09904237;-0.2912942;-0.003392886,-0.09628962;-0.5847874;0.05868913,-0.09683032;-0.6146978;-0.001427647,0.005371968;0.3992377;0.023174,0;0;0,0.008109792;0.1992199;0.01567402,0.0194162;0.4987312;0.02729866,0.1310819;0.3742095;0.003686408,0.1734501;0.1793158;0.01856557,0.2090829;-0.06702551;-0.004807031,-0.09461816;0.373053;-0.01338628,-0.2344646;0.3433833;-0.1532529,-0.3722171;0.3562529;-0.3614802,0.07529145;0.002993276;-0.02687448,0.08619852;-0.2958799;-0.003298344,0.07511715;-0.5898833;0.05534668,0.08879127;-0.6200733;-0.002813332,-0.06682994;0.004784479;-0.04371347,-0.0999234;-0.2913036;-0.008546837,-0.09951551;-0.5860121;0.04754903,-0.1023776;-0.6159021;-0.01252919,0.01576919;0.3988061;0.02600169,24.65165
-0;0;0,0.002366054;0.1994281;0.01492697,0.006521955;0.4992248;0.02342883,0.1221843;0.3765353;0.008982592,0.1688734;0.1832351;0.03031684,0.1935839;-0.0635089;-0.001413118,-0.09860842;0.3705941;-0.02963167,-0.1792387;0.3432533;-0.2106047,-0.2879569;0.3050438;-0.4324614,0.07742233;0.005532905;-0.01936928,0.08527681;-0.2938049;-0.001061466,0.07483169;-0.5861981;0.06524976,0.08702189;-0.615185;0.005145933,-0.06164644;0.002586627;-0.05092176,-0.0988683;-0.2912622;-0.003304586,-0.09640992;-0.5848325;0.05842401,-0.09712604;-0.6145962;-0.001885567,0.005220721;0.3992334;0.02327678,0;0;0,0.00801385;0.1992215;0.0157023,0.01925581;0.4987342;0.02735454,0.1311279;0.3745786;0.004311932,0.1736843;0.1797518;0.01952668,0.2092702;-0.06648344;-0.005005637,-0.09462066;0.3730691;-0.01373795,-0.2315268;0.3424899;-0.1562919,-0.3662974;0.3541052;-0.3665346,0.07536086;0.002978246;-0.0266809,0.0861956;-0.2958931;-0.003047783,0.07534175;-0.5900375;0.05492927,0.08851953;-0.6208234;-0.002516184,-0.06657445;0.004859801;-0.04409336,-0.09987247;-0.2911783;-0.008699976,-0.09938715;-0.5858676;0.04749602,-0.1027086;-0.6143636;-0.01436953,0.01562702;0.3988086;0.02604808,24.66273
-0;0;0,0.002366054;0.1994281;0.01492697,0.006521955;0.4992248;0.02342883,0.1221843;0.3765353;0.008982592,0.1688734;0.1832351;0.03031684,0.1935839;-0.0635089;-0.001413118,-0.09860842;0.3705941;-0.02963167,-0.1792387;0.3432533;-0.2106047,-0.2879569;0.3050438;-0.4324614,0.07742233;0.005532905;-0.01936928,0.08527681;-0.2938049;-0.001061466,0.07483169;-0.5861981;0.06524976,0.08702189;-0.615185;0.005145933,-0.06164644;0.002586627;-0.05092176,-0.0988683;-0.2912622;-0.003304586,-0.09640992;-0.5848325;0.05842401,-0.09712604;-0.6145962;-0.001885567,0.005220721;0.3992334;0.02327678,0;0;0,0.00801385;0.1992215;0.0157023,0.01925581;0.4987342;0.02735454,0.1311279;0.3745786;0.004311932,0.1736843;0.1797518;0.01952668,0.2092702;-0.06648344;-0.005005637,-0.09462066;0.3730691;-0.01373795,-0.2315268;0.3424899;-0.1562919,-0.3662974;0.3541052;-0.3665346,0.07536086;0.002978246;-0.0266809,0.0861956;-0.2958931;-0.003047783,0.07534175;-0.5900375;0.05492927,0.08851953;-0.6208234;-0.002516184,-0.06657445;0.004859801;-0.04409336,-0.09987247;-0.2911783;-0.008699976,-0.09938715;-0.5858676;0.04749602,-0.1027086;-0.6143636;-0.01436953,0.01562702;0.3988086;0.02604808,24.68517
-0;0;0,0.002328436;0.1994264;0.01495604,0.006349332;0.4992229;0.02354421,0.1221457;0.3766216;0.00966762,0.1689039;0.183314;0.03078288,0.1936103;-0.06346686;-0.0006621145,-0.09851225;0.3704438;-0.02991686,-0.178345;0.3437671;-0.211342,-0.2864318;0.3042746;-0.4332826,0.07746682;0.005535766;-0.01918977,0.08533509;-0.2938078;-0.00098194,0.07484162;-0.5861765;0.06542932,0.08756058;-0.6151837;0.005461887,-0.06154693;0.002596208;-0.05104151,-0.09865664;-0.291225;-0.003166787,-0.09635172;-0.5847836;0.05862377,-0.08253901;-0.5526489;-0.03879305,0.00509193;0.399231;0.02335105,0;0;0,0.00801385;0.1992215;0.0157023,0.01925581;0.4987342;0.02735454,0.1311279;0.3745786;0.004311932,0.1736843;0.1797518;0.01952668,0.2092702;-0.06648344;-0.005005637,-0.09462066;0.3730691;-0.01373795,-0.2315268;0.3424899;-0.1562919,-0.3662974;0.3541052;-0.3665346,0.07536086;0.002978246;-0.0266809,0.0861956;-0.2958931;-0.003047783,0.07534175;-0.5900375;0.05492927,0.08851953;-0.6208234;-0.002516184,-0.06657445;0.004859801;-0.04409336,-0.09987247;-0.2911783;-0.008699976,-0.09938715;-0.5858676;0.04749602,-0.1027086;-0.6143636;-0.01436953,0.01562702;0.3988086;0.02604808,24.70708
-0;0;0,0.002328436;0.1994264;0.01495604,0.006349332;0.4992229;0.02354421,0.1221457;0.3766216;0.00966762,0.1689039;0.183314;0.03078288,0.1936103;-0.06346686;-0.0006621145,-0.09851225;0.3704438;-0.02991686,-0.178345;0.3437671;-0.211342,-0.2864318;0.3042746;-0.4332826,0.07746682;0.005535766;-0.01918977,0.08533509;-0.2938078;-0.00098194,0.07484162;-0.5861765;0.06542932,0.08756058;-0.6151837;0.005461887,-0.06154693;0.002596208;-0.05104151,-0.09865664;-0.291225;-0.003166787,-0.09635172;-0.5847836;0.05862377,-0.08253901;-0.5526489;-0.03879305,0.00509193;0.399231;0.02335105,0;0;0,0.007813862;0.1992166;0.01586422,0.01870166;0.498728;0.02789677,0.130677;0.3744715;0.004699128,0.1733842;0.1796772;0.01990608,0.2090044;-0.06664638;-0.00367176,-0.09480627;0.3729509;-0.01393609,-0.2297275;0.3417867;-0.158245,-0.3604003;0.3512298;-0.3711662,0.07550678;0.003046138;-0.0262573,0.08603754;-0.2958569;-0.002888264,0.07521103;-0.5900379;0.05490711,0.0880557;-0.6207692;-0.002690438,-0.06630848;0.004846964;-0.04449375,-0.09984714;-0.2911231;-0.008760102,-0.09929412;-0.5858622;0.04717312,-0.1028635;-0.6142378;-0.01483114,0.01519885;0.3988;0.02644583,24.71823
-0;0;0,0.002333791;0.1994249;0.01497495,0.006330822;0.4992189;0.02366634,0.1221707;0.3766686;0.01002879,0.1680777;0.18311;0.0307078,0.193758;-0.06361139;-0.0004221499,-0.098456;0.3703998;-0.02995073,-0.1772474;0.3432744;-0.2117642,-0.2845911;0.3042181;-0.4341421,0.07751608;0.005539581;-0.01898868,0.08536972;-0.2938074;-0.0008306392,0.07489902;-0.5861549;0.06567742,0.08746791;-0.6152307;0.005768884,-0.0615092;0.002608449;-0.05108634,-0.09857866;-0.2911905;-0.003044099,-0.09633471;-0.5848004;0.05850437,-0.08238912;-0.5526575;-0.03889502,0.005075272;0.399227;0.02343715,0;0;0,0.007813862;0.1992166;0.01586422,0.01870166;0.498728;0.02789677,0.130677;0.3744715;0.004699128,0.1733842;0.1796772;0.01990608,0.2090044;-0.06664638;-0.00367176,-0.09480627;0.3729509;-0.01393609,-0.2297275;0.3417867;-0.158245,-0.3604003;0.3512298;-0.3711662,0.07550678;0.003046138;-0.0262573,0.08603754;-0.2958569;-0.002888264,0.07521103;-0.5900379;0.05490711,0.0880557;-0.6207692;-0.002690438,-0.06630848;0.004846964;-0.04449375,-0.09984714;-0.2911231;-0.008760102,-0.09929412;-0.5858622;0.04717312,-0.1028635;-0.6142378;-0.01483114,0.01519885;0.3988;0.02644583,24.74057
-0;0;0,0.002310181;0.1994262;0.01496244,0.006256754;0.49922;0.02368411,0.1222524;0.376949;0.01086581,0.1683808;0.1835182;0.032237,0.1935471;-0.06307797;-0.000274118,-0.0984202;0.3704157;-0.03014819,-0.1756383;0.3366814;-0.21153,-0.2820318;0.3074042;-0.4358585,0.07760169;0.005537721;-0.01863629,0.08532064;-0.2938333;-0.0008203276,0.07544535;-0.5863247;0.065144,0.08701574;-0.6165721;0.006607927,-0.06125766;0.002576306;-0.05138932,-0.09854043;-0.2911291;-0.002942052,-0.09611882;-0.5846651;0.05895127,-0.08188108;-0.5525404;-0.03840252,0.005011134;0.3992281;0.02344102,0;0;0,0.007813862;0.1992166;0.01586422,0.01870166;0.498728;0.02789677,0.130677;0.3744715;0.004699128,0.1733842;0.1796772;0.01990608,0.2090044;-0.06664638;-0.00367176,-0.09480627;0.3729509;-0.01393609,-0.2297275;0.3417867;-0.158245,-0.3604003;0.3512298;-0.3711662,0.07550678;0.003046138;-0.0262573,0.08603754;-0.2958569;-0.002888264,0.07521103;-0.5900379;0.05490711,0.0880557;-0.6207692;-0.002690438,-0.06630848;0.004846964;-0.04449375,-0.09984714;-0.2911231;-0.008760102,-0.09929412;-0.5858622;0.04717312,-0.1028635;-0.6142378;-0.01483114,0.01519885;0.3988;0.02644583,24.7627
-0;0;0,0.002310181;0.1994262;0.01496244,0.006256754;0.49922;0.02368411,0.1222524;0.376949;0.01086581,0.1683808;0.1835182;0.032237,0.1935471;-0.06307797;-0.000274118,-0.0984202;0.3704157;-0.03014819,-0.1756383;0.3366814;-0.21153,-0.2820318;0.3074042;-0.4358585,0.07760169;0.005537721;-0.01863629,0.08532064;-0.2938333;-0.0008203276,0.07544535;-0.5863247;0.065144,0.08701574;-0.6165721;0.006607927,-0.06125766;0.002576306;-0.05138932,-0.09854043;-0.2911291;-0.002942052,-0.09611882;-0.5846651;0.05895127,-0.08188108;-0.5525404;-0.03840252,0.005011134;0.3992281;0.02344102,0;0;0,0.00767477;0.1992178;0.01591691,0.01846209;0.4987343;0.02791137,0.1305839;0.374628;0.005246561,0.1734558;0.1798988;0.02082053,0.2088236;-0.06643058;-0.003074247,-0.0947511;0.372937;-0.01463803,-0.227369;0.3404723;-0.1607837,-0.3531879;0.3486288;-0.3766611,0.07557813;0.00304743;-0.02605109,0.08595239;-0.2958906;-0.003063237,0.07504366;-0.5900221;0.05496852,0.0880755;-0.6206551;-0.002724569,-0.06615231;0.004835478;-0.04472684,-0.09985675;-0.2910862;-0.008749127,-0.0993254;-0.5858118;0.04725549,-0.1026855;-0.6144878;-0.0143788,0.01497787;0.3988053;0.02647625,24.77436
-0;0;0,0.002310181;0.1994262;0.01496244,0.006256754;0.49922;0.02368411,0.1222524;0.376949;0.01086581,0.1683808;0.1835182;0.032237,0.1935471;-0.06307797;-0.000274118,-0.0984202;0.3704157;-0.03014819,-0.1756383;0.3366814;-0.21153,-0.2820318;0.3074042;-0.4358585,0.07760169;0.005537721;-0.01863629,0.08532064;-0.2938333;-0.0008203276,0.07544535;-0.5863247;0.065144,0.08701574;-0.6165721;0.006607927,-0.06125766;0.002576306;-0.05138932,-0.09854043;-0.2911291;-0.002942052,-0.09611882;-0.5846651;0.05895127,-0.08188108;-0.5525404;-0.03840252,0.005011134;0.3992281;0.02344102,0;0;0,0.00767477;0.1992178;0.01591691,0.01846209;0.4987343;0.02791137,0.1305839;0.374628;0.005246561,0.1734558;0.1798988;0.02082053,0.2088236;-0.06643058;-0.003074247,-0.0947511;0.372937;-0.01463803,-0.227369;0.3404723;-0.1607837,-0.3531879;0.3486288;-0.3766611,0.07557813;0.00304743;-0.02605109,0.08595239;-0.2958906;-0.003063237,0.07504366;-0.5900221;0.05496852,0.0880755;-0.6206551;-0.002724569,-0.06615231;0.004835478;-0.04472684,-0.09985675;-0.2910862;-0.008749127,-0.0993254;-0.5858118;0.04725549,-0.1026855;-0.6144878;-0.0143788,0.01497787;0.3988053;0.02647625,24.78535
-0;0;0,0.002339336;0.1994265;0.01495337,0.006318839;0.4992192;0.02371179,0.1223198;0.3768797;0.011243,0.1689041;0.1836505;0.03343276,0.1935383;-0.06284127;-0.0002564751,-0.09828518;0.3704213;-0.03032497,-0.1724472;0.3317195;-0.2119899,-0.27649;0.3120526;-0.4384592,0.07764921;0.005520511;-0.01844242,0.0854724;-0.2938531;-0.0007154699,0.07545256;-0.5862991;0.06542765,0.08735829;-0.6162141;0.006505236,-0.0612349;0.002591664;-0.05141566,-0.09836096;-0.2911409;-0.003012944,-0.09656721;-0.5846261;0.05914241,-0.08215109;-0.5525233;-0.0381811,0.005052521;0.3992276;0.02344787,0;0;0,0.00767477;0.1992178;0.01591691,0.01846209;0.4987343;0.02791137,0.1305839;0.374628;0.005246561,0.1734558;0.1798988;0.02082053,0.2088236;-0.06643058;-0.003074247,-0.0947511;0.372937;-0.01463803,-0.227369;0.3404723;-0.1607837,-0.3531879;0.3486288;-0.3766611,0.07557813;0.00304743;-0.02605109,0.08595239;-0.2958906;-0.003063237,0.07504366;-0.5900221;0.05496852,0.0880755;-0.6206551;-0.002724569,-0.06615231;0.004835478;-0.04472684,-0.09985675;-0.2910862;-0.008749127,-0.0993254;-0.5858118;0.04725549,-0.1026855;-0.6144878;-0.0143788,0.01497787;0.3988053;0.02647625,24.80766
-0;0;0,0.002315322;0.199425;0.01497753,0.006270047;0.4992175;0.02375813,0.1223939;0.3772938;0.01161006,0.1691504;0.1841215;0.03393274,0.1937091;-0.06238085;0.0002658665,-0.09820955;0.3706121;-0.03060805,-0.1727046;0.3215039;-0.2096021,-0.2716902;0.3166364;-0.4391193,0.07766856;0.00552811;-0.0183585,0.08553664;-0.2938592;-0.0008846316,0.07547197;-0.586241;0.06553531,0.0873017;-0.6160289;0.006425649,-0.06119769;0.002586515;-0.05146021,-0.09835166;-0.2911347;-0.003009468,-0.09666228;-0.5846564;0.05897583,-0.08203647;-0.552559;-0.03831537,0.005014302;0.3992257;0.02348535,0;0;0,0.007554672;0.1992213;0.01593142,0.01826264;0.4987442;0.02783358,0.1306614;0.3751914;0.006038241,0.1734458;0.1804236;0.02136869,0.2086473;-0.06587888;-0.003043057,-0.09472848;0.3729596;-0.01524651,-0.2249047;0.3402367;-0.1635144,-0.3484846;0.3481044;-0.380692,0.07573089;0.003225973;-0.02558175,0.08595191;-0.2957664;-0.003240788,0.07509447;-0.5899097;0.05474033,0.08794758;-0.6201909;-0.003481053,-0.06603583;0.004702667;-0.04491274,-0.09978396;-0.2912076;-0.008882105,-0.09915905;-0.585947;0.04704873,-0.09060812;-0.55341;-0.0510427,0.01479061;0.3988143;0.02643206,24.83125
-0;0;0,0.002315322;0.199425;0.01497753,0.006270047;0.4992175;0.02375813,0.1223939;0.3772938;0.01161006,0.1691504;0.1841215;0.03393274,0.1937091;-0.06238085;0.0002658665,-0.09820955;0.3706121;-0.03060805,-0.1727046;0.3215039;-0.2096021,-0.2716902;0.3166364;-0.4391193,0.07766856;0.00552811;-0.0183585,0.08553664;-0.2938592;-0.0008846316,0.07547197;-0.586241;0.06553531,0.0873017;-0.6160289;0.006425649,-0.06119769;0.002586515;-0.05146021,-0.09835166;-0.2911347;-0.003009468,-0.09666228;-0.5846564;0.05897583,-0.08203647;-0.552559;-0.03831537,0.005014302;0.3992257;0.02348535,0;0;0,0.007554672;0.1992213;0.01593142,0.01826264;0.4987442;0.02783358,0.1306614;0.3751914;0.006038241,0.1734458;0.1804236;0.02136869,0.2086473;-0.06587888;-0.003043057,-0.09472848;0.3729596;-0.01524651,-0.2249047;0.3402367;-0.1635144,-0.3484846;0.3481044;-0.380692,0.07573089;0.003225973;-0.02558175,0.08595191;-0.2957664;-0.003240788,0.07509447;-0.5899097;0.05474033,0.08794758;-0.6201909;-0.003481053,-0.06603583;0.004702667;-0.04491274,-0.09978396;-0.2912076;-0.008882105,-0.09915905;-0.585947;0.04704873,-0.09060812;-0.55341;-0.0510427,0.01479061;0.3988143;0.02643206,24.84235
-0;0;0,0.002252706;0.1994274;0.01495487,0.006007529;0.4992233;0.02371471,0.1222342;0.3773078;0.01188735,0.1688849;0.1840882;0.03402046,0.1934838;-0.06240192;0.0002932884,-0.09834817;0.3708421;-0.03087302,-0.1758104;0.3177447;-0.2074524,-0.2665362;0.3150088;-0.440393,0.07774463;0.00548721;-0.01804608,0.08555384;-0.2939139;-0.0007831622,0.07551111;-0.5862661;0.06577007,0.0872255;-0.615841;0.006351084,-0.06103506;0.002529653;-0.0516558,-0.09827062;-0.2911177;-0.002821676,-0.09644171;-0.5846312;0.05919813,-0.08167454;-0.5525401;-0.0380706,0.004821019;0.3992307;0.02344278,0;0;0,0.007554672;0.1992213;0.01593142,0.01826264;0.4987442;0.02783358,0.1306614;0.3751914;0.006038241,0.1734458;0.1804236;0.02136869,0.2086473;-0.06587888;-0.003043057,-0.09472848;0.3729596;-0.01524651,-0.2249047;0.3402367;-0.1635144,-0.3484846;0.3481044;-0.380692,0.07573089;0.003225973;-0.02558175,0.08595191;-0.2957664;-0.003240788,0.07509447;-0.5899097;0.05474033,0.08794758;-0.6201909;-0.003481053,-0.06603583;0.004702667;-0.04491274,-0.09978396;-0.2912076;-0.008882105,-0.09915905;-0.585947;0.04704873,-0.09060812;-0.55341;-0.0510427,0.01479061;0.3988143;0.02643206,24.86351
-0;0;0,0.002252706;0.1994274;0.01495487,0.006007529;0.4992233;0.02371471,0.1222342;0.3773078;0.01188735,0.1688849;0.1840882;0.03402046,0.1934838;-0.06240192;0.0002932884,-0.09834817;0.3708421;-0.03087302,-0.1758104;0.3177447;-0.2074524,-0.2665362;0.3150088;-0.440393,0.07774463;0.00548721;-0.01804608,0.08555384;-0.2939139;-0.0007831622,0.07551111;-0.5862661;0.06577007,0.0872255;-0.615841;0.006351084,-0.06103506;0.002529653;-0.0516558,-0.09827062;-0.2911177;-0.002821676,-0.09644171;-0.5846312;0.05919813,-0.08167454;-0.5525401;-0.0380706,0.004821019;0.3992307;0.02344278,0;0;0,0.007507953;0.1992127;0.01606011,0.01817579;0.4987264;0.02824143,0.1305782;0.3751551;0.006351171,0.173458;0.1803918;0.02147001,0.2086834;-0.06594899;-0.002517095,-0.09460418;0.3729774;-0.01550259,-0.2213565;0.3397523;-0.1665984,-0.3414742;0.3454813;-0.3857762,0.07577183;0.003164863;-0.02546786,0.08589677;-0.2958395;-0.003244227,0.07492166;-0.5898824;0.05522227,0.08830474;-0.6194402;-0.003866147,-0.06580641;0.004819362;-0.04523593,-0.0996389;-0.2910307;-0.008792836,-0.09902271;-0.5858826;0.0465424,-0.1023375;-0.6151426;-0.01434158,0.01470936;0.3987979;0.02673311,24.88566
-0;0;0,0.002186585;0.1994332;0.01488701,0.005588167;0.4992402;0.02339514,0.122161;0.3780575;0.01245238,0.1692337;0.1849537;0.03470329,0.1937683;-0.06144753;0.0002868883,-0.09851077;0.3708137;-0.03130645,-0.1763481;0.3170533;-0.2075199,-0.2641062;0.3133423;-0.4415813,0.07779177;0.005501467;-0.01783743,0.08558807;-0.2939196;-0.0009175297,0.07544711;-0.5862344;0.065785,0.08727871;-0.6158008;0.006377935,-0.06099142;0.002520079;-0.05170778,-0.09832572;-0.2911074;-0.002830163,-0.09663172;-0.5847012;0.05881285,-0.09775614;-0.6151263;-0.0006054379,0.004537804;0.3992459;0.0232151,0;0;0,0.007507953;0.1992127;0.01606011,0.01817579;0.4987264;0.02824143,0.1305782;0.3751551;0.006351171,0.173458;0.1803918;0.02147001,0.2086834;-0.06594899;-0.002517095,-0.09460418;0.3729774;-0.01550259,-0.2213565;0.3397523;-0.1665984,-0.3414742;0.3454813;-0.3857762,0.07577183;0.003164863;-0.02546786,0.08589677;-0.2958395;-0.003244227,0.07492166;-0.5898824;0.05522227,0.08830474;-0.6194402;-0.003866147,-0.06580641;0.004819362;-0.04523593,-0.0996389;-0.2910307;-0.008792836,-0.09902271;-0.5858826;0.0465424,-0.1023375;-0.6151426;-0.01434158,0.01470936;0.3987979;0.02673311,24.89697
-0;0;0,0.002186585;0.1994332;0.01488701,0.005588167;0.4992402;0.02339514,0.122161;0.3780575;0.01245238,0.1692337;0.1849537;0.03470329,0.1937683;-0.06144753;0.0002868883,-0.09851077;0.3708137;-0.03130645,-0.1763481;0.3170533;-0.2075199,-0.2641062;0.3133423;-0.4415813,0.07779177;0.005501467;-0.01783743,0.08558807;-0.2939196;-0.0009175297,0.07544711;-0.5862344;0.065785,0.08727871;-0.6158008;0.006377935,-0.06099142;0.002520079;-0.05170778,-0.09832572;-0.2911074;-0.002830163,-0.09663172;-0.5847012;0.05881285,-0.09775614;-0.6151263;-0.0006054379,0.004537804;0.3992459;0.0232151,0;0;0,0.007507953;0.1992127;0.01606011,0.01817579;0.4987264;0.02824143,0.1305782;0.3751551;0.006351171,0.173458;0.1803918;0.02147001,0.2086834;-0.06594899;-0.002517095,-0.09460418;0.3729774;-0.01550259,-0.2213565;0.3397523;-0.1665984,-0.3414742;0.3454813;-0.3857762,0.07577183;0.003164863;-0.02546786,0.08589677;-0.2958395;-0.003244227,0.07492166;-0.5898824;0.05522227,0.08830474;-0.6194402;-0.003866147,-0.06580641;0.004819362;-0.04523593,-0.0996389;-0.2910307;-0.008792836,-0.09902271;-0.5858826;0.0465424,-0.1023375;-0.6151426;-0.01434158,0.01470936;0.3987979;0.02673311,24.90802
-0;0;0,0.002129878;0.1994334;0.01489171,0.005430385;0.4992418;0.02339683,0.1221001;0.3782254;0.01278918,0.1692806;0.1851645;0.03518298,0.1937607;-0.06123526;0.0007171519,-0.09880053;0.3708739;-0.03101817,-0.1673737;0.3319521;-0.2148192,-0.2666949;0.3077312;-0.4429609,0.07781202;0.005501308;-0.01774893,0.08558585;-0.2939308;-0.001016149,0.07538641;-0.5862124;0.06582271,0.08726934;-0.6157486;0.006385446,-0.06099182;0.002523746;-0.05170714,-0.09842305;-0.2910962;-0.002857823,-0.09667963;-0.5846627;0.0589129,-0.0969153;-0.6149198;-0.0007423274,0.004416589;0.3992471;0.02321457,0;0;0,0.007441849;0.1991996;0.01625178,0.01801739;0.4987074;0.02865631,0.1304078;0.3750024;0.0066671,0.173327;0.1802489;0.02180078,0.2085503;-0.06607684;-0.002343571,-0.09441696;0.3728854;-0.01594897,-0.2180519;0.3392534;-0.1695175,-0.3358343;0.3435831;-0.389991,0.07587063;0.003142552;-0.0251748,0.08581005;-0.2958904;-0.003254522,0.07484362;-0.5899359;0.05520023,0.08811618;-0.6192676;-0.004216246,-0.06572339;0.004806375;-0.04535784,-0.09962265;-0.2910256;-0.008830041,-0.09909793;-0.5858572;0.04661453,-0.1024663;-0.6147006;-0.01480508,0.01457104;0.3987792;0.02707574,24.93052
-0;0;0,0.002129878;0.1994334;0.01489171,0.005430385;0.4992418;0.02339683,0.1221001;0.3782254;0.01278918,0.1692806;0.1851645;0.03518298,0.1937607;-0.06123526;0.0007171519,-0.09880053;0.3708739;-0.03101817,-0.1673737;0.3319521;-0.2148192,-0.2666949;0.3077312;-0.4429609,0.07781202;0.005501308;-0.01774893,0.08558585;-0.2939308;-0.001016149,0.07538641;-0.5862124;0.06582271,0.08726934;-0.6157486;0.006385446,-0.06099182;0.002523746;-0.05170714,-0.09842305;-0.2910962;-0.002857823,-0.09667963;-0.5846627;0.0589129,-0.0969153;-0.6149198;-0.0007423274,0.004416589;0.3992471;0.02321457,0;0;0,0.007441849;0.1991996;0.01625178,0.01801739;0.4987074;0.02865631,0.1304078;0.3750024;0.0066671,0.173327;0.1802489;0.02180078,0.2085503;-0.06607684;-0.002343571,-0.09441696;0.3728854;-0.01594897,-0.2180519;0.3392534;-0.1695175,-0.3358343;0.3435831;-0.389991,0.07587063;0.003142552;-0.0251748,0.08581005;-0.2958904;-0.003254522,0.07484362;-0.5899359;0.05520023,0.08811618;-0.6192676;-0.004216246,-0.06572339;0.004806375;-0.04535784,-0.09962265;-0.2910256;-0.008830041,-0.09909793;-0.5858572;0.04661453,-0.1024663;-0.6147006;-0.01480508,0.01457104;0.3987792;0.02707574,24.94196
-0;0;0,0.002129878;0.1994334;0.01489171,0.005430385;0.4992418;0.02339683,0.1221001;0.3782254;0.01278918,0.1692806;0.1851645;0.03518298,0.1937607;-0.06123526;0.0007171519,-0.09880053;0.3708739;-0.03101817,-0.1673737;0.3319521;-0.2148192,-0.2666949;0.3077312;-0.4429609,0.07781202;0.005501308;-0.01774893,0.08558585;-0.2939308;-0.001016149,0.07538641;-0.5862124;0.06582271,0.08726934;-0.6157486;0.006385446,-0.06099182;0.002523746;-0.05170714,-0.09842305;-0.2910962;-0.002857823,-0.09667963;-0.5846627;0.0589129,-0.0969153;-0.6149198;-0.0007423274,0.004416589;0.3992471;0.02321457,0;0;0,0.007441849;0.1991996;0.01625178,0.01801739;0.4987074;0.02865631,0.1304078;0.3750024;0.0066671,0.173327;0.1802489;0.02180078,0.2085503;-0.06607684;-0.002343571,-0.09441696;0.3728854;-0.01594897,-0.2180519;0.3392534;-0.1695175,-0.3358343;0.3435831;-0.389991,0.07587063;0.003142552;-0.0251748,0.08581005;-0.2958904;-0.003254522,0.07484362;-0.5899359;0.05520023,0.08811618;-0.6192676;-0.004216246,-0.06572339;0.004806375;-0.04535784,-0.09962265;-0.2910256;-0.008830041,-0.09909793;-0.5858572;0.04661453,-0.1024663;-0.6147006;-0.01480508,0.01457104;0.3987792;0.02707574,24.95481
-0;0;0,0.002088979;0.1994374;0.01484417,0.005264289;0.4992508;0.02321877,0.1219973;0.3782473;0.01284765,0.1689367;0.1851441;0.03538381,0.193528;-0.0612576;0.001011472,-0.09875979;0.3709811;-0.03151097,-0.1671544;0.3323918;-0.2154486,-0.2637409;0.3068196;-0.4446147,0.07788701;0.005472225;-0.01742609,0.08560408;-0.2939761;-0.0009584725,0.07502989;-0.5862221;0.0659779,0.08744429;-0.615453;0.006242324,-0.06090187;0.002532507;-0.05181263,-0.09846465;-0.2910573;-0.002883796,-0.096589;-0.5845186;0.05938167,-0.08140183;-0.5524545;-0.03781737,0.004294654;0.3992555;0.02308147,0;0;0,0.007400477;0.1991873;0.01642109,0.01792927;0.4986875;0.02904215,0.1303626;0.3748906;0.007309245,0.1732472;0.1801182;0.02229757,0.2084586;-0.06615341;-0.002409508,-0.09423556;0.3730148;-0.01638515,-0.2154656;0.3383703;-0.1716367,-0.3231813;0.3399909;-0.3972352,0.07597465;0.00314357;-0.024859,0.08591637;-0.295906;-0.003168182,0.07493144;-0.5899718;0.05518133,0.08788599;-0.6191682;-0.004485276,-0.06563312;0.004807215;-0.04548829,-0.09953646;-0.2910077;-0.008825969,-0.09901716;-0.5858543;0.04653836,-0.102448;-0.6143177;-0.01536257,0.01448792;0.3987604;0.02739122,24.97461
-0;0;0,0.002088979;0.1994374;0.01484417,0.005264289;0.4992508;0.02321877,0.1219973;0.3782473;0.01284765,0.1689367;0.1851441;0.03538381,0.193528;-0.0612576;0.001011472,-0.09875979;0.3709811;-0.03151097,-0.1671544;0.3323918;-0.2154486,-0.2637409;0.3068196;-0.4446147,0.07788701;0.005472225;-0.01742609,0.08560408;-0.2939761;-0.0009584725,0.07502989;-0.5862221;0.0659779,0.08744429;-0.615453;0.006242324,-0.06090187;0.002532507;-0.05181263,-0.09846465;-0.2910573;-0.002883796,-0.096589;-0.5845186;0.05938167,-0.08140183;-0.5524545;-0.03781737,0.004294654;0.3992555;0.02308147,0;0;0,0.007400477;0.1991873;0.01642109,0.01792927;0.4986875;0.02904215,0.1303626;0.3748906;0.007309245,0.1732472;0.1801182;0.02229757,0.2084586;-0.06615341;-0.002409508,-0.09423556;0.3730148;-0.01638515,-0.2154656;0.3383703;-0.1716367,-0.3231813;0.3399909;-0.3972352,0.07597465;0.00314357;-0.024859,0.08591637;-0.295906;-0.003168182,0.07493144;-0.5899718;0.05518133,0.08788599;-0.6191682;-0.004485276,-0.06563312;0.004807215;-0.04548829,-0.09953646;-0.2910077;-0.008825969,-0.09901716;-0.5858543;0.04653836,-0.102448;-0.6143177;-0.01536257,0.01448792;0.3987604;0.02739122,24.98615
-0;0;0,0.002063614;0.1994391;0.0148248,0.005181305;0.499254;0.02317279,0.1219957;0.3784643;0.01319362,0.169047;0.1853492;0.03539146,0.1934814;-0.06114624;0.001583658,-0.09897205;0.3710098;-0.0312996,-0.1666371;0.3327881;-0.2155835,-0.2601081;0.3057722;-0.4458731,0.07793507;0.005449327;-0.0172171,0.08569627;-0.2940052;-0.0008842256,0.07523576;-0.586279;0.06594856,0.08742052;-0.6158134;0.006570008,-0.06089403;0.002530888;-0.05182193,-0.09845579;-0.291053;-0.002856612,-0.09652055;-0.5844902;0.05952033,-0.0813141;-0.5524285;-0.03767523,0.004222167;0.3992586;0.02304148,0;0;0,0.007400477;0.1991873;0.01642109,0.01792927;0.4986875;0.02904215,0.1303626;0.3748906;0.007309245,0.1732472;0.1801182;0.02229757,0.2084586;-0.06615341;-0.002409508,-0.09423556;0.3730148;-0.01638515,-0.2154656;0.3383703;-0.1716367,-0.3231813;0.3399909;-0.3972352,0.07597465;0.00314357;-0.024859,0.08591637;-0.295906;-0.003168182,0.07493144;-0.5899718;0.05518133,0.08788599;-0.6191682;-0.004485276,-0.06563312;0.004807215;-0.04548829,-0.09953646;-0.2910077;-0.008825969,-0.09901716;-0.5858543;0.04653836,-0.102448;-0.6143177;-0.01536257,0.01448792;0.3987604;0.02739122,24.99762
-0;0;0,0.002063614;0.1994391;0.0148248,0.005181305;0.499254;0.02317279,0.1219957;0.3784643;0.01319362,0.169047;0.1853492;0.03539146,0.1934814;-0.06114624;0.001583658,-0.09897205;0.3710098;-0.0312996,-0.1666371;0.3327881;-0.2155835,-0.2601081;0.3057722;-0.4458731,0.07793507;0.005449327;-0.0172171,0.08569627;-0.2940052;-0.0008842256,0.07523576;-0.586279;0.06594856,0.08742052;-0.6158134;0.006570008,-0.06089403;0.002530888;-0.05182193,-0.09845579;-0.291053;-0.002856612,-0.09652055;-0.5844902;0.05952033,-0.0813141;-0.5524285;-0.03767523,0.004222167;0.3992586;0.02304148,0;0;0,0.007402912;0.1991687;0.01664366,0.01800218;0.4986448;0.02979133,0.1303961;0.3748893;0.007796889,0.17313;0.1800753;0.02267461,0.2085815;-0.06611751;-0.002470475,-0.09392463;0.3730644;-0.01656154,-0.2128217;0.3372598;-0.1733465,-0.300081;0.3545301;-0.4069862,0.07603133;0.00314024;-0.02468554,0.08587231;-0.2959315;-0.003255159,0.07466271;-0.589919;0.0554448,0.0878117;-0.6189922;-0.004342616,-0.06544495;0.004838475;-0.0457553,-0.09954657;-0.2909184;-0.008809909,-0.09893239;-0.5858731;0.0459746,-0.1024175;-0.6142824;-0.01599189,0.01452456;0.3987224;0.02794061,25.01967
-0;0;0,0.002026366;0.1994427;0.0147824,0.005061599;0.4992612;0.0230229,0.1219351;0.3784149;0.01358001,0.1689834;0.1852973;0.03576205,0.1932097;-0.06128684;0.002455138,-0.09875507;0.3707218;-0.03183945,-0.1637285;0.3325897;-0.2171079,-0.2570088;0.3043962;-0.4473337,0.07802251;0.005426005;-0.01682398,0.0857138;-0.2940556;-0.0009621494,0.07510524;-0.5863135;0.06591699,0.08729152;-0.6155809;0.006182775,-0.06074239;0.002472277;-0.0520024,-0.09845516;-0.2910619;-0.002855442,-0.09652057;-0.5845242;0.05940353,-0.08102196;-0.5524793;-0.03774278,0.004130945;0.3992656;0.02293023,0;0;0,0.007402912;0.1991687;0.01664366,0.01800218;0.4986448;0.02979133,0.1303961;0.3748893;0.007796889,0.17313;0.1800753;0.02267461,0.2085815;-0.06611751;-0.002470475,-0.09392463;0.3730644;-0.01656154,-0.2128217;0.3372598;-0.1733465,-0.300081;0.3545301;-0.4069862,0.07603133;0.00314024;-0.02468554,0.08587231;-0.2959315;-0.003255159,0.07466271;-0.589919;0.0554448,0.0878117;-0.6189922;-0.004342616,-0.06544495;0.004838475;-0.0457553,-0.09954657;-0.2909184;-0.008809909,-0.09893239;-0.5858731;0.0459746,-0.1024175;-0.6142824;-0.01599189,0.01452456;0.3987224;0.02794061,25.03103
-0;0;0,0.002026366;0.1994427;0.0147824,0.005061599;0.4992612;0.0230229,0.1219351;0.3784149;0.01358001,0.1689834;0.1852973;0.03576205,0.1932097;-0.06128684;0.002455138,-0.09875507;0.3707218;-0.03183945,-0.1637285;0.3325897;-0.2171079,-0.2570088;0.3043962;-0.4473337,0.07802251;0.005426005;-0.01682398,0.0857138;-0.2940556;-0.0009621494,0.07510524;-0.5863135;0.06591699,0.08729152;-0.6155809;0.006182775,-0.06074239;0.002472277;-0.0520024,-0.09845516;-0.2910619;-0.002855442,-0.09652057;-0.5845242;0.05940353,-0.08102196;-0.5524793;-0.03774278,0.004130945;0.3992656;0.02293023,0;0;0,0.007402912;0.1991687;0.01664366,0.01800218;0.4986448;0.02979133,0.1303961;0.3748893;0.007796889,0.17313;0.1800753;0.02267461,0.2085815;-0.06611751;-0.002470475,-0.09392463;0.3730644;-0.01656154,-0.2128217;0.3372598;-0.1733465,-0.300081;0.3545301;-0.4069862,0.07603133;0.00314024;-0.02468554,0.08587231;-0.2959315;-0.003255159,0.07466271;-0.589919;0.0554448,0.0878117;-0.6189922;-0.004342616,-0.06544495;0.004838475;-0.0457553,-0.09954657;-0.2909184;-0.008809909,-0.09893239;-0.5858731;0.0459746,-0.1024175;-0.6142824;-0.01599189,0.01452456;0.3987224;0.02794061,25.05333
-0;0;0,0.00193607;0.1994462;0.0147475,0.004732134;0.4992698;0.02288358,0.1218124;0.3788345;0.01404301,0.1687649;0.1857034;0.03631113,0.1929701;-0.06102711;0.004090846,-0.0989321;0.3708059;-0.03209999,-0.1626513;0.3323952;-0.2177461,-0.2510212;0.2968231;-0.4488854,0.07805654;0.005435126;-0.01666235,0.08562385;-0.2940559;-0.0009199083,0.07398167;-0.5863358;0.06569088,0.08761963;-0.6157268;0.006436579,-0.060654;0.002470528;-0.05210555,-0.0985281;-0.2910097;-0.002760392,-0.09658831;-0.5844823;0.05944933,-0.09659053;-0.614273;-0.0008287579,0.003892389;0.3992734;0.02282475,0;0;0,0.00736017;0.1991616;0.01674831,0.01795978;0.4986326;0.0300031,0.1303713;0.3748168;0.008211736,0.1732306;0.1800326;0.02311728,0.2086884;-0.06614295;-0.002187727,-0.09360136;0.3730058;-0.01725667,-0.2096782;0.3357986;-0.1758183,-0.3017238;0.3475019;-0.4079618,0.07607578;0.003177717;-0.02454339,0.08599547;-0.2959032;-0.003277628,0.07484113;-0.5899123;0.05532435,0.08775321;-0.6199055;-0.003279142,-0.06536148;0.00485943;-0.04587224,-0.09937584;-0.2908904;-0.008790333,-0.09893855;-0.5858338;0.04605685,-0.1022909;-0.6136419;-0.01667008,0.01447221;0.3987111;0.02812325,25.0645
-0;0;0,0.00193607;0.1994462;0.0147475,0.004732134;0.4992698;0.02288358,0.1218124;0.3788345;0.01404301,0.1687649;0.1857034;0.03631113,0.1929701;-0.06102711;0.004090846,-0.0989321;0.3708059;-0.03209999,-0.1626513;0.3323952;-0.2177461,-0.2510212;0.2968231;-0.4488854,0.07805654;0.005435126;-0.01666235,0.08562385;-0.2940559;-0.0009199083,0.07398167;-0.5863358;0.06569088,0.08761963;-0.6157268;0.006436579,-0.060654;0.002470528;-0.05210555,-0.0985281;-0.2910097;-0.002760392,-0.09658831;-0.5844823;0.05944933,-0.09659053;-0.614273;-0.0008287579,0.003892389;0.3992734;0.02282475,0;0;0,0.00736017;0.1991616;0.01674831,0.01795978;0.4986326;0.0300031,0.1303713;0.3748168;0.008211736,0.1732306;0.1800326;0.02311728,0.2086884;-0.06614295;-0.002187727,-0.09360136;0.3730058;-0.01725667,-0.2096782;0.3357986;-0.1758183,-0.3017238;0.3475019;-0.4079618,0.07607578;0.003177717;-0.02454339,0.08599547;-0.2959032;-0.003277628,0.07484113;-0.5899123;0.05532435,0.08775321;-0.6199055;-0.003279142,-0.06536148;0.00485943;-0.04587224,-0.09937584;-0.2908904;-0.008790333,-0.09893855;-0.5858338;0.04605685,-0.1022909;-0.6136419;-0.01667008,0.01447221;0.3987111;0.02812325,25.08663
-0;0;0,0.001908038;0.1994496;0.0147052,0.004655968;0.4992747;0.02281506,0.1217303;0.3786628;0.0141899,0.1687514;0.1855856;0.03677781,0.1928543;-0.06114349;0.004470058,-0.09890378;0.3707141;-0.03229369,-0.1614434;0.3319698;-0.2182713,-0.2408605;0.2915293;-0.4518468,0.07807861;0.005433796;-0.0165591,0.085658;-0.2940663;-0.0009944364,0.0740818;-0.5863689;0.06552743,0.08818702;-0.6154031;0.005906593,-0.06059545;0.002462507;-0.05217401,-0.09848624;-0.2909985;-0.002727509,-0.09661703;-0.584496;0.05936706,-0.09701286;-0.6134709;-0.001974709,0.003825397;0.3992781;0.02275908,0;0;0,0.00736017;0.1991616;0.01674831,0.01795978;0.4986326;0.0300031,0.1303713;0.3748168;0.008211736,0.1732306;0.1800326;0.02311728,0.2086884;-0.06614295;-0.002187727,-0.09360136;0.3730058;-0.01725667,-0.2096782;0.3357986;-0.1758183,-0.3017238;0.3475019;-0.4079618,0.07607578;0.003177717;-0.02454339,0.08599547;-0.2959032;-0.003277628,0.07484113;-0.5899123;0.05532435,0.08775321;-0.6199055;-0.003279142,-0.06536148;0.00485943;-0.04587224,-0.09937584;-0.2908904;-0.008790333,-0.09893855;-0.5858338;0.04605685,-0.1022909;-0.6136419;-0.01667008,0.01447221;0.3987111;0.02812325,25.09816
-0;0;0,0.001908038;0.1994496;0.0147052,0.004655968;0.4992747;0.02281506,0.1217303;0.3786628;0.0141899,0.1687514;0.1855856;0.03677781,0.1928543;-0.06114349;0.004470058,-0.09890378;0.3707141;-0.03229369,-0.1614434;0.3319698;-0.2182713,-0.2408605;0.2915293;-0.4518468,0.07807861;0.005433796;-0.0165591,0.085658;-0.2940663;-0.0009944364,0.0740818;-0.5863689;0.06552743,0.08818702;-0.6154031;0.005906593,-0.06059545;0.002462507;-0.05217401,-0.09848624;-0.2909985;-0.002727509,-0.09661703;-0.584496;0.05936706,-0.09701286;-0.6134709;-0.001974709,0.003825397;0.3992781;0.02275908,0;0;0,0.007272612;0.199161;0.01679277,0.01768055;0.4986388;0.03004141,0.1302739;0.3749286;0.008817157,0.1730925;0.1801212;0.02353601,0.2084539;-0.06602356;-0.002199581,-0.09361774;0.37307;-0.0177097,-0.1908551;0.344881;-0.1901924,-0.3034773;0.3445256;-0.4133877,0.07614207;0.003142557;-0.02434151,0.08603571;-0.2959542;-0.003288202,0.07490613;-0.5899624;0.0553237,0.08720418;-0.6198819;-0.003511883,-0.06530969;0.004847564;-0.0459472,-0.09932508;-0.2908866;-0.008741196,-0.099067;-0.5858331;0.04609023,-0.1010213;-0.6154059;-0.01444365,0.0142583;0.3987148;0.02817165,25.12016
-0;0;0,0.001889455;0.1994488;0.01471756,0.004611082;0.4992722;0.02290634,0.121727;0.3786994;0.0147278,0.1690661;0.1857536;0.03776914,0.1929743;-0.06097858;0.00533988,-0.09883379;0.3707861;-0.03248482,-0.1602446;0.32132;-0.2162831,-0.2364993;0.2983705;-0.4532611,0.07814263;0.005436012;-0.0162536,0.08587833;-0.294074;-0.0009593628,0.07433444;-0.586351;0.06568058,0.08844189;-0.6149718;0.005516134,-0.06054166;0.002503682;-0.05223445,-0.09839593;-0.2909351;-0.002628874,-0.09625392;-0.5844191;0.05952089,-0.09803361;-0.6141562;-0.0008017942,0.003781463;0.3992757;0.02281842,0;0;0,0.007272612;0.199161;0.01679277,0.01768055;0.4986388;0.03004141,0.1302739;0.3749286;0.008817157,0.1730925;0.1801212;0.02353601,0.2084539;-0.06602356;-0.002199581,-0.09361774;0.37307;-0.0177097,-0.1908551;0.344881;-0.1901924,-0.3034773;0.3445256;-0.4133877,0.07614207;0.003142557;-0.02434151,0.08603571;-0.2959542;-0.003288202,0.07490613;-0.5899624;0.0553237,0.08720418;-0.6198819;-0.003511883,-0.06530969;0.004847564;-0.0459472,-0.09932508;-0.2908866;-0.008741196,-0.099067;-0.5858331;0.04609023,-0.1010213;-0.6154059;-0.01444365,0.0142583;0.3987148;0.02817165,25.13173
-0;0;0,0.001889455;0.1994488;0.01471756,0.004611082;0.4992722;0.02290634,0.121727;0.3786994;0.0147278,0.1690661;0.1857536;0.03776914,0.1929743;-0.06097858;0.00533988,-0.09883379;0.3707861;-0.03248482,-0.1602446;0.32132;-0.2162831,-0.2364993;0.2983705;-0.4532611,0.07814263;0.005436012;-0.0162536,0.08587833;-0.294074;-0.0009593628,0.07433444;-0.586351;0.06568058,0.08844189;-0.6149718;0.005516134,-0.06054166;0.002503682;-0.05223445,-0.09839593;-0.2909351;-0.002628874,-0.09625392;-0.5844191;0.05952089,-0.09803361;-0.6141562;-0.0008017942,0.003781463;0.3992757;0.02281842,0;0;0,0.007272612;0.199161;0.01679277,0.01768055;0.4986388;0.03004141,0.1302739;0.3749286;0.008817157,0.1730925;0.1801212;0.02353601,0.2084539;-0.06602356;-0.002199581,-0.09361774;0.37307;-0.0177097,-0.1908551;0.344881;-0.1901924,-0.3034773;0.3445256;-0.4133877,0.07614207;0.003142557;-0.02434151,0.08603571;-0.2959542;-0.003288202,0.07490613;-0.5899624;0.0553237,0.08720418;-0.6198819;-0.003511883,-0.06530969;0.004847564;-0.0459472,-0.09932508;-0.2908866;-0.008741196,-0.099067;-0.5858331;0.04609023,-0.1010213;-0.6154059;-0.01444365,0.0142583;0.3987148;0.02817165,25.15362
-0;0;0,0.001834848;0.1994503;0.01470393,0.004471578;0.499275;0.02287918,0.1216156;0.3785673;0.01493032,0.1689688;0.1856498;0.03817924,0.1929432;-0.06111281;0.006031502,-0.09919186;0.3709143;-0.03209869,-0.1593633;0.3193173;-0.215721,-0.2357288;0.2992989;-0.4529289,0.0781982;0.005402381;-0.01599551,0.0858002;-0.2941185;-0.0008482635,0.07426337;-0.5863237;0.06610733,0.08841808;-0.6138263;0.004520044,-0.06052396;0.002521256;-0.05225413,-0.09846204;-0.2908984;-0.002598763,-0.09628832;-0.5843875;0.05952522,-0.09792816;-0.6140092;-0.0009536631,0.003678283;0.3992782;0.02279413,0;0;0,0.007160685;0.1991604;0.0168488,0.01732264;0.4986463;0.03009564,0.1301043;0.3752803;0.009089341,0.1726942;0.180431;0.02391733,0.2086724;-0.06557567;-0.002279479,-0.09408992;0.3718194;-0.01644636,-0.1869997;0.3473014;-0.1918506,-0.2957672;0.3430232;-0.416909,0.07618745;0.003160768;-0.02419672,0.08591437;-0.2959539;-0.003320212,0.07490581;-0.590028;0.05498257,0.08741083;-0.6201115;-0.003585927,-0.06526662;0.004787923;-0.04601461,-0.09926018;-0.2909414;-0.008750942,-0.09895192;-0.5859218;0.0458979,-0.1011143;-0.6145662;-0.01583034,0.01398362;0.3987193;0.02823594,25.1651
-0;0;0,0.001834848;0.1994503;0.01470393,0.004471578;0.499275;0.02287918,0.1216156;0.3785673;0.01493032,0.1689688;0.1856498;0.03817924,0.1929432;-0.06111281;0.006031502,-0.09919186;0.3709143;-0.03209869,-0.1593633;0.3193173;-0.215721,-0.2357288;0.2992989;-0.4529289,0.0781982;0.005402381;-0.01599551,0.0858002;-0.2941185;-0.0008482635,0.07426337;-0.5863237;0.06610733,0.08841808;-0.6138263;0.004520044,-0.06052396;0.002521256;-0.05225413,-0.09846204;-0.2908984;-0.002598763,-0.09628832;-0.5843875;0.05952522,-0.09792816;-0.6140092;-0.0009536631,0.003678283;0.3992782;0.02279413,0;0;0,0.007160685;0.1991604;0.0168488,0.01732264;0.4986463;0.03009564,0.1301043;0.3752803;0.009089341,0.1726942;0.180431;0.02391733,0.2086724;-0.06557567;-0.002279479,-0.09408992;0.3718194;-0.01644636,-0.1869997;0.3473014;-0.1918506,-0.2957672;0.3430232;-0.416909,0.07618745;0.003160768;-0.02419672,0.08591437;-0.2959539;-0.003320212,0.07490581;-0.590028;0.05498257,0.08741083;-0.6201115;-0.003585927,-0.06526662;0.004787923;-0.04601461,-0.09926018;-0.2909414;-0.008750942,-0.09895192;-0.5859218;0.0458979,-0.1011143;-0.6145662;-0.01583034,0.01398362;0.3987193;0.02823594,25.18702
-0;0;0,0.001787833;0.1994522;0.01468411,0.004241903;0.4992791;0.0228298,0.1214767;0.378694;0.01504686,0.1690394;0.1860873;0.04035361,0.1926419;-0.06046619;0.006378245,-0.09941832;0.3709465;-0.03204688,-0.1584929;0.3198031;-0.2161516,-0.2348587;0.2992117;-0.4533103,0.07826061;0.005362505;-0.01570097,0.08583171;-0.2941727;-0.0008244235,0.07428665;-0.5863658;0.06618223,0.08847561;-0.6139224;0.004670795,-0.06050953;0.002532179;-0.0522703,-0.09854959;-0.2908728;-0.00260685,-0.09610749;-0.5844613;0.05903618,-0.09799596;-0.6137204;-0.001909971,0.003507578;0.3992819;0.0227561,0;0;0,0.007160685;0.1991604;0.0168488,0.01732264;0.4986463;0.03009564,0.1301043;0.3752803;0.009089341,0.1726942;0.180431;0.02391733,0.2086724;-0.06557567;-0.002279479,-0.09408992;0.3718194;-0.01644636,-0.1869997;0.3473014;-0.1918506,-0.2957672;0.3430232;-0.416909,0.07618745;0.003160768;-0.02419672,0.08591437;-0.2959539;-0.003320212,0.07490581;-0.590028;0.05498257,0.08741083;-0.6201115;-0.003585927,-0.06526662;0.004787923;-0.04601461,-0.09926018;-0.2909414;-0.008750942,-0.09895192;-0.5859218;0.0458979,-0.1011143;-0.6145662;-0.01583034,0.01398362;0.3987193;0.02823594,25.19863
-0;0;0,0.001787833;0.1994522;0.01468411,0.004241903;0.4992791;0.0228298,0.1214767;0.378694;0.01504686,0.1690394;0.1860873;0.04035361,0.1926419;-0.06046619;0.006378245,-0.09941832;0.3709465;-0.03204688,-0.1584929;0.3198031;-0.2161516,-0.2348587;0.2992117;-0.4533103,0.07826061;0.005362505;-0.01570097,0.08583171;-0.2941727;-0.0008244235,0.07428665;-0.5863658;0.06618223,0.08847561;-0.6139224;0.004670795,-0.06050953;0.002532179;-0.0522703,-0.09854959;-0.2908728;-0.00260685,-0.09610749;-0.5844613;0.05903618,-0.09799596;-0.6137204;-0.001909971,0.003507578;0.3992819;0.0227561,0;0;0,0.007105277;0.1991607;0.01686887,0.01719533;0.49865;0.03008986,0.1301897;0.3753037;0.01026843,0.1729527;0.1804431;0.02443415,0.2090708;-0.06548172;-0.002332505,-0.09361752;0.372072;-0.01795875,-0.1850546;0.3481404;-0.1942158,-0.2863125;0.3403162;-0.4226575,0.07633252;0.003155332;-0.02373582,0.08605205;-0.2959906;-0.003309505,0.07487515;-0.590033;0.05512153,0.08774422;-0.6199327;-0.003618758,-0.06512718;0.004746254;-0.04621606,-0.09919089;-0.2909458;-0.008721348,-0.09891044;-0.5859258;0.04592981,-0.1010061;-0.614198;-0.01627202,0.01387759;0.3987221;0.02824267,25.22094
-0;0;0,0.001668114;0.1994549;0.01466101,0.003942282;0.4992827;0.02283701,0.1212809;0.3788967;0.01546343,0.1689868;0.1862779;0.0404067,0.1921182;-0.06045894;0.007454365,-0.09978084;0.370943;-0.03185485,-0.1571068;0.315534;-0.2152767,-0.2275754;0.2977619;-0.4544802,0.07830711;0.005329067;-0.01547893,0.08598593;-0.2942123;-0.0007826705,0.07457398;-0.586381;0.06635364,0.08851515;-0.6139947;0.004857637,-0.06046346;0.002618777;-0.05231932,-0.0982716;-0.2907894;-0.002497885,-0.09591065;-0.5843441;0.05930868,-0.09755104;-0.6138788;-0.001284562,0.003250119;0.3992852;0.02274683,0;0;0,0.007105277;0.1991607;0.01686887,0.01719533;0.49865;0.03008986,0.1301897;0.3753037;0.01026843,0.1729527;0.1804431;0.02443415,0.2090708;-0.06548172;-0.002332505,-0.09361752;0.372072;-0.01795875,-0.1850546;0.3481404;-0.1942158,-0.2863125;0.3403162;-0.4226575,0.07633252;0.003155332;-0.02373582,0.08605205;-0.2959906;-0.003309505,0.07487515;-0.590033;0.05512153,0.08774422;-0.6199327;-0.003618758,-0.06512718;0.004746254;-0.04621606,-0.09919089;-0.2909458;-0.008721348,-0.09891044;-0.5859258;0.04592981,-0.1010061;-0.614198;-0.01627202,0.01387759;0.3987221;0.02824267,25.23205
-0;0;0,0.001668114;0.1994549;0.01466101,0.003942282;0.4992827;0.02283701,0.1212809;0.3788967;0.01546343,0.1689868;0.1862779;0.0404067,0.1921182;-0.06045894;0.007454365,-0.09978084;0.370943;-0.03185485,-0.1571068;0.315534;-0.2152767,-0.2275754;0.2977619;-0.4544802,0.07830711;0.005329067;-0.01547893,0.08598593;-0.2942123;-0.0007826705,0.07457398;-0.586381;0.06635364,0.08851515;-0.6139947;0.004857637,-0.06046346;0.002618777;-0.05231932,-0.0982716;-0.2907894;-0.002497885,-0.09591065;-0.5843441;0.05930868,-0.09755104;-0.6138788;-0.001284562,0.003250119;0.3992852;0.02274683,0;0;0,0.007105277;0.1991607;0.01686887,0.01719533;0.49865;0.03008986,0.1301897;0.3753037;0.01026843,0.1729527;0.1804431;0.02443415,0.2090708;-0.06548172;-0.002332505,-0.09361752;0.372072;-0.01795875,-0.1850546;0.3481404;-0.1942158,-0.2863125;0.3403162;-0.4226575,0.07633252;0.003155332;-0.02373582,0.08605205;-0.2959906;-0.003309505,0.07487515;-0.590033;0.05512153,0.08774422;-0.6199327;-0.003618758,-0.06512718;0.004746254;-0.04621606,-0.09919089;-0.2909458;-0.008721348,-0.09891044;-0.5859258;0.04592981,-0.1010061;-0.614198;-0.01627202,0.01387759;0.3987221;0.02824267,25.25454
-0;0;0,0.001591644;0.1994593;0.01460971,0.003648806;0.4992921;0.02265495,0.1211022;0.3790652;0.01563573,0.168727;0.1864351;0.0406467,0.1916848;-0.06038077;0.008168254,-0.1000404;0.3708743;-0.0318845,-0.1543366;0.3153956;-0.216205,-0.2208525;0.3058357;-0.4570042,0.07831552;0.005330042;-0.01543596,0.08598851;-0.2942143;-0.0007968815,0.07474854;-0.5863411;0.06654996,0.08841434;-0.6142647;0.005384874,-0.06046441;0.002644243;-0.05231695,-0.09824603;-0.2907734;-0.002531175,-0.09586588;-0.5843143;0.05934035,-0.0971077;-0.6137629;-0.001375243,0.003025414;0.3992941;0.02261095,0;0;0,0.007032538;0.1991524;0.01699582,0.01702576;0.4986363;0.03041485,0.1301235;0.3753187;0.0109731,0.172831;0.1804092;0.02462429,0.2087941;-0.06552592;-0.002256628,-0.09308366;0.3720576;-0.01924083,-0.184338;0.3463507;-0.1953425,-0.2800431;0.3419291;-0.4262559,0.07644343;0.003104659;-0.02338298,0.08604278;-0.2960656;-0.003258329,0.07475858;-0.5901005;0.05518952,0.08766386;-0.6197142;-0.00392995,-0.06493444;0.00467978;-0.0464932,-0.09921207;-0.2909497;-0.008700591,-0.09899215;-0.5859475;0.04585417,-0.08782461;-0.5534305;-0.05197033,0.01373722;0.3987088;0.02849816,25.27645
-0;0;0,0.001591644;0.1994593;0.01460971,0.003648806;0.4992921;0.02265495,0.1211022;0.3790652;0.01563573,0.168727;0.1864351;0.0406467,0.1916848;-0.06038077;0.008168254,-0.1000404;0.3708743;-0.0318845,-0.1543366;0.3153956;-0.216205,-0.2208525;0.3058357;-0.4570042,0.07831552;0.005330042;-0.01543596,0.08598851;-0.2942143;-0.0007968815,0.07474854;-0.5863411;0.06654996,0.08841434;-0.6142647;0.005384874,-0.06046441;0.002644243;-0.05231695,-0.09824603;-0.2907734;-0.002531175,-0.09586588;-0.5843143;0.05934035,-0.0971077;-0.6137629;-0.001375243,0.003025414;0.3992941;0.02261095,0;0;0,0.007032538;0.1991524;0.01699582,0.01702576;0.4986363;0.03041485,0.1301235;0.3753187;0.0109731,0.172831;0.1804092;0.02462429,0.2087941;-0.06552592;-0.002256628,-0.09308366;0.3720576;-0.01924083,-0.184338;0.3463507;-0.1953425,-0.2800431;0.3419291;-0.4262559,0.07644343;0.003104659;-0.02338298,0.08604278;-0.2960656;-0.003258329,0.07475858;-0.5901005;0.05518952,0.08766386;-0.6197142;-0.00392995,-0.06493444;0.00467978;-0.0464932,-0.09921207;-0.2909497;-0.008700591,-0.09899215;-0.5859475;0.04585417,-0.08782461;-0.5534305;-0.05197033,0.01373722;0.3987088;0.02849816,25.28793
-0;0;0,0.001565668;0.1994623;0.01457133,0.003602638;0.499297;0.02255397,0.1211081;0.3792508;0.01594188,0.168397;0.186529;0.04088306,0.1916473;-0.06034304;0.00904572,-0.1001156;0.370859;-0.03190304,-0.152686;0.3160359;-0.2169186,-0.2139845;0.3003257;-0.4587774,0.07832307;0.005328681;-0.0153981,0.08590948;-0.2942153;-0.0007064184,0.07470144;-0.5864397;0.06622105,0.08891432;-0.6150355;0.006048825,-0.06046973;0.002644459;-0.05231078,-0.09826067;-0.2907898;-0.002629515,-0.09558187;-0.5842572;0.05957719,-0.09684181;-0.6138424;-0.0009588636,0.00297816;0.399299;0.02252896,0;0;0,0.007032538;0.1991524;0.01699582,0.01702576;0.4986363;0.03041485,0.1301235;0.3753187;0.0109731,0.172831;0.1804092;0.02462429,0.2087941;-0.06552592;-0.002256628,-0.09308366;0.3720576;-0.01924083,-0.184338;0.3463507;-0.1953425,-0.2800431;0.3419291;-0.4262559,0.07644343;0.003104659;-0.02338298,0.08604278;-0.2960656;-0.003258329,0.07475858;-0.5901005;0.05518952,0.08766386;-0.6197142;-0.00392995,-0.06493444;0.00467978;-0.0464932,-0.09921207;-0.2909497;-0.008700591,-0.09899215;-0.5859475;0.04585417,-0.08782461;-0.5534305;-0.05197033,0.01373722;0.3987088;0.02849816,25.29919
-0;0;0,0.001565668;0.1994623;0.01457133,0.003602638;0.499297;0.02255397,0.1211081;0.3792508;0.01594188,0.168397;0.186529;0.04088306,0.1916473;-0.06034304;0.00904572,-0.1001156;0.370859;-0.03190304,-0.152686;0.3160359;-0.2169186,-0.2139845;0.3003257;-0.4587774,0.07832307;0.005328681;-0.0153981,0.08590948;-0.2942153;-0.0007064184,0.07470144;-0.5864397;0.06622105,0.08891432;-0.6150355;0.006048825,-0.06046973;0.002644459;-0.05231078,-0.09826067;-0.2907898;-0.002629515,-0.09558187;-0.5842572;0.05957719,-0.09684181;-0.6138424;-0.0009588636,0.00297816;0.399299;0.02252896,0;0;0,0.007001894;0.1991523;0.01700996,0.01698123;0.4986366;0.03043019,0.130101;0.3751958;0.0112727,0.1730202;0.1803703;0.02544909,0.2086611;-0.06553118;-0.002158843,-0.09287448;0.3722852;-0.01990478,-0.1832263;0.3448342;-0.1962085,-0.2734455;0.3380231;-0.4292623,0.07648385;0.003093847;-0.02325184,0.08604489;-0.2960834;-0.003212521,0.07482721;-0.590124;0.05521919,0.08768284;-0.6197365;-0.003912702,-0.06471911;0.004518362;-0.04680835,-0.09905589;-0.2910532;-0.008618373,-0.09886205;-0.5860521;0.04593098,-0.08740787;-0.5535473;-0.05185818,0.01369696;0.3987089;0.02851334,25.32145
-0;0;0,0.001495029;0.1994664;0.01452383,0.003452117;0.4993021;0.02249648,0.120991;0.3793007;0.01605026,0.1680339;0.1865367;0.04113006,0.1913292;-0.0603517;0.009452753,-0.1003223;0.3708118;-0.03179814,-0.1499753;0.3170733;-0.2179345,-0.2105212;0.3134898;-0.4604657,0.07833834;0.005314782;-0.01532507,0.0858943;-0.2942281;-0.0005941577,0.07474355;-0.5864467;0.06636806,0.08887471;-0.6155003;0.006779149,-0.06044561;0.002663159;-0.05233771,-0.09812345;-0.2907903;-0.002684105,-0.09541904;-0.5842021;0.05978376,-0.09625693;-0.6143245;-4.671142E-05,0.002844164;0.3993039;0.02246862,0;0;0,0.007001894;0.1991523;0.01700996,0.01698123;0.4986366;0.03043019,0.130101;0.3751958;0.0112727,0.1730202;0.1803703;0.02544909,0.2086611;-0.06553118;-0.002158843,-0.09287448;0.3722852;-0.01990478,-0.1832263;0.3448342;-0.1962085,-0.2734455;0.3380231;-0.4292623,0.07648385;0.003093847;-0.02325184,0.08604489;-0.2960834;-0.003212521,0.07482721;-0.590124;0.05521919,0.08768284;-0.6197365;-0.003912702,-0.06471911;0.004518362;-0.04680835,-0.09905589;-0.2910532;-0.008618373,-0.09886205;-0.5860521;0.04593098,-0.08740787;-0.5535473;-0.05185818,0.01369696;0.3987089;0.02851334,25.33428
-0;0;0,0.001495029;0.1994664;0.01452383,0.003452117;0.4993021;0.02249648,0.120991;0.3793007;0.01605026,0.1680339;0.1865367;0.04113006,0.1913292;-0.0603517;0.009452753,-0.1003223;0.3708118;-0.03179814,-0.1499753;0.3170733;-0.2179345,-0.2105212;0.3134898;-0.4604657,0.07833834;0.005314782;-0.01532507,0.0858943;-0.2942281;-0.0005941577,0.07474355;-0.5864467;0.06636806,0.08887471;-0.6155003;0.006779149,-0.06044561;0.002663159;-0.05233771,-0.09812345;-0.2907903;-0.002684105,-0.09541904;-0.5842021;0.05978376,-0.09625693;-0.6143245;-4.671142E-05,0.002844164;0.3993039;0.02246862,0;0;0,0.007001894;0.1991523;0.01700996,0.01698123;0.4986366;0.03043019,0.130101;0.3751958;0.0112727,0.1730202;0.1803703;0.02544909,0.2086611;-0.06553118;-0.002158843,-0.09287448;0.3722852;-0.01990478,-0.1832263;0.3448342;-0.1962085,-0.2734455;0.3380231;-0.4292623,0.07648385;0.003093847;-0.02325184,0.08604489;-0.2960834;-0.003212521,0.07482721;-0.590124;0.05521919,0.08768284;-0.6197365;-0.003912702,-0.06471911;0.004518362;-0.04680835,-0.09905589;-0.2910532;-0.008618373,-0.09886205;-0.5860521;0.04593098,-0.08740787;-0.5535473;-0.05185818,0.01369696;0.3987089;0.02851334,25.35457
-0;0;0,0.001450751;0.1994756;0.01440135,0.003250375;0.499319;0.0220602,0.1209067;0.3795941;0.01594502,0.1679613;0.1868372;0.04105759,0.1911537;-0.06010017;0.009687897,-0.1005581;0.3708501;-0.03192229,-0.1494686;0.3168236;-0.2181718,-0.2007639;0.3109083;-0.4627813,0.07842926;0.005338012;-0.01484444,0.08589602;-0.2942336;-0.0006626574,0.07476901;-0.5864499;0.06631383,0.08905707;-0.6155021;0.006760601,-0.0603886;0.002662652;-0.0524035,-0.09792036;-0.2908296;-0.002869267,-0.09515159;-0.5842217;0.05968811,-0.0960689;-0.6131925;-0.001653325,0.002703239;0.3993205;0.02217513,0;0;0,0.006848609;0.1991576;0.0170106,0.01650672;0.4986517;0.03044305,0.1298358;0.3752039;0.01178027,0.1727353;0.1804032;0.02635166,0.2083139;-0.0654311;-0.001926709,-0.09272815;0.3722387;-0.02090951,-0.1802397;0.3407017;-0.1979608,-0.2596549;0.3344612;-0.4349297,0.07653976;0.003167018;-0.02305719,0.0859194;-0.2960225;-0.003116347,0.07513115;-0.590162;0.05489759,0.08778392;-0.6198182;-0.004219186,-0.06455579;0.004360275;-0.04704824,-0.09914382;-0.2911659;-0.008734379,-0.09916875;-0.5861504;0.04589286,-0.1009777;-0.6148623;-0.01576077,0.0133603;0.3987195;0.02852736,25.3661
-0;0;0,0.001450751;0.1994756;0.01440135,0.003250375;0.499319;0.0220602,0.1209067;0.3795941;0.01594502,0.1679613;0.1868372;0.04105759,0.1911537;-0.06010017;0.009687897,-0.1005581;0.3708501;-0.03192229,-0.1494686;0.3168236;-0.2181718,-0.2007639;0.3109083;-0.4627813,0.07842926;0.005338012;-0.01484444,0.08589602;-0.2942336;-0.0006626574,0.07476901;-0.5864499;0.06631383,0.08905707;-0.6155021;0.006760601,-0.0603886;0.002662652;-0.0524035,-0.09792036;-0.2908296;-0.002869267,-0.09515159;-0.5842217;0.05968811,-0.0960689;-0.6131925;-0.001653325,0.002703239;0.3993205;0.02217513,0;0;0,0.006848609;0.1991576;0.0170106,0.01650672;0.4986517;0.03044305,0.1298358;0.3752039;0.01178027,0.1727353;0.1804032;0.02635166,0.2083139;-0.0654311;-0.001926709,-0.09272815;0.3722387;-0.02090951,-0.1802397;0.3407017;-0.1979608,-0.2596549;0.3344612;-0.4349297,0.07653976;0.003167018;-0.02305719,0.0859194;-0.2960225;-0.003116347,0.07513115;-0.590162;0.05489759,0.08778392;-0.6198182;-0.004219186,-0.06455579;0.004360275;-0.04704824,-0.09914382;-0.2911659;-0.008734379,-0.09916875;-0.5861504;0.04589286,-0.1009777;-0.6148623;-0.01576077,0.0133603;0.3987195;0.02852736,25.38829
-0;0;0,0.001330984;0.1994839;0.01429713,0.002936595;0.4993328;0.02178841,0.1206807;0.3797254;0.01599332,0.1677931;0.1870133;0.04134031,0.1907346;-0.0599231;0.009779204,-0.100894;0.3708251;-0.03197723,-0.1477594;0.3110442;-0.2169904,-0.1958798;0.311908;-0.462314,0.07846765;0.005308484;-0.01465086,0.08594058;-0.2942675;-0.0005654534,0.07488022;-0.5864843;0.06641998,0.08848187;-0.6152867;0.006376956,-0.06029804;0.002694831;-0.05250604,-0.09768736;-0.2908072;-0.002921935,-0.09480883;-0.5841199;0.06000194,-0.09527686;-0.6135766;-0.0007138774,0.002443769;0.3993342;0.0219537,0;0;0,0.006828057;0.1991622;0.01696483,0.01648293;0.4986604;0.03031612,0.1300953;0.3757419;0.01297025,0.1728968;0.1808671;0.02682088,0.208173;-0.06500348;-0.001520874,-0.09257174;0.3722563;-0.02141294,-0.1772591;0.3383915;-0.1994051,-0.2544155;0.3316037;-0.4371042,0.07668513;0.003254625;-0.02255653,0.08606459;-0.2959677;-0.003112983,0.07523988;-0.5900599;0.05513296,0.08789825;-0.6194628;-0.004322425,-0.06446046;0.004336249;-0.047181,-0.09882484;-0.2911708;-0.008519717,-0.09922182;-0.5862404;0.04564474,-0.1015976;-0.6137258;-0.01752465,0.01333478;0.398728;0.02841737,25.39957
-0;0;0,0.001330984;0.1994839;0.01429713,0.002936595;0.4993328;0.02178841,0.1206807;0.3797254;0.01599332,0.1677931;0.1870133;0.04134031,0.1907346;-0.0599231;0.009779204,-0.100894;0.3708251;-0.03197723,-0.1477594;0.3110442;-0.2169904,-0.1958798;0.311908;-0.462314,0.07846765;0.005308484;-0.01465086,0.08594058;-0.2942675;-0.0005654534,0.07488022;-0.5864843;0.06641998,0.08848187;-0.6152867;0.006376956,-0.06029804;0.002694831;-0.05250604,-0.09768736;-0.2908072;-0.002921935,-0.09480883;-0.5841199;0.06000194,-0.09527686;-0.6135766;-0.0007138774,0.002443769;0.3993342;0.0219537,0;0;0,0.006828057;0.1991622;0.01696483,0.01648293;0.4986604;0.03031612,0.1300953;0.3757419;0.01297025,0.1728968;0.1808671;0.02682088,0.208173;-0.06500348;-0.001520874,-0.09257174;0.3722563;-0.02141294,-0.1772591;0.3383915;-0.1994051,-0.2544155;0.3316037;-0.4371042,0.07668513;0.003254625;-0.02255653,0.08606459;-0.2959677;-0.003112983,0.07523988;-0.5900599;0.05513296,0.08789825;-0.6194628;-0.004322425,-0.06446046;0.004336249;-0.047181,-0.09882484;-0.2911708;-0.008519717,-0.09922182;-0.5862404;0.04564474,-0.1015976;-0.6137258;-0.01752465,0.01333478;0.398728;0.02841737,25.41118
-0;0;0,0.001330984;0.1994839;0.01429713,0.002936595;0.4993328;0.02178841,0.1206807;0.3797254;0.01599332,0.1677931;0.1870133;0.04134031,0.1907346;-0.0599231;0.009779204,-0.100894;0.3708251;-0.03197723,-0.1477594;0.3110442;-0.2169904,-0.1958798;0.311908;-0.462314,0.07846765;0.005308484;-0.01465086,0.08594058;-0.2942675;-0.0005654534,0.07488022;-0.5864843;0.06641998,0.08848187;-0.6152867;0.006376956,-0.06029804;0.002694831;-0.05250604,-0.09768736;-0.2908072;-0.002921935,-0.09480883;-0.5841199;0.06000194,-0.09527686;-0.6135766;-0.0007138774,0.002443769;0.3993342;0.0219537,0;0;0,0.006828057;0.1991622;0.01696483,0.01648293;0.4986604;0.03031612,0.1300953;0.3757419;0.01297025,0.1728968;0.1808671;0.02682088,0.208173;-0.06500348;-0.001520874,-0.09257174;0.3722563;-0.02141294,-0.1772591;0.3383915;-0.1994051,-0.2544155;0.3316037;-0.4371042,0.07668513;0.003254625;-0.02255653,0.08606459;-0.2959677;-0.003112983,0.07523988;-0.5900599;0.05513296,0.08789825;-0.6194628;-0.004322425,-0.06446046;0.004336249;-0.047181,-0.09882484;-0.2911708;-0.008519717,-0.09922182;-0.5862404;0.04564474,-0.1015976;-0.6137258;-0.01752465,0.01333478;0.398728;0.02841737,25.42339
-0;0;0,0.001283088;0.1994863;0.01426816,0.002855141;0.4993356;0.02175818,0.1205955;0.3795373;0.01648375,0.1677222;0.1867994;0.0416069,0.1905233;-0.06019065;0.01036559,-0.1009973;0.370839;-0.03197093,-0.1543419;0.2975405;-0.2102451,-0.193239;0.3099048;-0.4568909,0.07849998;0.005277378;-0.01448801,0.08602249;-0.294304;-0.0005439706,0.07497846;-0.5865194;0.06645012,0.08850839;-0.6153138;0.006380368,-0.06023354;0.002724737;-0.05257846,-0.09754637;-0.2907635;-0.002854872,-0.09472519;-0.5841631;0.05966461,-0.09540761;-0.614083;-0.0004381947,0.002365086;0.399337;0.02191872,0;0;0,0.006828057;0.1991622;0.01696483,0.01648293;0.4986604;0.03031612,0.1300953;0.3757419;0.01297025,0.1728968;0.1808671;0.02682088,0.208173;-0.06500348;-0.001520874,-0.09257174;0.3722563;-0.02141294,-0.1772591;0.3383915;-0.1994051,-0.2544155;0.3316037;-0.4371042,0.07668513;0.003254625;-0.02255653,0.08606459;-0.2959677;-0.003112983,0.07523988;-0.5900599;0.05513296,0.08789825;-0.6194628;-0.004322425,-0.06446046;0.004336249;-0.047181,-0.09882484;-0.2911708;-0.008519717,-0.09922182;-0.5862404;0.04564474,-0.1015976;-0.6137258;-0.01752465,0.01333478;0.398728;0.02841737,25.44368
-0;0;0,0.001283088;0.1994863;0.01426816,0.002855141;0.4993356;0.02175818,0.1205955;0.3795373;0.01648375,0.1677222;0.1867994;0.0416069,0.1905233;-0.06019065;0.01036559,-0.1009973;0.370839;-0.03197093,-0.1543419;0.2975405;-0.2102451,-0.193239;0.3099048;-0.4568909,0.07849998;0.005277378;-0.01448801,0.08602249;-0.294304;-0.0005439706,0.07497846;-0.5865194;0.06645012,0.08850839;-0.6153138;0.006380368,-0.06023354;0.002724737;-0.05257846,-0.09754637;-0.2907635;-0.002854872,-0.09472519;-0.5841631;0.05966461,-0.09540761;-0.614083;-0.0004381947,0.002365086;0.399337;0.02191872,0;0;0,0.006775215;0.1991641;0.01696355,0.01640331;0.4986636;0.03030357,0.1300493;0.375851;0.01300245,0.1728311;0.1810015;0.02726327,0.2078782;-0.06490393;-0.001060355,-0.09237793;0.3724158;-0.02206462,-0.1738053;0.3358534;-0.2010416,-0.2519713;0.3307964;-0.4384537,0.07674302;0.003283051;-0.02235465,0.08604598;-0.2959542;-0.003105789,0.07525539;-0.5900621;0.05506706,0.08751053;-0.6193131;-0.004674796,-0.06430098;0.004307747;-0.04740071,-0.09877338;-0.2911616;-0.00854845,-0.09923969;-0.5862265;0.04564094,-0.101422;-0.6126248;-0.01884583,0.01326255;0.3987309;0.02840919,25.4556
-0;0;0,0.001237025;0.1994853;0.01428544,0.002828018;0.4993322;0.02187638,0.1205715;0.3796238;0.01667734,0.1675018;0.1868548;0.04192951,0.1903403;-0.06014155;0.01076529,-0.1009944;0.3707658;-0.03194392,-0.1539598;0.2976143;-0.2103915,-0.1914156;0.3066674;-0.4574038,0.07854058;0.005180176;-0.01430188,0.08638155;-0.2943957;-0.000414812,0.07540984;-0.5865831;0.06671279,0.08897895;-0.61528;0.00652409,-0.06018924;0.002816846;-0.05262432,-0.09711846;-0.2906982;-0.002773218,-0.09434246;-0.5841043;0.05971814,-0.09595931;-0.6140352;-0.0003521107,0.002320938;0.3993336;0.02199892,0;0;0,0.006775215;0.1991641;0.01696355,0.01640331;0.4986636;0.03030357,0.1300493;0.375851;0.01300245,0.1728311;0.1810015;0.02726327,0.2078782;-0.06490393;-0.001060355,-0.09237793;0.3724158;-0.02206462,-0.1738053;0.3358534;-0.2010416,-0.2519713;0.3307964;-0.4384537,0.07674302;0.003283051;-0.02235465,0.08604598;-0.2959542;-0.003105789,0.07525539;-0.5900621;0.05506706,0.08751053;-0.6193131;-0.004674796,-0.06430098;0.004307747;-0.04740071,-0.09877338;-0.2911616;-0.00854845,-0.09923969;-0.5862265;0.04564094,-0.101422;-0.6126248;-0.01884583,0.01326255;0.3987309;0.02840919,25.47767
-0;0;0,0.001237025;0.1994853;0.01428544,0.002828018;0.4993322;0.02187638,0.1205715;0.3796238;0.01667734,0.1675018;0.1868548;0.04192951,0.1903403;-0.06014155;0.01076529,-0.1009944;0.3707658;-0.03194392,-0.1539598;0.2976143;-0.2103915,-0.1914156;0.3066674;-0.4574038,0.07854058;0.005180176;-0.01430188,0.08638155;-0.2943957;-0.000414812,0.07540984;-0.5865831;0.06671279,0.08897895;-0.61528;0.00652409,-0.06018924;0.002816846;-0.05262432,-0.09711846;-0.2906982;-0.002773218,-0.09434246;-0.5841043;0.05971814,-0.09595931;-0.6140352;-0.0003521107,0.002320938;0.3993336;0.02199892,0;0;0,0.006775215;0.1991641;0.01696355,0.01640331;0.4986636;0.03030357,0.1300493;0.375851;0.01300245,0.1728311;0.1810015;0.02726327,0.2078782;-0.06490393;-0.001060355,-0.09237793;0.3724158;-0.02206462,-0.1738053;0.3358534;-0.2010416,-0.2519713;0.3307964;-0.4384537,0.07674302;0.003283051;-0.02235465,0.08604598;-0.2959542;-0.003105789,0.07525539;-0.5900621;0.05506706,0.08751053;-0.6193131;-0.004674796,-0.06430098;0.004307747;-0.04740071,-0.09877338;-0.2911616;-0.00854845,-0.09923969;-0.5862265;0.04564094,-0.101422;-0.6126248;-0.01884583,0.01326255;0.3987309;0.02840919,25.48893
-0;0;0,0.001193863;0.199487;0.01426619,0.002671522;0.4993357;0.02181066,0.1204677;0.3797007;0.0167233,0.1672164;0.1869834;0.04269676,0.189955;-0.05996026;0.01104601,-0.1011363;0.3707547;-0.0319462,-0.1537481;0.2977024;-0.2105389,-0.184886;0.2990491;-0.4585885,0.07855957;0.005190755;-0.01419327,0.08638985;-0.2943904;-0.0004145578,0.07541332;-0.5865624;0.06677918,0.08890533;-0.6160306;0.007595021,-0.06018272;0.002816892;-0.05263178,-0.09703664;-0.2907092;-0.002789825,-0.09442964;-0.5841401;0.0595927,-0.09579889;-0.6141452;-0.000384897,0.002200566;0.3993369;0.02194779,0;0;0,0.006711446;0.1991679;0.01694397,0.01611456;0.4986799;0.0301427,0.1300361;0.3762615;0.0138006,0.1729245;0.1814429;0.02816343,0.2074191;-0.06457636;0.0001519639,-0.09219839;0.3724335;-0.02295355,-0.1710984;0.3343462;-0.2027428,-0.243153;0.3320801;-0.4421232,0.07686482;0.003363529;-0.02192001,0.08609811;-0.2958809;-0.002749356,0.07524234;-0.5900447;0.05512844,0.08768719;-0.6191909;-0.004713085,-0.06416544;0.004329967;-0.047582,-0.09858608;-0.2911263;-0.008584056,-0.09911854;-0.5862007;0.04555274,-0.1006938;-0.61254;-0.01902149,0.01305834;0.3987433;0.02831843,25.51096
-0;0;0,0.001193863;0.199487;0.01426619,0.002671522;0.4993357;0.02181066,0.1204677;0.3797007;0.0167233,0.1672164;0.1869834;0.04269676,0.189955;-0.05996026;0.01104601,-0.1011363;0.3707547;-0.0319462,-0.1537481;0.2977024;-0.2105389,-0.184886;0.2990491;-0.4585885,0.07855957;0.005190755;-0.01419327,0.08638985;-0.2943904;-0.0004145578,0.07541332;-0.5865624;0.06677918,0.08890533;-0.6160306;0.007595021,-0.06018272;0.002816892;-0.05263178,-0.09703664;-0.2907092;-0.002789825,-0.09442964;-0.5841401;0.0595927,-0.09579889;-0.6141452;-0.000384897,0.002200566;0.3993369;0.02194779,0;0;0,0.006711446;0.1991679;0.01694397,0.01611456;0.4986799;0.0301427,0.1300361;0.3762615;0.0138006,0.1729245;0.1814429;0.02816343,0.2074191;-0.06457636;0.0001519639,-0.09219839;0.3724335;-0.02295355,-0.1710984;0.3343462;-0.2027428,-0.243153;0.3320801;-0.4421232,0.07686482;0.003363529;-0.02192001,0.08609811;-0.2958809;-0.002749356,0.07524234;-0.5900447;0.05512844,0.08768719;-0.6191909;-0.004713085,-0.06416544;0.004329967;-0.047582,-0.09858608;-0.2911263;-0.008584056,-0.09911854;-0.5862007;0.04555274,-0.1006938;-0.61254;-0.01902149,0.01305834;0.3987433;0.02831843,25.52227
-0;0;0,0.00117127;0.1994893;0.01423596,0.002595669;0.4993393;0.02173362,0.1204279;0.3798074;0.01675214,0.1671194;0.1872186;0.04376077,0.1895231;-0.05965251;0.01131485,-0.1012491;0.3707997;-0.0319285,-0.1535722;0.2971644;-0.2103665,-0.1829555;0.2963297;-0.4586324,0.07858939;0.00521011;-0.01402003,0.08638996;-0.2943778;-0.0003725579,0.07543644;-0.5865616;0.06677405,0.08884489;-0.6160259;0.007565737,-0.06016414;0.0028126;-0.05265326,-0.09699392;-0.2907189;-0.002825066,-0.09438084;-0.58417;0.05946156,-0.09676234;-0.6143082;-0.0003062487,0.002139749;0.3993405;0.02188754,0;0;0,0.006711446;0.1991679;0.01694397,0.01611456;0.4986799;0.0301427,0.1300361;0.3762615;0.0138006,0.1729245;0.1814429;0.02816343,0.2074191;-0.06457636;0.0001519639,-0.09219839;0.3724335;-0.02295355,-0.1710984;0.3343462;-0.2027428,-0.243153;0.3320801;-0.4421232,0.07686482;0.003363529;-0.02192001,0.08609811;-0.2958809;-0.002749356,0.07524234;-0.5900447;0.05512844,0.08768719;-0.6191909;-0.004713085,-0.06416544;0.004329967;-0.047582,-0.09858608;-0.2911263;-0.008584056,-0.09911854;-0.5862007;0.04555274,-0.1006938;-0.61254;-0.01902149,0.01305834;0.3987433;0.02831843,25.53354
-0;0;0,0.001131437;0.199499;0.0141019,0.002427888;0.4993552;0.02135576,0.1203125;0.3798228;0.01672584,0.1668329;0.1872745;0.04431256,0.1892276;-0.05953364;0.01138536,-0.1013884;0.3706924;-0.03212236,-0.1504439;0.2976772;-0.2117396,-0.1809187;0.3015715;-0.4598446,0.07863243;0.005154784;-0.01379745,0.08653218;-0.294436;-0.0002707588,0.07583761;-0.5867374;0.06640385,0.08881158;-0.6168234;0.007941071,-0.06010469;0.002843751;-0.05271944,-0.09679785;-0.2907081;-0.002910651,-0.0932777;-0.5842366;0.05896515,-0.09634062;-0.6120679;-0.003747731,0.002013489;0.3993563;0.02160306,0;0;0,0.006555963;0.1991805;0.01685674,0.01578935;0.4987022;0.02995472,0.1297858;0.3763737;0.01361022,0.1725809;0.1816053;0.02890225,0.2068898;-0.06443051;0.0008081235,-0.09225667;0.3726015;-0.02360073,-0.1685982;0.3335253;-0.2042801,-0.2381427;0.3313478;-0.4444026,0.07703099;0.003351524;-0.02133056,0.08608313;-0.2959391;-0.002804171,0.07533868;-0.5901407;0.05490151,0.08816482;-0.6194674;-0.004619513,-0.06402925;0.004334182;-0.04776474,-0.0984649;-0.2911106;-0.008693211,-0.09919756;-0.5861928;0.04539843,-0.1010911;-0.6123127;-0.01942573,0.01279489;0.3987631;0.02816547,25.5557
-0;0;0,0.001131437;0.199499;0.0141019,0.002427888;0.4993552;0.02135576,0.1203125;0.3798228;0.01672584,0.1668329;0.1872745;0.04431256,0.1892276;-0.05953364;0.01138536,-0.1013884;0.3706924;-0.03212236,-0.1504439;0.2976772;-0.2117396,-0.1809187;0.3015715;-0.4598446,0.07863243;0.005154784;-0.01379745,0.08653218;-0.294436;-0.0002707588,0.07583761;-0.5867374;0.06640385,0.08881158;-0.6168234;0.007941071,-0.06010469;0.002843751;-0.05271944,-0.09679785;-0.2907081;-0.002910651,-0.0932777;-0.5842366;0.05896515,-0.09634062;-0.6120679;-0.003747731,0.002013489;0.3993563;0.02160306,0;0;0,0.006555963;0.1991805;0.01685674,0.01578935;0.4987022;0.02995472,0.1297858;0.3763737;0.01361022,0.1725809;0.1816053;0.02890225,0.2068898;-0.06443051;0.0008081235,-0.09225667;0.3726015;-0.02360073,-0.1685982;0.3335253;-0.2042801,-0.2381427;0.3313478;-0.4444026,0.07703099;0.003351524;-0.02133056,0.08608313;-0.2959391;-0.002804171,0.07533868;-0.5901407;0.05490151,0.08816482;-0.6194674;-0.004619513,-0.06402925;0.004334182;-0.04776474,-0.0984649;-0.2911106;-0.008693211,-0.09919756;-0.5861928;0.04539843,-0.1010911;-0.6123127;-0.01942573,0.01279489;0.3987631;0.02816547,25.56694
-0;0;0,0.001131437;0.199499;0.0141019,0.002427888;0.4993552;0.02135576,0.1203125;0.3798228;0.01672584,0.1668329;0.1872745;0.04431256,0.1892276;-0.05953364;0.01138536,-0.1013884;0.3706924;-0.03212236,-0.1504439;0.2976772;-0.2117396,-0.1809187;0.3015715;-0.4598446,0.07863243;0.005154784;-0.01379745,0.08653218;-0.294436;-0.0002707588,0.07583761;-0.5867374;0.06640385,0.08881158;-0.6168234;0.007941071,-0.06010469;0.002843751;-0.05271944,-0.09679785;-0.2907081;-0.002910651,-0.0932777;-0.5842366;0.05896515,-0.09634062;-0.6120679;-0.003747731,0.002013489;0.3993563;0.02160306,0;0;0,0.006555963;0.1991805;0.01685674,0.01578935;0.4987022;0.02995472,0.1297858;0.3763737;0.01361022,0.1725809;0.1816053;0.02890225,0.2068898;-0.06443051;0.0008081235,-0.09225667;0.3726015;-0.02360073,-0.1685982;0.3335253;-0.2042801,-0.2381427;0.3313478;-0.4444026,0.07703099;0.003351524;-0.02133056,0.08608313;-0.2959391;-0.002804171,0.07533868;-0.5901407;0.05490151,0.08816482;-0.6194674;-0.004619513,-0.06402925;0.004334182;-0.04776474,-0.0984649;-0.2911106;-0.008693211,-0.09919756;-0.5861928;0.04539843,-0.1010911;-0.6123127;-0.01942573,0.01279489;0.3987631;0.02816547,25.57828
-0;0;0,0.00105588;0.1995017;0.01406947,0.002096959;0.4993604;0.02125749,0.1201369;0.3800471;0.01732759,0.1668758;0.1875108;0.04462705,0.1890748;-0.05928963;0.01150958,-0.10159;0.370629;-0.03222924,-0.1511124;0.2967613;-0.2113691,-0.178316;0.2994635;-0.45987,0.07871199;0.00513305;-0.01334442,0.08658671;-0.294475;-0.0001910627,0.07590818;-0.5867813;0.06646467,0.08867279;-0.6169356;0.00804922,-0.06005735;0.002846349;-0.05277323,-0.09676278;-0.2907;-0.002940759,-0.09357199;-0.5842687;0.05876202,-0.09613755;-0.6125444;-0.003417801,0.001776007;0.3993613;0.02152879,0;0;0,0.006386007;0.1991988;0.01670473,0.01550061;0.4987304;0.02966572,0.129706;0.3768776;0.0139875,0.1724331;0.1821246;0.02966145,0.2066375;-0.06417315;0.003825955,-0.09335561;0.3711467;-0.02128009,-0.1627852;0.3333184;-0.2049879,-0.2309455;0.317237;-0.4449786,0.07715852;0.003485715;-0.02084257,0.08600362;-0.2958541;-0.003024805,0.07471324;-0.5899642;0.05504223,0.08872586;-0.6186027;-0.005121071,-0.0638805;0.004296081;-0.04796692,-0.09841869;-0.2911287;-0.008835152,-0.09931572;-0.586186;0.0453904,-0.1006756;-0.6126731;-0.01901358,0.01254845;0.3987893;0.02791561,25.60033
-0;0;0,0.00105588;0.1995017;0.01406947,0.002096959;0.4993604;0.02125749,0.1201369;0.3800471;0.01732759,0.1668758;0.1875108;0.04462705,0.1890748;-0.05928963;0.01150958,-0.10159;0.370629;-0.03222924,-0.1511124;0.2967613;-0.2113691,-0.178316;0.2994635;-0.45987,0.07871199;0.00513305;-0.01334442,0.08658671;-0.294475;-0.0001910627,0.07590818;-0.5867813;0.06646467,0.08867279;-0.6169356;0.00804922,-0.06005735;0.002846349;-0.05277323,-0.09676278;-0.2907;-0.002940759,-0.09357199;-0.5842687;0.05876202,-0.09613755;-0.6125444;-0.003417801,0.001776007;0.3993613;0.02152879,0;0;0,0.006386007;0.1991988;0.01670473,0.01550061;0.4987304;0.02966572,0.129706;0.3768776;0.0139875,0.1724331;0.1821246;0.02966145,0.2066375;-0.06417315;0.003825955,-0.09335561;0.3711467;-0.02128009,-0.1627852;0.3333184;-0.2049879,-0.2309455;0.317237;-0.4449786,0.07715852;0.003485715;-0.02084257,0.08600362;-0.2958541;-0.003024805,0.07471324;-0.5899642;0.05504223,0.08872586;-0.6186027;-0.005121071,-0.0638805;0.004296081;-0.04796692,-0.09841869;-0.2911287;-0.008835152,-0.09931572;-0.586186;0.0453904,-0.1006756;-0.6126731;-0.01901358,0.01254845;0.3987893;0.02791561,25.61193
-0;0;0,0.001032668;0.1995065;0.01400268,0.002067786;0.4993678;0.02108142,0.1200822;0.3798459;0.01757331,0.1670536;0.1873404;0.04469053,0.1890572;-0.05953343;0.01199271,-0.1016643;0.3705784;-0.03225864,-0.1507236;0.2974474;-0.2118277,-0.175816;0.2970236;-0.4605649,0.07872646;0.005104897;-0.01326971,0.08667196;-0.2945047;-0.0001941659,0.07591616;-0.5868006;0.06649482,0.087859;-0.6169967;0.007963136,-0.0600297;0.002864918;-0.05280367,-0.09677932;-0.2907036;-0.00313478,-0.09364465;-0.584148;0.05915911,-0.09521472;-0.613894;-0.001157619,0.001742475;0.3993688;0.02138973,0;0;0,0.006386007;0.1991988;0.01670473,0.01550061;0.4987304;0.02966572,0.129706;0.3768776;0.0139875,0.1724331;0.1821246;0.02966145,0.2066375;-0.06417315;0.003825955,-0.09335561;0.3711467;-0.02128009,-0.1627852;0.3333184;-0.2049879,-0.2309455;0.317237;-0.4449786,0.07715852;0.003485715;-0.02084257,0.08600362;-0.2958541;-0.003024805,0.07471324;-0.5899642;0.05504223,0.08872586;-0.6186027;-0.005121071,-0.0638805;0.004296081;-0.04796692,-0.09841869;-0.2911287;-0.008835152,-0.09931572;-0.586186;0.0453904,-0.1006756;-0.6126731;-0.01901358,0.01254845;0.3987893;0.02791561,25.63401
-0;0;0,0.0008398487;0.1995138;0.01391176,0.001362004;0.4993827;0.0206776,0.1196556;0.3803825;0.01765563,0.1664984;0.1878635;0.04489816,0.1884346;-0.05901465;0.01218729,-0.1022176;0.3708295;-0.03260384,-0.1510462;0.2968082;-0.2118707,-0.1752065;0.2952506;-0.4606957,0.07875182;0.005045451;-0.0131413,0.08680087;-0.2945693;-0.0002495795,0.07599724;-0.5868893;0.06632602,0.08897577;-0.6172628;0.008260112,-0.05997278;0.002892606;-0.05286679,-0.09673562;-0.2906894;-0.003287472,-0.09355642;-0.5841234;0.05905351,-0.0949553;-0.6137972;-0.001362704,0.001219906;0.3993838;0.02111139,0;0;0,0.006225715;0.1992058;0.01668178,0.0152541;0.4987405;0.02963245,0.1295606;0.3770991;0.01415533,0.1726179;0.1824546;0.03026748,0.2061687;-0.06399101;0.0049913,-0.09384557;0.370422;-0.02027756,-0.1584732;0.3341598;-0.2060417,-0.2289306;0.3145336;-0.4451036,0.07729547;0.003509508;-0.02032469,0.08583212;-0.2958632;-0.002914796,0.07451878;-0.5899818;0.05510495,0.08851235;-0.6184193;-0.005324546,-0.06357764;0.00418936;-0.04837699,-0.09831183;-0.2911459;-0.008745879,-0.09923852;-0.5862189;0.04539357,-0.1006382;-0.613889;-0.01757779,0.01233993;0.3987983;0.02788287,25.65614
-0;0;0,0.0008398487;0.1995138;0.01391176,0.001362004;0.4993827;0.0206776,0.1196556;0.3803825;0.01765563,0.1664984;0.1878635;0.04489816,0.1884346;-0.05901465;0.01218729,-0.1022176;0.3708295;-0.03260384,-0.1510462;0.2968082;-0.2118707,-0.1752065;0.2952506;-0.4606957,0.07875182;0.005045451;-0.0131413,0.08680087;-0.2945693;-0.0002495795,0.07599724;-0.5868893;0.06632602,0.08897577;-0.6172628;0.008260112,-0.05997278;0.002892606;-0.05286679,-0.09673562;-0.2906894;-0.003287472,-0.09355642;-0.5841234;0.05905351,-0.0949553;-0.6137972;-0.001362704,0.001219906;0.3993838;0.02111139,0;0;0,0.006225715;0.1992058;0.01668178,0.0152541;0.4987405;0.02963245,0.1295606;0.3770991;0.01415533,0.1726179;0.1824546;0.03026748,0.2061687;-0.06399101;0.0049913,-0.09384557;0.370422;-0.02027756,-0.1584732;0.3341598;-0.2060417,-0.2289306;0.3145336;-0.4451036,0.07729547;0.003509508;-0.02032469,0.08583212;-0.2958632;-0.002914796,0.07451878;-0.5899818;0.05510495,0.08851235;-0.6184193;-0.005324546,-0.06357764;0.00418936;-0.04837699,-0.09831183;-0.2911459;-0.008745879,-0.09923852;-0.5862189;0.04539357,-0.1006382;-0.613889;-0.01757779,0.01233993;0.3987983;0.02788287,25.66736
-0;0;0,0.0008398487;0.1995138;0.01391176,0.001362004;0.4993827;0.0206776,0.1196556;0.3803825;0.01765563,0.1664984;0.1878635;0.04489816,0.1884346;-0.05901465;0.01218729,-0.1022176;0.3708295;-0.03260384,-0.1510462;0.2968082;-0.2118707,-0.1752065;0.2952506;-0.4606957,0.07875182;0.005045451;-0.0131413,0.08680087;-0.2945693;-0.0002495795,0.07599724;-0.5868893;0.06632602,0.08897577;-0.6172628;0.008260112,-0.05997278;0.002892606;-0.05286679,-0.09673562;-0.2906894;-0.003287472,-0.09355642;-0.5841234;0.05905351,-0.0949553;-0.6137972;-0.001362704,0.001219906;0.3993838;0.02111139,0;0;0,0.006225715;0.1992058;0.01668178,0.0152541;0.4987405;0.02963245,0.1295606;0.3770991;0.01415533,0.1726179;0.1824546;0.03026748,0.2061687;-0.06399101;0.0049913,-0.09384557;0.370422;-0.02027756,-0.1584732;0.3341598;-0.2060417,-0.2289306;0.3145336;-0.4451036,0.07729547;0.003509508;-0.02032469,0.08583212;-0.2958632;-0.002914796,0.07451878;-0.5899818;0.05510495,0.08851235;-0.6184193;-0.005324546,-0.06357764;0.00418936;-0.04837699,-0.09831183;-0.2911459;-0.008745879,-0.09923852;-0.5862189;0.04539357,-0.1006382;-0.613889;-0.01757779,0.01233993;0.3987983;0.02788287,25.69022
-0;0;0,0.001391244;0.1994728;0.01444534,0.004373227;0.4992747;0.02349612,0.1215148;0.3799787;0.01756935,0.168321;0.1874636;0.04490263,0.1902404;-0.05940881;0.01213785,-0.1000177;0.3711463;-0.03138633,-0.148504;0.2966705;-0.2105578,-0.1673287;0.2947637;-0.4598408,0.0787883;0.00508262;-0.01290626,0.08672894;-0.294546;-0.0002705259,0.07607871;-0.5868821;0.066259,0.0887829;-0.6174766;0.008439258,-0.05993062;0.002883865;-0.05291506,-0.09692611;-0.2907248;-0.003667548,-0.09375335;-0.5840768;0.05905861,-0.09515473;-0.6136382;-0.001505539,0.003200739;0.3992829;0.02296703,0;0;0,0.00610756;0.1992188;0.01657084,0.01496823;0.4987639;0.02936492,0.1293582;0.3768891;0.01438471,0.1725748;0.1823119;0.03087778,0.2058205;-0.06428602;0.006707342,-0.0942148;0.3699081;-0.01978139,-0.1566978;0.3326404;-0.2060795,-0.2071432;0.3335398;-0.4509355,0.07744828;0.003564696;-0.01972454,0.0857809;-0.2958399;-0.002769481,0.07442402;-0.5899443;0.05531354,0.08850738;-0.6179472;-0.005655356,-0.06343965;0.004136298;-0.04856234,-0.09827111;-0.2911668;-0.008776933,-0.09932942;-0.5862457;0.04532781,-0.1004837;-0.6141614;-0.01734442,0.0121326;0.398818;0.02769968,25.70092
-0;0;0,0.001391244;0.1994728;0.01444534,0.004373227;0.4992747;0.02349612,0.1215148;0.3799787;0.01756935,0.168321;0.1874636;0.04490263,0.1902404;-0.05940881;0.01213785,-0.1000177;0.3711463;-0.03138633,-0.148504;0.2966705;-0.2105578,-0.1673287;0.2947637;-0.4598408,0.0787883;0.00508262;-0.01290626,0.08672894;-0.294546;-0.0002705259,0.07607871;-0.5868821;0.066259,0.0887829;-0.6174766;0.008439258,-0.05993062;0.002883865;-0.05291506,-0.09692611;-0.2907248;-0.003667548,-0.09375335;-0.5840768;0.05905861,-0.09515473;-0.6136382;-0.001505539,0.003200739;0.3992829;0.02296703,0;0;0,0.00610756;0.1992188;0.01657084,0.01496823;0.4987639;0.02936492,0.1293582;0.3768891;0.01438471,0.1725748;0.1823119;0.03087778,0.2058205;-0.06428602;0.006707342,-0.0942148;0.3699081;-0.01978139,-0.1566978;0.3326404;-0.2060795,-0.2071432;0.3335398;-0.4509355,0.07744828;0.003564696;-0.01972454,0.0857809;-0.2958399;-0.002769481,0.07442402;-0.5899443;0.05531354,0.08850738;-0.6179472;-0.005655356,-0.06343965;0.004136298;-0.04856234,-0.09827111;-0.2911668;-0.008776933,-0.09932942;-0.5862457;0.04532781,-0.1004837;-0.6141614;-0.01734442,0.0121326;0.398818;0.02769968,25.71214
-0;0;0,0.001391244;0.1994728;0.01444534,0.004373227;0.4992747;0.02349612,0.1215148;0.3799787;0.01756935,0.168321;0.1874636;0.04490263,0.1902404;-0.05940881;0.01213785,-0.1000177;0.3711463;-0.03138633,-0.148504;0.2966705;-0.2105578,-0.1673287;0.2947637;-0.4598408,0.0787883;0.00508262;-0.01290626,0.08672894;-0.294546;-0.0002705259,0.07607871;-0.5868821;0.066259,0.0887829;-0.6174766;0.008439258,-0.05993062;0.002883865;-0.05291506,-0.09692611;-0.2907248;-0.003667548,-0.09375335;-0.5840768;0.05905861,-0.09515473;-0.6136382;-0.001505539,0.003200739;0.3992829;0.02296703,0;0;0,0.00610756;0.1992188;0.01657084,0.01496823;0.4987639;0.02936492,0.1293582;0.3768891;0.01438471,0.1725748;0.1823119;0.03087778,0.2058205;-0.06428602;0.006707342,-0.0942148;0.3699081;-0.01978139,-0.1566978;0.3326404;-0.2060795,-0.2071432;0.3335398;-0.4509355,0.07744828;0.003564696;-0.01972454,0.0857809;-0.2958399;-0.002769481,0.07442402;-0.5899443;0.05531354,0.08850738;-0.6179472;-0.005655356,-0.06343965;0.004136298;-0.04856234,-0.09827111;-0.2911668;-0.008776933,-0.09932942;-0.5862457;0.04532781,-0.1004837;-0.6141614;-0.01734442,0.0121326;0.398818;0.02769968,25.72331
-0;0;0,0.001114738;0.1994878;0.01426128,0.002552713;0.4993263;0.02220671,0.1205205;0.380705;0.01747149,0.1673077;0.1882682;0.04538316,0.1891869;-0.05855149;0.01219692,-0.1011662;0.3712722;-0.03215192,-0.1497768;0.2966467;-0.2112275,-0.1660309;0.2907333;-0.4606284,0.07886669;0.005064916;-0.01242547,0.08692259;-0.2945777;-0.0002025804,0.07636814;-0.5869758;0.06606942,0.08933982;-0.6168317;0.007292081,-0.05980484;0.002883957;-0.05305717,-0.09686334;-0.2907177;-0.003815416,-0.09369252;-0.5840666;0.05892462,-0.09493198;-0.6135378;-0.001761355,0.002069049;0.3993274;0.02221147,0;0;0,0.00603766;0.1992223;0.01655394,0.01465675;0.498778;0.02924623,0.1292248;0.3771088;0.01469571,0.172548;0.1825751;0.03142108,0.2055965;-0.06410147;0.007789228,-0.09328109;0.3717342;-0.02334788,-0.1622623;0.3153446;-0.202406,-0.2028772;0.3419513;-0.4476457,0.07747326;0.003570041;-0.01962522,0.08577746;-0.2958395;-0.002743976,0.07423853;-0.5899389;0.05532839,0.08847845;-0.6183164;-0.005121447,-0.06327888;0.00417178;-0.04876863,-0.09817206;-0.2910961;-0.008776739,-0.09925812;-0.5861783;0.04530934,-0.08599544;-0.55375;-0.05223725,0.01191802;0.3988286;0.02763293,25.74542
-0;0;0,0.001114738;0.1994878;0.01426128,0.002552713;0.4993263;0.02220671,0.1205205;0.380705;0.01747149,0.1673077;0.1882682;0.04538316,0.1891869;-0.05855149;0.01219692,-0.1011662;0.3712722;-0.03215192,-0.1497768;0.2966467;-0.2112275,-0.1660309;0.2907333;-0.4606284,0.07886669;0.005064916;-0.01242547,0.08692259;-0.2945777;-0.0002025804,0.07636814;-0.5869758;0.06606942,0.08933982;-0.6168317;0.007292081,-0.05980484;0.002883957;-0.05305717,-0.09686334;-0.2907177;-0.003815416,-0.09369252;-0.5840666;0.05892462,-0.09493198;-0.6135378;-0.001761355,0.002069049;0.3993274;0.02221147,0;0;0,0.00603766;0.1992223;0.01655394,0.01465675;0.498778;0.02924623,0.1292248;0.3771088;0.01469571,0.172548;0.1825751;0.03142108,0.2055965;-0.06410147;0.007789228,-0.09328109;0.3717342;-0.02334788,-0.1622623;0.3153446;-0.202406,-0.2028772;0.3419513;-0.4476457,0.07747326;0.003570041;-0.01962522,0.08577746;-0.2958395;-0.002743976,0.07423853;-0.5899389;0.05532839,0.08847845;-0.6183164;-0.005121447,-0.06327888;0.00417178;-0.04876863,-0.09817206;-0.2910961;-0.008776739,-0.09925812;-0.5861783;0.04530934,-0.08599544;-0.55375;-0.05223725,0.01191802;0.3988286;0.02763293,25.75701
-0;0;0,0.0009406827;0.1994909;0.01422997,0.00176372;0.4993333;0.02209681,0.1200547;0.3811805;0.01742838,0.1668413;0.1887607;0.04545769,0.188677;-0.05806656;0.01229872,-0.1016953;0.3715627;-0.03238975,-0.1497522;0.2929852;-0.2099175,-0.1661431;0.290387;-0.4593661,0.07890588;0.005079322;-0.01216804,0.08681338;-0.2945785;-0.000222858,0.07614069;-0.5869842;0.0659966,0.08946954;-0.6167389;0.007161874,-0.05973085;0.00286418;-0.05314152,-0.09701274;-0.290699;-0.003838867,-0.09375702;-0.5839801;0.05921313,-0.09516443;-0.6139019;-0.0008745603,0.001529305;0.3993336;0.02213972,0;0;0,0.00603766;0.1992223;0.01655394,0.01465675;0.498778;0.02924623,0.1292248;0.3771088;0.01469571,0.172548;0.1825751;0.03142108,0.2055965;-0.06410147;0.007789228,-0.09328109;0.3717342;-0.02334788,-0.1622623;0.3153446;-0.202406,-0.2028772;0.3419513;-0.4476457,0.07747326;0.003570041;-0.01962522,0.08577746;-0.2958395;-0.002743976,0.07423853;-0.5899389;0.05532839,0.08847845;-0.6183164;-0.005121447,-0.06327888;0.00417178;-0.04876863,-0.09817206;-0.2910961;-0.008776739,-0.09925812;-0.5861783;0.04530934,-0.08599544;-0.55375;-0.05223725,0.01191802;0.3988286;0.02763293,25.77909
-0;0;0,0.0008073127;0.1995012;0.01409336,0.001220546;0.4993511;0.02164602,0.11975;0.3817434;0.01716925,0.166555;0.1894002;0.04568893,0.1881952;-0.05745421;0.01260383,-0.1021114;0.3717901;-0.03275772,-0.1443768;0.2982023;-0.2138612,-0.1689497;0.2875834;-0.4624239,0.07892971;0.005088435;-0.01200868,0.08680059;-0.2945859;-0.000461081,0.0763335;-0.587016;0.06568321,0.08945915;-0.6168053;0.006849695,-0.05965558;0.002868144;-0.05322579,-0.09700426;-0.2906997;-0.004001562,-0.09425294;-0.5840347;0.05882379,-0.09590699;-0.6129271;-0.002602912,0.001140264;0.3993514;0.02182681,0;0;0,0.005935479;0.1992277;0.0165251,0.01417971;0.4988052;0.02892315,0.1289776;0.3773917;0.01480421,0.1725388;0.1829955;0.0324836,0.2048183;-0.06386955;0.009775359,-0.09417565;0.37072;-0.02178237,-0.1616767;0.3153858;-0.2017316,-0.1923062;0.3376361;-0.4488485,0.07750245;0.003610994;-0.01950208,0.08569731;-0.2958055;-0.002690202,0.0741722;-0.5899062;0.05537827,0.08791262;-0.6187521;-0.004575986,-0.06317584;0.004155105;-0.04890345,-0.09814461;-0.2910851;-0.008773722,-0.09926321;-0.5861663;0.04531734,-0.1007438;-0.6144164;-0.01692998,0.01158947;0.3988498;0.02743599,25.80169
-0;0;0,0.0008073127;0.1995012;0.01409336,0.001220546;0.4993511;0.02164602,0.11975;0.3817434;0.01716925,0.166555;0.1894002;0.04568893,0.1881952;-0.05745421;0.01260383,-0.1021114;0.3717901;-0.03275772,-0.1443768;0.2982023;-0.2138612,-0.1689497;0.2875834;-0.4624239,0.07892971;0.005088435;-0.01200868,0.08680059;-0.2945859;-0.000461081,0.0763335;-0.587016;0.06568321,0.08945915;-0.6168053;0.006849695,-0.05965558;0.002868144;-0.05322579,-0.09700426;-0.2906997;-0.004001562,-0.09425294;-0.5840347;0.05882379,-0.09590699;-0.6129271;-0.002602912,0.001140264;0.3993514;0.02182681,0;0;0,0.005935479;0.1992277;0.0165251,0.01417971;0.4988052;0.02892315,0.1289776;0.3773917;0.01480421,0.1725388;0.1829955;0.0324836,0.2048183;-0.06386955;0.009775359,-0.09417565;0.37072;-0.02178237,-0.1616767;0.3153858;-0.2017316,-0.1923062;0.3376361;-0.4488485,0.07750245;0.003610994;-0.01950208,0.08569731;-0.2958055;-0.002690202,0.0741722;-0.5899062;0.05537827,0.08791262;-0.6187521;-0.004575986,-0.06317584;0.004155105;-0.04890345,-0.09814461;-0.2910851;-0.008773722,-0.09926321;-0.5861663;0.04531734,-0.1007438;-0.6144164;-0.01692998,0.01158947;0.3988498;0.02743599,25.81303
-0;0;0,0.000809923;0.1994995;0.01411676,0.001342442;0.4993466;0.02181454,0.1197932;0.3815538;0.01753867,0.1665188;0.1891444;0.04574078,0.1883137;-0.05773179;0.01292095,-0.1020184;0.3716008;-0.03262983,-0.1441578;0.297861;-0.2137008,-0.1686755;0.2850286;-0.4621645,0.07893683;0.005040196;-0.01198218,0.08682507;-0.2946348;-0.0004626354,0.0762414;-0.5870357;0.06579236,0.08955753;-0.616625;0.006731149,-0.05961419;0.002951163;-0.05326762,-0.09697242;-0.2905991;-0.003946204,-0.09422453;-0.5839545;0.05878432,-0.09597816;-0.6121996;-0.003462151,0.001200713;0.3993468;0.02192261,0;0;0,0.005935479;0.1992277;0.0165251,0.01417971;0.4988052;0.02892315,0.1289776;0.3773917;0.01480421,0.1725388;0.1829955;0.0324836,0.2048183;-0.06386955;0.009775359,-0.09417565;0.37072;-0.02178237,-0.1616767;0.3153858;-0.2017316,-0.1923062;0.3376361;-0.4488485,0.07750245;0.003610994;-0.01950208,0.08569731;-0.2958055;-0.002690202,0.0741722;-0.5899062;0.05537827,0.08791262;-0.6187521;-0.004575986,-0.06317584;0.004155105;-0.04890345,-0.09814461;-0.2910851;-0.008773722,-0.09926321;-0.5861663;0.04531734,-0.1007438;-0.6144164;-0.01692998,0.01158947;0.3988498;0.02743599,25.82401
-0;0;0,0.000809923;0.1994995;0.01411676,0.001342442;0.4993466;0.02181454,0.1197932;0.3815538;0.01753867,0.1665188;0.1891444;0.04574078,0.1883137;-0.05773179;0.01292095,-0.1020184;0.3716008;-0.03262983,-0.1441578;0.297861;-0.2137008,-0.1686755;0.2850286;-0.4621645,0.07893683;0.005040196;-0.01198218,0.08682507;-0.2946348;-0.0004626354,0.0762414;-0.5870357;0.06579236,0.08955753;-0.616625;0.006731149,-0.05961419;0.002951163;-0.05326762,-0.09697242;-0.2905991;-0.003946204,-0.09422453;-0.5839545;0.05878432,-0.09597816;-0.6121996;-0.003462151,0.001200713;0.3993468;0.02192261,0;0;0,0.005783747;0.1992379;0.01645623,0.01343446;0.4988437;0.02850831,0.1285561;0.3775515;0.0152657,0.1721886;0.1831971;0.03322596,0.2045259;-0.06380709;0.01217291,-0.09502;0.3701715;-0.02100458,-0.1613111;0.3153249;-0.2015519,-0.184396;0.343542;-0.4488794,0.07762232;0.003585272;-0.0190242,0.08572294;-0.2958497;-0.002498403,0.07433808;-0.5900767;0.05495453,0.08808161;-0.6190842;-0.004786029,-0.0629996;0.004072837;-0.04913719,-0.09797011;-0.2911292;-0.008729178,-0.09908877;-0.586208;0.04537493,-0.1010014;-0.6138445;-0.01762442,0.0110686;0.3988807;0.0271721,25.8462
-0;0;0,0.0007351115;0.1995059;0.01403031,0.001039066;0.4993572;0.02154537,0.1196066;0.3817499;0.01741312,0.1662032;0.1893482;0.04587944,0.188083;-0.05756563;0.01340088,-0.1022565;0.3716123;-0.03277976,-0.1428659;0.2994134;-0.2148188,-0.169309;0.2834865;-0.4629056,0.07900075;0.005093941;-0.01152964,0.08682092;-0.2946004;-0.0004772041,0.07617972;-0.5869839;0.065845,0.09062627;-0.6162034;0.006552774,-0.05955669;0.002937472;-0.05333265,-0.09693846;-0.2906087;-0.004004739,-0.09430975;-0.5839953;0.05858454,-0.09566884;-0.6109285;-0.005285881,0.000983992;0.3993574;0.02173262,0;0;0,0.005783747;0.1992379;0.01645623,0.01343446;0.4988437;0.02850831,0.1285561;0.3775515;0.0152657,0.1721886;0.1831971;0.03322596,0.2045259;-0.06380709;0.01217291,-0.09502;0.3701715;-0.02100458,-0.1613111;0.3153249;-0.2015519,-0.184396;0.343542;-0.4488794,0.07762232;0.003585272;-0.0190242,0.08572294;-0.2958497;-0.002498403,0.07433808;-0.5900767;0.05495453,0.08808161;-0.6190842;-0.004786029,-0.0629996;0.004072837;-0.04913719,-0.09797011;-0.2911292;-0.008729178,-0.09908877;-0.586208;0.04537493,-0.1010014;-0.6138445;-0.01762442,0.0110686;0.3988807;0.0271721,25.86839
-0;0;0,0.0007351115;0.1995059;0.01403031,0.001039066;0.4993572;0.02154537,0.1196066;0.3817499;0.01741312,0.1662032;0.1893482;0.04587944,0.188083;-0.05756563;0.01340088,-0.1022565;0.3716123;-0.03277976,-0.1428659;0.2994134;-0.2148188,-0.169309;0.2834865;-0.4629056,0.07900075;0.005093941;-0.01152964,0.08682092;-0.2946004;-0.0004772041,0.07617972;-0.5869839;0.065845,0.09062627;-0.6162034;0.006552774,-0.05955669;0.002937472;-0.05333265,-0.09693846;-0.2906087;-0.004004739,-0.09430975;-0.5839953;0.05858454,-0.09566884;-0.6109285;-0.005285881,0.000983992;0.3993574;0.02173262,0;0;0,0.005783747;0.1992379;0.01645623,0.01343446;0.4988437;0.02850831,0.1285561;0.3775515;0.0152657,0.1721886;0.1831971;0.03322596,0.2045259;-0.06380709;0.01217291,-0.09502;0.3701715;-0.02100458,-0.1613111;0.3153249;-0.2015519,-0.184396;0.343542;-0.4488794,0.07762232;0.003585272;-0.0190242,0.08572294;-0.2958497;-0.002498403,0.07433808;-0.5900767;0.05495453,0.08808161;-0.6190842;-0.004786029,-0.0629996;0.004072837;-0.04913719,-0.09797011;-0.2911292;-0.008729178,-0.09908877;-0.586208;0.04537493,-0.1010014;-0.6138445;-0.01762442,0.0110686;0.3988807;0.0271721,25.88013
-0;0;0,0.0007010006;0.1995072;0.01401424,0.0009274011;0.4993586;0.02152749,0.1195362;0.3818677;0.01738059,0.1661325;0.1895498;0.04640856,0.1878601;-0.05736676;0.01384902,-0.1023735;0.3717718;-0.03282159,-0.1482635;0.2944914;-0.2114884,-0.1670496;0.2771049;-0.4601746,0.07900593;0.005045706;-0.01151532,0.08675388;-0.2946456;-0.0003301296,0.07624131;-0.5870998;0.06570043,0.09103666;-0.6165244;0.006769754,-0.05951967;0.003002615;-0.05337033,-0.09693018;-0.2905275;-0.003968649,-0.09409665;-0.5838716;0.05881055,-0.09516107;-0.6127368;-0.002664186,0.0008969029;0.3993587;0.02171453,0;0;0,0.005573946;0.1992527;0.01634975,0.01238031;0.4989011;0.02778585,0.1279109;0.3779154;0.01522573,0.1715807;0.1835942;0.03345264,0.2038185;-0.06344153;0.0126183,-0.0959739;0.370048;-0.02091039,-0.1613264;0.3149027;-0.2017087,-0.184309;0.3432293;-0.4490333,0.07772206;0.003524096;-0.01862424,0.08568214;-0.2959341;-0.002455596,0.07426907;-0.5901524;0.05503697,0.0880763;-0.6190716;-0.004805434,-0.06282998;0.004027557;-0.0493576,-0.09792079;-0.2911113;-0.008593693,-0.09893203;-0.5862269;0.04531115,-0.101174;-0.613704;-0.01787331,0.01032353;0.3989282;0.02670045,25.90188
-0;0;0,0.0007010006;0.1995072;0.01401424,0.0009274011;0.4993586;0.02152749,0.1195362;0.3818677;0.01738059,0.1661325;0.1895498;0.04640856,0.1878601;-0.05736676;0.01384902,-0.1023735;0.3717718;-0.03282159,-0.1482635;0.2944914;-0.2114884,-0.1670496;0.2771049;-0.4601746,0.07900593;0.005045706;-0.01151532,0.08675388;-0.2946456;-0.0003301296,0.07624131;-0.5870998;0.06570043,0.09103666;-0.6165244;0.006769754,-0.05951967;0.003002615;-0.05337033,-0.09693018;-0.2905275;-0.003968649,-0.09409665;-0.5838716;0.05881055,-0.09516107;-0.6127368;-0.002664186,0.0008969029;0.3993587;0.02171453,0;0;0,0.005573946;0.1992527;0.01634975,0.01238031;0.4989011;0.02778585,0.1279109;0.3779154;0.01522573,0.1715807;0.1835942;0.03345264,0.2038185;-0.06344153;0.0126183,-0.0959739;0.370048;-0.02091039,-0.1613264;0.3149027;-0.2017087,-0.184309;0.3432293;-0.4490333,0.07772206;0.003524096;-0.01862424,0.08568214;-0.2959341;-0.002455596,0.07426907;-0.5901524;0.05503697,0.0880763;-0.6190716;-0.004805434,-0.06282998;0.004027557;-0.0493576,-0.09792079;-0.2911113;-0.008593693,-0.09893203;-0.5862269;0.04531115,-0.101174;-0.613704;-0.01787331,0.01032353;0.3989282;0.02670045,25.91335
-0;0;0,0.0006713156;0.1995126;0.01393802,0.0009025608;0.4993656;0.02139548,0.1194274;0.3811675;0.01803676,0.1662692;0.188881;0.04687636,0.1881629;-0.05804898;0.01453032,-0.1024156;0.3717802;-0.03291415,-0.1344248;0.3124892;-0.2212224,-0.1736787;0.2725931;-0.4648767,0.07901425;0.005046059;-0.01145803,0.08676606;-0.2946402;-0.0001414586,0.07628968;-0.5871677;0.06556932,0.0907475;-0.6170411;0.007163621,-0.0594712;0.003008042;-0.05342404,-0.09689972;-0.2905189;-0.004017171,-0.09398317;-0.5837599;0.05923818,-0.09496456;-0.6131204;-0.001597226,0.0008687465;0.3993658;0.02159618,0;0;0,0.005377205;0.1992655;0.01625839,0.01152098;0.498944;0.0272527,0.1273327;0.3780635;0.01517015,0.1708102;0.1837243;0.03366267,0.2031879;-0.06333634;0.01334673,-0.09673565;0.3697515;-0.02077058,-0.1601303;0.3145147;-0.2022369,-0.1832945;0.3428586;-0.4495425,0.07775986;0.003585682;-0.0184539,0.08558939;-0.2958871;-0.002493085,0.07411046;-0.5901043;0.0549911,0.08814183;-0.6190027;-0.00482668,-0.06273732;0.003999273;-0.04947761,-0.09794918;-0.2911159;-0.008646417,-0.09886549;-0.5862213;0.04531603,-0.1014879;-0.6131078;-0.01857134,0.009695671;0.3989648;0.02633518,25.9243
-0;0;0,0.0006713156;0.1995126;0.01393802,0.0009025608;0.4993656;0.02139548,0.1194274;0.3811675;0.01803676,0.1662692;0.188881;0.04687636,0.1881629;-0.05804898;0.01453032,-0.1024156;0.3717802;-0.03291415,-0.1344248;0.3124892;-0.2212224,-0.1736787;0.2725931;-0.4648767,0.07901425;0.005046059;-0.01145803,0.08676606;-0.2946402;-0.0001414586,0.07628968;-0.5871677;0.06556932,0.0907475;-0.6170411;0.007163621,-0.0594712;0.003008042;-0.05342404,-0.09689972;-0.2905189;-0.004017171,-0.09398317;-0.5837599;0.05923818,-0.09496456;-0.6131204;-0.001597226,0.0008687465;0.3993658;0.02159618,0;0;0,0.005377205;0.1992655;0.01625839,0.01152098;0.498944;0.0272527,0.1273327;0.3780635;0.01517015,0.1708102;0.1837243;0.03366267,0.2031879;-0.06333634;0.01334673,-0.09673565;0.3697515;-0.02077058,-0.1601303;0.3145147;-0.2022369,-0.1832945;0.3428586;-0.4495425,0.07775986;0.003585682;-0.0184539,0.08558939;-0.2958871;-0.002493085,0.07411046;-0.5901043;0.0549911,0.08814183;-0.6190027;-0.00482668,-0.06273732;0.003999273;-0.04947761,-0.09794918;-0.2911159;-0.008646417,-0.09886549;-0.5862213;0.04531603,-0.1014879;-0.6131078;-0.01857134,0.009695671;0.3989648;0.02633518,25.93559
-0;0;0,0.0006713156;0.1995126;0.01393802,0.0009025608;0.4993656;0.02139548,0.1194274;0.3811675;0.01803676,0.1662692;0.188881;0.04687636,0.1881629;-0.05804898;0.01453032,-0.1024156;0.3717802;-0.03291415,-0.1344248;0.3124892;-0.2212224,-0.1736787;0.2725931;-0.4648767,0.07901425;0.005046059;-0.01145803,0.08676606;-0.2946402;-0.0001414586,0.07628968;-0.5871677;0.06556932,0.0907475;-0.6170411;0.007163621,-0.0594712;0.003008042;-0.05342404,-0.09689972;-0.2905189;-0.004017171,-0.09398317;-0.5837599;0.05923818,-0.09496456;-0.6131204;-0.001597226,0.0008687465;0.3993658;0.02159618,0;0;0,0.005377205;0.1992655;0.01625839,0.01152098;0.498944;0.0272527,0.1273327;0.3780635;0.01517015,0.1708102;0.1837243;0.03366267,0.2031879;-0.06333634;0.01334673,-0.09673565;0.3697515;-0.02077058,-0.1601303;0.3145147;-0.2022369,-0.1832945;0.3428586;-0.4495425,0.07775986;0.003585682;-0.0184539,0.08558939;-0.2958871;-0.002493085,0.07411046;-0.5901043;0.0549911,0.08814183;-0.6190027;-0.00482668,-0.06273732;0.003999273;-0.04947761,-0.09794918;-0.2911159;-0.008646417,-0.09886549;-0.5862213;0.04531603,-0.1014879;-0.6131078;-0.01857134,0.009695671;0.3989648;0.02633518,25.95759
-0;0;0,0.0005127435;0.1995249;0.01376801,0.0006379274;0.4993798;0.02110922,0.1192492;0.3813802;0.01786912,0.1661191;0.1891326;0.04692224,0.1880604;-0.05779426;0.01458521,-0.1026458;0.3717756;-0.03308922,-0.1475375;0.2935999;-0.2116202,-0.1696925;0.2765713;-0.4600536,0.07900848;0.005101739;-0.0114731,0.08657604;-0.2945981;-0.0003944263,0.0759993;-0.5870975;0.06542515,0.09058709;-0.6169218;0.00698474,-0.05942346;0.002967555;-0.05347939,-0.09712766;-0.2905401;-0.004167717,-0.09425743;-0.5837791;0.05909907,-0.09491907;-0.6126255;-0.002405416,0.0006586284;0.3993802;0.02137349,0;0;0,0.005377205;0.1992655;0.01625839,0.01152098;0.498944;0.0272527,0.1273327;0.3780635;0.01517015,0.1708102;0.1837243;0.03366267,0.2031879;-0.06333634;0.01334673,-0.09673565;0.3697515;-0.02077058,-0.1601303;0.3145147;-0.2022369,-0.1832945;0.3428586;-0.4495425,0.07775986;0.003585682;-0.0184539,0.08558939;-0.2958871;-0.002493085,0.07411046;-0.5901043;0.0549911,0.08814183;-0.6190027;-0.00482668,-0.06273732;0.003999273;-0.04947761,-0.09794918;-0.2911159;-0.008646417,-0.09886549;-0.5862213;0.04531603,-0.1014879;-0.6131078;-0.01857134,0.009695671;0.3989648;0.02633518,25.96942
-0;0;0,0.0005127435;0.1995249;0.01376801,0.0006379274;0.4993798;0.02110922,0.1192492;0.3813802;0.01786912,0.1661191;0.1891326;0.04692224,0.1880604;-0.05779426;0.01458521,-0.1026458;0.3717756;-0.03308922,-0.1475375;0.2935999;-0.2116202,-0.1696925;0.2765713;-0.4600536,0.07900848;0.005101739;-0.0114731,0.08657604;-0.2945981;-0.0003944263,0.0759993;-0.5870975;0.06542515,0.09058709;-0.6169218;0.00698474,-0.05942346;0.002967555;-0.05347939,-0.09712766;-0.2905401;-0.004167717,-0.09425743;-0.5837791;0.05909907,-0.09491907;-0.6126255;-0.002405416,0.0006586284;0.3993802;0.02137349,0;0;0,0.005234685;0.1992755;0.01618291,0.01110385;0.4989685;0.02693781,0.1270617;0.3784181;0.01518672,0.1707119;0.1841944;0.03446911,0.2029796;-0.06293826;0.01486734,-0.09717869;0.3697482;-0.02079668,-0.1579815;0.3144784;-0.2031377,-0.1813875;0.3417497;-0.4505411,0.07776381;0.003588286;-0.01843672,0.08560593;-0.2958837;-0.002466291,0.07396886;-0.5900789;0.05509872,0.08732134;-0.6181917;-0.005894061,-0.06267741;0.003984748;-0.04955467,-0.09785451;-0.2911156;-0.008586597,-0.0985387;-0.5862251;0.04535703,-0.1010817;-0.6142457;-0.01714351,0.00934176;0.3989877;0.0260909,25.99118
-0;0;0,0.0004147393;0.1995296;0.01370268,0.0001629013;0.4993923;0.02068844,0.1189437;0.38158;0.01790258,0.1660982;0.1894189;0.0470668,0.187998;-0.05752952;0.01486588,-0.1030484;0.3718139;-0.03327509,-0.1482998;0.2937256;-0.2117535,-0.1731349;0.2746587;-0.459785,0.07900763;0.005117589;-0.01147191,0.08650633;-0.2945847;-0.0004121633,0.07580745;-0.5870979;0.06532632,0.09023702;-0.6169493;0.006883692,-0.05941622;0.002955734;-0.0534881,-0.0971384;-0.2905436;-0.004140422,-0.09424417;-0.5838315;0.05889797,-0.09529021;-0.6120507;-0.003397014,0.0003158882;0.3993932;0.02108674,0;0;0,0.005234685;0.1992755;0.01618291,0.01110385;0.4989685;0.02693781,0.1270617;0.3784181;0.01518672,0.1707119;0.1841944;0.03446911,0.2029796;-0.06293826;0.01486734,-0.09717869;0.3697482;-0.02079668,-0.1579815;0.3144784;-0.2031377,-0.1813875;0.3417497;-0.4505411,0.07776381;0.003588286;-0.01843672,0.08560593;-0.2958837;-0.002466291,0.07396886;-0.5900789;0.05509872,0.08732134;-0.6181917;-0.005894061,-0.06267741;0.003984748;-0.04955467,-0.09785451;-0.2911156;-0.008586597,-0.0985387;-0.5862251;0.04535703,-0.1010817;-0.6142457;-0.01714351,0.00934176;0.3989877;0.0260909,26.00336
-0;0;0,0.0004056649;0.199529;0.01371217,0.0002020735;0.4993906;0.02077513,0.1189818;0.3817291;0.01807153,0.1662428;0.1895677;0.04706095,0.1884425;-0.05737607;0.01503057,-0.1030624;0.3718039;-0.03317564,-0.1475245;0.2909505;-0.2106182,-0.1736978;0.2719525;-0.4585174,0.07901186;0.005118113;-0.01144251,0.08649425;-0.2945873;-0.0004564915,0.07575884;-0.5870346;0.06556887,0.08999418;-0.616748;0.006890792,-0.05940293;0.002945944;-0.05350339,-0.09715482;-0.2905156;-0.003954157,-0.09421507;-0.5837811;0.05918624,-0.09307186;-0.614732;0.000486549,0.0003282175;0.3993913;0.02113201,0;0;0,0.005234685;0.1992755;0.01618291,0.01110385;0.4989685;0.02693781,0.1270617;0.3784181;0.01518672,0.1707119;0.1841944;0.03446911,0.2029796;-0.06293826;0.01486734,-0.09717869;0.3697482;-0.02079668,-0.1579815;0.3144784;-0.2031377,-0.1813875;0.3417497;-0.4505411,0.07776381;0.003588286;-0.01843672,0.08560593;-0.2958837;-0.002466291,0.07396886;-0.5900789;0.05509872,0.08732134;-0.6181917;-0.005894061,-0.06267741;0.003984748;-0.04955467,-0.09785451;-0.2911156;-0.008586597,-0.0985387;-0.5862251;0.04535703,-0.1010817;-0.6142457;-0.01714351,0.00934176;0.3989877;0.0260909,26.02474
-0;0;0,0.0004056649;0.199529;0.01371217,0.0002020735;0.4993906;0.02077513,0.1189818;0.3817291;0.01807153,0.1662428;0.1895677;0.04706095,0.1884425;-0.05737607;0.01503057,-0.1030624;0.3718039;-0.03317564,-0.1475245;0.2909505;-0.2106182,-0.1736978;0.2719525;-0.4585174,0.07901186;0.005118113;-0.01144251,0.08649425;-0.2945873;-0.0004564915,0.07575884;-0.5870346;0.06556887,0.08999418;-0.616748;0.006890792,-0.05940293;0.002945944;-0.05350339,-0.09715482;-0.2905156;-0.003954157,-0.09421507;-0.5837811;0.05918624,-0.09307186;-0.614732;0.000486549,0.0003282175;0.3993913;0.02113201,0;0;0,0.005138554;0.1992828;0.01612266,0.01081848;0.4989871;0.02666391,0.1268604;0.3785938;0.01510469,0.1705528;0.1844015;0.0346059,0.2026931;-0.06279138;0.01556128,-0.0971527;0.3702047;-0.02186363,-0.1572939;0.3142804;-0.2042246,-0.1792414;0.3397232;-0.4519562,0.07786679;0.003608561;-0.01799283,0.08573863;-0.2958875;-0.002496304,0.07395275;-0.5900536;0.05518769,0.08744634;-0.6181319;-0.005817946,-0.06249693;0.003999864;-0.04978087,-0.09778118;-0.2910441;-0.008500628,-0.09825687;-0.5861738;0.04533506,-0.101327;-0.6125385;-0.01915523,0.009101957;0.3990048;0.025891,26.03617
-0;0;0,0.0003922753;0.1995305;0.01368981,0.0001937363;0.4993923;0.02074999,0.1189875;0.3818671;0.01793646,0.1662676;0.1897193;0.04698534,0.188682;-0.05721194;0.01500811,-0.103101;0.3718118;-0.03315384,-0.1475829;0.2912089;-0.2107053,-0.1726296;0.27336;-0.4588063,0.07900914;0.005065461;-0.01148466,0.08649769;-0.2946403;-0.0005128589,0.0758142;-0.5871416;0.06528112,0.09024228;-0.6171144;0.007004324,-0.05940152;0.003013418;-0.05350121,-0.09720737;-0.2904558;-0.004038475,-0.09420893;-0.5837229;0.05909142,-0.09334315;-0.6143398;-7.088855E-05,0.0003165575;0.399393;0.02110563,0;0;0,0.005138554;0.1992828;0.01612266,0.01081848;0.4989871;0.02666391,0.1268604;0.3785938;0.01510469,0.1705528;0.1844015;0.0346059,0.2026931;-0.06279138;0.01556128,-0.0971527;0.3702047;-0.02186363,-0.1572939;0.3142804;-0.2042246,-0.1792414;0.3397232;-0.4519562,0.07786679;0.003608561;-0.01799283,0.08573863;-0.2958875;-0.002496304,0.07395275;-0.5900536;0.05518769,0.08744634;-0.6181319;-0.005817946,-0.06249693;0.003999864;-0.04978087,-0.09778118;-0.2910441;-0.008500628,-0.09825687;-0.5861738;0.04533506,-0.101327;-0.6125385;-0.01915523,0.009101957;0.3990048;0.025891,26.05821
-0;0;0,0.0003922753;0.1995305;0.01368981,0.0001937363;0.4993923;0.02074999,0.1189875;0.3818671;0.01793646,0.1662676;0.1897193;0.04698534,0.188682;-0.05721194;0.01500811,-0.103101;0.3718118;-0.03315384,-0.1475829;0.2912089;-0.2107053,-0.1726296;0.27336;-0.4588063,0.07900914;0.005065461;-0.01148466,0.08649769;-0.2946403;-0.0005128589,0.0758142;-0.5871416;0.06528112,0.09024228;-0.6171144;0.007004324,-0.05940152;0.003013418;-0.05350121,-0.09720737;-0.2904558;-0.004038475,-0.09420893;-0.5837229;0.05909142,-0.09334315;-0.6143398;-7.088855E-05,0.0003165575;0.399393;0.02110563,0;0;0,0.005138554;0.1992828;0.01612266,0.01081848;0.4989871;0.02666391,0.1268604;0.3785938;0.01510469,0.1705528;0.1844015;0.0346059,0.2026931;-0.06279138;0.01556128,-0.0971527;0.3702047;-0.02186363,-0.1572939;0.3142804;-0.2042246,-0.1792414;0.3397232;-0.4519562,0.07786679;0.003608561;-0.01799283,0.08573863;-0.2958875;-0.002496304,0.07395275;-0.5900536;0.05518769,0.08744634;-0.6181319;-0.005817946,-0.06249693;0.003999864;-0.04978087,-0.09778118;-0.2910441;-0.008500628,-0.09825687;-0.5861738;0.04533506,-0.101327;-0.6125385;-0.01915523,0.009101957;0.3990048;0.025891,26.07018
-0;0;0,0.0003478524;0.1995333;0.01365105,6.257935E-05;0.4993967;0.02063292,0.1188869;0.3818516;0.01805186,0.166252;0.1897023;0.04695194,0.188982;-0.05722685;0.01518187,-0.1032315;0.3718047;-0.03318307,-0.1500131;0.292507;-0.2107313,-0.1724364;0.2724787;-0.4589168,0.0790022;0.005070555;-0.01153006,0.08648983;-0.2946358;-0.0005745767,0.07622781;-0.5871198;0.06536353,0.08995055;-0.6172519;0.007135317,-0.05940387;0.003012001;-0.05349867,-0.09723492;-0.2904587;-0.004064322,-0.09428782;-0.5837664;0.05887964,-0.09363033;-0.6140988;-0.0006709285,0.0002136407;0.3993975;0.02101783,0;0;0,0.005046105;0.1992896;0.01606877,0.010594;0.4990017;0.02646036,0.1266872;0.3786669;0.01506084,0.1706507;0.1846903;0.03604391,0.2026077;-0.06249884;0.01664556,-0.09714688;0.370345;-0.02253654,-0.1553122;0.3148285;-0.2056614,-0.1723873;0.3311229;-0.4545448,0.07794878;0.003591355;-0.01763773,0.08579773;-0.2959145;-0.00232045,0.07396431;-0.5900715;0.05539993,0.08728758;-0.6184821;-0.005215812,-0.0623001;0.004068638;-0.05002143,-0.09757005;-0.2909141;-0.008293461,-0.09801723;-0.5860698;0.04539927,-0.1008494;-0.6130078;-0.01841698,0.008908257;0.3990185;0.02573494,26.09172
-0;0;0,0.0003478524;0.1995333;0.01365105,6.257935E-05;0.4993967;0.02063292,0.1188869;0.3818516;0.01805186,0.166252;0.1897023;0.04695194,0.188982;-0.05722685;0.01518187,-0.1032315;0.3718047;-0.03318307,-0.1500131;0.292507;-0.2107313,-0.1724364;0.2724787;-0.4589168,0.0790022;0.005070555;-0.01153006,0.08648983;-0.2946358;-0.0005745767,0.07622781;-0.5871198;0.06536353,0.08995055;-0.6172519;0.007135317,-0.05940387;0.003012001;-0.05349867,-0.09723492;-0.2904587;-0.004064322,-0.09428782;-0.5837664;0.05887964,-0.09363033;-0.6140988;-0.0006709285,0.0002136407;0.3993975;0.02101783,0;0;0,0.005046105;0.1992896;0.01606877,0.010594;0.4990017;0.02646036,0.1266872;0.3786669;0.01506084,0.1706507;0.1846903;0.03604391,0.2026077;-0.06249884;0.01664556,-0.09714688;0.370345;-0.02253654,-0.1553122;0.3148285;-0.2056614,-0.1723873;0.3311229;-0.4545448,0.07794878;0.003591355;-0.01763773,0.08579773;-0.2959145;-0.00232045,0.07396431;-0.5900715;0.05539993,0.08728758;-0.6184821;-0.005215812,-0.0623001;0.004068638;-0.05002143,-0.09757005;-0.2909141;-0.008293461,-0.09801723;-0.5860698;0.04539927,-0.1008494;-0.6130078;-0.01841698,0.008908257;0.3990185;0.02573494,26.10359
-0;0;0,0.0003478524;0.1995333;0.01365105,6.257935E-05;0.4993967;0.02063292,0.1188869;0.3818516;0.01805186,0.166252;0.1897023;0.04695194,0.188982;-0.05722685;0.01518187,-0.1032315;0.3718047;-0.03318307,-0.1500131;0.292507;-0.2107313,-0.1724364;0.2724787;-0.4589168,0.0790022;0.005070555;-0.01153006,0.08648983;-0.2946358;-0.0005745767,0.07622781;-0.5871198;0.06536353,0.08995055;-0.6172519;0.007135317,-0.05940387;0.003012001;-0.05349867,-0.09723492;-0.2904587;-0.004064322,-0.09428782;-0.5837664;0.05887964,-0.09363033;-0.6140988;-0.0006709285,0.0002136407;0.3993975;0.02101783,0;0;0,0.005046105;0.1992896;0.01606877,0.010594;0.4990017;0.02646036,0.1266872;0.3786669;0.01506084,0.1706507;0.1846903;0.03604391,0.2026077;-0.06249884;0.01664556,-0.09714688;0.370345;-0.02253654,-0.1553122;0.3148285;-0.2056614,-0.1723873;0.3311229;-0.4545448,0.07794878;0.003591355;-0.01763773,0.08579773;-0.2959145;-0.00232045,0.07396431;-0.5900715;0.05539993,0.08728758;-0.6184821;-0.005215812,-0.0623001;0.004068638;-0.05002143,-0.09757005;-0.2909141;-0.008293461,-0.09801723;-0.5860698;0.04539927,-0.1008494;-0.6130078;-0.01841698,0.008908257;0.3990185;0.02573494,26.1145
-0;0;0,0.0002506452;0.1995389;0.01357048,-0.0002251523;0.499405;0.02041873,0.1186602;0.3817755;0.01812059,0.1660181;0.1895955;0.04682701,0.1888942;-0.05734476;0.01524847,-0.1034643;0.3717072;-0.03327068,-0.1503225;0.2923079;-0.2107532,-0.1715671;0.2771485;-0.4593872,0.07898169;0.005226695;-0.0116006,0.08648444;-0.2944788;-0.0006319098,0.07625889;-0.5869915;0.06518401,0.09005621;-0.6170155;0.006824732,-0.05942615;0.002813537;-0.05348472,-0.09725821;-0.2906652;-0.00409884,-0.09431166;-0.5838137;0.05958214,-0.09362114;-0.6134914;-0.0008412339,-6.152666E-06;0.3994062;0.02085116,0;0;0,0.004940016;0.1992908;0.01608704,0.01044295;0.4990037;0.02648758,0.1267052;0.3793056;0.0156897,0.1709285;0.1853734;0.03653633,0.2030154;-0.0617972;0.01711581,-0.09706252;0.3703971;-0.02304767,-0.1552399;0.3143873;-0.2060184,-0.1712795;0.3041684;-0.455294,0.07796556;0.003571369;-0.01756749,0.08580942;-0.2959353;-0.002262154,0.07402089;-0.5901583;0.05512982,0.08730536;-0.6183404;-0.005788833,-0.06207683;0.004114156;-0.05029454,-0.09754439;-0.2907965;-0.008226052,-0.09787928;-0.585958;0.04543578,-0.1008759;-0.6144956;-0.01639351,0.008764229;0.3990205;0.02575192,26.1369
-0;0;0,0.000235325;0.1995402;0.01355218,-0.0001818744;0.4994065;0.02040483,0.1186605;0.3817095;0.01810167,0.16656;0.1895897;0.04630891,0.1891214;-0.05744189;0.01522248,-0.1034832;0.371676;-0.03321913,-0.150746;0.292493;-0.2106911,-0.1721925;0.2771781;-0.4592982,0.07897588;0.00524646;-0.01163121,0.08645569;-0.2944576;-0.0006053085,0.0762288;-0.5869938;0.06510592,0.09000351;-0.6170858;0.006834783,-0.05943478;0.002800195;-0.05347584,-0.0972182;-0.2906865;-0.00410033,-0.09466458;-0.5838553;0.05950467,-0.09351395;-0.6125747;-0.002155062,4.115194E-06;0.3994076;0.02083019,0;0;0,0.004940016;0.1992908;0.01608704,0.01044295;0.4990037;0.02648758,0.1267052;0.3793056;0.0156897,0.1709285;0.1853734;0.03653633,0.2030154;-0.0617972;0.01711581,-0.09706252;0.3703971;-0.02304767,-0.1552399;0.3143873;-0.2060184,-0.1712795;0.3041684;-0.455294,0.07796556;0.003571369;-0.01756749,0.08580942;-0.2959353;-0.002262154,0.07402089;-0.5901583;0.05512982,0.08730536;-0.6183404;-0.005788833,-0.06207683;0.004114156;-0.05029454,-0.09754439;-0.2907965;-0.008226052,-0.09787928;-0.585958;0.04543578,-0.1008759;-0.6144956;-0.01639351,0.008764229;0.3990205;0.02575192,26.15876
-0;0;0,0.000235325;0.1995402;0.01355218,-0.0001818744;0.4994065;0.02040483,0.1186605;0.3817095;0.01810167,0.16656;0.1895897;0.04630891,0.1891214;-0.05744189;0.01522248,-0.1034832;0.371676;-0.03321913,-0.150746;0.292493;-0.2106911,-0.1721925;0.2771781;-0.4592982,0.07897588;0.00524646;-0.01163121,0.08645569;-0.2944576;-0.0006053085,0.0762288;-0.5869938;0.06510592,0.09000351;-0.6170858;0.006834783,-0.05943478;0.002800195;-0.05347584,-0.0972182;-0.2906865;-0.00410033,-0.09466458;-0.5838553;0.05950467,-0.09351395;-0.6125747;-0.002155062,4.115194E-06;0.3994076;0.02083019,0;0;0,0.00484816;0.1992965;0.0160433,0.01021777;0.4990155;0.02635186,0.1266268;0.3797785;0.016101,0.1712584;0.1859729;0.03725331,0.2031398;-0.06116399;0.01708116,-0.09709759;0.3706056;-0.02363072,-0.15534;0.3138413;-0.2063481,-0.1706362;0.3051926;-0.4557298,0.07801399;0.003576773;-0.01735001,0.08594136;-0.2959344;-0.002177563,0.07414596;-0.5901847;0.05507283,0.08705539;-0.6186248;-0.005594291,-0.06174035;0.004254377;-0.05069546,-0.09733471;-0.2905799;-0.008201174,-0.09750674;-0.5857619;0.04534863,-0.1007245;-0.6139786;-0.0168751,0.008565773;0.3990318;0.02563598,26.17029
-0;0;0,0.000235325;0.1995402;0.01355218,-0.0001818744;0.4994065;0.02040483,0.1186605;0.3817095;0.01810167,0.16656;0.1895897;0.04630891,0.1891214;-0.05744189;0.01522248,-0.1034832;0.371676;-0.03321913,-0.150746;0.292493;-0.2106911,-0.1721925;0.2771781;-0.4592982,0.07897588;0.00524646;-0.01163121,0.08645569;-0.2944576;-0.0006053085,0.0762288;-0.5869938;0.06510592,0.09000351;-0.6170858;0.006834783,-0.05943478;0.002800195;-0.05347584,-0.0972182;-0.2906865;-0.00410033,-0.09466458;-0.5838553;0.05950467,-0.09351395;-0.6125747;-0.002155062,4.115194E-06;0.3994076;0.02083019,0;0;0,0.00484816;0.1992965;0.0160433,0.01021777;0.4990155;0.02635186,0.1266268;0.3797785;0.016101,0.1712584;0.1859729;0.03725331,0.2031398;-0.06116399;0.01708116,-0.09709759;0.3706056;-0.02363072,-0.15534;0.3138413;-0.2063481,-0.1706362;0.3051926;-0.4557298,0.07801399;0.003576773;-0.01735001,0.08594136;-0.2959344;-0.002177563,0.07414596;-0.5901847;0.05507283,0.08705539;-0.6186248;-0.005594291,-0.06174035;0.004254377;-0.05069546,-0.09733471;-0.2905799;-0.008201174,-0.09750674;-0.5857619;0.04534863,-0.1007245;-0.6139786;-0.0168751,0.008565773;0.3990318;0.02563598,26.18179
-0;0;0,0.000209334;0.1995421;0.01352355,-0.0002045504;0.4994094;0.02033732,0.1186207;0.3815971;0.01823039,0.1666087;0.189489;0.04636601,0.1891143;-0.05752449;0.01509534,-0.1035629;0.3716159;-0.03313949,-0.1509578;0.2924762;-0.2105955,-0.1726785;0.2826031;-0.4594544,0.07897284;0.005250267;-0.01165009,0.08640836;-0.2944591;-0.0007417062,0.07611416;-0.5869629;0.06510328,0.08987185;-0.6162936;0.005795892,-0.05944286;0.002799275;-0.0534669,-0.09708934;-0.2906733;-0.003903013,-0.09492447;-0.583912;0.05939336,-0.09354548;-0.6131641;-0.00157541,-2.252606E-05;0.3994105;0.02077572,0;0;0,0.00484816;0.1992965;0.0160433,0.01021777;0.4990155;0.02635186,0.1266268;0.3797785;0.016101,0.1712584;0.1859729;0.03725331,0.2031398;-0.06116399;0.01708116,-0.09709759;0.3706056;-0.02363072,-0.15534;0.3138413;-0.2063481,-0.1706362;0.3051926;-0.4557298,0.07801399;0.003576773;-0.01735001,0.08594136;-0.2959344;-0.002177563,0.07414596;-0.5901847;0.05507283,0.08705539;-0.6186248;-0.005594291,-0.06174035;0.004254377;-0.05069546,-0.09733471;-0.2905799;-0.008201174,-0.09750674;-0.5857619;0.04534863,-0.1007245;-0.6139786;-0.0168751,0.008565773;0.3990318;0.02563598,26.20533
-0;0;0,0.0002051515;0.1995422;0.01352341,-0.0001774316;0.4994093;0.02035333,0.1186266;0.3815844;0.01823164,0.1666889;0.1894988;0.04639399,0.1893474;-0.05749655;0.01509063,-0.1035758;0.3715476;-0.03305957,-0.1511128;0.2924964;-0.210517,-0.1739374;0.2874408;-0.4594215,0.07896502;0.005230763;-0.01171174,0.08639468;-0.2944745;-0.0006846711,0.07601345;-0.5869658;0.06520206,0.08864095;-0.6158403;0.00504091,-0.0594607;0.002794696;-0.05344731,-0.09705611;-0.2906809;-0.003862016,-0.09496528;-0.5839515;0.0592884,-0.09367928;-0.6131082;-0.0018063,-1.464014E-05;0.3994103;0.02078056,0;0;0,0.004915293;0.1993314;0.01558368,0.01082701;0.4990914;0.02415095,0.1271105;0.3798749;0.01625886,0.1719528;0.1861375;0.03758909,0.2035944;-0.06101356;0.01721354,-0.09712768;0.3706745;-0.02431783,-0.1542803;0.3128146;-0.2070356,-0.1685288;0.3075404;-0.4565735,0.07803302;0.003593583;-0.01726076,0.08611162;-0.2959126;-0.002069595,0.07397173;-0.5901158;0.05535107,0.08661351;-0.6192018;-0.00452866,-0.06160296;0.004214337;-0.05086566,-0.09723066;-0.2905891;-0.008185133,-0.09748689;-0.58578;0.04531497,-0.1002231;-0.6133953;-0.01768017,0.008922294;0.3991095;0.02410584,26.22599
-0;0;0,0.0002051515;0.1995422;0.01352341,-0.0001774316;0.4994093;0.02035333,0.1186266;0.3815844;0.01823164,0.1666889;0.1894988;0.04639399,0.1893474;-0.05749655;0.01509063,-0.1035758;0.3715476;-0.03305957,-0.1511128;0.2924964;-0.210517,-0.1739374;0.2874408;-0.4594215,0.07896502;0.005230763;-0.01171174,0.08639468;-0.2944745;-0.0006846711,0.07601345;-0.5869658;0.06520206,0.08864095;-0.6158403;0.00504091,-0.0594607;0.002794696;-0.05344731,-0.09705611;-0.2906809;-0.003862016,-0.09496528;-0.5839515;0.0592884,-0.09367928;-0.6131082;-0.0018063,-1.464014E-05;0.3994103;0.02078056,0;0;0,0.004915293;0.1993314;0.01558368,0.01082701;0.4990914;0.02415095,0.1271105;0.3798749;0.01625886,0.1719528;0.1861375;0.03758909,0.2035944;-0.06101356;0.01721354,-0.09712768;0.3706745;-0.02431783,-0.1542803;0.3128146;-0.2070356,-0.1685288;0.3075404;-0.4565735,0.07803302;0.003593583;-0.01726076,0.08611162;-0.2959126;-0.002069595,0.07397173;-0.5901158;0.05535107,0.08661351;-0.6192018;-0.00452866,-0.06160296;0.004214337;-0.05086566,-0.09723066;-0.2905891;-0.008185133,-0.09748689;-0.58578;0.04531497,-0.1002231;-0.6133953;-0.01768017,0.008922294;0.3991095;0.02410584,26.23746
-0;0;0,0.0002051515;0.1995422;0.01352341,-0.0001774316;0.4994093;0.02035333,0.1186266;0.3815844;0.01823164,0.1666889;0.1894988;0.04639399,0.1893474;-0.05749655;0.01509063,-0.1035758;0.3715476;-0.03305957,-0.1511128;0.2924964;-0.210517,-0.1739374;0.2874408;-0.4594215,0.07896502;0.005230763;-0.01171174,0.08639468;-0.2944745;-0.0006846711,0.07601345;-0.5869658;0.06520206,0.08864095;-0.6158403;0.00504091,-0.0594607;0.002794696;-0.05344731,-0.09705611;-0.2906809;-0.003862016,-0.09496528;-0.5839515;0.0592884,-0.09367928;-0.6131082;-0.0018063,-1.464014E-05;0.3994103;0.02078056,0;0;0,0.004915293;0.1993314;0.01558368,0.01082701;0.4990914;0.02415095,0.1271105;0.3798749;0.01625886,0.1719528;0.1861375;0.03758909,0.2035944;-0.06101356;0.01721354,-0.09712768;0.3706745;-0.02431783,-0.1542803;0.3128146;-0.2070356,-0.1685288;0.3075404;-0.4565735,0.07803302;0.003593583;-0.01726076,0.08611162;-0.2959126;-0.002069595,0.07397173;-0.5901158;0.05535107,0.08661351;-0.6192018;-0.00452866,-0.06160296;0.004214337;-0.05086566,-0.09723066;-0.2905891;-0.008185133,-0.09748689;-0.58578;0.04531497,-0.1002231;-0.6133953;-0.01768017,0.008922294;0.3991095;0.02410584,26.24881
-0;0;0,0.002541114;0.1989376;0.02043021,0.007147956;0.4983271;0.03821781,0.1213288;0.3763267;0.01244392,0.1714156;0.1830405;0.02392223,0.190907;-0.06324345;-0.01434413,-0.09871561;0.3677411;-0.01616818,-0.1601967;0.2932689;-0.191308,-0.1745949;0.3321449;-0.4378468,0.07609976;0.006393122;-0.0238318,0.0804853;-0.2929395;-0.004319623,0.06763981;-0.5850056;0.06300355,0.07688352;-0.6155803;0.004503358,-0.06483261;0.001989924;-0.04682706,-0.1046376;-0.2920182;-0.002388239,-0.1054289;-0.5855147;0.05973399,-0.1060595;-0.6150056;-0.0009355061,0.005512157;0.3983993;0.03478914,0;0;0,0.00474061;0.1993355;0.01558504,0.01047049;0.4990982;0.02420756,0.1268027;0.3797803;0.01631048,0.1710766;0.1859744;0.03819942,0.2033815;-0.06106226;0.01748078,-0.09731976;0.3706153;-0.02448114,-0.1531995;0.312109;-0.2073868,-0.16963;0.3072642;-0.4567992,0.07807875;0.003582969;-0.01705496,0.08615884;-0.2959238;-0.001875171,0.07390762;-0.5901464;0.05542208,0.08625332;-0.6187167;-0.005193945,-0.06121933;0.004232539;-0.05132522,-0.09703837;-0.2904435;-0.0079314,-0.09701704;-0.5857029;0.04519013,-0.1007078;-0.6137832;-0.01717851,0.00862881;0.3991152;0.024126,34.02256
-0;0;0,0.002477485;0.1989408;0.02040627,0.00685846;0.498337;0.03813397,0.1211718;0.3762802;0.01261864,0.1704975;0.1827448;0.02315488,0.1909108;-0.06359024;-0.01429288,-0.09887055;0.3680851;-0.01649633,-0.1589096;0.2954964;-0.1929225,-0.1722375;0.3289271;-0.4403185,0.07615775;0.006375595;-0.02365054,0.08068613;-0.292954;-0.004123241,0.06778291;-0.5850348;0.06312483,0.07705037;-0.6160845;0.005288359,-0.06468404;0.002107125;-0.04702696,-0.1043598;-0.2918658;-0.002241034,-0.1052339;-0.5853559;0.05991061,-0.1056559;-0.6149347;-0.0006453358,0.005321486;0.3984066;0.0347348,0;0;0,0.00474061;0.1993355;0.01558504,0.01047049;0.4990982;0.02420756,0.1268027;0.3797803;0.01631048,0.1710766;0.1859744;0.03819942,0.2033815;-0.06106226;0.01748078,-0.09731976;0.3706153;-0.02448114,-0.1531995;0.312109;-0.2073868,-0.16963;0.3072642;-0.4567992,0.07807875;0.003582969;-0.01705496,0.08615884;-0.2959238;-0.001875171,0.07390762;-0.5901464;0.05542208,0.08625332;-0.6187167;-0.005193945,-0.06121933;0.004232539;-0.05132522,-0.09703837;-0.2904435;-0.0079314,-0.09701704;-0.5857029;0.04519013,-0.1007078;-0.6137832;-0.01717851,0.00862881;0.3991152;0.024126,34.04291
-0;0;0,0.002476;0.1989383;0.02043082,0.006812733;0.4983311;0.03822739,0.1211628;0.3763697;0.01268263,0.1706878;0.1828883;0.02327577,0.1914939;-0.06336035;-0.0145226,-0.09883956;0.368479;-0.01677603,-0.1559715;0.3019186;-0.1965138,-0.1699201;0.3298599;-0.4445556,0.07618901;0.006467146;-0.02352467,0.08076931;-0.2928717;-0.00415265,0.06758863;-0.5848837;0.06334013,0.07717089;-0.6157215;0.005258836,-0.06465267;0.002076124;-0.04707145,-0.104193;-0.2918909;-0.002127666,-0.1050503;-0.5854388;0.05975025,-0.1060231;-0.6145614;-0.001394387,0.005295496;0.3984012;0.03480449,0;0;0,0.00474061;0.1993355;0.01558504,0.01047049;0.4990982;0.02420756,0.1268027;0.3797803;0.01631048,0.1710766;0.1859744;0.03819942,0.2033815;-0.06106226;0.01748078,-0.09731976;0.3706153;-0.02448114,-0.1531995;0.312109;-0.2073868,-0.16963;0.3072642;-0.4567992,0.07807875;0.003582969;-0.01705496,0.08615884;-0.2959238;-0.001875171,0.07390762;-0.5901464;0.05542208,0.08625332;-0.6187167;-0.005193945,-0.06121933;0.004232539;-0.05132522,-0.09703837;-0.2904435;-0.0079314,-0.09701704;-0.5857029;0.04519013,-0.1007078;-0.6137832;-0.01717851,0.00862881;0.3991152;0.024126,34.06329
-0;0;0,0.002476;0.1989383;0.02043082,0.006812733;0.4983311;0.03822739,0.1211628;0.3763697;0.01268263,0.1706878;0.1828883;0.02327577,0.1914939;-0.06336035;-0.0145226,-0.09883956;0.368479;-0.01677603,-0.1559715;0.3019186;-0.1965138,-0.1699201;0.3298599;-0.4445556,0.07618901;0.006467146;-0.02352467,0.08076931;-0.2928717;-0.00415265,0.06758863;-0.5848837;0.06334013,0.07717089;-0.6157215;0.005258836,-0.06465267;0.002076124;-0.04707145,-0.104193;-0.2918909;-0.002127666,-0.1050503;-0.5854388;0.05975025,-0.1060231;-0.6145614;-0.001394387,0.005295496;0.3984012;0.03480449,0;0;0,0.00474061;0.1993355;0.01558504,0.01047049;0.4990982;0.02420756,0.1268027;0.3797803;0.01631048,0.1710766;0.1859744;0.03819942,0.2033815;-0.06106226;0.01748078,-0.09731976;0.3706153;-0.02448114,-0.1531995;0.312109;-0.2073868,-0.16963;0.3072642;-0.4567992,0.07807875;0.003582969;-0.01705496,0.08615884;-0.2959238;-0.001875171,0.07390762;-0.5901464;0.05542208,0.08625332;-0.6187167;-0.005193945,-0.06121933;0.004232539;-0.05132522,-0.09703837;-0.2904435;-0.0079314,-0.09701704;-0.5857029;0.04519013,-0.1007078;-0.6137832;-0.01717851,0.00862881;0.3991152;0.024126,34.08437
-0;0;0,0.002511977;0.1989374;0.0204356,0.006860664;0.4983289;0.03824812,0.1212927;0.3766578;0.01285181,0.1708216;0.1831696;0.02330176,0.1918095;-0.06304774;-0.01460002,-0.0987364;0.3688119;-0.01706393,-0.1546381;0.3010447;-0.1967376,-0.1671007;0.3293138;-0.4448213,0.07622042;0.006466971;-0.02342276,0.0809032;-0.2928711;-0.004064029,0.06770836;-0.5848529;0.06355658,0.07716081;-0.615453;0.005124744,-0.06459222;0.00208132;-0.04715415,-0.104003;-0.2918935;-0.002147663,-0.1050229;-0.5854489;0.05969235,-0.1057846;-0.6144254;-0.001643971,0.005341961;0.3983991;0.03482335,0;0;0,0.004608982;0.1993464;0.01548474,0.01012475;0.4991168;0.02401193,0.1265553;0.3798655;0.01645808,0.1709796;0.1860925;0.03833279,0.2031921;-0.06096959;0.01777302,-0.09747197;0.370516;-0.0248774,-0.1533029;0.311497;-0.2076332,-0.1683369;0.3040029;-0.4570681,0.07811251;0.003572429;-0.01690191,0.08614592;-0.2959382;-0.001773696,0.07400446;-0.5901684;0.05550789,0.08632957;-0.6191397;-0.004588854,-0.06101921;0.004231862;-0.05156304,-0.09694597;-0.2903836;-0.007847987,-0.09706899;-0.585646;0.04525626,-0.1004032;-0.6142908;-0.01641936,0.0083487;0.3991326;0.02393935,34.10669
-0;0;0,0.002511977;0.1989374;0.0204356,0.006860664;0.4983289;0.03824812,0.1212927;0.3766578;0.01285181,0.1708216;0.1831696;0.02330176,0.1918095;-0.06304774;-0.01460002,-0.0987364;0.3688119;-0.01706393,-0.1546381;0.3010447;-0.1967376,-0.1671007;0.3293138;-0.4448213,0.07622042;0.006466971;-0.02342276,0.0809032;-0.2928711;-0.004064029,0.06770836;-0.5848529;0.06355658,0.07716081;-0.615453;0.005124744,-0.06459222;0.00208132;-0.04715415,-0.104003;-0.2918935;-0.002147663,-0.1050229;-0.5854489;0.05969235,-0.1057846;-0.6144254;-0.001643971,0.005341961;0.3983991;0.03482335,0;0;0,0.004608982;0.1993464;0.01548474,0.01012475;0.4991168;0.02401193,0.1265553;0.3798655;0.01645808,0.1709796;0.1860925;0.03833279,0.2031921;-0.06096959;0.01777302,-0.09747197;0.370516;-0.0248774,-0.1533029;0.311497;-0.2076332,-0.1683369;0.3040029;-0.4570681,0.07811251;0.003572429;-0.01690191,0.08614592;-0.2959382;-0.001773696,0.07400446;-0.5901684;0.05550789,0.08632957;-0.6191397;-0.004588854,-0.06101921;0.004231862;-0.05156304,-0.09694597;-0.2903836;-0.007847987,-0.09706899;-0.585646;0.04525626,-0.1004032;-0.6142908;-0.01641936,0.0083487;0.3991326;0.02393935,34.11783
-0;0;0,0.002503104;0.1989347;0.02046295,0.006835698;0.4983248;0.03830051,0.1213285;0.3769033;0.01295991,0.1708558;0.1834217;0.023539,0.1920967;-0.06271812;-0.0147232,-0.09874967;0.3689751;-0.01712724,-0.1538976;0.3004816;-0.1967583,-0.1642188;0.3290867;-0.4449019,0.07625993;0.00643202;-0.02330348,0.08094402;-0.292912;-0.004036859,0.06791468;-0.5848936;0.06361648,0.07721177;-0.6160163;0.005887125,-0.06453102;0.002115143;-0.04723636,-0.1039044;-0.2918516;-0.002144381,-0.1049398;-0.5854411;0.05953351,-0.1052025;-0.6144845;-0.001720592,0.005320057;0.398395;0.03487236,0;0;0,0.004439333;0.1993449;0.01555301,0.009901056;0.4991122;0.0242225,0.126323;0.3798045;0.01649293,0.1707573;0.1860514;0.03852282,0.2030324;-0.06100774;0.01802623,-0.0975325;0.3705143;-0.02504637,-0.1522151;0.3109012;-0.2079564,-0.1694279;0.3012484;-0.4571763,0.0781608;0.003564796;-0.01667877,0.08625531;-0.295945;-0.001567747,0.07398117;-0.5901575;0.0557765,0.08639456;-0.6190801;-0.004366089,-0.06085751;0.004255761;-0.05175183,-0.09695995;-0.2902686;-0.007570297,-0.09709721;-0.5855184;0.04560463,-0.1004225;-0.6139098;-0.01639318,0.008133928;0.3991278;0.02410517,34.14039
-0;0;0,0.002503104;0.1989347;0.02046295,0.006835698;0.4983248;0.03830051,0.1213285;0.3769033;0.01295991,0.1708558;0.1834217;0.023539,0.1920967;-0.06271812;-0.0147232,-0.09874967;0.3689751;-0.01712724,-0.1538976;0.3004816;-0.1967583,-0.1642188;0.3290867;-0.4449019,0.07625993;0.00643202;-0.02330348,0.08094402;-0.292912;-0.004036859,0.06791468;-0.5848936;0.06361648,0.07721177;-0.6160163;0.005887125,-0.06453102;0.002115143;-0.04723636,-0.1039044;-0.2918516;-0.002144381,-0.1049398;-0.5854411;0.05953351,-0.1052025;-0.6144845;-0.001720592,0.005320057;0.398395;0.03487236,0;0;0,0.004439333;0.1993449;0.01555301,0.009901056;0.4991122;0.0242225,0.126323;0.3798045;0.01649293,0.1707573;0.1860514;0.03852282,0.2030324;-0.06100774;0.01802623,-0.0975325;0.3705143;-0.02504637,-0.1522151;0.3109012;-0.2079564,-0.1694279;0.3012484;-0.4571763,0.0781608;0.003564796;-0.01667877,0.08625531;-0.295945;-0.001567747,0.07398117;-0.5901575;0.0557765,0.08639456;-0.6190801;-0.004366089,-0.06085751;0.004255761;-0.05175183,-0.09695995;-0.2902686;-0.007570297,-0.09709721;-0.5855184;0.04560463,-0.1004225;-0.6139098;-0.01639318,0.008133928;0.3991278;0.02410517,34.15163
-0;0;0,0.002434785;0.1989339;0.02047859,0.006457694;0.49833;0.03828276,0.1211864;0.377211;0.01318731,0.1713597;0.1839354;0.02446511,0.192209;-0.06210838;-0.0146213,-0.09895819;0.3692376;-0.01733589,-0.152462;0.3022559;-0.1980312,-0.1619938;0.3267766;-0.4466431,0.07631505;0.006403946;-0.02313012,0.08112735;-0.2929431;-0.003942609,0.06794761;-0.5849874;0.06341056,0.07850499;-0.6161749;0.005989987,-0.06441234;0.002154303;-0.0473963,-0.1035168;-0.2917869;-0.001905501,-0.1046934;-0.5854357;0.05948683,-0.1048786;-0.6138691;-0.002546728,0.005079436;0.3983976;0.03487394,0;0;0,0.004439333;0.1993449;0.01555301,0.009901056;0.4991122;0.0242225,0.126323;0.3798045;0.01649293,0.1707573;0.1860514;0.03852282,0.2030324;-0.06100774;0.01802623,-0.0975325;0.3705143;-0.02504637,-0.1522151;0.3109012;-0.2079564,-0.1694279;0.3012484;-0.4571763,0.0781608;0.003564796;-0.01667877,0.08625531;-0.295945;-0.001567747,0.07398117;-0.5901575;0.0557765,0.08639456;-0.6190801;-0.004366089,-0.06085751;0.004255761;-0.05175183,-0.09695995;-0.2902686;-0.007570297,-0.09709721;-0.5855184;0.04560463,-0.1004225;-0.6139098;-0.01639318,0.008133928;0.3991278;0.02410517,34.16478
-0;0;0,0.002434785;0.1989339;0.02047859,0.006457694;0.49833;0.03828276,0.1211864;0.377211;0.01318731,0.1713597;0.1839354;0.02446511,0.192209;-0.06210838;-0.0146213,-0.09895819;0.3692376;-0.01733589,-0.152462;0.3022559;-0.1980312,-0.1619938;0.3267766;-0.4466431,0.07631505;0.006403946;-0.02313012,0.08112735;-0.2929431;-0.003942609,0.06794761;-0.5849874;0.06341056,0.07850499;-0.6161749;0.005989987,-0.06441234;0.002154303;-0.0473963,-0.1035168;-0.2917869;-0.001905501,-0.1046934;-0.5854357;0.05948683,-0.1048786;-0.6138691;-0.002546728,0.005079436;0.3983976;0.03487394,0;0;0,0.004211278;0.1993657;0.01534898,0.009300455;0.499145;0.02386578,0.1258542;0.3798368;0.01639664,0.1702853;0.1861069;0.03863658,0.2026443;-0.0609719;0.01851341,-0.09800468;0.3705318;-0.0253986,-0.1519782;0.3104896;-0.2083789,-0.1718296;0.2986843;-0.4573098,0.07819483;0.003579419;-0.01651531,0.08633254;-0.2959299;-0.001417535,0.07406166;-0.5901508;0.05588463,0.08664417;-0.6188198;-0.004554298,-0.06077741;0.004230872;-0.0518479,-0.09681358;-0.2902865;-0.007565994,-0.0969957;-0.5854964;0.04582989,-0.1000531;-0.6145183;-0.01537624,0.007649793;0.3991587;0.02377081,34.18556
-0;0;0,0.002613019;0.1989277;0.0205169,0.00683924;0.4983189;0.03835366,0.1214853;0.3769909;0.01339371,0.1716065;0.1837017;0.02466881,0.1925953;-0.06235981;-0.01423119,-0.09866381;0.3693782;-0.01732105,-0.1511558;0.3019708;-0.1981547,-0.1580423;0.3263028;-0.4468725,0.07637406;0.006284419;-0.02296755,0.08147858;-0.2930582;-0.003785206,0.06826895;-0.5850872;0.06362787,0.07888174;-0.6160409;0.005888145,-0.06435683;0.002229966;-0.04746814,-0.1030402;-0.2917383;-0.001792494,-0.1043741;-0.5853878;0.05959294,-0.104585;-0.6131657;-0.003260501,0.005390608;0.3983877;0.03493914,0;0;0,0.004211278;0.1993657;0.01534898,0.009300455;0.499145;0.02386578,0.1258542;0.3798368;0.01639664,0.1702853;0.1861069;0.03863658,0.2026443;-0.0609719;0.01851341,-0.09800468;0.3705318;-0.0253986,-0.1519782;0.3104896;-0.2083789,-0.1718296;0.2986843;-0.4573098,0.07819483;0.003579419;-0.01651531,0.08633254;-0.2959299;-0.001417535,0.07406166;-0.5901508;0.05588463,0.08664417;-0.6188198;-0.004554298,-0.06077741;0.004230872;-0.0518479,-0.09681358;-0.2902865;-0.007565994,-0.0969957;-0.5854964;0.04582989,-0.1000531;-0.6145183;-0.01537624,0.007649793;0.3991587;0.02377081,34.20704
-0;0;0,0.002613019;0.1989277;0.0205169,0.00683924;0.4983189;0.03835366,0.1214853;0.3769909;0.01339371,0.1716065;0.1837017;0.02466881,0.1925953;-0.06235981;-0.01423119,-0.09866381;0.3693782;-0.01732105,-0.1511558;0.3019708;-0.1981547,-0.1580423;0.3263028;-0.4468725,0.07637406;0.006284419;-0.02296755,0.08147858;-0.2930582;-0.003785206,0.06826895;-0.5850872;0.06362787,0.07888174;-0.6160409;0.005888145,-0.06435683;0.002229966;-0.04746814,-0.1030402;-0.2917383;-0.001792494,-0.1043741;-0.5853878;0.05959294,-0.104585;-0.6131657;-0.003260501,0.005390608;0.3983877;0.03493914,0;0;0,0.004211278;0.1993657;0.01534898,0.009300455;0.499145;0.02386578,0.1258542;0.3798368;0.01639664,0.1702853;0.1861069;0.03863658,0.2026443;-0.0609719;0.01851341,-0.09800468;0.3705318;-0.0253986,-0.1519782;0.3104896;-0.2083789,-0.1718296;0.2986843;-0.4573098,0.07819483;0.003579419;-0.01651531,0.08633254;-0.2959299;-0.001417535,0.07406166;-0.5901508;0.05588463,0.08664417;-0.6188198;-0.004554298,-0.06077741;0.004230872;-0.0518479,-0.09681358;-0.2902865;-0.007565994,-0.0969957;-0.5854964;0.04582989,-0.1000531;-0.6145183;-0.01537624,0.007649793;0.3991587;0.02377081,34.21837
-0;0;0,0.002587299;0.1989189;0.02060574,0.00675483;0.4983026;0.03858332,0.1214983;0.3772453;0.01370135,0.1722409;0.1842044;0.0263655,0.1927957;-0.06164043;-0.01410479,-0.09868172;0.3696453;-0.01738273,-0.1501906;0.3022161;-0.1984908,-0.1559035;0.3241631;-0.4474601,0.07643256;0.006193315;-0.02279707,0.08159859;-0.2931544;-0.003711164,0.06866136;-0.5852364;0.06352516,0.07892641;-0.6163099;0.005890891,-0.0642366;0.002352719;-0.04762482,-0.1028773;-0.2915928;-0.001767185,-0.1042158;-0.5852582;0.05954251,-0.105087;-0.6150965;-0.000666175,0.005330318;0.3983729;0.035117,0;0;0,0.004211278;0.1993657;0.01534898,0.009300455;0.499145;0.02386578,0.1258542;0.3798368;0.01639664,0.1702853;0.1861069;0.03863658,0.2026443;-0.0609719;0.01851341,-0.09800468;0.3705318;-0.0253986,-0.1519782;0.3104896;-0.2083789,-0.1718296;0.2986843;-0.4573098,0.07819483;0.003579419;-0.01651531,0.08633254;-0.2959299;-0.001417535,0.07406166;-0.5901508;0.05588463,0.08664417;-0.6188198;-0.004554298,-0.06077741;0.004230872;-0.0518479,-0.09681358;-0.2902865;-0.007565994,-0.0969957;-0.5854964;0.04582989,-0.1000531;-0.6145183;-0.01537624,0.007649793;0.3991587;0.02377081,34.22968
-0;0;0,0.002587299;0.1989189;0.02060574,0.00675483;0.4983026;0.03858332,0.1214983;0.3772453;0.01370135,0.1722409;0.1842044;0.0263655,0.1927957;-0.06164043;-0.01410479,-0.09868172;0.3696453;-0.01738273,-0.1501906;0.3022161;-0.1984908,-0.1559035;0.3241631;-0.4474601,0.07643256;0.006193315;-0.02279707,0.08159859;-0.2931544;-0.003711164,0.06866136;-0.5852364;0.06352516,0.07892641;-0.6163099;0.005890891,-0.0642366;0.002352719;-0.04762482,-0.1028773;-0.2915928;-0.001767185,-0.1042158;-0.5852582;0.05954251,-0.105087;-0.6150965;-0.000666175,0.005330318;0.3983729;0.035117,0;0;0,0.004068693;0.1993645;0.01540236,0.009022813;0.4991434;0.02402871,0.1256133;0.3797784;0.01641002,0.1701686;0.1861078;0.03891649,0.2022042;-0.0610553;0.01931804,-0.09815867;0.370547;-0.02544376,-0.1517472;0.308946;-0.2080186,-0.1725487;0.2930455;-0.4566438,0.07822675;0.003585038;-0.01636219,0.08637579;-0.295924;-0.001264508,0.07403929;-0.5901178;0.0561622,0.08677195;-0.6185066;-0.004608568,-0.06072246;0.004215126;-0.05191354,-0.09679696;-0.2902574;-0.007364951,-0.09701663;-0.5854851;0.04593191,-0.1019711;-0.613592;-0.01631562,0.007424584;0.3991562;0.02388865,34.2407
-0;0;0,0.002604435;0.1989202;0.0205901,0.006782305;0.4983044;0.03855823,0.1215716;0.3773875;0.013798,0.1724999;0.1844246;0.02689962,0.1930531;-0.06140473;-0.01366497,-0.09866376;0.3698735;-0.01750851,-0.1496652;0.3011879;-0.1982878,-0.15372;0.3231582;-0.4472875,0.076458;0.006146934;-0.02272419,0.08193778;-0.2931883;-0.003529657,0.06894538;-0.5852857;0.06362906,0.07950962;-0.6166059;0.006397758,-0.06420818;0.002369486;-0.0476623,-0.102622;-0.2915946;-0.001733053,-0.1038712;-0.5852352;0.05969705,-0.09247448;-0.5526447;-0.03811412,0.005356818;0.3983744;0.03509773,0;0;0,0.004068693;0.1993645;0.01540236,0.009022813;0.4991434;0.02402871,0.1256133;0.3797784;0.01641002,0.1701686;0.1861078;0.03891649,0.2022042;-0.0610553;0.01931804,-0.09815867;0.370547;-0.02544376,-0.1517472;0.308946;-0.2080186,-0.1725487;0.2930455;-0.4566438,0.07822675;0.003585038;-0.01636219,0.08637579;-0.295924;-0.001264508,0.07403929;-0.5901178;0.0561622,0.08677195;-0.6185066;-0.004608568,-0.06072246;0.004215126;-0.05191354,-0.09679696;-0.2902574;-0.007364951,-0.09701663;-0.5854851;0.04593191,-0.1019711;-0.613592;-0.01631562,0.007424584;0.3991562;0.02388865,34.26274
-0;0;0,0.002604435;0.1989202;0.0205901,0.006782305;0.4983044;0.03855823,0.1215716;0.3773875;0.013798,0.1724999;0.1844246;0.02689962,0.1930531;-0.06140473;-0.01366497,-0.09866376;0.3698735;-0.01750851,-0.1496652;0.3011879;-0.1982878,-0.15372;0.3231582;-0.4472875,0.076458;0.006146934;-0.02272419,0.08193778;-0.2931883;-0.003529657,0.06894538;-0.5852857;0.06362906,0.07950962;-0.6166059;0.006397758,-0.06420818;0.002369486;-0.0476623,-0.102622;-0.2915946;-0.001733053,-0.1038712;-0.5852352;0.05969705,-0.09247448;-0.5526447;-0.03811412,0.005356818;0.3983744;0.03509773,0;0;0,0.00398412;0.1993658;0.01540803,0.00884393;0.4991454;0.02407183,0.1254971;0.3798937;0.0165767,0.1702175;0.1862414;0.03891172,0.2019911;-0.06099115;0.01976742,-0.09820815;0.3705187;-0.02560549,-0.1499708;0.3036713;-0.2068568,-0.1732714;0.2925023;-0.4555179,0.0782368;0.003609972;-0.0163086,0.08637064;-0.2958985;-0.001192031,0.07406679;-0.590113;0.05613516,0.08685127;-0.618716;-0.004347343,-0.06067693;0.004180861;-0.05196951,-0.09683341;-0.2902597;-0.007276192,-0.09731517;-0.5855182;0.04584759,-0.101904;-0.6136257;-0.0164273,0.007280809;0.3991578;0.023911,34.28528
-0;0;0,0.002439074;0.1989316;0.02050088,0.006051932;0.4983334;0.0382749,0.1212346;0.3778455;0.01387735,0.172977;0.1850714;0.02656072,0.1938225;-0.06081462;-0.01350831,-0.09911215;0.3700311;-0.0177977,-0.14932;0.3013664;-0.1988069,-0.1507409;0.3278769;-0.4473932,0.0765859;0.00629682;-0.02224749,0.08184935;-0.2930761;-0.003587708,0.06869173;-0.5851497;0.0636423,0.07943267;-0.6164077;0.00635561,-0.06413222;0.002301779;-0.04776776,-0.1026689;-0.2916436;-0.001821402,-0.1039339;-0.585291;0.05957563,-0.09236475;-0.5527105;-0.03821352,0.004893568;0.3983967;0.03491097,0;0;0,0.00398412;0.1993658;0.01540803,0.00884393;0.4991454;0.02407183,0.1254971;0.3798937;0.0165767,0.1702175;0.1862414;0.03891172,0.2019911;-0.06099115;0.01976742,-0.09820815;0.3705187;-0.02560549,-0.1499708;0.3036713;-0.2068568,-0.1732714;0.2925023;-0.4555179,0.0782368;0.003609972;-0.0163086,0.08637064;-0.2958985;-0.001192031,0.07406679;-0.590113;0.05613516,0.08685127;-0.618716;-0.004347343,-0.06067693;0.004180861;-0.05196951,-0.09683341;-0.2902597;-0.007276192,-0.09731517;-0.5855182;0.04584759,-0.101904;-0.6136257;-0.0164273,0.007280809;0.3991578;0.023911,34.29662
-0;0;0,0.002439074;0.1989316;0.02050088,0.006051932;0.4983334;0.0382749,0.1212346;0.3778455;0.01387735,0.172977;0.1850714;0.02656072,0.1938225;-0.06081462;-0.01350831,-0.09911215;0.3700311;-0.0177977,-0.14932;0.3013664;-0.1988069,-0.1507409;0.3278769;-0.4473932,0.0765859;0.00629682;-0.02224749,0.08184935;-0.2930761;-0.003587708,0.06869173;-0.5851497;0.0636423,0.07943267;-0.6164077;0.00635561,-0.06413222;0.002301779;-0.04776776,-0.1026689;-0.2916436;-0.001821402,-0.1039339;-0.585291;0.05957563,-0.09236475;-0.5527105;-0.03821352,0.004893568;0.3983967;0.03491097,0;0;0,0.00398412;0.1993658;0.01540803,0.00884393;0.4991454;0.02407183,0.1254971;0.3798937;0.0165767,0.1702175;0.1862414;0.03891172,0.2019911;-0.06099115;0.01976742,-0.09820815;0.3705187;-0.02560549,-0.1499708;0.3036713;-0.2068568,-0.1732714;0.2925023;-0.4555179,0.0782368;0.003609972;-0.0163086,0.08637064;-0.2958985;-0.001192031,0.07406679;-0.590113;0.05613516,0.08685127;-0.618716;-0.004347343,-0.06067693;0.004180861;-0.05196951,-0.09683341;-0.2902597;-0.007276192,-0.09731517;-0.5855182;0.04584759,-0.101904;-0.6136257;-0.0164273,0.007280809;0.3991578;0.023911,34.30793
-0;0;0,0.002449126;0.1989348;0.02046813,0.006117545;0.4983378;0.03821302,0.1212774;0.3775225;0.01417242,0.1725593;0.1846467;0.02717648,0.1937821;-0.06137617;-0.0118409,-0.0991155;0.3702988;-0.01791062,-0.1484689;0.3003247;-0.1986532,-0.1496564;0.3252576;-0.4474039,0.07661356;0.006226747;-0.02217181,0.08197881;-0.2931454;-0.003530251,0.06862891;-0.5851641;0.06390036,0.08048945;-0.6159732;0.006200988,-0.06408456;0.00238322;-0.04782771,-0.1024293;-0.2915717;-0.00178244,-0.1037066;-0.5852453;0.05948965,-0.09199744;-0.5526716;-0.03828161,0.004932055;0.3984011;0.03485647,0;0;0,0.003862479;0.1993766;0.01529865,0.008643237;0.4991574;0.02399312,0.1253326;0.3799924;0.01660405,0.1700444;0.1863551;0.03908647,0.2019022;-0.0608927;0.02028211,-0.09845225;0.3705665;-0.02561192,-0.1474124;0.3042352;-0.207829,-0.1766247;0.2862493;-0.4554641,0.07827121;0.003626151;-0.01613902,0.08647089;-0.2958786;-0.0009833118,0.07418408;-0.590062;0.05650694,0.08693776;-0.6186453;-0.004007623,-0.06062132;0.004161445;-0.05203592,-0.09678289;-0.2902278;-0.007010177,-0.09727065;-0.585463;0.04624351,-0.1017096;-0.6129906;-0.0167626,0.007093861;0.3991696;0.02380349,34.32983
-0;0;0,0.002449126;0.1989348;0.02046813,0.006117545;0.4983378;0.03821302,0.1212774;0.3775225;0.01417242,0.1725593;0.1846467;0.02717648,0.1937821;-0.06137617;-0.0118409,-0.0991155;0.3702988;-0.01791062,-0.1484689;0.3003247;-0.1986532,-0.1496564;0.3252576;-0.4474039,0.07661356;0.006226747;-0.02217181,0.08197881;-0.2931454;-0.003530251,0.06862891;-0.5851641;0.06390036,0.08048945;-0.6159732;0.006200988,-0.06408456;0.00238322;-0.04782771,-0.1024293;-0.2915717;-0.00178244,-0.1037066;-0.5852453;0.05948965,-0.09199744;-0.5526716;-0.03828161,0.004932055;0.3984011;0.03485647,0;0;0,0.003862479;0.1993766;0.01529865,0.008643237;0.4991574;0.02399312,0.1253326;0.3799924;0.01660405,0.1700444;0.1863551;0.03908647,0.2019022;-0.0608927;0.02028211,-0.09845225;0.3705665;-0.02561192,-0.1474124;0.3042352;-0.207829,-0.1766247;0.2862493;-0.4554641,0.07827121;0.003626151;-0.01613902,0.08647089;-0.2958786;-0.0009833118,0.07418408;-0.590062;0.05650694,0.08693776;-0.6186453;-0.004007623,-0.06062132;0.004161445;-0.05203592,-0.09678289;-0.2902278;-0.007010177,-0.09727065;-0.585463;0.04624351,-0.1017096;-0.6129906;-0.0167626,0.007093861;0.3991696;0.02380349,34.34127
-0;0;0,0.002449126;0.1989348;0.02046813,0.006117545;0.4983378;0.03821302,0.1212774;0.3775225;0.01417242,0.1725593;0.1846467;0.02717648,0.1937821;-0.06137617;-0.0118409,-0.0991155;0.3702988;-0.01791062,-0.1484689;0.3003247;-0.1986532,-0.1496564;0.3252576;-0.4474039,0.07661356;0.006226747;-0.02217181,0.08197881;-0.2931454;-0.003530251,0.06862891;-0.5851641;0.06390036,0.08048945;-0.6159732;0.006200988,-0.06408456;0.00238322;-0.04782771,-0.1024293;-0.2915717;-0.00178244,-0.1037066;-0.5852453;0.05948965,-0.09199744;-0.5526716;-0.03828161,0.004932055;0.3984011;0.03485647,0;0;0,0.003862479;0.1993766;0.01529865,0.008643237;0.4991574;0.02399312,0.1253326;0.3799924;0.01660405,0.1700444;0.1863551;0.03908647,0.2019022;-0.0608927;0.02028211,-0.09845225;0.3705665;-0.02561192,-0.1474124;0.3042352;-0.207829,-0.1766247;0.2862493;-0.4554641,0.07827121;0.003626151;-0.01613902,0.08647089;-0.2958786;-0.0009833118,0.07418408;-0.590062;0.05650694,0.08693776;-0.6186453;-0.004007623,-0.06062132;0.004161445;-0.05203592,-0.09678289;-0.2902278;-0.007010177,-0.09727065;-0.585463;0.04624351,-0.1017096;-0.6129906;-0.0167626,0.007093861;0.3991696;0.02380349,34.3526
-0;0;0,0.00243619;0.1989343;0.02047471,0.0061006;0.4983359;0.03824268,0.1213414;0.3774362;0.01476707,0.172167;0.1844965;0.02858867,0.1933266;-0.06139727;-0.01126749,-0.09911788;0.3704341;-0.01799923,-0.1471024;0.291701;-0.1954776,-0.1499318;0.3222647;-0.4435862,0.07661705;0.006200777;-0.02216704,0.0821073;-0.2931708;-0.003551332,0.06905103;-0.5853074;0.06342436,0.08011004;-0.6168481;0.006601807,-0.06406504;0.002385682;-0.04785373,-0.1022975;-0.2915872;-0.001829673,-0.1037649;-0.5852871;0.05931142,-0.09187011;-0.5527373;-0.03843317,0.004910756;0.3983997;0.03487774,0;0;0,0.003668923;0.1993839;0.01525173,0.008204341;0.4991693;0.02393208,0.124974;0.379938;0.01670362,0.1699798;0.1863846;0.03932167,0.2012494;-0.06094307;0.02058022,-0.0987802;0.3704689;-0.02567955,-0.1463188;0.3054255;-0.2087354,-0.1765992;0.2844718;-0.4560086,0.07828871;0.003524709;-0.01607651,0.08642896;-0.2959751;-0.0007933732,0.07404758;-0.5901239;0.05685418,0.08655504;-0.6185579;-0.003904995,-0.06063318;0.004236704;-0.05201603,-0.09687136;-0.2901097;-0.006772358,-0.09785961;-0.5851918;0.04731639,-0.1023571;-0.6110361;-0.01770225,0.006735807;0.3991802;0.02373734,34.36359
-0;0;0,0.00243619;0.1989343;0.02047471,0.0061006;0.4983359;0.03824268,0.1213414;0.3774362;0.01476707,0.172167;0.1844965;0.02858867,0.1933266;-0.06139727;-0.01126749,-0.09911788;0.3704341;-0.01799923,-0.1471024;0.291701;-0.1954776,-0.1499318;0.3222647;-0.4435862,0.07661705;0.006200777;-0.02216704,0.0821073;-0.2931708;-0.003551332,0.06905103;-0.5853074;0.06342436,0.08011004;-0.6168481;0.006601807,-0.06406504;0.002385682;-0.04785373,-0.1022975;-0.2915872;-0.001829673,-0.1037649;-0.5852871;0.05931142,-0.09187011;-0.5527373;-0.03843317,0.004910756;0.3983997;0.03487774,0;0;0,0.003668923;0.1993839;0.01525173,0.008204341;0.4991693;0.02393208,0.124974;0.379938;0.01670362,0.1699798;0.1863846;0.03932167,0.2012494;-0.06094307;0.02058022,-0.0987802;0.3704689;-0.02567955,-0.1463188;0.3054255;-0.2087354,-0.1765992;0.2844718;-0.4560086,0.07828871;0.003524709;-0.01607651,0.08642896;-0.2959751;-0.0007933732,0.07404758;-0.5901239;0.05685418,0.08655504;-0.6185579;-0.003904995,-0.06063318;0.004236704;-0.05201603,-0.09687136;-0.2901097;-0.006772358,-0.09785961;-0.5851918;0.04731639,-0.1023571;-0.6110361;-0.01770225,0.006735807;0.3991802;0.02373734,34.38596
-0;0;0,0.002408613;0.1989323;0.02049689,0.006047781;0.498331;0.03832289,0.1213046;0.3773688;0.01496823,0.171007;0.1841487;0.02895528,0.1934158;-0.06179701;-0.00988511,-0.09913868;0.3704685;-0.01801782,-0.1497106;0.2791709;-0.1886262,-0.1561319;0.3071773;-0.4369696,0.07664479;0.006127493;-0.0220914,0.08221451;-0.2932441;-0.003500402,0.06908581;-0.5853475;0.0636057,0.08005071;-0.6169376;0.006835781,-0.06402108;0.002448019;-0.04790937,-0.1021118;-0.2915155;-0.001708318,-0.103519;-0.5852972;0.05904001,-0.09156549;-0.5527413;-0.03869852,0.004860838;0.3983953;0.03493682,0;0;0,0.003668923;0.1993839;0.01525173,0.008204341;0.4991693;0.02393208,0.124974;0.379938;0.01670362,0.1699798;0.1863846;0.03932167,0.2012494;-0.06094307;0.02058022,-0.0987802;0.3704689;-0.02567955,-0.1463188;0.3054255;-0.2087354,-0.1765992;0.2844718;-0.4560086,0.07828871;0.003524709;-0.01607651,0.08642896;-0.2959751;-0.0007933732,0.07404758;-0.5901239;0.05685418,0.08655504;-0.6185579;-0.003904995,-0.06063318;0.004236704;-0.05201603,-0.09687136;-0.2901097;-0.006772358,-0.09785961;-0.5851918;0.04731639,-0.1023571;-0.6110361;-0.01770225,0.006735807;0.3991802;0.02373734,34.4082
-0;0;0,0.002520133;0.1989303;0.02050353,0.00652685;0.4983252;0.03831425,0.121612;0.3770127;0.01535906,0.1713773;0.1838868;0.03038639,0.1934531;-0.06192368;-0.009486707,-0.09888503;0.370487;-0.01793686,-0.1483345;0.2829999;-0.1908552,-0.1545681;0.3058074;-0.4397346,0.07670365;0.006096442;-0.02189482,0.08247748;-0.2932717;-0.003310984,0.06943346;-0.585421;0.06361184,0.0798216;-0.6171109;0.006877054,-0.06390437;0.002534919;-0.04806043,-0.1018144;-0.2914126;-0.001609176,-0.1032156;-0.5851814;0.05920118,-0.09113462;-0.5526323;-0.03852046,0.00516496;0.3983918;0.03493015,0;0;0,0.003582021;0.1993806;0.01531461,0.008108302;0.499162;0.02413196,0.124945;0.380401;0.01679581,0.1699827;0.1868511;0.03937991,0.2014854;-0.06044559;0.0206197,-0.0988588;0.3704391;-0.02555474,-0.1465062;0.3039775;-0.2080721,-0.17509;0.2834419;-0.4555822,0.07833488;0.003496948;-0.01585619,0.08656747;-0.296;-0.0005657943,0.07411765;-0.5901302;0.0571618,0.08639429;-0.6189961;-0.003083032,-0.06050983;0.004222369;-0.05216063,-0.09682252;-0.2900499;-0.006496634,-0.09782306;-0.5851343;0.04757951,-0.1016884;-0.611202;-0.0172183,0.006635223;0.3991731;0.02389595,34.43045
-0;0;0,0.002520133;0.1989303;0.02050353,0.00652685;0.4983252;0.03831425,0.121612;0.3770127;0.01535906,0.1713773;0.1838868;0.03038639,0.1934531;-0.06192368;-0.009486707,-0.09888503;0.370487;-0.01793686,-0.1483345;0.2829999;-0.1908552,-0.1545681;0.3058074;-0.4397346,0.07670365;0.006096442;-0.02189482,0.08247748;-0.2932717;-0.003310984,0.06943346;-0.585421;0.06361184,0.0798216;-0.6171109;0.006877054,-0.06390437;0.002534919;-0.04806043,-0.1018144;-0.2914126;-0.001609176,-0.1032156;-0.5851814;0.05920118,-0.09113462;-0.5526323;-0.03852046,0.00516496;0.3983918;0.03493015,0;0;0,0.003582021;0.1993806;0.01531461,0.008108302;0.499162;0.02413196,0.124945;0.380401;0.01679581,0.1699827;0.1868511;0.03937991,0.2014854;-0.06044559;0.0206197,-0.0988588;0.3704391;-0.02555474,-0.1465062;0.3039775;-0.2080721,-0.17509;0.2834419;-0.4555822,0.07833488;0.003496948;-0.01585619,0.08656747;-0.296;-0.0005657943,0.07411765;-0.5901302;0.0571618,0.08639429;-0.6189961;-0.003083032,-0.06050983;0.004222369;-0.05216063,-0.09682252;-0.2900499;-0.006496634,-0.09782306;-0.5851343;0.04757951,-0.1016884;-0.611202;-0.0172183,0.006635223;0.3991731;0.02389595,34.4417
-0;0;0,0.002479007;0.1989333;0.02047943,0.006342762;0.4983345;0.03821155,0.1215024;0.3769613;0.01546647,0.1713329;0.1838973;0.03106173,0.1933351;-0.06192788;-0.008761477,-0.09899653;0.3704855;-0.01803584,-0.1485067;0.2908325;-0.1946828,-0.1462529;0.3212376;-0.4428167,0.07672158;0.00608944;-0.02183388,0.08252358;-0.2932833;-0.003333351,0.06933909;-0.5853134;0.06408026,0.07904389;-0.6179827;0.008658133,-0.06388893;0.002531761;-0.04808112,-0.1018093;-0.2914237;-0.001688849,-0.103371;-0.5851579;0.05928479,-0.09122571;-0.5526197;-0.03842691,0.005036496;0.3983992;0.03485983,0;0;0,0.003582021;0.1993806;0.01531461,0.008108302;0.499162;0.02413196,0.124945;0.380401;0.01679581,0.1699827;0.1868511;0.03937991,0.2014854;-0.06044559;0.0206197,-0.0988588;0.3704391;-0.02555474,-0.1465062;0.3039775;-0.2080721,-0.17509;0.2834419;-0.4555822,0.07833488;0.003496948;-0.01585619,0.08656747;-0.296;-0.0005657943,0.07411765;-0.5901302;0.0571618,0.08639429;-0.6189961;-0.003083032,-0.06050983;0.004222369;-0.05216063,-0.09682252;-0.2900499;-0.006496634,-0.09782306;-0.5851343;0.04757951,-0.1016884;-0.611202;-0.0172183,0.006635223;0.3991731;0.02389595,34.46408
-0;0;0,0.002479007;0.1989333;0.02047943,0.006342762;0.4983345;0.03821155,0.1215024;0.3769613;0.01546647,0.1713329;0.1838973;0.03106173,0.1933351;-0.06192788;-0.008761477,-0.09899653;0.3704855;-0.01803584,-0.1485067;0.2908325;-0.1946828,-0.1462529;0.3212376;-0.4428167,0.07672158;0.00608944;-0.02183388,0.08252358;-0.2932833;-0.003333351,0.06933909;-0.5853134;0.06408026,0.07904389;-0.6179827;0.008658133,-0.06388893;0.002531761;-0.04808112,-0.1018093;-0.2914237;-0.001688849,-0.103371;-0.5851579;0.05928479,-0.09122571;-0.5526197;-0.03842691,0.005036496;0.3983992;0.03485983,0;0;0,0.003492343;0.1993765;0.01538914,0.007960637;0.4991542;0.02437422,0.124816;0.3805008;0.01670711,0.1700304;0.1870183;0.03951453,0.201304;-0.06031612;0.02086918,-0.09894387;0.3705227;-0.02552861,-0.1464679;0.3003204;-0.2066725,-0.1765787;0.2749447;-0.4535518,0.07835916;0.003459391;-0.01574399,0.08647235;-0.2960335;-0.000311086,0.07398468;-0.5901663;0.05739462,0.08626508;-0.6190454;-0.002832346,-0.06050753;0.004244909;-0.05216147,-0.09689182;-0.2900001;-0.006378897,-0.09791134;-0.5850628;0.04781516,-0.1011549;-0.6112598;-0.01686476,0.006505307;0.3991652;0.02407056,34.47571
-0;0;0,0.002472739;0.198934;0.02047315,0.006325413;0.4983357;0.038199,0.1215049;0.377034;0.0154732,0.1713015;0.1839788;0.03128344,0.1931681;-0.06199892;-0.007663269,-0.09899972;0.3705412;-0.01809483,-0.1482472;0.2911904;-0.1949511,-0.1483181;0.3131856;-0.4439816,0.07672684;0.006080301;-0.0218179,0.08249139;-0.2933029;-0.003473967,0.06933706;-0.5853451;0.06389267,0.07917774;-0.6167393;0.006637525,-0.06386034;0.002537548;-0.04811878,-0.1017928;-0.2914195;-0.001746804,-0.1034218;-0.5851201;0.05938682,-0.09124425;-0.5525898;-0.03831946,0.005023028;0.3984003;0.03484988,0;0;0,0.003492343;0.1993765;0.01538914,0.007960637;0.4991542;0.02437422,0.124816;0.3805008;0.01670711,0.1700304;0.1870183;0.03951453,0.201304;-0.06031612;0.02086918,-0.09894387;0.3705227;-0.02552861,-0.1464679;0.3003204;-0.2066725,-0.1765787;0.2749447;-0.4535518,0.07835916;0.003459391;-0.01574399,0.08647235;-0.2960335;-0.000311086,0.07398468;-0.5901663;0.05739462,0.08626508;-0.6190454;-0.002832346,-0.06050753;0.004244909;-0.05216147,-0.09689182;-0.2900001;-0.006378897,-0.09791134;-0.5850628;0.04781516,-0.1011549;-0.6112598;-0.01686476,0.006505307;0.3991652;0.02407056,34.49853
-0;0;0,0.002472739;0.198934;0.02047315,0.006325413;0.4983357;0.038199,0.1215049;0.377034;0.0154732,0.1713015;0.1839788;0.03128344,0.1931681;-0.06199892;-0.007663269,-0.09899972;0.3705412;-0.01809483,-0.1482472;0.2911904;-0.1949511,-0.1483181;0.3131856;-0.4439816,0.07672684;0.006080301;-0.0218179,0.08249139;-0.2933029;-0.003473967,0.06933706;-0.5853451;0.06389267,0.07917774;-0.6167393;0.006637525,-0.06386034;0.002537548;-0.04811878,-0.1017928;-0.2914195;-0.001746804,-0.1034218;-0.5851201;0.05938682,-0.09124425;-0.5525898;-0.03831946,0.005023028;0.3984003;0.03484988,0;0;0,0.003492343;0.1993765;0.01538914,0.007960637;0.4991542;0.02437422,0.124816;0.3805008;0.01670711,0.1700304;0.1870183;0.03951453,0.201304;-0.06031612;0.02086918,-0.09894387;0.3705227;-0.02552861,-0.1464679;0.3003204;-0.2066725,-0.1765787;0.2749447;-0.4535518,0.07835916;0.003459391;-0.01574399,0.08647235;-0.2960335;-0.000311086,0.07398468;-0.5901663;0.05739462,0.08626508;-0.6190454;-0.002832346,-0.06050753;0.004244909;-0.05216147,-0.09689182;-0.2900001;-0.006378897,-0.09791134;-0.5850628;0.04781516,-0.1011549;-0.6112598;-0.01686476,0.006505307;0.3991652;0.02407056,34.51008
-0;0;0,0.002472739;0.198934;0.02047315,0.006325413;0.4983357;0.038199,0.1215049;0.377034;0.0154732,0.1713015;0.1839788;0.03128344,0.1931681;-0.06199892;-0.007663269,-0.09899972;0.3705412;-0.01809483,-0.1482472;0.2911904;-0.1949511,-0.1483181;0.3131856;-0.4439816,0.07672684;0.006080301;-0.0218179,0.08249139;-0.2933029;-0.003473967,0.06933706;-0.5853451;0.06389267,0.07917774;-0.6167393;0.006637525,-0.06386034;0.002537548;-0.04811878,-0.1017928;-0.2914195;-0.001746804,-0.1034218;-0.5851201;0.05938682,-0.09124425;-0.5525898;-0.03831946,0.005023028;0.3984003;0.03484988,0;0;0,0.003432687;0.1993833;0.01531383,0.007830637;0.4991648;0.02421534,0.124742;0.3805876;0.01695584,0.16998;0.1870652;0.03937463,0.2013471;-0.06027839;0.02101064,-0.09907987;0.3705615;-0.02562472,-0.1481023;0.2937481;-0.2036598,-0.1747407;0.2754264;-0.4515604,0.07836992;0.003479183;-0.01568605,0.0864373;-0.2960152;-0.0002578264,0.07404453;-0.5901835;0.05728746,0.08652008;-0.6192786;-0.002615243,-0.06048211;0.004231279;-0.05219206,-0.0970908;-0.2899842;-0.006398208,-0.09794442;-0.5850234;0.04792627,-0.101052;-0.6112939;-0.01667364,0.006395933;0.3991755;0.02393431,34.52166
-0;0;0,0.002374916;0.1989497;0.02033152,0.006063915;0.4983577;0.03798633,0.1213631;0.3772389;0.01536116,0.1713677;0.1842868;0.03176332,0.1929334;-0.06179817;-0.006669763,-0.09916355;0.370571;-0.01833784,-0.1481046;0.2913938;-0.1953569,-0.1580697;0.2799322;-0.4448951,0.07677422;0.006117282;-0.02164022,0.08248246;-0.2932912;-0.003696613,0.06929252;-0.5853425;0.06362394,0.07912555;-0.6165727;0.006135143,-0.06380464;0.002493217;-0.04819492,-0.1018623;-0.2914659;-0.001938395,-0.1034206;-0.5851705;0.05917755,-0.09120447;-0.5526438;-0.03852326,0.004834605;0.3984206;0.03466009,0;0;0,0.003432687;0.1993833;0.01531383,0.007830637;0.4991648;0.02421534,0.124742;0.3805876;0.01695584,0.16998;0.1870652;0.03937463,0.2013471;-0.06027839;0.02101064,-0.09907987;0.3705615;-0.02562472,-0.1481023;0.2937481;-0.2036598,-0.1747407;0.2754264;-0.4515604,0.07836992;0.003479183;-0.01568605,0.0864373;-0.2960152;-0.0002578264,0.07404453;-0.5901835;0.05728746,0.08652008;-0.6192786;-0.002615243,-0.06048211;0.004231279;-0.05219206,-0.0970908;-0.2899842;-0.006398208,-0.09794442;-0.5850234;0.04792627,-0.101052;-0.6112939;-0.01667364,0.006395933;0.3991755;0.02393431,34.53281
-0;0;0,0.002374916;0.1989497;0.02033152,0.006063915;0.4983577;0.03798633,0.1213631;0.3772389;0.01536116,0.1713677;0.1842868;0.03176332,0.1929334;-0.06179817;-0.006669763,-0.09916355;0.370571;-0.01833784,-0.1481046;0.2913938;-0.1953569,-0.1580697;0.2799322;-0.4448951,0.07677422;0.006117282;-0.02164022,0.08248246;-0.2932912;-0.003696613,0.06929252;-0.5853425;0.06362394,0.07912555;-0.6165727;0.006135143,-0.06380464;0.002493217;-0.04819492,-0.1018623;-0.2914659;-0.001938395,-0.1034206;-0.5851705;0.05917755,-0.09120447;-0.5526438;-0.03852326,0.004834605;0.3984206;0.03466009,0;0;0,0.003432687;0.1993833;0.01531383,0.007830637;0.4991648;0.02421534,0.124742;0.3805876;0.01695584,0.16998;0.1870652;0.03937463,0.2013471;-0.06027839;0.02101064,-0.09907987;0.3705615;-0.02562472,-0.1481023;0.2937481;-0.2036598,-0.1747407;0.2754264;-0.4515604,0.07836992;0.003479183;-0.01568605,0.0864373;-0.2960152;-0.0002578264,0.07404453;-0.5901835;0.05728746,0.08652008;-0.6192786;-0.002615243,-0.06048211;0.004231279;-0.05219206,-0.0970908;-0.2899842;-0.006398208,-0.09794442;-0.5850234;0.04792627,-0.101052;-0.6112939;-0.01667364,0.006395933;0.3991755;0.02393431,34.5564
-0;0;0,0.002299902;0.1989548;0.02029015,0.005939463;0.4983652;0.03791807,0.1213047;0.3776484;0.01518169,0.1715505;0.184752;0.03150238,0.1932254;-0.0613789;-0.006573282,-0.09930554;0.3706739;-0.01839172,-0.1470616;0.2894762;-0.1948182,-0.1608652;0.2768916;-0.4441194,0.07682956;0.006208781;-0.02141659,0.08231578;-0.2932208;-0.003758837,0.06924169;-0.5853186;0.06338251,0.07883268;-0.6164182;0.005668823,-0.06376499;0.002427778;-0.04825071,-0.1018884;-0.2915269;-0.002020661,-0.1033735;-0.58527;0.0589123,-0.09116697;-0.5527406;-0.03879019,0.0047231;0.3984278;0.03459658,0;0;0,0.003396962;0.1993937;0.01518581,0.007812372;0.4991779;0.02399829,0.1246924;0.3804377;0.01688197,0.1699457;0.1868751;0.038919,0.2011163;-0.06050964;0.0207751,-0.09920806;0.3704464;-0.02553864,-0.1468971;0.2954093;-0.2046899,-0.1783091;0.2612486;-0.4503449,0.07838888;0.003513535;-0.01558322,0.08660839;-0.2959842;-0.000300575,0.07425901;-0.5901353;0.05734152,0.08643079;-0.6192613;-0.002582807,-0.06047597;0.004190129;-0.05220249,-0.09703247;-0.2900435;-0.006483667,-0.0979766;-0.5850244;0.04815533,-0.1013687;-0.6112417;-0.01649304,0.006364882;0.3991887;0.0237385,34.57855
-0;0;0,0.002080248;0.1989959;0.01990713,0.005461954;0.4984213;0.03733702,0.1209528;0.3776961;0.01469724,0.1712184;0.1848021;0.03098463,0.1926363;-0.06146301;-0.006362282,-0.0996311;0.3707842;-0.01900767,-0.1473989;0.2872373;-0.1943307,-0.1614921;0.2766902;-0.4437102,0.07697506;0.006165972;-0.02090025,0.08210436;-0.2933177;-0.004071392,0.06909293;-0.5854678;0.06285435,0.0789178;-0.6167974;0.005504943,-0.06361113;0.002418305;-0.04845385,-0.102054;-0.2915093;-0.002316199,-0.1033806;-0.5853193;0.05829702,-0.09114488;-0.5528026;-0.03939956,0.004365641;0.3984805;0.03407332,0;0;0,0.003396962;0.1993937;0.01518581,0.007812372;0.4991779;0.02399829,0.1246924;0.3804377;0.01688197,0.1699457;0.1868751;0.038919,0.2011163;-0.06050964;0.0207751,-0.09920806;0.3704464;-0.02553864,-0.1468971;0.2954093;-0.2046899,-0.1783091;0.2612486;-0.4503449,0.07838888;0.003513535;-0.01558322,0.08660839;-0.2959842;-0.000300575,0.07425901;-0.5901353;0.05734152,0.08643079;-0.6192613;-0.002582807,-0.06047597;0.004190129;-0.05220249,-0.09703247;-0.2900435;-0.006483667,-0.0979766;-0.5850244;0.04815533,-0.1013687;-0.6112417;-0.01649304,0.006364882;0.3991887;0.0237385,34.58997
-0;0;0,0.002080248;0.1989959;0.01990713,0.005461954;0.4984213;0.03733702,0.1209528;0.3776961;0.01469724,0.1712184;0.1848021;0.03098463,0.1926363;-0.06146301;-0.006362282,-0.0996311;0.3707842;-0.01900767,-0.1473989;0.2872373;-0.1943307,-0.1614921;0.2766902;-0.4437102,0.07697506;0.006165972;-0.02090025,0.08210436;-0.2933177;-0.004071392,0.06909293;-0.5854678;0.06285435,0.0789178;-0.6167974;0.005504943,-0.06361113;0.002418305;-0.04845385,-0.102054;-0.2915093;-0.002316199,-0.1033806;-0.5853193;0.05829702,-0.09114488;-0.5528026;-0.03939956,0.004365641;0.3984805;0.03407332,0;0;0,0.003396962;0.1993937;0.01518581,0.007812372;0.4991779;0.02399829,0.1246924;0.3804377;0.01688197,0.1699457;0.1868751;0.038919,0.2011163;-0.06050964;0.0207751,-0.09920806;0.3704464;-0.02553864,-0.1468971;0.2954093;-0.2046899,-0.1783091;0.2612486;-0.4503449,0.07838888;0.003513535;-0.01558322,0.08660839;-0.2959842;-0.000300575,0.07425901;-0.5901353;0.05734152,0.08643079;-0.6192613;-0.002582807,-0.06047597;0.004190129;-0.05220249,-0.09703247;-0.2900435;-0.006483667,-0.0979766;-0.5850244;0.04815533,-0.1013687;-0.6112417;-0.01649304,0.006364882;0.3991887;0.0237385,34.6021
-0;0;0,0.002080248;0.1989959;0.01990713,0.005461954;0.4984213;0.03733702,0.1209528;0.3776961;0.01469724,0.1712184;0.1848021;0.03098463,0.1926363;-0.06146301;-0.006362282,-0.0996311;0.3707842;-0.01900767,-0.1473989;0.2872373;-0.1943307,-0.1614921;0.2766902;-0.4437102,0.07697506;0.006165972;-0.02090025,0.08210436;-0.2933177;-0.004071392,0.06909293;-0.5854678;0.06285435,0.0789178;-0.6167974;0.005504943,-0.06361113;0.002418305;-0.04845385,-0.102054;-0.2915093;-0.002316199,-0.1033806;-0.5853193;0.05829702,-0.09114488;-0.5528026;-0.03939956,0.004365641;0.3984805;0.03407332,0;0;0,0.003307872;0.1993894;0.01526243,0.00768523;0.4991707;0.02418547,0.1245265;0.3802189;0.01680659,0.1695962;0.1866044;0.03876424,0.200889;-0.06077401;0.02074486,-0.09929512;0.3703746;-0.02541378,-0.1473709;0.2939401;-0.2038696,-0.177557;0.2610728;-0.4498545,0.07835301;0.003448806;-0.01577694,0.08642283;-0.2960393;-0.0002283268,0.0741173;-0.5901707;0.05752363,0.08637794;-0.6193037;-0.002373338,-0.06057652;0.004237451;-0.05208195,-0.0972981;-0.2900125;-0.006601248,-0.09818589;-0.5849298;0.04838034,-0.1018109;-0.6116964;-0.0156021,0.006246333;0.3991815;0.02389305,34.61336
-0;0;0,0.002080248;0.1989959;0.01990713,0.005461954;0.4984213;0.03733702,0.1209528;0.3776961;0.01469724,0.1712184;0.1848021;0.03098463,0.1926363;-0.06146301;-0.006362282,-0.0996311;0.3707842;-0.01900767,-0.1473989;0.2872373;-0.1943307,-0.1614921;0.2766902;-0.4437102,0.07697506;0.006165972;-0.02090025,0.08210436;-0.2933177;-0.004071392,0.06909293;-0.5854678;0.06285435,0.0789178;-0.6167974;0.005504943,-0.06361113;0.002418305;-0.04845385,-0.102054;-0.2915093;-0.002316199,-0.1033806;-0.5853193;0.05829702,-0.09114488;-0.5528026;-0.03939956,0.004365641;0.3984805;0.03407332,0;0;0,0.003307872;0.1993894;0.01526243,0.00768523;0.4991707;0.02418547,0.1245265;0.3802189;0.01680659,0.1695962;0.1866044;0.03876424,0.200889;-0.06077401;0.02074486,-0.09929512;0.3703746;-0.02541378,-0.1473709;0.2939401;-0.2038696,-0.177557;0.2610728;-0.4498545,0.07835301;0.003448806;-0.01577694,0.08642283;-0.2960393;-0.0002283268,0.0741173;-0.5901707;0.05752363,0.08637794;-0.6193037;-0.002373338,-0.06057652;0.004237451;-0.05208195,-0.0972981;-0.2900125;-0.006601248,-0.09818589;-0.5849298;0.04838034,-0.1018109;-0.6116964;-0.0156021,0.006246333;0.3991815;0.02389305,34.62474
-0;0;0,0.001987007;0.1990075;0.01980061,0.005278231;0.4984418;0.03709851,0.1208314;0.3778123;0.01463164,0.1708726;0.1848436;0.03072416,0.1922704;-0.06149766;-0.006128514,-0.09974996;0.3708067;-0.01929679,-0.1472289;0.2857172;-0.1939551,-0.1686961;0.2626975;-0.4419657,0.07693134;0.006132687;-0.02107031,0.08197223;-0.2933564;-0.004311757,0.06881286;-0.5854458;0.0628496,0.07892795;-0.6162809;0.004855126,-0.06366104;0.002429693;-0.04838769,-0.1023546;-0.2915352;-0.002699133,-0.1035929;-0.5853432;0.05792509,-0.1040948;-0.6156126;-0.00171189,0.004204089;0.3984997;0.03386945,0;0;0,0.003307872;0.1993894;0.01526243,0.00768523;0.4991707;0.02418547,0.1245265;0.3802189;0.01680659,0.1695962;0.1866044;0.03876424,0.200889;-0.06077401;0.02074486,-0.09929512;0.3703746;-0.02541378,-0.1473709;0.2939401;-0.2038696,-0.177557;0.2610728;-0.4498545,0.07835301;0.003448806;-0.01577694,0.08642283;-0.2960393;-0.0002283268,0.0741173;-0.5901707;0.05752363,0.08637794;-0.6193037;-0.002373338,-0.06057652;0.004237451;-0.05208195,-0.0972981;-0.2900125;-0.006601248,-0.09818589;-0.5849298;0.04838034,-0.1018109;-0.6116964;-0.0156021,0.006246333;0.3991815;0.02389305,34.63638
-0;0;0,0.001987007;0.1990075;0.01980061,0.005278231;0.4984418;0.03709851,0.1208314;0.3778123;0.01463164,0.1708726;0.1848436;0.03072416,0.1922704;-0.06149766;-0.006128514,-0.09974996;0.3708067;-0.01929679,-0.1472289;0.2857172;-0.1939551,-0.1686961;0.2626975;-0.4419657,0.07693134;0.006132687;-0.02107031,0.08197223;-0.2933564;-0.004311757,0.06881286;-0.5854458;0.0628496,0.07892795;-0.6162809;0.004855126,-0.06366104;0.002429693;-0.04838769,-0.1023546;-0.2915352;-0.002699133,-0.1035929;-0.5853432;0.05792509,-0.1040948;-0.6156126;-0.00171189,0.004204089;0.3984997;0.03386945,0;0;0,0.003187925;0.1993993;0.01515767,0.007387538;0.4991865;0.02397547,0.1243346;0.3805084;0.01669725,0.169523;0.1869106;0.03855809,0.2008004;-0.06044355;0.02018256,-0.09955997;0.3701682;-0.02541114,-0.1478954;0.2915415;-0.2028415,-0.1837059;0.2367798;-0.4441271,0.07835247;0.003483575;-0.01577199,0.08634933;-0.2960143;-0.0003747381,0.07391085;-0.5900869;0.05764742,0.08650675;-0.619122;-0.002309307,-0.0606175;0.004215133;-0.05203606,-0.09746057;-0.2900028;-0.006446697,-0.09829945;-0.5849129;0.04857492,-0.1021083;-0.611136;-0.01604335,0.006006464;0.3991964;0.02371209,34.64806
-0;0;0,0.001967607;0.1990119;0.01975856,0.005124703;0.4984538;0.0369378,0.1207597;0.3778574;0.01466001,0.1708137;0.1848904;0.03073316,0.1919686;-0.06147127;-0.006122934,-0.09986699;0.3708479;-0.0193833,-0.1482825;0.2809027;-0.1913304,-0.1687264;0.2647593;-0.4399696,0.0769106;0.00612902;-0.02114697,0.08190616;-0.2933588;-0.004351608,0.06871279;-0.585427;0.06289504,0.07915232;-0.6160515;0.004665278,-0.06373839;0.002424737;-0.048286,-0.1024336;-0.2915622;-0.002741128,-0.1034772;-0.5854823;0.05734132,-0.09117571;-0.5529474;-0.04035026,0.004104319;0.3985093;0.03376563,0;0;0,0.003187925;0.1993993;0.01515767,0.007387538;0.4991865;0.02397547,0.1243346;0.3805084;0.01669725,0.169523;0.1869106;0.03855809,0.2008004;-0.06044355;0.02018256,-0.09955997;0.3701682;-0.02541114,-0.1478954;0.2915415;-0.2028415,-0.1837059;0.2367798;-0.4441271,0.07835247;0.003483575;-0.01577199,0.08634933;-0.2960143;-0.0003747381,0.07391085;-0.5900869;0.05764742,0.08650675;-0.619122;-0.002309307,-0.0606175;0.004215133;-0.05203606,-0.09746057;-0.2900028;-0.006446697,-0.09829945;-0.5849129;0.04857492,-0.1021083;-0.611136;-0.01604335,0.006006464;0.3991964;0.02371209,34.67012
-0;0;0,0.00194661;0.1990125;0.01975473,0.005066346;0.498457;0.0368988,0.1206778;0.3778121;0.014495,0.1707465;0.1848384;0.03044083,0.1918323;-0.06155586;-0.006236635,-0.09994064;0.3709278;-0.01940962,-0.1477875;0.2807675;-0.1914032,-0.1694457;0.2722682;-0.4403183,0.07690162;0.006125052;-0.02118074,0.08174971;-0.2933626;-0.004339531,0.06851467;-0.5854331;0.06288894,0.07902373;-0.6158865;0.004435435,-0.063756;0.002411294;-0.04826343,-0.1028107;-0.2915138;-0.002626147,-0.1036882;-0.5854894;0.05718707,-0.09140614;-0.5529537;-0.04050709,0.00405311;0.3985121;0.03373551,0;0;0,0.003187925;0.1993993;0.01515767,0.007387538;0.4991865;0.02397547,0.1243346;0.3805084;0.01669725,0.169523;0.1869106;0.03855809,0.2008004;-0.06044355;0.02018256,-0.09955997;0.3701682;-0.02541114,-0.1478954;0.2915415;-0.2028415,-0.1837059;0.2367798;-0.4441271,0.07835247;0.003483575;-0.01577199,0.08634933;-0.2960143;-0.0003747381,0.07391085;-0.5900869;0.05764742,0.08650675;-0.619122;-0.002309307,-0.0606175;0.004215133;-0.05203606,-0.09746057;-0.2900028;-0.006446697,-0.09829945;-0.5849129;0.04857492,-0.1021083;-0.611136;-0.01604335,0.006006464;0.3991964;0.02371209,34.69276
-0;0;0,0.00194661;0.1990125;0.01975473,0.005066346;0.498457;0.0368988,0.1206778;0.3778121;0.014495,0.1707465;0.1848384;0.03044083,0.1918323;-0.06155586;-0.006236635,-0.09994064;0.3709278;-0.01940962,-0.1477875;0.2807675;-0.1914032,-0.1694457;0.2722682;-0.4403183,0.07690162;0.006125052;-0.02118074,0.08174971;-0.2933626;-0.004339531,0.06851467;-0.5854331;0.06288894,0.07902373;-0.6158865;0.004435435,-0.063756;0.002411294;-0.04826343,-0.1028107;-0.2915138;-0.002626147,-0.1036882;-0.5854894;0.05718707,-0.09140614;-0.5529537;-0.04050709,0.00405311;0.3985121;0.03373551,0;0;0,0.003040737;0.1993874;0.01534322,0.00718803;0.4991676;0.02440017,0.1241559;0.3805716;0.01709231,0.1695808;0.1869924;0.03862546,0.2011952;-0.06023332;0.01913236,-0.09975039;0.3700204;-0.02498148,-0.1395824;0.2919082;-0.2047366,-0.1826975;0.2398689;-0.4454294,0.07829837;0.003415458;-0.01605303,0.08618521;-0.2960497;2.334639E-05,0.07382185;-0.5901254;0.0580457,0.08594492;-0.6192471;-0.001894146,-0.06075711;0.004269359;-0.05186854,-0.09780668;-0.2898723;-0.005955335,-0.09873334;-0.5847907;0.04901971,-0.1024171;-0.6108894;-0.01575233,0.005812803;0.3991776;0.0240722,34.70419
-0;0;0,0.00194661;0.1990125;0.01975473,0.005066346;0.498457;0.0368988,0.1206778;0.3778121;0.014495,0.1707465;0.1848384;0.03044083,0.1918323;-0.06155586;-0.006236635,-0.09994064;0.3709278;-0.01940962,-0.1477875;0.2807675;-0.1914032,-0.1694457;0.2722682;-0.4403183,0.07690162;0.006125052;-0.02118074,0.08174971;-0.2933626;-0.004339531,0.06851467;-0.5854331;0.06288894,0.07902373;-0.6158865;0.004435435,-0.063756;0.002411294;-0.04826343,-0.1028107;-0.2915138;-0.002626147,-0.1036882;-0.5854894;0.05718707,-0.09140614;-0.5529537;-0.04050709,0.00405311;0.3985121;0.03373551,0;0;0,0.003040737;0.1993874;0.01534322,0.00718803;0.4991676;0.02440017,0.1241559;0.3805716;0.01709231,0.1695808;0.1869924;0.03862546,0.2011952;-0.06023332;0.01913236,-0.09975039;0.3700204;-0.02498148,-0.1395824;0.2919082;-0.2047366,-0.1826975;0.2398689;-0.4454294,0.07829837;0.003415458;-0.01605303,0.08618521;-0.2960497;2.334639E-05,0.07382185;-0.5901254;0.0580457,0.08594492;-0.6192471;-0.001894146,-0.06075711;0.004269359;-0.05186854,-0.09780668;-0.2898723;-0.005955335,-0.09873334;-0.5847907;0.04901971,-0.1024171;-0.6108894;-0.01575233,0.005812803;0.3991776;0.0240722,34.71521
-0;0;0,0.001884633;0.1990233;0.01965126,0.004894696;0.4984741;0.03670438,0.1205654;0.3779089;0.01433756,0.1704889;0.1848991;0.03030219,0.1917228;-0.06147949;-0.006395394,-0.1002175;0.3702689;-0.0189232,-0.1483406;0.2805451;-0.191068,-0.1689889;0.2517515;-0.4385444,0.07685039;0.006146895;-0.02135961,0.08156683;-0.2933171;-0.004066879,0.06830792;-0.5854532;0.06287134,0.07870203;-0.6158109;0.004265845,-0.06386312;0.002380961;-0.0481231,-0.1031783;-0.2915397;-0.002681393,-0.1039779;-0.5855457;0.05698301,-0.09211702;-0.5530004;-0.04076489,0.003925298;0.3985279;0.03357153,0;0;0,0.003040737;0.1993874;0.01534322,0.00718803;0.4991676;0.02440017,0.1241559;0.3805716;0.01709231,0.1695808;0.1869924;0.03862546,0.2011952;-0.06023332;0.01913236,-0.09975039;0.3700204;-0.02498148,-0.1395824;0.2919082;-0.2047366,-0.1826975;0.2398689;-0.4454294,0.07829837;0.003415458;-0.01605303,0.08618521;-0.2960497;2.334639E-05,0.07382185;-0.5901254;0.0580457,0.08594492;-0.6192471;-0.001894146,-0.06075711;0.004269359;-0.05186854,-0.09780668;-0.2898723;-0.005955335,-0.09873334;-0.5847907;0.04901971,-0.1024171;-0.6108894;-0.01575233,0.005812803;0.3991776;0.0240722,34.73742
-0;0;0,0.001884633;0.1990233;0.01965126,0.004894696;0.4984741;0.03670438,0.1205654;0.3779089;0.01433756,0.1704889;0.1848991;0.03030219,0.1917228;-0.06147949;-0.006395394,-0.1002175;0.3702689;-0.0189232,-0.1483406;0.2805451;-0.191068,-0.1689889;0.2517515;-0.4385444,0.07685039;0.006146895;-0.02135961,0.08156683;-0.2933171;-0.004066879,0.06830792;-0.5854532;0.06287134,0.07870203;-0.6158109;0.004265845,-0.06386312;0.002380961;-0.0481231,-0.1031783;-0.2915397;-0.002681393,-0.1039779;-0.5855457;0.05698301,-0.09211702;-0.5530004;-0.04076489,0.003925298;0.3985279;0.03357153,0;0;0,0.002958389;0.1993875;0.01535806,0.007058647;0.4991657;0.02450722,0.1240194;0.380552;0.01693737,0.1696023;0.1870128;0.0384955,0.2011745;-0.06021918;0.0190134,-0.09990558;0.3700255;-0.02483771,-0.1437874;0.2784857;-0.1971596,-0.1778492;0.2439458;-0.442408,0.07823815;0.003408079;-0.01634553,0.08614801;-0.296037;8.848496E-05,0.0737139;-0.5900911;0.05820582,0.08559841;-0.619093;-0.001939461,-0.06085899;0.004254977;-0.05175015,-0.09770261;-0.2898294;-0.005307339,-0.09908134;-0.5848575;0.04906715,-0.1015149;-0.6119614;-0.01456503,0.005692631;0.3991757;0.0241448,34.74847
-0;0;0,0.001851251;0.1990256;0.0196315,0.004748372;0.4984801;0.03663361,0.1204803;0.3780605;0.01426156,0.1705213;0.1850697;0.03008646,0.1915782;-0.061353;-0.006416785,-0.1003395;0.3704322;-0.019024,-0.1494268;0.2681942;-0.1837596,-0.1755065;0.2384259;-0.4306071,0.07682613;0.006139385;-0.02144886,0.08156788;-0.2933261;-0.004187077,0.06831065;-0.5854743;0.06269842,0.07870938;-0.6159115;0.004203044,-0.06391501;0.002381001;-0.04805416,-0.1032302;-0.291562;-0.002756711,-0.1039181;-0.5855319;0.05708605,-0.09206521;-0.5529874;-0.04066269,0.003819155;0.3985327;0.03352443,0;0;0,0.002958389;0.1993875;0.01535806,0.007058647;0.4991657;0.02450722,0.1240194;0.380552;0.01693737,0.1696023;0.1870128;0.0384955,0.2011745;-0.06021918;0.0190134,-0.09990558;0.3700255;-0.02483771,-0.1437874;0.2784857;-0.1971596,-0.1778492;0.2439458;-0.442408,0.07823815;0.003408079;-0.01634553,0.08614801;-0.296037;8.848496E-05,0.0737139;-0.5900911;0.05820582,0.08559841;-0.619093;-0.001939461,-0.06085899;0.004254977;-0.05175015,-0.09770261;-0.2898294;-0.005307339,-0.09908134;-0.5848575;0.04906715,-0.1015149;-0.6119614;-0.01456503,0.005692631;0.3991757;0.0241448,34.75988
-0;0;0,0.001851251;0.1990256;0.0196315,0.004748372;0.4984801;0.03663361,0.1204803;0.3780605;0.01426156,0.1705213;0.1850697;0.03008646,0.1915782;-0.061353;-0.006416785,-0.1003395;0.3704322;-0.019024,-0.1494268;0.2681942;-0.1837596,-0.1755065;0.2384259;-0.4306071,0.07682613;0.006139385;-0.02144886,0.08156788;-0.2933261;-0.004187077,0.06831065;-0.5854743;0.06269842,0.07870938;-0.6159115;0.004203044,-0.06391501;0.002381001;-0.04805416,-0.1032302;-0.291562;-0.002756711,-0.1039181;-0.5855319;0.05708605,-0.09206521;-0.5529874;-0.04066269,0.003819155;0.3985327;0.03352443,0;0;0,0.002958389;0.1993875;0.01535806,0.007058647;0.4991657;0.02450722,0.1240194;0.380552;0.01693737,0.1696023;0.1870128;0.0384955,0.2011745;-0.06021918;0.0190134,-0.09990558;0.3700255;-0.02483771,-0.1437874;0.2784857;-0.1971596,-0.1778492;0.2439458;-0.442408,0.07823815;0.003408079;-0.01634553,0.08614801;-0.296037;8.848496E-05,0.0737139;-0.5900911;0.05820582,0.08559841;-0.619093;-0.001939461,-0.06085899;0.004254977;-0.05175015,-0.09770261;-0.2898294;-0.005307339,-0.09908134;-0.5848575;0.04906715,-0.1015149;-0.6119614;-0.01456503,0.005692631;0.3991757;0.0241448,34.77138
-0;0;0,0.001799677;0.1990287;0.01960488,0.004633275;0.4984888;0.03652057,0.1203407;0.3779917;0.01402577,0.1702107;0.1849245;0.02945373,0.191198;-0.06154816;-0.006751068,-0.1006638;0.3693635;-0.01807136,-0.1556902;0.2668363;-0.1807375,-0.184555;0.2177984;-0.4241756,0.07677834;0.00610689;-0.02162849,0.08143806;-0.2933756;-0.004643342,0.06844009;-0.5856534;0.06172493,0.07809795;-0.6176417;0.005292367,-0.0639952;0.002403995;-0.04794616,-0.1035916;-0.2915573;-0.00301436,-0.1041818;-0.585448;0.05721818,-0.0929084;-0.5528868;-0.04060205,0.003717755;0.3985405;0.03343771,0;0;0,0.0027718;0.1994001;0.01522915,0.006534039;0.4991891;0.02416971,0.1236379;0.3806038;0.01694118,0.1691746;0.187039;0.03836736,0.2010116;-0.06013048;0.01852654,-0.1003573;0.3697883;-0.02484647,-0.1605898;0.2866194;-0.196471,-0.1821593;0.2189949;-0.4361827,0.07822037;0.003481001;-0.01641511,0.08606187;-0.2959502;0.0003026593,0.0737988;-0.5899973;0.05849159,0.08551757;-0.6192302;-0.001381699,-0.06091878;0.004213149;-0.05168318,-0.0979912;-0.2898678;-0.005400687,-0.09915104;-0.5848465;0.04924566,-0.101472;-0.611119;-0.01538492,0.005290101;0.3991973;0.02387457,34.79314
-0;0;0,0.001799677;0.1990287;0.01960488,0.004633275;0.4984888;0.03652057,0.1203407;0.3779917;0.01402577,0.1702107;0.1849245;0.02945373,0.191198;-0.06154816;-0.006751068,-0.1006638;0.3693635;-0.01807136,-0.1556902;0.2668363;-0.1807375,-0.184555;0.2177984;-0.4241756,0.07677834;0.00610689;-0.02162849,0.08143806;-0.2933756;-0.004643342,0.06844009;-0.5856534;0.06172493,0.07809795;-0.6176417;0.005292367,-0.0639952;0.002403995;-0.04794616,-0.1035916;-0.2915573;-0.00301436,-0.1041818;-0.585448;0.05721818,-0.0929084;-0.5528868;-0.04060205,0.003717755;0.3985405;0.03343771,0;0;0,0.0027718;0.1994001;0.01522915,0.006534039;0.4991891;0.02416971,0.1236379;0.3806038;0.01694118,0.1691746;0.187039;0.03836736,0.2010116;-0.06013048;0.01852654,-0.1003573;0.3697883;-0.02484647,-0.1605898;0.2866194;-0.196471,-0.1821593;0.2189949;-0.4361827,0.07822037;0.003481001;-0.01641511,0.08606187;-0.2959502;0.0003026593,0.0737988;-0.5899973;0.05849159,0.08551757;-0.6192302;-0.001381699,-0.06091878;0.004213149;-0.05168318,-0.0979912;-0.2898678;-0.005400687,-0.09915104;-0.5848465;0.04924566,-0.101472;-0.611119;-0.01538492,0.005290101;0.3991973;0.02387457,34.80492
-0;0;0,0.001802595;0.1990279;0.01961288,0.004642193;0.4984881;0.03652639,0.1203213;0.3780044;0.01387361,0.1698002;0.18478;0.02857523,0.1911381;-0.0617547;-0.006996654,-0.1006512;0.3690382;-0.01789637,-0.1428785;0.2940297;-0.198425,-0.1878816;0.2034106;-0.4270358,0.07675698;0.006110656;-0.02170313,0.08141785;-0.2933709;-0.004700651,0.06842009;-0.5856169;0.06180704,0.07845253;-0.6169029;0.004431568,-0.06407805;0.002372748;-0.04783694,-0.1036921;-0.2916026;-0.00301227,-0.1040568;-0.5854739;0.05731589,-0.09293149;-0.5529054;-0.04052258,0.003722343;0.3985398;0.03344372,0;0;0,0.0027718;0.1994001;0.01522915,0.006534039;0.4991891;0.02416971,0.1236379;0.3806038;0.01694118,0.1691746;0.187039;0.03836736,0.2010116;-0.06013048;0.01852654,-0.1003573;0.3697883;-0.02484647,-0.1605898;0.2866194;-0.196471,-0.1821593;0.2189949;-0.4361827,0.07822037;0.003481001;-0.01641511,0.08606187;-0.2959502;0.0003026593,0.0737988;-0.5899973;0.05849159,0.08551757;-0.6192302;-0.001381699,-0.06091878;0.004213149;-0.05168318,-0.0979912;-0.2898678;-0.005400687,-0.09915104;-0.5848465;0.04924566,-0.101472;-0.611119;-0.01538492,0.005290101;0.3991973;0.02387457,34.82648
-0;0;0,0.001802595;0.1990279;0.01961288,0.004642193;0.4984881;0.03652639,0.1203213;0.3780044;0.01387361,0.1698002;0.18478;0.02857523,0.1911381;-0.0617547;-0.006996654,-0.1006512;0.3690382;-0.01789637,-0.1428785;0.2940297;-0.198425,-0.1878816;0.2034106;-0.4270358,0.07675698;0.006110656;-0.02170313,0.08141785;-0.2933709;-0.004700651,0.06842009;-0.5856169;0.06180704,0.07845253;-0.6169029;0.004431568,-0.06407805;0.002372748;-0.04783694,-0.1036921;-0.2916026;-0.00301227,-0.1040568;-0.5854739;0.05731589,-0.09293149;-0.5529054;-0.04052258,0.003722343;0.3985398;0.03344372,0;0;0,0.002699547;0.1994031;0.01520259,0.00638991;0.4991921;0.02418491,0.1235534;0.3809207;0.01677788,0.1692652;0.1873991;0.03822196,0.2014236;-0.05965874;0.01752806,-0.09956242;0.3694394;-0.02659165,-0.1382906;0.2795986;-0.2010301,-0.1792238;0.2284157;-0.4422868,0.07820523;0.003560615;-0.01647007,0.08608103;-0.2958688;0.0002638549,0.07413853;-0.5900009;0.05808873,0.08539011;-0.6198155;-0.00109769,-0.06093329;0.004151736;-0.05167105,-0.09824054;-0.2898891;-0.005322579,-0.09929258;-0.5848368;0.04949312,-0.09935872;-0.6110143;-0.01529102,0.005165983;0.3992;0.02386893,34.84943
-0;0;0,0.001773778;0.1990454;0.019437,0.004601336;0.4985119;0.03624932,0.1202499;0.3779358;0.01349148,0.1697396;0.184719;0.02825853,0.1910981;-0.06180993;-0.007340398,-0.1007767;0.3691784;-0.0180345,-0.1508755;0.2449186;-0.1665256,-0.1834203;0.2893366;-0.410386,0.07666127;0.0061005;-0.02204164,0.08131202;-0.293384;-0.005089162,0.06793521;-0.5853291;0.06265424,0.07827084;-0.6157033;0.004061215,-0.0643079;0.00240886;-0.0475257,-0.1040526;-0.2916112;-0.003112391,-0.1044777;-0.5855457;0.05690749,-0.09334529;-0.5529836;-0.04092903,0.003688267;0.398563;0.03318676,0;0;0,0.002699547;0.1994031;0.01520259,0.00638991;0.4991921;0.02418491,0.1235534;0.3809207;0.01677788,0.1692652;0.1873991;0.03822196,0.2014236;-0.05965874;0.01752806,-0.09956242;0.3694394;-0.02659165,-0.1382906;0.2795986;-0.2010301,-0.1792238;0.2284157;-0.4422868,0.07820523;0.003560615;-0.01647007,0.08608103;-0.2958688;0.0002638549,0.07413853;-0.5900009;0.05808873,0.08539011;-0.6198155;-0.00109769,-0.06093329;0.004151736;-0.05167105,-0.09824054;-0.2898891;-0.005322579,-0.09929258;-0.5848368;0.04949312,-0.09935872;-0.6110143;-0.01529102,0.005165983;0.3992;0.02386893,34.8618
-0;0;0,0.001773778;0.1990454;0.019437,0.004601336;0.4985119;0.03624932,0.1202499;0.3779358;0.01349148,0.1697396;0.184719;0.02825853,0.1910981;-0.06180993;-0.007340398,-0.1007767;0.3691784;-0.0180345,-0.1508755;0.2449186;-0.1665256,-0.1834203;0.2893366;-0.410386,0.07666127;0.0061005;-0.02204164,0.08131202;-0.293384;-0.005089162,0.06793521;-0.5853291;0.06265424,0.07827084;-0.6157033;0.004061215,-0.0643079;0.00240886;-0.0475257,-0.1040526;-0.2916112;-0.003112391,-0.1044777;-0.5855457;0.05690749,-0.09334529;-0.5529836;-0.04092903,0.003688267;0.398563;0.03318676,0;0;0,0.002699547;0.1994031;0.01520259,0.00638991;0.4991921;0.02418491,0.1235534;0.3809207;0.01677788,0.1692652;0.1873991;0.03822196,0.2014236;-0.05965874;0.01752806,-0.09956242;0.3694394;-0.02659165,-0.1382906;0.2795986;-0.2010301,-0.1792238;0.2284157;-0.4422868,0.07820523;0.003560615;-0.01647007,0.08608103;-0.2958688;0.0002638549,0.07413853;-0.5900009;0.05808873,0.08539011;-0.6198155;-0.00109769,-0.06093329;0.004151736;-0.05167105,-0.09824054;-0.2898891;-0.005322579,-0.09929258;-0.5848368;0.04949312,-0.09935872;-0.6110143;-0.01529102,0.005165983;0.3992;0.02386893,34.88274
-0;0;0,0.001789285;0.1990536;0.01935114,0.00462399;0.4985272;0.03604186,0.1201902;0.3778504;0.01295946,0.1697799;0.1846658;0.02781103,0.191068;-0.06187519;-0.007746946,-0.100752;0.3692772;-0.01826978,-0.1492795;0.2685709;-0.184111,-0.1980605;0.2593921;-0.4291338,0.07664698;0.006080538;-0.02209677,0.08129653;-0.2934161;-0.005359188,0.06802738;-0.5853659;0.06238506,0.07792222;-0.6148633;0.002533197,-0.06429981;0.002422274;-0.04753596,-0.1041252;-0.291636;-0.003448796,-0.1045146;-0.5855519;0.05666238,-0.09341177;-0.5529943;-0.04117671,0.0037071;0.3985773;0.03301179,0;0;0,0.002653869;0.1993942;0.01532644,0.006315562;0.4991789;0.02444748,0.123495;0.3812361;0.01638307,0.1692113;0.187719;0.03785714,0.2014906;-0.05934438;0.01741848,-0.09911019;0.3692898;-0.02735408,-0.1401047;0.2946508;-0.2083195,-0.1812449;0.22247;-0.4441105,0.07818973;0.003606759;-0.0165335,0.08611262;-0.2958339;-2.382323E-05,0.07404739;-0.5898603;0.05831017,0.08535968;-0.6196239;-0.0009333901,-0.06098619;0.004123881;-0.05161084,-0.09850889;-0.2898666;-0.005117044,-0.09943635;-0.5848156;0.0496939,-0.1003958;-0.6102524;-0.01594415,0.005096242;0.3991869;0.02409666,34.90512
-0;0;0,0.001789285;0.1990536;0.01935114,0.00462399;0.4985272;0.03604186,0.1201902;0.3778504;0.01295946,0.1697799;0.1846658;0.02781103,0.191068;-0.06187519;-0.007746946,-0.100752;0.3692772;-0.01826978,-0.1492795;0.2685709;-0.184111,-0.1980605;0.2593921;-0.4291338,0.07664698;0.006080538;-0.02209677,0.08129653;-0.2934161;-0.005359188,0.06802738;-0.5853659;0.06238506,0.07792222;-0.6148633;0.002533197,-0.06429981;0.002422274;-0.04753596,-0.1041252;-0.291636;-0.003448796,-0.1045146;-0.5855519;0.05666238,-0.09341177;-0.5529943;-0.04117671,0.0037071;0.3985773;0.03301179,0;0;0,0.002653869;0.1993942;0.01532644,0.006315562;0.4991789;0.02444748,0.123495;0.3812361;0.01638307,0.1692113;0.187719;0.03785714,0.2014906;-0.05934438;0.01741848,-0.09911019;0.3692898;-0.02735408,-0.1401047;0.2946508;-0.2083195,-0.1812449;0.22247;-0.4441105,0.07818973;0.003606759;-0.0165335,0.08611262;-0.2958339;-2.382323E-05,0.07404739;-0.5898603;0.05831017,0.08535968;-0.6196239;-0.0009333901,-0.06098619;0.004123881;-0.05161084,-0.09850889;-0.2898666;-0.005117044,-0.09943635;-0.5848156;0.0496939,-0.1003958;-0.6102524;-0.01594415,0.005096242;0.3991869;0.02409666,34.91632
-0;0;0,0.001829191;0.1990661;0.01921802,0.004704029;0.4985493;0.03573647,0.1202132;0.3777829;0.01253901,0.1698781;0.1846121;0.02731862,0.1912203;-0.06189072;-0.008470703,-0.1007484;0.3694657;-0.01849505,-0.1492364;0.2689543;-0.184466,-0.1960915;0.2078599;-0.4223149,0.07663432;0.006029272;-0.02215468,0.08141702;-0.2934799;-0.005680123,0.06827755;-0.5855418;0.06160407,0.07794248;-0.6151494;0.001861043,-0.06427278;0.002445467;-0.0475713,-0.1041091;-0.2916525;-0.003759559,-0.1045328;-0.5855156;0.05660866,-0.09342583;-0.5529623;-0.04122921,0.00377389;0.3985981;0.03275333,0;0;0,0.002653869;0.1993942;0.01532644,0.006315562;0.4991789;0.02444748,0.123495;0.3812361;0.01638307,0.1692113;0.187719;0.03785714,0.2014906;-0.05934438;0.01741848,-0.09911019;0.3692898;-0.02735408,-0.1401047;0.2946508;-0.2083195,-0.1812449;0.22247;-0.4441105,0.07818973;0.003606759;-0.0165335,0.08611262;-0.2958339;-2.382323E-05,0.07404739;-0.5898603;0.05831017,0.08535968;-0.6196239;-0.0009333901,-0.06098619;0.004123881;-0.05161084,-0.09850889;-0.2898666;-0.005117044,-0.09943635;-0.5848156;0.0496939,-0.1003958;-0.6102524;-0.01594415,0.005096242;0.3991869;0.02409666,34.93853
-0;0;0,0.001829191;0.1990661;0.01921802,0.004704029;0.4985493;0.03573647,0.1202132;0.3777829;0.01253901,0.1698781;0.1846121;0.02731862,0.1912203;-0.06189072;-0.008470703,-0.1007484;0.3694657;-0.01849505,-0.1492364;0.2689543;-0.184466,-0.1960915;0.2078599;-0.4223149,0.07663432;0.006029272;-0.02215468,0.08141702;-0.2934799;-0.005680123,0.06827755;-0.5855418;0.06160407,0.07794248;-0.6151494;0.001861043,-0.06427278;0.002445467;-0.0475713,-0.1041091;-0.2916525;-0.003759559,-0.1045328;-0.5855156;0.05660866,-0.09342583;-0.5529623;-0.04122921,0.00377389;0.3985981;0.03275333,0;0;0,0.002529692;0.1994011;0.01525789,0.006044811;0.4991885;0.02435918,0.123256;0.381346;0.01586673,0.1692164;0.1878839;0.03731558,0.2014946;-0.05920209;0.0171512,-0.09894064;0.3688478;-0.02797832,-0.1512522;0.2639807;-0.1900474,-0.1758692;0.2377073;-0.4374413,0.07818038;0.003680534;-0.01656144,0.08603594;-0.2957512;0.0001411121,0.07397341;-0.5897555;0.05858694,0.08495048;-0.6193479;-0.0009491891,-0.06101136;0.004077153;-0.05158479,-0.09876487;-0.2898793;-0.005062785,-0.09949872;-0.5847689;0.05006959,-0.1008203;-0.6110929;-0.01452844,0.004870381;0.399196;0.02400492,34.94994
-0;0;0,0.001825745;0.1990655;0.01922487,0.004696269;0.4985496;0.0357267,0.1201667;0.377996;0.01210549,0.170301;0.1849404;0.02680604,0.1918325;-0.06158313;-0.00872607,-0.1011271;0.3686798;-0.01727509,-0.1504762;0.2694536;-0.1837648,-0.2182784;0.2299563;-0.4211313,0.0766136;0.006019555;-0.02222884,0.081406;-0.2934817;-0.005614141,0.06820948;-0.585568;0.06155331,0.07776263;-0.6154788;0.002198484,-0.06433318;0.002442518;-0.04748974,-0.1041322;-0.2916702;-0.003743254,-0.1047004;-0.58558;0.05639599,-0.09420526;-0.5529941;-0.04151519,0.003765007;0.3985982;0.03275016,0;0;0,0.002529692;0.1994011;0.01525789,0.006044811;0.4991885;0.02435918,0.123256;0.381346;0.01586673,0.1692164;0.1878839;0.03731558,0.2014946;-0.05920209;0.0171512,-0.09894064;0.3688478;-0.02797832,-0.1512522;0.2639807;-0.1900474,-0.1758692;0.2377073;-0.4374413,0.07818038;0.003680534;-0.01656144,0.08603594;-0.2957512;0.0001411121,0.07397341;-0.5897555;0.05858694,0.08495048;-0.6193479;-0.0009491891,-0.06101136;0.004077153;-0.05158479,-0.09876487;-0.2898793;-0.005062785,-0.09949872;-0.5847689;0.05006959,-0.1008203;-0.6110929;-0.01452844,0.004870381;0.399196;0.02400492,34.96212
-0;0;0,0.001825745;0.1990655;0.01922487,0.004696269;0.4985496;0.0357267,0.1201667;0.377996;0.01210549,0.170301;0.1849404;0.02680604,0.1918325;-0.06158313;-0.00872607,-0.1011271;0.3686798;-0.01727509,-0.1504762;0.2694536;-0.1837648,-0.2182784;0.2299563;-0.4211313,0.0766136;0.006019555;-0.02222884,0.081406;-0.2934817;-0.005614141,0.06820948;-0.585568;0.06155331,0.07776263;-0.6154788;0.002198484,-0.06433318;0.002442518;-0.04748974,-0.1041322;-0.2916702;-0.003743254,-0.1047004;-0.58558;0.05639599,-0.09420526;-0.5529941;-0.04151519,0.003765007;0.3985982;0.03275016,0;0;0,0.002529692;0.1994011;0.01525789,0.006044811;0.4991885;0.02435918,0.123256;0.381346;0.01586673,0.1692164;0.1878839;0.03731558,0.2014946;-0.05920209;0.0171512,-0.09894064;0.3688478;-0.02797832,-0.1512522;0.2639807;-0.1900474,-0.1758692;0.2377073;-0.4374413,0.07818038;0.003680534;-0.01656144,0.08603594;-0.2957512;0.0001411121,0.07397341;-0.5897555;0.05858694,0.08495048;-0.6193479;-0.0009491891,-0.06101136;0.004077153;-0.05158479,-0.09876487;-0.2898793;-0.005062785,-0.09949872;-0.5847689;0.05006959,-0.1008203;-0.6110929;-0.01452844,0.004870381;0.399196;0.02400492,34.97412
-0;0;0,0.001847684;0.1990645;0.01923342,0.004751152;0.4985495;0.03571146,0.1200654;0.3775917;0.011714,0.1705122;0.1846389;0.02669266,0.1917876;-0.06189367;-0.008930691,-0.1013058;0.3682951;-0.01658635,-0.1536269;0.2642434;-0.1791771,-0.2127793;0.2203227;-0.4180745,0.07659199;0.006024011;-0.02230197,0.08138651;-0.2934742;-0.00563205,0.06806434;-0.585574;0.06145168,0.07774302;-0.6155123;0.002154186,-0.06437463;0.00242719;-0.04743434,-0.1043289;-0.2916782;-0.003780242,-0.104848;-0.585663;0.05599153,-0.09474438;-0.553068;-0.04196245,0.003804971;0.398598;0.03274374,0;0;0,0.002463438;0.1994032;0.01524134,0.005912799;0.4991906;0.02437457,0.1231492;0.3814688;0.01569932,0.1691685;0.1880066;0.03702035,0.2020387;-0.05897117;0.01648841,-0.09872441;0.3680559;-0.0281662,-0.1431356;0.2847866;-0.2045007,-0.1842427;0.220285;-0.4425129,0.07817219;0.003757572;-0.01658277,0.08606602;-0.2956646;0.000270877,0.07390273;-0.5896695;0.05869349,0.08507892;-0.6197813;-0.0001044236,-0.06102632;0.004005454;-0.0515727,-0.09885503;-0.2899252;-0.004949261,-0.09927018;-0.5848134;0.05019422,-0.1008451;-0.6132489;-0.01181685,0.004757015;0.3991979;0.02400436,34.99404
-0;0;0,0.001847684;0.1990645;0.01923342,0.004751152;0.4985495;0.03571146,0.1200654;0.3775917;0.011714,0.1705122;0.1846389;0.02669266,0.1917876;-0.06189367;-0.008930691,-0.1013058;0.3682951;-0.01658635,-0.1536269;0.2642434;-0.1791771,-0.2127793;0.2203227;-0.4180745,0.07659199;0.006024011;-0.02230197,0.08138651;-0.2934742;-0.00563205,0.06806434;-0.585574;0.06145168,0.07774302;-0.6155123;0.002154186,-0.06437463;0.00242719;-0.04743434,-0.1043289;-0.2916782;-0.003780242,-0.104848;-0.585663;0.05599153,-0.09474438;-0.553068;-0.04196245,0.003804971;0.398598;0.03274374,0;0;0,0.002463438;0.1994032;0.01524134,0.005912799;0.4991906;0.02437457,0.1231492;0.3814688;0.01569932,0.1691685;0.1880066;0.03702035,0.2020387;-0.05897117;0.01648841,-0.09872441;0.3680559;-0.0281662,-0.1431356;0.2847866;-0.2045007,-0.1842427;0.220285;-0.4425129,0.07817219;0.003757572;-0.01658277,0.08606602;-0.2956646;0.000270877,0.07390273;-0.5896695;0.05869349,0.08507892;-0.6197813;-0.0001044236,-0.06102632;0.004005454;-0.0515727,-0.09885503;-0.2899252;-0.004949261,-0.09927018;-0.5848134;0.05019422,-0.1008451;-0.6132489;-0.01181685,0.004757015;0.3991979;0.02400436,35.00574
-0;0;0,0.001847684;0.1990645;0.01923342,0.004751152;0.4985495;0.03571146,0.1200654;0.3775917;0.011714,0.1705122;0.1846389;0.02669266,0.1917876;-0.06189367;-0.008930691,-0.1013058;0.3682951;-0.01658635,-0.1536269;0.2642434;-0.1791771,-0.2127793;0.2203227;-0.4180745,0.07659199;0.006024011;-0.02230197,0.08138651;-0.2934742;-0.00563205,0.06806434;-0.585574;0.06145168,0.07774302;-0.6155123;0.002154186,-0.06437463;0.00242719;-0.04743434,-0.1043289;-0.2916782;-0.003780242,-0.104848;-0.585663;0.05599153,-0.09474438;-0.553068;-0.04196245,0.003804971;0.398598;0.03274374,0;0;0,0.002463438;0.1994032;0.01524134,0.005912799;0.4991906;0.02437457,0.1231492;0.3814688;0.01569932,0.1691685;0.1880066;0.03702035,0.2020387;-0.05897117;0.01648841,-0.09872441;0.3680559;-0.0281662,-0.1431356;0.2847866;-0.2045007,-0.1842427;0.220285;-0.4425129,0.07817219;0.003757572;-0.01658277,0.08606602;-0.2956646;0.000270877,0.07390273;-0.5896695;0.05869349,0.08507892;-0.6197813;-0.0001044236,-0.06102632;0.004005454;-0.0515727,-0.09885503;-0.2899252;-0.004949261,-0.09927018;-0.5848134;0.05019422,-0.1008451;-0.6132489;-0.01181685,0.004757015;0.3991979;0.02400436,35.01741
-0;0;0,0.001891168;0.1990601;0.01927407,0.004879932;0.4985425;0.03578426,0.1201124;0.3776538;0.0114509,0.1708307;0.1847599;0.02626953,0.1921954;-0.06179172;-0.009168502,-0.1013802;0.3681828;-0.0160971,-0.1542537;0.263195;-0.1779055,-0.1977496;0.1731596;-0.407038,0.07659303;0.005968217;-0.0223134,0.0815199;-0.2935209;-0.005520491,0.06816231;-0.5856684;0.06134813,0.07780059;-0.6155151;0.001920737,-0.06436048;0.002464123;-0.04745163,-0.1043533;-0.2916397;-0.003822185,-0.1048334;-0.5856545;0.05580242,-0.09495823;-0.5530495;-0.04217663,0.003899087;0.3985917;0.03280663,0;0;0,0.002543097;0.1994013;0.01525299,0.006274258;0.4991858;0.02437693,0.1233265;0.3812417;0.0153175,0.1690301;0.1876438;0.03607938,0.2025222;-0.05931561;0.01634865,-0.09849134;0.3679939;-0.02811853,-0.1455911;0.2781503;-0.2004837,-0.194263;0.2293214;-0.4407893,0.07808478;0.003675262;-0.01700758,0.08612525;-0.2957367;-4.121475E-05,0.07410226;-0.5897147;0.05854524,0.08498561;-0.6201887;0.0001886152,-0.06110855;0.004064995;-0.05147058,-0.09899008;-0.2898593;-0.004849743,-0.09924934;-0.5847225;0.0504279,-0.1011974;-0.6122805;-0.01266696,0.004995582;0.3991946;0.02400606,35.03913
-0;0;0,0.001891168;0.1990601;0.01927407,0.004879932;0.4985425;0.03578426,0.1201124;0.3776538;0.0114509,0.1708307;0.1847599;0.02626953,0.1921954;-0.06179172;-0.009168502,-0.1013802;0.3681828;-0.0160971,-0.1542537;0.263195;-0.1779055,-0.1977496;0.1731596;-0.407038,0.07659303;0.005968217;-0.0223134,0.0815199;-0.2935209;-0.005520491,0.06816231;-0.5856684;0.06134813,0.07780059;-0.6155151;0.001920737,-0.06436048;0.002464123;-0.04745163,-0.1043533;-0.2916397;-0.003822185,-0.1048334;-0.5856545;0.05580242,-0.09495823;-0.5530495;-0.04217663,0.003899087;0.3985917;0.03280663,0;0;0,0.002543097;0.1994013;0.01525299,0.006274258;0.4991858;0.02437693,0.1233265;0.3812417;0.0153175,0.1690301;0.1876438;0.03607938,0.2025222;-0.05931561;0.01634865,-0.09849134;0.3679939;-0.02811853,-0.1455911;0.2781503;-0.2004837,-0.194263;0.2293214;-0.4407893,0.07808478;0.003675262;-0.01700758,0.08612525;-0.2957367;-4.121475E-05,0.07410226;-0.5897147;0.05854524,0.08498561;-0.6201887;0.0001886152,-0.06110855;0.004064995;-0.05147058,-0.09899008;-0.2898593;-0.004849743,-0.09924934;-0.5847225;0.0504279,-0.1011974;-0.6122805;-0.01266696,0.004995582;0.3991946;0.02400606,35.05027
-0;0;0,0.001839459;0.1990822;0.01905024,0.004802587;0.4985713;0.03544629,0.119933;0.3779731;0.01027099,0.1711724;0.185267;0.02572699,0.1926045;-0.06130631;-0.009518763,-0.1015819;0.367863;-0.01589497,-0.1550379;0.2624316;-0.1772228,-0.1934378;0.1652459;-0.4043359,0.0765344;0.006021016;-0.0224996,0.08140805;-0.2934783;-0.005874192,0.06800444;-0.5856344;0.06094786,0.07763755;-0.6154777;0.001515239,-0.06445036;0.002386884;-0.04733343,-0.1044645;-0.2917472;-0.003927778,-0.1049554;-0.5857919;0.05554847,-0.09551536;-0.5531788;-0.0424749,0.003831379;0.3986195;0.03250001,0;0;0,0.002543097;0.1994013;0.01525299,0.006274258;0.4991858;0.02437693,0.1233265;0.3812417;0.0153175,0.1690301;0.1876438;0.03607938,0.2025222;-0.05931561;0.01634865,-0.09849134;0.3679939;-0.02811853,-0.1455911;0.2781503;-0.2004837,-0.194263;0.2293214;-0.4407893,0.07808478;0.003675262;-0.01700758,0.08612525;-0.2957367;-4.121475E-05,0.07410226;-0.5897147;0.05854524,0.08498561;-0.6201887;0.0001886152,-0.06110855;0.004064995;-0.05147058,-0.09899008;-0.2898593;-0.004849743,-0.09924934;-0.5847225;0.0504279,-0.1011974;-0.6122805;-0.01266696,0.004995582;0.3991946;0.02400606,35.07255
-0;0;0,0.001839459;0.1990822;0.01905024,0.004802587;0.4985713;0.03544629,0.119933;0.3779731;0.01027099,0.1711724;0.185267;0.02572699,0.1926045;-0.06130631;-0.009518763,-0.1015819;0.367863;-0.01589497,-0.1550379;0.2624316;-0.1772228,-0.1934378;0.1652459;-0.4043359,0.0765344;0.006021016;-0.0224996,0.08140805;-0.2934783;-0.005874192,0.06800444;-0.5856344;0.06094786,0.07763755;-0.6154777;0.001515239,-0.06445036;0.002386884;-0.04733343,-0.1044645;-0.2917472;-0.003927778,-0.1049554;-0.5857919;0.05554847,-0.09551536;-0.5531788;-0.0424749,0.003831379;0.3986195;0.03250001,0;0;0,0.002559839;0.1993906;0.01538916,0.006306546;0.4991711;0.02461637,0.1233365;0.3814908;0.01476611,0.1687855;0.1877796;0.03502337,0.2026555;-0.05915013;0.01556725,-0.0984033;0.3679586;-0.02800077,-0.1451265;0.2802461;-0.2015619,-0.1899101;0.2151228;-0.4387398,0.07804359;0.003725615;-0.0171848,0.08625801;-0.2956755;-0.0001119748,0.07421945;-0.5896271;0.05860362,0.08536699;-0.6196511;-0.0003191642,-0.06117563;0.0040536;-0.05139173,-0.09903438;-0.2898779;-0.004797444,-0.09927288;-0.5847096;0.0506478,-0.1018525;-0.6117135;-0.01309975,0.005025167;0.3991801;0.02422731,35.08381
-0;0;0,0.001868075;0.199082;0.01904907,0.004841194;0.4985719;0.0354293,0.1196885;0.3772182;0.00952908,0.1714508;0.1846396;0.02483093,0.192972;-0.06201741;-0.009769164,-0.1016715;0.3677538;-0.0155603,-0.1561155;0.2577966;-0.173501,-0.2000049;0.1572358;-0.3981368,0.07651083;0.005950425;-0.02259833,0.08142585;-0.2935436;-0.005890075,0.06804739;-0.5857246;0.06082805,0.07748668;-0.6160367;0.001998883,-0.06452516;0.002400682;-0.04723071,-0.1044107;-0.2917609;-0.00389326,-0.1051355;-0.5859368;0.0549286,-0.1047832;-0.6149868;-0.006316531,0.003866716;0.3986198;0.03249154,0;0;0,0.002559839;0.1993906;0.01538916,0.006306546;0.4991711;0.02461637,0.1233365;0.3814908;0.01476611,0.1687855;0.1877796;0.03502337,0.2026555;-0.05915013;0.01556725,-0.0984033;0.3679586;-0.02800077,-0.1451265;0.2802461;-0.2015619,-0.1899101;0.2151228;-0.4387398,0.07804359;0.003725615;-0.0171848,0.08625801;-0.2956755;-0.0001119748,0.07421945;-0.5896271;0.05860362,0.08536699;-0.6196511;-0.0003191642,-0.06117563;0.0040536;-0.05139173,-0.09903438;-0.2898779;-0.004797444,-0.09927288;-0.5847096;0.0506478,-0.1018525;-0.6117135;-0.01309975,0.005025167;0.3991801;0.02422731,35.09505
-0;0;0,0.001868075;0.199082;0.01904907,0.004841194;0.4985719;0.0354293,0.1196885;0.3772182;0.00952908,0.1714508;0.1846396;0.02483093,0.192972;-0.06201741;-0.009769164,-0.1016715;0.3677538;-0.0155603,-0.1561155;0.2577966;-0.173501,-0.2000049;0.1572358;-0.3981368,0.07651083;0.005950425;-0.02259833,0.08142585;-0.2935436;-0.005890075,0.06804739;-0.5857246;0.06082805,0.07748668;-0.6160367;0.001998883,-0.06452516;0.002400682;-0.04723071,-0.1044107;-0.2917609;-0.00389326,-0.1051355;-0.5859368;0.0549286,-0.1047832;-0.6149868;-0.006316531,0.003866716;0.3986198;0.03249154,0;0;0,0.002559839;0.1993906;0.01538916,0.006306546;0.4991711;0.02461637,0.1233365;0.3814908;0.01476611,0.1687855;0.1877796;0.03502337,0.2026555;-0.05915013;0.01556725,-0.0984033;0.3679586;-0.02800077,-0.1451265;0.2802461;-0.2015619,-0.1899101;0.2151228;-0.4387398,0.07804359;0.003725615;-0.0171848,0.08625801;-0.2956755;-0.0001119748,0.07421945;-0.5896271;0.05860362,0.08536699;-0.6196511;-0.0003191642,-0.06117563;0.0040536;-0.05139173,-0.09903438;-0.2898779;-0.004797444,-0.09927288;-0.5847096;0.0506478,-0.1018525;-0.6117135;-0.01309975,0.005025167;0.3991801;0.02422731,35.11726
-0;0;0,0.001901598;0.1990931;0.01892891,0.004828505;0.4985928;0.03511444,0.119671;0.3771503;0.009247197,0.1714868;0.1845872;0.02456309,0.1931275;-0.06204155;-0.01016379,-0.1017761;0.3671879;-0.01514199,-0.15582;0.2549527;-0.1716108,-0.2010159;0.1582755;-0.3976879,0.07644319;0.005972395;-0.02282036,0.08138278;-0.2935079;-0.005874414,0.06802183;-0.5857278;0.06067617,0.07732027;-0.6164225;0.002350289,-0.06486733;0.002354399;-0.04676202,-0.1046353;-0.291912;-0.004032511,-0.1053438;-0.5861137;0.05466058,-0.1047406;-0.6146589;-0.007228699,0.003877639;0.3986377;0.03227322,0;0;0,0.002564619;0.1993959;0.01532048,0.00633705;0.499177;0.02452453,0.1233621;0.3817204;0.01430608,0.1690222;0.1880759;0.03472584,0.203119;-0.05882868;0.01534665,-0.09831623;0.3678667;-0.02816374,-0.1466963;0.2767012;-0.199477,-0.1863415;0.2127497;-0.4378852,0.07802402;0.00373498;-0.01727142,0.0863123;-0.2956553;-4.450791E-05,0.07425122;-0.5895939;0.0587314,0.08540118;-0.6196562;-0.0001388527,-0.06120495;0.004057192;-0.05135652,-0.09912491;-0.289874;-0.004810117,-0.09924346;-0.5846626;0.05086464,-0.101998;-0.6107029;-0.01402198,0.005047448;0.3991861;0.0241339,35.12845
-0;0;0,0.001901598;0.1990931;0.01892891,0.004828505;0.4985928;0.03511444,0.119671;0.3771503;0.009247197,0.1714868;0.1845872;0.02456309,0.1931275;-0.06204155;-0.01016379,-0.1017761;0.3671879;-0.01514199,-0.15582;0.2549527;-0.1716108,-0.2010159;0.1582755;-0.3976879,0.07644319;0.005972395;-0.02282036,0.08138278;-0.2935079;-0.005874414,0.06802183;-0.5857278;0.06067617,0.07732027;-0.6164225;0.002350289,-0.06486733;0.002354399;-0.04676202,-0.1046353;-0.291912;-0.004032511,-0.1053438;-0.5861137;0.05466058,-0.1047406;-0.6146589;-0.007228699,0.003877639;0.3986377;0.03227322,0;0;0,0.002564619;0.1993959;0.01532048,0.00633705;0.499177;0.02452453,0.1233621;0.3817204;0.01430608,0.1690222;0.1880759;0.03472584,0.203119;-0.05882868;0.01534665,-0.09831623;0.3678667;-0.02816374,-0.1466963;0.2767012;-0.199477,-0.1863415;0.2127497;-0.4378852,0.07802402;0.00373498;-0.01727142,0.0863123;-0.2956553;-4.450791E-05,0.07425122;-0.5895939;0.0587314,0.08540118;-0.6196562;-0.0001388527,-0.06120495;0.004057192;-0.05135652,-0.09912491;-0.289874;-0.004810117,-0.09924346;-0.5846626;0.05086464,-0.101998;-0.6107029;-0.01402198,0.005047448;0.3991861;0.0241339,35.13976
-0;0;0,0.001897696;0.1990962;0.01889691,0.004810567;0.4985992;0.03502369,0.1195837;0.3769069;0.009032616,0.1715009;0.1843784;0.0244406,0.1929546;-0.06227617;-0.01021823,-0.101975;0.3672515;-0.01483265,-0.1567576;0.2527405;-0.1693839,-0.2023951;0.1548666;-0.3948566,0.07641242;0.005952983;-0.02292821,0.08141453;-0.2935215;-0.005898863,0.06802374;-0.585757;0.06057742,0.0775421;-0.6162878;0.002060801,-0.06495956;0.002384919;-0.04663227,-0.104684;-0.291892;-0.00393489,-0.1053956;-0.586118;0.05463636,-0.1046955;-0.6147536;-0.007137023,0.003865601;0.3986434;0.03220265,0;0;0,0.002564619;0.1993959;0.01532048,0.00633705;0.499177;0.02452453,0.1233621;0.3817204;0.01430608,0.1690222;0.1880759;0.03472584,0.203119;-0.05882868;0.01534665,-0.09831623;0.3678667;-0.02816374,-0.1466963;0.2767012;-0.199477,-0.1863415;0.2127497;-0.4378852,0.07802402;0.00373498;-0.01727142,0.0863123;-0.2956553;-4.450791E-05,0.07425122;-0.5895939;0.0587314,0.08540118;-0.6196562;-0.0001388527,-0.06120495;0.004057192;-0.05135652,-0.09912491;-0.289874;-0.004810117,-0.09924346;-0.5846626;0.05086464,-0.101998;-0.6107029;-0.01402198,0.005047448;0.3991861;0.0241339,35.1618
-0;0;0,0.001897696;0.1990962;0.01889691,0.004810567;0.4985992;0.03502369,0.1195837;0.3769069;0.009032616,0.1715009;0.1843784;0.0244406,0.1929546;-0.06227617;-0.01021823,-0.101975;0.3672515;-0.01483265,-0.1567576;0.2527405;-0.1693839,-0.2023951;0.1548666;-0.3948566,0.07641242;0.005952983;-0.02292821,0.08141453;-0.2935215;-0.005898863,0.06802374;-0.585757;0.06057742,0.0775421;-0.6162878;0.002060801,-0.06495956;0.002384919;-0.04663227,-0.104684;-0.291892;-0.00393489,-0.1053956;-0.586118;0.05463636,-0.1046955;-0.6147536;-0.007137023,0.003865601;0.3986434;0.03220265,0;0;0,0.002544072;0.1993942;0.01534578,0.006311188;0.499173;0.02463016,0.1233122;0.3816265;0.01424777,0.1691268;0.1880086;0.0345734,0.2032222;-0.05889383;0.01516464,-0.0982628;0.3677635;-0.02818181,-0.1465645;0.2759596;-0.199176,-0.1863303;0.1695305;-0.4218675,0.0780087;0.003750392;-0.01733712,0.08633121;-0.2956292;5.841255E-05,0.07440883;-0.5895511;0.05894631,0.08528572;-0.6197306;0.0001845919,-0.06123652;0.004056149;-0.05131897,-0.09927797;-0.2898636;-0.004799772,-0.09909457;-0.584615;0.05107139,-0.102336;-0.6100385;-0.01450898,0.005022261;0.3991822;0.02421151,35.1735
-0;0;0,0.001831887;0.1990913;0.01895496,0.004547694;0.4985936;0.03512472,0.119428;0.3772873;0.00894619,0.1713237;0.1847524;0.02434567,0.1928625;-0.06191683;-0.01015632,-0.1022789;0.3670746;-0.01437072,-0.1589729;0.2488993;-0.1654349,-0.202416;0.1532659;-0.3922982,0.07640583;0.005939028;-0.02295381,0.08142792;-0.2935357;-0.005933916,0.06800572;-0.5857625;0.06057427,0.07856245;-0.6166521;0.002734657,-0.06494522;0.002399909;-0.04665146,-0.1046563;-0.291886;-0.004003365,-0.1053299;-0.5861192;0.05453159,-0.1047574;-0.6146913;-0.007323943,0.003674097;0.3986374;0.03229572,0;0;0,0.002544072;0.1993942;0.01534578,0.006311188;0.499173;0.02463016,0.1233122;0.3816265;0.01424777,0.1691268;0.1880086;0.0345734,0.2032222;-0.05889383;0.01516464,-0.0982628;0.3677635;-0.02818181,-0.1465645;0.2759596;-0.199176,-0.1863303;0.1695305;-0.4218675,0.0780087;0.003750392;-0.01733712,0.08633121;-0.2956292;5.841255E-05,0.07440883;-0.5895511;0.05894631,0.08528572;-0.6197306;0.0001845919,-0.06123652;0.004056149;-0.05131897,-0.09927797;-0.2898636;-0.004799772,-0.09909457;-0.584615;0.05107139,-0.102336;-0.6100385;-0.01450898,0.005022261;0.3991822;0.02421151,35.19493
-0;0;0,0.001831887;0.1990913;0.01895496,0.004547694;0.4985936;0.03512472,0.119428;0.3772873;0.00894619,0.1713237;0.1847524;0.02434567,0.1928625;-0.06191683;-0.01015632,-0.1022789;0.3670746;-0.01437072,-0.1589729;0.2488993;-0.1654349,-0.202416;0.1532659;-0.3922982,0.07640583;0.005939028;-0.02295381,0.08142792;-0.2935357;-0.005933916,0.06800572;-0.5857625;0.06057427,0.07856245;-0.6166521;0.002734657,-0.06494522;0.002399909;-0.04665146,-0.1046563;-0.291886;-0.004003365,-0.1053299;-0.5861192;0.05453159,-0.1047574;-0.6146913;-0.007323943,0.003674097;0.3986374;0.03229572,0;0;0,0.002544072;0.1993942;0.01534578,0.006311188;0.499173;0.02463016,0.1233122;0.3816265;0.01424777,0.1691268;0.1880086;0.0345734,0.2032222;-0.05889383;0.01516464,-0.0982628;0.3677635;-0.02818181,-0.1465645;0.2759596;-0.199176,-0.1863303;0.1695305;-0.4218675,0.0780087;0.003750392;-0.01733712,0.08633121;-0.2956292;5.841255E-05,0.07440883;-0.5895511;0.05894631,0.08528572;-0.6197306;0.0001845919,-0.06123652;0.004056149;-0.05131897,-0.09927797;-0.2898636;-0.004799772,-0.09909457;-0.584615;0.05107139,-0.102336;-0.6100385;-0.01450898,0.005022261;0.3991822;0.02421151,35.20689
-0;0;0,0.001831887;0.1990913;0.01895496,0.004547694;0.4985936;0.03512472,0.119428;0.3772873;0.00894619,0.1713237;0.1847524;0.02434567,0.1928625;-0.06191683;-0.01015632,-0.1022789;0.3670746;-0.01437072,-0.1589729;0.2488993;-0.1654349,-0.202416;0.1532659;-0.3922982,0.07640583;0.005939028;-0.02295381,0.08142792;-0.2935357;-0.005933916,0.06800572;-0.5857625;0.06057427,0.07856245;-0.6166521;0.002734657,-0.06494522;0.002399909;-0.04665146,-0.1046563;-0.291886;-0.004003365,-0.1053299;-0.5861192;0.05453159,-0.1047574;-0.6146913;-0.007323943,0.003674097;0.3986374;0.03229572,0;0;0,0.002510644;0.1993968;0.01531646,0.0062558;0.4991752;0.02463633,0.1232341;0.381769;0.01366788,0.1693053;0.188231;0.03417325,0.203464;-0.05869688;0.01520436,-0.09834334;0.3678519;-0.02818584,-0.1463813;0.2547526;-0.185986,-0.1859913;0.1663237;-0.416445,0.07794975;0.003740717;-0.01760237,0.08633492;-0.2956245;8.201227E-06,0.07427806;-0.5894926;0.05913701,0.08567543;-0.6194505;0.0001724064,-0.06130726;0.004082498;-0.05123234,-0.09927689;-0.2898354;-0.004642963,-0.09875312;-0.5844831;0.05176997,-0.1012912;-0.612262;-0.01103136,0.004972457;0.3991843;0.02419856,35.21845
-0;0;0,0.001732324;0.1990966;0.01890925,0.004118945;0.4986083;0.03493803,0.1191566;0.3774795;0.008782964,0.1710088;0.1849164;0.02397555,0.1928619;-0.06176263;-0.01025707,-0.1026852;0.3668571;-0.01407926,-0.1593395;0.2466563;-0.1635518,-0.2060265;0.1441633;-0.3867458,0.07639186;0.005938487;-0.0230004,0.08137217;-0.2935415;-0.00606153,0.06792715;-0.5857877;0.06035721,0.07847946;-0.6165882;0.00239234,-0.06492549;0.002406126;-0.0466786,-0.1046844;-0.2918909;-0.00415187,-0.1051533;-0.586041;0.05480155,-0.1050165;-0.6145303;-0.007161397,0.003378675;0.3986492;0.0321779,0;0;0,0.002510644;0.1993968;0.01531646,0.0062558;0.4991752;0.02463633,0.1232341;0.381769;0.01366788,0.1693053;0.188231;0.03417325,0.203464;-0.05869688;0.01520436,-0.09834334;0.3678519;-0.02818584,-0.1463813;0.2547526;-0.185986,-0.1859913;0.1663237;-0.416445,0.07794975;0.003740717;-0.01760237,0.08633492;-0.2956245;8.201227E-06,0.07427806;-0.5894926;0.05913701,0.08567543;-0.6194505;0.0001724064,-0.06130726;0.004082498;-0.05123234,-0.09927689;-0.2898354;-0.004642963,-0.09875312;-0.5844831;0.05176997,-0.1012912;-0.612262;-0.01103136,0.004972457;0.3991843;0.02419856,35.23997
-0;0;0,0.001732324;0.1990966;0.01890925,0.004118945;0.4986083;0.03493803,0.1191566;0.3774795;0.008782964,0.1710088;0.1849164;0.02397555,0.1928619;-0.06176263;-0.01025707,-0.1026852;0.3668571;-0.01407926,-0.1593395;0.2466563;-0.1635518,-0.2060265;0.1441633;-0.3867458,0.07639186;0.005938487;-0.0230004,0.08137217;-0.2935415;-0.00606153,0.06792715;-0.5857877;0.06035721,0.07847946;-0.6165882;0.00239234,-0.06492549;0.002406126;-0.0466786,-0.1046844;-0.2918909;-0.00415187,-0.1051533;-0.586041;0.05480155,-0.1050165;-0.6145303;-0.007161397,0.003378675;0.3986492;0.0321779,0;0;0,0.002510644;0.1993968;0.01531646,0.0062558;0.4991752;0.02463633,0.1232341;0.381769;0.01366788,0.1693053;0.188231;0.03417325,0.203464;-0.05869688;0.01520436,-0.09834334;0.3678519;-0.02818584,-0.1463813;0.2547526;-0.185986,-0.1859913;0.1663237;-0.416445,0.07794975;0.003740717;-0.01760237,0.08633492;-0.2956245;8.201227E-06,0.07427806;-0.5894926;0.05913701,0.08567543;-0.6194505;0.0001724064,-0.06130726;0.004082498;-0.05123234,-0.09927689;-0.2898354;-0.004642963,-0.09875312;-0.5844831;0.05176997,-0.1012912;-0.612262;-0.01103136,0.004972457;0.3991843;0.02419856,35.25185
-0;0;0,0.001728378;0.1991048;0.01882293,0.004084616;0.4986235;0.034703,0.1190891;0.3774539;0.00844514,0.1708999;0.1848909;0.02377973,0.1929311;-0.0618109;-0.01017411,-0.1028052;0.3667316;-0.01391524,-0.1597874;0.2429979;-0.1603495,-0.2068569;0.1363178;-0.3814917,0.07635232;0.005936221;-0.02313187,0.08138801;-0.2935409;-0.006158669,0.06789574;-0.5857798;0.06028229,0.0784968;-0.6169973;0.002912119,-0.06501561;0.002435289;-0.04655147,-0.1048252;-0.2918654;-0.004097961,-0.1052193;-0.5860538;0.05466425,-0.1050191;-0.6148317;-0.006931253,0.003355466;0.398662;0.03202346,0;0;0,0.002452532;0.1994055;0.01521269,0.006088414;0.4991895;0.02439823,0.1230664;0.3816246;0.01328515,0.1694898;0.1881519;0.03361163,0.2035836;-0.05880933;0.01496276,-0.09861056;0.367965;-0.02816701,-0.1644624;0.2529801;-0.1779736,-0.1928121;0.1596277;-0.4081509,0.07794406;0.003762939;-0.01762278,0.08624721;-0.2955974;0.0001096819,0.07400458;-0.5894566;0.05924428,0.08556778;-0.6196039;0.0005697347,-0.06134539;0.004073152;-0.05118742,-0.09933516;-0.2898745;-0.004802428,-0.09899466;-0.5845047;0.05170333,-0.1013062;-0.6123489;-0.0110258,0.004844763;0.399198;0.02400095,35.27358
-0;0;0,0.001728378;0.1991048;0.01882293,0.004084616;0.4986235;0.034703,0.1190891;0.3774539;0.00844514,0.1708999;0.1848909;0.02377973,0.1929311;-0.0618109;-0.01017411,-0.1028052;0.3667316;-0.01391524,-0.1597874;0.2429979;-0.1603495,-0.2068569;0.1363178;-0.3814917,0.07635232;0.005936221;-0.02313187,0.08138801;-0.2935409;-0.006158669,0.06789574;-0.5857798;0.06028229,0.0784968;-0.6169973;0.002912119,-0.06501561;0.002435289;-0.04655147,-0.1048252;-0.2918654;-0.004097961,-0.1052193;-0.5860538;0.05466425,-0.1050191;-0.6148317;-0.006931253,0.003355466;0.398662;0.03202346,0;0;0,0.002452532;0.1994055;0.01521269,0.006088414;0.4991895;0.02439823,0.1230664;0.3816246;0.01328515,0.1694898;0.1881519;0.03361163,0.2035836;-0.05880933;0.01496276,-0.09861056;0.367965;-0.02816701,-0.1644624;0.2529801;-0.1779736,-0.1928121;0.1596277;-0.4081509,0.07794406;0.003762939;-0.01762278,0.08624721;-0.2955974;0.0001096819,0.07400458;-0.5894566;0.05924428,0.08556778;-0.6196039;0.0005697347,-0.06134539;0.004073152;-0.05118742,-0.09933516;-0.2898745;-0.004802428,-0.09899466;-0.5845047;0.05170333,-0.1013062;-0.6123489;-0.0110258,0.004844763;0.399198;0.02400095,35.28497
-0;0;0,0.001580596;0.1991213;0.01865997,0.003707737;0.4986535;0.0342919,0.1187832;0.3776976;0.007810226,0.1709839;0.1852975;0.0238505,0.1927109;-0.06141925;-0.01019013,-0.10309;0.3664623;-0.01398357,-0.1603697;0.2402361;-0.158157,-0.2068234;0.1262651;-0.3757637,0.07634421;0.00595093;-0.02315485,0.08122919;-0.2935371;-0.006330915,0.0676856;-0.585796;0.06001171,0.07835948;-0.6170244;0.002670575,-0.06499553;0.002430287;-0.04657977,-0.1049856;-0.2918676;-0.004276752,-0.1054791;-0.5860693;0.05441846,-0.106645;-0.6133656;-0.009016015,0.003079519;0.3986883;0.03172781,0;0;0,0.002452532;0.1994055;0.01521269,0.006088414;0.4991895;0.02439823,0.1230664;0.3816246;0.01328515,0.1694898;0.1881519;0.03361163,0.2035836;-0.05880933;0.01496276,-0.09861056;0.367965;-0.02816701,-0.1644624;0.2529801;-0.1779736,-0.1928121;0.1596277;-0.4081509,0.07794406;0.003762939;-0.01762278,0.08624721;-0.2955974;0.0001096819,0.07400458;-0.5894566;0.05924428,0.08556778;-0.6196039;0.0005697347,-0.06134539;0.004073152;-0.05118742,-0.09933516;-0.2898745;-0.004802428,-0.09899466;-0.5845047;0.05170333,-0.1013062;-0.6123489;-0.0110258,0.004844763;0.399198;0.02400095,35.30692
-0;0;0,0.001580596;0.1991213;0.01865997,0.003707737;0.4986535;0.0342919,0.1187832;0.3776976;0.007810226,0.1709839;0.1852975;0.0238505,0.1927109;-0.06141925;-0.01019013,-0.10309;0.3664623;-0.01398357,-0.1603697;0.2402361;-0.158157,-0.2068234;0.1262651;-0.3757637,0.07634421;0.00595093;-0.02315485,0.08122919;-0.2935371;-0.006330915,0.0676856;-0.585796;0.06001171,0.07835948;-0.6170244;0.002670575,-0.06499553;0.002430287;-0.04657977,-0.1049856;-0.2918676;-0.004276752,-0.1054791;-0.5860693;0.05441846,-0.106645;-0.6133656;-0.009016015,0.003079519;0.3986883;0.03172781,0;0;0,0.002376812;0.1994134;0.01512167,0.005859083;0.4992032;0.02417835,0.1229112;0.3818153;0.01301529,0.1692591;0.1882977;0.03308509,0.2039511;-0.05857062;0.01430962,-0.09944527;0.3678206;-0.02691555,-0.1494455;0.2620685;-0.1891391,-0.1898069;0.1644185;-0.4157124,0.07785864;0.003758267;-0.01799744,0.08611;-0.295577;0.0001776386,0.07384919;-0.5894208;0.05938502,0.0854826;-0.6195274;0.0006687604,-0.06143868;0.004094264;-0.05107372,-0.09943881;-0.2898479;-0.004662599,-0.09937932;-0.5844451;0.05201594,-0.1020658;-0.6111525;-0.01208367,0.004671636;0.3992109;0.0238222,35.31821
-0;0;0,0.001522633;0.1991279;0.01859523,0.003471688;0.4986785;0.03387762,0.1185748;0.3776948;0.007432081,0.1706859;0.1852603;0.02335077,0.1926516;-0.06148836;-0.01030351,-0.1033299;0.3663875;-0.0140624,-0.1606821;0.2386408;-0.1568613,-0.2065879;0.1127296;-0.367904,0.07632467;0.005951131;-0.02321912,0.08122937;-0.2935337;-0.006342698,0.06727763;-0.5857708;0.06001107,0.0786312;-0.6164246;0.001993328,-0.06506581;0.002406688;-0.04648276,-0.1049814;-0.2919141;-0.004268698,-0.1050202;-0.5860622;0.0546965,-0.1067224;-0.6135452;-0.00849751,0.002896151;0.3987097;0.03144917,0;0;0,0.002376812;0.1994134;0.01512167,0.005859083;0.4992032;0.02417835,0.1229112;0.3818153;0.01301529,0.1692591;0.1882977;0.03308509,0.2039511;-0.05857062;0.01430962,-0.09944527;0.3678206;-0.02691555,-0.1494455;0.2620685;-0.1891391,-0.1898069;0.1644185;-0.4157124,0.07785864;0.003758267;-0.01799744,0.08611;-0.295577;0.0001776386,0.07384919;-0.5894208;0.05938502,0.0854826;-0.6195274;0.0006687604,-0.06143868;0.004094264;-0.05107372,-0.09943881;-0.2898479;-0.004662599,-0.09937932;-0.5844451;0.05201594,-0.1020658;-0.6111525;-0.01208367,0.004671636;0.3992109;0.0238222,35.32936
-0;0;0,0.001522633;0.1991279;0.01859523,0.003471688;0.4986785;0.03387762,0.1185748;0.3776948;0.007432081,0.1706859;0.1852603;0.02335077,0.1926516;-0.06148836;-0.01030351,-0.1033299;0.3663875;-0.0140624,-0.1606821;0.2386408;-0.1568613,-0.2065879;0.1127296;-0.367904,0.07632467;0.005951131;-0.02321912,0.08122937;-0.2935337;-0.006342698,0.06727763;-0.5857708;0.06001107,0.0786312;-0.6164246;0.001993328,-0.06506581;0.002406688;-0.04648276,-0.1049814;-0.2919141;-0.004268698,-0.1050202;-0.5860622;0.0546965,-0.1067224;-0.6135452;-0.00849751,0.002896151;0.3987097;0.03144917,0;0;0,0.002376812;0.1994134;0.01512167,0.005859083;0.4992032;0.02417835,0.1229112;0.3818153;0.01301529,0.1692591;0.1882977;0.03308509,0.2039511;-0.05857062;0.01430962,-0.09944527;0.3678206;-0.02691555,-0.1494455;0.2620685;-0.1891391,-0.1898069;0.1644185;-0.4157124,0.07785864;0.003758267;-0.01799744,0.08611;-0.295577;0.0001776386,0.07384919;-0.5894208;0.05938502,0.0854826;-0.6195274;0.0006687604,-0.06143868;0.004094264;-0.05107372,-0.09943881;-0.2898479;-0.004662599,-0.09937932;-0.5844451;0.05201594,-0.1020658;-0.6111525;-0.01208367,0.004671636;0.3992109;0.0238222,35.35164
-0;0;0,0.001487947;0.1991359;0.01851179,0.00328834;0.4987157;0.03319338,0.1185702;0.3780569;0.007313509,0.1710855;0.1857251;0.02314468,0.1932366;-0.06101292;-0.01046564,-0.1033673;0.3672239;-0.01527631,-0.1613638;0.2342332;-0.1529348,-0.2052103;0.1044251;-0.3620457,0.07630832;0.005951292;-0.02327276,0.08119336;-0.2935322;-0.006367255,0.06725619;-0.585766;0.06000454,0.07873596;-0.6162195;0.001734138,-0.06507383;0.002397155;-0.04647203,-0.1051295;-0.2919197;-0.004363168,-0.1051665;-0.586049;0.05469574,-0.1072879;-0.6136485;-0.008342508,0.002765868;0.3987409;0.03100996,0;0;0,0.002317894;0.1994165;0.01508884,0.005732713;0.499207;0.02415707,0.1227655;0.3817722;0.01262201,0.1689709;0.1882176;0.03266347,0.2040995;-0.05862144;0.0143197,-0.09947099;0.3675043;-0.02691006,-0.147787;0.2617925;-0.1896693,-0.1897658;0.1636011;-0.415714,0.07782822;0.003727409;-0.01813489,0.08604738;-0.2955937;0.0002848506,0.07376929;-0.5894158;0.05959653,0.08591183;-0.6193017;0.0006830171,-0.06151567;0.004132959;-0.05097785,-0.09948277;-0.2897842;-0.004381519,-0.09965514;-0.5844064;0.0521672,-0.1022235;-0.6102816;-0.01292,0.00456652;0.3992144;0.02379166,35.36304
-0;0;0,0.001487947;0.1991359;0.01851179,0.00328834;0.4987157;0.03319338,0.1185702;0.3780569;0.007313509,0.1710855;0.1857251;0.02314468,0.1932366;-0.06101292;-0.01046564,-0.1033673;0.3672239;-0.01527631,-0.1613638;0.2342332;-0.1529348,-0.2052103;0.1044251;-0.3620457,0.07630832;0.005951292;-0.02327276,0.08119336;-0.2935322;-0.006367255,0.06725619;-0.585766;0.06000454,0.07873596;-0.6162195;0.001734138,-0.06507383;0.002397155;-0.04647203,-0.1051295;-0.2919197;-0.004363168,-0.1051665;-0.586049;0.05469574,-0.1072879;-0.6136485;-0.008342508,0.002765868;0.3987409;0.03100996,0;0;0,0.002317894;0.1994165;0.01508884,0.005732713;0.499207;0.02415707,0.1227655;0.3817722;0.01262201,0.1689709;0.1882176;0.03266347,0.2040995;-0.05862144;0.0143197,-0.09947099;0.3675043;-0.02691006,-0.147787;0.2617925;-0.1896693,-0.1897658;0.1636011;-0.415714,0.07782822;0.003727409;-0.01813489,0.08604738;-0.2955937;0.0002848506,0.07376929;-0.5894158;0.05959653,0.08591183;-0.6193017;0.0006830171,-0.06151567;0.004132959;-0.05097785,-0.09948277;-0.2897842;-0.004381519,-0.09965514;-0.5844064;0.0521672,-0.1022235;-0.6102816;-0.01292,0.00456652;0.3992144;0.02379166,35.37453
-0;0;0,0.001493769;0.1991461;0.01840121,0.003257702;0.498735;0.03288621,0.1184446;0.3781018;0.006577909,0.1710321;0.1858339;0.02293662,0.1932325;-0.06091708;-0.01054625,-0.1034873;0.3667333;-0.01493129,-0.1615555;0.2307982;-0.1496522,-0.205045;0.09544772;-0.3552949,0.076269;0.005930377;-0.02340662,0.08132116;-0.2935269;-0.006091271,0.0672138;-0.5857952;0.06009224,0.07853775;-0.6163558;0.001939498,-0.06514928;0.002447717;-0.04636356,-0.1052219;-0.2919095;-0.004554529,-0.1050015;-0.5859101;0.05514157,-0.1071154;-0.6133576;-0.008083545,0.002740934;0.3987585;0.03078469,0;0;0,0.002317894;0.1994165;0.01508884,0.005732713;0.499207;0.02415707,0.1227655;0.3817722;0.01262201,0.1689709;0.1882176;0.03266347,0.2040995;-0.05862144;0.0143197,-0.09947099;0.3675043;-0.02691006,-0.147787;0.2617925;-0.1896693,-0.1897658;0.1636011;-0.415714,0.07782822;0.003727409;-0.01813489,0.08604738;-0.2955937;0.0002848506,0.07376929;-0.5894158;0.05959653,0.08591183;-0.6193017;0.0006830171,-0.06151567;0.004132959;-0.05097785,-0.09948277;-0.2897842;-0.004381519,-0.09965514;-0.5844064;0.0521672,-0.1022235;-0.6102816;-0.01292,0.00456652;0.3992144;0.02379166,35.39635
-0;0;0,0.001493769;0.1991461;0.01840121,0.003257702;0.498735;0.03288621,0.1184446;0.3781018;0.006577909,0.1710321;0.1858339;0.02293662,0.1932325;-0.06091708;-0.01054625,-0.1034873;0.3667333;-0.01493129,-0.1615555;0.2307982;-0.1496522,-0.205045;0.09544772;-0.3552949,0.076269;0.005930377;-0.02340662,0.08132116;-0.2935269;-0.006091271,0.0672138;-0.5857952;0.06009224,0.07853775;-0.6163558;0.001939498,-0.06514928;0.002447717;-0.04636356,-0.1052219;-0.2919095;-0.004554529,-0.1050015;-0.5859101;0.05514157,-0.1071154;-0.6133576;-0.008083545,0.002740934;0.3987585;0.03078469,0;0;0,0.002376867;0.1994109;0.01515342,0.005915802;0.4991964;0.02433873,0.1228547;0.3818006;0.01220021,0.1692639;0.1882697;0.03199973,0.2042912;-0.05856249;0.01337366,-0.09938557;0.3676634;-0.0267649,-0.1478827;0.2611458;-0.1889439,-0.1856165;0.1350373;-0.4014829,0.07784618;0.003751512;-0.01805264,0.0860697;-0.2955658;0.0004278868,0.0737713;-0.5893317;0.06001271,0.08566196;-0.6193898;0.001281891,-0.06149325;0.004122274;-0.05100576,-0.09964615;-0.2897264;-0.004130345,-0.09972596;-0.5843437;0.05244373,-0.1031952;-0.6090856;-0.01390098,0.00470473;0.3992046;0.02393388,35.40793
-0;0;0,0.001493769;0.1991461;0.01840121,0.003257702;0.498735;0.03288621,0.1184446;0.3781018;0.006577909,0.1710321;0.1858339;0.02293662,0.1932325;-0.06091708;-0.01054625,-0.1034873;0.3667333;-0.01493129,-0.1615555;0.2307982;-0.1496522,-0.205045;0.09544772;-0.3552949,0.076269;0.005930377;-0.02340662,0.08132116;-0.2935269;-0.006091271,0.0672138;-0.5857952;0.06009224,0.07853775;-0.6163558;0.001939498,-0.06514928;0.002447717;-0.04636356,-0.1052219;-0.2919095;-0.004554529,-0.1050015;-0.5859101;0.05514157,-0.1071154;-0.6133576;-0.008083545,0.002740934;0.3987585;0.03078469,0;0;0,0.002376867;0.1994109;0.01515342,0.005915802;0.4991964;0.02433873,0.1228547;0.3818006;0.01220021,0.1692639;0.1882697;0.03199973,0.2042912;-0.05856249;0.01337366,-0.09938557;0.3676634;-0.0267649,-0.1478827;0.2611458;-0.1889439,-0.1856165;0.1350373;-0.4014829,0.07784618;0.003751512;-0.01805264,0.0860697;-0.2955658;0.0004278868,0.0737713;-0.5893317;0.06001271,0.08566196;-0.6193898;0.001281891,-0.06149325;0.004122274;-0.05100576,-0.09964615;-0.2897264;-0.004130345,-0.09972596;-0.5843437;0.05244373,-0.1031952;-0.6090856;-0.01390098,0.00470473;0.3992046;0.02393388,35.41871
-0;0;0,0.001485457;0.1991525;0.01833253,0.003267518;0.4987583;0.03245302,0.1184214;0.3782947;0.00605591,0.1709943;0.1860572;0.02281441,0.1933535;-0.06066918;-0.01074354,-0.1035136;0.3674402;-0.01566473,-0.1614603;0.2267147;-0.145428,-0.2034503;0.08720331;-0.3485866,0.07625282;0.005924162;-0.02346086,0.08130418;-0.2935314;-0.006114792,0.06715249;-0.5857995;0.06005972,0.07857513;-0.616011;0.001445364,-0.0651757;0.00246971;-0.04632525,-0.1052608;-0.2918995;-0.004612233,-0.1050424;-0.5859007;0.0550804,-0.1071324;-0.6132295;-0.008290704,0.00273318;0.3987792;0.03048167,0;0;0,0.002376867;0.1994109;0.01515342,0.005915802;0.4991964;0.02433873,0.1228547;0.3818006;0.01220021,0.1692639;0.1882697;0.03199973,0.2042912;-0.05856249;0.01337366,-0.09938557;0.3676634;-0.0267649,-0.1478827;0.2611458;-0.1889439,-0.1856165;0.1350373;-0.4014829,0.07784618;0.003751512;-0.01805264,0.0860697;-0.2955658;0.0004278868,0.0737713;-0.5893317;0.06001271,0.08566196;-0.6193898;0.001281891,-0.06149325;0.004122274;-0.05100576,-0.09964615;-0.2897264;-0.004130345,-0.09972596;-0.5843437;0.05244373,-0.1031952;-0.6090856;-0.01390098,0.00470473;0.3992046;0.02393388,35.44107
-0;0;0,0.001485457;0.1991525;0.01833253,0.003267518;0.4987583;0.03245302,0.1184214;0.3782947;0.00605591,0.1709943;0.1860572;0.02281441,0.1933535;-0.06066918;-0.01074354,-0.1035136;0.3674402;-0.01566473,-0.1614603;0.2267147;-0.145428,-0.2034503;0.08720331;-0.3485866,0.07625282;0.005924162;-0.02346086,0.08130418;-0.2935314;-0.006114792,0.06715249;-0.5857995;0.06005972,0.07857513;-0.616011;0.001445364,-0.0651757;0.00246971;-0.04632525,-0.1052608;-0.2918995;-0.004612233,-0.1050424;-0.5859007;0.0550804,-0.1071324;-0.6132295;-0.008290704,0.00273318;0.3987792;0.03048167,0;0;0,0.00231424;0.1994039;0.01525581,0.005816992;0.4991859;0.02455847,0.1227173;0.3816609;0.0121002,0.1690839;0.1881385;0.03208034,0.2044291;-0.05864558;0.01341593,-0.09932662;0.3673491;-0.02669253,-0.1474955;0.2601688;-0.1885324,-0.1849117;0.1351729;-0.4017835,0.07781668;0.003802807;-0.01816874,0.08599848;-0.2954968;0.0006138515,0.07381364;-0.5892253;0.06040601,0.08503804;-0.6199862;0.00251225,-0.06156569;0.004097062;-0.05092033,-0.09979554;-0.2897422;-0.004048634,-0.09977481;-0.5843282;0.05268888,-0.103341;-0.6084682;-0.01432258,0.00461523;0.3991941;0.02412076,35.45251
-0;0;0,0.001256862;0.199176;0.01809277,0.002858461;0.4988126;0.031512,0.1180664;0.3779069;0.005620336,0.1706742;0.1857101;0.02273137,0.1932028;-0.06090187;-0.01154704,-0.1040752;0.3672349;-0.01558001,-0.1611145;0.22335;-0.1422436,-0.2042993;0.07961264;-0.3421802,0.07616109;0.005990976;-0.02374017,0.0808738;-0.2934672;-0.006344812,0.06654474;-0.5856985;0.05995418,0.078098;-0.6156675;0.001034901,-0.06530559;0.002361833;-0.0461476,-0.1058205;-0.2920169;-0.00491989,-0.1055709;-0.5860068;0.05482875,-0.1080123;-0.6124662;-0.009576168,0.002411664;0.3988277;0.02983416,0;0;0,0.00231424;0.1994039;0.01525581,0.005816992;0.4991859;0.02455847,0.1227173;0.3816609;0.0121002,0.1690839;0.1881385;0.03208034,0.2044291;-0.05864558;0.01341593,-0.09932662;0.3673491;-0.02669253,-0.1474955;0.2601688;-0.1885324,-0.1849117;0.1351729;-0.4017835,0.07781668;0.003802807;-0.01816874,0.08599848;-0.2954968;0.0006138515,0.07381364;-0.5892253;0.06040601,0.08503804;-0.6199862;0.00251225,-0.06156569;0.004097062;-0.05092033,-0.09979554;-0.2897422;-0.004048634,-0.09977481;-0.5843282;0.05268888,-0.103341;-0.6084682;-0.01432258,0.00461523;0.3991941;0.02412076,35.46494
-0;0;0,0.001256862;0.199176;0.01809277,0.002858461;0.4988126;0.031512,0.1180664;0.3779069;0.005620336,0.1706742;0.1857101;0.02273137,0.1932028;-0.06090187;-0.01154704,-0.1040752;0.3672349;-0.01558001,-0.1611145;0.22335;-0.1422436,-0.2042993;0.07961264;-0.3421802,0.07616109;0.005990976;-0.02374017,0.0808738;-0.2934672;-0.006344812,0.06654474;-0.5856985;0.05995418,0.078098;-0.6156675;0.001034901,-0.06530559;0.002361833;-0.0461476,-0.1058205;-0.2920169;-0.00491989,-0.1055709;-0.5860068;0.05482875,-0.1080123;-0.6124662;-0.009576168,0.002411664;0.3988277;0.02983416,0;0;0,0.00231424;0.1994039;0.01525581,0.005816992;0.4991859;0.02455847,0.1227173;0.3816609;0.0121002,0.1690839;0.1881385;0.03208034,0.2044291;-0.05864558;0.01341593,-0.09932662;0.3673491;-0.02669253,-0.1474955;0.2601688;-0.1885324,-0.1849117;0.1351729;-0.4017835,0.07781668;0.003802807;-0.01816874,0.08599848;-0.2954968;0.0006138515,0.07381364;-0.5892253;0.06040601,0.08503804;-0.6199862;0.00251225,-0.06156569;0.004097062;-0.05092033,-0.09979554;-0.2897422;-0.004048634,-0.09977481;-0.5843282;0.05268888,-0.103341;-0.6084682;-0.01432258,0.00461523;0.3991941;0.02412076,35.48554
-0;0;0,0.001242128;0.1991864;0.01797948,0.002796185;0.4988439;0.0309364,0.1178125;0.3775973;0.004549429,0.1704557;0.1854929;0.02256614,0.1930142;-0.06105667;-0.01213862,-0.1042872;0.3669412;-0.01541375,-0.1606161;0.2199685;-0.1388077,-0.2052089;0.07373023;-0.3366103,0.0761052;0.005941377;-0.02393111,0.0807726;-0.293507;-0.00635617,0.06649272;-0.5857346;0.05996972,0.07805911;-0.6157054;0.001055408,-0.06539033;0.00233294;-0.04602891,-0.1059293;-0.29207;-0.004998624,-0.1056063;-0.5860683;0.05470809,-0.10825;-0.6124392;-0.0097939,0.002355775;0.3988566;0.02940447,0;0;0,0.002322931;0.1994055;0.01523293,0.005884325;0.4991898;0.02444008,0.1226526;0.3812357;0.01159507,0.1691153;0.1877386;0.03159699,0.2048293;-0.05899493;0.01296737,-0.0992588;0.3670497;-0.02663675,-0.1476077;0.2587646;-0.1876856,-0.1853914;0.1382091;-0.403414,0.07780577;0.003773957;-0.01822138,0.08597871;-0.2955048;0.0008953027,0.07352048;-0.5891809;0.06088804,0.08534054;-0.6197705;0.00287408,-0.06160748;0.00412598;-0.05086742,-0.09986588;-0.2896964;-0.003913041,-0.09986093;-0.5842693;0.05289198,-0.1029837;-0.608983;-0.01350158,0.004658526;0.3991981;0.02403543,35.49708
-0;0;0,0.001242128;0.1991864;0.01797948,0.002796185;0.4988439;0.0309364,0.1178125;0.3775973;0.004549429,0.1704557;0.1854929;0.02256614,0.1930142;-0.06105667;-0.01213862,-0.1042872;0.3669412;-0.01541375,-0.1606161;0.2199685;-0.1388077,-0.2052089;0.07373023;-0.3366103,0.0761052;0.005941377;-0.02393111,0.0807726;-0.293507;-0.00635617,0.06649272;-0.5857346;0.05996972,0.07805911;-0.6157054;0.001055408,-0.06539033;0.00233294;-0.04602891,-0.1059293;-0.29207;-0.004998624,-0.1056063;-0.5860683;0.05470809,-0.10825;-0.6124392;-0.0097939,0.002355775;0.3988566;0.02940447,0;0;0,0.002322931;0.1994055;0.01523293,0.005884325;0.4991898;0.02444008,0.1226526;0.3812357;0.01159507,0.1691153;0.1877386;0.03159699,0.2048293;-0.05899493;0.01296737,-0.0992588;0.3670497;-0.02663675,-0.1476077;0.2587646;-0.1876856,-0.1853914;0.1382091;-0.403414,0.07780577;0.003773957;-0.01822138,0.08597871;-0.2955048;0.0008953027,0.07352048;-0.5891809;0.06088804,0.08534054;-0.6197705;0.00287408,-0.06160748;0.00412598;-0.05086742,-0.09986588;-0.2896964;-0.003913041,-0.09986093;-0.5842693;0.05289198,-0.1029837;-0.608983;-0.01350158,0.004658526;0.3991981;0.02403543,35.51892
-0;0;0,0.00112376;0.1992005;0.01783007,0.002285381;0.4988804;0.03028485,0.1174987;0.3779279;0.004038518,0.1702075;0.1858716;0.02237276,0.1943383;-0.06019896;-0.01460038,-0.1047821;0.3667929;-0.01542364,-0.160286;0.2161308;-0.1346723,-0.2058236;0.06022824;-0.3247268,0.07605452;0.005962746;-0.02408641,0.08071607;-0.293485;-0.006499888,0.06644572;-0.5858017;0.05943462,0.07931436;-0.6165699;0.001894277,-0.06546124;0.002309511;-0.04592921,-0.1061202;-0.2921158;-0.005178686,-0.1056423;-0.5861408;0.05439579,-0.1076379;-0.6134671;-0.008981265,0.001997185;0.3988898;0.02893822,0;0;0,0.002322931;0.1994055;0.01523293,0.005884325;0.4991898;0.02444008,0.1226526;0.3812357;0.01159507,0.1691153;0.1877386;0.03159699,0.2048293;-0.05899493;0.01296737,-0.0992588;0.3670497;-0.02663675,-0.1476077;0.2587646;-0.1876856,-0.1853914;0.1382091;-0.403414,0.07780577;0.003773957;-0.01822138,0.08597871;-0.2955048;0.0008953027,0.07352048;-0.5891809;0.06088804,0.08534054;-0.6197705;0.00287408,-0.06160748;0.00412598;-0.05086742,-0.09986588;-0.2896964;-0.003913041,-0.09986093;-0.5842693;0.05289198,-0.1029837;-0.608983;-0.01350158,0.004658526;0.3991981;0.02403543,35.53059
-0;0;0,0.00112376;0.1992005;0.01783007,0.002285381;0.4988804;0.03028485,0.1174987;0.3779279;0.004038518,0.1702075;0.1858716;0.02237276,0.1943383;-0.06019896;-0.01460038,-0.1047821;0.3667929;-0.01542364,-0.160286;0.2161308;-0.1346723,-0.2058236;0.06022824;-0.3247268,0.07605452;0.005962746;-0.02408641,0.08071607;-0.293485;-0.006499888,0.06644572;-0.5858017;0.05943462,0.07931436;-0.6165699;0.001894277,-0.06546124;0.002309511;-0.04592921,-0.1061202;-0.2921158;-0.005178686,-0.1056423;-0.5861408;0.05439579,-0.1076379;-0.6134671;-0.008981265,0.001997185;0.3988898;0.02893822,0;0;0,0.002283818;0.1994079;0.01520717,0.005784623;0.4991931;0.02441199,0.1225486;0.3811076;0.01151551,0.1696726;0.1877859;0.03166601,0.2049676;-0.05898118;0.01268526,-0.09983245;0.3669369;-0.02556477,-0.148195;0.2574796;-0.1858151,-0.1861277;0.1348804;-0.4003624,0.07779551;0.003728142;-0.01827459,0.08592982;-0.2955405;0.001015207,0.07352877;-0.5892316;0.06094678,0.08527203;-0.6200406;0.00322333,-0.06164636;0.004152894;-0.05081809,-0.09990346;-0.2896643;-0.003830403,-0.0998744;-0.5842708;0.0528005,-0.1030366;-0.6090652;-0.01350024,0.004579764;0.3992012;0.02400447,35.55248
-0;0;0,0.001041608;0.1992106;0.01772168,0.001899647;0.4989069;0.02980548,0.1174288;0.3786196;0.004134238,0.1704823;0.1866241;0.02210853,0.1951052;-0.05922782;-0.01597743,-0.1052177;0.3668746;-0.01546432,-0.1607585;0.2128665;-0.1303414,-0.2056065;0.04993594;-0.3145757,0.07604548;0.00598719;-0.02410887,0.08070755;-0.2934625;-0.006553411,0.06644934;-0.5857816;0.05937252,0.07915302;-0.6165655;0.001817536,-0.06545272;0.002289362;-0.04594235,-0.1060387;-0.2921443;-0.005179413,-0.1053044;-0.586209;0.05419592,-0.1075114;-0.6132311;-0.009543519,0.001710942;0.3989146;0.02857758,0;0;0,0.002283818;0.1994079;0.01520717,0.005784623;0.4991931;0.02441199,0.1225486;0.3811076;0.01151551,0.1696726;0.1877859;0.03166601,0.2049676;-0.05898118;0.01268526,-0.09983245;0.3669369;-0.02556477,-0.148195;0.2574796;-0.1858151,-0.1861277;0.1348804;-0.4003624,0.07779551;0.003728142;-0.01827459,0.08592982;-0.2955405;0.001015207,0.07352877;-0.5892316;0.06094678,0.08527203;-0.6200406;0.00322333,-0.06164636;0.004152894;-0.05081809,-0.09990346;-0.2896643;-0.003830403,-0.0998744;-0.5842708;0.0528005,-0.1030366;-0.6090652;-0.01350024,0.004579764;0.3992012;0.02400447,35.5643
-0;0;0,0.001041608;0.1992106;0.01772168,0.001899647;0.4989069;0.02980548,0.1174288;0.3786196;0.004134238,0.1704823;0.1866241;0.02210853,0.1951052;-0.05922782;-0.01597743,-0.1052177;0.3668746;-0.01546432,-0.1607585;0.2128665;-0.1303414,-0.2056065;0.04993594;-0.3145757,0.07604548;0.00598719;-0.02410887,0.08070755;-0.2934625;-0.006553411,0.06644934;-0.5857816;0.05937252,0.07915302;-0.6165655;0.001817536,-0.06545272;0.002289362;-0.04594235,-0.1060387;-0.2921443;-0.005179413,-0.1053044;-0.586209;0.05419592,-0.1075114;-0.6132311;-0.009543519,0.001710942;0.3989146;0.02857758,0;0;0,0.002283818;0.1994079;0.01520717,0.005784623;0.4991931;0.02441199,0.1225486;0.3811076;0.01151551,0.1696726;0.1877859;0.03166601,0.2049676;-0.05898118;0.01268526,-0.09983245;0.3669369;-0.02556477,-0.148195;0.2574796;-0.1858151,-0.1861277;0.1348804;-0.4003624,0.07779551;0.003728142;-0.01827459,0.08592982;-0.2955405;0.001015207,0.07352877;-0.5892316;0.06094678,0.08527203;-0.6200406;0.00322333,-0.06164636;0.004152894;-0.05081809,-0.09990346;-0.2896643;-0.003830403,-0.0998744;-0.5842708;0.0528005,-0.1030366;-0.6090652;-0.01350024,0.004579764;0.3992012;0.02400447,35.5875
-0;0;0,0.00095409;0.1992317;0.01748772,0.001543249;0.4989624;0.02870044,0.1171945;0.3787714;0.003445599,0.1703502;0.1868382;0.02177926,0.1955435;-0.05877404;-0.01746286,-0.1056955;0.36673;-0.01564038,-0.1613711;0.2080942;-0.1239682,-0.2055212;0.04304931;-0.306481,0.07603546;0.005975551;-0.02414334,0.08076464;-0.2934654;-0.006458653,0.06641646;-0.5857915;0.05941729,0.07900628;-0.6164986;0.001729723,-0.06545965;0.002303213;-0.0459318,-0.1060231;-0.2921422;-0.005231574,-0.1052589;-0.5861607;0.05437176,-0.1069502;-0.6140124;-0.008367822,0.001433422;0.3989668;0.0277668,0;0;0,0.002223896;0.1994114;0.01517087,0.005638442;0.4991976;0.02437997,0.1224335;0.3811665;0.01141624,0.1698133;0.1877926;0.0304337,0.2052086;-0.05900167;0.0120013,-0.09989679;0.3667833;-0.02561158,-0.1484912;0.2545037;-0.1838262,-0.1857955;0.1352011;-0.4003332,0.07778128;0.00373117;-0.01833441,0.08590028;-0.295522;0.001200652,0.07340708;-0.5891946;0.06120346,0.08488689;-0.6204387;0.004040457,-0.06169637;0.004156445;-0.05075709,-0.1000718;-0.2896904;-0.004051942,-0.1001467;-0.5841948;0.05310745,-0.103351;-0.6075228;-0.01480962,0.004462673;0.3992054;0.02396573,35.5987
-0;0;0,0.00095409;0.1992317;0.01748772,0.001543249;0.4989624;0.02870044,0.1171945;0.3787714;0.003445599,0.1703502;0.1868382;0.02177926,0.1955435;-0.05877404;-0.01746286,-0.1056955;0.36673;-0.01564038,-0.1613711;0.2080942;-0.1239682,-0.2055212;0.04304931;-0.306481,0.07603546;0.005975551;-0.02414334,0.08076464;-0.2934654;-0.006458653,0.06641646;-0.5857915;0.05941729,0.07900628;-0.6164986;0.001729723,-0.06545965;0.002303213;-0.0459318,-0.1060231;-0.2921422;-0.005231574,-0.1052589;-0.5861607;0.05437176,-0.1069502;-0.6140124;-0.008367822,0.001433422;0.3989668;0.0277668,0;0;0,0.002223896;0.1994114;0.01517087,0.005638442;0.4991976;0.02437997,0.1224335;0.3811665;0.01141624,0.1698133;0.1877926;0.0304337,0.2052086;-0.05900167;0.0120013,-0.09989679;0.3667833;-0.02561158,-0.1484912;0.2545037;-0.1838262,-0.1857955;0.1352011;-0.4003332,0.07778128;0.00373117;-0.01833441,0.08590028;-0.295522;0.001200652,0.07340708;-0.5891946;0.06120346,0.08488689;-0.6204387;0.004040457,-0.06169637;0.004156445;-0.05075709,-0.1000718;-0.2896904;-0.004051942,-0.1001467;-0.5841948;0.05310745,-0.103351;-0.6075228;-0.01480962,0.004462673;0.3992054;0.02396573,35.61972
-0;0;0,0.0008146975;0.1992562;0.01721396,0.001108756;0.4990051;0.02798042,0.116821;0.3789141;0.002648862,0.1700364;0.1870527;0.0215513,0.1957805;-0.05813874;-0.01990249,-0.1062332;0.3667218;-0.01574466,-0.1620275;0.2059193;-0.1207663,-0.206444;0.03084119;-0.2936097,0.07599363;0.005899474;-0.02429327,0.08068653;-0.2935375;-0.006531406,0.06681387;-0.5859562;0.05903416,0.07882164;-0.6170021;0.00169855,-0.06547955;0.00231838;-0.04590264,-0.1060348;-0.2921475;-0.005342431,-0.1050499;-0.5860472;0.05484053,-0.1067659;-0.6143816;-0.007294718,0.001082576;0.3990085;0.02716087,0;0;0,0.002223896;0.1994114;0.01517087,0.005638442;0.4991976;0.02437997,0.1224335;0.3811665;0.01141624,0.1698133;0.1877926;0.0304337,0.2052086;-0.05900167;0.0120013,-0.09989679;0.3667833;-0.02561158,-0.1484912;0.2545037;-0.1838262,-0.1857955;0.1352011;-0.4003332,0.07778128;0.00373117;-0.01833441,0.08590028;-0.295522;0.001200652,0.07340708;-0.5891946;0.06120346,0.08488689;-0.6204387;0.004040457,-0.06169637;0.004156445;-0.05075709,-0.1000718;-0.2896904;-0.004051942,-0.1001467;-0.5841948;0.05310745,-0.103351;-0.6075228;-0.01480962,0.004462673;0.3992054;0.02396573,35.64221
-0;0;0,0.0007808452;0.1992782;0.01695901,0.001097752;0.4990537;0.02695189,0.1168011;0.3786294;0.002247138,0.1699106;0.1867305;0.02106807,0.1963143;-0.05824271;-0.02125143,-0.1063198;0.3676952;-0.01707468,-0.1676621;0.1876861;-0.07899281,-0.2025566;0.03487945;-0.2737555,0.07597481;0.005882259;-0.02435623,0.08069971;-0.2935584;-0.006665979,0.0668399;-0.5859073;0.05921287,0.07876071;-0.6166612;0.001448654,-0.06551467;0.002350015;-0.04585091,-0.1060796;-0.2921333;-0.005427301,-0.1050799;-0.5860385;0.05472897,-0.1072742;-0.6139368;-0.00793713,0.001044039;0.3990553;0.0263942,0;0;0,0.00221701;0.1994165;0.01510381,0.005619738;0.4992055;0.0242328,0.1224462;0.3810978;0.01165621,0.1694198;0.1875716;0.03012481,0.2051411;-0.059183;0.0117897,-0.1002769;0.3667975;-0.02496095,-0.1505908;0.2498123;-0.1791783,-0.1862679;0.13249;-0.3970374,0.07773335;0.003698189;-0.01854314,0.08585963;-0.2955541;0.001001786,0.07346854;-0.5892411;0.06095542,0.08514772;-0.6203238;0.00360392,-0.06175869;0.004181236;-0.05067921,-0.1001828;-0.2896528;-0.003933255,-0.1002283;-0.5841298;0.05336663,-0.1046008;-0.6078708;-0.01403631,0.004448974;0.3992131;0.02384188,35.66418
-0;0;0,0.0007808452;0.1992782;0.01695901,0.001097752;0.4990537;0.02695189,0.1168011;0.3786294;0.002247138,0.1699106;0.1867305;0.02106807,0.1963143;-0.05824271;-0.02125143,-0.1063198;0.3676952;-0.01707468,-0.1676621;0.1876861;-0.07899281,-0.2025566;0.03487945;-0.2737555,0.07597481;0.005882259;-0.02435623,0.08069971;-0.2935584;-0.006665979,0.0668399;-0.5859073;0.05921287,0.07876071;-0.6166612;0.001448654,-0.06551467;0.002350015;-0.04585091,-0.1060796;-0.2921333;-0.005427301,-0.1050799;-0.5860385;0.05472897,-0.1072742;-0.6139368;-0.00793713,0.001044039;0.3990553;0.0263942,0;0;0,0.00221701;0.1994165;0.01510381,0.005619738;0.4992055;0.0242328,0.1224462;0.3810978;0.01165621,0.1694198;0.1875716;0.03012481,0.2051411;-0.059183;0.0117897,-0.1002769;0.3667975;-0.02496095,-0.1505908;0.2498123;-0.1791783,-0.1862679;0.13249;-0.3970374,0.07773335;0.003698189;-0.01854314,0.08585963;-0.2955541;0.001001786,0.07346854;-0.5892411;0.06095542,0.08514772;-0.6203238;0.00360392,-0.06175869;0.004181236;-0.05067921,-0.1001828;-0.2896528;-0.003933255,-0.1002283;-0.5841298;0.05336663,-0.1046008;-0.6078708;-0.01403631,0.004448974;0.3992131;0.02384188,35.67594
-0;0;0,0.0006550279;0.1993058;0.01663669,0.001033595;0.499092;0.02634592,0.116581;0.3784359;0.001368625,0.169825;0.186605;0.02049999,0.1963093;-0.05826011;-0.022391,-0.1068171;0.3678371;-0.01672264,-0.168005;0.187658;-0.07829816,-0.2047361;0.02545954;-0.2649595,0.07593303;0.005786625;-0.02450897,0.08084855;-0.2936388;-0.006613448,0.06702585;-0.5859837;0.05929091,0.07878734;-0.6168448;0.001644198,-0.06556932;0.002412332;-0.04576948,-0.1058418;-0.292114;-0.005367007,-0.1048947;-0.5860221;0.05477567,-0.1071862;-0.6136448;-0.008228067,0.0009353819;0.3990932;0.02585038,0;0;0,0.00221701;0.1994165;0.01510381,0.005619738;0.4992055;0.0242328,0.1224462;0.3810978;0.01165621,0.1694198;0.1875716;0.03012481,0.2051411;-0.059183;0.0117897,-0.1002769;0.3667975;-0.02496095,-0.1505908;0.2498123;-0.1791783,-0.1862679;0.13249;-0.3970374,0.07773335;0.003698189;-0.01854314,0.08585963;-0.2955541;0.001001786,0.07346854;-0.5892411;0.06095542,0.08514772;-0.6203238;0.00360392,-0.06175869;0.004181236;-0.05067921,-0.1001828;-0.2896528;-0.003933255,-0.1002283;-0.5841298;0.05336663,-0.1046008;-0.6078708;-0.01403631,0.004448974;0.3992131;0.02384188,35.69796
-0;0;0,0.0006550279;0.1993058;0.01663669,0.001033595;0.499092;0.02634592,0.116581;0.3784359;0.001368625,0.169825;0.186605;0.02049999,0.1963093;-0.05826011;-0.022391,-0.1068171;0.3678371;-0.01672264,-0.168005;0.187658;-0.07829816,-0.2047361;0.02545954;-0.2649595,0.07593303;0.005786625;-0.02450897,0.08084855;-0.2936388;-0.006613448,0.06702585;-0.5859837;0.05929091,0.07878734;-0.6168448;0.001644198,-0.06556932;0.002412332;-0.04576948,-0.1058418;-0.292114;-0.005367007,-0.1048947;-0.5860221;0.05477567,-0.1071862;-0.6136448;-0.008228067,0.0009353819;0.3990932;0.02585038,0;0;0,0.002134148;0.1994193;0.01507972,0.005436587;0.4992105;0.02417112,0.1222737;0.3812779;0.01112825,0.1694224;0.1878267;0.02993402,0.2053966;-0.05883463;0.01085463,-0.1002492;0.366153;-0.02495284,-0.1497592;0.2474166;-0.1780882,-0.1865297;0.1223456;-0.3914076,0.07765428;0.003717413;-0.01886781,0.08555097;-0.295526;0.0009066761,0.07308362;-0.5891607;0.0610997,0.08476616;-0.6200725;0.003508035,-0.0618744;0.004170514;-0.05053874,-0.1003316;-0.2896725;-0.003876604,-0.1006519;-0.5841434;0.05345408,-0.1048624;-0.6076333;-0.01423276,0.004300114;0.3992176;0.02379305,35.70917
-0;0;0,0.0006550279;0.1993058;0.01663669,0.001033595;0.499092;0.02634592,0.116581;0.3784359;0.001368625,0.169825;0.186605;0.02049999,0.1963093;-0.05826011;-0.022391,-0.1068171;0.3678371;-0.01672264,-0.168005;0.187658;-0.07829816,-0.2047361;0.02545954;-0.2649595,0.07593303;0.005786625;-0.02450897,0.08084855;-0.2936388;-0.006613448,0.06702585;-0.5859837;0.05929091,0.07878734;-0.6168448;0.001644198,-0.06556932;0.002412332;-0.04576948,-0.1058418;-0.292114;-0.005367007,-0.1048947;-0.5860221;0.05477567,-0.1071862;-0.6136448;-0.008228067,0.0009353819;0.3990932;0.02585038,0;0;0,0.002134148;0.1994193;0.01507972,0.005436587;0.4992105;0.02417112,0.1222737;0.3812779;0.01112825,0.1694224;0.1878267;0.02993402,0.2053966;-0.05883463;0.01085463,-0.1002492;0.366153;-0.02495284,-0.1497592;0.2474166;-0.1780882,-0.1865297;0.1223456;-0.3914076,0.07765428;0.003717413;-0.01886781,0.08555097;-0.295526;0.0009066761,0.07308362;-0.5891607;0.0610997,0.08476616;-0.6200725;0.003508035,-0.0618744;0.004170514;-0.05053874,-0.1003316;-0.2896725;-0.003876604,-0.1006519;-0.5841434;0.05345408,-0.1048624;-0.6076333;-0.01423276,0.004300114;0.3992176;0.02379305,35.72041
-0;0;0,0.000534464;0.199328;0.01637299,0.0007925886;0.4991215;0.02588989,0.1162556;0.3785188;0.0003749505,0.1697761;0.1867573;0.01942899,0.1967895;-0.0579046;-0.02428408,-0.1071722;0.3679571;-0.01684079,-0.1676987;0.1867909;-0.07613098,-0.206518;0.01569605;-0.254231,0.07576726;0.005726028;-0.02503069,0.08084699;-0.2936806;-0.006868776,0.06697944;-0.5859747;0.05925151,0.07768566;-0.6157337;-0.0001106672,-0.06562191;0.002402253;-0.04569457,-0.1057024;-0.2921734;-0.00546103,-0.1051707;-0.5861693;0.05425631,-0.1074292;-0.614332;-0.008077383,0.0007240028;0.3991226;0.02543371,0;0;0,0.002134148;0.1994193;0.01507972,0.005436587;0.4992105;0.02417112,0.1222737;0.3812779;0.01112825,0.1694224;0.1878267;0.02993402,0.2053966;-0.05883463;0.01085463,-0.1002492;0.366153;-0.02495284,-0.1497592;0.2474166;-0.1780882,-0.1865297;0.1223456;-0.3914076,0.07765428;0.003717413;-0.01886781,0.08555097;-0.295526;0.0009066761,0.07308362;-0.5891607;0.0610997,0.08476616;-0.6200725;0.003508035,-0.0618744;0.004170514;-0.05053874,-0.1003316;-0.2896725;-0.003876604,-0.1006519;-0.5841434;0.05345408,-0.1048624;-0.6076333;-0.01423276,0.004300114;0.3992176;0.02379305,35.73151
-0;0;0,0.000534464;0.199328;0.01637299,0.0007925886;0.4991215;0.02588989,0.1162556;0.3785188;0.0003749505,0.1697761;0.1867573;0.01942899,0.1967895;-0.0579046;-0.02428408,-0.1071722;0.3679571;-0.01684079,-0.1676987;0.1867909;-0.07613098,-0.206518;0.01569605;-0.254231,0.07576726;0.005726028;-0.02503069,0.08084699;-0.2936806;-0.006868776,0.06697944;-0.5859747;0.05925151,0.07768566;-0.6157337;-0.0001106672,-0.06562191;0.002402253;-0.04569457,-0.1057024;-0.2921734;-0.00546103,-0.1051707;-0.5861693;0.05425631,-0.1074292;-0.614332;-0.008077383,0.0007240028;0.3991226;0.02543371,0;0;0,0.002046339;0.1994209;0.01507038,0.005201744;0.4992145;0.02413436,0.1220873;0.3812303;0.01111459,0.1693068;0.187803;0.02998735,0.2052834;-0.05886188;0.01095739,-0.1003878;0.3656778;-0.02474052,-0.1500173;0.244949;-0.176271,-0.1875183;0.1062902;-0.3808863,0.07756615;0.003803887;-0.01920996,0.08541188;-0.2954239;0.0008193105,0.0730048;-0.5890402;0.06111479,0.08466782;-0.6203278;0.004050761,-0.06198284;0.004127872;-0.05040921,-0.1004609;-0.2897142;-0.00375824,-0.1007923;-0.5842081;0.05345366,-0.1053507;-0.6099655;-0.01166193,0.004120127;0.399221;0.02376658,35.75352
-0;0;0,0.0004834523;0.1993521;0.0160779,0.0008352733;0.4991564;0.02526701,0.1160588;0.3782124;-0.0007595606,0.169309;0.1863114;0.01763752,0.1971482;-0.05848016;-0.02481324,-0.1071858;0.3688311;-0.01794796,-0.166336;0.1857619;-0.07260096,-0.205658;0.00887087;-0.2448314,0.07568464;0.00570418;-0.02528432,0.08095738;-0.2936851;-0.006893078,0.06732056;-0.5859987;0.05918911,0.07745528;-0.6164277;0.0006361492,-0.06564248;0.002418568;-0.04566416,-0.1056181;-0.2921783;-0.005481649,-0.1051142;-0.586187;0.05417242,-0.1077448;-0.6145364;-0.007911809,0.0007215776;0.3991571;0.02490437,0;0;0,0.002046339;0.1994209;0.01507038,0.005201744;0.4992145;0.02413436,0.1220873;0.3812303;0.01111459,0.1693068;0.187803;0.02998735,0.2052834;-0.05886188;0.01095739,-0.1003878;0.3656778;-0.02474052,-0.1500173;0.244949;-0.176271,-0.1875183;0.1062902;-0.3808863,0.07756615;0.003803887;-0.01920996,0.08541188;-0.2954239;0.0008193105,0.0730048;-0.5890402;0.06111479,0.08466782;-0.6203278;0.004050761,-0.06198284;0.004127872;-0.05040921,-0.1004609;-0.2897142;-0.00375824,-0.1007923;-0.5842081;0.05345366,-0.1053507;-0.6099655;-0.01166193,0.004120127;0.399221;0.02376658,35.76512
-0;0;0,0.0004834523;0.1993521;0.0160779,0.0008352733;0.4991564;0.02526701,0.1160588;0.3782124;-0.0007595606,0.169309;0.1863114;0.01763752,0.1971482;-0.05848016;-0.02481324,-0.1071858;0.3688311;-0.01794796,-0.166336;0.1857619;-0.07260096,-0.205658;0.00887087;-0.2448314,0.07568464;0.00570418;-0.02528432,0.08095738;-0.2936851;-0.006893078,0.06732056;-0.5859987;0.05918911,0.07745528;-0.6164277;0.0006361492,-0.06564248;0.002418568;-0.04566416,-0.1056181;-0.2921783;-0.005481649,-0.1051142;-0.586187;0.05417242,-0.1077448;-0.6145364;-0.007911809,0.0007215776;0.3991571;0.02490437,0;0;0,0.002046339;0.1994209;0.01507038,0.005201744;0.4992145;0.02413436,0.1220873;0.3812303;0.01111459,0.1693068;0.187803;0.02998735,0.2052834;-0.05886188;0.01095739,-0.1003878;0.3656778;-0.02474052,-0.1500173;0.244949;-0.176271,-0.1875183;0.1062902;-0.3808863,0.07756615;0.003803887;-0.01920996,0.08541188;-0.2954239;0.0008193105,0.0730048;-0.5890402;0.06111479,0.08466782;-0.6203278;0.004050761,-0.06198284;0.004127872;-0.05040921,-0.1004609;-0.2897142;-0.00375824,-0.1007923;-0.5842081;0.05345366,-0.1053507;-0.6099655;-0.01166193,0.004120127;0.399221;0.02376658,35.77602
-0;0;0,0.0004834523;0.1993521;0.0160779,0.0008352733;0.4991564;0.02526701,0.1160588;0.3782124;-0.0007595606,0.169309;0.1863114;0.01763752,0.1971482;-0.05848016;-0.02481324,-0.1071858;0.3688311;-0.01794796,-0.166336;0.1857619;-0.07260096,-0.205658;0.00887087;-0.2448314,0.07568464;0.00570418;-0.02528432,0.08095738;-0.2936851;-0.006893078,0.06732056;-0.5859987;0.05918911,0.07745528;-0.6164277;0.0006361492,-0.06564248;0.002418568;-0.04566416,-0.1056181;-0.2921783;-0.005481649,-0.1051142;-0.586187;0.05417242,-0.1077448;-0.6145364;-0.007911809,0.0007215776;0.3991571;0.02490437,0;0;0,0.001980467;0.1994313;0.01494061,0.004914556;0.4992361;0.02368725,0.1219233;0.3813466;0.01098293,0.1693044;0.1879556;0.02982395,0.2053387;-0.05871116;0.01092895,-0.101047;0.3658416;-0.02416858,-0.1513142;0.2414877;-0.172524,-0.1892513;0.1036088;-0.3775854,0.07754331;0.003875546;-0.01928769,0.08537766;-0.2953474;0.0008185338,0.07287172;-0.5889596;0.0611133,0.08457023;-0.6203527;0.004207101,-0.06202078;0.004072819;-0.05036699,-0.1004888;-0.2897671;-0.003694847,-0.1010176;-0.5842233;0.05370969,-0.1030458;-0.6103687;-0.01108055,0.003920456;0.3992413;0.02343706,35.78738
-0;0;0,0.0004176466;0.1993747;0.01579756,0.0007402832;0.4992013;0.0241943,0.1159616;0.3782882;-0.001564622,0.1692949;0.1863678;0.01638241,0.1971997;-0.05856647;-0.02519335,-0.1073432;0.3691343;-0.01876664,-0.1650957;0.1844751;-0.06941875,-0.205877;0.002543285;-0.2359651,0.07566584;0.005745982;-0.0253311,0.08103426;-0.2936436;-0.006971402,0.06746832;-0.5859484;0.05916378,0.07704142;-0.6155348;-0.0006222017,-0.06565484;0.002397625;-0.04564749,-0.1054974;-0.2922304;-0.005561452,-0.1049085;-0.5861753;0.0544056,-0.1070638;-0.6152772;-0.006735604,0.0006231821;0.3992014;0.02411959,0;0;0,0.001980467;0.1994313;0.01494061,0.004914556;0.4992361;0.02368725,0.1219233;0.3813466;0.01098293,0.1693044;0.1879556;0.02982395,0.2053387;-0.05871116;0.01092895,-0.101047;0.3658416;-0.02416858,-0.1513142;0.2414877;-0.172524,-0.1892513;0.1036088;-0.3775854,0.07754331;0.003875546;-0.01928769,0.08537766;-0.2953474;0.0008185338,0.07287172;-0.5889596;0.0611133,0.08457023;-0.6203527;0.004207101,-0.06202078;0.004072819;-0.05036699,-0.1004888;-0.2897671;-0.003694847,-0.1010176;-0.5842233;0.05370969,-0.1030458;-0.6103687;-0.01108055,0.003920456;0.3992413;0.02343706,35.79855
-0;0;0,0.0004176466;0.1993747;0.01579756,0.0007402832;0.4992013;0.0241943,0.1159616;0.3782882;-0.001564622,0.1692949;0.1863678;0.01638241,0.1971997;-0.05856647;-0.02519335,-0.1073432;0.3691343;-0.01876664,-0.1650957;0.1844751;-0.06941875,-0.205877;0.002543285;-0.2359651,0.07566584;0.005745982;-0.0253311,0.08103426;-0.2936436;-0.006971402,0.06746832;-0.5859484;0.05916378,0.07704142;-0.6155348;-0.0006222017,-0.06565484;0.002397625;-0.04564749,-0.1054974;-0.2922304;-0.005561452,-0.1049085;-0.5861753;0.0544056,-0.1070638;-0.6152772;-0.006735604,0.0006231821;0.3992014;0.02411959,0;0;0,0.001980467;0.1994313;0.01494061,0.004914556;0.4992361;0.02368725,0.1219233;0.3813466;0.01098293,0.1693044;0.1879556;0.02982395,0.2053387;-0.05871116;0.01092895,-0.101047;0.3658416;-0.02416858,-0.1513142;0.2414877;-0.172524,-0.1892513;0.1036088;-0.3775854,0.07754331;0.003875546;-0.01928769,0.08537766;-0.2953474;0.0008185338,0.07287172;-0.5889596;0.0611133,0.08457023;-0.6203527;0.004207101,-0.06202078;0.004072819;-0.05036699,-0.1004888;-0.2897671;-0.003694847,-0.1010176;-0.5842233;0.05370969,-0.1030458;-0.6103687;-0.01108055,0.003920456;0.3992413;0.02343706,35.82083
-0;0;0,0.0003020654;0.1994121;0.01532049,0.0006291667;0.4992501;0.02334479,0.1158233;0.3789041;-0.002835495,0.1690584;0.1869777;0.01533739,0.19746;-0.05795792;-0.02589259,-0.1077176;0.3684663;-0.01836517,-0.1652663;0.1830828;-0.06654299,-0.2065379;-0.008872107;-0.2213008,0.07546567;0.005805976;-0.02590797,0.08121967;-0.2935413;-0.006983662,0.06764234;-0.5858684;0.0590503,0.0779829;-0.6164364;0.0007247441,-0.06578176;0.002364762;-0.0454661,-0.1054705;-0.2922885;-0.005412482,-0.1046996;-0.5862356;0.05454153,-0.1083203;-0.6136663;-0.008635845,0.0004995123;0.3992502;0.02336504,0;0;0,0.00181429;0.1994404;0.01483968,0.004320356;0.4992548;0.02338324,0.1216472;0.3819687;0.01135186,0.1690092;0.1885488;0.02994158,0.2053548;-0.05799285;0.01003633,-0.1019462;0.366343;-0.02369069,-0.1522745;0.2391142;-0.169567,-0.191081;0.09568922;-0.3706225,0.07740323;0.00394538;-0.01982861,0.0850851;-0.2952416;0.0008637905,0.07249518;-0.5888265;0.06127371,0.08424447;-0.620047;0.004131913,-0.06217493;0.004051264;-0.05017833,-0.1005253;-0.2898342;-0.003696084,-0.1013751;-0.5843315;0.05349307,-0.1034105;-0.6103612;-0.0114326,0.0034924;0.3992583;0.02320577,35.8321
-0;0;0,0.0003020654;0.1994121;0.01532049,0.0006291667;0.4992501;0.02334479,0.1158233;0.3789041;-0.002835495,0.1690584;0.1869777;0.01533739,0.19746;-0.05795792;-0.02589259,-0.1077176;0.3684663;-0.01836517,-0.1652663;0.1830828;-0.06654299,-0.2065379;-0.008872107;-0.2213008,0.07546567;0.005805976;-0.02590797,0.08121967;-0.2935413;-0.006983662,0.06764234;-0.5858684;0.0590503,0.0779829;-0.6164364;0.0007247441,-0.06578176;0.002364762;-0.0454661,-0.1054705;-0.2922885;-0.005412482,-0.1046996;-0.5862356;0.05454153,-0.1083203;-0.6136663;-0.008635845,0.0004995123;0.3992502;0.02336504,0;0;0,0.00181429;0.1994404;0.01483968,0.004320356;0.4992548;0.02338324,0.1216472;0.3819687;0.01135186,0.1690092;0.1885488;0.02994158,0.2053548;-0.05799285;0.01003633,-0.1019462;0.366343;-0.02369069,-0.1522745;0.2391142;-0.169567,-0.191081;0.09568922;-0.3706225,0.07740323;0.00394538;-0.01982861,0.0850851;-0.2952416;0.0008637905,0.07249518;-0.5888265;0.06127371,0.08424447;-0.620047;0.004131913,-0.06217493;0.004051264;-0.05017833,-0.1005253;-0.2898342;-0.003696084,-0.1013751;-0.5843315;0.05349307,-0.1034105;-0.6103612;-0.0114326,0.0034924;0.3992583;0.02320577,35.84348
-0;0;0,0.0001933262;0.199438;0.01498192,0.0004436448;0.4992835;0.02275084,0.1155314;0.3792102;-0.004119923,0.1688295;0.1873112;0.01415834,0.197712;-0.05776823;-0.02586511,-0.1080816;0.3682486;-0.01818406,-0.165595;0.1821017;-0.06336737,-0.2073159;-0.009511352;-0.218428,0.07525726;0.005776826;-0.02651364,0.08114493;-0.2935216;-0.006872185,0.06759984;-0.585855;0.05914079,0.07844275;-0.6161483;0.0005283505,-0.06588045;0.002385495;-0.04532191,-0.1053544;-0.292304;-0.005323108,-0.1046596;-0.5862125;0.05482132,-0.1090642;-0.6161378;-0.005116466,0.0003344466;0.3992836;0.02283783,0;0;0,0.00181429;0.1994404;0.01483968,0.004320356;0.4992548;0.02338324,0.1216472;0.3819687;0.01135186,0.1690092;0.1885488;0.02994158,0.2053548;-0.05799285;0.01003633,-0.1019462;0.366343;-0.02369069,-0.1522745;0.2391142;-0.169567,-0.191081;0.09568922;-0.3706225,0.07740323;0.00394538;-0.01982861,0.0850851;-0.2952416;0.0008637905,0.07249518;-0.5888265;0.06127371,0.08424447;-0.620047;0.004131913,-0.06217493;0.004051264;-0.05017833,-0.1005253;-0.2898342;-0.003696084,-0.1013751;-0.5843315;0.05349307,-0.1034105;-0.6103612;-0.0114326,0.0034924;0.3992583;0.02320577,35.86675
-0;0;0,0.0001933262;0.199438;0.01498192,0.0004436448;0.4992835;0.02275084,0.1155314;0.3792102;-0.004119923,0.1688295;0.1873112;0.01415834,0.197712;-0.05776823;-0.02586511,-0.1080816;0.3682486;-0.01818406,-0.165595;0.1821017;-0.06336737,-0.2073159;-0.009511352;-0.218428,0.07525726;0.005776826;-0.02651364,0.08114493;-0.2935216;-0.006872185,0.06759984;-0.585855;0.05914079,0.07844275;-0.6161483;0.0005283505,-0.06588045;0.002385495;-0.04532191,-0.1053544;-0.292304;-0.005323108,-0.1046596;-0.5862125;0.05482132,-0.1090642;-0.6161378;-0.005116466,0.0003344466;0.3992836;0.02283783,0;0;0,0.001780005;0.1994454;0.01477741,0.004257893;0.4992626;0.02322675,0.1214625;0.3815309;0.01060881,0.169009;0.1882008;0.02965637,0.2054823;-0.05829136;0.009375062,-0.1022993;0.3665057;-0.02325037,-0.1513862;0.235114;-0.1658221,-0.1938063;0.08972855;-0.3647282,0.07737935;0.003993222;-0.01991205,0.0848832;-0.2952067;0.0006579105,0.07226834;-0.5887291;0.06136581,0.08410596;-0.6197755;0.003995378,-0.06224098;0.004011755;-0.05009956,-0.1006342;-0.2899116;-0.003892981,-0.1016205;-0.5843699;0.05349473,-0.1035788;-0.6099826;-0.01191848,0.003437348;0.3992661;0.02308001,35.8779
-0;0;0,0.0003228168;0.1994363;0.01500196,0.001517689;0.4992709;0.02318567,0.1157971;0.3787913;-0.005246604,0.1694484;0.1869565;0.01266813,0.198521;-0.05833031;-0.02592162,-0.1073325;0.3688639;-0.01863594,-0.1643477;0.1814316;-0.05886525,-0.2066875;-0.01658958;-0.2054768,0.07519889;0.005832721;-0.02666658,0.08119129;-0.2934573;-0.006928869,0.06775128;-0.5857993;0.05906752,0.07789654;-0.6167198;0.001197487,-0.06602275;0.0022934;-0.04511915,-0.105351;-0.2924645;-0.005482264,-0.1056374;-0.5862228;0.05539481,-0.1005883;-0.5537722;-0.04292369,0.0009991687;0.3992723;0.02307233,0;0;0,0.001780005;0.1994454;0.01477741,0.004257893;0.4992626;0.02322675,0.1214625;0.3815309;0.01060881,0.169009;0.1882008;0.02965637,0.2054823;-0.05829136;0.009375062,-0.1022993;0.3665057;-0.02325037,-0.1513862;0.235114;-0.1658221,-0.1938063;0.08972855;-0.3647282,0.07737935;0.003993222;-0.01991205,0.0848832;-0.2952067;0.0006579105,0.07226834;-0.5887291;0.06136581,0.08410596;-0.6197755;0.003995378,-0.06224098;0.004011755;-0.05009956,-0.1006342;-0.2899116;-0.003892981,-0.1016205;-0.5843699;0.05349473,-0.1035788;-0.6099826;-0.01191848,0.003437348;0.3992661;0.02308001,35.89999
-0;0;0,0.0003228168;0.1994363;0.01500196,0.001517689;0.4992709;0.02318567,0.1157971;0.3787913;-0.005246604,0.1694484;0.1869565;0.01266813,0.198521;-0.05833031;-0.02592162,-0.1073325;0.3688639;-0.01863594,-0.1643477;0.1814316;-0.05886525,-0.2066875;-0.01658958;-0.2054768,0.07519889;0.005832721;-0.02666658,0.08119129;-0.2934573;-0.006928869,0.06775128;-0.5857993;0.05906752,0.07789654;-0.6167198;0.001197487,-0.06602275;0.0022934;-0.04511915,-0.105351;-0.2924645;-0.005482264,-0.1056374;-0.5862228;0.05539481,-0.1005883;-0.5537722;-0.04292369,0.0009991687;0.3992723;0.02307233,0;0;0,0.001780005;0.1994454;0.01477741,0.004257893;0.4992626;0.02322675,0.1214625;0.3815309;0.01060881,0.169009;0.1882008;0.02965637,0.2054823;-0.05829136;0.009375062,-0.1022993;0.3665057;-0.02325037,-0.1513862;0.235114;-0.1658221,-0.1938063;0.08972855;-0.3647282,0.07737935;0.003993222;-0.01991205,0.0848832;-0.2952067;0.0006579105,0.07226834;-0.5887291;0.06136581,0.08410596;-0.6197755;0.003995378,-0.06224098;0.004011755;-0.05009956,-0.1006342;-0.2899116;-0.003892981,-0.1016205;-0.5843699;0.05349473,-0.1035788;-0.6099826;-0.01191848,0.003437348;0.3992661;0.02308001,35.91124
-0;0;0,-4.048023E-05;0.1994776;0.01444595,-0.0001538871;0.4993515;0.02093895,0.1147023;0.378993;-0.006766338,0.1685833;0.1872314;0.01124195,0.198091;-0.05823389;-0.02585394,-0.1087435;0.3692901;-0.01971982,-0.1647619;0.181103;-0.05776633,-0.208284;-0.02120203;-0.1980464,0.07506318;0.005870035;-0.02703815,0.08120663;-0.2934011;-0.007061806,0.06774402;-0.5857228;0.05901968,0.07814912;-0.6176663;0.002654865,-0.06613514;0.002220456;-0.04495789,-0.1053902;-0.2925692;-0.005485017,-0.1056609;-0.5863227;0.05541544,-0.1008719;-0.5539206;-0.04290739,-0.000129599;0.3993531;0.02150198,0;0;0,0.001728018;0.1994471;0.01476009,0.004045532;0.4992672;0.02315638,0.121309;0.3816263;0.01037181,0.1689363;0.1883137;0.02939512,0.2057277;-0.05814186;0.009244652,-0.1027831;0.3668087;-0.02274237,-0.1523669;0.2337968;-0.1636299,-0.19647;0.07780384;-0.3539483,0.07735179;0.003960929;-0.02002528,0.08480023;-0.2952291;0.0007069428,0.07220754;-0.5887445;0.06145344,0.08397905;-0.6200897;0.004493933,-0.06228095;0.004026706;-0.05004866,-0.1007288;-0.289904;-0.003934603,-0.1012511;-0.584339;0.05357849,-0.1042199;-0.6103733;-0.01130586,0.003289711;0.3992701;0.02302684,35.93272
-0;0;0,-4.048023E-05;0.1994776;0.01444595,-0.0001538871;0.4993515;0.02093895,0.1147023;0.378993;-0.006766338,0.1685833;0.1872314;0.01124195,0.198091;-0.05823389;-0.02585394,-0.1087435;0.3692901;-0.01971982,-0.1647619;0.181103;-0.05776633,-0.208284;-0.02120203;-0.1980464,0.07506318;0.005870035;-0.02703815,0.08120663;-0.2934011;-0.007061806,0.06774402;-0.5857228;0.05901968,0.07814912;-0.6176663;0.002654865,-0.06613514;0.002220456;-0.04495789,-0.1053902;-0.2925692;-0.005485017,-0.1056609;-0.5863227;0.05541544,-0.1008719;-0.5539206;-0.04290739,-0.000129599;0.3993531;0.02150198,0;0;0,0.001728018;0.1994471;0.01476009,0.004045532;0.4992672;0.02315638,0.121309;0.3816263;0.01037181,0.1689363;0.1883137;0.02939512,0.2057277;-0.05814186;0.009244652,-0.1027831;0.3668087;-0.02274237,-0.1523669;0.2337968;-0.1636299,-0.19647;0.07780384;-0.3539483,0.07735179;0.003960929;-0.02002528,0.08480023;-0.2952291;0.0007069428,0.07220754;-0.5887445;0.06145344,0.08397905;-0.6200897;0.004493933,-0.06228095;0.004026706;-0.05004866,-0.1007288;-0.289904;-0.003934603,-0.1012511;-0.584339;0.05357849,-0.1042199;-0.6103733;-0.01130586,0.003289711;0.3992701;0.02302684,35.95475
-0;0;0,-0.0002181408;0.199519;0.01386098,-0.0005155459;0.4994072;0.01970239,0.11435;0.378934;-0.007904235,0.1681172;0.1870823;0.009474143,0.1979634;-0.05866231;-0.02543731,-0.1094219;0.3688406;-0.01939161,-0.1654917;0.1803797;-0.05597922,-0.2103216;-0.02474356;-0.1916802,0.07482221;0.005889831;-0.0276938,0.08126675;-0.2933224;-0.0069454,0.06787705;-0.5856296;0.05921511,0.07898878;-0.6173488;0.002659753,-0.06627848;0.00224218;-0.04474522,-0.1053464;-0.2925839;-0.005359236,-0.105706;-0.5863343;0.05555544,-0.105685;-0.6171147;-0.003389772,-0.0004380179;0.39941;0.02045833,0;0;0,0.001728018;0.1994471;0.01476009,0.004045532;0.4992672;0.02315638,0.121309;0.3816263;0.01037181,0.1689363;0.1883137;0.02939512,0.2057277;-0.05814186;0.009244652,-0.1027831;0.3668087;-0.02274237,-0.1523669;0.2337968;-0.1636299,-0.19647;0.07780384;-0.3539483,0.07735179;0.003960929;-0.02002528,0.08480023;-0.2952291;0.0007069428,0.07220754;-0.5887445;0.06145344,0.08397905;-0.6200897;0.004493933,-0.06228095;0.004026706;-0.05004866,-0.1007288;-0.289904;-0.003934603,-0.1012511;-0.584339;0.05357849,-0.1042199;-0.6103733;-0.01130586,0.003289711;0.3992701;0.02302684,35.96599
-0;0;0,-0.0002181408;0.199519;0.01386098,-0.0005155459;0.4994072;0.01970239,0.11435;0.378934;-0.007904235,0.1681172;0.1870823;0.009474143,0.1979634;-0.05866231;-0.02543731,-0.1094219;0.3688406;-0.01939161,-0.1654917;0.1803797;-0.05597922,-0.2103216;-0.02474356;-0.1916802,0.07482221;0.005889831;-0.0276938,0.08126675;-0.2933224;-0.0069454,0.06787705;-0.5856296;0.05921511,0.07898878;-0.6173488;0.002659753,-0.06627848;0.00224218;-0.04474522,-0.1053464;-0.2925839;-0.005359236,-0.105706;-0.5863343;0.05555544,-0.105685;-0.6171147;-0.003389772,-0.0004380179;0.39941;0.02045833,0;0;0,0.001648225;0.1994434;0.0148199,0.003906518;0.4992597;0.02336739,0.1210621;0.381706;0.009336591,0.1697158;0.188627;0.02813364,0.2060137;-0.05802101;0.009499656,-0.1026436;0.3665;-0.02298181,-0.153934;0.2297742;-0.1596396,-0.1969543;0.07140326;-0.3482341,0.07732342;0.00393696;-0.02013919,0.08460164;-0.2952294;0.0009924844,0.07196053;-0.5887235;0.06183178,0.08346394;-0.6189389;0.003238678,-0.06241382;0.004065442;-0.04987973,-0.1008838;-0.2898504;-0.003689427,-0.1014806;-0.5842571;0.05396728,-0.1045638;-0.6079381;-0.01357238,0.003163881;0.3992626;0.02318508,35.97746
-0;0;0,-0.0004322001;0.1995567;0.01330212,-0.001077414;0.4994604;0.01822698,0.1140222;0.379096;-0.008671755,0.1680752;0.1872963;0.008391472,0.1979008;-0.05862015;-0.02530578,-0.1102782;0.3687783;-0.01931142,-0.1665007;0.1800913;-0.05447176,-0.2123378;-0.02923317;-0.1832437,0.07469882;0.005826295;-0.02803818,0.08133018;-0.2933506;-0.00684399,0.06798869;-0.5857024;0.05912936,0.07869533;-0.617511;0.002625339,-0.06635265;0.002281294;-0.04463318,-0.1053046;-0.2925736;-0.005347658,-0.1059259;-0.5863069;0.05564717,-0.1057883;-0.6161196;-0.004601579,-0.0008813747;0.3994663;0.01929651,0;0;0,0.001648225;0.1994434;0.0148199,0.003906518;0.4992597;0.02336739,0.1210621;0.381706;0.009336591,0.1697158;0.188627;0.02813364,0.2060137;-0.05802101;0.009499656,-0.1026436;0.3665;-0.02298181,-0.153934;0.2297742;-0.1596396,-0.1969543;0.07140326;-0.3482341,0.07732342;0.00393696;-0.02013919,0.08460164;-0.2952294;0.0009924844,0.07196053;-0.5887235;0.06183178,0.08346394;-0.6189389;0.003238678,-0.06241382;0.004065442;-0.04987973,-0.1008838;-0.2898504;-0.003689427,-0.1014806;-0.5842571;0.05396728,-0.1045638;-0.6079381;-0.01357238,0.003163881;0.3992626;0.02318508,35.99923
-0;0;0,-0.0004322001;0.1995567;0.01330212,-0.001077414;0.4994604;0.01822698,0.1140222;0.379096;-0.008671755,0.1680752;0.1872963;0.008391472,0.1979008;-0.05862015;-0.02530578,-0.1102782;0.3687783;-0.01931142,-0.1665007;0.1800913;-0.05447176,-0.2123378;-0.02923317;-0.1832437,0.07469882;0.005826295;-0.02803818,0.08133018;-0.2933506;-0.00684399,0.06798869;-0.5857024;0.05912936,0.07869533;-0.617511;0.002625339,-0.06635265;0.002281294;-0.04463318,-0.1053046;-0.2925736;-0.005347658,-0.1059259;-0.5863069;0.05564717,-0.1057883;-0.6161196;-0.004601579,-0.0008813747;0.3994663;0.01929651,0;0;0,0.001648225;0.1994434;0.0148199,0.003906518;0.4992597;0.02336739,0.1210621;0.381706;0.009336591,0.1697158;0.188627;0.02813364,0.2060137;-0.05802101;0.009499656,-0.1026436;0.3665;-0.02298181,-0.153934;0.2297742;-0.1596396,-0.1969543;0.07140326;-0.3482341,0.07732342;0.00393696;-0.02013919,0.08460164;-0.2952294;0.0009924844,0.07196053;-0.5887235;0.06183178,0.08346394;-0.6189389;0.003238678,-0.06241382;0.004065442;-0.04987973,-0.1008838;-0.2898504;-0.003689427,-0.1014806;-0.5842571;0.05396728,-0.1045638;-0.6079381;-0.01357238,0.003163881;0.3992626;0.02318508,36.02171
-0;0;0,-0.000453924;0.1995791;0.0129616,-0.001042809;0.4994867;0.01770343,0.1137745;0.3791642;-0.01022457,0.1681835;0.1875059;0.007289654,0.1985124;-0.058505;-0.0252497,-0.1105026;0.3684473;-0.01883287,-0.1665056;0.1795402;-0.05315175,-0.2138616;-0.03284577;-0.1762355,0.07420252;0.00579382;-0.02933288,0.08109263;-0.2932699;-0.006673336,0.06783526;-0.5856363;0.05925197,0.077168;-0.616443;0.001086988,-0.06660014;0.002294604;-0.04426235,-0.1053544;-0.2926373;-0.005361121,-0.1061046;-0.58628;0.05606676,-0.1052925;-0.6163099;-0.003887866,-0.00087119;0.399493;0.01881161,0;0;0,0.001753567;0.199448;0.01474475,0.004451313;0.4992663;0.02309269,0.1213389;0.3813518;0.008888635,0.1700924;0.1883279;0.02799001,0.2064312;-0.05829105;0.00905313,-0.1022865;0.3662261;-0.0229794,-0.1553368;0.2255164;-0.1548371,-0.1988961;0.06396915;-0.3405925,0.07723098;0.003957937;-0.02048683,0.08436836;-0.2951896;0.0009564273,0.07125795;-0.588573;0.06222874,0.08410409;-0.6177894;0.002565295,-0.062534;0.004004527;-0.04973392,-0.1010913;-0.2899271;-0.00371746,-0.1014938;-0.5842889;0.05417033,-0.104908;-0.6080951;-0.01321651,0.003523967;0.3992706;0.0229794,36.03276
-0;0;0,-0.000453924;0.1995791;0.0129616,-0.001042809;0.4994867;0.01770343,0.1137745;0.3791642;-0.01022457,0.1681835;0.1875059;0.007289654,0.1985124;-0.058505;-0.0252497,-0.1105026;0.3684473;-0.01883287,-0.1665056;0.1795402;-0.05315175,-0.2138616;-0.03284577;-0.1762355,0.07420252;0.00579382;-0.02933288,0.08109263;-0.2932699;-0.006673336,0.06783526;-0.5856363;0.05925197,0.077168;-0.616443;0.001086988,-0.06660014;0.002294604;-0.04426235,-0.1053544;-0.2926373;-0.005361121,-0.1061046;-0.58628;0.05606676,-0.1052925;-0.6163099;-0.003887866,-0.00087119;0.399493;0.01881161,0;0;0,0.001753567;0.199448;0.01474475,0.004451313;0.4992663;0.02309269,0.1213389;0.3813518;0.008888635,0.1700924;0.1883279;0.02799001,0.2064312;-0.05829105;0.00905313,-0.1022865;0.3662261;-0.0229794,-0.1553368;0.2255164;-0.1548371,-0.1988961;0.06396915;-0.3405925,0.07723098;0.003957937;-0.02048683,0.08436836;-0.2951896;0.0009564273,0.07125795;-0.588573;0.06222874,0.08410409;-0.6177894;0.002565295,-0.062534;0.004004527;-0.04973392,-0.1010913;-0.2899271;-0.00371746,-0.1014938;-0.5842889;0.05417033,-0.104908;-0.6080951;-0.01321651,0.003523967;0.3992706;0.0229794,36.05524
-0;0;0,-0.0004620116;0.199604;0.01257135,-0.0009520969;0.4995188;0.01687612,0.1138137;0.379161;-0.01092998,0.1679256;0.1874089;0.006478203,0.1985926;-0.05870922;-0.02491268,-0.110601;0.3687306;-0.01929522,-0.1659632;0.1791321;-0.05071919,-0.2151589;-0.03849065;-0.1635026,0.07407665;0.005885639;-0.0296312,0.08127288;-0.2931537;-0.006746566,0.06799024;-0.585452;0.05947495,0.07723206;-0.6162909;0.001340158,-0.06671851;0.002277747;-0.04408459,-0.1052916;-0.2927052;-0.005391203,-0.1060703;-0.5863269;0.05613692,-0.1070603;-0.6163525;-0.003820784,-0.0008214567;0.3995266;0.01812218,0;0;0,0.001753567;0.199448;0.01474475,0.004451313;0.4992663;0.02309269,0.1213389;0.3813518;0.008888635,0.1700924;0.1883279;0.02799001,0.2064312;-0.05829105;0.00905313,-0.1022865;0.3662261;-0.0229794,-0.1553368;0.2255164;-0.1548371,-0.1988961;0.06396915;-0.3405925,0.07723098;0.003957937;-0.02048683,0.08436836;-0.2951896;0.0009564273,0.07125795;-0.588573;0.06222874,0.08410409;-0.6177894;0.002565295,-0.062534;0.004004527;-0.04973392,-0.1010913;-0.2899271;-0.00371746,-0.1014938;-0.5842889;0.05417033,-0.104908;-0.6080951;-0.01321651,0.003523967;0.3992706;0.0229794,36.06638
-0;0;0,-0.0004620116;0.199604;0.01257135,-0.0009520969;0.4995188;0.01687612,0.1138137;0.379161;-0.01092998,0.1679256;0.1874089;0.006478203,0.1985926;-0.05870922;-0.02491268,-0.110601;0.3687306;-0.01929522,-0.1659632;0.1791321;-0.05071919,-0.2151589;-0.03849065;-0.1635026,0.07407665;0.005885639;-0.0296312,0.08127288;-0.2931537;-0.006746566,0.06799024;-0.585452;0.05947495,0.07723206;-0.6162909;0.001340158,-0.06671851;0.002277747;-0.04408459,-0.1052916;-0.2927052;-0.005391203,-0.1060703;-0.5863269;0.05613692,-0.1070603;-0.6163525;-0.003820784,-0.0008214567;0.3995266;0.01812218,0;0;0,0.001897113;0.1994518;0.01467587,0.005073838;0.4992705;0.02283338,0.1217818;0.3811033;0.009170649,0.1704682;0.1880447;0.028092,0.2068114;-0.0585102;0.008347796,-0.1019175;0.366084;-0.02293515,-0.154898;0.2218277;-0.150932,-0.201414;0.05544224;-0.331631,0.07712656;0.004020188;-0.02086457,0.08449992;-0.2951122;0.0007098652,0.07123438;-0.5884022;0.06239481,0.08393162;-0.6172695;0.002238948,-0.06262785;0.003935476;-0.04962119,-0.1011954;-0.290056;-0.003997292,-0.101637;-0.584348;0.05424417,-0.1052391;-0.6078923;-0.01341867,0.003949819;0.3992768;0.02278524,36.07766
-0;0;0,-0.0004620116;0.199604;0.01257135,-0.0009520969;0.4995188;0.01687612,0.1138137;0.379161;-0.01092998,0.1679256;0.1874089;0.006478203,0.1985926;-0.05870922;-0.02491268,-0.110601;0.3687306;-0.01929522,-0.1659632;0.1791321;-0.05071919,-0.2151589;-0.03849065;-0.1635026,0.07407665;0.005885639;-0.0296312,0.08127288;-0.2931537;-0.006746566,0.06799024;-0.585452;0.05947495,0.07723206;-0.6162909;0.001340158,-0.06671851;0.002277747;-0.04408459,-0.1052916;-0.2927052;-0.005391203,-0.1060703;-0.5863269;0.05613692,-0.1070603;-0.6163525;-0.003820784,-0.0008214567;0.3995266;0.01812218,0;0;0,0.001897113;0.1994518;0.01467587,0.005073838;0.4992705;0.02283338,0.1217818;0.3811033;0.009170649,0.1704682;0.1880447;0.028092,0.2068114;-0.0585102;0.008347796,-0.1019175;0.366084;-0.02293515,-0.154898;0.2218277;-0.150932,-0.201414;0.05544224;-0.331631,0.07712656;0.004020188;-0.02086457,0.08449992;-0.2951122;0.0007098652,0.07123438;-0.5884022;0.06239481,0.08393162;-0.6172695;0.002238948,-0.06262785;0.003935476;-0.04962119,-0.1011954;-0.290056;-0.003997292,-0.101637;-0.584348;0.05424417,-0.1052391;-0.6078923;-0.01341867,0.003949819;0.3992768;0.02278524,36.08875
-0;0;0,-0.0006004772;0.1996221;0.01227392,-0.001325149;0.4995413;0.01624608,0.1135196;0.3789995;-0.01133204,0.1675908;0.1872791;0.006545162,0.1981758;-0.05886739;-0.02470342,-0.1109992;0.3689875;-0.01969976,-0.1655087;0.1788126;-0.04906339,-0.2155519;-0.04180942;-0.1554664,0.07399303;0.006019856;-0.02981261,0.08136974;-0.2929874;-0.006569233,0.06815553;-0.5852696;0.05973689,0.07697324;-0.616182;0.001638439,-0.0668461;0.002193038;-0.04389521,-0.1052047;-0.2928273;-0.005273525,-0.1054894;-0.5863436;0.05675946,-0.1063073;-0.6170285;-0.00231069,-0.00111353;0.3995506;0.01759693,0;0;0,0.001897113;0.1994518;0.01467587,0.005073838;0.4992705;0.02283338,0.1217818;0.3811033;0.009170649,0.1704682;0.1880447;0.028092,0.2068114;-0.0585102;0.008347796,-0.1019175;0.366084;-0.02293515,-0.154898;0.2218277;-0.150932,-0.201414;0.05544224;-0.331631,0.07712656;0.004020188;-0.02086457,0.08449992;-0.2951122;0.0007098652,0.07123438;-0.5884022;0.06239481,0.08393162;-0.6172695;0.002238948,-0.06262785;0.003935476;-0.04962119,-0.1011954;-0.290056;-0.003997292,-0.101637;-0.584348;0.05424417,-0.1052391;-0.6078923;-0.01341867,0.003949819;0.3992768;0.02278524,36.11098
-0;0;0,-0.0006004772;0.1996221;0.01227392,-0.001325149;0.4995413;0.01624608,0.1135196;0.3789995;-0.01133204,0.1675908;0.1872791;0.006545162,0.1981758;-0.05886739;-0.02470342,-0.1109992;0.3689875;-0.01969976,-0.1655087;0.1788126;-0.04906339,-0.2155519;-0.04180942;-0.1554664,0.07399303;0.006019856;-0.02981261,0.08136974;-0.2929874;-0.006569233,0.06815553;-0.5852696;0.05973689,0.07697324;-0.616182;0.001638439,-0.0668461;0.002193038;-0.04389521,-0.1052047;-0.2928273;-0.005273525,-0.1054894;-0.5863436;0.05675946,-0.1063073;-0.6170285;-0.00231069,-0.00111353;0.3995506;0.01759693,0;0;0,0.001784586;0.1994576;0.01461166,0.004725775;0.499281;0.02267468,0.1214795;0.381236;0.008490639,0.1706934;0.1883533;0.02783648,0.2070438;-0.0582132;0.008250978,-0.1022051;0.3661;-0.02298856,-0.1554154;0.2187245;-0.1472831,-0.2033885;0.04735222;-0.3228682,0.07709989;0.004082869;-0.02095081,0.08433884;-0.29505;0.0006625894,0.07137915;-0.5883408;0.06240845,0.08348117;-0.617737;0.002828356,-0.06271951;0.003902472;-0.04950791,-0.1013581;-0.2900668;-0.003800873,-0.1018675;-0.5843633;0.05441689,-0.1054728;-0.6068375;-0.01439083,0.003694259;0.3992863;0.02266225,36.1222
-0;0;0,-0.0006619803;0.1996394;0.01198685,-0.001427566;0.4995614;0.01576265,0.1133244;0.3791542;-0.01226,0.1674093;0.1874218;0.005446676,0.1981034;-0.05890229;-0.02425692,-0.1111806;0.3691676;-0.01999764,-0.1648726;0.1784647;-0.04737557,-0.2156807;-0.04526092;-0.1467002,0.07390235;0.006071809;-0.03002621,0.08156042;-0.2928884;-0.006274147,0.06829704;-0.5851209;0.06024104,0.07704839;-0.6158403;0.001864761,-0.06701651;0.002215329;-0.04363346,-0.105249;-0.292855;-0.005269617,-0.1054439;-0.5863531;0.05685006,-0.1069022;-0.6170252;-0.002225127,-0.001205926;0.3995715;0.01716665,0;0;0,0.001784586;0.1994576;0.01461166,0.004725775;0.499281;0.02267468,0.1214795;0.381236;0.008490639,0.1706934;0.1883533;0.02783648,0.2070438;-0.0582132;0.008250978,-0.1022051;0.3661;-0.02298856,-0.1554154;0.2187245;-0.1472831,-0.2033885;0.04735222;-0.3228682,0.07709989;0.004082869;-0.02095081,0.08433884;-0.29505;0.0006625894,0.07137915;-0.5883408;0.06240845,0.08348117;-0.617737;0.002828356,-0.06271951;0.003902472;-0.04950791,-0.1013581;-0.2900668;-0.003800873,-0.1018675;-0.5843633;0.05441689,-0.1054728;-0.6068375;-0.01439083,0.003694259;0.3992863;0.02266225,36.13339
-0;0;0,-0.0006619803;0.1996394;0.01198685,-0.001427566;0.4995614;0.01576265,0.1133244;0.3791542;-0.01226,0.1674093;0.1874218;0.005446676,0.1981034;-0.05890229;-0.02425692,-0.1111806;0.3691676;-0.01999764,-0.1648726;0.1784647;-0.04737557,-0.2156807;-0.04526092;-0.1467002,0.07390235;0.006071809;-0.03002621,0.08156042;-0.2928884;-0.006274147,0.06829704;-0.5851209;0.06024104,0.07704839;-0.6158403;0.001864761,-0.06701651;0.002215329;-0.04363346,-0.105249;-0.292855;-0.005269617,-0.1054439;-0.5863531;0.05685006,-0.1069022;-0.6170252;-0.002225127,-0.001205926;0.3995715;0.01716665,0;0;0,0.001784586;0.1994576;0.01461166,0.004725775;0.499281;0.02267468,0.1214795;0.381236;0.008490639,0.1706934;0.1883533;0.02783648,0.2070438;-0.0582132;0.008250978,-0.1022051;0.3661;-0.02298856,-0.1554154;0.2187245;-0.1472831,-0.2033885;0.04735222;-0.3228682,0.07709989;0.004082869;-0.02095081,0.08433884;-0.29505;0.0006625894,0.07137915;-0.5883408;0.06240845,0.08348117;-0.617737;0.002828356,-0.06271951;0.003902472;-0.04950791,-0.1013581;-0.2900668;-0.003800873,-0.1018675;-0.5843633;0.05441689,-0.1054728;-0.6068375;-0.01439083,0.003694259;0.3992863;0.02266225,36.1448
-0;0;0,-0.0005957136;0.1996506;0.01180155,-0.001212625;0.4995763;0.01528781,0.1134874;0.3790415;-0.01252229,0.1672175;0.1871793;0.004855584,0.1977192;-0.05920102;-0.02457847,-0.1110839;0.3684986;-0.01961548,-0.1648275;0.1776763;-0.04604457,-0.2168964;-0.04816805;-0.139763,0.07396957;0.00617699;-0.02983867,0.08170629;-0.2928104;-0.006457152,0.06849706;-0.5849429;0.06050625,0.07716905;-0.6156929;0.002160441,-0.06705601;0.002159777;-0.04357554,-0.1050305;-0.2929318;-0.005118683,-0.105294;-0.5864056;0.05711499,-0.1026781;-0.5541264;-0.04126758,-0.001048328;0.3995878;0.01679365,0;0;0,0.001684931;0.1994687;0.01447017,0.004364454;0.4993013;0.02227095,0.1211466;0.3812036;0.007635945,0.1706231;0.188461;0.02769508,0.2071209;-0.05807218;0.007964347,-0.102602;0.3661519;-0.02299861,-0.1637005;0.1989809;-0.1142172,-0.2014801;0.04991494;-0.3113264,0.07698442;0.004108703;-0.02136629,0.083959;-0.2949916;0.0007778686,0.07103812;-0.5882614;0.06263161,0.08340741;-0.6175987;0.003027957,-0.06286342;0.003877147;-0.04932705,-0.1015778;-0.2901256;-0.003900524,-0.1021236;-0.584367;0.05459465,-0.1056067;-0.6058051;-0.01529433,0.003436174;0.3993057;0.02235259,36.16681
-0;0;0,-0.0005957136;0.1996506;0.01180155,-0.001212625;0.4995763;0.01528781,0.1134874;0.3790415;-0.01252229,0.1672175;0.1871793;0.004855584,0.1977192;-0.05920102;-0.02457847,-0.1110839;0.3684986;-0.01961548,-0.1648275;0.1776763;-0.04604457,-0.2168964;-0.04816805;-0.139763,0.07396957;0.00617699;-0.02983867,0.08170629;-0.2928104;-0.006457152,0.06849706;-0.5849429;0.06050625,0.07716905;-0.6156929;0.002160441,-0.06705601;0.002159777;-0.04357554,-0.1050305;-0.2929318;-0.005118683,-0.105294;-0.5864056;0.05711499,-0.1026781;-0.5541264;-0.04126758,-0.001048328;0.3995878;0.01679365,0;0;0,0.001684931;0.1994687;0.01447017,0.004364454;0.4993013;0.02227095,0.1211466;0.3812036;0.007635945,0.1706231;0.188461;0.02769508,0.2071209;-0.05807218;0.007964347,-0.102602;0.3661519;-0.02299861,-0.1637005;0.1989809;-0.1142172,-0.2014801;0.04991494;-0.3113264,0.07698442;0.004108703;-0.02136629,0.083959;-0.2949916;0.0007778686,0.07103812;-0.5882614;0.06263161,0.08340741;-0.6175987;0.003027957,-0.06286342;0.003877147;-0.04932705,-0.1015778;-0.2901256;-0.003900524,-0.1021236;-0.584367;0.05459465,-0.1056067;-0.6058051;-0.01529433,0.003436174;0.3993057;0.02235259,36.1788
-0;0;0,-0.0006448381;0.1996609;0.01162413,-0.001341216;0.4995893;0.01485815,0.1133056;0.3789514;-0.01310789,0.1670987;0.1871691;0.004944418,0.1973973;-0.05919795;-0.02480873,-0.1111494;0.3685096;-0.02006759,-0.1642365;0.1771276;-0.04361944,-0.2179742;-0.05081502;-0.131109,0.07402451;0.006244941;-0.02968794,0.08181018;-0.2927515;-0.006438578,0.06856596;-0.5848467;0.06068075,0.07737829;-0.6153262;0.001983311,-0.0670393;0.00209385;-0.04360444,-0.104803;-0.2930148;-0.005071208,-0.1050639;-0.5865271;0.05698094,-0.1024786;-0.5542648;-0.0413994,-0.001149783;0.3996021;0.01644735,0;0;0,0.001684931;0.1994687;0.01447017,0.004364454;0.4993013;0.02227095,0.1211466;0.3812036;0.007635945,0.1706231;0.188461;0.02769508,0.2071209;-0.05807218;0.007964347,-0.102602;0.3661519;-0.02299861,-0.1637005;0.1989809;-0.1142172,-0.2014801;0.04991494;-0.3113264,0.07698442;0.004108703;-0.02136629,0.083959;-0.2949916;0.0007778686,0.07103812;-0.5882614;0.06263161,0.08340741;-0.6175987;0.003027957,-0.06286342;0.003877147;-0.04932705,-0.1015778;-0.2901256;-0.003900524,-0.1021236;-0.584367;0.05459465,-0.1056067;-0.6058051;-0.01529433,0.003436174;0.3993057;0.02235259,36.20052
-0;0;0,-0.0006448381;0.1996609;0.01162413,-0.001341216;0.4995893;0.01485815,0.1133056;0.3789514;-0.01310789,0.1670987;0.1871691;0.004944418,0.1973973;-0.05919795;-0.02480873,-0.1111494;0.3685096;-0.02006759,-0.1642365;0.1771276;-0.04361944,-0.2179742;-0.05081502;-0.131109,0.07402451;0.006244941;-0.02968794,0.08181018;-0.2927515;-0.006438578,0.06856596;-0.5848467;0.06068075,0.07737829;-0.6153262;0.001983311,-0.0670393;0.00209385;-0.04360444,-0.104803;-0.2930148;-0.005071208,-0.1050639;-0.5865271;0.05698094,-0.1024786;-0.5542648;-0.0413994,-0.001149783;0.3996021;0.01644735,0;0;0,0.001639838;0.1994643;0.01453671,0.004271667;0.4992943;0.02244329,0.121119;0.3812291;0.008164776,0.1703389;0.188367;0.02770004,0.2068845;-0.05813277;0.007643215,-0.1027078;0.3661875;-0.02282692,-0.1635986;0.19865;-0.1135105,-0.2035726;0.0426652;-0.3047455,0.07692232;0.004212417;-0.02156878,0.08376048;-0.2948655;0.0009183325,0.07087829;-0.5881341;0.06278568,0.08278146;-0.6168252;0.00223789,-0.06297225;0.003832046;-0.04919158,-0.1017676;-0.2901608;-0.00376967,-0.1020619;-0.5842968;0.05525483,-0.1055713;-0.6072808;-0.01301685,0.003355997;0.3992985;0.02249558,36.22264
-0;0;0,-0.0007316215;0.1996723;0.0114211,-0.001576206;0.4996021;0.01450401,0.1132237;0.3792022;-0.01318748,0.1670552;0.1874282;0.004837289,0.1970047;-0.0589112;-0.02549307,-0.1115293;0.3682831;-0.01957175,-0.1645676;0.176783;-0.04225818,-0.2187566;-0.05383785;-0.1221178,0.07382365;0.006284295;-0.03017576,0.08171527;-0.2926421;-0.006077228,0.06853939;-0.5847399;0.06104375,0.07718372;-0.6152595;0.002376333,-0.06723844;0.002125775;-0.04329519,-0.1046666;-0.2930596;-0.005022775,-0.1048702;-0.5864859;0.057435,-0.1025453;-0.5542423;-0.04094846,-0.001333471;0.3996158;0.01613722,0;0;0,0.001639838;0.1994643;0.01453671,0.004271667;0.4992943;0.02244329,0.121119;0.3812291;0.008164776,0.1703389;0.188367;0.02770004,0.2068845;-0.05813277;0.007643215,-0.1027078;0.3661875;-0.02282692,-0.1635986;0.19865;-0.1135105,-0.2035726;0.0426652;-0.3047455,0.07692232;0.004212417;-0.02156878,0.08376048;-0.2948655;0.0009183325,0.07087829;-0.5881341;0.06278568,0.08278146;-0.6168252;0.00223789,-0.06297225;0.003832046;-0.04919158,-0.1017676;-0.2901608;-0.00376967,-0.1020619;-0.5842968;0.05525483,-0.1055713;-0.6072808;-0.01301685,0.003355997;0.3992985;0.02249558,36.23407
-0;0;0,-0.0007316215;0.1996723;0.0114211,-0.001576206;0.4996021;0.01450401,0.1132237;0.3792022;-0.01318748,0.1670552;0.1874282;0.004837289,0.1970047;-0.0589112;-0.02549307,-0.1115293;0.3682831;-0.01957175,-0.1645676;0.176783;-0.04225818,-0.2187566;-0.05383785;-0.1221178,0.07382365;0.006284295;-0.03017576,0.08171527;-0.2926421;-0.006077228,0.06853939;-0.5847399;0.06104375,0.07718372;-0.6152595;0.002376333,-0.06723844;0.002125775;-0.04329519,-0.1046666;-0.2930596;-0.005022775,-0.1048702;-0.5864859;0.057435,-0.1025453;-0.5542423;-0.04094846,-0.001333471;0.3996158;0.01613722,0;0;0,0.001639838;0.1994643;0.01453671,0.004271667;0.4992943;0.02244329,0.121119;0.3812291;0.008164776,0.1703389;0.188367;0.02770004,0.2068845;-0.05813277;0.007643215,-0.1027078;0.3661875;-0.02282692,-0.1635986;0.19865;-0.1135105,-0.2035726;0.0426652;-0.3047455,0.07692232;0.004212417;-0.02156878,0.08376048;-0.2948655;0.0009183325,0.07087829;-0.5881341;0.06278568,0.08278146;-0.6168252;0.00223789,-0.06297225;0.003832046;-0.04919158,-0.1017676;-0.2901608;-0.00376967,-0.1020619;-0.5842968;0.05525483,-0.1055713;-0.6072808;-0.01301685,0.003355997;0.3992985;0.02249558,36.24511
-0;0;0,-0.0007316215;0.1996723;0.0114211,-0.001576206;0.4996021;0.01450401,0.1132237;0.3792022;-0.01318748,0.1670552;0.1874282;0.004837289,0.1970047;-0.0589112;-0.02549307,-0.1115293;0.3682831;-0.01957175,-0.1645676;0.176783;-0.04225818,-0.2187566;-0.05383785;-0.1221178,0.07382365;0.006284295;-0.03017576,0.08171527;-0.2926421;-0.006077228,0.06853939;-0.5847399;0.06104375,0.07718372;-0.6152595;0.002376333,-0.06723844;0.002125775;-0.04329519,-0.1046666;-0.2930596;-0.005022775,-0.1048702;-0.5864859;0.057435,-0.1025453;-0.5542423;-0.04094846,-0.001333471;0.3996158;0.01613722,0;0;0,0.001673637;0.1994637;0.01454055,0.004356513;0.4992916;0.02251845,0.1210549;0.3808505;0.007617407,0.1705109;0.1880583;0.0272457,0.2070492;-0.05845544;0.007347664,-0.1027004;0.3661329;-0.0226019,-0.1634431;0.1972919;-0.1109367,-0.2055478;0.03313692;-0.2947309,0.0769483;0.004307881;-0.02145698,0.08387133;-0.2948018;0.0005762912,0.07086705;-0.5879501;0.06298597,0.08292729;-0.6170631;0.003021933,-0.06301419;0.003736353;-0.04914521,-0.1017987;-0.2902256;-0.003514972,-0.1019951;-0.5843499;0.05556881,-0.1056007;-0.607269;-0.01276717,0.003423881;0.399296;0.02254076,36.2563
-0;0;0,-0.00068623;0.1996687;0.01148668,-0.001457848;0.4995965;0.01478083,0.113192;0.3794189;-0.01362308,0.1673;0.1877152;0.00432235,0.1966851;-0.05871609;-0.02581281,-0.1113908;0.3685231;-0.01971503,-0.1640308;0.1766531;-0.0400851,-0.2177642;-0.05609338;-0.1138537,0.07375381;0.006407267;-0.03032033,0.08180363;-0.2924782;-0.00577084,0.06867486;-0.5845333;0.06154519,0.07724396;-0.6151635;0.003018763,-0.06738482;0.002054353;-0.04307047,-0.1045986;-0.2931575;-0.004793495,-0.104803;-0.5865171;0.05797647,-0.1025316;-0.5542654;-0.04040971,-0.001238749;0.399609;0.01634307,0;0;0,0.001673637;0.1994637;0.01454055,0.004356513;0.4992916;0.02251845,0.1210549;0.3808505;0.007617407,0.1705109;0.1880583;0.0272457,0.2070492;-0.05845544;0.007347664,-0.1027004;0.3661329;-0.0226019,-0.1634431;0.1972919;-0.1109367,-0.2055478;0.03313692;-0.2947309,0.0769483;0.004307881;-0.02145698,0.08387133;-0.2948018;0.0005762912,0.07086705;-0.5879501;0.06298597,0.08292729;-0.6170631;0.003021933,-0.06301419;0.003736353;-0.04914521,-0.1017987;-0.2902256;-0.003514972,-0.1019951;-0.5843499;0.05556881,-0.1056007;-0.607269;-0.01276717,0.003423881;0.399296;0.02254076,36.27854
-0;0;0,-0.00068623;0.1996687;0.01148668,-0.001457848;0.4995965;0.01478083,0.113192;0.3794189;-0.01362308,0.1673;0.1877152;0.00432235,0.1966851;-0.05871609;-0.02581281,-0.1113908;0.3685231;-0.01971503,-0.1640308;0.1766531;-0.0400851,-0.2177642;-0.05609338;-0.1138537,0.07375381;0.006407267;-0.03032033,0.08180363;-0.2924782;-0.00577084,0.06867486;-0.5845333;0.06154519,0.07724396;-0.6151635;0.003018763,-0.06738482;0.002054353;-0.04307047,-0.1045986;-0.2931575;-0.004793495,-0.104803;-0.5865171;0.05797647,-0.1025316;-0.5542654;-0.04040971,-0.001238749;0.399609;0.01634307,0;0;0,0.001673637;0.1994637;0.01454055,0.004356513;0.4992916;0.02251845,0.1210549;0.3808505;0.007617407,0.1705109;0.1880583;0.0272457,0.2070492;-0.05845544;0.007347664,-0.1027004;0.3661329;-0.0226019,-0.1634431;0.1972919;-0.1109367,-0.2055478;0.03313692;-0.2947309,0.0769483;0.004307881;-0.02145698,0.08387133;-0.2948018;0.0005762912,0.07086705;-0.5879501;0.06298597,0.08292729;-0.6170631;0.003021933,-0.06301419;0.003736353;-0.04914521,-0.1017987;-0.2902256;-0.003514972,-0.1019951;-0.5843499;0.05556881,-0.1056007;-0.607269;-0.01276717,0.003423881;0.399296;0.02254076,36.28991
-0;0;0,-0.000514953;0.1996594;0.01165647,-0.001079983;0.499584;0.01524957,0.1134818;0.3793187;-0.0132893,0.1674984;0.1875544;0.004279343,0.1972634;-0.05885778;-0.02563889,-0.1110089;0.3686891;-0.01969606,-0.163334;0.1763676;-0.03626466,-0.2170412;-0.05901521;-0.1011528,0.07382409;0.006487308;-0.03013169,0.08239904;-0.2923575;-0.005267154,0.06927033;-0.5843486;0.0623263,0.07798129;-0.6151226;0.004019603,-0.06746244;0.001975292;-0.04295249,-0.1040411;-0.2932951;-0.00451529,-0.1043616;-0.5865847;0.05858072,-0.1019637;-0.5543211;-0.0398046,-0.0009230439;0.3995949;0.01671733,0;0;0,0.001665526;0.1994657;0.01451455,0.004333932;0.4992937;0.02250085,0.1209457;0.3810479;0.006656546,0.1697467;0.1880568;0.02596738,0.2076068;-0.05833644;0.007073907,-0.1032354;0.3663902;-0.02158223,-0.1643741;0.1961039;-0.1068152,-0.2078064;0.02857876;-0.2872284,0.07690213;0.004340192;-0.0216154,0.08381847;-0.2947583;0.0005712844,0.07083033;-0.5879581;0.06274183,0.08294889;-0.6176529;0.003565166,-0.06308391;0.003737968;-0.04905556,-0.1018164;-0.2902367;-0.003462534,-0.1016226;-0.584366;0.05559627,-0.1037489;-0.6066576;-0.01346458,0.003406612;0.399298;0.02251488,36.31209
-0;0;0,-0.0004457725;0.1996607;0.01163617,-0.0009035806;0.4995849;0.01530578,0.1136459;0.3795735;-0.01334678,0.1675777;0.1877644;0.003991904,0.1970256;-0.05861053;-0.0265402,-0.110765;0.3675418;-0.01898785,-0.1623747;0.1748774;-0.03371301,-0.2177043;-0.0615813;-0.09309267,0.07385797;0.006614351;-0.03002083,0.08259508;-0.2922108;-0.004977081,0.06969339;-0.5842173;0.06259304,0.07802344;-0.6157527;0.005299125,-0.06751682;0.001860741;-0.04287209,-0.1036039;-0.2934162;-0.004022699,-0.10409;-0.5866879;0.05915544,-0.1019673;-0.5544171;-0.0392375,-0.0007827576;0.3995953;0.01674007,0;0;0,0.001665526;0.1994657;0.01451455,0.004333932;0.4992937;0.02250085,0.1209457;0.3810479;0.006656546,0.1697467;0.1880568;0.02596738,0.2076068;-0.05833644;0.007073907,-0.1032354;0.3663902;-0.02158223,-0.1643741;0.1961039;-0.1068152,-0.2078064;0.02857876;-0.2872284,0.07690213;0.004340192;-0.0216154,0.08381847;-0.2947583;0.0005712844,0.07083033;-0.5879581;0.06274183,0.08294889;-0.6176529;0.003565166,-0.06308391;0.003737968;-0.04905556,-0.1018164;-0.2902367;-0.003462534,-0.1016226;-0.584366;0.05559627,-0.1037489;-0.6066576;-0.01346458,0.003406612;0.399298;0.02251488,36.32364
-0;0;0,-0.0004457725;0.1996607;0.01163617,-0.0009035806;0.4995849;0.01530578,0.1136459;0.3795735;-0.01334678,0.1675777;0.1877644;0.003991904,0.1970256;-0.05861053;-0.0265402,-0.110765;0.3675418;-0.01898785,-0.1623747;0.1748774;-0.03371301,-0.2177043;-0.0615813;-0.09309267,0.07385797;0.006614351;-0.03002083,0.08259508;-0.2922108;-0.004977081,0.06969339;-0.5842173;0.06259304,0.07802344;-0.6157527;0.005299125,-0.06751682;0.001860741;-0.04287209,-0.1036039;-0.2934162;-0.004022699,-0.10409;-0.5866879;0.05915544,-0.1019673;-0.5544171;-0.0392375,-0.0007827576;0.3995953;0.01674007,0;0;0,0.001665526;0.1994657;0.01451455,0.004333932;0.4992937;0.02250085,0.1209457;0.3810479;0.006656546,0.1697467;0.1880568;0.02596738,0.2076068;-0.05833644;0.007073907,-0.1032354;0.3663902;-0.02158223,-0.1643741;0.1961039;-0.1068152,-0.2078064;0.02857876;-0.2872284,0.07690213;0.004340192;-0.0216154,0.08381847;-0.2947583;0.0005712844,0.07083033;-0.5879581;0.06274183,0.08294889;-0.6176529;0.003565166,-0.06308391;0.003737968;-0.04905556,-0.1018164;-0.2902367;-0.003462534,-0.1016226;-0.584366;0.05559627,-0.1037489;-0.6066576;-0.01346458,0.003406612;0.399298;0.02251488,36.33637
-0;0;0,-0.0004457725;0.1996607;0.01163617,-0.0009035806;0.4995849;0.01530578,0.1136459;0.3795735;-0.01334678,0.1675777;0.1877644;0.003991904,0.1970256;-0.05861053;-0.0265402,-0.110765;0.3675418;-0.01898785,-0.1623747;0.1748774;-0.03371301,-0.2177043;-0.0615813;-0.09309267,0.07385797;0.006614351;-0.03002083,0.08259508;-0.2922108;-0.004977081,0.06969339;-0.5842173;0.06259304,0.07802344;-0.6157527;0.005299125,-0.06751682;0.001860741;-0.04287209,-0.1036039;-0.2934162;-0.004022699,-0.10409;-0.5866879;0.05915544,-0.1019673;-0.5544171;-0.0392375,-0.0007827576;0.3995953;0.01674007,0;0;0,0.001680607;0.1994715;0.01443269,0.004373201;0.499301;0.02236667,0.1209741;0.3813703;0.006152581,0.1697541;0.1883786;0.02550998,0.2077471;-0.05799331;0.006604232,-0.1033044;0.3664847;-0.02152709,-0.1646389;0.1945329;-0.1032012,-0.2092937;0.02101164;-0.2775466,0.07678818;0.004448427;-0.02199514,0.08367836;-0.294622;0.0005757622,0.07077905;-0.5878438;0.06266129,0.0826394;-0.6186427;0.004947666,-0.06319587;0.003681538;-0.04891553,-0.1019735;-0.2903189;-0.003527947,-0.1015375;-0.5843648;0.05594318,-0.1041866;-0.6120073;-0.007022146,0.003438371;0.3993053;0.02239089,36.35673
-0;0;0,-0.0004880308;0.1996689;0.01149392,-0.0009947601;0.4995947;0.01504557,0.113504;0.3794444;-0.0137285,0.1677703;0.187773;0.004082946,0.1972392;-0.05858667;-0.02655171,-0.1109221;0.3676227;-0.01903465,-0.1620889;0.1746945;-0.0317106,-0.2175844;-0.06356147;-0.08323067,0.07355914;0.006722945;-0.03072223,0.0825277;-0.2920213;-0.004810233,0.0697642;-0.5839861;0.06296629,0.07812278;-0.6155679;0.005742706,-0.06770839;0.001799026;-0.04257155,-0.1035269;-0.2935511;-0.004031673,-0.1041783;-0.5867395;0.05953066,-0.1021492;-0.5544759;-0.03886296,-0.0008600813;0.3996056;0.01651046,0;0;0,0.001680607;0.1994715;0.01443269,0.004373201;0.499301;0.02236667,0.1209741;0.3813703;0.006152581,0.1697541;0.1883786;0.02550998,0.2077471;-0.05799331;0.006604232,-0.1033044;0.3664847;-0.02152709,-0.1646389;0.1945329;-0.1032012,-0.2092937;0.02101164;-0.2775466,0.07678818;0.004448427;-0.02199514,0.08367836;-0.294622;0.0005757622,0.07077905;-0.5878438;0.06266129,0.0826394;-0.6186427;0.004947666,-0.06319587;0.003681538;-0.04891553,-0.1019735;-0.2903189;-0.003527947,-0.1015375;-0.5843648;0.05594318,-0.1041866;-0.6120073;-0.007022146,0.003438371;0.3993053;0.02239089,36.37938
-0;0;0,-0.0003711719;0.1996701;0.0114762,-0.00074668;0.4995962;0.01502924,0.1134973;0.3788866;-0.01417275,0.1679835;0.1872657;0.003510717,0.1974118;-0.05914612;-0.02674139,-0.1107307;0.3677809;-0.01914475,-0.1613621;0.1745225;-0.02850641,-0.2162694;-0.06528376;-0.07298284,0.07349271;0.006756603;-0.03087346,0.08292749;-0.2919443;-0.004629225,0.07001545;-0.5838885;0.06320803,0.07816909;-0.6149665;0.005243544,-0.06779544;0.001761692;-0.04243436,-0.1031448;-0.2936763;-0.00413543,-0.1040362;-0.5868052;0.05969771,-0.1020677;-0.5545411;-0.03869722,-0.0006530412;0.399607;0.01649255,0;0;0,0.001680607;0.1994715;0.01443269,0.004373201;0.499301;0.02236667,0.1209741;0.3813703;0.006152581,0.1697541;0.1883786;0.02550998,0.2077471;-0.05799331;0.006604232,-0.1033044;0.3664847;-0.02152709,-0.1646389;0.1945329;-0.1032012,-0.2092937;0.02101164;-0.2775466,0.07678818;0.004448427;-0.02199514,0.08367836;-0.294622;0.0005757622,0.07077905;-0.5878438;0.06266129,0.0826394;-0.6186427;0.004947666,-0.06319587;0.003681538;-0.04891553,-0.1019735;-0.2903189;-0.003527947,-0.1015375;-0.5843648;0.05594318,-0.1041866;-0.6120073;-0.007022146,0.003438371;0.3993053;0.02239089,36.40179
-0;0;0,-0.0003711719;0.1996701;0.0114762,-0.00074668;0.4995962;0.01502924,0.1134973;0.3788866;-0.01417275,0.1679835;0.1872657;0.003510717,0.1974118;-0.05914612;-0.02674139,-0.1107307;0.3677809;-0.01914475,-0.1613621;0.1745225;-0.02850641,-0.2162694;-0.06528376;-0.07298284,0.07349271;0.006756603;-0.03087346,0.08292749;-0.2919443;-0.004629225,0.07001545;-0.5838885;0.06320803,0.07816909;-0.6149665;0.005243544,-0.06779544;0.001761692;-0.04243436,-0.1031448;-0.2936763;-0.00413543,-0.1040362;-0.5868052;0.05969771,-0.1020677;-0.5545411;-0.03869722,-0.0006530412;0.399607;0.01649255,0;0;0,0.00171871;0.1994688;0.01446566,0.00445285;0.4992958;0.02248,0.1208728;0.3814771;0.004948171,0.1697187;0.1885803;0.02506997,0.2077032;-0.0577908;0.006136503,-0.1032256;0.3664338;-0.02143522,-0.1645422;0.1920342;-0.09775713,-0.2100379;0.01656803;-0.269925,0.07680298;0.004467067;-0.02193963,0.08368985;-0.2946137;0.0004937444,0.0709104;-0.5878258;0.06264997,0.08199055;-0.6180597;0.004000597,-0.06323561;0.003693586;-0.04886322,-0.1019626;-0.2903599;-0.003777221,-0.1013956;-0.5843658;0.0558902,-0.104202;-0.6122352;-0.006787356,0.003505544;0.3993003;0.02247681,36.41304
-0;0;0,-0.0003280369;0.199671;0.0114622,-0.0006262785;0.4995969;0.01506285,0.1135647;0.3788628;-0.01423872,0.168147;0.1873022;0.003797276,0.1974447;-0.05908351;-0.02679243,-0.1106849;0.3670983;-0.01836208,-0.1611938;0.1737254;-0.0258302,-0.2155247;-0.06745799;-0.06296145,0.07341269;0.00676397;-0.03106163,0.0834856;-0.2918793;-0.004401552,0.07055272;-0.583743;0.06377699,0.07893974;-0.6149176;0.00598127,-0.06792739;0.001730004;-0.04222412,-0.1026504;-0.2937542;-0.003708683,-0.1037816;-0.586877;0.06014824,-0.1021577;-0.5546155;-0.03825252,-0.0005601511;0.3996073;0.01650497,0;0;0,0.00171871;0.1994688;0.01446566,0.00445285;0.4992958;0.02248,0.1208728;0.3814771;0.004948171,0.1697187;0.1885803;0.02506997,0.2077032;-0.0577908;0.006136503,-0.1032256;0.3664338;-0.02143522,-0.1645422;0.1920342;-0.09775713,-0.2100379;0.01656803;-0.269925,0.07680298;0.004467067;-0.02193963,0.08368985;-0.2946137;0.0004937444,0.0709104;-0.5878258;0.06264997,0.08199055;-0.6180597;0.004000597,-0.06323561;0.003693586;-0.04886322,-0.1019626;-0.2903599;-0.003777221,-0.1013956;-0.5843658;0.0558902,-0.104202;-0.6122352;-0.006787356,0.003505544;0.3993003;0.02247681,36.43475
-0;0;0,-0.0003280369;0.199671;0.0114622,-0.0006262785;0.4995969;0.01506285,0.1135647;0.3788628;-0.01423872,0.168147;0.1873022;0.003797276,0.1974447;-0.05908351;-0.02679243,-0.1106849;0.3670983;-0.01836208,-0.1611938;0.1737254;-0.0258302,-0.2155247;-0.06745799;-0.06296145,0.07341269;0.00676397;-0.03106163,0.0834856;-0.2918793;-0.004401552,0.07055272;-0.583743;0.06377699,0.07893974;-0.6149176;0.00598127,-0.06792739;0.001730004;-0.04222412,-0.1026504;-0.2937542;-0.003708683,-0.1037816;-0.586877;0.06014824,-0.1021577;-0.5546155;-0.03825252,-0.0005601511;0.3996073;0.01650497,0;0;0,0.00171871;0.1994688;0.01446566,0.00445285;0.4992958;0.02248,0.1208728;0.3814771;0.004948171,0.1697187;0.1885803;0.02506997,0.2077032;-0.0577908;0.006136503,-0.1032256;0.3664338;-0.02143522,-0.1645422;0.1920342;-0.09775713,-0.2100379;0.01656803;-0.269925,0.07680298;0.004467067;-0.02193963,0.08368985;-0.2946137;0.0004937444,0.0709104;-0.5878258;0.06264997,0.08199055;-0.6180597;0.004000597,-0.06323561;0.003693586;-0.04886322,-0.1019626;-0.2903599;-0.003777221,-0.1013956;-0.5843658;0.0558902,-0.104202;-0.6122352;-0.006787356,0.003505544;0.3993003;0.02247681,36.4468
-0;0;0,-0.0003280369;0.199671;0.0114622,-0.0006262785;0.4995969;0.01506285,0.1135647;0.3788628;-0.01423872,0.168147;0.1873022;0.003797276,0.1974447;-0.05908351;-0.02679243,-0.1106849;0.3670983;-0.01836208,-0.1611938;0.1737254;-0.0258302,-0.2155247;-0.06745799;-0.06296145,0.07341269;0.00676397;-0.03106163,0.0834856;-0.2918793;-0.004401552,0.07055272;-0.583743;0.06377699,0.07893974;-0.6149176;0.00598127,-0.06792739;0.001730004;-0.04222412,-0.1026504;-0.2937542;-0.003708683,-0.1037816;-0.586877;0.06014824,-0.1021577;-0.5546155;-0.03825252,-0.0005601511;0.3996073;0.01650497,0;0;0,0.00169859;0.1994745;0.01438813,0.004388517;0.4993062;0.02223913,0.1208236;0.3814837;0.004761949,0.1698641;0.188626;0.02478573,0.2077497;-0.0577714;0.005997356,-0.1033738;0.3664599;-0.02138801,-0.1650569;0.1905621;-0.09388046,-0.2120416;0.00533621;-0.2550754,0.07676382;0.004497272;-0.02207013,0.08379015;-0.2945592;0.0006430894,0.07092355;-0.5877931;0.06267812,0.08200531;-0.6180491;0.004059333,-0.06331489;0.003597759;-0.04876761,-0.1019857;-0.2904738;-0.003750879,-0.1014523;-0.5844364;0.05612998,-0.1046295;-0.6120573;-0.006837524,0.003457182;0.3993106;0.02229234,36.45873
-0;0;0,-0.0005132515;0.1996844;0.01122016,-0.001156404;0.4996146;0.01434588,0.113237;0.3790469;-0.01458981,0.1680235;0.1875642;0.003653236,0.1975113;-0.05880705;-0.02687031,-0.1111603;0.3667307;-0.01833446,-0.1615268;0.17322;-0.02243666,-0.2139252;-0.06943549;-0.05197825,0.07322936;0.006710337;-0.03150288,0.08379695;-0.2918928;-0.004586311,0.07079919;-0.5836849;0.06388564,0.07933772;-0.6145169;0.005633689,-0.06805322;0.001746695;-0.04202032,-0.1023198;-0.2938373;-0.003863953,-0.1039096;-0.5869057;0.06023263,-0.1024941;-0.55467;-0.03816669,-0.0009702116;0.3996277;0.01595737,0;0;0,0.00169859;0.1994745;0.01438813,0.004388517;0.4993062;0.02223913,0.1208236;0.3814837;0.004761949,0.1698641;0.188626;0.02478573,0.2077497;-0.0577714;0.005997356,-0.1033738;0.3664599;-0.02138801,-0.1650569;0.1905621;-0.09388046,-0.2120416;0.00533621;-0.2550754,0.07676382;0.004497272;-0.02207013,0.08379015;-0.2945592;0.0006430894,0.07092355;-0.5877931;0.06267812,0.08200531;-0.6180491;0.004059333,-0.06331489;0.003597759;-0.04876761,-0.1019857;-0.2904738;-0.003750879,-0.1014523;-0.5844364;0.05612998,-0.1046295;-0.6120573;-0.006837524,0.003457182;0.3993106;0.02229234,36.46984
-0;0;0,-0.0005132515;0.1996844;0.01122016,-0.001156404;0.4996146;0.01434588,0.113237;0.3790469;-0.01458981,0.1680235;0.1875642;0.003653236,0.1975113;-0.05880705;-0.02687031,-0.1111603;0.3667307;-0.01833446,-0.1615268;0.17322;-0.02243666,-0.2139252;-0.06943549;-0.05197825,0.07322936;0.006710337;-0.03150288,0.08379695;-0.2918928;-0.004586311,0.07079919;-0.5836849;0.06388564,0.07933772;-0.6145169;0.005633689,-0.06805322;0.001746695;-0.04202032,-0.1023198;-0.2938373;-0.003863953,-0.1039096;-0.5869057;0.06023263,-0.1024941;-0.55467;-0.03816669,-0.0009702116;0.3996277;0.01595737,0;0;0,0.00169859;0.1994745;0.01438813,0.004388517;0.4993062;0.02223913,0.1208236;0.3814837;0.004761949,0.1698641;0.188626;0.02478573,0.2077497;-0.0577714;0.005997356,-0.1033738;0.3664599;-0.02138801,-0.1650569;0.1905621;-0.09388046,-0.2120416;0.00533621;-0.2550754,0.07676382;0.004497272;-0.02207013,0.08379015;-0.2945592;0.0006430894,0.07092355;-0.5877931;0.06267812,0.08200531;-0.6180491;0.004059333,-0.06331489;0.003597759;-0.04876761,-0.1019857;-0.2904738;-0.003750879,-0.1014523;-0.5844364;0.05612998,-0.1046295;-0.6120573;-0.006837524,0.003457182;0.3993106;0.02229234,36.4906
-0;0;0,-0.0006215348;0.1996925;0.01106954,-0.001421626;0.4996245;0.01398886,0.1129379;0.3792022;-0.01528999,0.168146;0.1878422;0.002969559,0.1977516;-0.05848899;-0.02776217,-0.1114455;0.3669239;-0.01857328,-0.1613057;0.1732466;-0.0203211,-0.2115528;-0.07057948;-0.04321358,0.07312491;0.006835844;-0.0317178,0.08403297;-0.291727;-0.004491771,0.07099948;-0.5834994;0.06405755,0.07967796;-0.6140913;0.005494535,-0.06813189;0.001664098;-0.04189603,-0.1019204;-0.2939909;-0.00386345,-0.1037502;-0.5870246;0.06038489,-0.1024701;-0.5547999;-0.03801432,-0.001185005;0.3996388;0.01566653,0;0;0,0.001654319;0.199479;0.01433115,0.004284523;0.4993114;0.02218778,0.1207091;0.3816399;0.004350735,0.1701506;0.1888269;0.02381016,0.2082195;-0.05751364;0.004650103,-0.1034699;0.3661662;-0.02119592,-0.1651063;0.1887738;-0.08999195,-0.212391;-0.00193572;-0.2445689,0.07665487;0.004630081;-0.02241858,0.08374527;-0.294413;0.0004495643,0.07078688;-0.5875569;0.06288965,0.08424948;-0.6175017;0.00434405,-0.06349462;0.003543118;-0.04853741,-0.1020075;-0.2905365;-0.003438305,-0.1013415;-0.5844712;0.05657805,-0.104115;-0.6104825;-0.00834189,0.00337243;0.3993156;0.02223015,36.50216
-0;0;0,-0.0006215348;0.1996925;0.01106954,-0.001421626;0.4996245;0.01398886,0.1129379;0.3792022;-0.01528999,0.168146;0.1878422;0.002969559,0.1977516;-0.05848899;-0.02776217,-0.1114455;0.3669239;-0.01857328,-0.1613057;0.1732466;-0.0203211,-0.2115528;-0.07057948;-0.04321358,0.07312491;0.006835844;-0.0317178,0.08403297;-0.291727;-0.004491771,0.07099948;-0.5834994;0.06405755,0.07967796;-0.6140913;0.005494535,-0.06813189;0.001664098;-0.04189603,-0.1019204;-0.2939909;-0.00386345,-0.1037502;-0.5870246;0.06038489,-0.1024701;-0.5547999;-0.03801432,-0.001185005;0.3996388;0.01566653,0;0;0,0.001654319;0.199479;0.01433115,0.004284523;0.4993114;0.02218778,0.1207091;0.3816399;0.004350735,0.1701506;0.1888269;0.02381016,0.2082195;-0.05751364;0.004650103,-0.1034699;0.3661662;-0.02119592,-0.1651063;0.1887738;-0.08999195,-0.212391;-0.00193572;-0.2445689,0.07665487;0.004630081;-0.02241858,0.08374527;-0.294413;0.0004495643,0.07078688;-0.5875569;0.06288965,0.08424948;-0.6175017;0.00434405,-0.06349462;0.003543118;-0.04853741,-0.1020075;-0.2905365;-0.003438305,-0.1013415;-0.5844712;0.05657805,-0.104115;-0.6104825;-0.00834189,0.00337243;0.3993156;0.02223015,36.51333
-0;0;0,-0.0007302881;0.1997042;0.01084877,-0.001713493;0.4996392;0.01335729,0.1126024;0.3790587;-0.01605589,0.1678976;0.1877496;0.002471698,0.1980734;-0.05844916;-0.02876303,-0.1117077;0.366284;-0.01831741,-0.1609344;0.1724399;-0.01722399,-0.2096114;-0.07217613;-0.03435761,0.07305288;0.006939115;-0.03186103,0.08438499;-0.2915883;-0.004420452,0.07134821;-0.5833372;0.06422801,0.07994345;-0.6138107;0.005490035,-0.06821752;0.001569351;-0.04176011,-0.1015001;-0.2941457;-0.003748484,-0.103483;-0.5871587;0.06058984,-0.1025711;-0.5549497;-0.03781062,-0.001415801;0.3996562;0.01517872,0;0;0,0.001654319;0.199479;0.01433115,0.004284523;0.4993114;0.02218778,0.1207091;0.3816399;0.004350735,0.1701506;0.1888269;0.02381016,0.2082195;-0.05751364;0.004650103,-0.1034699;0.3661662;-0.02119592,-0.1651063;0.1887738;-0.08999195,-0.212391;-0.00193572;-0.2445689,0.07665487;0.004630081;-0.02241858,0.08374527;-0.294413;0.0004495643,0.07078688;-0.5875569;0.06288965,0.08424948;-0.6175017;0.00434405,-0.06349462;0.003543118;-0.04853741,-0.1020075;-0.2905365;-0.003438305,-0.1013415;-0.5844712;0.05657805,-0.104115;-0.6104825;-0.00834189,0.00337243;0.3993156;0.02223015,36.52563
-0;0;0,-0.0007302881;0.1997042;0.01084877,-0.001713493;0.4996392;0.01335729,0.1126024;0.3790587;-0.01605589,0.1678976;0.1877496;0.002471698,0.1980734;-0.05844916;-0.02876303,-0.1117077;0.366284;-0.01831741,-0.1609344;0.1724399;-0.01722399,-0.2096114;-0.07217613;-0.03435761,0.07305288;0.006939115;-0.03186103,0.08438499;-0.2915883;-0.004420452,0.07134821;-0.5833372;0.06422801,0.07994345;-0.6138107;0.005490035,-0.06821752;0.001569351;-0.04176011,-0.1015001;-0.2941457;-0.003748484,-0.103483;-0.5871587;0.06058984,-0.1025711;-0.5549497;-0.03781062,-0.001415801;0.3996562;0.01517872,0;0;0,0.001531745;0.1994875;0.01422699,0.003862747;0.4993275;0.02188091,0.1203666;0.3815974;0.00394043,0.1701263;0.1888415;0.02315322,0.2083672;-0.05748999;0.004221089,-0.1038737;0.3661622;-0.02117871,-0.1654995;0.1876769;-0.08709714,-0.2136147;-0.00667873;-0.2367996,0.07659566;0.004721103;-0.02260123,0.08368596;-0.2942966;0.0005971845,0.07072168;-0.5874263;0.06310248,0.08375885;-0.6179136;0.005207527,-0.06358609;0.003467237;-0.048423,-0.102095;-0.2906152;-0.003338482,-0.1014098;-0.5845313;0.05676821,-0.1052336;-0.6095695;-0.009221468,0.00306531;0.3993307;0.02199429,36.53996
-0;0;0,-0.0007302881;0.1997042;0.01084877,-0.001713493;0.4996392;0.01335729,0.1126024;0.3790587;-0.01605589,0.1678976;0.1877496;0.002471698,0.1980734;-0.05844916;-0.02876303,-0.1117077;0.366284;-0.01831741,-0.1609344;0.1724399;-0.01722399,-0.2096114;-0.07217613;-0.03435761,0.07305288;0.006939115;-0.03186103,0.08438499;-0.2915883;-0.004420452,0.07134821;-0.5833372;0.06422801,0.07994345;-0.6138107;0.005490035,-0.06821752;0.001569351;-0.04176011,-0.1015001;-0.2941457;-0.003748484,-0.103483;-0.5871587;0.06058984,-0.1025711;-0.5549497;-0.03781062,-0.001415801;0.3996562;0.01517872,0;0;0,0.001531745;0.1994875;0.01422699,0.003862747;0.4993275;0.02188091,0.1203666;0.3815974;0.00394043,0.1701263;0.1888415;0.02315322,0.2083672;-0.05748999;0.004221089,-0.1038737;0.3661622;-0.02117871,-0.1654995;0.1876769;-0.08709714,-0.2136147;-0.00667873;-0.2367996,0.07659566;0.004721103;-0.02260123,0.08368596;-0.2942966;0.0005971845,0.07072168;-0.5874263;0.06310248,0.08375885;-0.6179136;0.005207527,-0.06358609;0.003467237;-0.048423,-0.102095;-0.2906152;-0.003338482,-0.1014098;-0.5845313;0.05676821,-0.1052336;-0.6095695;-0.009221468,0.00306531;0.3993307;0.02199429,36.55761
-0;0;0,-0.0008567629;0.1997093;0.01074636,-0.002007666;0.4996445;0.0131789,0.1123891;0.3791908;-0.01619554,0.1680192;0.1880028;0.002578588,0.1979001;-0.058102;-0.02966339,-0.112032;0.3660396;-0.01795019,-0.1610959;0.1721967;-0.01374572,-0.2068354;-0.07333754;-0.02473738,0.07278388;0.007037681;-0.03244961,0.08465878;-0.2913822;-0.004084755,0.07154588;-0.5831269;0.06456718,0.08058996;-0.61366;0.005978562,-0.06847212;0.001431552;-0.04134632,-0.1012118;-0.2943598;-0.003457237,-0.1032666;-0.5872239;0.06155368,-0.1025734;-0.5550069;-0.03684999,-0.001657288;0.399662;0.0150189,0;0;0,0.001531745;0.1994875;0.01422699,0.003862747;0.4993275;0.02188091,0.1203666;0.3815974;0.00394043,0.1701263;0.1888415;0.02315322,0.2083672;-0.05748999;0.004221089,-0.1038737;0.3661622;-0.02117871,-0.1654995;0.1876769;-0.08709714,-0.2136147;-0.00667873;-0.2367996,0.07659566;0.004721103;-0.02260123,0.08368596;-0.2942966;0.0005971845,0.07072168;-0.5874263;0.06310248,0.08375885;-0.6179136;0.005207527,-0.06358609;0.003467237;-0.048423,-0.102095;-0.2906152;-0.003338482,-0.1014098;-0.5845313;0.05676821,-0.1052336;-0.6095695;-0.009221468,0.00306531;0.3993307;0.02199429,36.56924
-0;0;0,-0.0007228075;0.1997143;0.01066238,-0.001657144;0.4996509;0.01304338,0.1126196;0.379141;-0.0164497,0.1679108;0.1877561;0.001291234,0.1981003;-0.05837639;-0.030448,-0.1117826;0.3657047;-0.01763222,-0.160358;0.1718382;-0.01013376,-0.2032536;-0.07438296;-0.01605745,0.07258968;0.006996962;-0.03289043,0.08584108;-0.2913006;-0.003856421,0.0725056;-0.5830008;0.06494139,0.08027752;-0.6127628;0.005128171,-0.06869454;0.001446851;-0.0409752,-0.100239;-0.294495;-0.003247641,-0.1024447;-0.5874164;0.06149977,-0.1020337;-0.5551934;-0.03690656,-0.001381113;0.3996684;0.01489444,0;0;0,0.001491615;0.19949;0.01419579,0.003773127;0.49933;0.02187204,0.1201767;0.3820823;0.002741627,0.1703289;0.1894498;0.02217012,0.2084629;-0.05692926;0.003646161,-0.1040102;0.3661455;-0.02103339,-0.1656141;0.186305;-0.08318133,-0.214936;-0.01280986;-0.2260821,0.0763607;0.004960376;-0.02333318,0.08337747;-0.2940051;0.0005502775,0.07042558;-0.5870865;0.06328417,0.08262663;-0.6164945;0.003740098,-0.06375767;0.003416844;-0.04820047,-0.102285;-0.2906758;-0.003198754,-0.1013072;-0.5845192;0.05725879,-0.1053477;-0.6103618;-0.007791713,0.00299046;0.3993331;0.02197173,36.59104
-0;0;0,-0.0007228075;0.1997143;0.01066238,-0.001657144;0.4996509;0.01304338,0.1126196;0.379141;-0.0164497,0.1679108;0.1877561;0.001291234,0.1981003;-0.05837639;-0.030448,-0.1117826;0.3657047;-0.01763222,-0.160358;0.1718382;-0.01013376,-0.2032536;-0.07438296;-0.01605745,0.07258968;0.006996962;-0.03289043,0.08584108;-0.2913006;-0.003856421,0.0725056;-0.5830008;0.06494139,0.08027752;-0.6127628;0.005128171,-0.06869454;0.001446851;-0.0409752,-0.100239;-0.294495;-0.003247641,-0.1024447;-0.5874164;0.06149977,-0.1020337;-0.5551934;-0.03690656,-0.001381113;0.3996684;0.01489444,0;0;0,0.001491615;0.19949;0.01419579,0.003773127;0.49933;0.02187204,0.1201767;0.3820823;0.002741627,0.1703289;0.1894498;0.02217012,0.2084629;-0.05692926;0.003646161,-0.1040102;0.3661455;-0.02103339,-0.1656141;0.186305;-0.08318133,-0.214936;-0.01280986;-0.2260821,0.0763607;0.004960376;-0.02333318,0.08337747;-0.2940051;0.0005502775,0.07042558;-0.5870865;0.06328417,0.08262663;-0.6164945;0.003740098,-0.06375767;0.003416844;-0.04820047,-0.102285;-0.2906758;-0.003198754,-0.1013072;-0.5845192;0.05725879,-0.1053477;-0.6103618;-0.007791713,0.00299046;0.3993331;0.02197173,36.60303
-0;0;0,-0.0003097351;0.1997193;0.01058832,-0.0008148625;0.4996573;0.01293114,0.1131975;0.3788842;-0.01688186,0.1685728;0.1875176;0.0007930305,0.1987271;-0.05857927;-0.03125478,-0.1111149;0.3655043;-0.01734734,-0.1593338;0.1717022;-0.00659186,-0.2003078;-0.07490344;-0.009201145,0.07229947;0.00695278;-0.03353275,0.08693364;-0.2912127;-0.003814675,0.07344244;-0.5829116;0.06495839,0.08189788;-0.6134059;0.006228816,-0.06910283;0.001460124;-0.04028233,-0.09911924;-0.2947008;-0.003030237,-0.1013754;-0.5876197;0.06172656,-0.1012031;-0.5553957;-0.03668067,-0.0006640487;0.3996748;0.01479292,0;0;0,0.001491615;0.19949;0.01419579,0.003773127;0.49933;0.02187204,0.1201767;0.3820823;0.002741627,0.1703289;0.1894498;0.02217012,0.2084629;-0.05692926;0.003646161,-0.1040102;0.3661455;-0.02103339,-0.1656141;0.186305;-0.08318133,-0.214936;-0.01280986;-0.2260821,0.0763607;0.004960376;-0.02333318,0.08337747;-0.2940051;0.0005502775,0.07042558;-0.5870865;0.06328417,0.08262663;-0.6164945;0.003740098,-0.06375767;0.003416844;-0.04820047,-0.102285;-0.2906758;-0.003198754,-0.1013072;-0.5845192;0.05725879,-0.1053477;-0.6103618;-0.007791713,0.00299046;0.3993331;0.02197173,36.62443
-0;0;0,-0.0003097351;0.1997193;0.01058832,-0.0008148625;0.4996573;0.01293114,0.1131975;0.3788842;-0.01688186,0.1685728;0.1875176;0.0007930305,0.1987271;-0.05857927;-0.03125478,-0.1111149;0.3655043;-0.01734734,-0.1593338;0.1717022;-0.00659186,-0.2003078;-0.07490344;-0.009201145,0.07229947;0.00695278;-0.03353275,0.08693364;-0.2912127;-0.003814675,0.07344244;-0.5829116;0.06495839,0.08189788;-0.6134059;0.006228816,-0.06910283;0.001460124;-0.04028233,-0.09911924;-0.2947008;-0.003030237,-0.1013754;-0.5876197;0.06172656,-0.1012031;-0.5553957;-0.03668067,-0.0006640487;0.3996748;0.01479292,0;0;0,0.001416718;0.1995092;0.01393152,0.003497788;0.4993673;0.020873,0.1198821;0.3816518;0.001872048,0.170183;0.1890898;0.02161337,0.2089868;-0.05710387;0.002044935,-0.1044013;0.3660651;-0.02118465,-0.1659866;0.1853192;-0.08066723,-0.2161508;-0.01710887;-0.2185311,0.07632505;0.005040468;-0.02343243,0.08333844;-0.2939201;0.0005127937,0.07041161;-0.5869773;0.06336505,0.08292476;-0.6165466;0.004101664,-0.0638723;0.003244368;-0.04806041,-0.1023119;-0.2908891;-0.003250737,-0.1011692;-0.5847254;0.05723861,-0.1054483;-0.6114316;-0.006775789,0.002790149;0.3993705;0.02125045,36.63642
-0;0;0,3.465455E-05;0.199736;0.01027213,-0.0001087393;0.4996773;0.01206877,0.1137961;0.3788876;-0.01749902,0.1686444;0.1873125;-0.0004510451,0.1995119;-0.05880165;-0.03167675,-0.1106912;0.3652113;-0.01707699,-0.1585351;0.1714845;-0.003626756,-0.1967341;-0.07555801;-0.0003388256,0.07205969;0.007005733;-0.03403412,0.08826895;-0.2910224;-0.003760915,0.07483797;-0.5827227;0.06501856,0.08388019;-0.615021;0.008936353,-0.06943245;0.001370544;-0.03971468,-0.09761859;-0.2950678;-0.003247559,-0.09987886;-0.5877682;0.06248946,-0.1000485;-0.5555672;-0.03591363,-7.294357E-05;0.3996987;0.01413554,0;0;0,0.001416718;0.1995092;0.01393152,0.003497788;0.4993673;0.020873,0.1198821;0.3816518;0.001872048,0.170183;0.1890898;0.02161337,0.2089868;-0.05710387;0.002044935,-0.1044013;0.3660651;-0.02118465,-0.1659866;0.1853192;-0.08066723,-0.2161508;-0.01710887;-0.2185311,0.07632505;0.005040468;-0.02343243,0.08333844;-0.2939201;0.0005127937,0.07041161;-0.5869773;0.06336505,0.08292476;-0.6165466;0.004101664,-0.0638723;0.003244368;-0.04806041,-0.1023119;-0.2908891;-0.003250737,-0.1011692;-0.5847254;0.05723861,-0.1054483;-0.6114316;-0.006775789,0.002790149;0.3993705;0.02125045,36.65851
-0;0;0,3.465455E-05;0.199736;0.01027213,-0.0001087393;0.4996773;0.01206877,0.1137961;0.3788876;-0.01749902,0.1686444;0.1873125;-0.0004510451,0.1995119;-0.05880165;-0.03167675,-0.1106912;0.3652113;-0.01707699,-0.1585351;0.1714845;-0.003626756,-0.1967341;-0.07555801;-0.0003388256,0.07205969;0.007005733;-0.03403412,0.08826895;-0.2910224;-0.003760915,0.07483797;-0.5827227;0.06501856,0.08388019;-0.615021;0.008936353,-0.06943245;0.001370544;-0.03971468,-0.09761859;-0.2950678;-0.003247559,-0.09987886;-0.5877682;0.06248946,-0.1000485;-0.5555672;-0.03591363,-7.294357E-05;0.3996987;0.01413554,0;0;0,0.001416718;0.1995092;0.01393152,0.003497788;0.4993673;0.020873,0.1198821;0.3816518;0.001872048,0.170183;0.1890898;0.02161337,0.2089868;-0.05710387;0.002044935,-0.1044013;0.3660651;-0.02118465,-0.1659866;0.1853192;-0.08066723,-0.2161508;-0.01710887;-0.2185311,0.07632505;0.005040468;-0.02343243,0.08333844;-0.2939201;0.0005127937,0.07041161;-0.5869773;0.06336505,0.08292476;-0.6165466;0.004101664,-0.0638723;0.003244368;-0.04806041,-0.1023119;-0.2908891;-0.003250737,-0.1011692;-0.5847254;0.05723861,-0.1054483;-0.6114316;-0.006775789,0.002790149;0.3993705;0.02125045,36.66976
-0;0;0,0.0002785907;0.1997433;0.01012631,0.0005225319;0.4996857;0.01179646,0.1141133;0.3789114;-0.01841305,0.1692927;0.187458;-0.001069,0.1994721;-0.05864432;-0.03305141,-0.1103761;0.3649689;-0.01635446,-0.157864;0.1713289;-0.0005919207,-0.194595;-0.07592008;0.003742619,0.07178771;0.007069038;-0.03459124,0.08936834;-0.2908419;-0.003931958,0.07616802;-0.5825043;0.06505215,0.08487501;-0.6151256;0.009393357,-0.06978992;0.001229189;-0.0390878,-0.09783182;-0.2951548;-0.002071548,-0.09850253;-0.5880078;0.06301799,-0.09920931;-0.5558056;-0.03538291,0.0004308807;0.3997077;0.01389509,0;0;0,0.001295136;0.1995147;0.01386424,0.003182278;0.4993748;0.02079317,0.1196325;0.3814755;0.001960849,0.1703198;0.1889549;0.02110742,0.2092055;-0.05715269;0.0006382763,-0.1046943;0.3658618;-0.02099679,-0.1658316;0.183861;-0.07701404,-0.2177769;-0.01914285;-0.2133633,0.07623374;0.005164373;-0.02370115,0.08325947;-0.2937564;0.0007331464,0.07033942;-0.5867819;0.06373431,0.0829506;-0.6165056;0.004699659,-0.06402449;0.003201331;-0.04786039,-0.102396;-0.2909611;-0.003182825,-0.1013192;-0.5847141;0.05771105,-0.1055941;-0.6121405;-0.005430557,0.00253965;0.3993775;0.02116444,36.69198
-0;0;0,0.0002785907;0.1997433;0.01012631,0.0005225319;0.4996857;0.01179646,0.1141133;0.3789114;-0.01841305,0.1692927;0.187458;-0.001069,0.1994721;-0.05864432;-0.03305141,-0.1103761;0.3649689;-0.01635446,-0.157864;0.1713289;-0.0005919207,-0.194595;-0.07592008;0.003742619,0.07178771;0.007069038;-0.03459124,0.08936834;-0.2908419;-0.003931958,0.07616802;-0.5825043;0.06505215,0.08487501;-0.6151256;0.009393357,-0.06978992;0.001229189;-0.0390878,-0.09783182;-0.2951548;-0.002071548,-0.09850253;-0.5880078;0.06301799,-0.09920931;-0.5558056;-0.03538291,0.0004308807;0.3997077;0.01389509,0;0;0,0.001295136;0.1995147;0.01386424,0.003182278;0.4993748;0.02079317,0.1196325;0.3814755;0.001960849,0.1703198;0.1889549;0.02110742,0.2092055;-0.05715269;0.0006382763,-0.1046943;0.3658618;-0.02099679,-0.1658316;0.183861;-0.07701404,-0.2177769;-0.01914285;-0.2133633,0.07623374;0.005164373;-0.02370115,0.08325947;-0.2937564;0.0007331464,0.07033942;-0.5867819;0.06373431,0.0829506;-0.6165056;0.004699659,-0.06402449;0.003201331;-0.04786039,-0.102396;-0.2909611;-0.003182825,-0.1013192;-0.5847141;0.05771105,-0.1055941;-0.6121405;-0.005430557,0.00253965;0.3993775;0.02116444,36.70356
-0;0;0,0.000539018;0.1997609;0.009762973,0.0009804728;0.4997045;0.01070262,0.1144776;0.3787323;-0.0191955,0.1695619;0.1871886;-0.002560735,0.2000896;-0.05896263;-0.03382805,-0.1100781;0.3642675;-0.01594128,-0.1573637;0.1707578;0.00189312,-0.1921405;-0.07672873;0.008294204,0.0716136;0.007029013;-0.03495831,0.09053384;-0.2907913;-0.004216395,0.07733982;-0.5823882;0.06504562,0.08590733;-0.61558;0.01022114,-0.07002451;0.001247057;-0.0386654,-0.09765816;-0.295342;-0.003009673,-0.09806944;-0.5880486;0.06273754,-0.09916592;-0.5558879;-0.03565227,0.0008254066;0.399733;0.01308663,0;0;0,0.001295136;0.1995147;0.01386424,0.003182278;0.4993748;0.02079317,0.1196325;0.3814755;0.001960849,0.1703198;0.1889549;0.02110742,0.2092055;-0.05715269;0.0006382763,-0.1046943;0.3658618;-0.02099679,-0.1658316;0.183861;-0.07701404,-0.2177769;-0.01914285;-0.2133633,0.07623374;0.005164373;-0.02370115,0.08325947;-0.2937564;0.0007331464,0.07033942;-0.5867819;0.06373431,0.0829506;-0.6165056;0.004699659,-0.06402449;0.003201331;-0.04786039,-0.102396;-0.2909611;-0.003182825,-0.1013192;-0.5847141;0.05771105,-0.1055941;-0.6121405;-0.005430557,0.00253965;0.3993775;0.02116444,36.72536
-0;0;0,0.000539018;0.1997609;0.009762973,0.0009804728;0.4997045;0.01070262,0.1144776;0.3787323;-0.0191955,0.1695619;0.1871886;-0.002560735,0.2000896;-0.05896263;-0.03382805,-0.1100781;0.3642675;-0.01594128,-0.1573637;0.1707578;0.00189312,-0.1921405;-0.07672873;0.008294204,0.0716136;0.007029013;-0.03495831,0.09053384;-0.2907913;-0.004216395,0.07733982;-0.5823882;0.06504562,0.08590733;-0.61558;0.01022114,-0.07002451;0.001247057;-0.0386654,-0.09765816;-0.295342;-0.003009673,-0.09806944;-0.5880486;0.06273754,-0.09916592;-0.5558879;-0.03565227,0.0008254066;0.399733;0.01308663,0;0;0,0.001128723;0.1995275;0.01369287,0.002648757;0.4993957;0.0203578,0.1192503;0.3819258;0.001322852,0.1701053;0.1894798;0.02077268,0.2092612;-0.05656089;1.657382E-05,-0.1053241;0.3660552;-0.02089098,-0.1661571;0.182532;-0.07206316,-0.2188955;-0.02277276;-0.2046098,0.07617421;0.005281782;-0.02386612,0.08312036;-0.2936113;0.0009269901,0.07018805;-0.5866192;0.0640074,0.08317257;-0.6164252;0.005165204,-0.06414333;0.003132123;-0.04770558,-0.1025584;-0.2910336;-0.003087323,-0.1015564;-0.5847356;0.0580532,-0.1056401;-0.6120117;-0.005284976,0.002140637;0.399398;0.02081729,36.73734
-0;0;0,0.0009687828;0.1997711;0.009517538,0.001877269;0.4997148;0.01029502,0.1150471;0.3787605;-0.02027006,0.1699732;0.1871697;-0.003654055,0.2006029;-0.05894886;-0.0350784,-0.1093935;0.3641901;-0.01587829,-0.1565872;0.1708347;0.003779776,-0.1898324;-0.07677095;0.01306512,0.07138523;0.006950775;-0.03543779,0.09174832;-0.2907856;-0.004804073,0.07855617;-0.582333;0.06466595,0.08732614;-0.6154176;0.00971118,-0.0703093;0.0013128;-0.03814287,-0.09705292;-0.2955114;-0.003788963,-0.09698991;-0.5882198;0.06195118,-0.09845158;-0.5560579;-0.03643412,0.001594095;0.3997445;0.01271597,0;0;0,0.001128723;0.1995275;0.01369287,0.002648757;0.4993957;0.0203578,0.1192503;0.3819258;0.001322852,0.1701053;0.1894798;0.02077268,0.2092612;-0.05656089;1.657382E-05,-0.1053241;0.3660552;-0.02089098,-0.1661571;0.182532;-0.07206316,-0.2188955;-0.02277276;-0.2046098,0.07617421;0.005281782;-0.02386612,0.08312036;-0.2936113;0.0009269901,0.07018805;-0.5866192;0.0640074,0.08317257;-0.6164252;0.005165204,-0.06414333;0.003132123;-0.04770558,-0.1025584;-0.2910336;-0.003087323,-0.1015564;-0.5847356;0.0580532,-0.1056401;-0.6120117;-0.005284976,0.002140637;0.399398;0.02081729,36.75869
-0;0;0,0.0009687828;0.1997711;0.009517538,0.001877269;0.4997148;0.01029502,0.1150471;0.3787605;-0.02027006,0.1699732;0.1871697;-0.003654055,0.2006029;-0.05894886;-0.0350784,-0.1093935;0.3641901;-0.01587829,-0.1565872;0.1708347;0.003779776,-0.1898324;-0.07677095;0.01306512,0.07138523;0.006950775;-0.03543779,0.09174832;-0.2907856;-0.004804073,0.07855617;-0.582333;0.06466595,0.08732614;-0.6154176;0.00971118,-0.0703093;0.0013128;-0.03814287,-0.09705292;-0.2955114;-0.003788963,-0.09698991;-0.5882198;0.06195118,-0.09845158;-0.5560579;-0.03643412,0.001594095;0.3997445;0.01271597,0;0;0,0.001128723;0.1995275;0.01369287,0.002648757;0.4993957;0.0203578,0.1192503;0.3819258;0.001322852,0.1701053;0.1894798;0.02077268,0.2092612;-0.05656089;1.657382E-05,-0.1053241;0.3660552;-0.02089098,-0.1661571;0.182532;-0.07206316,-0.2188955;-0.02277276;-0.2046098,0.07617421;0.005281782;-0.02386612,0.08312036;-0.2936113;0.0009269901,0.07018805;-0.5866192;0.0640074,0.08317257;-0.6164252;0.005165204,-0.06414333;0.003132123;-0.04770558,-0.1025584;-0.2910336;-0.003087323,-0.1015564;-0.5847356;0.0580532,-0.1056401;-0.6120117;-0.005284976,0.002140637;0.399398;0.02081729,36.77042
-0;0;0,0.0009687828;0.1997711;0.009517538,0.001877269;0.4997148;0.01029502,0.1150471;0.3787605;-0.02027006,0.1699732;0.1871697;-0.003654055,0.2006029;-0.05894886;-0.0350784,-0.1093935;0.3641901;-0.01587829,-0.1565872;0.1708347;0.003779776,-0.1898324;-0.07677095;0.01306512,0.07138523;0.006950775;-0.03543779,0.09174832;-0.2907856;-0.004804073,0.07855617;-0.582333;0.06466595,0.08732614;-0.6154176;0.00971118,-0.0703093;0.0013128;-0.03814287,-0.09705292;-0.2955114;-0.003788963,-0.09698991;-0.5882198;0.06195118,-0.09845158;-0.5560579;-0.03643412,0.001594095;0.3997445;0.01271597,0;0;0,0.001003168;0.199534;0.01360753,0.002345341;0.4994043;0.02023171,0.1188778;0.381684;0.0006748606,0.1700346;0.1893043;0.01998899,0.2094512;-0.05664316;-0.001369214,-0.1059685;0.3660819;-0.01998841,-0.1666526;0.1818853;-0.06886646,-0.2205049;-0.02727829;-0.1947653,0.07604967;0.005342735;-0.02424669,0.08302861;-0.2935131;0.00098175,0.0701603;-0.5864571;0.06437159,0.08313027;-0.6166107;0.006000552,-0.06431587;0.003113743;-0.04747392,-0.1026322;-0.2911141;-0.003180929,-0.1017028;-0.5847543;0.05825638,-0.1055766;-0.6130345;-0.003850069,0.001894315;0.3994064;0.02069441,36.78181
-0;0;0,0.001234976;0.1997851;0.009185948,0.002415532;0.4997286;0.009595388,0.1153735;0.3785436;-0.02116673,0.1699264;0.186788;-0.005236134,0.201032;-0.05935578;-0.03598774,-0.1090145;0.3640223;-0.01588872,-0.1558551;0.1707298;0.005182974,-0.188103;-0.07692413;0.01647815,0.07131107;0.006980884;-0.03558086,0.09256919;-0.2907107;-0.005120417,0.07948703;-0.5822624;0.06435204,0.08809755;-0.6156046;0.0097632,-0.07048301;0.001290851;-0.03782167,-0.0963111;-0.2956912;-0.004138343,-0.09608052;-0.5883982;0.0616081,-0.09782344;-0.5562578;-0.0367687,0.002057823;0.3997616;0.01214035,0;0;0,0.001003168;0.199534;0.01360753,0.002345341;0.4994043;0.02023171,0.1188778;0.381684;0.0006748606,0.1700346;0.1893043;0.01998899,0.2094512;-0.05664316;-0.001369214,-0.1059685;0.3660819;-0.01998841,-0.1666526;0.1818853;-0.06886646,-0.2205049;-0.02727829;-0.1947653,0.07604967;0.005342735;-0.02424669,0.08302861;-0.2935131;0.00098175,0.0701603;-0.5864571;0.06437159,0.08313027;-0.6166107;0.006000552,-0.06431587;0.003113743;-0.04747392,-0.1026322;-0.2911141;-0.003180929,-0.1017028;-0.5847543;0.05825638,-0.1055766;-0.6130345;-0.003850069,0.001894315;0.3994064;0.02069441,36.80392
-0;0;0,0.001234976;0.1997851;0.009185948,0.002415532;0.4997286;0.009595388,0.1153735;0.3785436;-0.02116673,0.1699264;0.186788;-0.005236134,0.201032;-0.05935578;-0.03598774,-0.1090145;0.3640223;-0.01588872,-0.1558551;0.1707298;0.005182974,-0.188103;-0.07692413;0.01647815,0.07131107;0.006980884;-0.03558086,0.09256919;-0.2907107;-0.005120417,0.07948703;-0.5822624;0.06435204,0.08809755;-0.6156046;0.0097632,-0.07048301;0.001290851;-0.03782167,-0.0963111;-0.2956912;-0.004138343,-0.09608052;-0.5883982;0.0616081,-0.09782344;-0.5562578;-0.0367687,0.002057823;0.3997616;0.01214035,0;0;0,0.001003168;0.199534;0.01360753,0.002345341;0.4994043;0.02023171,0.1188778;0.381684;0.0006748606,0.1700346;0.1893043;0.01998899,0.2094512;-0.05664316;-0.001369214,-0.1059685;0.3660819;-0.01998841,-0.1666526;0.1818853;-0.06886646,-0.2205049;-0.02727829;-0.1947653,0.07604967;0.005342735;-0.02424669,0.08302861;-0.2935131;0.00098175,0.0701603;-0.5864571;0.06437159,0.08313027;-0.6166107;0.006000552,-0.06431587;0.003113743;-0.04747392,-0.1026322;-0.2911141;-0.003180929,-0.1017028;-0.5847543;0.05825638,-0.1055766;-0.6130345;-0.003850069,0.001894315;0.3994064;0.02069441,36.81536
-0;0;0,0.001432558;0.1997974;0.008885026,0.002789324;0.4997392;0.008787189,0.1156055;0.378391;-0.02195457,0.1702773;0.1866485;-0.006277144,0.2014627;-0.05952191;-0.03673382,-0.1087815;0.36384;-0.01590788,-0.1554137;0.1705803;0.005912038,-0.1870358;-0.07711741;0.01799104,0.07119811;0.006909858;-0.03582013,0.09312849;-0.2907364;-0.005393472,0.08017876;-0.5822717;0.06417295,0.08906734;-0.6159277;0.01011128,-0.07064474;0.001356473;-0.03751641,-0.09591821;-0.2957672;-0.004672091,-0.09564242;-0.5884749;0.06107109,-0.09761147;-0.5563674;-0.03729549,0.002374202;0.3997777;0.01153111,0;0;0,0.001086112;0.1995215;0.01378436,0.00282291;0.4993853;0.02067386,0.119038;0.3814012;0.0004775673,0.1701912;0.1889604;0.01918202,0.2099755;-0.05686896;-0.002844358,-0.1057527;0.3664001;-0.01975325,-0.1658807;0.1808898;-0.06414391,-0.2223874;-0.0305326;-0.1850057,0.07589188;0.005350792;-0.02473443,0.0829055;-0.2934645;0.0009610672,0.07008335;-0.5863661;0.06455558,0.08294306;-0.6165298;0.00617408,-0.06447875;0.003135396;-0.04725104,-0.1028221;-0.2910995;-0.003028762,-0.1021961;-0.5847164;0.05852387,-0.1059698;-0.6127247;-0.003929894,0.002183623;0.3993879;0.02100888,36.83717
-0;0;0,0.001432558;0.1997974;0.008885026,0.002789324;0.4997392;0.008787189,0.1156055;0.378391;-0.02195457,0.1702773;0.1866485;-0.006277144,0.2014627;-0.05952191;-0.03673382,-0.1087815;0.36384;-0.01590788,-0.1554137;0.1705803;0.005912038,-0.1870358;-0.07711741;0.01799104,0.07119811;0.006909858;-0.03582013,0.09312849;-0.2907364;-0.005393472,0.08017876;-0.5822717;0.06417295,0.08906734;-0.6159277;0.01011128,-0.07064474;0.001356473;-0.03751641,-0.09591821;-0.2957672;-0.004672091,-0.09564242;-0.5884749;0.06107109,-0.09761147;-0.5563674;-0.03729549,0.002374202;0.3997777;0.01153111,0;0;0,0.001086112;0.1995215;0.01378436,0.00282291;0.4993853;0.02067386,0.119038;0.3814012;0.0004775673,0.1701912;0.1889604;0.01918202,0.2099755;-0.05686896;-0.002844358,-0.1057527;0.3664001;-0.01975325,-0.1658807;0.1808898;-0.06414391,-0.2223874;-0.0305326;-0.1850057,0.07589188;0.005350792;-0.02473443,0.0829055;-0.2934645;0.0009610672,0.07008335;-0.5863661;0.06455558,0.08294306;-0.6165298;0.00617408,-0.06447875;0.003135396;-0.04725104,-0.1028221;-0.2910995;-0.003028762,-0.1021961;-0.5847164;0.05852387,-0.1059698;-0.6127247;-0.003929894,0.002183623;0.3993879;0.02100888,36.84851
-0;0;0,0.001739032;0.1998017;0.008731534,0.0035047;0.4997419;0.008519031,0.1160021;0.3783302;-0.02283326,0.1705547;0.1865277;-0.007476136,0.2020488;-0.05964632;-0.03758352,-0.1081453;0.363396;-0.01571052,-0.15459;0.1701166;0.006334782,-0.1850597;-0.07765359;0.01980713,0.07109336;0.006797643;-0.03604893,0.09384234;-0.2907474;-0.005235754,0.08105713;-0.5823309;0.06415888,0.08961811;-0.6162914;0.01051804,-0.07077107;0.001470548;-0.03727324,-0.09515776;-0.295759;-0.004717343,-0.09478034;-0.5884784;0.06097275,-0.0970745;-0.556379;-0.03738531,0.00297273;0.3997816;0.01128704,0;0;0,0.0009834724;0.1995223;0.01377968,0.002525908;0.4993862;0.02070973,0.1187663;0.3814639;0.0001486223,0.1699809;0.1890225;0.01867843,0.2097432;-0.05678466;-0.003633136,-0.1062761;0.3664825;-0.01898006,-0.1658905;0.1799487;-0.0596158,-0.2235515;-0.03474942;-0.1739833,0.07583019;0.005441469;-0.02490326,0.08293984;-0.2933592;0.0009360053,0.07022144;-0.5862157;0.06475843,0.08203196;-0.6153305;0.00474713,-0.06457836;0.003078542;-0.04711854,-0.1028811;-0.2911664;-0.002927821,-0.1026698;-0.5847921;0.05858533,-0.1063709;-0.61079;-0.006304085,0.001964971;0.3993883;0.0210333,36.87074
-0;0;0,0.001739032;0.1998017;0.008731534,0.0035047;0.4997419;0.008519031,0.1160021;0.3783302;-0.02283326,0.1705547;0.1865277;-0.007476136,0.2020488;-0.05964632;-0.03758352,-0.1081453;0.363396;-0.01571052,-0.15459;0.1701166;0.006334782,-0.1850597;-0.07765359;0.01980713,0.07109336;0.006797643;-0.03604893,0.09384234;-0.2907474;-0.005235754,0.08105713;-0.5823309;0.06415888,0.08961811;-0.6162914;0.01051804,-0.07077107;0.001470548;-0.03727324,-0.09515776;-0.295759;-0.004717343,-0.09478034;-0.5884784;0.06097275,-0.0970745;-0.556379;-0.03738531,0.00297273;0.3997816;0.01128704,0;0;0,0.0009834724;0.1995223;0.01377968,0.002525908;0.4993862;0.02070973,0.1187663;0.3814639;0.0001486223,0.1699809;0.1890225;0.01867843,0.2097432;-0.05678466;-0.003633136,-0.1062761;0.3664825;-0.01898006,-0.1658905;0.1799487;-0.0596158,-0.2235515;-0.03474942;-0.1739833,0.07583019;0.005441469;-0.02490326,0.08293984;-0.2933592;0.0009360053,0.07022144;-0.5862157;0.06475843,0.08203196;-0.6153305;0.00474713,-0.06457836;0.003078542;-0.04711854,-0.1028811;-0.2911664;-0.002927821,-0.1026698;-0.5847921;0.05858533,-0.1063709;-0.61079;-0.006304085,0.001964971;0.3993883;0.0210333,36.88223
-0;0;0,0.001579139;0.1998083;0.008611074,0.003275254;0.4997492;0.008199834,0.1156561;0.3784422;-0.02354039,0.1700412;0.1865735;-0.008417858,0.2016882;-0.05960678;-0.03831325,-0.1083699;0.3631583;-0.01567171,-0.1550175;0.1699819;0.006842982,-0.1849795;-0.07783379;0.02061431,0.07100031;0.006751846;-0.03624042,0.09400045;-0.2907414;-0.00511498,0.08131796;-0.5823191;0.06432289,0.08990275;-0.6158651;0.01004237,-0.07082741;0.001508954;-0.03716451,-0.09515378;-0.2957263;-0.004615087,-0.09480727;-0.5885386;0.06065992,-0.09738569;-0.5564392;-0.03769109,0.002741007;0.3997904;0.01102024,0;0;0,0.0009834724;0.1995223;0.01377968,0.002525908;0.4993862;0.02070973,0.1187663;0.3814639;0.0001486223,0.1699809;0.1890225;0.01867843,0.2097432;-0.05678466;-0.003633136,-0.1062761;0.3664825;-0.01898006,-0.1658905;0.1799487;-0.0596158,-0.2235515;-0.03474942;-0.1739833,0.07583019;0.005441469;-0.02490326,0.08293984;-0.2933592;0.0009360053,0.07022144;-0.5862157;0.06475843,0.08203196;-0.6153305;0.00474713,-0.06457836;0.003078542;-0.04711854,-0.1028811;-0.2911664;-0.002927821,-0.1026698;-0.5847921;0.05858533,-0.1063709;-0.61079;-0.006304085,0.001964971;0.3993883;0.0210333,36.90427
-0;0;0,0.001579139;0.1998083;0.008611074,0.003275254;0.4997492;0.008199834,0.1156561;0.3784422;-0.02354039,0.1700412;0.1865735;-0.008417858,0.2016882;-0.05960678;-0.03831325,-0.1083699;0.3631583;-0.01567171,-0.1550175;0.1699819;0.006842982,-0.1849795;-0.07783379;0.02061431,0.07100031;0.006751846;-0.03624042,0.09400045;-0.2907414;-0.00511498,0.08131796;-0.5823191;0.06432289,0.08990275;-0.6158651;0.01004237,-0.07082741;0.001508954;-0.03716451,-0.09515378;-0.2957263;-0.004615087,-0.09480727;-0.5885386;0.06065992,-0.09738569;-0.5564392;-0.03769109,0.002741007;0.3997904;0.01102024,0;0;0,0.0009834724;0.1995223;0.01377968,0.002525908;0.4993862;0.02070973,0.1187663;0.3814639;0.0001486223,0.1699809;0.1890225;0.01867843,0.2097432;-0.05678466;-0.003633136,-0.1062761;0.3664825;-0.01898006,-0.1658905;0.1799487;-0.0596158,-0.2235515;-0.03474942;-0.1739833,0.07583019;0.005441469;-0.02490326,0.08293984;-0.2933592;0.0009360053,0.07022144;-0.5862157;0.06475843,0.08203196;-0.6153305;0.00474713,-0.06457836;0.003078542;-0.04711854,-0.1028811;-0.2911664;-0.002927821,-0.1026698;-0.5847921;0.05858533,-0.1063709;-0.61079;-0.006304085,0.001964971;0.3993883;0.0210333,36.91578
-0;0;0,0.001505268;0.1998138;0.00849646,0.003275507;0.4997543;0.007891556,0.115699;0.3783742;-0.02346723,0.169603;0.1863153;-0.009054703,0.2011138;-0.05985048;-0.03921227,-0.1084808;0.3630108;-0.0154204,-0.1548999;0.169814;0.007389139,-0.1846817;-0.07803948;0.02086889,0.07089458;0.006672569;-0.03646141,0.09438504;-0.2907765;-0.00528012,0.08159472;-0.5822856;0.06442527,0.09059066;-0.6152903;0.009386163,-0.0709929;0.001602787;-0.03684344,-0.09483575;-0.2957044;-0.004594699,-0.09426056;-0.5885618;0.06047592,-0.09694112;-0.5564713;-0.03787072,0.002698905;0.3997973;0.01076768,0;0;0,0.000837805;0.1995199;0.01382439,0.002158332;0.4993825;0.02084471,0.1183633;0.3812078;-0.0001865868,0.1696409;0.1887772;0.01828164,0.2098936;-0.05679663;-0.00566043,-0.1066337;0.3664409;-0.01863623,-0.1660701;0.1791755;-0.05603929,-0.2238596;-0.03935289;-0.1628368,0.075697;0.005537569;-0.02528433,0.0828432;-0.2931998;0.001266191,0.07022738;-0.5860087;0.06532703,0.08133993;-0.6146136;0.004517656,-0.06479754;0.003007398;-0.0468213,-0.1029779;-0.2912307;-0.002479739,-0.1027577;-0.5848734;0.05895278,-0.1064963;-0.6113786;-0.005335506,0.001681715;0.3993841;0.0211446,36.9381
-0;0;0,0.001419999;0.1998192;0.008382066,0.003171837;0.4997594;0.007555704,0.115364;0.3782276;-0.02437065,0.1691114;0.1861334;-0.009843552,0.2004594;-0.06003706;-0.04013234,-0.1086315;0.3629836;-0.01546317,-0.1553584;0.1699034;0.007701863,-0.1849039;-0.07799853;0.02080582,0.07078728;0.006590196;-0.0366842,0.09463836;-0.2908124;-0.005334377,0.08195452;-0.5823054;0.06445795,0.0907596;-0.614938;0.008831292,-0.07104962;0.001667106;-0.03673107,-0.09480269;-0.295664;-0.004636765,-0.09413278;-0.5885589;0.0602642,-0.09713305;-0.5564709;-0.03807274,0.002588825;0.3998046;0.01050323,0;0;0,0.000837805;0.1995199;0.01382439,0.002158332;0.4993825;0.02084471,0.1183633;0.3812078;-0.0001865868,0.1696409;0.1887772;0.01828164,0.2098936;-0.05679663;-0.00566043,-0.1066337;0.3664409;-0.01863623,-0.1660701;0.1791755;-0.05603929,-0.2238596;-0.03935289;-0.1628368,0.075697;0.005537569;-0.02528433,0.0828432;-0.2931998;0.001266191,0.07022738;-0.5860087;0.06532703,0.08133993;-0.6146136;0.004517656,-0.06479754;0.003007398;-0.0468213,-0.1029779;-0.2912307;-0.002479739,-0.1027577;-0.5848734;0.05895278,-0.1064963;-0.6113786;-0.005335506,0.001681715;0.3993841;0.0211446,36.95992
-0;0;0,0.001419999;0.1998192;0.008382066,0.003171837;0.4997594;0.007555704,0.115364;0.3782276;-0.02437065,0.1691114;0.1861334;-0.009843552,0.2004594;-0.06003706;-0.04013234,-0.1086315;0.3629836;-0.01546317,-0.1553584;0.1699034;0.007701863,-0.1849039;-0.07799853;0.02080582,0.07078728;0.006590196;-0.0366842,0.09463836;-0.2908124;-0.005334377,0.08195452;-0.5823054;0.06445795,0.0907596;-0.614938;0.008831292,-0.07104962;0.001667106;-0.03673107,-0.09480269;-0.295664;-0.004636765,-0.09413278;-0.5885589;0.0602642,-0.09713305;-0.5564709;-0.03807274,0.002588825;0.3998046;0.01050323,0;0;0,0.000837805;0.1995199;0.01382439,0.002158332;0.4993825;0.02084471,0.1183633;0.3812078;-0.0001865868,0.1696409;0.1887772;0.01828164,0.2098936;-0.05679663;-0.00566043,-0.1066337;0.3664409;-0.01863623,-0.1660701;0.1791755;-0.05603929,-0.2238596;-0.03935289;-0.1628368,0.075697;0.005537569;-0.02528433,0.0828432;-0.2931998;0.001266191,0.07022738;-0.5860087;0.06532703,0.08133993;-0.6146136;0.004517656,-0.06479754;0.003007398;-0.0468213,-0.1029779;-0.2912307;-0.002479739,-0.1027577;-0.5848734;0.05895278,-0.1064963;-0.6113786;-0.005335506,0.001681715;0.3993841;0.0211446,36.97152
-0;0;0,0.001584664;0.1998154;0.008443292,0.003607109;0.4997543;0.007696329,0.1155938;0.3781846;-0.02462177,0.1692466;0.1860426;-0.01038071,0.200591;-0.06014125;-0.0405641,-0.1082186;0.3627628;-0.0153171,-0.1550636;0.1697244;0.007958194,-0.1849406;-0.07818392;0.02015784,0.07072586;0.006467032;-0.03682431,0.0953894;-0.2908297;-0.005100708,0.08265541;-0.5822728;0.06489061,0.0920909;-0.6144863;0.008748714,-0.07107916;0.001799595;-0.03666761,-0.09436408;-0.2955574;-0.004471116,-0.09357951;-0.5884762;0.06032096,-0.09673121;-0.556381;-0.03801256,0.00293838;0.399799;0.01061425,0;0;0,0.0007593301;0.1995274;0.01371963,0.001984308;0.4993922;0.02066671,0.1180472;0.3815125;-0.001514642,0.1694898;0.1891595;0.01729912,0.210352;-0.05636035;-0.006159447,-0.1068496;0.3664216;-0.01856448,-0.1663149;0.1785648;-0.05282423,-0.2237066;-0.04414161;-0.1508448,0.07558571;0.00571377;-0.02557642,0.08300733;-0.2929698;0.00149837,0.07036689;-0.5857392;0.06573487,0.08200187;-0.6148732;0.005714662,-0.0649564;0.002879382;-0.04660874,-0.1029165;-0.2913747;-0.002183747,-0.1029288;-0.584985;0.05940334,-0.1060084;-0.6126391;-0.003528073,0.001540343;0.3993937;0.02098877,36.99327
-0;0;0,0.001584664;0.1998154;0.008443292,0.003607109;0.4997543;0.007696329,0.1155938;0.3781846;-0.02462177,0.1692466;0.1860426;-0.01038071,0.200591;-0.06014125;-0.0405641,-0.1082186;0.3627628;-0.0153171,-0.1550636;0.1697244;0.007958194,-0.1849406;-0.07818392;0.02015784,0.07072586;0.006467032;-0.03682431,0.0953894;-0.2908297;-0.005100708,0.08265541;-0.5822728;0.06489061,0.0920909;-0.6144863;0.008748714,-0.07107916;0.001799595;-0.03666761,-0.09436408;-0.2955574;-0.004471116,-0.09357951;-0.5884762;0.06032096,-0.09673121;-0.556381;-0.03801256,0.00293838;0.399799;0.01061425,0;0;0,0.0007593301;0.1995274;0.01371963,0.001984308;0.4993922;0.02066671,0.1180472;0.3815125;-0.001514642,0.1694898;0.1891595;0.01729912,0.210352;-0.05636035;-0.006159447,-0.1068496;0.3664216;-0.01856448,-0.1663149;0.1785648;-0.05282423,-0.2237066;-0.04414161;-0.1508448,0.07558571;0.00571377;-0.02557642,0.08300733;-0.2929698;0.00149837,0.07036689;-0.5857392;0.06573487,0.08200187;-0.6148732;0.005714662,-0.0649564;0.002879382;-0.04660874,-0.1029165;-0.2913747;-0.002183747,-0.1029288;-0.584985;0.05940334,-0.1060084;-0.6126391;-0.003528073,0.001540343;0.3993937;0.02098877,37.00498
-0;0;0,0.001558544;0.1998119;0.008530442,0.003557189;0.4997516;0.007924903,0.115486;0.3781334;-0.02462443,0.1689426;0.185912;-0.010719,0.2002312;-0.06022942;-0.04130356,-0.1083683;0.3628803;-0.0148647,-0.1553233;0.1698263;0.008056503,-0.1855178;-0.07812394;0.01849594,0.07060565;0.00652619;-0.0370439,0.09522063;-0.2907287;-0.004893634,0.08265353;-0.5821041;0.065409,0.09208986;-0.6139687;0.008759737,-0.07113881;0.001747817;-0.03655428,-0.09465941;-0.2955695;-0.004163109,-0.09371605;-0.5884846;0.06064317,-0.09699888;-0.5563771;-0.03768833,0.002894336;0.3997948;0.01078594,0;0;0,0.0007593301;0.1995274;0.01371963,0.001984308;0.4993922;0.02066671,0.1180472;0.3815125;-0.001514642,0.1694898;0.1891595;0.01729912,0.210352;-0.05636035;-0.006159447,-0.1068496;0.3664216;-0.01856448,-0.1663149;0.1785648;-0.05282423,-0.2237066;-0.04414161;-0.1508448,0.07558571;0.00571377;-0.02557642,0.08300733;-0.2929698;0.00149837,0.07036689;-0.5857392;0.06573487,0.08200187;-0.6148732;0.005714662,-0.0649564;0.002879382;-0.04660874,-0.1029165;-0.2913747;-0.002183747,-0.1029288;-0.584985;0.05940334,-0.1060084;-0.6126391;-0.003528073,0.001540343;0.3993937;0.02098877,37.02717
-0;0;0,0.001558544;0.1998119;0.008530442,0.003557189;0.4997516;0.007924903,0.115486;0.3781334;-0.02462443,0.1689426;0.185912;-0.010719,0.2002312;-0.06022942;-0.04130356,-0.1083683;0.3628803;-0.0148647,-0.1553233;0.1698263;0.008056503,-0.1855178;-0.07812394;0.01849594,0.07060565;0.00652619;-0.0370439,0.09522063;-0.2907287;-0.004893634,0.08265353;-0.5821041;0.065409,0.09208986;-0.6139687;0.008759737,-0.07113881;0.001747817;-0.03655428,-0.09465941;-0.2955695;-0.004163109,-0.09371605;-0.5884846;0.06064317,-0.09699888;-0.5563771;-0.03768833,0.002894336;0.3997948;0.01078594,0;0;0,0.0007348597;0.1995268;0.01373088,0.001928629;0.4993907;0.02072174,0.1179169;0.3816052;-0.001992604,0.1693288;0.1892085;0.01645477,0.2104733;-0.05625495;-0.00710036,-0.1071588;0.3666462;-0.01797961,-0.1661675;0.1781705;-0.0495217,-0.2245255;-0.04673241;-0.1417876,0.07548499;0.005807847;-0.02585119,0.08311995;-0.2928568;0.001372881,0.07027109;-0.5856018;0.06567904,0.08221862;-0.6146547;0.005613204,-0.06507432;0.002736236;-0.04645261,-0.1029049;-0.2915649;-0.002229065,-0.1029545;-0.5851535;0.05946174,-0.1061712;-0.6130543;-0.003157094,0.001496785;0.3993921;0.02102887,37.03843
-0;0;0,0.001558544;0.1998119;0.008530442,0.003557189;0.4997516;0.007924903,0.115486;0.3781334;-0.02462443,0.1689426;0.185912;-0.010719,0.2002312;-0.06022942;-0.04130356,-0.1083683;0.3628803;-0.0148647,-0.1553233;0.1698263;0.008056503,-0.1855178;-0.07812394;0.01849594,0.07060565;0.00652619;-0.0370439,0.09522063;-0.2907287;-0.004893634,0.08265353;-0.5821041;0.065409,0.09208986;-0.6139687;0.008759737,-0.07113881;0.001747817;-0.03655428,-0.09465941;-0.2955695;-0.004163109,-0.09371605;-0.5884846;0.06064317,-0.09699888;-0.5563771;-0.03768833,0.002894336;0.3997948;0.01078594,0;0;0,0.0007348597;0.1995268;0.01373088,0.001928629;0.4993907;0.02072174,0.1179169;0.3816052;-0.001992604,0.1693288;0.1892085;0.01645477,0.2104733;-0.05625495;-0.00710036,-0.1071588;0.3666462;-0.01797961,-0.1661675;0.1781705;-0.0495217,-0.2245255;-0.04673241;-0.1417876,0.07548499;0.005807847;-0.02585119,0.08311995;-0.2928568;0.001372881,0.07027109;-0.5856018;0.06567904,0.08221862;-0.6146547;0.005613204,-0.06507432;0.002736236;-0.04645261,-0.1029049;-0.2915649;-0.002229065,-0.1029545;-0.5851535;0.05946174,-0.1061712;-0.6130543;-0.003157094,0.001496785;0.3993921;0.02102887,37.04952
-0;0;0,0.00151519;0.1998132;0.008507934,0.003526443;0.4997529;0.007870512,0.1154675;0.3781567;-0.02460264,0.1685229;0.1857829;-0.0112806,0.1995474;-0.060325;-0.04239912,-0.1085797;0.3631347;-0.01454738,-0.1553304;0.1699916;0.008038555,-0.1862482;-0.0779939;0.01491405,0.07059458;0.006527869;-0.03706471,0.09529939;-0.2907528;-0.005222905,0.08305065;-0.5821366;0.06510106,0.09239033;-0.6141309;0.008623548,-0.07109407;0.001751595;-0.03664104,-0.09536047;-0.2954662;-0.003887985,-0.09338216;-0.5884169;0.06073381,-0.09675574;-0.5563092;-0.03759463,0.00284986;0.3997963;0.01073853,0;0;0,0.0007348597;0.1995268;0.01373088,0.001928629;0.4993907;0.02072174,0.1179169;0.3816052;-0.001992604,0.1693288;0.1892085;0.01645477,0.2104733;-0.05625495;-0.00710036,-0.1071588;0.3666462;-0.01797961,-0.1661675;0.1781705;-0.0495217,-0.2245255;-0.04673241;-0.1417876,0.07548499;0.005807847;-0.02585119,0.08311995;-0.2928568;0.001372881,0.07027109;-0.5856018;0.06567904,0.08221862;-0.6146547;0.005613204,-0.06507432;0.002736236;-0.04645261,-0.1029049;-0.2915649;-0.002229065,-0.1029545;-0.5851535;0.05946174,-0.1061712;-0.6130543;-0.003157094,0.001496785;0.3993921;0.02102887,37.06121
-0;0;0,0.00151519;0.1998132;0.008507934,0.003526443;0.4997529;0.007870512,0.1154675;0.3781567;-0.02460264,0.1685229;0.1857829;-0.0112806,0.1995474;-0.060325;-0.04239912,-0.1085797;0.3631347;-0.01454738,-0.1553304;0.1699916;0.008038555,-0.1862482;-0.0779939;0.01491405,0.07059458;0.006527869;-0.03706471,0.09529939;-0.2907528;-0.005222905,0.08305065;-0.5821366;0.06510106,0.09239033;-0.6141309;0.008623548,-0.07109407;0.001751595;-0.03664104,-0.09536047;-0.2954662;-0.003887985,-0.09338216;-0.5884169;0.06073381,-0.09675574;-0.5563092;-0.03759463,0.00284986;0.3997963;0.01073853,0;0;0,0.0007167326;0.1995291;0.01369814,0.001871826;0.499394;0.02065095,0.1178058;0.3814523;-0.002279639,0.169264;0.1890609;0.01609454,0.2106033;-0.05634737;-0.007693371,-0.107156;0.3663593;-0.01791515,-0.1658745;0.1772377;-0.04593611,-0.2237022;-0.05225599;-0.1264879,0.07539731;0.005857873;-0.02609465,0.0832694;-0.2927793;0.001362426,0.07028241;-0.5855139;0.06568816,0.08241535;-0.6145591;0.005649522,-0.06517584;0.00265574;-0.04631476,-0.1027892;-0.2917144;-0.002366476,-0.1029301;-0.585278;0.05944303,-0.1073266;-0.6126586;-0.003746375,0.001455394;0.3993954;0.02097161,37.08311
-0;0;0,0.001602721;0.1998084;0.008604795,0.003733724;0.4997473;0.008064184,0.1156077;0.3779614;-0.02441612,0.1685615;0.1855519;-0.01120739,0.1995531;-0.06053963;-0.04248836,-0.1085648;0.3632214;-0.01383037,-0.1549838;0.1699124;0.008007493,-0.1875556;-0.07792999;0.01164565,0.07057119;0.006490241;-0.03711581,0.09522646;-0.2907662;-0.005011018,0.08315699;-0.5821425;0.06537522,0.09262997;-0.6139918;0.008710004,-0.07112747;0.001775785;-0.03657499,-0.09538682;-0.2954097;-0.003525417,-0.09316806;-0.5882903;0.06140575,-0.09668624;-0.5561647;-0.03692089,0.003019403;0.3997902;0.01090221,0;0;0,0.0007167326;0.1995291;0.01369814,0.001871826;0.499394;0.02065095,0.1178058;0.3814523;-0.002279639,0.169264;0.1890609;0.01609454,0.2106033;-0.05634737;-0.007693371,-0.107156;0.3663593;-0.01791515,-0.1658745;0.1772377;-0.04593611,-0.2237022;-0.05225599;-0.1264879,0.07539731;0.005857873;-0.02609465,0.0832694;-0.2927793;0.001362426,0.07028241;-0.5855139;0.06568816,0.08241535;-0.6145591;0.005649522,-0.06517584;0.00265574;-0.04631476,-0.1027892;-0.2917144;-0.002366476,-0.1029301;-0.585278;0.05944303,-0.1073266;-0.6126586;-0.003746375,0.001455394;0.3993954;0.02097161,37.10556
-0;0;0,0.001540565;0.1998058;0.008676835,0.003598005;0.4997456;0.008241644,0.1155352;0.3779244;-0.02412789,0.1682298;0.1854174;-0.01130744,0.1988295;-0.06054583;-0.04395331,-0.1087222;0.3632352;-0.01351836,-0.1552223;0.1698178;0.007157073,-0.1898243;-0.07777146;0.005661266,0.07052074;0.006610051;-0.0371905,0.0949687;-0.2906754;-0.005196016,0.08320387;-0.5819944;0.06547834,0.09231982;-0.6142552;0.00935293,-0.07117014;0.001670197;-0.03649687,-0.09538498;-0.2955057;-0.003328808,-0.0932845;-0.5883884;0.06159639,-0.09682892;-0.5562588;-0.03673005,0.002906196;0.3997871;0.01103907,0;0;0,0.0007167326;0.1995291;0.01369814,0.001871826;0.499394;0.02065095,0.1178058;0.3814523;-0.002279639,0.169264;0.1890609;0.01609454,0.2106033;-0.05634737;-0.007693371,-0.107156;0.3663593;-0.01791515,-0.1658745;0.1772377;-0.04593611,-0.2237022;-0.05225599;-0.1264879,0.07539731;0.005857873;-0.02609465,0.0832694;-0.2927793;0.001362426,0.07028241;-0.5855139;0.06568816,0.08241535;-0.6145591;0.005649522,-0.06517584;0.00265574;-0.04631476,-0.1027892;-0.2917144;-0.002366476,-0.1029301;-0.585278;0.05944303,-0.1073266;-0.6126586;-0.003746375,0.001455394;0.3993954;0.02097161,37.128
-0;0;0,0.001540565;0.1998058;0.008676835,0.003598005;0.4997456;0.008241644,0.1155352;0.3779244;-0.02412789,0.1682298;0.1854174;-0.01130744,0.1988295;-0.06054583;-0.04395331,-0.1087222;0.3632352;-0.01351836,-0.1552223;0.1698178;0.007157073,-0.1898243;-0.07777146;0.005661266,0.07052074;0.006610051;-0.0371905,0.0949687;-0.2906754;-0.005196016,0.08320387;-0.5819944;0.06547834,0.09231982;-0.6142552;0.00935293,-0.07117014;0.001670197;-0.03649687,-0.09538498;-0.2955057;-0.003328808,-0.0932845;-0.5883884;0.06159639,-0.09682892;-0.5562588;-0.03673005,0.002906196;0.3997871;0.01103907,0;0;0,0.0005530964;0.1995333;0.01364373,0.001223298;0.4994023;0.02047584,0.1172873;0.3816386;-0.002860883,0.1688422;0.1892588;0.01536328,0.2104167;-0.05604643;-0.009068199,-0.1075747;0.3661181;-0.01793318,-0.1651934;0.1760707;-0.04164103,-0.2222621;-0.05537984;-0.1169658,0.07538251;0.005984201;-0.02610874,0.08326526;-0.2926515;0.001361528,0.07036152;-0.5854374;0.06546988,0.08243118;-0.614756;0.005780078,-0.06522785;0.002455459;-0.04625254,-0.102754;-0.2920228;-0.002958819,-0.1029718;-0.5856166;0.05870682,-0.1085631;-0.6134858;-0.003784157,0.001000588;0.3994033;0.02084192,37.13921
-0;0;0,0.001581591;0.1997978;0.008851204,0.003671356;0.4997377;0.00858264,0.1156012;0.3779399;-0.02387398,0.1680987;0.1853673;-0.01123142,0.1983632;-0.06059657;-0.04418333,-0.1086303;0.3631788;-0.01325961,-0.1557441;0.1698305;0.006658709,-0.1904141;-0.07769021;0.001048191,0.07058254;0.006549146;-0.03708386,0.09483017;-0.2907723;-0.005271636,0.08322912;-0.5819852;0.06586526,0.09225767;-0.6133413;0.008422419,-0.07113849;0.001737894;-0.03655537,-0.09501002;-0.2954544;-0.003285054,-0.09305494;-0.5882894;0.06185931,-0.09660389;-0.5561443;-0.03646978,0.002976922;0.3997777;0.01132381,0;0;0,0.0005530964;0.1995333;0.01364373,0.001223298;0.4994023;0.02047584,0.1172873;0.3816386;-0.002860883,0.1688422;0.1892588;0.01536328,0.2104167;-0.05604643;-0.009068199,-0.1075747;0.3661181;-0.01793318,-0.1651934;0.1760707;-0.04164103,-0.2222621;-0.05537984;-0.1169658,0.07538251;0.005984201;-0.02610874,0.08326526;-0.2926515;0.001361528,0.07036152;-0.5854374;0.06546988,0.08243118;-0.614756;0.005780078,-0.06522785;0.002455459;-0.04625254,-0.102754;-0.2920228;-0.002958819,-0.1029718;-0.5856166;0.05870682,-0.1085631;-0.6134858;-0.003784157,0.001000588;0.3994033;0.02084192,37.16109
-0;0;0,0.001581591;0.1997978;0.008851204,0.003671356;0.4997377;0.00858264,0.1156012;0.3779399;-0.02387398,0.1680987;0.1853673;-0.01123142,0.1983632;-0.06059657;-0.04418333,-0.1086303;0.3631788;-0.01325961,-0.1557441;0.1698305;0.006658709,-0.1904141;-0.07769021;0.001048191,0.07058254;0.006549146;-0.03708386,0.09483017;-0.2907723;-0.005271636,0.08322912;-0.5819852;0.06586526,0.09225767;-0.6133413;0.008422419,-0.07113849;0.001737894;-0.03655537,-0.09501002;-0.2954544;-0.003285054,-0.09305494;-0.5882894;0.06185931,-0.09660389;-0.5561443;-0.03646978,0.002976922;0.3997777;0.01132381,0;0;0,0.0005530964;0.1995333;0.01364373,0.001223298;0.4994023;0.02047584,0.1172873;0.3816386;-0.002860883,0.1688422;0.1892588;0.01536328,0.2104167;-0.05604643;-0.009068199,-0.1075747;0.3661181;-0.01793318,-0.1651934;0.1760707;-0.04164103,-0.2222621;-0.05537984;-0.1169658,0.07538251;0.005984201;-0.02610874,0.08326526;-0.2926515;0.001361528,0.07036152;-0.5854374;0.06546988,0.08243118;-0.614756;0.005780078,-0.06522785;0.002455459;-0.04625254,-0.102754;-0.2920228;-0.002958819,-0.1029718;-0.5856166;0.05870682,-0.1085631;-0.6134858;-0.003784157,0.001000588;0.3994033;0.02084192,37.1728
-0;0;0,0.00149116;0.1997913;0.009012567,0.003367358;0.4997339;0.009131059,0.1155172;0.3778039;-0.02294534,0.1672691;0.1849966;-0.01081862,0.1975559;-0.0608592;-0.04454768,-0.1088024;0.3630411;-0.01292777,-0.1561774;0.1695907;0.005308173,-0.1912749;-0.07781029;-0.002497508,0.07062703;0.006538182;-0.03700102,0.09484666;-0.2908132;-0.005448304,0.0834409;-0.5820825;0.0654889,0.09291707;-0.6136159;0.008370493,-0.07104943;0.00177358;-0.03672645,-0.09465949;-0.2954069;-0.003165212,-0.09297293;-0.5882535;0.06193504,-0.09637687;-0.5560871;-0.03640302,0.002750068;0.3997691;0.01171176,0;0;0,0.0005560876;0.1995304;0.01368626,0.001282226;0.4993961;0.02065793,0.1171573;0.381378;-0.003344433,0.1688906;0.1890474;0.01489303,0.2103032;-0.05628288;-0.009562273,-0.1075638;0.3660539;-0.01767874,-0.1648612;0.1755943;-0.03870614,-0.220597;-0.05940005;-0.1032907,0.07536861;0.006029726;-0.02613837,0.08333914;-0.292578;0.001608919,0.07024591;-0.5853108;0.06592117,0.08266379;-0.6145797;0.006236739,-0.06535102;0.002437224;-0.04607932,-0.1023002;-0.2921992;-0.003369499,-0.1029514;-0.5856053;0.05918012,-0.1072727;-0.611527;-0.005759981,0.001037097;0.399397;0.02097464,37.19488
-0;0;0,0.00149116;0.1997913;0.009012567,0.003367358;0.4997339;0.009131059,0.1155172;0.3778039;-0.02294534,0.1672691;0.1849966;-0.01081862,0.1975559;-0.0608592;-0.04454768,-0.1088024;0.3630411;-0.01292777,-0.1561774;0.1695907;0.005308173,-0.1912749;-0.07781029;-0.002497508,0.07062703;0.006538182;-0.03700102,0.09484666;-0.2908132;-0.005448304,0.0834409;-0.5820825;0.0654889,0.09291707;-0.6136159;0.008370493,-0.07104943;0.00177358;-0.03672645,-0.09465949;-0.2954069;-0.003165212,-0.09297293;-0.5882535;0.06193504,-0.09637687;-0.5560871;-0.03640302,0.002750068;0.3997691;0.01171176,0;0;0,0.0005560876;0.1995304;0.01368626,0.001282226;0.4993961;0.02065793,0.1171573;0.381378;-0.003344433,0.1688906;0.1890474;0.01489303,0.2103032;-0.05628288;-0.009562273,-0.1075638;0.3660539;-0.01767874,-0.1648612;0.1755943;-0.03870614,-0.220597;-0.05940005;-0.1032907,0.07536861;0.006029726;-0.02613837,0.08333914;-0.292578;0.001608919,0.07024591;-0.5853108;0.06592117,0.08266379;-0.6145797;0.006236739,-0.06535102;0.002437224;-0.04607932,-0.1023002;-0.2921992;-0.003369499,-0.1029514;-0.5856053;0.05918012,-0.1072727;-0.611527;-0.005759981,0.001037097;0.399397;0.02097464,37.21712
-0;0;0,0.001361118;0.1997857;0.009155287,0.002875229;0.4997315;0.009792108,0.1150973;0.3777277;-0.02264474,0.1667699;0.1848959;-0.01056767,0.1968943;-0.06094301;-0.04456395,-0.1091478;0.3630288;-0.01255494,-0.1564542;0.1694442;0.004389744,-0.1923826;-0.07767418;-0.007511517,0.07065697;0.006495866;-0.03695127,0.09477506;-0.2908824;-0.005575184,0.08325322;-0.5821803;0.06522608,0.09482343;-0.6142645;0.009294823,-0.07103715;0.001824033;-0.03674773,-0.09443291;-0.2953636;-0.003100019,-0.09290723;-0.5882201;0.06195948,-0.09637471;-0.5560328;-0.03638017,0.002387639;0.3997606;0.01215577,0;0;0,0.0005560876;0.1995304;0.01368626,0.001282226;0.4993961;0.02065793,0.1171573;0.381378;-0.003344433,0.1688906;0.1890474;0.01489303,0.2103032;-0.05628288;-0.009562273,-0.1075638;0.3660539;-0.01767874,-0.1648612;0.1755943;-0.03870614,-0.220597;-0.05940005;-0.1032907,0.07536861;0.006029726;-0.02613837,0.08333914;-0.292578;0.001608919,0.07024591;-0.5853108;0.06592117,0.08266379;-0.6145797;0.006236739,-0.06535102;0.002437224;-0.04607932,-0.1023002;-0.2921992;-0.003369499,-0.1029514;-0.5856053;0.05918012,-0.1072727;-0.611527;-0.005759981,0.001037097;0.399397;0.02097464,37.23946
-0;0;0,0.001361118;0.1997857;0.009155287,0.002875229;0.4997315;0.009792108,0.1150973;0.3777277;-0.02264474,0.1667699;0.1848959;-0.01056767,0.1968943;-0.06094301;-0.04456395,-0.1091478;0.3630288;-0.01255494,-0.1564542;0.1694442;0.004389744,-0.1923826;-0.07767418;-0.007511517,0.07065697;0.006495866;-0.03695127,0.09477506;-0.2908824;-0.005575184,0.08325322;-0.5821803;0.06522608,0.09482343;-0.6142645;0.009294823,-0.07103715;0.001824033;-0.03674773,-0.09443291;-0.2953636;-0.003100019,-0.09290723;-0.5882201;0.06195948,-0.09637471;-0.5560328;-0.03638017,0.002387639;0.3997606;0.01215577,0;0;0,0.0005160399;0.1995405;0.01354001,0.001233763;0.4994113;0.02028697,0.1170839;0.3813159;-0.003684459,0.1687194;0.1889424;0.0143759,0.2098604;-0.05639167;-0.01049634,-0.1077524;0.3659666;-0.01749626,-0.1643656;0.1748226;-0.03358718,-0.2192402;-0.06197508;-0.09203073,0.07527974;0.00603884;-0.02639118,0.08351766;-0.2925403;0.001585083,0.07032824;-0.5852334;0.06605788,0.0830496;-0.6151441;0.007300321,-0.06542949;0.002438959;-0.04596773,-0.1019842;-0.292267;-0.003397897,-0.1031684;-0.5856171;0.05940613,-0.1069504;-0.6125972;-0.004310101,0.0009853574;0.3994124;0.02068055,37.25065
-0;0;0,0.001423479;0.1997786;0.009299867,0.003004267;0.4997238;0.01006193,0.1152175;0.3775662;-0.02228927,0.1668115;0.1846974;-0.01046971,0.1962226;-0.06112863;-0.04517611,-0.108994;0.3627979;-0.01219358,-0.1563955;0.1691255;0.003429938,-0.193794;-0.07761598;-0.01140246,0.07078888;0.006394331;-0.03671575,0.09472075;-0.2910234;-0.005571857,0.08341296;-0.582282;0.0654252,0.09451833;-0.6131797;0.007699717,-0.07089546;0.002003358;-0.03701108,-0.09394988;-0.295179;-0.003082432,-0.09218168;-0.5878296;0.06289116,-0.0956376;-0.5556244;-0.03545212,0.002497952;0.399752;0.01238185,0;0;0,0.0005160399;0.1995405;0.01354001,0.001233763;0.4994113;0.02028697,0.1170839;0.3813159;-0.003684459,0.1687194;0.1889424;0.0143759,0.2098604;-0.05639167;-0.01049634,-0.1077524;0.3659666;-0.01749626,-0.1643656;0.1748226;-0.03358718,-0.2192402;-0.06197508;-0.09203073,0.07527974;0.00603884;-0.02639118,0.08351766;-0.2925403;0.001585083,0.07032824;-0.5852334;0.06605788,0.0830496;-0.6151441;0.007300321,-0.06542949;0.002438959;-0.04596773,-0.1019842;-0.292267;-0.003397897,-0.1031684;-0.5856171;0.05940613,-0.1069504;-0.6125972;-0.004310101,0.0009853574;0.3994124;0.02068055,37.2728
-0;0;0,0.001423479;0.1997786;0.009299867,0.003004267;0.4997238;0.01006193,0.1152175;0.3775662;-0.02228927,0.1668115;0.1846974;-0.01046971,0.1962226;-0.06112863;-0.04517611,-0.108994;0.3627979;-0.01219358,-0.1563955;0.1691255;0.003429938,-0.193794;-0.07761598;-0.01140246,0.07078888;0.006394331;-0.03671575,0.09472075;-0.2910234;-0.005571857,0.08341296;-0.582282;0.0654252,0.09451833;-0.6131797;0.007699717,-0.07089546;0.002003358;-0.03701108,-0.09394988;-0.295179;-0.003082432,-0.09218168;-0.5878296;0.06289116,-0.0956376;-0.5556244;-0.03545212,0.002497952;0.399752;0.01238185,0;0;0,0.0003532337;0.1995486;0.01342577,0.0008443067;0.4994228;0.02004361,0.1167269;0.3813143;-0.004065825,0.1683772;0.1889486;0.0140363,0.209037;-0.05641158;-0.01136337,-0.108153;0.3659253;-0.0174144,-0.1637834;0.1741877;-0.0293288,-0.2189691;-0.06411994;-0.08094282,0.07520296;0.006030705;-0.02661099,0.08395356;-0.2925336;0.001367766,0.07057055;-0.5850978;0.06638348,0.08351703;-0.6150461;0.007726334,-0.06553543;0.002454509;-0.04581573,-0.1014145;-0.2924139;-0.003799908,-0.1031259;-0.5856285;0.05962148,-0.10681;-0.6142253;-0.002095394,0.0006680686;0.399424;0.02047789,37.28427
-0;0;0,0.00133853;0.1997745;0.00940088,0.002735321;0.4997202;0.01043532,0.115044;0.3774587;-0.02184821,0.1665744;0.1845674;-0.01011941,0.1959773;-0.06120217;-0.04523036,-0.1091891;0.3627301;-0.01188311,-0.1567682;0.1689951;0.002364966,-0.1962159;-0.0771298;-0.01677664,0.07078601;0.006409953;-0.03671858,0.09451436;-0.2910467;-0.005791122,0.08318257;-0.5823108;0.06517949,0.09485709;-0.6130899;0.007400207,-0.07089687;0.001964048;-0.03701048,-0.09395283;-0.2952399;-0.003272947,-0.09216958;-0.58789;0.06270227,-0.09556914;-0.5556748;-0.0356448,0.002291542;0.3997458;0.01265071,0;0;0,0.0003532337;0.1995486;0.01342577,0.0008443067;0.4994228;0.02004361,0.1167269;0.3813143;-0.004065825,0.1683772;0.1889486;0.0140363,0.209037;-0.05641158;-0.01136337,-0.108153;0.3659253;-0.0174144,-0.1637834;0.1741877;-0.0293288,-0.2189691;-0.06411994;-0.08094282,0.07520296;0.006030705;-0.02661099,0.08395356;-0.2925336;0.001367766,0.07057055;-0.5850978;0.06638348,0.08351703;-0.6150461;0.007726334,-0.06553543;0.002454509;-0.04581573,-0.1014145;-0.2924139;-0.003799908,-0.1031259;-0.5856285;0.05962148,-0.10681;-0.6142253;-0.002095394,0.0006680686;0.399424;0.02047789,37.29516
-0;0;0,0.00133853;0.1997745;0.00940088,0.002735321;0.4997202;0.01043532,0.115044;0.3774587;-0.02184821,0.1665744;0.1845674;-0.01011941,0.1959773;-0.06120217;-0.04523036,-0.1091891;0.3627301;-0.01188311,-0.1567682;0.1689951;0.002364966,-0.1962159;-0.0771298;-0.01677664,0.07078601;0.006409953;-0.03671858,0.09451436;-0.2910467;-0.005791122,0.08318257;-0.5823108;0.06517949,0.09485709;-0.6130899;0.007400207,-0.07089687;0.001964048;-0.03701048,-0.09395283;-0.2952399;-0.003272947,-0.09216958;-0.58789;0.06270227,-0.09556914;-0.5556748;-0.0356448,0.002291542;0.3997458;0.01265071,0;0;0,0.0003532337;0.1995486;0.01342577,0.0008443067;0.4994228;0.02004361,0.1167269;0.3813143;-0.004065825,0.1683772;0.1889486;0.0140363,0.209037;-0.05641158;-0.01136337,-0.108153;0.3659253;-0.0174144,-0.1637834;0.1741877;-0.0293288,-0.2189691;-0.06411994;-0.08094282,0.07520296;0.006030705;-0.02661099,0.08395356;-0.2925336;0.001367766,0.07057055;-0.5850978;0.06638348,0.08351703;-0.6150461;0.007726334,-0.06553543;0.002454509;-0.04581573,-0.1014145;-0.2924139;-0.003799908,-0.1031259;-0.5856285;0.05962148,-0.10681;-0.6142253;-0.002095394,0.0006680686;0.399424;0.02047789,37.31729
-0;0;0,0.001404214;0.1997666;0.009557487,0.002916836;0.4997113;0.01082207,0.1151578;0.3771021;-0.02139973,0.1666887;0.1842112;-0.00966669,0.1956708;-0.06162499;-0.04466105,-0.108951;0.3624993;-0.01170065,-0.1568968;0.1687709;0.001356706,-0.1964777;-0.07707359;-0.02086625,0.07076941;0.006323607;-0.0367655,0.09442149;-0.2911399;-0.005845368,0.08317637;-0.582357;0.06533148,0.09541755;-0.6127478;0.007129472,-0.07094605;0.002035182;-0.03691226,-0.09371068;-0.2951884;-0.003149156,-0.09200843;-0.5878716;0.06268126,-0.09066083;-0.6180101;0.002881624,0.00242977;0.3997352;0.01295341,0;0;0,0.0003213442;0.1995483;0.01342997,0.0007762302;0.4994223;0.02006988,0.1165299;0.3812575;-0.004661649,0.1681475;0.1888652;0.01324926,0.2082382;-0.05656467;-0.01238137,-0.1081849;0.3658662;-0.01741572,-0.1593598;0.1735006;-0.03682313,-0.2139292;-0.06662239;-0.0799868,0.07511595;0.006098981;-0.02684019,0.083924;-0.2924414;0.001374591,0.07041747;-0.5849581;0.06657834,0.08360369;-0.6145772;0.007528175,-0.06566129;0.002338703;-0.04564126,-0.1011281;-0.292613;-0.003860485,-0.1030861;-0.5857711;0.05981426,-0.1069389;-0.6152272;-0.0007818192,0.0006113864;0.3994233;0.02049577,37.34003
-0;0;0,0.001404214;0.1997666;0.009557487,0.002916836;0.4997113;0.01082207,0.1151578;0.3771021;-0.02139973,0.1666887;0.1842112;-0.00966669,0.1956708;-0.06162499;-0.04466105,-0.108951;0.3624993;-0.01170065,-0.1568968;0.1687709;0.001356706,-0.1964777;-0.07707359;-0.02086625,0.07076941;0.006323607;-0.0367655,0.09442149;-0.2911399;-0.005845368,0.08317637;-0.582357;0.06533148,0.09541755;-0.6127478;0.007129472,-0.07094605;0.002035182;-0.03691226,-0.09371068;-0.2951884;-0.003149156,-0.09200843;-0.5878716;0.06268126,-0.09066083;-0.6180101;0.002881624,0.00242977;0.3997352;0.01295341,0;0;0,0.0003213442;0.1995483;0.01342997,0.0007762302;0.4994223;0.02006988,0.1165299;0.3812575;-0.004661649,0.1681475;0.1888652;0.01324926,0.2082382;-0.05656467;-0.01238137,-0.1081849;0.3658662;-0.01741572,-0.1593598;0.1735006;-0.03682313,-0.2139292;-0.06662239;-0.0799868,0.07511595;0.006098981;-0.02684019,0.083924;-0.2924414;0.001374591,0.07041747;-0.5849581;0.06657834,0.08360369;-0.6145772;0.007528175,-0.06566129;0.002338703;-0.04564126,-0.1011281;-0.292613;-0.003860485,-0.1030861;-0.5857711;0.05981426,-0.1069389;-0.6152272;-0.0007818192,0.0006113864;0.3994233;0.02049577,37.35117
-0;0;0,0.00155218;0.1997494;0.009888198,0.003121466;0.4996926;0.01166795,0.1154117;0.3770939;-0.02056051,0.1668833;0.1841971;-0.008665025,0.1955003;-0.06167322;-0.04372025,-0.1086728;0.3623674;-0.01130654,-0.1568174;0.1686064;0.0004742695,-0.1960831;-0.07730877;-0.02152372,0.07076239;0.006213971;-0.03679769,0.09452461;-0.2911946;-0.005437039,0.08352368;-0.5823247;0.0661327,0.09552292;-0.6119625;0.006855045,-0.07101414;0.002124966;-0.03677605,-0.09333843;-0.295103;-0.002758395,-0.0915496;-0.5878149;0.06294203,-0.08959665;-0.6174824;0.002532832,0.002618187;0.3997123;0.01358657,0;0;0,0.0003213442;0.1995483;0.01342997,0.0007762302;0.4994223;0.02006988,0.1165299;0.3812575;-0.004661649,0.1681475;0.1888652;0.01324926,0.2082382;-0.05656467;-0.01238137,-0.1081849;0.3658662;-0.01741572,-0.1593598;0.1735006;-0.03682313,-0.2139292;-0.06662239;-0.0799868,0.07511595;0.006098981;-0.02684019,0.083924;-0.2924414;0.001374591,0.07041747;-0.5849581;0.06657834,0.08360369;-0.6145772;0.007528175,-0.06566129;0.002338703;-0.04564126,-0.1011281;-0.292613;-0.003860485,-0.1030861;-0.5857711;0.05981426,-0.1069389;-0.6152272;-0.0007818192,0.0006113864;0.3994233;0.02049577,37.37328
-0;0;0,0.00155218;0.1997494;0.009888198,0.003121466;0.4996926;0.01166795,0.1154117;0.3770939;-0.02056051,0.1668833;0.1841971;-0.008665025,0.1955003;-0.06167322;-0.04372025,-0.1086728;0.3623674;-0.01130654,-0.1568174;0.1686064;0.0004742695,-0.1960831;-0.07730877;-0.02152372,0.07076239;0.006213971;-0.03679769,0.09452461;-0.2911946;-0.005437039,0.08352368;-0.5823247;0.0661327,0.09552292;-0.6119625;0.006855045,-0.07101414;0.002124966;-0.03677605,-0.09333843;-0.295103;-0.002758395,-0.0915496;-0.5878149;0.06294203,-0.08959665;-0.6174824;0.002532832,0.002618187;0.3997123;0.01358657,0;0;0,0.0003213442;0.1995483;0.01342997,0.0007762302;0.4994223;0.02006988,0.1165299;0.3812575;-0.004661649,0.1681475;0.1888652;0.01324926,0.2082382;-0.05656467;-0.01238137,-0.1081849;0.3658662;-0.01741572,-0.1593598;0.1735006;-0.03682313,-0.2139292;-0.06662239;-0.0799868,0.07511595;0.006098981;-0.02684019,0.083924;-0.2924414;0.001374591,0.07041747;-0.5849581;0.06657834,0.08360369;-0.6145772;0.007528175,-0.06566129;0.002338703;-0.04564126,-0.1011281;-0.292613;-0.003860485,-0.1030861;-0.5857711;0.05981426,-0.1069389;-0.6152272;-0.0007818192,0.0006113864;0.3994233;0.02049577,37.3848
-0;0;0,0.001363543;0.19974;0.01010384,0.002629159;0.4996808;0.01247269,0.115119;0.3773248;-0.01976258,0.1669476;0.1845033;-0.008201866,0.1954618;-0.06141029;-0.04303663,-0.1090809;0.3624509;-0.0108225,-0.1571617;0.1686022;-0.0002908651,-0.196596;-0.07719555;-0.02327805,0.07079408;0.006240393;-0.03673221,0.09430894;-0.2911659;-0.005163819,0.08351187;-0.5823458;0.06623405,0.09566485;-0.6118087;0.006753329,-0.07099448;0.002110347;-0.0368148,-0.0933698;-0.2950842;-0.002540279,-0.09161061;-0.5879462;0.06248875,-0.08961919;-0.616364;0.0004670843,0.00221703;0.3996964;0.01418829,0;0;0,0.0001491565;0.1995572;0.01330041,0.0003719731;0.4994355;0.01974837,0.1162447;0.3813343;-0.004750917,0.1675877;0.1888358;0.01280573,0.2070434;-0.05664617;-0.01330614,-0.1085305;0.3658453;-0.01760132,-0.158641;0.1727455;-0.03179291,-0.2118246;-0.0693288;-0.06452749,0.07498804;0.006126922;-0.02718925,0.084605;-0.2923513;0.001416588,0.0712513;-0.5848653;0.06666382,0.08438703;-0.6143972;0.007484961,-0.06579174;0.002303818;-0.0454548,-0.1009292;-0.2927324;-0.003993884,-0.1022143;-0.5857371;0.06040026,-0.09801471;-0.5531573;-0.03798115,0.0002799979;0.3994368;0.02023901,37.40688
-0;0;0,0.001207253;0.1997322;0.01027688,0.002254436;0.4996701;0.01310537,0.1148055;0.3771289;-0.01917216,0.1667084;0.1843371;-0.007449511,0.1954118;-0.06152546;-0.04248814,-0.1092956;0.3624005;-0.01072471,-0.1576201;0.1685629;-0.001146269,-0.1971387;-0.0771658;-0.02471866,0.07084952;0.006230521;-0.03662686,0.09409311;-0.2911488;-0.00460754,0.08360452;-0.5824527;0.06632984,0.09669878;-0.6126572;0.008056637,-0.07094407;0.002162228;-0.03690886,-0.09334835;-0.2950158;-0.002510194,-0.0912279;-0.5878167;0.06278244,-0.09412596;-0.5555079;-0.03559756,0.001904818;0.3996829;0.01466192,0;0;0,0.0001491565;0.1995572;0.01330041,0.0003719731;0.4994355;0.01974837,0.1162447;0.3813343;-0.004750917,0.1675877;0.1888358;0.01280573,0.2070434;-0.05664617;-0.01330614,-0.1085305;0.3658453;-0.01760132,-0.158641;0.1727455;-0.03179291,-0.2118246;-0.0693288;-0.06452749,0.07498804;0.006126922;-0.02718925,0.084605;-0.2923513;0.001416588,0.0712513;-0.5848653;0.06666382,0.08438703;-0.6143972;0.007484961,-0.06579174;0.002303818;-0.0454548,-0.1009292;-0.2927324;-0.003993884,-0.1022143;-0.5857371;0.06040026,-0.09801471;-0.5531573;-0.03798115,0.0002799979;0.3994368;0.02023901,37.42918
-0;0;0,0.001207253;0.1997322;0.01027688,0.002254436;0.4996701;0.01310537,0.1148055;0.3771289;-0.01917216,0.1667084;0.1843371;-0.007449511,0.1954118;-0.06152546;-0.04248814,-0.1092956;0.3624005;-0.01072471,-0.1576201;0.1685629;-0.001146269,-0.1971387;-0.0771658;-0.02471866,0.07084952;0.006230521;-0.03662686,0.09409311;-0.2911488;-0.00460754,0.08360452;-0.5824527;0.06632984,0.09669878;-0.6126572;0.008056637,-0.07094407;0.002162228;-0.03690886,-0.09334835;-0.2950158;-0.002510194,-0.0912279;-0.5878167;0.06278244,-0.09412596;-0.5555079;-0.03559756,0.001904818;0.3996829;0.01466192,0;0;0,0.0003016604;0.1995588;0.01327365,0.0007210484;0.4994371;0.01971644,0.1165642;0.3813569;-0.004649956,0.1676633;0.1887792;0.01274975,0.2068056;-0.05676413;-0.01325665,-0.1082763;0.3657858;-0.0174809,-0.1584218;0.1725663;-0.02979664,-0.2110046;-0.07056181;-0.05477174,0.07487673;0.006174746;-0.02748358,0.08516463;-0.2922535;0.001407953,0.07178921;-0.5847963;0.06652207,0.08502486;-0.6147606;0.007951438,-0.06586574;0.002279437;-0.04534874,-0.1006396;-0.2928226;-0.004050221,-0.1019688;-0.5857855;0.06053278,-0.1048023;-0.6148112;-0.0006792136,0.0005679034;0.3994384;0.0202077,37.44052
-0;0;0,0.001207253;0.1997322;0.01027688,0.002254436;0.4996701;0.01310537,0.1148055;0.3771289;-0.01917216,0.1667084;0.1843371;-0.007449511,0.1954118;-0.06152546;-0.04248814,-0.1092956;0.3624005;-0.01072471,-0.1576201;0.1685629;-0.001146269,-0.1971387;-0.0771658;-0.02471866,0.07084952;0.006230521;-0.03662686,0.09409311;-0.2911488;-0.00460754,0.08360452;-0.5824527;0.06632984,0.09669878;-0.6126572;0.008056637,-0.07094407;0.002162228;-0.03690886,-0.09334835;-0.2950158;-0.002510194,-0.0912279;-0.5878167;0.06278244,-0.09412596;-0.5555079;-0.03559756,0.001904818;0.3996829;0.01466192,0;0;0,0.0003016604;0.1995588;0.01327365,0.0007210484;0.4994371;0.01971644,0.1165642;0.3813569;-0.004649956,0.1676633;0.1887792;0.01274975,0.2068056;-0.05676413;-0.01325665,-0.1082763;0.3657858;-0.0174809,-0.1584218;0.1725663;-0.02979664,-0.2110046;-0.07056181;-0.05477174,0.07487673;0.006174746;-0.02748358,0.08516463;-0.2922535;0.001407953,0.07178921;-0.5847963;0.06652207,0.08502486;-0.6147606;0.007951438,-0.06586574;0.002279437;-0.04534874,-0.1006396;-0.2928226;-0.004050221,-0.1019688;-0.5857855;0.06053278,-0.1048023;-0.6148112;-0.0006792136,0.0005679034;0.3994384;0.0202077,37.45155
-0;0;0,0.001067111;0.1997197;0.0105319,0.002007307;0.4996534;0.01375339,0.1145496;0.3772823;-0.01885583,0.1661472;0.1844273;-0.006829085,0.194418;-0.06168799;-0.04041497,-0.1095585;0.3626172;-0.01037049,-0.157634;0.1686823;-0.001538767,-0.1967463;-0.07710674;-0.02515996,0.07097016;0.006228459;-0.03639291,0.09378264;-0.2911304;-0.003876857,0.08370668;-0.5826089;0.06639948,0.09599626;-0.6121264;0.007019896,-0.07087859;0.002159356;-0.03703462,-0.09342733;-0.2949847;-0.002437375,-0.09106775;-0.587739;0.06305605,-0.09396583;-0.5554076;-0.03532801,0.001679719;0.3996643;0.0151947,0;0;0,0.0003016604;0.1995588;0.01327365,0.0007210484;0.4994371;0.01971644,0.1165642;0.3813569;-0.004649956,0.1676633;0.1887792;0.01274975,0.2068056;-0.05676413;-0.01325665,-0.1082763;0.3657858;-0.0174809,-0.1584218;0.1725663;-0.02979664,-0.2110046;-0.07056181;-0.05477174,0.07487673;0.006174746;-0.02748358,0.08516463;-0.2922535;0.001407953,0.07178921;-0.5847963;0.06652207,0.08502486;-0.6147606;0.007951438,-0.06586574;0.002279437;-0.04534874,-0.1006396;-0.2928226;-0.004050221,-0.1019688;-0.5857855;0.06053278,-0.1048023;-0.6148112;-0.0006792136,0.0005679034;0.3994384;0.0202077,37.47386
-0;0;0,0.001067111;0.1997197;0.0105319,0.002007307;0.4996534;0.01375339,0.1145496;0.3772823;-0.01885583,0.1661472;0.1844273;-0.006829085,0.194418;-0.06168799;-0.04041497,-0.1095585;0.3626172;-0.01037049,-0.157634;0.1686823;-0.001538767,-0.1967463;-0.07710674;-0.02515996,0.07097016;0.006228459;-0.03639291,0.09378264;-0.2911304;-0.003876857,0.08370668;-0.5826089;0.06639948,0.09599626;-0.6121264;0.007019896,-0.07087859;0.002159356;-0.03703462,-0.09342733;-0.2949847;-0.002437375,-0.09106775;-0.587739;0.06305605,-0.09396583;-0.5554076;-0.03532801,0.001679719;0.3996643;0.0151947,0;0;0,0.0003743397;0.1995664;0.01315709,0.000909365;0.4994484;0.0194057,0.116615;0.3810532;-0.005108701,0.1676199;0.1884619;0.01241607,0.2063256;-0.0571972;-0.01314672,-0.1082027;0.36573;-0.0174479,-0.1580375;0.1721893;-0.02509694,-0.2090447;-0.07218735;-0.03845061,0.07484737;0.006117466;-0.02757622,0.08562171;-0.2922958;0.001293328,0.07202568;-0.5847805;0.06662236,0.08566065;-0.6146483;0.008011688,-0.06596982;0.002316608;-0.0451953,-0.1002581;-0.2928407;-0.003885891,-0.1016229;-0.5857649;0.06087233,-0.1045435;-0.6141086;-0.001206033,0.0007151556;0.3994502;0.01996672,37.48494
-0;0;0,0.0008424744;0.1997029;0.01086447,0.001549512;0.4996293;0.0147733,0.1142466;0.3773912;-0.017862,0.1658365;0.1845211;-0.006047463,0.1942237;-0.06161723;-0.03936569,-0.109825;0.3625986;-0.01013996,-0.1579177;0.1686478;-0.00176286,-0.1976182;-0.07688291;-0.02703219,0.07100456;0.006204324;-0.03632986,0.09364074;-0.2911159;-0.003340349,0.08377188;-0.5827013;0.06652047,0.09614778;-0.6121488;0.007065102,-0.07087128;0.002170573;-0.03704795,-0.09324349;-0.2949865;-0.002447676,-0.09109091;-0.5877901;0.06283206,-0.08826546;-0.6174783;0.002484776,0.001287168;0.399637;0.01598005,0;0;0,0.0003743397;0.1995664;0.01315709,0.000909365;0.4994484;0.0194057,0.116615;0.3810532;-0.005108701,0.1676199;0.1884619;0.01241607,0.2063256;-0.0571972;-0.01314672,-0.1082027;0.36573;-0.0174479,-0.1580375;0.1721893;-0.02509694,-0.2090447;-0.07218735;-0.03845061,0.07484737;0.006117466;-0.02757622,0.08562171;-0.2922958;0.001293328,0.07202568;-0.5847805;0.06662236,0.08566065;-0.6146483;0.008011688,-0.06596982;0.002316608;-0.0451953,-0.1002581;-0.2928407;-0.003885891,-0.1016229;-0.5857649;0.06087233,-0.1045435;-0.6141086;-0.001206033,0.0007151556;0.3994502;0.01996672,37.49619
-0;0;0,0.0008424744;0.1997029;0.01086447,0.001549512;0.4996293;0.0147733,0.1142466;0.3773912;-0.017862,0.1658365;0.1845211;-0.006047463,0.1942237;-0.06161723;-0.03936569,-0.109825;0.3625986;-0.01013996,-0.1579177;0.1686478;-0.00176286,-0.1976182;-0.07688291;-0.02703219,0.07100456;0.006204324;-0.03632986,0.09364074;-0.2911159;-0.003340349,0.08377188;-0.5827013;0.06652047,0.09614778;-0.6121488;0.007065102,-0.07087128;0.002170573;-0.03704795,-0.09324349;-0.2949865;-0.002447676,-0.09109091;-0.5877901;0.06283206,-0.08826546;-0.6174783;0.002484776,0.001287168;0.399637;0.01598005,0;0;0,0.0003743397;0.1995664;0.01315709,0.000909365;0.4994484;0.0194057,0.116615;0.3810532;-0.005108701,0.1676199;0.1884619;0.01241607,0.2063256;-0.0571972;-0.01314672,-0.1082027;0.36573;-0.0174479,-0.1580375;0.1721893;-0.02509694,-0.2090447;-0.07218735;-0.03845061,0.07484737;0.006117466;-0.02757622,0.08562171;-0.2922958;0.001293328,0.07202568;-0.5847805;0.06662236,0.08566065;-0.6146483;0.008011688,-0.06596982;0.002316608;-0.0451953,-0.1002581;-0.2928407;-0.003885891,-0.1016229;-0.5857649;0.06087233,-0.1045435;-0.6141086;-0.001206033,0.0007151556;0.3994502;0.01996672,37.51847
-0;0;0,0.0005935938;0.1996883;0.0111466,0.001084965;0.4996095;0.0154279,0.1138954;0.3775003;-0.0172214,0.1655006;0.1846747;-0.004764501,0.1939409;-0.06151798;-0.03763298,-0.1100428;0.362381;-0.01010855,-0.1581516;0.168423;-0.001993833,-0.1977483;-0.077107;-0.02743232,0.07108896;0.006236089;-0.03615896,0.09372024;-0.2910718;-0.003055535,0.08417922;-0.5824337;0.06777711,0.09552082;-0.6106803;0.006549403,-0.07080841;0.002139404;-0.03716976,-0.09291226;-0.2950403;-0.002591707,-0.09075491;-0.5878689;0.06257544,-0.08783006;-0.6176358;0.002336804,0.0008816856;0.3996157;0.01652479,0;0;0,0.0003459663;0.1995738;0.01304499,0.0008714248;0.4994597;0.01909604,0.1164555;0.3806214;-0.005573921,0.1674002;0.1880319;0.01214347,0.2053609;-0.05770428;-0.01379349,-0.1083598;0.3658755;-0.01746356,-0.1582391;0.1722996;-0.0238209,-0.2089444;-0.07230929;-0.03359091,0.07479689;0.006204966;-0.02769338,0.08580346;-0.292208;0.001092156,0.07228242;-0.584658;0.0665912,0.08598885;-0.6144654;0.007914867,-0.06603967;0.002236491;-0.04509722,-0.1001328;-0.2929925;-0.004139673,-0.1015064;-0.5858223;0.06104331,-0.1042106;-0.6145744;-0.0005261153,0.0006760235;0.3994619;0.01972709,37.52959
-0;0;0,0.0005935938;0.1996883;0.0111466,0.001084965;0.4996095;0.0154279,0.1138954;0.3775003;-0.0172214,0.1655006;0.1846747;-0.004764501,0.1939409;-0.06151798;-0.03763298,-0.1100428;0.362381;-0.01010855,-0.1581516;0.168423;-0.001993833,-0.1977483;-0.077107;-0.02743232,0.07108896;0.006236089;-0.03615896,0.09372024;-0.2910718;-0.003055535,0.08417922;-0.5824337;0.06777711,0.09552082;-0.6106803;0.006549403,-0.07080841;0.002139404;-0.03716976,-0.09291226;-0.2950403;-0.002591707,-0.09075491;-0.5878689;0.06257544,-0.08783006;-0.6176358;0.002336804,0.0008816856;0.3996157;0.01652479,0;0;0,0.0003459663;0.1995738;0.01304499,0.0008714248;0.4994597;0.01909604,0.1164555;0.3806214;-0.005573921,0.1674002;0.1880319;0.01214347,0.2053609;-0.05770428;-0.01379349,-0.1083598;0.3658755;-0.01746356,-0.1582391;0.1722996;-0.0238209,-0.2089444;-0.07230929;-0.03359091,0.07479689;0.006204966;-0.02769338,0.08580346;-0.292208;0.001092156,0.07228242;-0.584658;0.0665912,0.08598885;-0.6144654;0.007914867,-0.06603967;0.002236491;-0.04509722,-0.1001328;-0.2929925;-0.004139673,-0.1015064;-0.5858223;0.06104331,-0.1042106;-0.6145744;-0.0005261153,0.0006760235;0.3994619;0.01972709,37.54093
-0;0;0,0.0005435681;0.1996861;0.01118855,0.001083681;0.4996079;0.01539601,0.1139247;0.3774104;-0.0169809,0.1655187;0.1846316;-0.003775359,0.1938027;-0.06164318;-0.03615949,-0.1101714;0.3626746;-0.01007817,-0.157998;0.168629;-0.002402524,-0.1976468;-0.07692158;-0.02755969,0.07116929;0.006339983;-0.03598246,0.09353302;-0.2909517;-0.002552651,0.08432347;-0.5824785;0.06764209,0.09642764;-0.6117347;0.007876482,-0.07072991;0.002057983;-0.03732349,-0.09341302;-0.2950118;-0.00218007,-0.09073523;-0.5880456;0.06203844,-0.08744577;-0.617036;0.0008037351,0.0008579644;0.3996145;0.01652871,0;0;0,0.0003459663;0.1995738;0.01304499,0.0008714248;0.4994597;0.01909604,0.1164555;0.3806214;-0.005573921,0.1674002;0.1880319;0.01214347,0.2053609;-0.05770428;-0.01379349,-0.1083598;0.3658755;-0.01746356,-0.1582391;0.1722996;-0.0238209,-0.2089444;-0.07230929;-0.03359091,0.07479689;0.006204966;-0.02769338,0.08580346;-0.292208;0.001092156,0.07228242;-0.584658;0.0665912,0.08598885;-0.6144654;0.007914867,-0.06603967;0.002236491;-0.04509722,-0.1001328;-0.2929925;-0.004139673,-0.1015064;-0.5858223;0.06104331,-0.1042106;-0.6145744;-0.0005261153,0.0006760235;0.3994619;0.01972709,37.56318
-0;0;0,0.0005435681;0.1996861;0.01118855,0.001083681;0.4996079;0.01539601,0.1139247;0.3774104;-0.0169809,0.1655187;0.1846316;-0.003775359,0.1938027;-0.06164318;-0.03615949,-0.1101714;0.3626746;-0.01007817,-0.157998;0.168629;-0.002402524,-0.1976468;-0.07692158;-0.02755969,0.07116929;0.006339983;-0.03598246,0.09353302;-0.2909517;-0.002552651,0.08432347;-0.5824785;0.06764209,0.09642764;-0.6117347;0.007876482,-0.07072991;0.002057983;-0.03732349,-0.09341302;-0.2950118;-0.00218007,-0.09073523;-0.5880456;0.06203844,-0.08744577;-0.617036;0.0008037351,0.0008579644;0.3996145;0.01652871,0;0;0,0.0005279153;0.1995748;0.01302379,0.001311109;0.4994608;0.01903104,0.1166651;0.3805254;-0.006196167,0.1666967;0.1876376;0.01086738,0.2052704;-0.0581498;-0.01364004,-0.1081739;0.3660502;-0.01717322,-0.1573952;0.1722271;-0.02030868,-0.2073563;-0.07272193;-0.02227806,0.07466502;0.006124381;-0.02806469,0.08596753;-0.2922219;0.001290847,0.07271317;-0.5846334;0.06701691,0.08638752;-0.6144865;0.008395333,-0.06617997;0.002293153;-0.04488822,-0.09994881;-0.2929918;-0.004065465,-0.1012754;-0.5857849;0.06128309,-0.103927;-0.6146379;-0.0001593269,0.001029078;0.3994633;0.01968154,37.57435
-0;0;0,0.0005435681;0.1996861;0.01118855,0.001083681;0.4996079;0.01539601,0.1139247;0.3774104;-0.0169809,0.1655187;0.1846316;-0.003775359,0.1938027;-0.06164318;-0.03615949,-0.1101714;0.3626746;-0.01007817,-0.157998;0.168629;-0.002402524,-0.1976468;-0.07692158;-0.02755969,0.07116929;0.006339983;-0.03598246,0.09353302;-0.2909517;-0.002552651,0.08432347;-0.5824785;0.06764209,0.09642764;-0.6117347;0.007876482,-0.07072991;0.002057983;-0.03732349,-0.09341302;-0.2950118;-0.00218007,-0.09073523;-0.5880456;0.06203844,-0.08744577;-0.617036;0.0008037351,0.0008579644;0.3996145;0.01652871,0;0;0,0.0005279153;0.1995748;0.01302379,0.001311109;0.4994608;0.01903104,0.1166651;0.3805254;-0.006196167,0.1666967;0.1876376;0.01086738,0.2052704;-0.0581498;-0.01364004,-0.1081739;0.3660502;-0.01717322,-0.1573952;0.1722271;-0.02030868,-0.2073563;-0.07272193;-0.02227806,0.07466502;0.006124381;-0.02806469,0.08596753;-0.2922219;0.001290847,0.07271317;-0.5846334;0.06701691,0.08638752;-0.6144865;0.008395333,-0.06617997;0.002293153;-0.04488822,-0.09994881;-0.2929918;-0.004065465,-0.1012754;-0.5857849;0.06128309,-0.103927;-0.6146379;-0.0001593269,0.001029078;0.3994633;0.01968154,37.58575
-0;0;0,0.0004160516;0.1996886;0.0111476,0.000807763;0.4996121;0.01523499,0.1138429;0.3774868;-0.01666228,0.1654947;0.1847666;-0.002841663,0.1932968;-0.06152201;-0.03553667,-0.1103495;0.3627368;-0.0104595,-0.1583467;0.1687313;-0.002835022,-0.1979777;-0.07683325;-0.02788373,0.07137719;0.006444552;-0.03554946,0.09348736;-0.2909061;-0.002478164,0.08445415;-0.5825287;0.06734087,0.09694456;-0.6125265;0.0086524,-0.07056569;0.001963516;-0.03763811,-0.0934805;-0.2951002;-0.002594758,-0.09049729;-0.5881487;0.06154349,-0.08737285;-0.617549;0.0008324757,0.0006346808;0.3996192;0.01641431,0;0;0,0.0005279153;0.1995748;0.01302379,0.001311109;0.4994608;0.01903104,0.1166651;0.3805254;-0.006196167,0.1666967;0.1876376;0.01086738,0.2052704;-0.0581498;-0.01364004,-0.1081739;0.3660502;-0.01717322,-0.1573952;0.1722271;-0.02030868,-0.2073563;-0.07272193;-0.02227806,0.07466502;0.006124381;-0.02806469,0.08596753;-0.2922219;0.001290847,0.07271317;-0.5846334;0.06701691,0.08638752;-0.6144865;0.008395333,-0.06617997;0.002293153;-0.04488822,-0.09994881;-0.2929918;-0.004065465,-0.1012754;-0.5857849;0.06128309,-0.103927;-0.6146379;-0.0001593269,0.001029078;0.3994633;0.01968154,37.60777
-0;0;0,0.0001757448;0.1996982;0.0109815,0.0003237251;0.4996252;0.01481587,0.113601;0.3780729;-0.01681852,0.1652255;0.185366;-0.002714494,0.1931806;-0.06092884;-0.03523185,-0.1106556;0.3627855;-0.01124332,-0.158765;0.1688079;-0.003614485,-0.1984597;-0.07678893;-0.02824194,0.07159539;0.006642783;-0.03507096,0.09313619;-0.2908176;-0.002615742,0.08432487;-0.5825926;0.06659202,0.0967952;-0.6126133;0.007930465,-0.07036414;0.001810292;-0.03802118,-0.09386919;-0.2952121;-0.003018439,-0.09049345;-0.5883923;0.06049563,-0.08763425;-0.6175899;-0.0004924983,0.0002304168;0.3996332;0.01607931,0;0;0,0.0005905985;0.1995763;0.01299886,0.001429234;0.4994625;0.01898776,0.1166151;0.3802547;-0.00671049,0.1666102;0.1873706;0.01050092,0.2047921;-0.05849642;-0.01382099,-0.10811;0.366108;-0.01714433,-0.1572205;0.1722313;-0.01715629,-0.2064337;-0.07285793;-0.01410194,0.07462291;0.006165247;-0.02816756,0.08600225;-0.2921945;0.0010217,0.07284783;-0.5845561;0.06698862,0.08666208;-0.6140037;0.007851083,-0.06626681;0.00222851;-0.04476319,-0.09989689;-0.2930884;-0.004057657,-0.1010253;-0.5859002;0.06121132,-0.1037546;-0.6162758;0.001778163,0.001132047;0.3994651;0.01964516,37.63041
-0;0;0,0.0001757448;0.1996982;0.0109815,0.0003237251;0.4996252;0.01481587,0.113601;0.3780729;-0.01681852,0.1652255;0.185366;-0.002714494,0.1931806;-0.06092884;-0.03523185,-0.1106556;0.3627855;-0.01124332,-0.158765;0.1688079;-0.003614485,-0.1984597;-0.07678893;-0.02824194,0.07159539;0.006642783;-0.03507096,0.09313619;-0.2908176;-0.002615742,0.08432487;-0.5825926;0.06659202,0.0967952;-0.6126133;0.007930465,-0.07036414;0.001810292;-0.03802118,-0.09386919;-0.2952121;-0.003018439,-0.09049345;-0.5883923;0.06049563,-0.08763425;-0.6175899;-0.0004924983,0.0002304168;0.3996332;0.01607931,0;0;0,0.0005905985;0.1995763;0.01299886,0.001429234;0.4994625;0.01898776,0.1166151;0.3802547;-0.00671049,0.1666102;0.1873706;0.01050092,0.2047921;-0.05849642;-0.01382099,-0.10811;0.366108;-0.01714433,-0.1572205;0.1722313;-0.01715629,-0.2064337;-0.07285793;-0.01410194,0.07462291;0.006165247;-0.02816756,0.08600225;-0.2921945;0.0010217,0.07284783;-0.5845561;0.06698862,0.08666208;-0.6140037;0.007851083,-0.06626681;0.00222851;-0.04476319,-0.09989689;-0.2930884;-0.004057657,-0.1010253;-0.5859002;0.06121132,-0.1037546;-0.6162758;0.001778163,0.001132047;0.3994651;0.01964516,37.6416
-0;0;0,0.0001342965;0.1997094;0.01077642,0.0003152902;0.4996407;0.01426751,0.1136663;0.3780814;-0.01694048,0.1649719;0.1853643;-0.001845576,0.1928403;-0.06096669;-0.03416289,-0.1106509;0.3628398;-0.0118464,-0.1586863;0.1688403;-0.004309303,-0.1985878;-0.07689033;-0.02720747,0.07184674;0.006781404;-0.0345262,0.09331226;-0.2907883;-0.003037903,0.0845654;-0.5826294;0.06589855,0.09719232;-0.613149;0.007957481,-0.07008424;0.001696756;-0.03853984,-0.09464926;-0.2951132;-0.002478827,-0.08989183;-0.5884908;0.06002689,-0.08710402;-0.6173411;-0.00141301,0.0002064638;0.3996502;0.01564255,0;0;0,0.0005905985;0.1995763;0.01299886,0.001429234;0.4994625;0.01898776,0.1166151;0.3802547;-0.00671049,0.1666102;0.1873706;0.01050092,0.2047921;-0.05849642;-0.01382099,-0.10811;0.366108;-0.01714433,-0.1572205;0.1722313;-0.01715629,-0.2064337;-0.07285793;-0.01410194,0.07462291;0.006165247;-0.02816756,0.08600225;-0.2921945;0.0010217,0.07284783;-0.5845561;0.06698862,0.08666208;-0.6140037;0.007851083,-0.06626681;0.00222851;-0.04476319,-0.09989689;-0.2930884;-0.004057657,-0.1010253;-0.5859002;0.06121132,-0.1037546;-0.6162758;0.001778163,0.001132047;0.3994651;0.01964516,37.66404
-0;0;0,0.0001342965;0.1997094;0.01077642,0.0003152902;0.4996407;0.01426751,0.1136663;0.3780814;-0.01694048,0.1649719;0.1853643;-0.001845576,0.1928403;-0.06096669;-0.03416289,-0.1106509;0.3628398;-0.0118464,-0.1586863;0.1688403;-0.004309303,-0.1985878;-0.07689033;-0.02720747,0.07184674;0.006781404;-0.0345262,0.09331226;-0.2907883;-0.003037903,0.0845654;-0.5826294;0.06589855,0.09719232;-0.613149;0.007957481,-0.07008424;0.001696756;-0.03853984,-0.09464926;-0.2951132;-0.002478827,-0.08989183;-0.5884908;0.06002689,-0.08710402;-0.6173411;-0.00141301,0.0002064638;0.3996502;0.01564255,0;0;0,0.0005637378;0.1995803;0.01293826,0.001380522;0.4994685;0.01882573,0.1164998;0.3802702;-0.007155458,0.1666015;0.1874253;0.01018363,0.204298;-0.05851026;-0.01420242,-0.1081852;0.3660558;-0.01712719,-0.1571235;0.1721512;-0.01466926,-0.2060768;-0.07295184;-0.009372778,0.07454383;0.006166541;-0.02837589,0.08601369;-0.2921829;0.0008825362,0.07300346;-0.5845262;0.06695899,0.08634628;-0.6132028;0.006693102,-0.06636349;0.002204658;-0.04462092,-0.09990683;-0.293143;-0.004067238,-0.1009231;-0.5859272;0.06132681,-0.1039604;-0.6145734;-0.0003623217,0.001087939;0.3994713;0.01951694,37.68592
-0;0;0,0.000340211;0.1997208;0.0105586,0.0007376897;0.4996553;0.0137982,0.1141035;0.3782661;-0.0172136,0.1658643;0.1857056;-0.001681259,0.1933175;-0.06080513;-0.03296703,-0.1102436;0.3628678;-0.01242285,-0.1584138;0.1689133;-0.004594161,-0.198165;-0.07691778;-0.02666046,0.07196262;0.006780684;-0.03428416,0.09382331;-0.290801;-0.003183339,0.08517373;-0.5827449;0.0653291,0.09786295;-0.6130558;0.007112805,-0.0699176;0.001658625;-0.03884299,-0.0950556;-0.2950479;-0.002327837,-0.08935574;-0.588603;0.05925879,-0.08659964;-0.6174929;-0.00213166,0.0005746128;0.3996659;0.01523991,0;0;0,0.0005637378;0.1995803;0.01293826,0.001380522;0.4994685;0.01882573,0.1164998;0.3802702;-0.007155458,0.1666015;0.1874253;0.01018363,0.204298;-0.05851026;-0.01420242,-0.1081852;0.3660558;-0.01712719,-0.1571235;0.1721512;-0.01466926,-0.2060768;-0.07295184;-0.009372778,0.07454383;0.006166541;-0.02837589,0.08601369;-0.2921829;0.0008825362,0.07300346;-0.5845262;0.06695899,0.08634628;-0.6132028;0.006693102,-0.06636349;0.002204658;-0.04462092,-0.09990683;-0.293143;-0.004067238,-0.1009231;-0.5859272;0.06132681,-0.1039604;-0.6145734;-0.0003623217,0.001087939;0.3994713;0.01951694,37.69701
-0;0;0,0.000340211;0.1997208;0.0105586,0.0007376897;0.4996553;0.0137982,0.1141035;0.3782661;-0.0172136,0.1658643;0.1857056;-0.001681259,0.1933175;-0.06080513;-0.03296703,-0.1102436;0.3628678;-0.01242285,-0.1584138;0.1689133;-0.004594161,-0.198165;-0.07691778;-0.02666046,0.07196262;0.006780684;-0.03428416,0.09382331;-0.290801;-0.003183339,0.08517373;-0.5827449;0.0653291,0.09786295;-0.6130558;0.007112805,-0.0699176;0.001658625;-0.03884299,-0.0950556;-0.2950479;-0.002327837,-0.08935574;-0.588603;0.05925879,-0.08659964;-0.6174929;-0.00213166,0.0005746128;0.3996659;0.01523991,0;0;0,0.0005637378;0.1995803;0.01293826,0.001380522;0.4994685;0.01882573,0.1164998;0.3802702;-0.007155458,0.1666015;0.1874253;0.01018363,0.204298;-0.05851026;-0.01420242,-0.1081852;0.3660558;-0.01712719,-0.1571235;0.1721512;-0.01466926,-0.2060768;-0.07295184;-0.009372778,0.07454383;0.006166541;-0.02837589,0.08601369;-0.2921829;0.0008825362,0.07300346;-0.5845262;0.06695899,0.08634628;-0.6132028;0.006693102,-0.06636349;0.002204658;-0.04462092,-0.09990683;-0.293143;-0.004067238,-0.1009231;-0.5859272;0.06132681,-0.1039604;-0.6145734;-0.0003623217,0.001087939;0.3994713;0.01951694,37.71968
-0;0;0,0.0003029756;0.1997288;0.01040778,0.000754979;0.4996662;0.01333852,0.1141338;0.3782843;-0.01742757,0.165967;0.1857929;-0.001291653,0.1929955;-0.06077003;-0.03253533,-0.1102845;0.3630806;-0.01291743,-0.1584349;0.1691142;-0.005264674,-0.1975694;-0.07712373;-0.02357823,0.07188585;0.006793687;-0.03444227,0.0936706;-0.2908137;-0.003534827,0.08507222;-0.5828186;0.06472349,0.09798155;-0.6130199;0.006404575,-0.07002667;0.001581125;-0.03864926,-0.09512189;-0.2952241;-0.002916049,-0.08930141;-0.5888056;0.05853361,-0.0864274;-0.6170789;-0.003635682,0.0005643828;0.3996784;0.01488787,0;0;0,0.0005578814;0.1995957;0.01269732,0.00136218;0.4994934;0.01803264,0.1164887;0.3801829;-0.007620843,0.166359;0.1873019;0.009983065,0.2038334;-0.05866581;-0.01442086,-0.1083325;0.3659515;-0.0172078,-0.1568266;0.1719968;-0.0117404,-0.2047667;-0.07318954;-0.002499496,0.07446866;0.006137001;-0.02857895,0.08623992;-0.2921915;0.0007729027,0.07339858;-0.5845162;0.06696492,0.08647321;-0.614793;0.008786768,-0.06651497;0.002232305;-0.04439341,-0.09954143;-0.2932005;-0.004036143,-0.1002471;-0.5859125;0.06168431,-0.1034681;-0.6148364;0.000360243,0.001068332;0.3994979;0.01893228,37.73075
-0;0;0,0.0003029756;0.1997288;0.01040778,0.000754979;0.4996662;0.01333852,0.1141338;0.3782843;-0.01742757,0.165967;0.1857929;-0.001291653,0.1929955;-0.06077003;-0.03253533,-0.1102845;0.3630806;-0.01291743,-0.1584349;0.1691142;-0.005264674,-0.1975694;-0.07712373;-0.02357823,0.07188585;0.006793687;-0.03444227,0.0936706;-0.2908137;-0.003534827,0.08507222;-0.5828186;0.06472349,0.09798155;-0.6130199;0.006404575,-0.07002667;0.001581125;-0.03864926,-0.09512189;-0.2952241;-0.002916049,-0.08930141;-0.5888056;0.05853361,-0.0864274;-0.6170789;-0.003635682,0.0005643828;0.3996784;0.01488787,0;0;0,0.0005578814;0.1995957;0.01269732,0.00136218;0.4994934;0.01803264,0.1164887;0.3801829;-0.007620843,0.166359;0.1873019;0.009983065,0.2038334;-0.05866581;-0.01442086,-0.1083325;0.3659515;-0.0172078,-0.1568266;0.1719968;-0.0117404,-0.2047667;-0.07318954;-0.002499496,0.07446866;0.006137001;-0.02857895,0.08623992;-0.2921915;0.0007729027,0.07339858;-0.5845162;0.06696492,0.08647321;-0.614793;0.008786768,-0.06651497;0.002232305;-0.04439341,-0.09954143;-0.2932005;-0.004036143,-0.1002471;-0.5859125;0.06168431,-0.1034681;-0.6148364;0.000360243,0.001068332;0.3994979;0.01893228,37.74189
-0;0;0,0.0003029756;0.1997288;0.01040778,0.000754979;0.4996662;0.01333852,0.1141338;0.3782843;-0.01742757,0.165967;0.1857929;-0.001291653,0.1929955;-0.06077003;-0.03253533,-0.1102845;0.3630806;-0.01291743,-0.1584349;0.1691142;-0.005264674,-0.1975694;-0.07712373;-0.02357823,0.07188585;0.006793687;-0.03444227,0.0936706;-0.2908137;-0.003534827,0.08507222;-0.5828186;0.06472349,0.09798155;-0.6130199;0.006404575,-0.07002667;0.001581125;-0.03864926,-0.09512189;-0.2952241;-0.002916049,-0.08930141;-0.5888056;0.05853361,-0.0864274;-0.6170789;-0.003635682,0.0005643828;0.3996784;0.01488787,0;0;0,0.0005578814;0.1995957;0.01269732,0.00136218;0.4994934;0.01803264,0.1164887;0.3801829;-0.007620843,0.166359;0.1873019;0.009983065,0.2038334;-0.05866581;-0.01442086,-0.1083325;0.3659515;-0.0172078,-0.1568266;0.1719968;-0.0117404,-0.2047667;-0.07318954;-0.002499496,0.07446866;0.006137001;-0.02857895,0.08623992;-0.2921915;0.0007729027,0.07339858;-0.5845162;0.06696492,0.08647321;-0.614793;0.008786768,-0.06651497;0.002232305;-0.04439341,-0.09954143;-0.2932005;-0.004036143,-0.1002471;-0.5859125;0.06168431,-0.1034681;-0.6148364;0.000360243,0.001068332;0.3994979;0.01893228,37.75351
-0;0;0,0.000192639;0.1997441;0.01011176,0.0004504343;0.4996851;0.01265757,0.1141665;0.3788235;-0.01741426,0.1656567;0.1862759;-0.0008551162,0.1927718;-0.06036156;-0.0314286,-0.1104701;0.3631047;-0.01360931,-0.1586313;0.1691479;-0.005782714,-0.1969668;-0.07737248;-0.02184835,0.0718989;0.006995458;-0.03437458,0.0938505;-0.2906702;-0.004154146,0.08544104;-0.5827407;0.06384676,0.09852272;-0.6130273;0.005683705,-0.06996267;0.001369393;-0.03877303,-0.09480656;-0.2955218;-0.003581636,-0.0890874;-0.5891364;0.05771888,-0.08594169;-0.6174517;-0.004384339,0.0003431726;0.3996993;0.01434175,0;0;0,0.0004460058;0.1996037;0.01257675,0.001051022;0.4995061;0.01766086,0.1161875;0.3799326;-0.007965317,0.1660843;0.1870782;0.009852219,0.202857;-0.05901264;-0.01437743,-0.1086079;0.3657165;-0.01716328,-0.1568845;0.1717747;-0.009682754,-0.2042778;-0.07342909;0.001674515,0.07436693;0.006141385;-0.02884168,0.08621003;-0.2921603;0.0007526595,0.07313696;-0.5842938;0.06773873,0.0869361;-0.6149471;0.01025282,-0.06663904;0.00222253;-0.04420745,-0.09970465;-0.2932362;-0.004072297,-0.1002481;-0.5859709;0.06154877,-0.1028936;-0.6152114;0.0006066822,0.000825048;0.3995112;0.01864654,37.77525
-0;0;0,0.000192639;0.1997441;0.01011176,0.0004504343;0.4996851;0.01265757,0.1141665;0.3788235;-0.01741426,0.1656567;0.1862759;-0.0008551162,0.1927718;-0.06036156;-0.0314286,-0.1104701;0.3631047;-0.01360931,-0.1586313;0.1691479;-0.005782714,-0.1969668;-0.07737248;-0.02184835,0.0718989;0.006995458;-0.03437458,0.0938505;-0.2906702;-0.004154146,0.08544104;-0.5827407;0.06384676,0.09852272;-0.6130273;0.005683705,-0.06996267;0.001369393;-0.03877303,-0.09480656;-0.2955218;-0.003581636,-0.0890874;-0.5891364;0.05771888,-0.08594169;-0.6174517;-0.004384339,0.0003431726;0.3996993;0.01434175,0;0;0,0.0004460058;0.1996037;0.01257675,0.001051022;0.4995061;0.01766086,0.1161875;0.3799326;-0.007965317,0.1660843;0.1870782;0.009852219,0.202857;-0.05901264;-0.01437743,-0.1086079;0.3657165;-0.01716328,-0.1568845;0.1717747;-0.009682754,-0.2042778;-0.07342909;0.001674515,0.07436693;0.006141385;-0.02884168,0.08621003;-0.2921603;0.0007526595,0.07313696;-0.5842938;0.06773873,0.0869361;-0.6149471;0.01025282,-0.06663904;0.00222253;-0.04420745,-0.09970465;-0.2932362;-0.004072297,-0.1002481;-0.5859709;0.06154877,-0.1028936;-0.6152114;0.0006066822,0.000825048;0.3995112;0.01864654,37.78703
-0;0;0,0.0001973042;0.1997552;0.009889841,0.0005238318;0.4996989;0.01211531,0.1141568;0.378748;-0.01799864,0.1655391;0.1862309;-0.0007640272,0.1924838;-0.06047681;-0.03091867,-0.1103636;0.3632133;-0.01440889,-0.1584849;0.1692634;-0.006175874,-0.1967795;-0.07734095;-0.02100183,0.07201228;0.007128209;-0.03410894,0.09377047;-0.2905949;-0.004317472,0.08558819;-0.5827764;0.06323263,0.09880565;-0.6127098;0.004615657,-0.06985952;0.001256208;-0.03896239,-0.09453661;-0.2957035;-0.00423545,-0.08851252;-0.5892283;0.0574649,-0.08565225;-0.6181871;-0.003832061,0.0003897158;0.3997149;0.01389875,0;0;0,0.0004460058;0.1996037;0.01257675,0.001051022;0.4995061;0.01766086,0.1161875;0.3799326;-0.007965317,0.1660843;0.1870782;0.009852219,0.202857;-0.05901264;-0.01437743,-0.1086079;0.3657165;-0.01716328,-0.1568845;0.1717747;-0.009682754,-0.2042778;-0.07342909;0.001674515,0.07436693;0.006141385;-0.02884168,0.08621003;-0.2921603;0.0007526595,0.07313696;-0.5842938;0.06773873,0.0869361;-0.6149471;0.01025282,-0.06663904;0.00222253;-0.04420745,-0.09970465;-0.2932362;-0.004072297,-0.1002481;-0.5859709;0.06154877,-0.1028936;-0.6152114;0.0006066822,0.000825048;0.3995112;0.01864654,37.80856
-0;0;0,0.0001196791;0.1997624;0.009744539,0.0004366861;0.4997081;0.0116302,0.114067;0.3788046;-0.01836042,0.1653043;0.1862927;-0.0006421823,0.1919982;-0.06056371;-0.02978545,-0.1104328;0.3633302;-0.01501523,-0.1586936;0.1694366;-0.006287825,-0.1962757;-0.07739539;-0.01899805,0.07229741;0.006996787;-0.03352804,0.09394542;-0.2908062;-0.004463816,0.08590605;-0.5830592;0.06279366,0.09931228;-0.6130867;0.004348248,-0.0696023;0.00133214;-0.03941758,-0.09424068;-0.2956224;-0.00461838,-0.08827265;-0.589274;0.05648074,-0.08506073;-0.6181538;-0.004900593,0.0002921026;0.3997264;0.01353865,0;0;0,0.000300818;0.199611;0.01246436,0.0007085922;0.4995166;0.01738278,0.1158824;0.379806;-0.008199776,0.1647992;0.1866264;0.00879351,0.202082;-0.05950852;-0.01417611,-0.1089428;0.365539;-0.01704008,-0.1569647;0.1715756;-0.008548277,-0.2039505;-0.07369308;0.003096556,0.07420275;0.006172402;-0.02925499,0.08625744;-0.2920916;0.0006327685,0.07318746;-0.5841501;0.06794592,0.08729368;-0.6148428;0.01059004,-0.066857;0.002160925;-0.04388019,-0.09959735;-0.2933725;-0.004029613,-0.1002122;-0.5860914;0.06166085,-0.1025307;-0.6154636;0.0008769557,0.0005453837;0.3995221;0.01842085,37.83111
-0;0;0,0.0001196791;0.1997624;0.009744539,0.0004366861;0.4997081;0.0116302,0.114067;0.3788046;-0.01836042,0.1653043;0.1862927;-0.0006421823,0.1919982;-0.06056371;-0.02978545,-0.1104328;0.3633302;-0.01501523,-0.1586936;0.1694366;-0.006287825,-0.1962757;-0.07739539;-0.01899805,0.07229741;0.006996787;-0.03352804,0.09394542;-0.2908062;-0.004463816,0.08590605;-0.5830592;0.06279366,0.09931228;-0.6130867;0.004348248,-0.0696023;0.00133214;-0.03941758,-0.09424068;-0.2956224;-0.00461838,-0.08827265;-0.589274;0.05648074,-0.08506073;-0.6181538;-0.004900593,0.0002921026;0.3997264;0.01353865,0;0;0,0.000300818;0.199611;0.01246436,0.0007085922;0.4995166;0.01738278,0.1158824;0.379806;-0.008199776,0.1647992;0.1866264;0.00879351,0.202082;-0.05950852;-0.01417611,-0.1089428;0.365539;-0.01704008,-0.1569647;0.1715756;-0.008548277,-0.2039505;-0.07369308;0.003096556,0.07420275;0.006172402;-0.02925499,0.08625744;-0.2920916;0.0006327685,0.07318746;-0.5841501;0.06794592,0.08729368;-0.6148428;0.01059004,-0.066857;0.002160925;-0.04388019,-0.09959735;-0.2933725;-0.004029613,-0.1002122;-0.5860914;0.06166085,-0.1025307;-0.6154636;0.0008769557,0.0005453837;0.3995221;0.01842085,37.84251
-0;0;0,7.947868E-05;0.199768;0.009630565,0.0003679477;0.4997147;0.0112991,0.1140588;0.3790937;-0.0186052,0.1654108;0.1866273;-0.0007265713,0.1917466;-0.06036861;-0.02900151,-0.1104119;0.3631908;-0.01539907,-0.158754;0.1693427;-0.00612814,-0.1957829;-0.07763006;-0.01767422,0.07226058;0.006936172;-0.0336199,0.09372825;-0.2908461;-0.00421123,0.08563485;-0.5832582;0.06234453,0.09952332;-0.6132303;0.003935892,-0.069663;0.001368013;-0.03930896,-0.09450342;-0.2956055;-0.004817225,-0.08793029;-0.5893007;0.05600983,-0.08495994;-0.6188551;-0.004506942,0.0002304231;0.3997345;0.01328621,0;0;0,0.000300818;0.199611;0.01246436,0.0007085922;0.4995166;0.01738278,0.1158824;0.379806;-0.008199776,0.1647992;0.1866264;0.00879351,0.202082;-0.05950852;-0.01417611,-0.1089428;0.365539;-0.01704008,-0.1569647;0.1715756;-0.008548277,-0.2039505;-0.07369308;0.003096556,0.07420275;0.006172402;-0.02925499,0.08625744;-0.2920916;0.0006327685,0.07318746;-0.5841501;0.06794592,0.08729368;-0.6148428;0.01059004,-0.066857;0.002160925;-0.04388019,-0.09959735;-0.2933725;-0.004029613,-0.1002122;-0.5860914;0.06166085,-0.1025307;-0.6154636;0.0008769557,0.0005453837;0.3995221;0.01842085,37.86482
-0;0;0,7.947868E-05;0.199768;0.009630565,0.0003679477;0.4997147;0.0112991,0.1140588;0.3790937;-0.0186052,0.1654108;0.1866273;-0.0007265713,0.1917466;-0.06036861;-0.02900151,-0.1104119;0.3631908;-0.01539907,-0.158754;0.1693427;-0.00612814,-0.1957829;-0.07763006;-0.01767422,0.07226058;0.006936172;-0.0336199,0.09372825;-0.2908461;-0.00421123,0.08563485;-0.5832582;0.06234453,0.09952332;-0.6132303;0.003935892,-0.069663;0.001368013;-0.03930896,-0.09450342;-0.2956055;-0.004817225,-0.08793029;-0.5893007;0.05600983,-0.08495994;-0.6188551;-0.004506942,0.0002304231;0.3997345;0.01328621,0;0;0,0.0004108529;0.19962;0.0123162,0.0009604401;0.4995289;0.01699264,0.1160211;0.3799857;-0.008902177,0.1652136;0.1869126;0.008501008,0.2020556;-0.05934469;-0.01385999,-0.1089436;0.3657068;-0.01685495,-0.1566361;0.1717037;-0.007462898,-0.2033037;-0.07361878;0.004327607,0.07410778;0.006150944;-0.0294992,0.08667269;-0.2920617;0.0006896593,0.07361954;-0.5842199;0.06757168,0.08813386;-0.6142499;0.009394854,-0.06698762;0.002179131;-0.04367962,-0.09924931;-0.2934345;-0.004034147,-0.09980933;-0.5861471;0.06168496,-0.1019479;-0.6153452;0.000667803,0.0007489568;0.3995355;0.01811888,37.88713
-0;0;0,8.968296E-05;0.1997752;0.009480383,0.0004313787;0.4997231;0.01086416,0.1141057;0.3791097;-0.01892398,0.1652883;0.1866008;-0.001016418,0.1913474;-0.06048806;-0.02872941,-0.1103146;0.3632785;-0.01604729,-0.1585854;0.1694309;-0.006402547,-0.1958653;-0.07755153;-0.01688517,0.07232376;0.006862395;-0.03349895,0.09359062;-0.2909731;-0.004486427,0.08586827;-0.58346;0.06178438,0.09968003;-0.6138594;0.003946975,-0.06955882;0.001423937;-0.03949104,-0.09445529;-0.2955926;-0.005412191,-0.08759294;-0.5892434;0.05559715,-0.08555783;-0.6187598;-0.005008083,0.0002716508;0.399745;0.01295079,0;0;0,0.0004108529;0.19962;0.0123162,0.0009604401;0.4995289;0.01699264,0.1160211;0.3799857;-0.008902177,0.1652136;0.1869126;0.008501008,0.2020556;-0.05934469;-0.01385999,-0.1089436;0.3657068;-0.01685495,-0.1566361;0.1717037;-0.007462898,-0.2033037;-0.07361878;0.004327607,0.07410778;0.006150944;-0.0294992,0.08667269;-0.2920617;0.0006896593,0.07361954;-0.5842199;0.06757168,0.08813386;-0.6142499;0.009394854,-0.06698762;0.002179131;-0.04367962,-0.09924931;-0.2934345;-0.004034147,-0.09980933;-0.5861471;0.06168496,-0.1019479;-0.6153452;0.000667803,0.0007489568;0.3995355;0.01811888,37.89862
-0;0;0,8.968296E-05;0.1997752;0.009480383,0.0004313787;0.4997231;0.01086416,0.1141057;0.3791097;-0.01892398,0.1652883;0.1866008;-0.001016418,0.1913474;-0.06048806;-0.02872941,-0.1103146;0.3632785;-0.01604729,-0.1585854;0.1694309;-0.006402547,-0.1958653;-0.07755153;-0.01688517,0.07232376;0.006862395;-0.03349895,0.09359062;-0.2909731;-0.004486427,0.08586827;-0.58346;0.06178438,0.09968003;-0.6138594;0.003946975,-0.06955882;0.001423937;-0.03949104,-0.09445529;-0.2955926;-0.005412191,-0.08759294;-0.5892434;0.05559715,-0.08555783;-0.6187598;-0.005008083,0.0002716508;0.399745;0.01295079,0;0;0,0.0004108529;0.19962;0.0123162,0.0009604401;0.4995289;0.01699264,0.1160211;0.3799857;-0.008902177,0.1652136;0.1869126;0.008501008,0.2020556;-0.05934469;-0.01385999,-0.1089436;0.3657068;-0.01685495,-0.1566361;0.1717037;-0.007462898,-0.2033037;-0.07361878;0.004327607,0.07410778;0.006150944;-0.0294992,0.08667269;-0.2920617;0.0006896593,0.07361954;-0.5842199;0.06757168,0.08813386;-0.6142499;0.009394854,-0.06698762;0.002179131;-0.04367962,-0.09924931;-0.2934345;-0.004034147,-0.09980933;-0.5861471;0.06168496,-0.1019479;-0.6153452;0.000667803,0.0007489568;0.3995355;0.01811888,37.92058
-0;0;0,0.0001998285;0.1997864;0.009239554,0.0006718021;0.4997358;0.01035031,0.1142963;0.3790717;-0.01937032,0.165427;0.1865664;-0.00127716,0.1915191;-0.06055157;-0.02869855,-0.1102531;0.3637194;-0.01648021,-0.1584409;0.1698653;-0.006554625,-0.1955397;-0.07719041;-0.01589083,0.07237477;0.006712869;-0.03341901,0.09358072;-0.2911283;-0.00441996,0.08603529;-0.5837421;0.06130855,0.09999944;-0.6139035;0.003177986,-0.06954282;0.001555501;-0.03951426,-0.09402016;-0.2955451;-0.005867936,-0.08714209;-0.5891896;0.05516955,-0.08516875;-0.6189477;-0.00511935,0.0004741541;0.3997594;0.01251269,0;0;0,0.0002852938;0.1996293;0.01216861,0.0006624972;0.4995424;0.01657961,0.1158503;0.380061;-0.008959692,0.1643764;0.1867674;0.007856436,0.2015948;-0.05950376;-0.01371493,-0.1092907;0.3656864;-0.0168147,-0.1567559;0.1716506;-0.00695689,-0.2033271;-0.073696;0.004711204,0.07398227;0.006161127;-0.02981048,0.08682866;-0.2920094;0.00067438,0.07382636;-0.5841516;0.06763602,0.08833753;-0.613196;0.008126184,-0.06711673;0.002169306;-0.04348148,-0.09914572;-0.2935166;-0.004188005,-0.09965722;-0.586269;0.06135402,-0.1019028;-0.6146613;-0.0006912127,0.0005060628;0.39955;0.01779628,37.9318
-0;0;0,0.0001998285;0.1997864;0.009239554,0.0006718021;0.4997358;0.01035031,0.1142963;0.3790717;-0.01937032,0.165427;0.1865664;-0.00127716,0.1915191;-0.06055157;-0.02869855,-0.1102531;0.3637194;-0.01648021,-0.1584409;0.1698653;-0.006554625,-0.1955397;-0.07719041;-0.01589083,0.07237477;0.006712869;-0.03341901,0.09358072;-0.2911283;-0.00441996,0.08603529;-0.5837421;0.06130855,0.09999944;-0.6139035;0.003177986,-0.06954282;0.001555501;-0.03951426,-0.09402016;-0.2955451;-0.005867936,-0.08714209;-0.5891896;0.05516955,-0.08516875;-0.6189477;-0.00511935,0.0004741541;0.3997594;0.01251269,0;0;0,0.0002852938;0.1996293;0.01216861,0.0006624972;0.4995424;0.01657961,0.1158503;0.380061;-0.008959692,0.1643764;0.1867674;0.007856436,0.2015948;-0.05950376;-0.01371493,-0.1092907;0.3656864;-0.0168147,-0.1567559;0.1716506;-0.00695689,-0.2033271;-0.073696;0.004711204,0.07398227;0.006161127;-0.02981048,0.08682866;-0.2920094;0.00067438,0.07382636;-0.5841516;0.06763602,0.08833753;-0.613196;0.008126184,-0.06711673;0.002169306;-0.04348148,-0.09914572;-0.2935166;-0.004188005,-0.09965722;-0.586269;0.06135402,-0.1019028;-0.6146613;-0.0006912127,0.0005060628;0.39955;0.01779628,37.9431
-0;0;0,0.0001834984;0.1997973;0.008999733,0.0006739739;0.4997481;0.009841683,0.1143017;0.3791595;-0.01981895,0.1654513;0.186667;-0.001643835,0.1912491;-0.06051767;-0.02874004,-0.1102348;0.363746;-0.01700645,-0.158699;0.169985;-0.006617569,-0.1950792;-0.07722944;-0.01445942,0.07240976;0.006650858;-0.03335555,0.09353186;-0.2912145;-0.004544156,0.08600022;-0.5839221;0.06076667,0.1002717;-0.6138734;0.002421867,-0.06950156;0.001589586;-0.03958542,-0.09377255;-0.2955912;-0.00650242,-0.08674838;-0.5890377;0.05546395,-0.08781326;-0.5568729;-0.04292697,0.0004713146;0.3997734;0.01208286,0;0;0,0.0002852938;0.1996293;0.01216861,0.0006624972;0.4995424;0.01657961,0.1158503;0.380061;-0.008959692,0.1643764;0.1867674;0.007856436,0.2015948;-0.05950376;-0.01371493,-0.1092907;0.3656864;-0.0168147,-0.1567559;0.1716506;-0.00695689,-0.2033271;-0.073696;0.004711204,0.07398227;0.006161127;-0.02981048,0.08682866;-0.2920094;0.00067438,0.07382636;-0.5841516;0.06763602,0.08833753;-0.613196;0.008126184,-0.06711673;0.002169306;-0.04348148,-0.09914572;-0.2935166;-0.004188005,-0.09965722;-0.586269;0.06135402,-0.1019028;-0.6146613;-0.0006912127,0.0005060628;0.39955;0.01779628,37.96506
-0;0;0,0.0001834984;0.1997973;0.008999733,0.0006739739;0.4997481;0.009841683,0.1143017;0.3791595;-0.01981895,0.1654513;0.186667;-0.001643835,0.1912491;-0.06051767;-0.02874004,-0.1102348;0.363746;-0.01700645,-0.158699;0.169985;-0.006617569,-0.1950792;-0.07722944;-0.01445942,0.07240976;0.006650858;-0.03335555,0.09353186;-0.2912145;-0.004544156,0.08600022;-0.5839221;0.06076667,0.1002717;-0.6138734;0.002421867,-0.06950156;0.001589586;-0.03958542,-0.09377255;-0.2955912;-0.00650242,-0.08674838;-0.5890377;0.05546395,-0.08781326;-0.5568729;-0.04292697,0.0004713146;0.3997734;0.01208286,0;0;0,0.0001681833;0.199634;0.01209303,0.0003584232;0.4995492;0.0163812,0.1156508;0.3802218;-0.009049946,0.1641566;0.1869301;0.007846447,0.2010096;-0.05939509;-0.01373536,-0.1099078;0.3660797;-0.01614331,-0.1568491;0.1719375;-0.005881341,-0.2034245;-0.07341783;0.00558563,0.07385689;0.006344061;-0.03008176,0.08674398;-0.2917919;0.000722073,0.07371026;-0.5839252;0.06771637,0.08800117;-0.6142602;0.009905778,-0.06750208;0.001730827;-0.04290074,-0.09924667;-0.2940479;-0.004077677,-0.09983376;-0.5867689;0.06160392,-0.09756163;-0.5542626;-0.03682781,0.0002650163;0.3995571;0.0176385,37.97629
-0;0;0,0.0001834984;0.1997973;0.008999733,0.0006739739;0.4997481;0.009841683,0.1143017;0.3791595;-0.01981895,0.1654513;0.186667;-0.001643835,0.1912491;-0.06051767;-0.02874004,-0.1102348;0.363746;-0.01700645,-0.158699;0.169985;-0.006617569,-0.1950792;-0.07722944;-0.01445942,0.07240976;0.006650858;-0.03335555,0.09353186;-0.2912145;-0.004544156,0.08600022;-0.5839221;0.06076667,0.1002717;-0.6138734;0.002421867,-0.06950156;0.001589586;-0.03958542,-0.09377255;-0.2955912;-0.00650242,-0.08674838;-0.5890377;0.05546395,-0.08781326;-0.5568729;-0.04292697,0.0004713146;0.3997734;0.01208286,0;0;0,0.0001681833;0.199634;0.01209303,0.0003584232;0.4995492;0.0163812,0.1156508;0.3802218;-0.009049946,0.1641566;0.1869301;0.007846447,0.2010096;-0.05939509;-0.01373536,-0.1099078;0.3660797;-0.01614331,-0.1568491;0.1719375;-0.005881341,-0.2034245;-0.07341783;0.00558563,0.07385689;0.006344061;-0.03008176,0.08674398;-0.2917919;0.000722073,0.07371026;-0.5839252;0.06771637,0.08800117;-0.6142602;0.009905778,-0.06750208;0.001730827;-0.04290074,-0.09924667;-0.2940479;-0.004077677,-0.09983376;-0.5867689;0.06160392,-0.09756163;-0.5542626;-0.03682781,0.0002650163;0.3995571;0.0176385,37.98788
-0;0;0,0.0002346;0.1998089;0.008738363,0.0008300492;0.4997607;0.00927115,0.1144273;0.3792033;-0.02030164,0.1654894;0.1867044;-0.00194939,0.1911058;-0.06051114;-0.02893633,-0.1101273;0.3638135;-0.01750809,-0.1586584;0.1701104;-0.006380565,-0.1941929;-0.07723406;-0.01399876,0.07235915;0.006548399;-0.03348541,0.09357786;-0.2913465;-0.005052684,0.08617946;-0.5840954;0.06008826,0.1004922;-0.6136783;0.001252022,-0.06956399;0.001687325;-0.03947156,-0.09349336;-0.295592;-0.007030468,-0.08658755;-0.5890903;0.05470308,-0.08764189;-0.5569466;-0.04368411,0.0005913387;0.3997881;0.01159897,0;0;0,0.0001681833;0.199634;0.01209303,0.0003584232;0.4995492;0.0163812,0.1156508;0.3802218;-0.009049946,0.1641566;0.1869301;0.007846447,0.2010096;-0.05939509;-0.01373536,-0.1099078;0.3660797;-0.01614331,-0.1568491;0.1719375;-0.005881341,-0.2034245;-0.07341783;0.00558563,0.07385689;0.006344061;-0.03008176,0.08674398;-0.2917919;0.000722073,0.07371026;-0.5839252;0.06771637,0.08800117;-0.6142602;0.009905778,-0.06750208;0.001730827;-0.04290074,-0.09924667;-0.2940479;-0.004077677,-0.09983376;-0.5867689;0.06160392,-0.09756163;-0.5542626;-0.03682781,0.0002650163;0.3995571;0.0176385,38.00991
-0;0;0,0.0002346;0.1998089;0.008738363,0.0008300492;0.4997607;0.00927115,0.1144273;0.3792033;-0.02030164,0.1654894;0.1867044;-0.00194939,0.1911058;-0.06051114;-0.02893633,-0.1101273;0.3638135;-0.01750809,-0.1586584;0.1701104;-0.006380565,-0.1941929;-0.07723406;-0.01399876,0.07235915;0.006548399;-0.03348541,0.09357786;-0.2913465;-0.005052684,0.08617946;-0.5840954;0.06008826,0.1004922;-0.6136783;0.001252022,-0.06956399;0.001687325;-0.03947156,-0.09349336;-0.295592;-0.007030468,-0.08658755;-0.5890903;0.05470308,-0.08764189;-0.5569466;-0.04368411,0.0005913387;0.3997881;0.01159897,0;0;0,0.0003952458;0.1996384;0.01201477,0.0008792548;0.4995539;0.01627245,0.1160394;0.3804924;-0.009531306,0.1647121;0.187253;0.007483799,0.2015259;-0.05912632;-0.01353952,-0.1095504;0.3661713;-0.01608857,-0.1564397;0.1720301;-0.005571299,-0.2031297;-0.07331938;0.005548868,0.07375162;0.006312871;-0.03034544,0.0873803;-0.2917714;0.000639407,0.07451719;-0.5838053;0.06809866,0.08908591;-0.6130651;0.008890234,-0.06763867;0.001789682;-0.04268262,-0.09871332;-0.2941073;-0.00422005,-0.09914575;-0.5868283;0.06146267,-0.09705575;-0.5543212;-0.03697326,0.0006973085;0.399562;0.01753427,38.02115
-0;0;0,0.0002497593;0.1998163;0.008567121,0.0008979652;0.4997687;0.008872592,0.1144985;0.3793458;-0.02063932,0.1654408;0.1868395;-0.002032194,0.1912384;-0.06034561;-0.02912438,-0.1100793;0.3637371;-0.0177287,-0.1586373;0.1700568;-0.006324212,-0.193927;-0.0773112;-0.01430471,0.07231805;0.006540258;-0.03357565,0.09352843;-0.2913616;-0.00521015,0.08612712;-0.5841652;0.05968422,0.100679;-0.6125322;-0.0007050298,-0.06961804;0.001673308;-0.03937674,-0.09338385;-0.2956733;-0.007436704,-0.08664925;-0.5891525;0.05440695,-0.08773586;-0.5570316;-0.04397575,0.0006403955;0.3997977;0.01126757,0;0;0,0.0003952458;0.1996384;0.01201477,0.0008792548;0.4995539;0.01627245,0.1160394;0.3804924;-0.009531306,0.1647121;0.187253;0.007483799,0.2015259;-0.05912632;-0.01353952,-0.1095504;0.3661713;-0.01608857,-0.1564397;0.1720301;-0.005571299,-0.2031297;-0.07331938;0.005548868,0.07375162;0.006312871;-0.03034544,0.0873803;-0.2917714;0.000639407,0.07451719;-0.5838053;0.06809866,0.08908591;-0.6130651;0.008890234,-0.06763867;0.001789682;-0.04268262,-0.09871332;-0.2941073;-0.00422005,-0.09914575;-0.5868283;0.06146267,-0.09705575;-0.5543212;-0.03697326,0.0006973085;0.399562;0.01753427,38.03278
-0;0;0,0.0002497593;0.1998163;0.008567121,0.0008979652;0.4997687;0.008872592,0.1144985;0.3793458;-0.02063932,0.1654408;0.1868395;-0.002032194,0.1912384;-0.06034561;-0.02912438,-0.1100793;0.3637371;-0.0177287,-0.1586373;0.1700568;-0.006324212,-0.193927;-0.0773112;-0.01430471,0.07231805;0.006540258;-0.03357565,0.09352843;-0.2913616;-0.00521015,0.08612712;-0.5841652;0.05968422,0.100679;-0.6125322;-0.0007050298,-0.06961804;0.001673308;-0.03937674,-0.09338385;-0.2956733;-0.007436704,-0.08664925;-0.5891525;0.05440695,-0.08773586;-0.5570316;-0.04397575,0.0006403955;0.3997977;0.01126757,0;0;0,0.0003952458;0.1996384;0.01201477,0.0008792548;0.4995539;0.01627245,0.1160394;0.3804924;-0.009531306,0.1647121;0.187253;0.007483799,0.2015259;-0.05912632;-0.01353952,-0.1095504;0.3661713;-0.01608857,-0.1564397;0.1720301;-0.005571299,-0.2031297;-0.07331938;0.005548868,0.07375162;0.006312871;-0.03034544,0.0873803;-0.2917714;0.000639407,0.07451719;-0.5838053;0.06809866,0.08908591;-0.6130651;0.008890234,-0.06763867;0.001789682;-0.04268262,-0.09871332;-0.2941073;-0.00422005,-0.09914575;-0.5868283;0.06146267,-0.09705575;-0.5543212;-0.03697326,0.0006973085;0.399562;0.01753427,38.05422
-0;0;0,0.00033954;0.1998223;0.008421889,0.001095916;0.4997749;0.008517261,0.1146849;0.3791381;-0.02072006,0.1654972;0.1865882;-0.002209662,0.191333;-0.06057653;-0.0294512,-0.1099008;0.3637459;-0.01807168,-0.1585569;0.1701179;-0.006205931,-0.1935107;-0.07728945;-0.01444135,0.07229821;0.006477225;-0.03363055,0.09368107;-0.2914211;-0.005357632,0.0863217;-0.5842454;0.05944771,0.1008037;-0.6122819;-0.001384731,-0.06966024;0.001731091;-0.03929955,-0.09318797;-0.295668;-0.007673532,-0.08641727;-0.5891917;0.05395451,-0.08741809;-0.5570852;-0.0444265,0.0008062745;0.3998055;0.01097411,0;0;0,0.0003451737;0.1996388;0.01200911,0.000796542;0.499554;0.01630204,0.1158676;0.3805259;-0.009952087,0.164636;0.187339;0.007381819,0.2010163;-0.05906819;-0.014065,-0.1098364;0.3663769;-0.01558091,-0.1566106;0.1721919;-0.005364995,-0.2036171;-0.07312119;0.005211175,0.07361487;0.006325518;-0.03067309,0.08708109;-0.2917091;0.0008554719,0.07467104;-0.5838395;0.0679809,0.08916492;-0.6130137;0.008639738,-0.06775266;0.001790746;-0.04250141,-0.09869968;-0.2941338;-0.004147824,-0.098891;-0.5868078;0.06174519,-0.09709172;-0.554305;-0.03669572,0.0006227797;0.3995619;0.01754821,38.06604
-0;0;0,0.00033954;0.1998223;0.008421889,0.001095916;0.4997749;0.008517261,0.1146849;0.3791381;-0.02072006,0.1654972;0.1865882;-0.002209662,0.191333;-0.06057653;-0.0294512,-0.1099008;0.3637459;-0.01807168,-0.1585569;0.1701179;-0.006205931,-0.1935107;-0.07728945;-0.01444135,0.07229821;0.006477225;-0.03363055,0.09368107;-0.2914211;-0.005357632,0.0863217;-0.5842454;0.05944771,0.1008037;-0.6122819;-0.001384731,-0.06966024;0.001731091;-0.03929955,-0.09318797;-0.295668;-0.007673532,-0.08641727;-0.5891917;0.05395451,-0.08741809;-0.5570852;-0.0444265,0.0008062745;0.3998055;0.01097411,0;0;0,0.0003451737;0.1996388;0.01200911,0.000796542;0.499554;0.01630204,0.1158676;0.3805259;-0.009952087,0.164636;0.187339;0.007381819,0.2010163;-0.05906819;-0.014065,-0.1098364;0.3663769;-0.01558091,-0.1566106;0.1721919;-0.005364995,-0.2036171;-0.07312119;0.005211175,0.07361487;0.006325518;-0.03067309,0.08708109;-0.2917091;0.0008554719,0.07467104;-0.5838395;0.0679809,0.08916492;-0.6130137;0.008639738,-0.06775266;0.001790746;-0.04250141,-0.09869968;-0.2941338;-0.004147824,-0.098891;-0.5868078;0.06174519,-0.09709172;-0.554305;-0.03669572,0.0006227797;0.3995619;0.01754821,38.07715
-0;0;0,0.0005582061;0.199826;0.008322157,0.001499618;0.4997782;0.008263974,0.1150452;0.3791775;-0.02094727,0.1657818;0.1866136;-0.002374953,0.1916882;-0.06053808;-0.02966786,-0.1096784;0.3640639;-0.01814263,-0.158065;0.1703707;-0.006238898,-0.1931709;-0.07701644;-0.01443525,0.07225581;0.006396789;-0.03373691,0.09397095;-0.2914857;-0.00555012,0.08649158;-0.58424;0.05955737,0.1012017;-0.6119353;-0.001655735,-0.06979842;0.001816263;-0.03904972,-0.0930975;-0.2956179;-0.007584378,-0.08606672;-0.589312;0.05319703,-0.08710347;-0.5572115;-0.0451825,0.001165817;0.3998101;0.01076684,0;0;0,0.0003451737;0.1996388;0.01200911,0.000796542;0.499554;0.01630204,0.1158676;0.3805259;-0.009952087,0.164636;0.187339;0.007381819,0.2010163;-0.05906819;-0.014065,-0.1098364;0.3663769;-0.01558091,-0.1566106;0.1721919;-0.005364995,-0.2036171;-0.07312119;0.005211175,0.07361487;0.006325518;-0.03067309,0.08708109;-0.2917091;0.0008554719,0.07467104;-0.5838395;0.0679809,0.08916492;-0.6130137;0.008639738,-0.06775266;0.001790746;-0.04250141,-0.09869968;-0.2941338;-0.004147824,-0.098891;-0.5868078;0.06174519,-0.09709172;-0.554305;-0.03669572,0.0006227797;0.3995619;0.01754821,38.09917
-0;0;0,0.0005582061;0.199826;0.008322157,0.001499618;0.4997782;0.008263974,0.1150452;0.3791775;-0.02094727,0.1657818;0.1866136;-0.002374953,0.1916882;-0.06053808;-0.02966786,-0.1096784;0.3640639;-0.01814263,-0.158065;0.1703707;-0.006238898,-0.1931709;-0.07701644;-0.01443525,0.07225581;0.006396789;-0.03373691,0.09397095;-0.2914857;-0.00555012,0.08649158;-0.58424;0.05955737,0.1012017;-0.6119353;-0.001655735,-0.06979842;0.001816263;-0.03904972,-0.0930975;-0.2956179;-0.007584378,-0.08606672;-0.589312;0.05319703,-0.08710347;-0.5572115;-0.0451825,0.001165817;0.3998101;0.01076684,0;0;0,0.0003977292;0.199642;0.01195434,0.0009636891;0.4995578;0.01620687,0.1158765;0.3804019;-0.01044039,0.1648675;0.1873002;0.007211974,0.2013175;-0.05910479;-0.014142,-0.1098145;0.3665415;-0.0154756,-0.1602722;0.1735572;-0.0009471653,-0.2072352;-0.07168598;0.01131063,0.0736275;0.006321005;-0.03064369,0.08722525;-0.2917087;0.0008744821,0.0748858;-0.5838394;0.06801127,0.08951314;-0.6131595;0.008898199,-0.06780575;0.001818804;-0.04241547,-0.09828377;-0.2941679;-0.004166786,-0.09871975;-0.5868239;0.06180501,-0.0989168;-0.6173015;0.002447437,0.0007497519;0.3995659;0.01746272,38.11052
-0;0;0,0.0005582061;0.199826;0.008322157,0.001499618;0.4997782;0.008263974,0.1150452;0.3791775;-0.02094727,0.1657818;0.1866136;-0.002374953,0.1916882;-0.06053808;-0.02966786,-0.1096784;0.3640639;-0.01814263,-0.158065;0.1703707;-0.006238898,-0.1931709;-0.07701644;-0.01443525,0.07225581;0.006396789;-0.03373691,0.09397095;-0.2914857;-0.00555012,0.08649158;-0.58424;0.05955737,0.1012017;-0.6119353;-0.001655735,-0.06979842;0.001816263;-0.03904972,-0.0930975;-0.2956179;-0.007584378,-0.08606672;-0.589312;0.05319703,-0.08710347;-0.5572115;-0.0451825,0.001165817;0.3998101;0.01076684,0;0;0,0.0003977292;0.199642;0.01195434,0.0009636891;0.4995578;0.01620687,0.1158765;0.3804019;-0.01044039,0.1648675;0.1873002;0.007211974,0.2013175;-0.05910479;-0.014142,-0.1098145;0.3665415;-0.0154756,-0.1602722;0.1735572;-0.0009471653,-0.2072352;-0.07168598;0.01131063,0.0736275;0.006321005;-0.03064369,0.08722525;-0.2917087;0.0008744821,0.0748858;-0.5838394;0.06801127,0.08951314;-0.6131595;0.008898199,-0.06780575;0.001818804;-0.04241547,-0.09828377;-0.2941679;-0.004166786,-0.09871975;-0.5868239;0.06180501,-0.0989168;-0.6173015;0.002447437,0.0007497519;0.3995659;0.01746272,38.12181
-0;0;0,0.0005181545;0.199827;0.0083012,0.001355082;0.4997789;0.008144962,0.1149922;0.3794927;-0.02103987,0.1646748;0.1866919;-0.00207904,0.1905787;-0.06045468;-0.02942032,-0.1097737;0.3640551;-0.01822844,-0.158253;0.170416;-0.005832588,-0.1931365;-0.07698053;-0.01466933,0.07225214;0.006390854;-0.03374588,0.0938876;-0.291477;-0.005343668,0.08544391;-0.5842822;0.05941595,0.103036;-0.6129146;0.0001920834,-0.06980444;0.001821165;-0.03903874,-0.09307706;-0.2956147;-0.007569544,-0.08614202;-0.5893432;0.05305617,-0.08727548;-0.557242;-0.04532243,0.001062927;0.3998119;0.01069725,0;0;0,0.0003977292;0.199642;0.01195434,0.0009636891;0.4995578;0.01620687,0.1158765;0.3804019;-0.01044039,0.1648675;0.1873002;0.007211974,0.2013175;-0.05910479;-0.014142,-0.1098145;0.3665415;-0.0154756,-0.1602722;0.1735572;-0.0009471653,-0.2072352;-0.07168598;0.01131063,0.0736275;0.006321005;-0.03064369,0.08722525;-0.2917087;0.0008744821,0.0748858;-0.5838394;0.06801127,0.08951314;-0.6131595;0.008898199,-0.06780575;0.001818804;-0.04241547,-0.09828377;-0.2941679;-0.004166786,-0.09871975;-0.5868239;0.06180501,-0.0989168;-0.6173015;0.002447437,0.0007497519;0.3995659;0.01746272,38.14397
-0;0;0,0.0005181545;0.199827;0.0083012,0.001355082;0.4997789;0.008144962,0.1149922;0.3794927;-0.02103987,0.1646748;0.1866919;-0.00207904,0.1905787;-0.06045468;-0.02942032,-0.1097737;0.3640551;-0.01822844,-0.158253;0.170416;-0.005832588,-0.1931365;-0.07698053;-0.01466933,0.07225214;0.006390854;-0.03374588,0.0938876;-0.291477;-0.005343668,0.08544391;-0.5842822;0.05941595,0.103036;-0.6129146;0.0001920834,-0.06980444;0.001821165;-0.03903874,-0.09307706;-0.2956147;-0.007569544,-0.08614202;-0.5893432;0.05305617,-0.08727548;-0.557242;-0.04532243,0.001062927;0.3998119;0.01069725,0;0;0,0.0002839711;0.1996429;0.01194242,0.0006949863;0.4995589;0.01619863,0.1156537;0.3806338;-0.01062583,0.1645997;0.1875017;0.006817402,0.2013273;-0.05890086;-0.01408388,-0.1101436;0.3666824;-0.01525598,-0.1605707;0.1737068;-0.0005080467,-0.2077589;-0.07155077;0.01053765,0.07354309;0.00639836;-0.03082976,0.08725895;-0.2916215;0.0007306915,0.07504499;-0.5837224;0.06802011,0.09003066;-0.6130158;0.008960906,-0.06800149;0.001730611;-0.04210466,-0.09813297;-0.2943282;-0.004140001,-0.0985036;-0.5870165;0.06168854,-0.09910167;-0.6165187;0.001033474,0.0005309861;0.3995669;0.01745091,38.15547
-0;0;0,0.0006061644;0.1998301;0.008219095,0.001593345;0.4997813;0.007887732,0.1152076;0.379681;-0.02124843,0.1649537;0.1868905;-0.002349567,0.1908705;-0.06026214;-0.02962362,-0.1095912;0.3641249;-0.01848709,-0.1580864;0.1705014;-0.005911129,-0.1928626;-0.07689707;-0.01510905,0.07220638;0.0063328;-0.0338546,0.0938831;-0.2914931;-0.005047245,0.08542339;-0.5843223;0.05960142,0.1030387;-0.6134056;0.0009879209,-0.06988961;0.001879229;-0.03888329,-0.09289018;-0.2955935;-0.007562842,-0.08529872;-0.5894082;0.05256443,-0.08644876;-0.5572939;-0.04581635,0.001249712;0.399816;0.01050328,0;0;0,0.0002839711;0.1996429;0.01194242,0.0006949863;0.4995589;0.01619863,0.1156537;0.3806338;-0.01062583,0.1645997;0.1875017;0.006817402,0.2013273;-0.05890086;-0.01408388,-0.1101436;0.3666824;-0.01525598,-0.1605707;0.1737068;-0.0005080467,-0.2077589;-0.07155077;0.01053765,0.07354309;0.00639836;-0.03082976,0.08725895;-0.2916215;0.0007306915,0.07504499;-0.5837224;0.06802011,0.09003066;-0.6130158;0.008960906,-0.06800149;0.001730611;-0.04210466,-0.09813297;-0.2943282;-0.004140001,-0.0985036;-0.5870165;0.06168854,-0.09910167;-0.6165187;0.001033474,0.0005309861;0.3995669;0.01745091,38.16642
-0;0;0,0.0006061644;0.1998301;0.008219095,0.001593345;0.4997813;0.007887732,0.1152076;0.379681;-0.02124843,0.1649537;0.1868905;-0.002349567,0.1908705;-0.06026214;-0.02962362,-0.1095912;0.3641249;-0.01848709,-0.1580864;0.1705014;-0.005911129,-0.1928626;-0.07689707;-0.01510905,0.07220638;0.0063328;-0.0338546,0.0938831;-0.2914931;-0.005047245,0.08542339;-0.5843223;0.05960142,0.1030387;-0.6134056;0.0009879209,-0.06988961;0.001879229;-0.03888329,-0.09289018;-0.2955935;-0.007562842,-0.08529872;-0.5894082;0.05256443,-0.08644876;-0.5572939;-0.04581635,0.001249712;0.399816;0.01050328,0;0;0,0.0002839711;0.1996429;0.01194242,0.0006949863;0.4995589;0.01619863,0.1156537;0.3806338;-0.01062583,0.1645997;0.1875017;0.006817402,0.2013273;-0.05890086;-0.01408388,-0.1101436;0.3666824;-0.01525598,-0.1605707;0.1737068;-0.0005080467,-0.2077589;-0.07155077;0.01053765,0.07354309;0.00639836;-0.03082976,0.08725895;-0.2916215;0.0007306915,0.07504499;-0.5837224;0.06802011,0.09003066;-0.6130158;0.008960906,-0.06800149;0.001730611;-0.04210466,-0.09813297;-0.2943282;-0.004140001,-0.0985036;-0.5870165;0.06168854,-0.09910167;-0.6165187;0.001033474,0.0005309861;0.3995669;0.01745091,38.18868
-0;0;0,0.0007705086;0.199833;0.008135414,0.002563805;0.4997762;0.007348686,0.1158777;0.3799807;-0.02148262,0.165644;0.1871859;-0.002681652,0.1916898;-0.05995557;-0.02993427,-0.1091715;0.3643209;-0.01833541,-0.1576576;0.1706891;-0.005853233,-0.1923036;-0.07672253;-0.01518901,0.07221929;0.006276119;-0.03383762,0.09389951;-0.2915493;-0.005028404,0.0855371;-0.584402;0.05952683,0.1030145;-0.6134786;0.0008631088,-0.06987631;0.001928482;-0.03890477,-0.09277052;-0.2955574;-0.007631741,-0.0851989;-0.5893539;0.05258684,-0.08639117;-0.5572532;-0.04579097,0.001848916;0.3998194;0.01020096,0;0;0,0.0002361471;0.1996437;0.01193075,0.0006115528;0.4995598;0.01618931,0.1155337;0.3805925;-0.01079332,0.1645882;0.1874825;0.00659034,0.2013383;-0.05892271;-0.01423985,-0.1102323;0.3667513;-0.01529061,-0.1570411;0.1725396;-0.005764746,-0.2048446;-0.07275505;0.0009700791,0.07350606;0.006434105;-0.03091054,0.08730522;-0.2915831;0.0006382652,0.07527225;-0.5836586;0.06807049,0.0903408;-0.6127605;0.008776113,-0.06804603;0.001714593;-0.04203328,-0.09798747;-0.2943821;-0.004214473,-0.0982854;-0.5871031;0.06146886,-0.09972466;-0.6151488;-0.001035541,0.000455927;0.3995677;0.01743853,38.21095
-0;0;0,0.0007705086;0.199833;0.008135414,0.002563805;0.4997762;0.007348686,0.1158777;0.3799807;-0.02148262,0.165644;0.1871859;-0.002681652,0.1916898;-0.05995557;-0.02993427,-0.1091715;0.3643209;-0.01833541,-0.1576576;0.1706891;-0.005853233,-0.1923036;-0.07672253;-0.01518901,0.07221929;0.006276119;-0.03383762,0.09389951;-0.2915493;-0.005028404,0.0855371;-0.584402;0.05952683,0.1030145;-0.6134786;0.0008631088,-0.06987631;0.001928482;-0.03890477,-0.09277052;-0.2955574;-0.007631741,-0.0851989;-0.5893539;0.05258684,-0.08639117;-0.5572532;-0.04579097,0.001848916;0.3998194;0.01020096,0;0;0,0.0002361471;0.1996437;0.01193075,0.0006115528;0.4995598;0.01618931,0.1155337;0.3805925;-0.01079332,0.1645882;0.1874825;0.00659034,0.2013383;-0.05892271;-0.01423985,-0.1102323;0.3667513;-0.01529061,-0.1570411;0.1725396;-0.005764746,-0.2048446;-0.07275505;0.0009700791,0.07350606;0.006434105;-0.03091054,0.08730522;-0.2915831;0.0006382652,0.07527225;-0.5836586;0.06807049,0.0903408;-0.6127605;0.008776113,-0.06804603;0.001714593;-0.04203328,-0.09798747;-0.2943821;-0.004214473,-0.0982854;-0.5871031;0.06146886,-0.09972466;-0.6151488;-0.001035541,0.000455927;0.3995677;0.01743853,38.22227
-0;0;0,0.0008147348;0.1998339;0.008109638,0.002622458;0.4997768;0.00727105,0.1159585;0.380117;-0.02155678,0.1658674;0.1873483;-0.002866592,0.1919923;-0.05978592;-0.03010931,-0.1091196;0.3643818;-0.01843242,-0.1575345;0.1707463;-0.005731796,-0.1921843;-0.07664619;-0.01554621,0.07222071;0.006240995;-0.03384108,0.09410674;-0.2915781;-0.005121741,0.08579666;-0.5844494;0.05935558,0.1031139;-0.613533;0.0006537996,-0.06987303;0.001946298;-0.03890977,-0.09256739;-0.2955521;-0.007610444,-0.0850166;-0.589429;0.05221741,-0.08621006;-0.5573243;-0.04616112,0.001910275;0.3998205;0.01014144,0;0;0,0.0002361471;0.1996437;0.01193075,0.0006115528;0.4995598;0.01618931,0.1155337;0.3805925;-0.01079332,0.1645882;0.1874825;0.00659034,0.2013383;-0.05892271;-0.01423985,-0.1102323;0.3667513;-0.01529061,-0.1570411;0.1725396;-0.005764746,-0.2048446;-0.07275505;0.0009700791,0.07350606;0.006434105;-0.03091054,0.08730522;-0.2915831;0.0006382652,0.07527225;-0.5836586;0.06807049,0.0903408;-0.6127605;0.008776113,-0.06804603;0.001714593;-0.04203328,-0.09798747;-0.2943821;-0.004214473,-0.0982854;-0.5871031;0.06146886,-0.09972466;-0.6151488;-0.001035541,0.000455927;0.3995677;0.01743853,38.24443
-0;0;0,0.0008147348;0.1998339;0.008109638,0.002622458;0.4997768;0.00727105,0.1159585;0.380117;-0.02155678,0.1658674;0.1873483;-0.002866592,0.1919923;-0.05978592;-0.03010931,-0.1091196;0.3643818;-0.01843242,-0.1575345;0.1707463;-0.005731796,-0.1921843;-0.07664619;-0.01554621,0.07222071;0.006240995;-0.03384108,0.09410674;-0.2915781;-0.005121741,0.08579666;-0.5844494;0.05935558,0.1031139;-0.613533;0.0006537996,-0.06987303;0.001946298;-0.03890977,-0.09256739;-0.2955521;-0.007610444,-0.0850166;-0.589429;0.05221741,-0.08621006;-0.5573243;-0.04616112,0.001910275;0.3998205;0.01014144,0;0;0,0.0003649756;0.1996458;0.01189155,0.0009266135;0.4995621;0.0161294,0.1157005;0.3806599;-0.01125294,0.1647703;0.187559;0.006188057,0.2020869;-0.05876601;-0.01458338,-0.1100183;0.3666979;-0.01514924,-0.1570505;0.1725226;-0.005989084,-0.204592;-0.07283607;0.0002515488,0.07340441;0.006542644;-0.03112854,0.0876845;-0.2914324;0.0006043687,0.07575952;-0.5835409;0.06791279,0.09080992;-0.6123188;0.008184042,-0.06820472;0.001607487;-0.04177957,-0.09755889;-0.294589;-0.00428303,-0.09791679;-0.5873438;0.06124938,-0.09922158;-0.6151969;-0.001497593,0.000711666;0.3995702;0.01738217,38.25586
-0;0;0,0.0007696913;0.1998338;0.008115024,0.002471557;0.4997771;0.007247784,0.1158557;0.3801602;-0.02157475,0.1658314;0.1873993;-0.002982957,0.1920107;-0.0596967;-0.03051898,-0.1091746;0.3643218;-0.01857108,-0.1575771;0.1706842;-0.005855751,-0.1921552;-0.07670218;-0.01607023,0.07218516;0.006258565;-0.03391359,0.09422342;-0.2915547;-0.005250944,0.08605625;-0.584453;0.0591223,0.1031117;-0.6138119;0.0007161163,-0.06990368;0.001924794;-0.03885576,-0.09254758;-0.2955735;-0.007518146,-0.08504272;-0.5895278;0.05193377,-0.08622156;-0.5574281;-0.04644403,0.001802574;0.399821;0.01013231,0;0;0,0.0003649756;0.1996458;0.01189155,0.0009266135;0.4995621;0.0161294,0.1157005;0.3806599;-0.01125294,0.1647703;0.187559;0.006188057,0.2020869;-0.05876601;-0.01458338,-0.1100183;0.3666979;-0.01514924,-0.1570505;0.1725226;-0.005989084,-0.204592;-0.07283607;0.0002515488,0.07340441;0.006542644;-0.03112854,0.0876845;-0.2914324;0.0006043687,0.07575952;-0.5835409;0.06791279,0.09080992;-0.6123188;0.008184042,-0.06820472;0.001607487;-0.04177957,-0.09755889;-0.294589;-0.00428303,-0.09791679;-0.5873438;0.06124938,-0.09922158;-0.6151969;-0.001497593,0.000711666;0.3995702;0.01738217,38.26986
-0;0;0,0.0007696913;0.1998338;0.008115024,0.002471557;0.4997771;0.007247784,0.1158557;0.3801602;-0.02157475,0.1658314;0.1873993;-0.002982957,0.1920107;-0.0596967;-0.03051898,-0.1091746;0.3643218;-0.01857108,-0.1575771;0.1706842;-0.005855751,-0.1921552;-0.07670218;-0.01607023,0.07218516;0.006258565;-0.03391359,0.09422342;-0.2915547;-0.005250944,0.08605625;-0.584453;0.0591223,0.1031117;-0.6138119;0.0007161163,-0.06990368;0.001924794;-0.03885576,-0.09254758;-0.2955735;-0.007518146,-0.08504272;-0.5895278;0.05193377,-0.08622156;-0.5574281;-0.04644403,0.001802574;0.399821;0.01013231,0;0;0,0.0003649756;0.1996458;0.01189155,0.0009266135;0.4995621;0.0161294,0.1157005;0.3806599;-0.01125294,0.1647703;0.187559;0.006188057,0.2020869;-0.05876601;-0.01458338,-0.1100183;0.3666979;-0.01514924,-0.1570505;0.1725226;-0.005989084,-0.204592;-0.07283607;0.0002515488,0.07340441;0.006542644;-0.03112854,0.0876845;-0.2914324;0.0006043687,0.07575952;-0.5835409;0.06791279,0.09080992;-0.6123188;0.008184042,-0.06820472;0.001607487;-0.04177957,-0.09755889;-0.294589;-0.00428303,-0.09791679;-0.5873438;0.06124938,-0.09922158;-0.6151969;-0.001497593,0.000711666;0.3995702;0.01738217,38.28913
-0;0;0,0.000967652;0.199837;0.008014166,0.003508129;0.4997693;0.006651787,0.1165457;0.3801835;-0.02180093,0.1665944;0.1874355;-0.003271058,0.1928195;-0.05965582;-0.03080499,-0.1086907;0.3645241;-0.01852217,-0.1570357;0.1708682;-0.005867116,-0.1915661;-0.07649718;-0.01673165,0.07215776;0.006239678;-0.03397535,0.09435165;-0.2915662;-0.00535568,0.08635642;-0.5844704;0.05901214,0.1030605;-0.613755;0.0004039817,-0.0699342;0.00194184;-0.03879995,-0.09240386;-0.295544;-0.007219702,-0.08499847;-0.5896112;0.05168416,-0.08617841;-0.5575275;-0.0466907,0.002453537;0.3998237;0.009777999,0;0;0,0.0004158584;0.1996509;0.01180487,0.001087673;0.4995683;0.01594876,0.1157412;0.3805545;-0.01165374,0.164901;0.1874574;0.005574984,0.2024993;-0.05885924;-0.0147838,-0.1099362;0.3665221;-0.01498184,-0.1569394;0.172312;-0.006429509,-0.2048438;-0.0730142;-0.001935001,0.0733449;0.006655714;-0.03124462,0.08804088;-0.2913262;0.0002322514,0.07615972;-0.5833977;0.06770872,0.09127814;-0.6120673;0.007854387,-0.06824899;0.00150758;-0.04171092,-0.09728269;-0.2947745;-0.004643794,-0.09741867;-0.5875574;0.06076391,-0.09907535;-0.6146421;-0.002916556,0.0008329418;0.3995769;0.01722951,38.30031
-0;0;0,0.000967652;0.199837;0.008014166,0.003508129;0.4997693;0.006651787,0.1165457;0.3801835;-0.02180093,0.1665944;0.1874355;-0.003271058,0.1928195;-0.05965582;-0.03080499,-0.1086907;0.3645241;-0.01852217,-0.1570357;0.1708682;-0.005867116,-0.1915661;-0.07649718;-0.01673165,0.07215776;0.006239678;-0.03397535,0.09435165;-0.2915662;-0.00535568,0.08635642;-0.5844704;0.05901214,0.1030605;-0.613755;0.0004039817,-0.0699342;0.00194184;-0.03879995,-0.09240386;-0.295544;-0.007219702,-0.08499847;-0.5896112;0.05168416,-0.08617841;-0.5575275;-0.0466907,0.002453537;0.3998237;0.009777999,0;0;0,0.0004158584;0.1996509;0.01180487,0.001087673;0.4995683;0.01594876,0.1157412;0.3805545;-0.01165374,0.164901;0.1874574;0.005574984,0.2024993;-0.05885924;-0.0147838,-0.1099362;0.3665221;-0.01498184,-0.1569394;0.172312;-0.006429509,-0.2048438;-0.0730142;-0.001935001,0.0733449;0.006655714;-0.03124462,0.08804088;-0.2913262;0.0002322514,0.07615972;-0.5833977;0.06770872,0.09127814;-0.6120673;0.007854387,-0.06824899;0.00150758;-0.04171092,-0.09728269;-0.2947745;-0.004643794,-0.09741867;-0.5875574;0.06076391,-0.09907535;-0.6146421;-0.002916556,0.0008329418;0.3995769;0.01722951,38.31148
-0;0;0,0.004589166;0.1998258;0.006969985,0.01144201;0.499682;0.004144087,0.1230477;0.378761;-0.02366254,0.1721922;0.1854419;-0.009083376,0.1998166;-0.06114239;-0.0396294,-0.1028797;0.3661164;-0.01905925,-0.1545992;0.1732777;-0.007296964,-0.1831008;-0.07456428;-0.02348341,0.07240271;0.003893296;-0.03380369,0.09551632;-0.2940244;-0.007142941,0.08375235;-0.587095;0.05587474,0.09539191;-0.6180127;-0.001717415,-0.0697858;0.004259648;-0.03888183,-0.09257553;-0.2930801;-0.006175078,-0.08826101;-0.5876295;0.05058793,-0.08966876;-0.5557046;-0.04775488,0.009146802;0.3997725;0.007723795,0;0;0,0.0004158584;0.1996509;0.01180487,0.001087673;0.4995683;0.01594876,0.1157412;0.3805545;-0.01165374,0.164901;0.1874574;0.005574984,0.2024993;-0.05885924;-0.0147838,-0.1099362;0.3665221;-0.01498184,-0.1569394;0.172312;-0.006429509,-0.2048438;-0.0730142;-0.001935001,0.0733449;0.006655714;-0.03124462,0.08804088;-0.2913262;0.0002322514,0.07615972;-0.5833977;0.06770872,0.09127814;-0.6120673;0.007854387,-0.06824899;0.00150758;-0.04171092,-0.09728269;-0.2947745;-0.004643794,-0.09741867;-0.5875574;0.06076391,-0.09907535;-0.6146421;-0.002916556,0.0008329418;0.3995769;0.01722951,55.41275
-0;0;0,0.004589166;0.1998258;0.006969985,0.01144201;0.499682;0.004144087,0.1230477;0.378761;-0.02366254,0.1721922;0.1854419;-0.009083376,0.1998166;-0.06114239;-0.0396294,-0.1028797;0.3661164;-0.01905925,-0.1545992;0.1732777;-0.007296964,-0.1831008;-0.07456428;-0.02348341,0.07240271;0.003893296;-0.03380369,0.09551632;-0.2940244;-0.007142941,0.08375235;-0.587095;0.05587474,0.09539191;-0.6180127;-0.001717415,-0.0697858;0.004259648;-0.03888183,-0.09257553;-0.2930801;-0.006175078,-0.08826101;-0.5876295;0.05058793,-0.08966876;-0.5557046;-0.04775488,0.009146802;0.3997725;0.007723795,0;0;0,0.0004089758;0.1996548;0.0117376,0.001092815;0.4995734;0.01579934,0.1157014;0.3804102;-0.01183053,0.1649359;0.1873211;0.005273137,0.2025813;-0.05902226;-0.01467131,-0.1099863;0.366568;-0.01497986,-0.1604862;0.1735336;-0.001287481,-0.2081837;-0.07180509;0.004533076,0.07332524;0.00662415;-0.03129744,0.0882174;-0.2913647;2.146512E-05,0.07654981;-0.5834154;0.06762511,0.09168211;-0.6122308;0.007966552,-0.06826345;0.00155846;-0.0416854,-0.09702894;-0.2947826;-0.004881497,-0.09724006;-0.5875691;0.06050976,-0.09870529;-0.6150771;-0.002659503,0.0008314142;0.3995823;0.0171058,55.42898
-0;0;0,0.004439812;0.1998319;0.00689048,0.01093528;0.4996953;0.004014336,0.1227032;0.3788432;-0.02375961,0.1721379;0.1856076;-0.009054524,0.2011239;-0.06088613;-0.03906519,-0.1032923;0.3661699;-0.01899868,-0.1543459;0.173152;-0.007268938,-0.1821044;-0.07476875;-0.02354157,0.07246985;0.003936998;-0.03365443,0.09545688;-0.2940152;-0.007270943,0.08373994;-0.5871015;0.05568245,0.09539612;-0.6177343;-0.002304506,-0.06972165;0.004224788;-0.03900053,-0.0925529;-0.2931235;-0.006400682,-0.08840688;-0.5876733;0.05037285,-0.08981376;-0.5557547;-0.0479688,0.00878671;0.3997834;0.007617775,0;0;0,0.0004089758;0.1996548;0.0117376,0.001092815;0.4995734;0.01579934,0.1157014;0.3804102;-0.01183053,0.1649359;0.1873211;0.005273137,0.2025813;-0.05902226;-0.01467131,-0.1099863;0.366568;-0.01497986,-0.1604862;0.1735336;-0.001287481,-0.2081837;-0.07180509;0.004533076,0.07332524;0.00662415;-0.03129744,0.0882174;-0.2913647;2.146512E-05,0.07654981;-0.5834154;0.06762511,0.09168211;-0.6122308;0.007966552,-0.06826345;0.00155846;-0.0416854,-0.09702894;-0.2947826;-0.004881497,-0.09724006;-0.5875691;0.06050976,-0.09870529;-0.6150771;-0.002659503,0.0008314142;0.3995823;0.0171058,55.44588
-0;0;0,0.004469162;0.1998309;0.006902261,0.01101688;0.4996931;0.004020981,0.1227766;0.3788633;-0.02373135,0.1723756;0.1856821;-0.008866721,0.2025002;-0.06072529;-0.0384623,-0.1032152;0.3661748;-0.01905166,-0.1544155;0.1731997;-0.007255599,-0.182119;-0.07471868;-0.02365651,0.07247666;0.003914069;-0.03364243,0.09550009;-0.2940312;-0.00721227,0.08380074;-0.5871136;0.0557626,0.09468403;-0.6176511;-0.002506331,-0.06974237;0.004248373;-0.03896092,-0.09243506;-0.2931209;-0.006455556,-0.08842849;-0.5876354;0.05051062,-0.08980748;-0.5557299;-0.04782902,0.00885088;0.3997816;0.007627335,0;0;0,0.0004089758;0.1996548;0.0117376,0.001092815;0.4995734;0.01579934,0.1157014;0.3804102;-0.01183053,0.1649359;0.1873211;0.005273137,0.2025813;-0.05902226;-0.01467131,-0.1099863;0.366568;-0.01497986,-0.1604862;0.1735336;-0.001287481,-0.2081837;-0.07180509;0.004533076,0.07332524;0.00662415;-0.03129744,0.0882174;-0.2913647;2.146512E-05,0.07654981;-0.5834154;0.06762511,0.09168211;-0.6122308;0.007966552,-0.06826345;0.00155846;-0.0416854,-0.09702894;-0.2947826;-0.004881497,-0.09724006;-0.5875691;0.06050976,-0.09870529;-0.6150771;-0.002659503,0.0008314142;0.3995823;0.0171058,55.47123
-0;0;0,0.004469162;0.1998309;0.006902261,0.01101688;0.4996931;0.004020981,0.1227766;0.3788633;-0.02373135,0.1723756;0.1856821;-0.008866721,0.2025002;-0.06072529;-0.0384623,-0.1032152;0.3661748;-0.01905166,-0.1544155;0.1731997;-0.007255599,-0.182119;-0.07471868;-0.02365651,0.07247666;0.003914069;-0.03364243,0.09550009;-0.2940312;-0.00721227,0.08380074;-0.5871136;0.0557626,0.09468403;-0.6176511;-0.002506331,-0.06974237;0.004248373;-0.03896092,-0.09243506;-0.2931209;-0.006455556,-0.08842849;-0.5876354;0.05051062,-0.08980748;-0.5557299;-0.04782902,0.00885088;0.3997816;0.007627335,0;0;0,0.0004061494;0.1996579;0.01168664,0.001102019;0.4995773;0.01569656,0.1156895;0.3804416;-0.01199848,0.16485;0.1873297;0.005061548,0.2025418;-0.05902751;-0.01462228,-0.110122;0.3667662;-0.01478447,-0.1566119;0.1723859;-0.007367807,-0.2042719;-0.07302211;-0.005519719,0.07326246;0.006630221;-0.03144283,0.08796935;-0.2913143;0.0003811866,0.07671215;-0.5835023;0.06745923,0.09134748;-0.6125333;0.007962152,-0.06839269;0.001561584;-0.04147288,-0.09705353;-0.2948532;-0.005184606,-0.09715421;-0.5876481;0.0601695,-0.09851085;-0.614814;-0.003419727,0.0008350355;0.3995863;0.01701769,55.48679
-0;0;0,0.004385027;0.1998318;0.006928635,0.01076637;0.4996975;0.004056031,0.1226217;0.3788399;-0.02352166,0.1724186;0.1857504;-0.008136929,0.2032552;-0.06051472;-0.03818021,-0.1033845;0.3662027;-0.01916576,-0.1545646;0.1732198;-0.007408762,-0.1823148;-0.07468283;-0.0239679,0.07247507;0.003904186;-0.03364701,0.09532326;-0.2940192;-0.006821588,0.08382089;-0.5871723;0.0558597,0.09440275;-0.6179243;-0.002167434,-0.0697421;0.004258417;-0.0389603,-0.09237381;-0.2931283;-0.006572235,-0.08850426;-0.5875889;0.05068109,-0.08980452;-0.5556855;-0.04765926,0.008653152;0.399785;0.007663073,0;0;0,0.0004061494;0.1996579;0.01168664,0.001102019;0.4995773;0.01569656,0.1156895;0.3804416;-0.01199848,0.16485;0.1873297;0.005061548,0.2025418;-0.05902751;-0.01462228,-0.110122;0.3667662;-0.01478447,-0.1566119;0.1723859;-0.007367807,-0.2042719;-0.07302211;-0.005519719,0.07326246;0.006630221;-0.03144283,0.08796935;-0.2913143;0.0003811866,0.07671215;-0.5835023;0.06745923,0.09134748;-0.6125333;0.007962152,-0.06839269;0.001561584;-0.04147288,-0.09705353;-0.2948532;-0.005184606,-0.09715421;-0.5876481;0.0601695,-0.09851085;-0.614814;-0.003419727,0.0008350355;0.3995863;0.01701769,55.49811
-0;0;0,0.004385027;0.1998318;0.006928635,0.01076637;0.4996975;0.004056031,0.1226217;0.3788399;-0.02352166,0.1724186;0.1857504;-0.008136929,0.2032552;-0.06051472;-0.03818021,-0.1033845;0.3662027;-0.01916576,-0.1545646;0.1732198;-0.007408762,-0.1823148;-0.07468283;-0.0239679,0.07247507;0.003904186;-0.03364701,0.09532326;-0.2940192;-0.006821588,0.08382089;-0.5871723;0.0558597,0.09440275;-0.6179243;-0.002167434,-0.0697421;0.004258417;-0.0389603,-0.09237381;-0.2931283;-0.006572235,-0.08850426;-0.5875889;0.05068109,-0.08980452;-0.5556855;-0.04765926,0.008653152;0.399785;0.007663073,0;0;0,0.0004061494;0.1996579;0.01168664,0.001102019;0.4995773;0.01569656,0.1156895;0.3804416;-0.01199848,0.16485;0.1873297;0.005061548,0.2025418;-0.05902751;-0.01462228,-0.110122;0.3667662;-0.01478447,-0.1566119;0.1723859;-0.007367807,-0.2042719;-0.07302211;-0.005519719,0.07326246;0.006630221;-0.03144283,0.08796935;-0.2913143;0.0003811866,0.07671215;-0.5835023;0.06745923,0.09134748;-0.6125333;0.007962152,-0.06839269;0.001561584;-0.04147288,-0.09705353;-0.2948532;-0.005184606,-0.09715421;-0.5876481;0.0601695,-0.09851085;-0.614814;-0.003419727,0.0008350355;0.3995863;0.01701769,55.50961
-0;0;0,0.004437868;0.1998312;0.006914164,0.01088551;0.4996953;0.004017917,0.1227433;0.3789587;-0.02354867,0.1727327;0.1859558;-0.007706972,0.2039997;-0.06025477;-0.03775227,-0.1033273;0.3662716;-0.01911477,-0.1540041;0.1731571;-0.007341524,-0.1816351;-0.07474466;-0.02411273,0.07247131;0.0039337;-0.03365168,0.0955058;-0.293973;-0.006799737,0.08390389;-0.5871522;0.05574121,0.09420211;-0.61757;-0.00279865,-0.06974962;0.00421938;-0.03895109,-0.09221697;-0.2931885;-0.006643027,-0.08835071;-0.5876652;0.05052796,-0.08963399;-0.5557618;-0.04781261,0.008751383;0.3997834;0.007630975,0;0;0,0.0004137888;0.1996598;0.01165339,0.001131683;0.4995795;0.01563553,0.1156844;0.3804568;-0.01216568,0.1646718;0.1872608;0.004433498,0.2030512;-0.05902794;-0.01477283,-0.1100626;0.3664871;-0.01467929,-0.1562088;0.1720112;-0.007630755,-0.2032963;-0.07351142;-0.006446266,0.07320705;0.006638627;-0.03156987,0.08798028;-0.2913115;0.000171084,0.07675645;-0.5834779;0.06734878,0.09149644;-0.6120384;0.00725738,-0.06846806;0.001556981;-0.04134851,-0.09678496;-0.2949118;-0.005232196,-0.09683754;-0.587752;0.05991848,-0.09795275;-0.6149269;-0.00366452,0.0008563872;0.3995888;0.01696325,55.53152
-0;0;0,0.004437868;0.1998312;0.006914164,0.01088551;0.4996953;0.004017917,0.1227433;0.3789587;-0.02354867,0.1727327;0.1859558;-0.007706972,0.2039997;-0.06025477;-0.03775227,-0.1033273;0.3662716;-0.01911477,-0.1540041;0.1731571;-0.007341524,-0.1816351;-0.07474466;-0.02411273,0.07247131;0.0039337;-0.03365168,0.0955058;-0.293973;-0.006799737,0.08390389;-0.5871522;0.05574121,0.09420211;-0.61757;-0.00279865,-0.06974962;0.00421938;-0.03895109,-0.09221697;-0.2931885;-0.006643027,-0.08835071;-0.5876652;0.05052796,-0.08963399;-0.5557618;-0.04781261,0.008751383;0.3997834;0.007630975,0;0;0,0.0004137888;0.1996598;0.01165339,0.001131683;0.4995795;0.01563553,0.1156844;0.3804568;-0.01216568,0.1646718;0.1872608;0.004433498,0.2030512;-0.05902794;-0.01477283,-0.1100626;0.3664871;-0.01467929,-0.1562088;0.1720112;-0.007630755,-0.2032963;-0.07351142;-0.006446266,0.07320705;0.006638627;-0.03156987,0.08798028;-0.2913115;0.000171084,0.07675645;-0.5834779;0.06734878,0.09149644;-0.6120384;0.00725738,-0.06846806;0.001556981;-0.04134851,-0.09678496;-0.2949118;-0.005232196,-0.09683754;-0.587752;0.05991848,-0.09795275;-0.6149269;-0.00366452,0.0008563872;0.3995888;0.01696325,55.54272
-0;0;0,0.004509738;0.1998286;0.006942505,0.01104004;0.4996917;0.004096547,0.1228852;0.3790039;-0.02339161,0.1730335;0.1860447;-0.007520117,0.2045679;-0.06015222;-0.03739724,-0.1032389;0.3663845;-0.0191391,-0.1540419;0.1732998;-0.007420462,-0.1818843;-0.07457611;-0.02422347,0.07248548;0.003886575;-0.03362662,0.09552816;-0.2940092;-0.006660547,0.08369792;-0.5869886;0.05676733,0.09479842;-0.615721;-0.003879145,-0.06976316;0.004264787;-0.03892188,-0.09204836;-0.2931631;-0.006672621,-0.08837138;-0.587684;0.05028298,-0.08958907;-0.5557741;-0.04805962,0.008855981;0.39978;0.007684108,0;0;0,0.0004137888;0.1996598;0.01165339,0.001131683;0.4995795;0.01563553,0.1156844;0.3804568;-0.01216568,0.1646718;0.1872608;0.004433498,0.2030512;-0.05902794;-0.01477283,-0.1100626;0.3664871;-0.01467929,-0.1562088;0.1720112;-0.007630755,-0.2032963;-0.07351142;-0.006446266,0.07320705;0.006638627;-0.03156987,0.08798028;-0.2913115;0.000171084,0.07675645;-0.5834779;0.06734878,0.09149644;-0.6120384;0.00725738,-0.06846806;0.001556981;-0.04134851,-0.09678496;-0.2949118;-0.005232196,-0.09683754;-0.587752;0.05991848,-0.09795275;-0.6149269;-0.00366452,0.0008563872;0.3995888;0.01696325,55.56506
-0;0;0,0.004509738;0.1998286;0.006942505,0.01104004;0.4996917;0.004096547,0.1228852;0.3790039;-0.02339161,0.1730335;0.1860447;-0.007520117,0.2045679;-0.06015222;-0.03739724,-0.1032389;0.3663845;-0.0191391,-0.1540419;0.1732998;-0.007420462,-0.1818843;-0.07457611;-0.02422347,0.07248548;0.003886575;-0.03362662,0.09552816;-0.2940092;-0.006660547,0.08369792;-0.5869886;0.05676733,0.09479842;-0.615721;-0.003879145,-0.06976316;0.004264787;-0.03892188,-0.09204836;-0.2931631;-0.006672621,-0.08837138;-0.587684;0.05028298,-0.08958907;-0.5557741;-0.04805962,0.008855981;0.39978;0.007684108,0;0;0,0.0002060282;0.1996685;0.01150829,0.000430161;0.4995937;0.01505022,0.1151859;0.3806094;-0.01258258,0.1647636;0.1875211;0.003509672,0.2032448;-0.0588298;-0.01466835,-0.1105265;0.3661478;-0.01491811,-0.1565775;0.1716455;-0.007980473,-0.2033612;-0.07393755;-0.00745846,0.07319387;0.006710636;-0.03158519,0.0879598;-0.2912379;0.0001739897,0.0769144;-0.5834299;0.06726965,0.09201536;-0.6124723;0.007904153,-0.06847791;0.001490937;-0.04133464,-0.09681383;-0.2950082;-0.005482838,-0.09711501;-0.5878145;0.05981939,-0.0973549;-0.6158087;-0.002765395,0.0003358536;0.399605;0.01654882,55.57619
-0;0;0,0.004509738;0.1998286;0.006942505,0.01104004;0.4996917;0.004096547,0.1228852;0.3790039;-0.02339161,0.1730335;0.1860447;-0.007520117,0.2045679;-0.06015222;-0.03739724,-0.1032389;0.3663845;-0.0191391,-0.1540419;0.1732998;-0.007420462,-0.1818843;-0.07457611;-0.02422347,0.07248548;0.003886575;-0.03362662,0.09552816;-0.2940092;-0.006660547,0.08369792;-0.5869886;0.05676733,0.09479842;-0.615721;-0.003879145,-0.06976316;0.004264787;-0.03892188,-0.09204836;-0.2931631;-0.006672621,-0.08837138;-0.587684;0.05028298,-0.08958907;-0.5557741;-0.04805962,0.008855981;0.39978;0.007684108,0;0;0,0.0002060282;0.1996685;0.01150829,0.000430161;0.4995937;0.01505022,0.1151859;0.3806094;-0.01258258,0.1647636;0.1875211;0.003509672,0.2032448;-0.0588298;-0.01466835,-0.1105265;0.3661478;-0.01491811,-0.1565775;0.1716455;-0.007980473,-0.2033612;-0.07393755;-0.00745846,0.07319387;0.006710636;-0.03158519,0.0879598;-0.2912379;0.0001739897,0.0769144;-0.5834299;0.06726965,0.09201536;-0.6124723;0.007904153,-0.06847791;0.001490937;-0.04133464,-0.09681383;-0.2950082;-0.005482838,-0.09711501;-0.5878145;0.05981939,-0.0973549;-0.6158087;-0.002765395,0.0003358536;0.399605;0.01654882,55.58744
-0;0;0,0.004476717;0.1998298;0.006930123,0.01095969;0.4996934;0.00403773,0.1228413;0.3790521;-0.02338399,0.1731355;0.1861571;-0.007196462,0.2051937;-0.05991852;-0.03751232,-0.1033097;0.3665148;-0.01931525,-0.1542411;0.1734577;-0.007698817,-0.1819894;-0.07441649;-0.02468225,0.07250109;0.003907954;-0.03359045,0.09557327;-0.2939833;-0.006600011,0.08374748;-0.5869884;0.05671025,0.09478545;-0.6158952;-0.003720503,-0.06975262;0.004254491;-0.03894189,-0.09205549;-0.2931697;-0.006670199,-0.08842451;-0.5877049;0.05021399,-0.08959679;-0.5557964;-0.0481289,0.008790693;0.399782;0.007643848,0;0;0,0.0002060282;0.1996685;0.01150829,0.000430161;0.4995937;0.01505022,0.1151859;0.3806094;-0.01258258,0.1647636;0.1875211;0.003509672,0.2032448;-0.0588298;-0.01466835,-0.1105265;0.3661478;-0.01491811,-0.1565775;0.1716455;-0.007980473,-0.2033612;-0.07393755;-0.00745846,0.07319387;0.006710636;-0.03158519,0.0879598;-0.2912379;0.0001739897,0.0769144;-0.5834299;0.06726965,0.09201536;-0.6124723;0.007904153,-0.06847791;0.001490937;-0.04133464,-0.09681383;-0.2950082;-0.005482838,-0.09711501;-0.5878145;0.05981939,-0.0973549;-0.6158087;-0.002765395,0.0003358536;0.399605;0.01654882,55.60957
-0;0;0,0.004418093;0.1998316;0.006914941,0.01076261;0.499697;0.003937963,0.122755;0.3793251;-0.02339688,0.1733446;0.1865086;-0.007195493,0.2054631;-0.05956107;-0.03749602,-0.1034258;0.3664435;-0.01941916,-0.154377;0.1733867;-0.00788507,-0.1821295;-0.07448858;-0.02484587,0.07249979;0.003903355;-0.03359381,0.09560643;-0.2939807;-0.006553074,0.0837701;-0.5869804;0.05677987,0.0947131;-0.6156718;-0.003948316,-0.0697599;0.004254723;-0.03892882,-0.09194487;-0.2932096;-0.006947335,-0.08855854;-0.5877084;0.0501402,-0.08971099;-0.5558028;-0.04820238,0.008642325;0.3997859;0.007581243,0;0;0,0.0001271764;0.1996721;0.01144742,0.0002647379;0.4995983;0.0149157,0.1150384;0.380469;-0.01262363,0.1648113;0.1874201;0.003337983,0.2033515;-0.05893354;-0.01467746,-0.1106551;0.3659836;-0.01489493,-0.1565387;0.1714341;-0.008171785,-0.202746;-0.07425839;-0.007922604,0.07318633;0.006726855;-0.03159921,0.088129;-0.2912155;0.0001354814,0.07719477;-0.5834402;0.06710684,0.09234935;-0.6124064;0.007653717,-0.06848897;0.001475416;-0.04131688,-0.0965898;-0.295063;-0.005605567,-0.09676311;-0.5878824;0.05963864,-0.09726407;-0.6155092;-0.003399681,0.000194419;0.3996098;0.01643649,55.6319
-0;0;0,0.004418093;0.1998316;0.006914941,0.01076261;0.499697;0.003937963,0.122755;0.3793251;-0.02339688,0.1733446;0.1865086;-0.007195493,0.2054631;-0.05956107;-0.03749602,-0.1034258;0.3664435;-0.01941916,-0.154377;0.1733867;-0.00788507,-0.1821295;-0.07448858;-0.02484587,0.07249979;0.003903355;-0.03359381,0.09560643;-0.2939807;-0.006553074,0.0837701;-0.5869804;0.05677987,0.0947131;-0.6156718;-0.003948316,-0.0697599;0.004254723;-0.03892882,-0.09194487;-0.2932096;-0.006947335,-0.08855854;-0.5877084;0.0501402,-0.08971099;-0.5558028;-0.04820238,0.008642325;0.3997859;0.007581243,0;0;0,0.0001271764;0.1996721;0.01144742,0.0002647379;0.4995983;0.0149157,0.1150384;0.380469;-0.01262363,0.1648113;0.1874201;0.003337983,0.2033515;-0.05893354;-0.01467746,-0.1106551;0.3659836;-0.01489493,-0.1565387;0.1714341;-0.008171785,-0.202746;-0.07425839;-0.007922604,0.07318633;0.006726855;-0.03159921,0.088129;-0.2912155;0.0001354814,0.07719477;-0.5834402;0.06710684,0.09234935;-0.6124064;0.007653717,-0.06848897;0.001475416;-0.04131688,-0.0965898;-0.295063;-0.005605567,-0.09676311;-0.5878824;0.05963864,-0.09726407;-0.6155092;-0.003399681,0.000194419;0.3996098;0.01643649,55.64315
-0;0;0,0.004418093;0.1998316;0.006914941,0.01076261;0.499697;0.003937963,0.122755;0.3793251;-0.02339688,0.1733446;0.1865086;-0.007195493,0.2054631;-0.05956107;-0.03749602,-0.1034258;0.3664435;-0.01941916,-0.154377;0.1733867;-0.00788507,-0.1821295;-0.07448858;-0.02484587,0.07249979;0.003903355;-0.03359381,0.09560643;-0.2939807;-0.006553074,0.0837701;-0.5869804;0.05677987,0.0947131;-0.6156718;-0.003948316,-0.0697599;0.004254723;-0.03892882,-0.09194487;-0.2932096;-0.006947335,-0.08855854;-0.5877084;0.0501402,-0.08971099;-0.5558028;-0.04820238,0.008642325;0.3997859;0.007581243,0;0;0,0.0001271764;0.1996721;0.01144742,0.0002647379;0.4995983;0.0149157,0.1150384;0.380469;-0.01262363,0.1648113;0.1874201;0.003337983,0.2033515;-0.05893354;-0.01467746,-0.1106551;0.3659836;-0.01489493,-0.1565387;0.1714341;-0.008171785,-0.202746;-0.07425839;-0.007922604,0.07318633;0.006726855;-0.03159921,0.088129;-0.2912155;0.0001354814,0.07719477;-0.5834402;0.06710684,0.09234935;-0.6124064;0.007653717,-0.06848897;0.001475416;-0.04131688,-0.0965898;-0.295063;-0.005605567,-0.09676311;-0.5878824;0.05963864,-0.09726407;-0.6155092;-0.003399681,0.000194419;0.3996098;0.01643649,55.65442
-0;0;0,0.004392108;0.1998316;0.006930135,0.01070618;0.4996978;0.003972446,0.1227111;0.3793674;-0.02337656,0.1733098;0.1865589;-0.007108618,0.2054282;-0.05953364;-0.03722344,-0.1034603;0.3664435;-0.01945046,-0.1544583;0.1733944;-0.007994777,-0.1817087;-0.07451405;-0.02528133,0.07250872;0.003927124;-0.03357177,0.09565943;-0.2939659;-0.006668447,0.08388396;-0.587002;0.05650736,0.09461532;-0.6160254;-0.003826302,-0.06975475;0.004246993;-0.0389389,-0.09179924;-0.2932523;-0.007186245,-0.08876926;-0.5877238;0.05006193,-0.08991136;-0.5558156;-0.04828126,0.0085932;0.3997864;0.007610043,0;0;0,0.0002677047;0.1996806;0.0112949,0.0006044654;0.4996085;0.0146242,0.115316;0.3804719;-0.01286546,0.1650482;0.1874023;0.002972174,0.204006;-0.05889606;-0.01490008,-0.110351;0.3659589;-0.01520918,-0.1561211;0.1713829;-0.008481223,-0.2019123;-0.0743877;-0.008445797,0.07313974;0.00660776;-0.03173193,0.08865461;-0.2913276;-0.0002076104,0.07777289;-0.5835445;0.0668065,0.09297355;-0.6124923;0.007340685,-0.06856678;0.001601136;-0.04118292,-0.09620588;-0.2950473;-0.006029073,-0.09659746;-0.5878389;0.05933888,-0.09606866;-0.6146435;-0.004698437,0.0004704503;0.3996208;0.01618316,55.66577
-0;0;0,0.004392108;0.1998316;0.006930135,0.01070618;0.4996978;0.003972446,0.1227111;0.3793674;-0.02337656,0.1733098;0.1865589;-0.007108618,0.2054282;-0.05953364;-0.03722344,-0.1034603;0.3664435;-0.01945046,-0.1544583;0.1733944;-0.007994777,-0.1817087;-0.07451405;-0.02528133,0.07250872;0.003927124;-0.03357177,0.09565943;-0.2939659;-0.006668447,0.08388396;-0.587002;0.05650736,0.09461532;-0.6160254;-0.003826302,-0.06975475;0.004246993;-0.0389389,-0.09179924;-0.2932523;-0.007186245,-0.08876926;-0.5877238;0.05006193,-0.08991136;-0.5558156;-0.04828126,0.0085932;0.3997864;0.007610043,0;0;0,0.0002677047;0.1996806;0.0112949,0.0006044654;0.4996085;0.0146242,0.115316;0.3804719;-0.01286546,0.1650482;0.1874023;0.002972174,0.204006;-0.05889606;-0.01490008,-0.110351;0.3659589;-0.01520918,-0.1561211;0.1713829;-0.008481223,-0.2019123;-0.0743877;-0.008445797,0.07313974;0.00660776;-0.03173193,0.08865461;-0.2913276;-0.0002076104,0.07777289;-0.5835445;0.0668065,0.09297355;-0.6124923;0.007340685,-0.06856678;0.001601136;-0.04118292,-0.09620588;-0.2950473;-0.006029073,-0.09659746;-0.5878389;0.05933888,-0.09606866;-0.6146435;-0.004698437,0.0004704503;0.3996208;0.01618316,55.68769
-0;0;0,0.004377179;0.1998319;0.006932815,0.01070338;0.4996976;0.003959689,0.1227338;0.3794398;-0.0233099,0.1733594;0.1866342;-0.007091576,0.2054175;-0.05946186;-0.03724146,-0.103399;0.3663706;-0.01966112,-0.1544687;0.1733191;-0.00857067,-0.1817577;-0.07461624;-0.02540466,0.07252603;0.003939715;-0.03353285,0.09575199;-0.2939562;-0.006726019,0.08394913;-0.5869927;0.05644286,0.09474599;-0.615711;-0.004276559,-0.069739;0.004229262;-0.03896903,-0.09177446;-0.293274;-0.007247049,-0.08821896;-0.5876182;0.05062186,-0.089292;-0.5557089;-0.04772231,0.00858319;0.3997865;0.007603693,0;0;0,0.0002677047;0.1996806;0.0112949,0.0006044654;0.4996085;0.0146242,0.115316;0.3804719;-0.01286546,0.1650482;0.1874023;0.002972174,0.204006;-0.05889606;-0.01490008,-0.110351;0.3659589;-0.01520918,-0.1561211;0.1713829;-0.008481223,-0.2019123;-0.0743877;-0.008445797,0.07313974;0.00660776;-0.03173193,0.08865461;-0.2913276;-0.0002076104,0.07777289;-0.5835445;0.0668065,0.09297355;-0.6124923;0.007340685,-0.06856678;0.001601136;-0.04118292,-0.09620588;-0.2950473;-0.006029073,-0.09659746;-0.5878389;0.05933888,-0.09606866;-0.6146435;-0.004698437,0.0004704503;0.3996208;0.01618316,55.71012
-0;0;0,0.004377179;0.1998319;0.006932815,0.01070338;0.4996976;0.003959689,0.1227338;0.3794398;-0.0233099,0.1733594;0.1866342;-0.007091576,0.2054175;-0.05946186;-0.03724146,-0.103399;0.3663706;-0.01966112,-0.1544687;0.1733191;-0.00857067,-0.1817577;-0.07461624;-0.02540466,0.07252603;0.003939715;-0.03353285,0.09575199;-0.2939562;-0.006726019,0.08394913;-0.5869927;0.05644286,0.09474599;-0.615711;-0.004276559,-0.069739;0.004229262;-0.03896903,-0.09177446;-0.293274;-0.007247049,-0.08821896;-0.5876182;0.05062186,-0.089292;-0.5557089;-0.04772231,0.00858319;0.3997865;0.007603693,0;0;0,0.0001783205;0.1996783;0.01133855,0.0004056554;0.4996053;0.01477612,0.1151354;0.3805221;-0.01285153,0.165148;0.1875132;0.002842173,0.2045803;-0.05873434;-0.01468655,-0.1104415;0.3657681;-0.01516223,-0.1561935;0.1711783;-0.008716431,-0.2018245;-0.07462198;-0.008949053,0.07311384;0.00671625;-0.03176883,0.08883266;-0.291201;-0.0001734681,0.07808474;-0.5834569;0.06669162,0.09330415;-0.6123227;0.007121865,-0.06855652;0.001515447;-0.04120323,-0.09730479;-0.2949291;-0.005228799,-0.09591616;-0.5880646;0.05856549,-0.09525047;-0.5555274;-0.03989569,0.0003052069;0.3996168;0.01629309,55.72157
-0;0;0,0.004351698;0.1998314;0.006961697,0.01059565;0.4996998;0.004051769,0.122675;0.3793693;-0.02313603,0.173398;0.1865988;-0.006804571,0.2052524;-0.05949648;-0.03717592,-0.1034486;0.366324;-0.01964953,-0.1545218;0.1732714;-0.008595665,-0.1819293;-0.0746368;-0.02563579,0.07254033;0.003956082;-0.0335,0.09577972;-0.2939372;-0.006676562,0.08400095;-0.5869718;0.05650591,0.09451368;-0.6156061;-0.004372038,-0.06971646;0.004195346;-0.03901301,-0.09214881;-0.2932281;-0.006824825,-0.08787286;-0.5875659;0.05102856,-0.0889072;-0.5556529;-0.04731669,0.008507056;0.399787;0.007666524,0;0;0,0.0001783205;0.1996783;0.01133855,0.0004056554;0.4996053;0.01477612,0.1151354;0.3805221;-0.01285153,0.165148;0.1875132;0.002842173,0.2045803;-0.05873434;-0.01468655,-0.1104415;0.3657681;-0.01516223,-0.1561935;0.1711783;-0.008716431,-0.2018245;-0.07462198;-0.008949053,0.07311384;0.00671625;-0.03176883,0.08883266;-0.291201;-0.0001734681,0.07808474;-0.5834569;0.06669162,0.09330415;-0.6123227;0.007121865,-0.06855652;0.001515447;-0.04120323,-0.09730479;-0.2949291;-0.005228799,-0.09591616;-0.5880646;0.05856549,-0.09525047;-0.5555274;-0.03989569,0.0003052069;0.3996168;0.01629309,55.74363
-0;0;0,0.004351698;0.1998314;0.006961697,0.01059565;0.4996998;0.004051769,0.122675;0.3793693;-0.02313603,0.173398;0.1865988;-0.006804571,0.2052524;-0.05949648;-0.03717592,-0.1034486;0.366324;-0.01964953,-0.1545218;0.1732714;-0.008595665,-0.1819293;-0.0746368;-0.02563579,0.07254033;0.003956082;-0.0335,0.09577972;-0.2939372;-0.006676562,0.08400095;-0.5869718;0.05650591,0.09451368;-0.6156061;-0.004372038,-0.06971646;0.004195346;-0.03901301,-0.09214881;-0.2932281;-0.006824825,-0.08787286;-0.5875659;0.05102856,-0.0889072;-0.5556529;-0.04731669,0.008507056;0.399787;0.007666524,0;0;0,0.0001783205;0.1996783;0.01133855,0.0004056554;0.4996053;0.01477612,0.1151354;0.3805221;-0.01285153,0.165148;0.1875132;0.002842173,0.2045803;-0.05873434;-0.01468655,-0.1104415;0.3657681;-0.01516223,-0.1561935;0.1711783;-0.008716431,-0.2018245;-0.07462198;-0.008949053,0.07311384;0.00671625;-0.03176883,0.08883266;-0.291201;-0.0001734681,0.07808474;-0.5834569;0.06669162,0.09330415;-0.6123227;0.007121865,-0.06855652;0.001515447;-0.04120323,-0.09730479;-0.2949291;-0.005228799,-0.09591616;-0.5880646;0.05856549,-0.09525047;-0.5555274;-0.03989569,0.0003052069;0.3996168;0.01629309,55.75534
-0;0;0,0.004334626;0.1998337;0.006907487,0.01054604;0.4997019;0.003937963,0.1226686;0.3793702;-0.0231192,0.1734264;0.1866212;-0.006644005,0.2051419;-0.05948181;-0.03709804,-0.1034508;0.3662324;-0.01975275,-0.1545908;0.1731965;-0.008714015,-0.1818871;-0.07471366;-0.0259025,0.07253115;0.003957895;-0.03351966,0.09590675;-0.2939209;-0.006653408,0.08383066;-0.5869308;0.0565877,0.09384855;-0.6153523;-0.00464705,-0.06972063;0.00419347;-0.03900574,-0.09253163;-0.2931905;-0.006719086,-0.087735;-0.5875617;0.05092327,-0.0887351;-0.5556539;-0.04742138,0.008472802;0.3997898;0.007578854,0;0;0,0.0003778817;0.1996821;0.01126551,0.0008661767;0.4996099;0.01462231,0.1154825;0.3805387;-0.01312244,0.1658114;0.1876006;0.002430949,0.205658;-0.05857757;-0.01513438,-0.1101659;0.365832;-0.01498208,-0.1557812;0.1712016;-0.008797009,-0.2007819;-0.07471484;-0.008975314,0.07315055;0.006819183;-0.03166223,0.08951096;-0.2910908;-0.000325013,0.07881351;-0.583388;0.06636782,0.09433094;-0.6124231;0.007100072,-0.06848014;0.001438363;-0.0413328,-0.09663496;-0.2951128;-0.005769961,-0.09549484;-0.5882492;0.05802498,-0.09333517;-0.6148346;-0.006240174,0.0006862794;0.3996219;0.01616321,55.7772
-0;0;0,0.00424033;0.1998354;0.006915835,0.01023328;0.4997081;0.003937458,0.1224858;0.3795189;-0.02302255,0.1732564;0.1867772;-0.006500747,0.2049658;-0.05932292;-0.03698426,-0.103666;0.3661887;-0.01976826,-0.1548633;0.1731607;-0.008858519,-0.1819722;-0.07475691;-0.02623644,0.07256139;0.004033302;-0.03344513,0.09595048;-0.2938443;-0.006576356,0.0838516;-0.5868613;0.05662716,0.0944405;-0.6152028;-0.004613906,-0.06964216;0.004052805;-0.03916048,-0.09234772;-0.2933547;-0.0070161,-0.08823118;-0.5876719;0.05095298,-0.08921809;-0.5557694;-0.04739082,0.008238873;0.3997943;0.007580516,0;0;0,0.0003778817;0.1996821;0.01126551,0.0008661767;0.4996099;0.01462231,0.1154825;0.3805387;-0.01312244,0.1658114;0.1876006;0.002430949,0.205658;-0.05857757;-0.01513438,-0.1101659;0.365832;-0.01498208,-0.1557812;0.1712016;-0.008797009,-0.2007819;-0.07471484;-0.008975314,0.07315055;0.006819183;-0.03166223,0.08951096;-0.2910908;-0.000325013,0.07881351;-0.583388;0.06636782,0.09433094;-0.6124231;0.007100072,-0.06848014;0.001438363;-0.0413328,-0.09663496;-0.2951128;-0.005769961,-0.09549484;-0.5882492;0.05802498,-0.09333517;-0.6148346;-0.006240174,0.0006862794;0.3996219;0.01616321,55.78868
-0;0;0,0.00424033;0.1998354;0.006915835,0.01023328;0.4997081;0.003937458,0.1224858;0.3795189;-0.02302255,0.1732564;0.1867772;-0.006500747,0.2049658;-0.05932292;-0.03698426,-0.103666;0.3661887;-0.01976826,-0.1548633;0.1731607;-0.008858519,-0.1819722;-0.07475691;-0.02623644,0.07256139;0.004033302;-0.03344513,0.09595048;-0.2938443;-0.006576356,0.0838516;-0.5868613;0.05662716,0.0944405;-0.6152028;-0.004613906,-0.06964216;0.004052805;-0.03916048,-0.09234772;-0.2933547;-0.0070161,-0.08823118;-0.5876719;0.05095298,-0.08921809;-0.5557694;-0.04739082,0.008238873;0.3997943;0.007580516,0;0;0,0.0003778817;0.1996821;0.01126551,0.0008661767;0.4996099;0.01462231,0.1154825;0.3805387;-0.01312244,0.1658114;0.1876006;0.002430949,0.205658;-0.05857757;-0.01513438,-0.1101659;0.365832;-0.01498208,-0.1557812;0.1712016;-0.008797009,-0.2007819;-0.07471484;-0.008975314,0.07315055;0.006819183;-0.03166223,0.08951096;-0.2910908;-0.000325013,0.07881351;-0.583388;0.06636782,0.09433094;-0.6124231;0.007100072,-0.06848014;0.001438363;-0.0413328,-0.09663496;-0.2951128;-0.005769961,-0.09549484;-0.5882492;0.05802498,-0.09333517;-0.6148346;-0.006240174,0.0006862794;0.3996219;0.01616321,55.81095
-0;0;0,0.00424033;0.1998354;0.006915835,0.01023328;0.4997081;0.003937458,0.1224858;0.3795189;-0.02302255,0.1732564;0.1867772;-0.006500747,0.2049658;-0.05932292;-0.03698426,-0.103666;0.3661887;-0.01976826,-0.1548633;0.1731607;-0.008858519,-0.1819722;-0.07475691;-0.02623644,0.07256139;0.004033302;-0.03344513,0.09595048;-0.2938443;-0.006576356,0.0838516;-0.5868613;0.05662716,0.0944405;-0.6152028;-0.004613906,-0.06964216;0.004052805;-0.03916048,-0.09234772;-0.2933547;-0.0070161,-0.08823118;-0.5876719;0.05095298,-0.08921809;-0.5557694;-0.04739082,0.008238873;0.3997943;0.007580516,0;0;0,0.0004503648;0.1996842;0.01122538,0.001069745;0.4996123;0.014533,0.1156153;0.3805636;-0.01331422,0.1662799;0.1876913;0.001963264,0.2067115;-0.05836554;-0.01596168,-0.1100929;0.3659766;-0.01490191,-0.1556314;0.1713234;-0.00887048,-0.2000327;-0.07470128;-0.0094972,0.07313186;0.006855834;-0.03169747,0.08978435;-0.2910551;-0.0005240217,0.07911885;-0.583295;0.06642444,0.09425683;-0.6121846;0.006865434,-0.06845201;0.001423468;-0.0413799,-0.09640354;-0.2951564;-0.005896702,-0.09574815;-0.5883683;0.05755714,-0.09523118;-0.5558409;-0.04090321,0.0008455307;0.3996247;0.01608934,55.82228
-0;0;0,0.004202882;0.1998357;0.006930194,0.01012298;0.4997101;0.003979347,0.1224545;0.3797231;-0.022914,0.1733258;0.1869973;-0.006516971,0.2050425;-0.05910218;-0.03699822,-0.103751;0.366279;-0.0198543,-0.1550131;0.1732612;-0.009069513,-0.1817727;-0.07463811;-0.02723139,0.07259381;0.004080464;-0.03336897,0.09598769;-0.2938047;-0.006589171,0.08390673;-0.5868284;0.05658684,0.09449489;-0.6150108;-0.004857387,-0.06962703;0.004045515;-0.03918814,-0.09223059;-0.2933768;-0.00710915,-0.08827798;-0.5876964;0.05085956,-0.08921441;-0.5557927;-0.04748497,0.008151523;0.3997956;0.007613461,0;0;0,0.0004503648;0.1996842;0.01122538,0.001069745;0.4996123;0.014533,0.1156153;0.3805636;-0.01331422,0.1662799;0.1876913;0.001963264,0.2067115;-0.05836554;-0.01596168,-0.1100929;0.3659766;-0.01490191,-0.1556314;0.1713234;-0.00887048,-0.2000327;-0.07470128;-0.0094972,0.07313186;0.006855834;-0.03169747,0.08978435;-0.2910551;-0.0005240217,0.07911885;-0.583295;0.06642444,0.09425683;-0.6121846;0.006865434,-0.06845201;0.001423468;-0.0413799,-0.09640354;-0.2951564;-0.005896702,-0.09574815;-0.5883683;0.05755714,-0.09523118;-0.5558409;-0.04090321,0.0008455307;0.3996247;0.01608934,55.83381
-0;0;0,0.004202882;0.1998357;0.006930194,0.01012298;0.4997101;0.003979347,0.1224545;0.3797231;-0.022914,0.1733258;0.1869973;-0.006516971,0.2050425;-0.05910218;-0.03699822,-0.103751;0.366279;-0.0198543,-0.1550131;0.1732612;-0.009069513,-0.1817727;-0.07463811;-0.02723139,0.07259381;0.004080464;-0.03336897,0.09598769;-0.2938047;-0.006589171,0.08390673;-0.5868284;0.05658684,0.09449489;-0.6150108;-0.004857387,-0.06962703;0.004045515;-0.03918814,-0.09223059;-0.2933768;-0.00710915,-0.08827798;-0.5876964;0.05085956,-0.08921441;-0.5557927;-0.04748497,0.008151523;0.3997956;0.007613461,0;0;0,0.0004503648;0.1996842;0.01122538,0.001069745;0.4996123;0.014533,0.1156153;0.3805636;-0.01331422,0.1662799;0.1876913;0.001963264,0.2067115;-0.05836554;-0.01596168,-0.1100929;0.3659766;-0.01490191,-0.1556314;0.1713234;-0.00887048,-0.2000327;-0.07470128;-0.0094972,0.07313186;0.006855834;-0.03169747,0.08978435;-0.2910551;-0.0005240217,0.07911885;-0.583295;0.06642444,0.09425683;-0.6121846;0.006865434,-0.06845201;0.001423468;-0.0413799,-0.09640354;-0.2951564;-0.005896702,-0.09574815;-0.5883683;0.05755714,-0.09523118;-0.5558409;-0.04090321,0.0008455307;0.3996247;0.01608934,55.84495
-0;0;0,0.004202882;0.1998357;0.006930194,0.01012298;0.4997101;0.003979347,0.1224545;0.3797231;-0.022914,0.1733258;0.1869973;-0.006516971,0.2050425;-0.05910218;-0.03699822,-0.103751;0.366279;-0.0198543,-0.1550131;0.1732612;-0.009069513,-0.1817727;-0.07463811;-0.02723139,0.07259381;0.004080464;-0.03336897,0.09598769;-0.2938047;-0.006589171,0.08390673;-0.5868284;0.05658684,0.09449489;-0.6150108;-0.004857387,-0.06962703;0.004045515;-0.03918814,-0.09223059;-0.2933768;-0.00710915,-0.08827798;-0.5876964;0.05085956,-0.08921441;-0.5557927;-0.04748497,0.008151523;0.3997956;0.007613461,0;0;0,0.0005878693;0.1996832;0.01123799,0.001417561;0.4996105;0.01455924,0.1159186;0.3806124;-0.01323289,0.1666342;0.1877182;0.00159183,0.2075575;-0.05819929;-0.0171126,-0.1098519;0.3660274;-0.01479779,-0.155228;0.1713364;-0.008761686,-0.1993335;-0.07474153;-0.009371168,0.07313954;0.006712588;-0.03171038,0.09031816;-0.2911784;-0.000632314,0.07998605;-0.583422;0.0663524,0.09467613;-0.6124617;0.006880391,-0.06843423;0.001560536;-0.04140436,-0.09619463;-0.2950346;-0.005898409,-0.0952829;-0.5882766;0.05741314,-0.09478325;-0.5557746;-0.04104278,0.001125275;0.399623;0.01611158,55.85633
-0;0;0,0.004228601;0.1998346;0.006947095,0.01018879;0.4997087;0.004021524,0.1225054;0.3796763;-0.02283105,0.1733878;0.1869479;-0.006498853,0.2050235;-0.05915317;-0.03705145,-0.103617;0.3661013;-0.01997748,-0.1549565;0.1731042;-0.009188297,-0.1817354;-0.07474777;-0.02795698,0.0726165;0.004096857;-0.03331754,0.09611655;-0.2937845;-0.006588114,0.08397488;-0.5867302;0.05693614,0.09451839;-0.6145399;-0.004987165,-0.06959335;0.003997001;-0.0392529,-0.09204331;-0.293433;-0.00713687,-0.0882142;-0.5877134;0.05103871,-0.08908899;-0.5558116;-0.04730603,0.008195472;0.399794;0.007640586,0;0;0,0.0005878693;0.1996832;0.01123799,0.001417561;0.4996105;0.01455924,0.1159186;0.3806124;-0.01323289,0.1666342;0.1877182;0.00159183,0.2075575;-0.05819929;-0.0171126,-0.1098519;0.3660274;-0.01479779,-0.155228;0.1713364;-0.008761686,-0.1993335;-0.07474153;-0.009371168,0.07313954;0.006712588;-0.03171038,0.09031816;-0.2911784;-0.000632314,0.07998605;-0.583422;0.0663524,0.09467613;-0.6124617;0.006880391,-0.06843423;0.001560536;-0.04140436,-0.09619463;-0.2950346;-0.005898409,-0.0952829;-0.5882766;0.05741314,-0.09478325;-0.5557746;-0.04104278,0.001125275;0.399623;0.01611158,55.87926
-0;0;0,0.004228601;0.1998346;0.006947095,0.01018879;0.4997087;0.004021524,0.1225054;0.3796763;-0.02283105,0.1733878;0.1869479;-0.006498853,0.2050235;-0.05915317;-0.03705145,-0.103617;0.3661013;-0.01997748,-0.1549565;0.1731042;-0.009188297,-0.1817354;-0.07474777;-0.02795698,0.0726165;0.004096857;-0.03331754,0.09611655;-0.2937845;-0.006588114,0.08397488;-0.5867302;0.05693614,0.09451839;-0.6145399;-0.004987165,-0.06959335;0.003997001;-0.0392529,-0.09204331;-0.293433;-0.00713687,-0.0882142;-0.5877134;0.05103871,-0.08908899;-0.5558116;-0.04730603,0.008195472;0.399794;0.007640586,0;0;0,0.0005878693;0.1996832;0.01123799,0.001417561;0.4996105;0.01455924,0.1159186;0.3806124;-0.01323289,0.1666342;0.1877182;0.00159183,0.2075575;-0.05819929;-0.0171126,-0.1098519;0.3660274;-0.01479779,-0.155228;0.1713364;-0.008761686,-0.1993335;-0.07474153;-0.009371168,0.07313954;0.006712588;-0.03171038,0.09031816;-0.2911784;-0.000632314,0.07998605;-0.583422;0.0663524,0.09467613;-0.6124617;0.006880391,-0.06843423;0.001560536;-0.04140436,-0.09619463;-0.2950346;-0.005898409,-0.0952829;-0.5882766;0.05741314,-0.09478325;-0.5557746;-0.04104278,0.001125275;0.399623;0.01611158,55.89039
-0;0;0,0.004211797;0.1998349;0.006948737,0.01017878;0.4997087;0.004008246,0.1224855;0.379674;-0.0228554,0.1733447;0.1869348;-0.006578309,0.204883;-0.05919139;-0.03702862,-0.1036243;0.3660641;-0.01997009,-0.1549989;0.1730734;-0.009234685,-0.1817441;-0.07477301;-0.02812479,0.07262463;0.004116217;-0.03329743,0.09617035;-0.293766;-0.006617993,0.08417095;-0.5867;0.05698796,0.09469545;-0.6147795;-0.004597969,-0.06958044;0.003989028;-0.03927658,-0.09198096;-0.2934385;-0.007103961,-0.0883486;-0.5877515;0.05091891,-0.08923645;-0.5558498;-0.04742571,0.008180598;0.3997943;0.007633189,0;0;0,0.0004493182;0.1996726;0.01142936,0.00109025;0.4995962;0.0151712,0.1156044;0.3808203;-0.01309619,0.1668633;0.1880344;0.001260889,0.20863;-0.05760711;-0.01912954,-0.1098969;0.3656534;-0.01475415,-0.1551382;0.1709278;-0.008826166,-0.1990508;-0.07518375;-0.009720866,0.07306788;0.006704608;-0.03187683,0.09054039;-0.2911525;-0.0006377045,0.08020753;-0.5833652;0.06648143,0.09495692;-0.6121842;0.006731737,-0.06864686;0.001548113;-0.04105132,-0.09564425;-0.2951695;-0.005982414,-0.09488682;-0.5883907;0.05742676,-0.09442058;-0.5558715;-0.0410324,0.0008559811;0.3996062;0.01656673,55.90168
-0;0;0,0.004211797;0.1998349;0.006948737,0.01017878;0.4997087;0.004008246,0.1224855;0.379674;-0.0228554,0.1733447;0.1869348;-0.006578309,0.204883;-0.05919139;-0.03702862,-0.1036243;0.3660641;-0.01997009,-0.1549989;0.1730734;-0.009234685,-0.1817441;-0.07477301;-0.02812479,0.07262463;0.004116217;-0.03329743,0.09617035;-0.293766;-0.006617993,0.08417095;-0.5867;0.05698796,0.09469545;-0.6147795;-0.004597969,-0.06958044;0.003989028;-0.03927658,-0.09198096;-0.2934385;-0.007103961,-0.0883486;-0.5877515;0.05091891,-0.08923645;-0.5558498;-0.04742571,0.008180598;0.3997943;0.007633189,0;0;0,0.0004493182;0.1996726;0.01142936,0.00109025;0.4995962;0.0151712,0.1156044;0.3808203;-0.01309619,0.1668633;0.1880344;0.001260889,0.20863;-0.05760711;-0.01912954,-0.1098969;0.3656534;-0.01475415,-0.1551382;0.1709278;-0.008826166,-0.1990508;-0.07518375;-0.009720866,0.07306788;0.006704608;-0.03187683,0.09054039;-0.2911525;-0.0006377045,0.08020753;-0.5833652;0.06648143,0.09495692;-0.6121842;0.006731737,-0.06864686;0.001548113;-0.04105132,-0.09564425;-0.2951695;-0.005982414,-0.09488682;-0.5883907;0.05742676,-0.09442058;-0.5558715;-0.0410324,0.0008559811;0.3996062;0.01656673,55.91379
-0;0;0,0.004213496;0.199834;0.006973333,0.01022326;0.4997071;0.004060747,0.1225009;0.3795308;-0.02276837,0.1734504;0.1868067;-0.006594734,0.2048936;-0.05932029;-0.03713669,-0.1035808;0.3660077;-0.01991834,-0.155021;0.173028;-0.009299723,-0.1817165;-0.07482708;-0.02814664,0.07260268;0.004081788;-0.03334951,0.09629385;-0.2937836;-0.006610805,0.08422599;-0.5866834;0.05713917,0.09479612;-0.6145248;-0.004739635,-0.06959274;0.00402805;-0.03925081,-0.09202169;-0.2933972;-0.00707655,-0.08822216;-0.587709;0.05094232,-0.08910386;-0.5558065;-0.0474025,0.008209459;0.3997928;0.007676939,0;0;0,0.0004493182;0.1996726;0.01142936,0.00109025;0.4995962;0.0151712,0.1156044;0.3808203;-0.01309619,0.1668633;0.1880344;0.001260889,0.20863;-0.05760711;-0.01912954,-0.1098969;0.3656534;-0.01475415,-0.1551382;0.1709278;-0.008826166,-0.1990508;-0.07518375;-0.009720866,0.07306788;0.006704608;-0.03187683,0.09054039;-0.2911525;-0.0006377045,0.08020753;-0.5833652;0.06648143,0.09495692;-0.6121842;0.006731737,-0.06864686;0.001548113;-0.04105132,-0.09564425;-0.2951695;-0.005982414,-0.09488682;-0.5883907;0.05742676,-0.09442058;-0.5558715;-0.0410324,0.0008559811;0.3996062;0.01656673,55.9358
-0;0;0,0.004213496;0.199834;0.006973333,0.01022326;0.4997071;0.004060747,0.1225009;0.3795308;-0.02276837,0.1734504;0.1868067;-0.006594734,0.2048936;-0.05932029;-0.03713669,-0.1035808;0.3660077;-0.01991834,-0.155021;0.173028;-0.009299723,-0.1817165;-0.07482708;-0.02814664,0.07260268;0.004081788;-0.03334951,0.09629385;-0.2937836;-0.006610805,0.08422599;-0.5866834;0.05713917,0.09479612;-0.6145248;-0.004739635,-0.06959274;0.00402805;-0.03925081,-0.09202169;-0.2933972;-0.00707655,-0.08822216;-0.587709;0.05094232,-0.08910386;-0.5558065;-0.0474025,0.008209459;0.3997928;0.007676939,0;0;0,0.0004765929;0.1996699;0.01147567,0.001177524;0.4995922;0.01532799,0.1155906;0.3806834;-0.01319762,0.1671657;0.187941;0.0006008064,0.2101699;-0.05740364;-0.02076782,-0.1097437;0.3654255;-0.0147134,-0.1550282;0.1707044;-0.0089669,-0.1987297;-0.0754436;-0.01012955,0.07303672;0.006913132;-0.03190372,0.09050848;-0.2909552;-0.0007716119,0.08058963;-0.5832217;0.06617538,0.0952819;-0.61206;0.006437048,-0.06866104;0.001330659;-0.04103523,-0.09531473;-0.2954501;-0.006238982,-0.09448577;-0.588541;0.05776896,-0.09407388;-0.5560207;-0.04069065,0.0009197588;0.3996017;0.01668052,55.94756
-0;0;0,0.004199025;0.1998331;0.007005875,0.0102154;0.4997064;0.004126827,0.1224793;0.3794909;-0.02272413,0.1734318;0.1867531;-0.006724443,0.2049333;-0.05934459;-0.03744232,-0.103582;0.3659543;-0.01984097,-0.1550196;0.1729686;-0.009320987,-0.1816046;-0.07489643;-0.02819376,0.07256952;0.004117972;-0.03341717,0.09630504;-0.2937349;-0.006578155,0.0842609;-0.5866378;0.05716214,0.09442173;-0.6150904;-0.004009228,-0.06961119;0.004008429;-0.03922008,-0.09162792;-0.2934538;-0.007103622,-0.08832791;-0.587744;0.0510548,-0.08922649;-0.5558335;-0.04729133,0.008197822;0.3997918;0.0077326,0;0;0,0.0004765929;0.1996699;0.01147567,0.001177524;0.4995922;0.01532799,0.1155906;0.3806834;-0.01319762,0.1671657;0.187941;0.0006008064,0.2101699;-0.05740364;-0.02076782,-0.1097437;0.3654255;-0.0147134,-0.1550282;0.1707044;-0.0089669,-0.1987297;-0.0754436;-0.01012955,0.07303672;0.006913132;-0.03190372,0.09050848;-0.2909552;-0.0007716119,0.08058963;-0.5832217;0.06617538,0.0952819;-0.61206;0.006437048,-0.06866104;0.001330659;-0.04103523,-0.09531473;-0.2954501;-0.006238982,-0.09448577;-0.588541;0.05776896,-0.09407388;-0.5560207;-0.04069065,0.0009197588;0.3996017;0.01668052,55.97038
-0;0;0,0.004199025;0.1998331;0.007005875,0.0102154;0.4997064;0.004126827,0.1224793;0.3794909;-0.02272413,0.1734318;0.1867531;-0.006724443,0.2049333;-0.05934459;-0.03744232,-0.103582;0.3659543;-0.01984097,-0.1550196;0.1729686;-0.009320987,-0.1816046;-0.07489643;-0.02819376,0.07256952;0.004117972;-0.03341717,0.09630504;-0.2937349;-0.006578155,0.0842609;-0.5866378;0.05716214,0.09442173;-0.6150904;-0.004009228,-0.06961119;0.004008429;-0.03922008,-0.09162792;-0.2934538;-0.007103622,-0.08832791;-0.587744;0.0510548,-0.08922649;-0.5558335;-0.04729133,0.008197822;0.3997918;0.0077326,0;0;0,0.0004765929;0.1996699;0.01147567,0.001177524;0.4995922;0.01532799,0.1155906;0.3806834;-0.01319762,0.1671657;0.187941;0.0006008064,0.2101699;-0.05740364;-0.02076782,-0.1097437;0.3654255;-0.0147134,-0.1550282;0.1707044;-0.0089669,-0.1987297;-0.0754436;-0.01012955,0.07303672;0.006913132;-0.03190372,0.09050848;-0.2909552;-0.0007716119,0.08058963;-0.5832217;0.06617538,0.0952819;-0.61206;0.006437048,-0.06866104;0.001330659;-0.04103523,-0.09531473;-0.2954501;-0.006238982,-0.09448577;-0.588541;0.05776896,-0.09407388;-0.5560207;-0.04069065,0.0009197588;0.3996017;0.01668052,55.9814
-0;0;0,0.004185531;0.1998332;0.007013251,0.01016979;0.499707;0.004121055,0.1224335;0.3794223;-0.02272157,0.1735258;0.1866493;-0.007617044,0.2052872;-0.05947553;-0.03784578,-0.1035604;0.3657591;-0.01982909,-0.1550412;0.1727858;-0.009291429,-0.1816772;-0.07507247;-0.02818063,0.07257856;0.004144792;-0.03339419,0.09635062;-0.2937113;-0.006623959,0.08433525;-0.5865949;0.05721039,0.09450462;-0.6150555;-0.003949404,-0.06959387;0.003972227;-0.03925448,-0.09154417;-0.293512;-0.007296324,-0.08812159;-0.587726;0.05123914,-0.08903843;-0.5558125;-0.04710739,0.008163212;0.3997923;0.007731111,0;0;0,0.000526217;0.1996664;0.01153486,0.001299587;0.4995875;0.0154657,0.1157022;0.3807908;-0.01310671,0.167488;0.1880271;-0.0004422683,0.2141076;-0.0562304;-0.02622745,-0.1096563;0.36495;-0.01404279,-0.1546978;0.1701623;-0.008655207,-0.1981366;-0.07603186;-0.009878547,0.07299148;0.007056846;-0.03197571,0.09055968;-0.2907844;-0.0006395355,0.08072683;-0.5830959;0.06612349,0.0949188;-0.6121247;0.006516185,-0.06871967;0.001146581;-0.04094255,-0.09505642;-0.2956653;-0.006170612,-0.09478477;-0.5886841;0.05817141,-0.0945152;-0.5561683;-0.04028786,0.001018169;0.3995967;0.01679164,55.99266
-0;0;0,0.004185531;0.1998332;0.007013251,0.01016979;0.499707;0.004121055,0.1224335;0.3794223;-0.02272157,0.1735258;0.1866493;-0.007617044,0.2052872;-0.05947553;-0.03784578,-0.1035604;0.3657591;-0.01982909,-0.1550412;0.1727858;-0.009291429,-0.1816772;-0.07507247;-0.02818063,0.07257856;0.004144792;-0.03339419,0.09635062;-0.2937113;-0.006623959,0.08433525;-0.5865949;0.05721039,0.09450462;-0.6150555;-0.003949404,-0.06959387;0.003972227;-0.03925448,-0.09154417;-0.293512;-0.007296324,-0.08812159;-0.587726;0.05123914,-0.08903843;-0.5558125;-0.04710739,0.008163212;0.3997923;0.007731111,0;0;0,0.000526217;0.1996664;0.01153486,0.001299587;0.4995875;0.0154657,0.1157022;0.3807908;-0.01310671,0.167488;0.1880271;-0.0004422683,0.2141076;-0.0562304;-0.02622745,-0.1096563;0.36495;-0.01404279,-0.1546978;0.1701623;-0.008655207,-0.1981366;-0.07603186;-0.009878547,0.07299148;0.007056846;-0.03197571,0.09055968;-0.2907844;-0.0006395355,0.08072683;-0.5830959;0.06612349,0.0949188;-0.6121247;0.006516185,-0.06871967;0.001146581;-0.04094255,-0.09505642;-0.2956653;-0.006170612,-0.09478477;-0.5886841;0.05817141,-0.0945152;-0.5561683;-0.04028786,0.001018169;0.3995967;0.01679164,56.00506
-0;0;0,0.004185531;0.1998332;0.007013251,0.01016979;0.499707;0.004121055,0.1224335;0.3794223;-0.02272157,0.1735258;0.1866493;-0.007617044,0.2052872;-0.05947553;-0.03784578,-0.1035604;0.3657591;-0.01982909,-0.1550412;0.1727858;-0.009291429,-0.1816772;-0.07507247;-0.02818063,0.07257856;0.004144792;-0.03339419,0.09635062;-0.2937113;-0.006623959,0.08433525;-0.5865949;0.05721039,0.09450462;-0.6150555;-0.003949404,-0.06959387;0.003972227;-0.03925448,-0.09154417;-0.293512;-0.007296324,-0.08812159;-0.587726;0.05123914,-0.08903843;-0.5558125;-0.04710739,0.008163212;0.3997923;0.007731111,0;0;0,0.000526217;0.1996664;0.01153486,0.001299587;0.4995875;0.0154657,0.1157022;0.3807908;-0.01310671,0.167488;0.1880271;-0.0004422683,0.2141076;-0.0562304;-0.02622745,-0.1096563;0.36495;-0.01404279,-0.1546978;0.1701623;-0.008655207,-0.1981366;-0.07603186;-0.009878547,0.07299148;0.007056846;-0.03197571,0.09055968;-0.2907844;-0.0006395355,0.08072683;-0.5830959;0.06612349,0.0949188;-0.6121247;0.006516185,-0.06871967;0.001146581;-0.04094255,-0.09505642;-0.2956653;-0.006170612,-0.09478477;-0.5886841;0.05817141,-0.0945152;-0.5561683;-0.04028786,0.001018169;0.3995967;0.01679164,56.01552
-0;0;0,0.004193064;0.1998336;0.006997933,0.0101985;0.4997069;0.004085062,0.1224512;0.3794282;-0.02277274,0.1738233;0.1866793;-0.008324423,0.2063679;-0.05932574;-0.03869522,-0.1034908;0.3655654;-0.01981339,-0.1551317;0.1726418;-0.009150884,-0.1817975;-0.07519759;-0.02824495,0.07256091;0.004186172;-0.03342738,0.09643274;-0.2936658;-0.006699784,0.08424299;-0.586469;0.05746941,0.09454682;-0.6145738;-0.004121684,-0.06961749;0.003905389;-0.0392193,-0.09135973;-0.2935975;-0.007292882,-0.08800456;-0.5877518;0.05154594,-0.0889604;-0.5558385;-0.04680016,0.008185202;0.3997925;0.007699952,0;0;0,0.0005589077;0.1996623;0.01160442,0.001402625;0.4995816;0.01566231,0.1157942;0.3809074;-0.01297421,0.1679299;0.1881544;-0.001653332,0.215816;-0.05559342;-0.02982979,-0.1097247;0.3651465;-0.01359692,-0.1588824;0.1715799;-0.002849795,-0.2014622;-0.07476673;-0.002320947,0.07292645;0.007119403;-0.03210992,0.09078375;-0.2907023;-0.0007512085,0.08097774;-0.582977;0.06617673,0.09523524;-0.6117294;0.006220233,-0.06884567;0.001064778;-0.04073254,-0.09478052;-0.2958079;-0.006178372,-0.09459414;-0.5888078;0.05825014,-0.09309265;-0.6177875;-0.003068354,0.00109481;0.3995903;0.01694251,56.03818
-0;0;0,0.004197416;0.199832;0.007039792,0.01022682;0.499705;0.004165002,0.1223682;0.3792109;-0.02294553,0.1739263;0.1864446;-0.009421309,0.2096729;-0.05891417;-0.0413783,-0.1034785;0.3655514;-0.01969521,-0.1551456;0.1726324;-0.00907563,-0.1818121;-0.07520674;-0.02817157,0.07241236;0.004140681;-0.03375359,0.09641108;-0.2936721;-0.006705062,0.08436312;-0.5866011;0.05691478,0.09375861;-0.6160454;-0.003087968,-0.06966183;0.003915725;-0.03913946,-0.09149505;-0.2936057;-0.007448979,-0.08821795;-0.5877439;0.05147465,-0.088828;-0.6172614;-0.009160295,0.00820574;0.3997905;0.007769495,0;0;0,0.0005589077;0.1996623;0.01160442,0.001402625;0.4995816;0.01566231,0.1157942;0.3809074;-0.01297421,0.1679299;0.1881544;-0.001653332,0.215816;-0.05559342;-0.02982979,-0.1097247;0.3651465;-0.01359692,-0.1588824;0.1715799;-0.002849795,-0.2014622;-0.07476673;-0.002320947,0.07292645;0.007119403;-0.03210992,0.09078375;-0.2907023;-0.0007512085,0.08097774;-0.582977;0.06617673,0.09523524;-0.6117294;0.006220233,-0.06884567;0.001064778;-0.04073254,-0.09478052;-0.2958079;-0.006178372,-0.09459414;-0.5888078;0.05825014,-0.09309265;-0.6177875;-0.003068354,0.00109481;0.3995903;0.01694251,56.05968
-0;0;0,0.004197416;0.199832;0.007039792,0.01022682;0.499705;0.004165002,0.1223682;0.3792109;-0.02294553,0.1739263;0.1864446;-0.009421309,0.2096729;-0.05891417;-0.0413783,-0.1034785;0.3655514;-0.01969521,-0.1551456;0.1726324;-0.00907563,-0.1818121;-0.07520674;-0.02817157,0.07241236;0.004140681;-0.03375359,0.09641108;-0.2936721;-0.006705062,0.08436312;-0.5866011;0.05691478,0.09375861;-0.6160454;-0.003087968,-0.06966183;0.003915725;-0.03913946,-0.09149505;-0.2936057;-0.007448979,-0.08821795;-0.5877439;0.05147465,-0.088828;-0.6172614;-0.009160295,0.00820574;0.3997905;0.007769495,0;0;0,0.0005589077;0.1996623;0.01160442,0.001402625;0.4995816;0.01566231,0.1157942;0.3809074;-0.01297421,0.1679299;0.1881544;-0.001653332,0.215816;-0.05559342;-0.02982979,-0.1097247;0.3651465;-0.01359692,-0.1588824;0.1715799;-0.002849795,-0.2014622;-0.07476673;-0.002320947,0.07292645;0.007119403;-0.03210992,0.09078375;-0.2907023;-0.0007512085,0.08097774;-0.582977;0.06617673,0.09523524;-0.6117294;0.006220233,-0.06884567;0.001064778;-0.04073254,-0.09478052;-0.2958079;-0.006178372,-0.09459414;-0.5888078;0.05825014,-0.09309265;-0.6177875;-0.003068354,0.00109481;0.3995903;0.01694251,56.07183
-0;0;0,0.004332991;0.1998262;0.007120866,0.010576;0.4996956;0.004334248,0.1226078;0.3791025;-0.02289866,0.1744901;0.186344;-0.010555,0.2134927;-0.05829057;-0.04421119,-0.1031807;0.3654511;-0.01949401,-0.1548742;0.1725391;-0.008876832,-0.1818434;-0.07529192;-0.0276507,0.07235795;0.004083063;-0.03387707,0.09690484;-0.2936725;-0.00669104,0.08481091;-0.5865653;0.05708654,0.09380881;-0.6156139;-0.003496904,-0.06972064;0.003980061;-0.03902807,-0.091138;-0.2935648;-0.007273309,-0.08776342;-0.5877162;0.05157889,-0.08834108;-0.6172622;-0.00901895,0.00848951;0.3997815;0.007913815,0;0;0,0.0005256743;0.1996527;0.01177004,0.001256922;0.4995664;0.0163414,0.1155243;0.3811679;-0.01327765,0.1685754;0.1885834;-0.003439827,0.2190656;-0.0541541;-0.03552207,-0.1099418;0.3652833;-0.0129102,-0.1590855;0.1716911;-0.002566362,-0.2013954;-0.07470259;-0.002453705,0.07285893;0.007140938;-0.03225808,0.09080425;-0.2906501;-0.0006593578,0.0809769;-0.5829266;0.06625739,0.09568777;-0.6121189;0.006993808,-0.0688829;0.001056575;-0.04066976,-0.09450918;-0.2958386;-0.00607869,-0.09432316;-0.5888674;0.05821819,-0.09286726;-0.6178198;-0.003136512,0.0009847605;0.3995725;0.01741387,56.09338
-0;0;0,0.004332991;0.1998262;0.007120866,0.010576;0.4996956;0.004334248,0.1226078;0.3791025;-0.02289866,0.1744901;0.186344;-0.010555,0.2134927;-0.05829057;-0.04421119,-0.1031807;0.3654511;-0.01949401,-0.1548742;0.1725391;-0.008876832,-0.1818434;-0.07529192;-0.0276507,0.07235795;0.004083063;-0.03387707,0.09690484;-0.2936725;-0.00669104,0.08481091;-0.5865653;0.05708654,0.09380881;-0.6156139;-0.003496904,-0.06972064;0.003980061;-0.03902807,-0.091138;-0.2935648;-0.007273309,-0.08776342;-0.5877162;0.05157889,-0.08834108;-0.6172622;-0.00901895,0.00848951;0.3997815;0.007913815,0;0;0,0.0005256743;0.1996527;0.01177004,0.001256922;0.4995664;0.0163414,0.1155243;0.3811679;-0.01327765,0.1685754;0.1885834;-0.003439827,0.2190656;-0.0541541;-0.03552207,-0.1099418;0.3652833;-0.0129102,-0.1590855;0.1716911;-0.002566362,-0.2013954;-0.07470259;-0.002453705,0.07285893;0.007140938;-0.03225808,0.09080425;-0.2906501;-0.0006593578,0.0809769;-0.5829266;0.06625739,0.09568777;-0.6121189;0.006993808,-0.0688829;0.001056575;-0.04066976,-0.09450918;-0.2958386;-0.00607869,-0.09432316;-0.5888674;0.05821819,-0.09286726;-0.6178198;-0.003136512,0.0009847605;0.3995725;0.01741387,56.10509
-0;0;0,0.004332991;0.1998262;0.007120866,0.010576;0.4996956;0.004334248,0.1226078;0.3791025;-0.02289866,0.1744901;0.186344;-0.010555,0.2134927;-0.05829057;-0.04421119,-0.1031807;0.3654511;-0.01949401,-0.1548742;0.1725391;-0.008876832,-0.1818434;-0.07529192;-0.0276507,0.07235795;0.004083063;-0.03387707,0.09690484;-0.2936725;-0.00669104,0.08481091;-0.5865653;0.05708654,0.09380881;-0.6156139;-0.003496904,-0.06972064;0.003980061;-0.03902807,-0.091138;-0.2935648;-0.007273309,-0.08776342;-0.5877162;0.05157889,-0.08834108;-0.6172622;-0.00901895,0.00848951;0.3997815;0.007913815,0;0;0,0.0005256743;0.1996527;0.01177004,0.001256922;0.4995664;0.0163414,0.1155243;0.3811679;-0.01327765,0.1685754;0.1885834;-0.003439827,0.2190656;-0.0541541;-0.03552207,-0.1099418;0.3652833;-0.0129102,-0.1590855;0.1716911;-0.002566362,-0.2013954;-0.07470259;-0.002453705,0.07285893;0.007140938;-0.03225808,0.09080425;-0.2906501;-0.0006593578,0.0809769;-0.5829266;0.06625739,0.09568777;-0.6121189;0.006993808,-0.0688829;0.001056575;-0.04066976,-0.09450918;-0.2958386;-0.00607869,-0.09432316;-0.5888674;0.05821819,-0.09286726;-0.6178198;-0.003136512,0.0009847605;0.3995725;0.01741387,56.11662
-0;0;0,0.004474532;0.1998121;0.00742393,0.01081348;0.4996803;0.004789819,0.1227286;0.3787752;-0.02265967,0.1751021;0.186042;-0.01212688,0.2182588;-0.05744173;-0.04891241,-0.1030349;0.3655708;-0.01892106,-0.1547557;0.1726615;-0.008387958,-0.181946;-0.0751503;-0.02709643,0.07216696;0.004060655;-0.03428468,0.0970718;-0.2935849;-0.00623378,0.08497519;-0.586471;0.05757399,0.09409548;-0.615671;-0.002792977,-0.06984948;0.003999185;-0.03879504,-0.0909369;-0.2935076;-0.006467808,-0.08762276;-0.5878346;0.05150322,-0.08815829;-0.6157394;-0.01119091,0.00871525;0.399765;0.008330514,0;0;0,0.0001786482;0.1996418;0.01196347,0.0003184519;0.4995511;0.016864,0.1147698;0.3812323;-0.01297343,0.1683037;0.1887049;-0.004768995,0.2205505;-0.05329309;-0.0395146,-0.1107657;0.3653925;-0.01232453,-0.1597999;0.1717488;-0.002437218,-0.2017158;-0.07471175;-0.002959809,0.07280805;0.007087742;-0.03238444,0.09084348;-0.2906774;-0.0005932786,0.08125152;-0.5830388;0.06598602,0.09584157;-0.6122267;0.006686706,-0.06894363;0.001120785;-0.040565,-0.09430343;-0.2958266;-0.006226204,-0.09445142;-0.5889063;0.05783843,-0.09401225;-0.616336;-0.005442217,0.000246588;0.3995558;0.0178273,56.13852
-0;0;0,0.004474532;0.1998121;0.00742393,0.01081348;0.4996803;0.004789819,0.1227286;0.3787752;-0.02265967,0.1751021;0.186042;-0.01212688,0.2182588;-0.05744173;-0.04891241,-0.1030349;0.3655708;-0.01892106,-0.1547557;0.1726615;-0.008387958,-0.181946;-0.0751503;-0.02709643,0.07216696;0.004060655;-0.03428468,0.0970718;-0.2935849;-0.00623378,0.08497519;-0.586471;0.05757399,0.09409548;-0.615671;-0.002792977,-0.06984948;0.003999185;-0.03879504,-0.0909369;-0.2935076;-0.006467808,-0.08762276;-0.5878346;0.05150322,-0.08815829;-0.6157394;-0.01119091,0.00871525;0.399765;0.008330514,0;0;0,0.0001786482;0.1996418;0.01196347,0.0003184519;0.4995511;0.016864,0.1147698;0.3812323;-0.01297343,0.1683037;0.1887049;-0.004768995,0.2205505;-0.05329309;-0.0395146,-0.1107657;0.3653925;-0.01232453,-0.1597999;0.1717488;-0.002437218,-0.2017158;-0.07471175;-0.002959809,0.07280805;0.007087742;-0.03238444,0.09084348;-0.2906774;-0.0005932786,0.08125152;-0.5830388;0.06598602,0.09584157;-0.6122267;0.006686706,-0.06894363;0.001120785;-0.040565,-0.09430343;-0.2958266;-0.006226204,-0.09445142;-0.5889063;0.05783843,-0.09401225;-0.616336;-0.005442217,0.000246588;0.3995558;0.0178273,56.14976
-0;0;0,0.004627233;0.1997918;0.007862817,0.01107251;0.4996597;0.005480553,0.122808;0.3784846;-0.022416,0.1758723;0.1858543;-0.01359882,0.2221652;-0.0566657;-0.05285474,-0.1028458;0.3655906;-0.01819242,-0.1545935;0.1726839;-0.007742157,-0.1819531;-0.07513167;-0.02615087,0.0718435;0.004051442;-0.03495849,0.09718652;-0.293471;-0.006008226,0.08511738;-0.5863171;0.05798839,0.09452205;-0.615564;-0.002273284,-0.07006564;0.004026538;-0.03840043,-0.09095433;-0.2934704;-0.005854167,-0.08766774;-0.5877755;0.05222941,-0.08809416;-0.6155989;-0.01056664,0.008945468;0.3997423;0.008943766,0;0;0,0.0001786482;0.1996418;0.01196347,0.0003184519;0.4995511;0.016864,0.1147698;0.3812323;-0.01297343,0.1683037;0.1887049;-0.004768995,0.2205505;-0.05329309;-0.0395146,-0.1107657;0.3653925;-0.01232453,-0.1597999;0.1717488;-0.002437218,-0.2017158;-0.07471175;-0.002959809,0.07280805;0.007087742;-0.03238444,0.09084348;-0.2906774;-0.0005932786,0.08125152;-0.5830388;0.06598602,0.09584157;-0.6122267;0.006686706,-0.06894363;0.001120785;-0.040565,-0.09430343;-0.2958266;-0.006226204,-0.09445142;-0.5889063;0.05783843,-0.09401225;-0.616336;-0.005442217,0.000246588;0.3995558;0.0178273,56.17269
-0;0;0,0.00466939;0.1997784;0.008171999,0.01115842;0.499646;0.00593998,0.122824;0.3785142;-0.02220697,0.1770625;0.1861023;-0.01622207,0.2261599;-0.05542718;-0.05809039,-0.102897;0.3658333;-0.01760573,-0.1547775;0.1729694;-0.007026689,-0.182352;-0.07483622;-0.02524828,0.07161223;0.004266075;-0.03540464,0.09705182;-0.293234;-0.006309059,0.0850509;-0.585947;0.05830569,0.09440389;-0.6152323;-0.001913469,-0.07023537;0.003866617;-0.03810566,-0.09112396;-0.2936331;-0.00558525,-0.08783094;-0.5880005;0.05218141,-0.08806928;-0.6157944;-0.01065218,0.009012239;0.3997277;0.009366367,0;0;0,0.0001176635;0.1996241;0.01225597,0.0001039631;0.4995238;0.01777552,0.1145045;0.3811318;-0.01263008,0.1682465;0.1885921;-0.006283861,0.2222558;-0.05277357;-0.04269259,-0.110893;0.3652456;-0.01164391,-0.1598171;0.1715592;-0.002050018,-0.2015994;-0.07492356;-0.002728917,0.0725916;0.007085523;-0.03286722,0.09123808;-0.2905808;-0.0005086698,0.08169025;-0.5828914;0.06629975,0.09660237;-0.6119479;0.006905355,-0.06911796;0.001164452;-0.040266,-0.09391139;-0.295836;-0.005973127,-0.09404968;-0.5889519;0.05792569,-0.09241099;-0.6175683;-0.003854439,8.352924E-05;0.3995264;0.01850643,56.19386
-0;0;0,0.00466939;0.1997784;0.008171999,0.01115842;0.499646;0.00593998,0.122824;0.3785142;-0.02220697,0.1770625;0.1861023;-0.01622207,0.2261599;-0.05542718;-0.05809039,-0.102897;0.3658333;-0.01760573,-0.1547775;0.1729694;-0.007026689,-0.182352;-0.07483622;-0.02524828,0.07161223;0.004266075;-0.03540464,0.09705182;-0.293234;-0.006309059,0.0850509;-0.585947;0.05830569,0.09440389;-0.6152323;-0.001913469,-0.07023537;0.003866617;-0.03810566,-0.09112396;-0.2936331;-0.00558525,-0.08783094;-0.5880005;0.05218141,-0.08806928;-0.6157944;-0.01065218,0.009012239;0.3997277;0.009366367,0;0;0,0.0001176635;0.1996241;0.01225597,0.0001039631;0.4995238;0.01777552,0.1145045;0.3811318;-0.01263008,0.1682465;0.1885921;-0.006283861,0.2222558;-0.05277357;-0.04269259,-0.110893;0.3652456;-0.01164391,-0.1598171;0.1715592;-0.002050018,-0.2015994;-0.07492356;-0.002728917,0.0725916;0.007085523;-0.03286722,0.09123808;-0.2905808;-0.0005086698,0.08169025;-0.5828914;0.06629975,0.09660237;-0.6119479;0.006905355,-0.06911796;0.001164452;-0.040266,-0.09391139;-0.295836;-0.005973127,-0.09404968;-0.5889519;0.05792569,-0.09241099;-0.6175683;-0.003854439,8.352924E-05;0.3995264;0.01850643,56.20623
-0;0;0,0.004742569;0.199767;0.008405498,0.01129647;0.4996335;0.006320882,0.1227282;0.3780347;-0.0223566,0.1778169;0.1858077;-0.01861385,0.2290109;-0.05495165;-0.06236407,-0.1029644;0.3662027;-0.01690595,-0.1549738;0.1733554;-0.00666173,-0.1830011;-0.07443036;-0.02445766,0.07149836;0.004280204;-0.03563234,0.09707428;-0.2931989;-0.006441722,0.08507215;-0.5858178;0.05859764,0.09398932;-0.6151708;-0.001598638,-0.07034974;0.003842353;-0.03789657,-0.0915555;-0.2936277;-0.005309556,-0.08740046;-0.5879375;0.05269431,-0.08737757;-0.6154562;-0.01047896,0.009143934;0.3997143;0.009715448,0;0;0,0.0001176635;0.1996241;0.01225597,0.0001039631;0.4995238;0.01777552,0.1145045;0.3811318;-0.01263008,0.1682465;0.1885921;-0.006283861,0.2222558;-0.05277357;-0.04269259,-0.110893;0.3652456;-0.01164391,-0.1598171;0.1715592;-0.002050018,-0.2015994;-0.07492356;-0.002728917,0.0725916;0.007085523;-0.03286722,0.09123808;-0.2905808;-0.0005086698,0.08169025;-0.5828914;0.06629975,0.09660237;-0.6119479;0.006905355,-0.06911796;0.001164452;-0.040266,-0.09391139;-0.295836;-0.005973127,-0.09404968;-0.5889519;0.05792569,-0.09241099;-0.6175683;-0.003854439,8.352924E-05;0.3995264;0.01850643,56.22762
-0;0;0,0.004742569;0.199767;0.008405498,0.01129647;0.4996335;0.006320882,0.1227282;0.3780347;-0.0223566,0.1778169;0.1858077;-0.01861385,0.2290109;-0.05495165;-0.06236407,-0.1029644;0.3662027;-0.01690595,-0.1549738;0.1733554;-0.00666173,-0.1830011;-0.07443036;-0.02445766,0.07149836;0.004280204;-0.03563234,0.09707428;-0.2931989;-0.006441722,0.08507215;-0.5858178;0.05859764,0.09398932;-0.6151708;-0.001598638,-0.07034974;0.003842353;-0.03789657,-0.0915555;-0.2936277;-0.005309556,-0.08740046;-0.5879375;0.05269431,-0.08737757;-0.6154562;-0.01047896,0.009143934;0.3997143;0.009715448,0;0;0,-0.0002023243;0.1996046;0.01256824,-0.0008066196;0.499489;0.01888112,0.1136834;0.3813354;-0.01236454,0.1682337;0.1889767;-0.007630567,0.2236449;-0.05162446;-0.0468818,-0.1116214;0.3645998;-0.01004829,-0.1600735;0.1707493;-0.001423594,-0.2013737;-0.07581237;-0.002708532,0.07245998;0.007222939;-0.03312673,0.09127911;-0.2904065;-0.0005296208,0.08181825;-0.5827287;0.06624028,0.0967734;-0.6118408;0.006930731,-0.06928637;0.0009996004;-0.03997999,-0.09493224;-0.2958618;-0.005114131,-0.09346784;-0.5891055;0.05817851,-0.09237003;-0.6175897;-0.003781434,-0.0006252775;0.3994902;0.0193202,56.23967
-0;0;0,0.004828937;0.1997572;0.008586848,0.01152679;0.4996222;0.006669362,0.1227595;0.3779139;-0.02242091,0.1785398;0.1858548;-0.02105938,0.2319279;-0.05425435;-0.06575058,-0.1030744;0.3666376;-0.01608768,-0.1551524;0.1737811;-0.00638059,-0.1835313;-0.074056;-0.02285513,0.07119276;0.004371393;-0.03622819,0.09704078;-0.2930326;-0.00651736,0.08491826;-0.5855641;0.05889212,0.09355275;-0.6147241;-0.00159869,-0.07049025;0.003793013;-0.03763957,-0.09184241;-0.293696;-0.005322721,-0.08775122;-0.5879683;0.05287572,-0.0887579;-0.616669;-0.008810479,0.009293308;0.3997025;0.00999335,0;0;0,-0.0002023243;0.1996046;0.01256824,-0.0008066196;0.499489;0.01888112,0.1136834;0.3813354;-0.01236454,0.1682337;0.1889767;-0.007630567,0.2236449;-0.05162446;-0.0468818,-0.1116214;0.3645998;-0.01004829,-0.1600735;0.1707493;-0.001423594,-0.2013737;-0.07581237;-0.002708532,0.07245998;0.007222939;-0.03312673,0.09127911;-0.2904065;-0.0005296208,0.08181825;-0.5827287;0.06624028,0.0967734;-0.6118408;0.006930731,-0.06928637;0.0009996004;-0.03997999,-0.09493224;-0.2958618;-0.005114131,-0.09346784;-0.5891055;0.05817851,-0.09237003;-0.6175897;-0.003781434,-0.0006252775;0.3994902;0.0193202,56.26087
-0;0;0,0.004828937;0.1997572;0.008586848,0.01152679;0.4996222;0.006669362,0.1227595;0.3779139;-0.02242091,0.1785398;0.1858548;-0.02105938,0.2319279;-0.05425435;-0.06575058,-0.1030744;0.3666376;-0.01608768,-0.1551524;0.1737811;-0.00638059,-0.1835313;-0.074056;-0.02285513,0.07119276;0.004371393;-0.03622819,0.09704078;-0.2930326;-0.00651736,0.08491826;-0.5855641;0.05889212,0.09355275;-0.6147241;-0.00159869,-0.07049025;0.003793013;-0.03763957,-0.09184241;-0.293696;-0.005322721,-0.08775122;-0.5879683;0.05287572,-0.0887579;-0.616669;-0.008810479,0.009293308;0.3997025;0.00999335,0;0;0,-0.0002023243;0.1996046;0.01256824,-0.0008066196;0.499489;0.01888112,0.1136834;0.3813354;-0.01236454,0.1682337;0.1889767;-0.007630567,0.2236449;-0.05162446;-0.0468818,-0.1116214;0.3645998;-0.01004829,-0.1600735;0.1707493;-0.001423594,-0.2013737;-0.07581237;-0.002708532,0.07245998;0.007222939;-0.03312673,0.09127911;-0.2904065;-0.0005296208,0.08181825;-0.5827287;0.06624028,0.0967734;-0.6118408;0.006930731,-0.06928637;0.0009996004;-0.03997999,-0.09493224;-0.2958618;-0.005114131,-0.09346784;-0.5891055;0.05817851,-0.09237003;-0.6175897;-0.003781434,-0.0006252775;0.3994902;0.0193202,56.27284
-0;0;0,0.004828937;0.1997572;0.008586848,0.01152679;0.4996222;0.006669362,0.1227595;0.3779139;-0.02242091,0.1785398;0.1858548;-0.02105938,0.2319279;-0.05425435;-0.06575058,-0.1030744;0.3666376;-0.01608768,-0.1551524;0.1737811;-0.00638059,-0.1835313;-0.074056;-0.02285513,0.07119276;0.004371393;-0.03622819,0.09704078;-0.2930326;-0.00651736,0.08491826;-0.5855641;0.05889212,0.09355275;-0.6147241;-0.00159869,-0.07049025;0.003793013;-0.03763957,-0.09184241;-0.293696;-0.005322721,-0.08775122;-0.5879683;0.05287572,-0.0887579;-0.616669;-0.008810479,0.009293308;0.3997025;0.00999335,0;0;0,-0.0001276592;0.1995898;0.01280153,-0.0006411549;0.4994657;0.0195467,0.1136896;0.3811541;-0.01220313,0.1695757;0.1891357;-0.009821479,0.2255526;-0.05094796;-0.05137149,-0.1114688;0.3642258;-0.009222271,-0.1599691;0.1703755;-0.0008689966,-0.2011535;-0.07620223;-0.002672745,0.07232323;0.007134832;-0.03344316,0.09167717;-0.2904015;-0.0003140122,0.08233101;-0.5827979;0.06614688,0.09718356;-0.6124314;0.007513233,-0.06937662;0.001073341;-0.03982126,-0.09460118;-0.2958223;-0.004939985,-0.0931136;-0.589112;0.05813902,-0.09379906;-0.6155786;-0.006300066,-0.0004984485;0.3994662;0.01982427,56.28411
-0;0;0,0.005124073;0.1997357;0.008911145,0.01206149;0.4995964;0.007217077,0.1230691;0.3777702;-0.02219944,0.1800394;0.1860581;-0.02312838,0.2348845;-0.05300616;-0.0715051,-0.1027765;0.366698;-0.0152544,-0.1548809;0.173855;-0.005421175,-0.1836448;-0.07390039;-0.02244804,0.07094293;0.004442266;-0.0367065,0.09740453;-0.2928427;-0.006351711,0.08508055;-0.5853292;0.05922104,0.09393892;-0.6144148;-0.00133476,-0.07068773;0.00372006;-0.03727475,-0.0921054;-0.2937159;-0.00451573,-0.08721858;-0.5880165;0.05347771,-0.08839509;-0.6171588;-0.007637866,0.009698687;0.3996773;0.01046891,0;0;0,-0.0001276592;0.1995898;0.01280153,-0.0006411549;0.4994657;0.0195467,0.1136896;0.3811541;-0.01220313,0.1695757;0.1891357;-0.009821479,0.2255526;-0.05094796;-0.05137149,-0.1114688;0.3642258;-0.009222271,-0.1599691;0.1703755;-0.0008689966,-0.2011535;-0.07620223;-0.002672745,0.07232323;0.007134832;-0.03344316,0.09167717;-0.2904015;-0.0003140122,0.08233101;-0.5827979;0.06614688,0.09718356;-0.6124314;0.007513233,-0.06937662;0.001073341;-0.03982126,-0.09460118;-0.2958223;-0.004939985,-0.0931136;-0.589112;0.05813902,-0.09379906;-0.6155786;-0.006300066,-0.0004984485;0.3994662;0.01982427,56.30571
-0;0;0,0.005124073;0.1997357;0.008911145,0.01206149;0.4995964;0.007217077,0.1230691;0.3777702;-0.02219944,0.1800394;0.1860581;-0.02312838,0.2348845;-0.05300616;-0.0715051,-0.1027765;0.366698;-0.0152544,-0.1548809;0.173855;-0.005421175,-0.1836448;-0.07390039;-0.02244804,0.07094293;0.004442266;-0.0367065,0.09740453;-0.2928427;-0.006351711,0.08508055;-0.5853292;0.05922104,0.09393892;-0.6144148;-0.00133476,-0.07068773;0.00372006;-0.03727475,-0.0921054;-0.2937159;-0.00451573,-0.08721858;-0.5880165;0.05347771,-0.08839509;-0.6171588;-0.007637866,0.009698687;0.3996773;0.01046891,0;0;0,-0.0001276592;0.1995898;0.01280153,-0.0006411549;0.4994657;0.0195467,0.1136896;0.3811541;-0.01220313,0.1695757;0.1891357;-0.009821479,0.2255526;-0.05094796;-0.05137149,-0.1114688;0.3642258;-0.009222271,-0.1599691;0.1703755;-0.0008689966,-0.2011535;-0.07620223;-0.002672745,0.07232323;0.007134832;-0.03344316,0.09167717;-0.2904015;-0.0003140122,0.08233101;-0.5827979;0.06614688,0.09718356;-0.6124314;0.007513233,-0.06937662;0.001073341;-0.03982126,-0.09460118;-0.2958223;-0.004939985,-0.0931136;-0.589112;0.05813902,-0.09379906;-0.6155786;-0.006300066,-0.0004984485;0.3994662;0.01982427,56.31712
-0;0;0,0.005188241;0.1997184;0.009254716,0.01223585;0.4995772;0.00785422,0.1229079;0.3777136;-0.02253182,0.1811821;0.186435;-0.02661051,0.2368553;-0.05181937;-0.07794607,-0.1026988;0.3665172;-0.01435811,-0.1547734;0.1736625;-0.004596754,-0.1836342;-0.07410116;-0.02133704,0.07074753;0.004424033;-0.03708388,0.09726305;-0.2927791;-0.005984176,0.08488841;-0.5851625;0.06003722,0.09405414;-0.6139385;-0.000875324,-0.07091068;0.003707431;-0.03685011,-0.092126;-0.2937488;-0.004143383,-0.08770961;-0.5880484;0.0538931,-0.0885813;-0.6172686;-0.007126629,0.009805592;0.3996572;0.01102907,0;0;0,-1.928429E-05;0.1995757;0.01302138,-0.0003550086;0.4994425;0.02020024,0.1136952;0.3805862;-0.01212567,0.1705088;0.1888254;-0.01220721,0.2273722;-0.05040495;-0.05732235,-0.1112116;0.3638284;-0.008456174,-0.1600362;0.1700663;5.369447E-05,-0.2005908;-0.07660736;-0.002670531,0.07215796;0.006986668;-0.03382919,0.09209388;-0.2904602;-0.0002443753,0.08296142;-0.582895;0.06607631,0.09780981;-0.6123791;0.007239174,-0.06951765;0.001225776;-0.0395701,-0.09526462;-0.2955434;-0.004001059,-0.09223415;-0.5889353;0.05854539,-0.09291097;-0.6149508;-0.006425217,-0.000288214;0.3994426;0.02031234,56.32805
-0;0;0,0.005188241;0.1997184;0.009254716,0.01223585;0.4995772;0.00785422,0.1229079;0.3777136;-0.02253182,0.1811821;0.186435;-0.02661051,0.2368553;-0.05181937;-0.07794607,-0.1026988;0.3665172;-0.01435811,-0.1547734;0.1736625;-0.004596754,-0.1836342;-0.07410116;-0.02133704,0.07074753;0.004424033;-0.03708388,0.09726305;-0.2927791;-0.005984176,0.08488841;-0.5851625;0.06003722,0.09405414;-0.6139385;-0.000875324,-0.07091068;0.003707431;-0.03685011,-0.092126;-0.2937488;-0.004143383,-0.08770961;-0.5880484;0.0538931,-0.0885813;-0.6172686;-0.007126629,0.009805592;0.3996572;0.01102907,0;0;0,-1.928429E-05;0.1995757;0.01302138,-0.0003550086;0.4994425;0.02020024,0.1136952;0.3805862;-0.01212567,0.1705088;0.1888254;-0.01220721,0.2273722;-0.05040495;-0.05732235,-0.1112116;0.3638284;-0.008456174,-0.1600362;0.1700663;5.369447E-05,-0.2005908;-0.07660736;-0.002670531,0.07215796;0.006986668;-0.03382919,0.09209388;-0.2904602;-0.0002443753,0.08296142;-0.582895;0.06607631,0.09780981;-0.6123791;0.007239174,-0.06951765;0.001225776;-0.0395701,-0.09526462;-0.2955434;-0.004001059,-0.09223415;-0.5889353;0.05854539,-0.09291097;-0.6149508;-0.006425217,-0.000288214;0.3994426;0.02031234,56.3396
-0;0;0,0.005188241;0.1997184;0.009254716,0.01223585;0.4995772;0.00785422,0.1229079;0.3777136;-0.02253182,0.1811821;0.186435;-0.02661051,0.2368553;-0.05181937;-0.07794607,-0.1026988;0.3665172;-0.01435811,-0.1547734;0.1736625;-0.004596754,-0.1836342;-0.07410116;-0.02133704,0.07074753;0.004424033;-0.03708388,0.09726305;-0.2927791;-0.005984176,0.08488841;-0.5851625;0.06003722,0.09405414;-0.6139385;-0.000875324,-0.07091068;0.003707431;-0.03685011,-0.092126;-0.2937488;-0.004143383,-0.08770961;-0.5880484;0.0538931,-0.0885813;-0.6172686;-0.007126629,0.009805592;0.3996572;0.01102907,0;0;0,-1.928429E-05;0.1995757;0.01302138,-0.0003550086;0.4994425;0.02020024,0.1136952;0.3805862;-0.01212567,0.1705088;0.1888254;-0.01220721,0.2273722;-0.05040495;-0.05732235,-0.1112116;0.3638284;-0.008456174,-0.1600362;0.1700663;5.369447E-05,-0.2005908;-0.07660736;-0.002670531,0.07215796;0.006986668;-0.03382919,0.09209388;-0.2904602;-0.0002443753,0.08296142;-0.582895;0.06607631,0.09780981;-0.6123791;0.007239174,-0.06951765;0.001225776;-0.0395701,-0.09526462;-0.2955434;-0.004001059,-0.09223415;-0.5889353;0.05854539,-0.09291097;-0.6149508;-0.006425217,-0.000288214;0.3994426;0.02031234,56.35066
-0;0;0,0.005215083;0.199701;0.009607922,0.01233902;0.4995581;0.008522476,0.1228761;0.3776905;-0.02220632,0.1820912;0.1867564;-0.02834936,0.2382247;-0.04986647;-0.0863032,-0.1027679;0.3664982;-0.0132405,-0.1548578;0.1736354;-0.003722695,-0.1838615;-0.07410975;-0.02048972,0.07060467;0.004489707;-0.03734733,0.09700277;-0.2926663;-0.005701553,0.08478451;-0.585041;0.06038741,0.09534869;-0.6138546;-0.0002493449,-0.07113351;0.003643278;-0.03642458,-0.09230253;-0.2938081;-0.003643874,-0.08820084;-0.5880437;0.0547392,-0.08880988;-0.6169298;-0.006714873,0.009853967;0.399637;0.01162176,0;0;0,-7.875835E-05;0.1995578;0.01329265,-0.0004002945;0.4994142;0.02088225,0.1135351;0.3810557;-0.01220948,0.1717224;0.1897411;-0.01580733,0.2293881;-0.04882783;-0.06334173,-0.111206;0.3638127;-0.008166054,-0.1599405;0.1700186;0.0001276629,-0.2006231;-0.07663174;-0.002794032,0.07203262;0.006890188;-0.03411491,0.09224531;-0.2905106;-0.0002879947,0.08313714;-0.5829591;0.06597613,0.09876078;-0.6119565;0.006686207,-0.06965678;0.001324713;-0.03932147,-0.0951478;-0.2954635;-0.003726583,-0.0919676;-0.5889542;0.05834691,-0.09065913;-0.6176291;-0.003366515,-0.0003467959;0.3994142;0.02086451,56.3729
-0;0;0,0.005293411;0.1996841;0.009912431,0.01266348;0.4995368;0.009241593,0.1231725;0.3775789;-0.02124756,0.1810572;0.1862898;-0.02885149,0.2367061;-0.04945481;-0.0907199,-0.1026018;0.3662241;-0.01218198,-0.1549772;0.1734219;-0.003010068,-0.1843663;-0.07429507;-0.01951972,0.07037918;0.004466816;-0.03777326,0.0967417;-0.2926077;-0.005342163,0.08422468;-0.5848985;0.06106158,0.09533126;-0.6133522;5.623698E-05,-0.07138196;0.003643659;-0.03593521,-0.09236491;-0.2938965;-0.003847998,-0.08864776;-0.587978;0.05533174,-0.08933513;-0.61679;-0.006216582,0.01005235;0.3996145;0.01219296,0;0;0,-7.875835E-05;0.1995578;0.01329265,-0.0004002945;0.4994142;0.02088225,0.1135351;0.3810557;-0.01220948,0.1717224;0.1897411;-0.01580733,0.2293881;-0.04882783;-0.06334173,-0.111206;0.3638127;-0.008166054,-0.1599405;0.1700186;0.0001276629,-0.2006231;-0.07663174;-0.002794032,0.07203262;0.006890188;-0.03411491,0.09224531;-0.2905106;-0.0002879947,0.08313714;-0.5829591;0.06597613,0.09876078;-0.6119565;0.006686207,-0.06965678;0.001324713;-0.03932147,-0.0951478;-0.2954635;-0.003726583,-0.0919676;-0.5889542;0.05834691,-0.09065913;-0.6176291;-0.003366515,-0.0003467959;0.3994142;0.02086451,56.39519
-0;0;0,0.005293411;0.1996841;0.009912431,0.01266348;0.4995368;0.009241593,0.1231725;0.3775789;-0.02124756,0.1810572;0.1862898;-0.02885149,0.2367061;-0.04945481;-0.0907199,-0.1026018;0.3662241;-0.01218198,-0.1549772;0.1734219;-0.003010068,-0.1843663;-0.07429507;-0.01951972,0.07037918;0.004466816;-0.03777326,0.0967417;-0.2926077;-0.005342163,0.08422468;-0.5848985;0.06106158,0.09533126;-0.6133522;5.623698E-05,-0.07138196;0.003643659;-0.03593521,-0.09236491;-0.2938965;-0.003847998,-0.08864776;-0.587978;0.05533174,-0.08933513;-0.61679;-0.006216582,0.01005235;0.3996145;0.01219296,0;0;0,-7.875835E-05;0.1995578;0.01329265,-0.0004002945;0.4994142;0.02088225,0.1135351;0.3810557;-0.01220948,0.1717224;0.1897411;-0.01580733,0.2293881;-0.04882783;-0.06334173,-0.111206;0.3638127;-0.008166054,-0.1599405;0.1700186;0.0001276629,-0.2006231;-0.07663174;-0.002794032,0.07203262;0.006890188;-0.03411491,0.09224531;-0.2905106;-0.0002879947,0.08313714;-0.5829591;0.06597613,0.09876078;-0.6119565;0.006686207,-0.06965678;0.001324713;-0.03932147,-0.0951478;-0.2954635;-0.003726583,-0.0919676;-0.5889542;0.05834691,-0.09065913;-0.6176291;-0.003366515,-0.0003467959;0.3994142;0.02086451,56.40639
-0;0;0,0.005293411;0.1996841;0.009912431,0.01266348;0.4995368;0.009241593,0.1231725;0.3775789;-0.02124756,0.1810572;0.1862898;-0.02885149,0.2367061;-0.04945481;-0.0907199,-0.1026018;0.3662241;-0.01218198,-0.1549772;0.1734219;-0.003010068,-0.1843663;-0.07429507;-0.01951972,0.07037918;0.004466816;-0.03777326,0.0967417;-0.2926077;-0.005342163,0.08422468;-0.5848985;0.06106158,0.09533126;-0.6133522;5.623698E-05,-0.07138196;0.003643659;-0.03593521,-0.09236491;-0.2938965;-0.003847998,-0.08864776;-0.587978;0.05533174,-0.08933513;-0.61679;-0.006216582,0.01005235;0.3996145;0.01219296,0;0;0,-0.0001021847;0.1995446;0.01348819,-0.0004688944;0.4993915;0.02145735,0.113293;0.3806579;-0.01219141,0.1726181;0.1897594;-0.01838021,0.2315563;-0.04737701;-0.07122524,-0.1112553;0.3634709;-0.007361259,-0.1601897;0.1697326;0.001056431,-0.2004712;-0.07697545;-0.002487995,0.07194159;0.006780467;-0.03432831,0.09247564;-0.2905521;-9.834021E-05,0.08331062;-0.5830474;0.06595079,0.0990073;-0.61149;0.005947556,-0.0697291;0.001404012;-0.03919031,-0.09502307;-0.2954063;-0.003639087,-0.09218531;-0.5889831;0.0580423,-0.0900874;-0.6170387;-0.004431035,-0.000404198;0.3993916;0.02130472,56.41772
-0;0;0,0.005356133;0.1996774;0.0100118,0.01317401;0.4995243;0.009933025,0.1231871;0.377228;-0.02159607,0.1821033;0.1863639;-0.03158664,0.2379672;-0.04816672;-0.09772734,-0.102353;0.3660366;-0.01135635,-0.1552345;0.1733826;-0.001975877,-0.1850803;-0.07431237;-0.01798947,0.07022084;0.004397932;-0.03807484,0.09683195;-0.2926828;-0.005905397,0.08427136;-0.5848498;0.06103236,0.09551169;-0.6130997;-0.0002098717,-0.07144226;0.003666543;-0.03581283,-0.09241204;-0.2938769;-0.003747456,-0.08857004;-0.5879574;0.05542939,-0.08925842;-0.6172193;-0.005538493,0.01034771;0.3995988;0.01256258,0;0;0,-0.0001021847;0.1995446;0.01348819,-0.0004688944;0.4993915;0.02145735,0.113293;0.3806579;-0.01219141,0.1726181;0.1897594;-0.01838021,0.2315563;-0.04737701;-0.07122524,-0.1112553;0.3634709;-0.007361259,-0.1601897;0.1697326;0.001056431,-0.2004712;-0.07697545;-0.002487995,0.07194159;0.006780467;-0.03432831,0.09247564;-0.2905521;-9.834021E-05,0.08331062;-0.5830474;0.06595079,0.0990073;-0.61149;0.005947556,-0.0697291;0.001404012;-0.03919031,-0.09502307;-0.2954063;-0.003639087,-0.09218531;-0.5889831;0.0580423,-0.0900874;-0.6170387;-0.004431035,-0.000404198;0.3993916;0.02130472,56.44028
-0;0;0,0.005356133;0.1996774;0.0100118,0.01317401;0.4995243;0.009933025,0.1231871;0.377228;-0.02159607,0.1821033;0.1863639;-0.03158664,0.2379672;-0.04816672;-0.09772734,-0.102353;0.3660366;-0.01135635,-0.1552345;0.1733826;-0.001975877,-0.1850803;-0.07431237;-0.01798947,0.07022084;0.004397932;-0.03807484,0.09683195;-0.2926828;-0.005905397,0.08427136;-0.5848498;0.06103236,0.09551169;-0.6130997;-0.0002098717,-0.07144226;0.003666543;-0.03581283,-0.09241204;-0.2938769;-0.003747456,-0.08857004;-0.5879574;0.05542939,-0.08925842;-0.6172193;-0.005538493,0.01034771;0.3995988;0.01256258,0;0;0,-0.0001021847;0.1995446;0.01348819,-0.0004688944;0.4993915;0.02145735,0.113293;0.3806579;-0.01219141,0.1726181;0.1897594;-0.01838021,0.2315563;-0.04737701;-0.07122524,-0.1112553;0.3634709;-0.007361259,-0.1601897;0.1697326;0.001056431,-0.2004712;-0.07697545;-0.002487995,0.07194159;0.006780467;-0.03432831,0.09247564;-0.2905521;-9.834021E-05,0.08331062;-0.5830474;0.06595079,0.0990073;-0.61149;0.005947556,-0.0697291;0.001404012;-0.03919031,-0.09502307;-0.2954063;-0.003639087,-0.09218531;-0.5889831;0.0580423,-0.0900874;-0.6170387;-0.004431035,-0.000404198;0.3993916;0.02130472,56.45123
-0;0;0,0.005364826;0.1996707;0.01013968,0.01324937;0.4995172;0.01024426,0.1233529;0.3774711;-0.02113548,0.1817539;0.1866012;-0.03370431,0.238092;-0.04581356;-0.1065699,-0.1023932;0.3660234;-0.01074527,-0.1555146;0.1734426;-0.001217018,-0.1856939;-0.07419024;-0.01756196,0.07008684;0.004366519;-0.03832451,0.0967605;-0.2927123;-0.006188471,0.08418822;-0.5847859;0.06115333,0.09548414;-0.6133963;0.0003848001,-0.07153568;0.003654972;-0.03562707,-0.09252191;-0.2939363;-0.004019853,-0.08875776;-0.5879608;0.05543929,-0.08935375;-0.6172951;-0.005435307,0.01038966;0.3995902;0.01277707,0;0;0,-0.0002078782;0.1995314;0.01368148,-0.0007673325;0.4993681;0.02202159,0.1129469;0.3803261;-0.01196419,0.1732169;0.1898006;-0.0201861,0.2336788;-0.04552779;-0.07904935,-0.1113115;0.3629381;-0.00697,-0.1606833;0.1693303;0.001887106,-0.2005507;-0.07743415;-0.002340934,0.07184687;0.006909258;-0.03450058,0.09275977;-0.2903684;-2.370775E-05,0.08318929;-0.5828635;0.06596934,0.09985707;-0.6113654;0.006306678,-0.06987836;0.001219303;-0.03892978,-0.09453769;-0.2956612;-0.003519166,-0.09208835;-0.5892661;0.05804492,-0.09411202;-0.5564947;-0.04043898,-0.0006379156;0.3993686;0.02173834,56.47354
-0;0;0,0.005364826;0.1996707;0.01013968,0.01324937;0.4995172;0.01024426,0.1233529;0.3774711;-0.02113548,0.1817539;0.1866012;-0.03370431,0.238092;-0.04581356;-0.1065699,-0.1023932;0.3660234;-0.01074527,-0.1555146;0.1734426;-0.001217018,-0.1856939;-0.07419024;-0.01756196,0.07008684;0.004366519;-0.03832451,0.0967605;-0.2927123;-0.006188471,0.08418822;-0.5847859;0.06115333,0.09548414;-0.6133963;0.0003848001,-0.07153568;0.003654972;-0.03562707,-0.09252191;-0.2939363;-0.004019853,-0.08875776;-0.5879608;0.05543929,-0.08935375;-0.6172951;-0.005435307,0.01038966;0.3995902;0.01277707,0;0;0,-0.0002078782;0.1995314;0.01368148,-0.0007673325;0.4993681;0.02202159,0.1129469;0.3803261;-0.01196419,0.1732169;0.1898006;-0.0201861,0.2336788;-0.04552779;-0.07904935,-0.1113115;0.3629381;-0.00697,-0.1606833;0.1693303;0.001887106,-0.2005507;-0.07743415;-0.002340934,0.07184687;0.006909258;-0.03450058,0.09275977;-0.2903684;-2.370775E-05,0.08318929;-0.5828635;0.06596934,0.09985707;-0.6113654;0.006306678,-0.06987836;0.001219303;-0.03892978,-0.09453769;-0.2956612;-0.003519166,-0.09208835;-0.5892661;0.05804492,-0.09411202;-0.5564947;-0.04043898,-0.0006379156;0.3993686;0.02173834,56.48475
-0;0;0,0.0054447;0.1996577;0.01035194,0.0136161;0.4995002;0.01112308,0.1231405;0.3767823;-0.0216444,0.1831814;0.1867142;-0.03805229,0.239959;-0.04409744;-0.1155268,-0.1022522;0.366179;-0.01000342,-0.1558087;0.1737007;-0.0008484703,-0.1864467;-0.07386385;-0.01737347,0.06981827;0.004284571;-0.03882076,0.09671384;-0.2927299;-0.006277636,0.08403805;-0.5847293;0.06136607,0.09498753;-0.6124941;-0.000543192,-0.07165679;0.003750463;-0.03537286,-0.092963;-0.2938238;-0.003820155,-0.08878731;-0.5878844;0.05543332,-0.08912175;-0.6153344;-0.007823139,0.0106273;0.3995687;0.01330626,0;0;0,-0.0002078782;0.1995314;0.01368148,-0.0007673325;0.4993681;0.02202159,0.1129469;0.3803261;-0.01196419,0.1732169;0.1898006;-0.0201861,0.2336788;-0.04552779;-0.07904935,-0.1113115;0.3629381;-0.00697,-0.1606833;0.1693303;0.001887106,-0.2005507;-0.07743415;-0.002340934,0.07184687;0.006909258;-0.03450058,0.09275977;-0.2903684;-2.370775E-05,0.08318929;-0.5828635;0.06596934,0.09985707;-0.6113654;0.006306678,-0.06987836;0.001219303;-0.03892978,-0.09453769;-0.2956612;-0.003519166,-0.09208835;-0.5892661;0.05804492,-0.09411202;-0.5564947;-0.04043898,-0.0006379156;0.3993686;0.02173834,56.50689
-0;0;0,0.00555828;0.1996472;0.01049255,0.01393886;0.4994848;0.01157006,0.122833;0.3754065;-0.02214486,0.1835422;0.1858158;-0.04137408,0.2409808;-0.04330216;-0.1232627,-0.1020423;0.3659234;-0.009283293,-0.1558223;0.1735163;5.673803E-05,-0.1866221;-0.07402985;-0.01644362,0.06957253;0.004214833;-0.039267,0.09675486;-0.2927309;-0.006337594,0.08414014;-0.5846961;0.06146548,0.09469447;-0.6123843;-0.0006082691,-0.07178865;0.003785991;-0.03510064,-0.09291618;-0.2938075;-0.003608577,-0.0888037;-0.5878907;0.05553642,-0.09012237;-0.6149565;-0.008174859,0.0108536;0.399553;0.01359821,0;0;0,-0.0002273446;0.1995161;0.01390168,-0.0007317976;0.4993402;0.02269706,0.1127438;0.3799137;-0.01192694,0.1737377;0.1897674;-0.02306905,0.2355818;-0.04438868;-0.08508714,-0.1113647;0.3625593;-0.005773207,-0.1607191;0.1689273;0.00263794,-0.2004457;-0.07785149;-0.002057878,0.07165714;0.006866536;-0.03490135,0.09289805;-0.2903314;5.908683E-05,0.08324425;-0.5828366;0.0659945,0.1001735;-0.6111001;0.006092738,-0.07004673;0.001317848;-0.03862276,-0.09456562;-0.2956032;-0.003456265,-0.09180861;-0.5891638;0.05830646,-0.0904033;-0.616186;-0.005455654,-0.0006326976;0.3993413;0.02225392,56.53084
-0;0;0,0.00555828;0.1996472;0.01049255,0.01393886;0.4994848;0.01157006,0.122833;0.3754065;-0.02214486,0.1835422;0.1858158;-0.04137408,0.2409808;-0.04330216;-0.1232627,-0.1020423;0.3659234;-0.009283293,-0.1558223;0.1735163;5.673803E-05,-0.1866221;-0.07402985;-0.01644362,0.06957253;0.004214833;-0.039267,0.09675486;-0.2927309;-0.006337594,0.08414014;-0.5846961;0.06146548,0.09469447;-0.6123843;-0.0006082691,-0.07178865;0.003785991;-0.03510064,-0.09291618;-0.2938075;-0.003608577,-0.0888037;-0.5878907;0.05553642,-0.09012237;-0.6149565;-0.008174859,0.0108536;0.399553;0.01359821,0;0;0,-0.0002273446;0.1995161;0.01390168,-0.0007317976;0.4993402;0.02269706,0.1127438;0.3799137;-0.01192694,0.1737377;0.1897674;-0.02306905,0.2355818;-0.04438868;-0.08508714,-0.1113647;0.3625593;-0.005773207,-0.1607191;0.1689273;0.00263794,-0.2004457;-0.07785149;-0.002057878,0.07165714;0.006866536;-0.03490135,0.09289805;-0.2903314;5.908683E-05,0.08324425;-0.5828366;0.0659945,0.1001735;-0.6111001;0.006092738,-0.07004673;0.001317848;-0.03862276,-0.09456562;-0.2956032;-0.003456265,-0.09180861;-0.5891638;0.05830646,-0.0904033;-0.616186;-0.005455654,-0.0006326976;0.3993413;0.02225392,56.54168
-0;0;0,0.00555828;0.1996472;0.01049255,0.01393886;0.4994848;0.01157006,0.122833;0.3754065;-0.02214486,0.1835422;0.1858158;-0.04137408,0.2409808;-0.04330216;-0.1232627,-0.1020423;0.3659234;-0.009283293,-0.1558223;0.1735163;5.673803E-05,-0.1866221;-0.07402985;-0.01644362,0.06957253;0.004214833;-0.039267,0.09675486;-0.2927309;-0.006337594,0.08414014;-0.5846961;0.06146548,0.09469447;-0.6123843;-0.0006082691,-0.07178865;0.003785991;-0.03510064,-0.09291618;-0.2938075;-0.003608577,-0.0888037;-0.5878907;0.05553642,-0.09012237;-0.6149565;-0.008174859,0.0108536;0.399553;0.01359821,0;0;0,-0.0002273446;0.1995161;0.01390168,-0.0007317976;0.4993402;0.02269706,0.1127438;0.3799137;-0.01192694,0.1737377;0.1897674;-0.02306905,0.2355818;-0.04438868;-0.08508714,-0.1113647;0.3625593;-0.005773207,-0.1607191;0.1689273;0.00263794,-0.2004457;-0.07785149;-0.002057878,0.07165714;0.006866536;-0.03490135,0.09289805;-0.2903314;5.908683E-05,0.08324425;-0.5828366;0.0659945,0.1001735;-0.6111001;0.006092738,-0.07004673;0.001317848;-0.03862276,-0.09456562;-0.2956032;-0.003456265,-0.09180861;-0.5891638;0.05830646,-0.0904033;-0.616186;-0.005455654,-0.0006326976;0.3993413;0.02225392,56.55314
-0;0;0,0.005743125;0.1996266;0.01078055,0.01441134;0.4994564;0.01218701,0.1228195;0.374896;-0.02244487,0.1846297;0.1860741;-0.04537458,0.2425877;-0.04159831;-0.1308506,-0.1019129;0.3663165;-0.008428866,-0.1579456;0.1747942;0.004970562,-0.1871155;-0.07266906;-0.01530349,0.06945174;0.004125653;-0.03948966,0.09710931;-0.2928234;-0.006988738,0.08451007;-0.5846423;0.06144397,0.09518563;-0.6129692;0.0001991242,-0.07193112;0.003862891;-0.0347993,-0.09289162;-0.2937268;-0.003159985,-0.08884764;-0.5878426;0.05582749,-0.09047241;-0.6152415;-0.00747164,0.01118827;0.3995258;0.01404956,0;0;0,-0.0004119967;0.1994965;0.01417699,-0.001267367;0.4992986;0.02368782,0.1121782;0.3800872;-0.0118182,0.173441;0.190313;-0.02706975,0.2380432;-0.04179612;-0.09379244,-0.1119223;0.3625596;-0.004511572,-0.1614493;0.1689998;0.004524995,-0.2006718;-0.07783052;-0.0015076,0.07157738;0.006912083;-0.03505569,0.09289806;-0.2902482;0.000175152,0.08326625;-0.5827663;0.06605674,0.100312;-0.6111376;0.006329194,-0.07013047;0.001295842;-0.03847124,-0.09476984;-0.2956031;-0.003201801,-0.091642;-0.5892009;0.05836615,-0.09039613;-0.6148733;-0.006995343,-0.001044587;0.3993014;0.02298724,56.57371
-0;0;0,0.005743125;0.1996266;0.01078055,0.01441134;0.4994564;0.01218701,0.1228195;0.374896;-0.02244487,0.1846297;0.1860741;-0.04537458,0.2425877;-0.04159831;-0.1308506,-0.1019129;0.3663165;-0.008428866,-0.1579456;0.1747942;0.004970562,-0.1871155;-0.07266906;-0.01530349,0.06945174;0.004125653;-0.03948966,0.09710931;-0.2928234;-0.006988738,0.08451007;-0.5846423;0.06144397,0.09518563;-0.6129692;0.0001991242,-0.07193112;0.003862891;-0.0347993,-0.09289162;-0.2937268;-0.003159985,-0.08884764;-0.5878426;0.05582749,-0.09047241;-0.6152415;-0.00747164,0.01118827;0.3995258;0.01404956,0;0;0,-0.0004119967;0.1994965;0.01417699,-0.001267367;0.4992986;0.02368782,0.1121782;0.3800872;-0.0118182,0.173441;0.190313;-0.02706975,0.2380432;-0.04179612;-0.09379244,-0.1119223;0.3625596;-0.004511572,-0.1614493;0.1689998;0.004524995,-0.2006718;-0.07783052;-0.0015076,0.07157738;0.006912083;-0.03505569,0.09289806;-0.2902482;0.000175152,0.08326625;-0.5827663;0.06605674,0.100312;-0.6111376;0.006329194,-0.07013047;0.001295842;-0.03847124,-0.09476984;-0.2956031;-0.003201801,-0.091642;-0.5892009;0.05836615,-0.09039613;-0.6148733;-0.006995343,-0.001044587;0.3993014;0.02298724,56.58514
-0;0;0,0.005859009;0.1996197;0.01084644,0.0147265;0.4994433;0.0123521,0.1226525;0.374253;-0.02309892,0.1853731;0.1860888;-0.04879611,0.2450268;-0.03839941;-0.1412434,-0.1017545;0.3661793;-0.007725571,-0.1580242;0.174728;0.005696687,-0.1871608;-0.07272321;-0.01477138,0.0693876;0.004058605;-0.03960919,0.09714923;-0.2928906;-0.007198345,0.08471833;-0.584699;0.0613095,0.09536099;-0.6132006;0.0002829619,-0.07198887;0.003926535;-0.03467254,-0.09339348;-0.2936846;-0.003536562,-0.08907115;-0.587717;0.05584585,-0.09051939;-0.615328;-0.007197291,0.01142211;0.3995146;0.01417908,0;0;0,-0.0004119967;0.1994965;0.01417699,-0.001267367;0.4992986;0.02368782,0.1121782;0.3800872;-0.0118182,0.173441;0.190313;-0.02706975,0.2380432;-0.04179612;-0.09379244,-0.1119223;0.3625596;-0.004511572,-0.1614493;0.1689998;0.004524995,-0.2006718;-0.07783052;-0.0015076,0.07157738;0.006912083;-0.03505569,0.09289806;-0.2902482;0.000175152,0.08326625;-0.5827663;0.06605674,0.100312;-0.6111376;0.006329194,-0.07013047;0.001295842;-0.03847124,-0.09476984;-0.2956031;-0.003201801,-0.091642;-0.5892009;0.05836615,-0.09039613;-0.6148733;-0.006995343,-0.001044587;0.3993014;0.02298724,56.59682
-0;0;0,0.005859009;0.1996197;0.01084644,0.0147265;0.4994433;0.0123521,0.1226525;0.374253;-0.02309892,0.1853731;0.1860888;-0.04879611,0.2450268;-0.03839941;-0.1412434,-0.1017545;0.3661793;-0.007725571,-0.1580242;0.174728;0.005696687,-0.1871608;-0.07272321;-0.01477138,0.0693876;0.004058605;-0.03960919,0.09714923;-0.2928906;-0.007198345,0.08471833;-0.584699;0.0613095,0.09536099;-0.6132006;0.0002829619,-0.07198887;0.003926535;-0.03467254,-0.09339348;-0.2936846;-0.003536562,-0.08907115;-0.587717;0.05584585,-0.09051939;-0.615328;-0.007197291,0.01142211;0.3995146;0.01417908,0;0;0,-0.0004324684;0.1994807;0.01439622,-0.001172119;0.4992707;0.02429364,0.1118571;0.3794386;-0.0121593,0.1744081;0.1903515;-0.03041988,0.2424215;-0.03814761;-0.1056682,-0.1120858;0.3624879;-0.003135126,-0.1613042;0.1688325;0.005532095,-0.2002213;-0.07802922;-0.001159157,0.07135932;0.006922811;-0.03549536,0.09298027;-0.2901693;0.0001252815,0.08334569;-0.5826983;0.06595828,0.1001287;-0.6106873;0.005658649,-0.07053208;0.001217561;-0.03773253,-0.09512851;-0.2958147;-0.003573157,-0.09205044;-0.5894196;0.05796254,-0.09099614;-0.6148509;-0.007680472,-0.001003601;0.3992743;0.02346375,56.61852
-0;0;0,0.006172368;0.1995996;0.01104074,0.01532873;0.499414;0.01282973,0.1227779;0.3740564;-0.02365231,0.1864553;0.186693;-0.0526376,0.248044;-0.03590064;-0.1483397,-0.1012528;0.365963;-0.007256093,-0.1596051;0.1753487;0.008906021,-0.1863972;-0.07215594;-0.01397694,0.06922124;0.004005928;-0.03990452,0.09732649;-0.2929134;-0.007516365,0.08482268;-0.5846183;0.06141784,0.09626444;-0.6134046;0.0009049699,-0.07213579;0.003994331;-0.03435799,-0.09323063;-0.2936648;-0.003470588,-0.08883339;-0.5876478;0.05615066,-0.09032103;-0.6154064;-0.006709419,0.01189174;0.3994874;0.01452514,0;0;0,-0.0004324684;0.1994807;0.01439622,-0.001172119;0.4992707;0.02429364,0.1118571;0.3794386;-0.0121593,0.1744081;0.1903515;-0.03041988,0.2424215;-0.03814761;-0.1056682,-0.1120858;0.3624879;-0.003135126,-0.1613042;0.1688325;0.005532095,-0.2002213;-0.07802922;-0.001159157,0.07135932;0.006922811;-0.03549536,0.09298027;-0.2901693;0.0001252815,0.08334569;-0.5826983;0.06595828,0.1001287;-0.6106873;0.005658649,-0.07053208;0.001217561;-0.03773253,-0.09512851;-0.2958147;-0.003573157,-0.09205044;-0.5894196;0.05796254,-0.09099614;-0.6148509;-0.007680472,-0.001003601;0.3992743;0.02346375,56.6298
-0;0;0,0.006172368;0.1995996;0.01104074,0.01532873;0.499414;0.01282973,0.1227779;0.3740564;-0.02365231,0.1864553;0.186693;-0.0526376,0.248044;-0.03590064;-0.1483397,-0.1012528;0.365963;-0.007256093,-0.1596051;0.1753487;0.008906021,-0.1863972;-0.07215594;-0.01397694,0.06922124;0.004005928;-0.03990452,0.09732649;-0.2929134;-0.007516365,0.08482268;-0.5846183;0.06141784,0.09626444;-0.6134046;0.0009049699,-0.07213579;0.003994331;-0.03435799,-0.09323063;-0.2936648;-0.003470588,-0.08883339;-0.5876478;0.05615066,-0.09032103;-0.6154064;-0.006709419,0.01189174;0.3994874;0.01452514,0;0;0,-0.0004324684;0.1994807;0.01439622,-0.001172119;0.4992707;0.02429364,0.1118571;0.3794386;-0.0121593,0.1744081;0.1903515;-0.03041988,0.2424215;-0.03814761;-0.1056682,-0.1120858;0.3624879;-0.003135126,-0.1613042;0.1688325;0.005532095,-0.2002213;-0.07802922;-0.001159157,0.07135932;0.006922811;-0.03549536,0.09298027;-0.2901693;0.0001252815,0.08334569;-0.5826983;0.06595828,0.1001287;-0.6106873;0.005658649,-0.07053208;0.001217561;-0.03773253,-0.09512851;-0.2958147;-0.003573157,-0.09205044;-0.5894196;0.05796254,-0.09099614;-0.6148509;-0.007680472,-0.001003601;0.3992743;0.02346375,56.64132
-0;0;0,0.006835608;0.1995802;0.01100084,0.01646471;0.4993787;0.01284546,0.1234038;0.373759;-0.02425636,0.1882161;0.1876731;-0.05848206,0.2533579;-0.03215089;-0.1581513,-0.1005793;0.3662055;-0.006474337,-0.1593719;0.1757046;0.009426367,-0.1867981;-0.07179359;-0.01276533,0.06905434;0.003847356;-0.04020816,0.09813598;-0.293;-0.008022297,0.08548477;-0.5845776;0.06142167,0.0973354;-0.6134623;0.00111616,-0.07243655;0.004239773;-0.03368933,-0.09289607;-0.2934859;-0.0030162,-0.08748163;-0.5874125;0.0567988,-0.08829622;-0.6161547;-0.004837308,0.01279152;0.3994604;0.01452966,0;0;0,-0.0004152571;0.1994699;0.01454544,-0.001038985;0.4992552;0.02457986,0.1118163;0.3794613;-0.0123436,0.1755151;0.1911498;-0.03428089,0.24423;-0.03637825;-0.1118001,-0.1122662;0.3625251;-0.001798313,-0.161292;0.1687883;0.006110075,-0.199908;-0.07811697;-0.0007154755,0.07129683;0.006864768;-0.03563196,0.0930058;-0.2901975;0.0001839437,0.08278334;-0.5825292;0.06679948,0.1008449;-0.6084393;0.004257932,-0.07061364;0.001287909;-0.03757733,-0.09503313;-0.2957834;-0.003631558,-0.09193426;-0.5894413;0.05765046,-0.0901704;-0.6158358;-0.006853472,-0.0009124711;0.399259;0.02371562,56.66325
-0;0;0,0.006835608;0.1995802;0.01100084,0.01646471;0.4993787;0.01284546,0.1234038;0.373759;-0.02425636,0.1882161;0.1876731;-0.05848206,0.2533579;-0.03215089;-0.1581513,-0.1005793;0.3662055;-0.006474337,-0.1593719;0.1757046;0.009426367,-0.1867981;-0.07179359;-0.01276533,0.06905434;0.003847356;-0.04020816,0.09813598;-0.293;-0.008022297,0.08548477;-0.5845776;0.06142167,0.0973354;-0.6134623;0.00111616,-0.07243655;0.004239773;-0.03368933,-0.09289607;-0.2934859;-0.0030162,-0.08748163;-0.5874125;0.0567988,-0.08829622;-0.6161547;-0.004837308,0.01279152;0.3994604;0.01452966,0;0;0,-0.0004152571;0.1994699;0.01454544,-0.001038985;0.4992552;0.02457986,0.1118163;0.3794613;-0.0123436,0.1755151;0.1911498;-0.03428089,0.24423;-0.03637825;-0.1118001,-0.1122662;0.3625251;-0.001798313,-0.161292;0.1687883;0.006110075,-0.199908;-0.07811697;-0.0007154755,0.07129683;0.006864768;-0.03563196,0.0930058;-0.2901975;0.0001839437,0.08278334;-0.5825292;0.06679948,0.1008449;-0.6084393;0.004257932,-0.07061364;0.001287909;-0.03757733,-0.09503313;-0.2957834;-0.003631558,-0.09193426;-0.5894413;0.05765046,-0.0901704;-0.6158358;-0.006853472,-0.0009124711;0.399259;0.02371562,56.67464
-0;0;0,0.006835608;0.1995802;0.01100084,0.01646471;0.4993787;0.01284546,0.1234038;0.373759;-0.02425636,0.1882161;0.1876731;-0.05848206,0.2533579;-0.03215089;-0.1581513,-0.1005793;0.3662055;-0.006474337,-0.1593719;0.1757046;0.009426367,-0.1867981;-0.07179359;-0.01276533,0.06905434;0.003847356;-0.04020816,0.09813598;-0.293;-0.008022297,0.08548477;-0.5845776;0.06142167,0.0973354;-0.6134623;0.00111616,-0.07243655;0.004239773;-0.03368933,-0.09289607;-0.2934859;-0.0030162,-0.08748163;-0.5874125;0.0567988,-0.08829622;-0.6161547;-0.004837308,0.01279152;0.3994604;0.01452966,0;0;0,-0.0004152571;0.1994699;0.01454544,-0.001038985;0.4992552;0.02457986,0.1118163;0.3794613;-0.0123436,0.1755151;0.1911498;-0.03428089,0.24423;-0.03637825;-0.1118001,-0.1122662;0.3625251;-0.001798313,-0.161292;0.1687883;0.006110075,-0.199908;-0.07811697;-0.0007154755,0.07129683;0.006864768;-0.03563196,0.0930058;-0.2901975;0.0001839437,0.08278334;-0.5825292;0.06679948,0.1008449;-0.6084393;0.004257932,-0.07061364;0.001287909;-0.03757733,-0.09503313;-0.2957834;-0.003631558,-0.09193426;-0.5894413;0.05765046,-0.0901704;-0.6158358;-0.006853472,-0.0009124711;0.399259;0.02371562,56.68618
-0;0;0,0.00706339;0.1995641;0.01114881,0.01692894;0.4993542;0.01319901,0.1234792;0.3737592;-0.02480889,0.1891888;0.188546;-0.06193474,0.257609;-0.02757059;-0.1673496,-0.1003183;0.36637;-0.00598041,-0.1593717;0.1759622;0.0100685,-0.1871758;-0.0715217;-0.01180999,0.06886878;0.00375479;-0.04053384,0.09837025;-0.2930319;-0.008171808,0.08570321;-0.5845171;0.06165617,0.09785634;-0.612725;0.0005347133,-0.07253222;0.004319511;-0.03347266,-0.09273747;-0.2934348;-0.002909468,-0.08725674;-0.587283;0.05728373,-0.08782613;-0.6158956;-0.004520237,0.01315006;0.3994383;0.01478998,0;0;0,-0.0004046493;0.1994604;0.01467526,-0.0009507202;0.4992394;0.02489273,0.1117395;0.3791534;-0.01234183,0.1765919;0.1916855;-0.03783548,0.2452299;-0.03406164;-0.1204616,-0.112311;0.3624487;-0.00100355,-0.1564548;0.16739;0.0008504,-0.1960236;-0.0793234;-0.007324161,0.07123597;0.006850811;-0.03575615,0.09299956;-0.2901885;0.000216119,0.08269631;-0.5826015;0.06646181,0.1009965;-0.608794;0.004334528,-0.07068755;0.001295204;-0.03743785,-0.09487821;-0.2958124;-0.003646221,-0.09191221;-0.589472;0.0576341,-0.09028262;-0.6155037;-0.007300615,-0.0008555666;0.3992437;0.02397248,56.70765
-0;0;0,0.00706339;0.1995641;0.01114881,0.01692894;0.4993542;0.01319901,0.1234792;0.3737592;-0.02480889,0.1891888;0.188546;-0.06193474,0.257609;-0.02757059;-0.1673496,-0.1003183;0.36637;-0.00598041,-0.1593717;0.1759622;0.0100685,-0.1871758;-0.0715217;-0.01180999,0.06886878;0.00375479;-0.04053384,0.09837025;-0.2930319;-0.008171808,0.08570321;-0.5845171;0.06165617,0.09785634;-0.612725;0.0005347133,-0.07253222;0.004319511;-0.03347266,-0.09273747;-0.2934348;-0.002909468,-0.08725674;-0.587283;0.05728373,-0.08782613;-0.6158956;-0.004520237,0.01315006;0.3994383;0.01478998,0;0;0,-0.0004046493;0.1994604;0.01467526,-0.0009507202;0.4992394;0.02489273,0.1117395;0.3791534;-0.01234183,0.1765919;0.1916855;-0.03783548,0.2452299;-0.03406164;-0.1204616,-0.112311;0.3624487;-0.00100355,-0.1564548;0.16739;0.0008504,-0.1960236;-0.0793234;-0.007324161,0.07123597;0.006850811;-0.03575615,0.09299956;-0.2901885;0.000216119,0.08269631;-0.5826015;0.06646181,0.1009965;-0.608794;0.004334528,-0.07068755;0.001295204;-0.03743785,-0.09487821;-0.2958124;-0.003646221,-0.09191221;-0.589472;0.0576341,-0.09028262;-0.6155037;-0.007300615,-0.0008555666;0.3992437;0.02397248,56.71946
-0;0;0,0.007258726;0.1995529;0.01122182,0.01769884;0.4993218;0.01353541,0.1236772;0.3733153;-0.02525281,0.1899818;0.1889923;-0.06561051,0.262265;-0.02285162;-0.1769536,-0.0998847;0.3666133;-0.005564862,-0.1592627;0.176321;0.01065447,-0.1873743;-0.07115991;-0.01086216,0.06881508;0.003653326;-0.04063419,0.09850276;-0.293121;-0.00832912,0.08582592;-0.5845445;0.06175401,0.09804296;-0.6128258;0.0007393509,-0.07264867;0.004483122;-0.03319746,-0.09279119;-0.2933267;-0.003138052,-0.08718452;-0.587155;0.05714056,-0.08810669;-0.6164252;-0.003813419,0.01369388;0.3994131;0.0150283,0;0;0,-0.0004046493;0.1994604;0.01467526,-0.0009507202;0.4992394;0.02489273,0.1117395;0.3791534;-0.01234183,0.1765919;0.1916855;-0.03783548,0.2452299;-0.03406164;-0.1204616,-0.112311;0.3624487;-0.00100355,-0.1564548;0.16739;0.0008504,-0.1960236;-0.0793234;-0.007324161,0.07123597;0.006850811;-0.03575615,0.09299956;-0.2901885;0.000216119,0.08269631;-0.5826015;0.06646181,0.1009965;-0.608794;0.004334528,-0.07068755;0.001295204;-0.03743785,-0.09487821;-0.2958124;-0.003646221,-0.09191221;-0.589472;0.0576341,-0.09028262;-0.6155037;-0.007300615,-0.0008555666;0.3992437;0.02397248,56.74116
-0;0;0,0.007258726;0.1995529;0.01122182,0.01769884;0.4993218;0.01353541,0.1236772;0.3733153;-0.02525281,0.1899818;0.1889923;-0.06561051,0.262265;-0.02285162;-0.1769536,-0.0998847;0.3666133;-0.005564862,-0.1592627;0.176321;0.01065447,-0.1873743;-0.07115991;-0.01086216,0.06881508;0.003653326;-0.04063419,0.09850276;-0.293121;-0.00832912,0.08582592;-0.5845445;0.06175401,0.09804296;-0.6128258;0.0007393509,-0.07264867;0.004483122;-0.03319746,-0.09279119;-0.2933267;-0.003138052,-0.08718452;-0.587155;0.05714056,-0.08810669;-0.6164252;-0.003813419,0.01369388;0.3994131;0.0150283,0;0;0,-0.000421596;0.1994365;0.01499646,-0.0008506915;0.499195;0.02580874,0.1115176;0.3789832;-0.01239517,0.1773566;0.1923327;-0.04114999,0.2477853;-0.03000173;-0.1311899,-0.1123451;0.3624821;-2.023019E-05,-0.1566349;0.1674602;0.002190345,-0.1957801;-0.07931262;-0.006223793,0.07116492;0.006852025;-0.03589713,0.09313092;-0.2901486;0.0002714507,0.08290181;-0.5826131;0.06630078,0.1012057;-0.6089383;0.004337594,-0.07075898;0.001297194;-0.03730259,-0.09495538;-0.2958056;-0.003472678,-0.09176618;-0.589486;0.05769634,-0.09077245;-0.6157402;-0.006989859,-0.0008044403;0.3992013;0.02468562,56.75271
-0;0;0,0.007326305;0.1995495;0.0112387,0.0180754;0.4993067;0.01362792,0.1238122;0.3732436;-0.02556688,0.1912644;0.1903997;-0.0704927,0.2671024;-0.01667653;-0.1882553,-0.09967684;0.3667505;-0.005252271,-0.1593218;0.1765943;0.01157277,-0.1877386;-0.07086354;-0.009807157,0.06873301;0.003598376;-0.04077775,0.09848998;-0.2931681;-0.008463938,0.08583996;-0.5845292;0.06188319,0.09814427;-0.6136966;0.002040707,-0.07269124;0.004510278;-0.03310046,-0.09288692;-0.2933588;-0.003670355,-0.08733835;-0.587099;0.05704151,-0.08831209;-0.6172252;-0.002781954,0.01398714;0.3994012;0.01510533,0;0;0,-0.000421596;0.1994365;0.01499646,-0.0008506915;0.499195;0.02580874,0.1115176;0.3789832;-0.01239517,0.1773566;0.1923327;-0.04114999,0.2477853;-0.03000173;-0.1311899,-0.1123451;0.3624821;-2.023019E-05,-0.1566349;0.1674602;0.002190345,-0.1957801;-0.07931262;-0.006223793,0.07116492;0.006852025;-0.03589713,0.09313092;-0.2901486;0.0002714507,0.08290181;-0.5826131;0.06630078,0.1012057;-0.6089383;0.004337594,-0.07075898;0.001297194;-0.03730259,-0.09495538;-0.2958056;-0.003472678,-0.09176618;-0.589486;0.05769634,-0.09077245;-0.6157402;-0.006989859,-0.0008044403;0.3992013;0.02468562,56.7637
-0;0;0,0.007326305;0.1995495;0.0112387,0.0180754;0.4993067;0.01362792,0.1238122;0.3732436;-0.02556688,0.1912644;0.1903997;-0.0704927,0.2671024;-0.01667653;-0.1882553,-0.09967684;0.3667505;-0.005252271,-0.1593218;0.1765943;0.01157277,-0.1877386;-0.07086354;-0.009807157,0.06873301;0.003598376;-0.04077775,0.09848998;-0.2931681;-0.008463938,0.08583996;-0.5845292;0.06188319,0.09814427;-0.6136966;0.002040707,-0.07269124;0.004510278;-0.03310046,-0.09288692;-0.2933588;-0.003670355,-0.08733835;-0.587099;0.05704151,-0.08831209;-0.6172252;-0.002781954,0.01398714;0.3994012;0.01510533,0;0;0,-0.000421596;0.1994365;0.01499646,-0.0008506915;0.499195;0.02580874,0.1115176;0.3789832;-0.01239517,0.1773566;0.1923327;-0.04114999,0.2477853;-0.03000173;-0.1311899,-0.1123451;0.3624821;-2.023019E-05,-0.1566349;0.1674602;0.002190345,-0.1957801;-0.07931262;-0.006223793,0.07116492;0.006852025;-0.03589713,0.09313092;-0.2901486;0.0002714507,0.08290181;-0.5826131;0.06630078,0.1012057;-0.6089383;0.004337594,-0.07075898;0.001297194;-0.03730259,-0.09495538;-0.2958056;-0.003472678,-0.09176618;-0.589486;0.05769634,-0.09077245;-0.6157402;-0.006989859,-0.0008044403;0.3992013;0.02468562,56.78887
-0;0;0,0.007363789;0.1995446;0.01130189,0.01822167;0.4992966;0.01379158,0.1237056;0.3731049;-0.02596258,0.1919506;0.1913546;-0.07401943,0.2698807;-0.01200506;-0.1967865,-0.0997211;0.3669188;-0.00442972,-0.1598522;0.1769843;0.0131525,-0.1884706;-0.07049119;-0.007748736,0.06845178;0.003560369;-0.04125138,0.09808385;-0.2931688;-0.008483544,0.08542929;-0.5844951;0.06200662,0.09798071;-0.6132633;0.001690544,-0.07278825;0.004519843;-0.03288528,-0.09308559;-0.2933384;-0.003415568,-0.08740231;-0.5871496;0.05693933,-0.08849325;-0.6174288;-0.00267661,0.01411307;0.3993917;0.01525003,0;0;0,-0.0005431796;0.1994144;0.01528417,-0.001041174;0.4991638;0.02632205,0.1112186;0.37903;-0.01237207,0.1776309;0.1929935;-0.04367441,0.2493312;-0.02656987;-0.1393353,-0.1125722;0.3624592;0.000690924,-0.156994;0.167468;0.002953176,-0.1961322;-0.07931294;-0.005255452,0.07104768;0.006809601;-0.03613664,0.09329591;-0.2901399;0.0002778023,0.08315463;-0.5826491;0.06612259,0.1013543;-0.6090053;0.004166938,-0.07098142;0.001330867;-0.03687637,-0.0948323;-0.2958548;-0.003532566,-0.0914015;-0.5895495;0.0575546,-0.09036185;-0.6154168;-0.007584319,-0.0009730746;0.3991708;0.02514282,56.80815
-0;0;0,0.007399949;0.1995385;0.0113863,0.01849633;0.4992803;0.01407863,0.1237093;0.3729942;-0.02624004,0.193376;0.1927232;-0.07770765,0.2734361;-0.004930928;-0.2081807,-0.0997142;0.3673354;-0.00372224,-0.1598425;0.1773852;0.01370012,-0.1885986;-0.07006635;-0.00729528,0.06835438;0.003517932;-0.04141622,0.09786795;-0.2931939;-0.008385375,0.08529202;-0.584595;0.06180908,0.09729161;-0.6130748;0.001006737,-0.07286024;0.004525846;-0.03272463,-0.09327219;-0.2933055;-0.003062626,-0.08718935;-0.5871693;0.05699611,-0.08839326;-0.6170923;-0.00309442,0.01432615;0.3993769;0.01546469,0;0;0,-0.0005431796;0.1994144;0.01528417,-0.001041174;0.4991638;0.02632205,0.1112186;0.37903;-0.01237207,0.1776309;0.1929935;-0.04367441,0.2493312;-0.02656987;-0.1393353,-0.1125722;0.3624592;0.000690924,-0.156994;0.167468;0.002953176,-0.1961322;-0.07931294;-0.005255452,0.07104768;0.006809601;-0.03613664,0.09329591;-0.2901399;0.0002778023,0.08315463;-0.5826491;0.06612259,0.1013543;-0.6090053;0.004166938,-0.07098142;0.001330867;-0.03687637,-0.0948323;-0.2958548;-0.003532566,-0.0914015;-0.5895495;0.0575546,-0.09036185;-0.6154168;-0.007584319,-0.0009730746;0.3991708;0.02514282,56.83057
-0;0;0,0.007399949;0.1995385;0.0113863,0.01849633;0.4992803;0.01407863,0.1237093;0.3729942;-0.02624004,0.193376;0.1927232;-0.07770765,0.2734361;-0.004930928;-0.2081807,-0.0997142;0.3673354;-0.00372224,-0.1598425;0.1773852;0.01370012,-0.1885986;-0.07006635;-0.00729528,0.06835438;0.003517932;-0.04141622,0.09786795;-0.2931939;-0.008385375,0.08529202;-0.584595;0.06180908,0.09729161;-0.6130748;0.001006737,-0.07286024;0.004525846;-0.03272463,-0.09327219;-0.2933055;-0.003062626,-0.08718935;-0.5871693;0.05699611,-0.08839326;-0.6170923;-0.00309442,0.01432615;0.3993769;0.01546469,0;0;0,-0.0006160144;0.1993985;0.01548784,-0.00116986;0.499139;0.02675544,0.1109677;0.37893;-0.012386,0.1780065;0.1937209;-0.04707583,0.2501952;-0.0223075;-0.1501317,-0.1126694;0.3622224;0.001319868,-0.1569157;0.1671921;0.003652495,-0.1959585;-0.07961218;-0.004305663,0.0709902;0.006798957;-0.03625143,0.09349584;-0.2901266;0.0002006739,0.08338274;-0.5826299;0.06607562,0.1014876;-0.6096647;0.004937585,-0.07101513;0.001331403;-0.0368114,-0.09465373;-0.2958703;-0.003459349,-0.09124584;-0.5895903;0.05750749,-0.08972037;-0.6153646;-0.007730007,-0.001082991;0.3991468;0.02550768,56.84194
-0;0;0,0.007399949;0.1995385;0.0113863,0.01849633;0.4992803;0.01407863,0.1237093;0.3729942;-0.02624004,0.193376;0.1927232;-0.07770765,0.2734361;-0.004930928;-0.2081807,-0.0997142;0.3673354;-0.00372224,-0.1598425;0.1773852;0.01370012,-0.1885986;-0.07006635;-0.00729528,0.06835438;0.003517932;-0.04141622,0.09786795;-0.2931939;-0.008385375,0.08529202;-0.584595;0.06180908,0.09729161;-0.6130748;0.001006737,-0.07286024;0.004525846;-0.03272463,-0.09327219;-0.2933055;-0.003062626,-0.08718935;-0.5871693;0.05699611,-0.08839326;-0.6170923;-0.00309442,0.01432615;0.3993769;0.01546469,0;0;0,-0.0006160144;0.1993985;0.01548784,-0.00116986;0.499139;0.02675544,0.1109677;0.37893;-0.012386,0.1780065;0.1937209;-0.04707583,0.2501952;-0.0223075;-0.1501317,-0.1126694;0.3622224;0.001319868,-0.1569157;0.1671921;0.003652495,-0.1959585;-0.07961218;-0.004305663,0.0709902;0.006798957;-0.03625143,0.09349584;-0.2901266;0.0002006739,0.08338274;-0.5826299;0.06607562,0.1014876;-0.6096647;0.004937585,-0.07101513;0.001331403;-0.0368114,-0.09465373;-0.2958703;-0.003459349,-0.09124584;-0.5895903;0.05750749,-0.08972037;-0.6153646;-0.007730007,-0.001082991;0.3991468;0.02550768,56.85337
-0;0;0,0.007423006;0.1995373;0.01139228,0.01856807;0.4992762;0.01415865,0.1236147;0.3731676;-0.02675811,0.1944796;0.1941857;-0.08101352,0.2764107;0.001833171;-0.2180821,-0.09978727;0.3676361;-0.003181252,-0.1591469;0.1773893;0.01362983,-0.188934;-0.07001898;-0.006417113,0.06829342;0.003549248;-0.041514,0.09766264;-0.2932033;-0.008721035,0.08514342;-0.584527;0.06180406,0.09701589;-0.6131494;0.001161128,-0.07292591;0.004536485;-0.03257654,-0.09350577;-0.2932491;-0.002573127,-0.08720447;-0.5871847;0.0571111,-0.09536435;-0.5547196;-0.0410008,0.01441608;0.399372;0.01553845,0;0;0,-0.0006160144;0.1993985;0.01548784,-0.00116986;0.499139;0.02675544,0.1109677;0.37893;-0.012386,0.1780065;0.1937209;-0.04707583,0.2501952;-0.0223075;-0.1501317,-0.1126694;0.3622224;0.001319868,-0.1569157;0.1671921;0.003652495,-0.1959585;-0.07961218;-0.004305663,0.0709902;0.006798957;-0.03625143,0.09349584;-0.2901266;0.0002006739,0.08338274;-0.5826299;0.06607562,0.1014876;-0.6096647;0.004937585,-0.07101513;0.001331403;-0.0368114,-0.09465373;-0.2958703;-0.003459349,-0.09124584;-0.5895903;0.05750749,-0.08972037;-0.6153646;-0.007730007,-0.001082991;0.3991468;0.02550768,56.87512
-0;0;0,0.007423006;0.1995373;0.01139228,0.01856807;0.4992762;0.01415865,0.1236147;0.3731676;-0.02675811,0.1944796;0.1941857;-0.08101352,0.2764107;0.001833171;-0.2180821,-0.09978727;0.3676361;-0.003181252,-0.1591469;0.1773893;0.01362983,-0.188934;-0.07001898;-0.006417113,0.06829342;0.003549248;-0.041514,0.09766264;-0.2932033;-0.008721035,0.08514342;-0.584527;0.06180406,0.09701589;-0.6131494;0.001161128,-0.07292591;0.004536485;-0.03257654,-0.09350577;-0.2932491;-0.002573127,-0.08720447;-0.5871847;0.0571111,-0.09536435;-0.5547196;-0.0410008,0.01441608;0.399372;0.01553845,0;0;0,-0.0006160144;0.1993985;0.01548784,-0.00116986;0.499139;0.02675544,0.1109677;0.37893;-0.012386,0.1780065;0.1937209;-0.04707583,0.2501952;-0.0223075;-0.1501317,-0.1126694;0.3622224;0.001319868,-0.1569157;0.1671921;0.003652495,-0.1959585;-0.07961218;-0.004305663,0.0709902;0.006798957;-0.03625143,0.09349584;-0.2901266;0.0002006739,0.08338274;-0.5826299;0.06607562,0.1014876;-0.6096647;0.004937585,-0.07101513;0.001331403;-0.0368114,-0.09465373;-0.2958703;-0.003459349,-0.09124584;-0.5895903;0.05750749,-0.08972037;-0.6153646;-0.007730007,-0.001082991;0.3991468;0.02550768,56.88684
-0;0;0,0.007508486;0.1995348;0.0113797,0.0189331;0.4992621;0.01422833,0.123769;0.3729221;-0.02696554,0.1961505;0.1956877;-0.08483519,0.2784313;0.008278787;-0.2283893,-0.09957967;0.367808;-0.002778385,-0.1591206;0.1776821;0.01474398,-0.1889541;-0.06982331;-0.003991682,0.068251;0.003475523;-0.04158992,0.09751511;-0.293265;-0.008594804,0.08503151;-0.5845644;0.0620368,0.09612677;-0.6120654;-0.0001764335,-0.07297378;0.004576247;-0.0324636,-0.09379411;-0.2931651;-0.002187403,-0.08713838;-0.587146;0.05723385,-0.09546335;-0.5546744;-0.04086535,0.01473044;0.3993598;0.01559774,0;0;0,-0.0006693653;0.1993784;0.01574155,-0.001276704;0.4991067;0.02731873,0.110673;0.3787909;-0.01247113,0.1784877;0.1945227;-0.05050287,0.2525965;-0.01763083;-0.1600417,-0.1130596;0.3627924;0.002284829,-0.1572971;0.1677577;0.004408964,-0.1959656;-0.07911801;-0.003148698,0.07090149;0.00676614;-0.03643072,0.09342154;-0.2901498;8.995458E-05,0.08325393;-0.5826814;0.06583148,0.1021153;-0.6100322;0.005324502,-0.07122563;0.00137955;-0.03640064,-0.0949799;-0.2958766;-0.003620453,-0.0913553;-0.5895928;0.05735207,-0.08986621;-0.6152471;-0.008025393,-0.001169607;0.3991158;0.02597531,56.90886
-0;0;0,0.007508486;0.1995348;0.0113797,0.0189331;0.4992621;0.01422833,0.123769;0.3729221;-0.02696554,0.1961505;0.1956877;-0.08483519,0.2784313;0.008278787;-0.2283893,-0.09957967;0.367808;-0.002778385,-0.1591206;0.1776821;0.01474398,-0.1889541;-0.06982331;-0.003991682,0.068251;0.003475523;-0.04158992,0.09751511;-0.293265;-0.008594804,0.08503151;-0.5845644;0.0620368,0.09612677;-0.6120654;-0.0001764335,-0.07297378;0.004576247;-0.0324636,-0.09379411;-0.2931651;-0.002187403,-0.08713838;-0.587146;0.05723385,-0.09546335;-0.5546744;-0.04086535,0.01473044;0.3993598;0.01559774,0;0;0,-0.0006693653;0.1993784;0.01574155,-0.001276704;0.4991067;0.02731873,0.110673;0.3787909;-0.01247113,0.1784877;0.1945227;-0.05050287,0.2525965;-0.01763083;-0.1600417,-0.1130596;0.3627924;0.002284829,-0.1572971;0.1677577;0.004408964,-0.1959656;-0.07911801;-0.003148698,0.07090149;0.00676614;-0.03643072,0.09342154;-0.2901498;8.995458E-05,0.08325393;-0.5826814;0.06583148,0.1021153;-0.6100322;0.005324502,-0.07122563;0.00137955;-0.03640064,-0.0949799;-0.2958766;-0.003620453,-0.0913553;-0.5895928;0.05735207,-0.08986621;-0.6152471;-0.008025393,-0.001169607;0.3991158;0.02597531,56.92042
-0;0;0,0.00747766;0.199531;0.01146574,0.01892336;0.4992554;0.0145003,0.1236131;0.3728752;-0.02714446,0.1970105;0.1972302;-0.088477,0.2793913;0.01293567;-0.2359522,-0.09956887;0.3676815;-0.00235354,-0.1593175;0.1776426;0.01540314,-0.1892317;-0.06987467;-0.003045304,0.0680493;0.003486767;-0.0419182,0.09696884;-0.2932252;-0.008367218,0.08449254;-0.584498;0.06237518,0.09611874;-0.6124527;0.0008293316,-0.07311021;0.004579373;-0.03215472,-0.09425898;-0.2931277;-0.001770005,-0.08705893;-0.5870998;0.0576318,-0.09561758;-0.5546152;-0.04044959,0.01474105;0.3993517;0.01581909,0;0;0,-0.0006693653;0.1993784;0.01574155,-0.001276704;0.4991067;0.02731873,0.110673;0.3787909;-0.01247113,0.1784877;0.1945227;-0.05050287,0.2525965;-0.01763083;-0.1600417,-0.1130596;0.3627924;0.002284829,-0.1572971;0.1677577;0.004408964,-0.1959656;-0.07911801;-0.003148698,0.07090149;0.00676614;-0.03643072,0.09342154;-0.2901498;8.995458E-05,0.08325393;-0.5826814;0.06583148,0.1021153;-0.6100322;0.005324502,-0.07122563;0.00137955;-0.03640064,-0.0949799;-0.2958766;-0.003620453,-0.0913553;-0.5895928;0.05735207,-0.08986621;-0.6152471;-0.008025393,-0.001169607;0.3991158;0.02597531,56.94223
-0;0;0,0.007478207;0.199526;0.01155164,0.01901617;0.4992447;0.01474393,0.123619;0.3731211;-0.0272948,0.1994686;0.200186;-0.09317559,0.2803297;0.01920094;-0.2455104,-0.09959193;0.3679217;-0.001876634,-0.1597534;0.1780768;0.01654901,-0.1933857;-0.06917761;0.001247991,0.06794277;0.003541681;-0.04208607,0.09656431;-0.2931535;-0.008133169,0.08401897;-0.5844236;0.06260824,0.09603313;-0.6123462;0.001096208,-0.07325695;0.004528143;-0.03182632,-0.09460886;-0.2931769;-0.001564218,-0.08773156;-0.5871625;0.05780928,-0.09646302;-0.554679;-0.04025668,0.01482887;0.3993407;0.01603235,0;0;0,-0.0006286902;0.1993723;0.01582028,-0.001151282;0.4991006;0.0273954,0.1105696;0.3784983;-0.01282009,0.1791929;0.1952581;-0.05421903,0.2540374;-0.01308908;-0.1703644,-0.1130819;0.3629072;0.002763128,-0.1575331;0.1679248;0.005203704,-0.1960335;-0.07896324;-0.002797012,0.07084782;0.006769939;-0.03653429,0.09333423;-0.2901327;0.0001153536,0.08329193;-0.5827597;0.06544985,0.1021882;-0.6102557;0.00513969,-0.07122583;0.00135068;-0.03640134,-0.09485503;-0.2959455;-0.003894769,-0.09150815;-0.5896765;0.05702218,-0.08979729;-0.6158203;-0.007778957,-0.00107022;0.3991095;0.0260608,56.96476
-0;0;0,0.007478207;0.199526;0.01155164,0.01901617;0.4992447;0.01474393,0.123619;0.3731211;-0.0272948,0.1994686;0.200186;-0.09317559,0.2803297;0.01920094;-0.2455104,-0.09959193;0.3679217;-0.001876634,-0.1597534;0.1780768;0.01654901,-0.1933857;-0.06917761;0.001247991,0.06794277;0.003541681;-0.04208607,0.09656431;-0.2931535;-0.008133169,0.08401897;-0.5844236;0.06260824,0.09603313;-0.6123462;0.001096208,-0.07325695;0.004528143;-0.03182632,-0.09460886;-0.2931769;-0.001564218,-0.08773156;-0.5871625;0.05780928,-0.09646302;-0.554679;-0.04025668,0.01482887;0.3993407;0.01603235,0;0;0,-0.0006286902;0.1993723;0.01582028,-0.001151282;0.4991006;0.0273954,0.1105696;0.3784983;-0.01282009,0.1791929;0.1952581;-0.05421903,0.2540374;-0.01308908;-0.1703644,-0.1130819;0.3629072;0.002763128,-0.1575331;0.1679248;0.005203704,-0.1960335;-0.07896324;-0.002797012,0.07084782;0.006769939;-0.03653429,0.09333423;-0.2901327;0.0001153536,0.08329193;-0.5827597;0.06544985,0.1021882;-0.6102557;0.00513969,-0.07122583;0.00135068;-0.03640134,-0.09485503;-0.2959455;-0.003894769,-0.09150815;-0.5896765;0.05702218,-0.08979729;-0.6158203;-0.007778957,-0.00107022;0.3991095;0.0260608,56.97587
-0;0;0,0.007478207;0.199526;0.01155164,0.01901617;0.4992447;0.01474393,0.123619;0.3731211;-0.0272948,0.1994686;0.200186;-0.09317559,0.2803297;0.01920094;-0.2455104,-0.09959193;0.3679217;-0.001876634,-0.1597534;0.1780768;0.01654901,-0.1933857;-0.06917761;0.001247991,0.06794277;0.003541681;-0.04208607,0.09656431;-0.2931535;-0.008133169,0.08401897;-0.5844236;0.06260824,0.09603313;-0.6123462;0.001096208,-0.07325695;0.004528143;-0.03182632,-0.09460886;-0.2931769;-0.001564218,-0.08773156;-0.5871625;0.05780928,-0.09646302;-0.554679;-0.04025668,0.01482887;0.3993407;0.01603235,0;0;0,-0.0006486141;0.1993599;0.01597478,-0.001172449;0.4990807;0.02773675,0.1102913;0.3779071;-0.0129672,0.1797791;0.1958578;-0.05801723,0.25551;-0.009255826;-0.1792328,-0.1131058;0.3628262;0.003159637,-0.1575204;0.1678372;0.00573743,-0.195814;-0.0790724;-0.002584658,0.07074778;0.006766726;-0.03672824,0.09311282;-0.2901094;0.0002088398,0.08340517;-0.5828885;0.0649095,0.1023285;-0.6107377;0.005064607,-0.07134952;0.001344615;-0.0361585,-0.09519362;-0.2959465;-0.003762953,-0.09126817;-0.5897568;0.05673544,-0.08962271;-0.6150618;-0.009040419,-0.001090609;0.3990905;0.02634352,56.98714
-0;0;0,0.007496533;0.1995245;0.01156557,0.01905222;0.4992413;0.01482904,0.1235111;0.3732812;-0.02771848,0.2003583;0.2020478;-0.09680994,0.2812974;0.02661407;-0.2554663,-0.09964184;0.3680403;-0.001354545,-0.1598781;0.1781941;0.01681194,-0.1906896;-0.06954409;0.003529068,0.06783462;0.003525305;-0.04226152,0.09636969;-0.2931516;-0.008077171,0.08379185;-0.584403;0.06273523,0.09655883;-0.6127266;0.001887694,-0.07334246;0.004589004;-0.03162001,-0.09472099;-0.2931115;-0.001331564,-0.08788939;-0.5870721;0.05817046,-0.0969273;-0.5545776;-0.03986971,0.01488156;0.3993365;0.01610789,0;0;0,-0.0006486141;0.1993599;0.01597478,-0.001172449;0.4990807;0.02773675,0.1102913;0.3779071;-0.0129672,0.1797791;0.1958578;-0.05801723,0.25551;-0.009255826;-0.1792328,-0.1131058;0.3628262;0.003159637,-0.1575204;0.1678372;0.00573743,-0.195814;-0.0790724;-0.002584658,0.07074778;0.006766726;-0.03672824,0.09311282;-0.2901094;0.0002088398,0.08340517;-0.5828885;0.0649095,0.1023285;-0.6107377;0.005064607,-0.07134952;0.001344615;-0.0361585,-0.09519362;-0.2959465;-0.003762953,-0.09126817;-0.5897568;0.05673544,-0.08962271;-0.6150618;-0.009040419,-0.001090609;0.3990905;0.02634352,57.00959
-0;0;0,0.007496533;0.1995245;0.01156557,0.01905222;0.4992413;0.01482904,0.1235111;0.3732812;-0.02771848,0.2003583;0.2020478;-0.09680994,0.2812974;0.02661407;-0.2554663,-0.09964184;0.3680403;-0.001354545,-0.1598781;0.1781941;0.01681194,-0.1906896;-0.06954409;0.003529068,0.06783462;0.003525305;-0.04226152,0.09636969;-0.2931516;-0.008077171,0.08379185;-0.584403;0.06273523,0.09655883;-0.6127266;0.001887694,-0.07334246;0.004589004;-0.03162001,-0.09472099;-0.2931115;-0.001331564,-0.08788939;-0.5870721;0.05817046,-0.0969273;-0.5545776;-0.03986971,0.01488156;0.3993365;0.01610789,0;0;0,-0.0006486141;0.1993599;0.01597478,-0.001172449;0.4990807;0.02773675,0.1102913;0.3779071;-0.0129672,0.1797791;0.1958578;-0.05801723,0.25551;-0.009255826;-0.1792328,-0.1131058;0.3628262;0.003159637,-0.1575204;0.1678372;0.00573743,-0.195814;-0.0790724;-0.002584658,0.07074778;0.006766726;-0.03672824,0.09311282;-0.2901094;0.0002088398,0.08340517;-0.5828885;0.0649095,0.1023285;-0.6107377;0.005064607,-0.07134952;0.001344615;-0.0361585,-0.09519362;-0.2959465;-0.003762953,-0.09126817;-0.5897568;0.05673544,-0.08962271;-0.6150618;-0.009040419,-0.001090609;0.3990905;0.02634352,57.02099
-0;0;0,0.007505822;0.1995208;0.01162339,0.0190578;0.4992362;0.01497607,0.1234128;0.3735042;-0.02800453,0.2013141;0.2038936;-0.09986293,0.2814798;0.03304474;-0.2638268,-0.09981675;0.3683438;-0.0004914831,-0.1600838;0.1784475;0.01703802,-0.1906937;-0.06932014;0.003838848,0.06760878;0.003604613;-0.04261525,0.0961911;-0.2930366;-0.008161083,0.08362974;-0.5843301;0.0624807,0.09577861;-0.6126404;0.001489714,-0.07346452;0.004583639;-0.03133616,-0.09459306;-0.293183;-0.001526672,-0.08828539;-0.5871199;0.05815022,-0.09768829;-0.5546164;-0.03985722,0.01489933;0.3993308;0.01624256,0;0;0,-0.0006486141;0.1993599;0.01597478,-0.001172449;0.4990807;0.02773675,0.1102913;0.3779071;-0.0129672,0.1797791;0.1958578;-0.05801723,0.25551;-0.009255826;-0.1792328,-0.1131058;0.3628262;0.003159637,-0.1575204;0.1678372;0.00573743,-0.195814;-0.0790724;-0.002584658,0.07074778;0.006766726;-0.03672824,0.09311282;-0.2901094;0.0002088398,0.08340517;-0.5828885;0.0649095,0.1023285;-0.6107377;0.005064607,-0.07134952;0.001344615;-0.0361585,-0.09519362;-0.2959465;-0.003762953,-0.09126817;-0.5897568;0.05673544,-0.08962271;-0.6150618;-0.009040419,-0.001090609;0.3990905;0.02634352,57.03336
-0;0;0,0.007505822;0.1995208;0.01162339,0.0190578;0.4992362;0.01497607,0.1234128;0.3735042;-0.02800453,0.2013141;0.2038936;-0.09986293,0.2814798;0.03304474;-0.2638268,-0.09981675;0.3683438;-0.0004914831,-0.1600838;0.1784475;0.01703802,-0.1906937;-0.06932014;0.003838848,0.06760878;0.003604613;-0.04261525,0.0961911;-0.2930366;-0.008161083,0.08362974;-0.5843301;0.0624807,0.09577861;-0.6126404;0.001489714,-0.07346452;0.004583639;-0.03133616,-0.09459306;-0.293183;-0.001526672,-0.08828539;-0.5871199;0.05815022,-0.09768829;-0.5546164;-0.03985722,0.01489933;0.3993308;0.01624256,0;0;0,-0.0005475381;0.1993436;0.01618152,-0.0007904657;0.4990497;0.02832748,0.1102208;0.377047;-0.01303425,0.1806945;0.1962849;-0.06159914,0.2570339;-0.005056351;-0.1886187,-0.1127809;0.3625823;0.003717111,-0.1625881;0.1691297;0.01348147,-0.1995101;-0.07804449;0.007024829,0.07067734;0.006803694;-0.03685678,0.09273744;-0.2900335;0.0005736947,0.08318424;-0.5829096;0.06485715,0.1023088;-0.6108548;0.005201504,-0.07141157;0.001295268;-0.03603761,-0.09517911;-0.2960453;-0.004042562,-0.0912804;-0.5898538;0.05646727,-0.08894619;-0.6154676;-0.008932259,-0.0008141245;0.3990614;0.02679788,57.05412
-0;0;0,0.007557905;0.1995141;0.01170489,0.01916988;0.4992242;0.01523759,0.1233411;0.3735167;-0.02824085,0.2018565;0.2054925;-0.1030953,0.281275;0.03920543;-0.2720371,-0.09978195;0.3682325;0.0004708171,-0.1596151;0.1781857;0.01785398,-0.1899738;-0.06956103;0.003714731,0.0673542;0.003605069;-0.04301645,0.09573831;-0.2929656;-0.007800065,0.08312041;-0.5842109;0.06303054,0.09529766;-0.6123975;0.001886707,-0.07368124;0.004588514;-0.03082241,-0.09461275;-0.2932135;-0.001227867,-0.08862321;-0.5871297;0.05858378,-0.09837654;-0.554607;-0.03939281,0.01501214;0.3993183;0.0164706,0;0;0,-0.0005475381;0.1993436;0.01618152,-0.0007904657;0.4990497;0.02832748,0.1102208;0.377047;-0.01303425,0.1806945;0.1962849;-0.06159914,0.2570339;-0.005056351;-0.1886187,-0.1127809;0.3625823;0.003717111,-0.1625881;0.1691297;0.01348147,-0.1995101;-0.07804449;0.007024829,0.07067734;0.006803694;-0.03685678,0.09273744;-0.2900335;0.0005736947,0.08318424;-0.5829096;0.06485715,0.1023088;-0.6108548;0.005201504,-0.07141157;0.001295268;-0.03603761,-0.09517911;-0.2960453;-0.004042562,-0.0912804;-0.5898538;0.05646727,-0.08894619;-0.6154676;-0.008932259,-0.0008141245;0.3990614;0.02679788,57.06524
-0;0;0,0.007557905;0.1995141;0.01170489,0.01916988;0.4992242;0.01523759,0.1233411;0.3735167;-0.02824085,0.2018565;0.2054925;-0.1030953,0.281275;0.03920543;-0.2720371,-0.09978195;0.3682325;0.0004708171,-0.1596151;0.1781857;0.01785398,-0.1899738;-0.06956103;0.003714731,0.0673542;0.003605069;-0.04301645,0.09573831;-0.2929656;-0.007800065,0.08312041;-0.5842109;0.06303054,0.09529766;-0.6123975;0.001886707,-0.07368124;0.004588514;-0.03082241,-0.09461275;-0.2932135;-0.001227867,-0.08862321;-0.5871297;0.05858378,-0.09837654;-0.554607;-0.03939281,0.01501214;0.3993183;0.0164706,0;0;0,-0.0005212235;0.1993296;0.01635378,-0.0007092783;0.4990276;0.02869469,0.1100788;0.376605;-0.0130676,0.1821132;0.1977073;-0.06604535,0.2574093;0.000593558;-0.2001225,-0.1126765;0.3625709;0.003819577,-0.1627356;0.1692004;0.01391598,-0.1996414;-0.07800338;0.008602146,0.07060791;0.006759356;-0.03699777,0.09249267;-0.2900779;0.0005354472,0.08315431;-0.5829469;0.06488235,0.1021555;-0.6103638;0.004503783,-0.07151955;0.001397683;-0.03581898,-0.09526192;-0.2959646;-0.004007295,-0.09150099;-0.5898344;0.0562124,-0.08946478;-0.6158773;-0.008697785,-0.00074898;0.3990403;0.02710521,57.07642
-0;0;0,0.007557905;0.1995141;0.01170489,0.01916988;0.4992242;0.01523759,0.1233411;0.3735167;-0.02824085,0.2018565;0.2054925;-0.1030953,0.281275;0.03920543;-0.2720371,-0.09978195;0.3682325;0.0004708171,-0.1596151;0.1781857;0.01785398,-0.1899738;-0.06956103;0.003714731,0.0673542;0.003605069;-0.04301645,0.09573831;-0.2929656;-0.007800065,0.08312041;-0.5842109;0.06303054,0.09529766;-0.6123975;0.001886707,-0.07368124;0.004588514;-0.03082241,-0.09461275;-0.2932135;-0.001227867,-0.08862321;-0.5871297;0.05858378,-0.09837654;-0.554607;-0.03939281,0.01501214;0.3993183;0.0164706,0;0;0,-0.0005212235;0.1993296;0.01635378,-0.0007092783;0.4990276;0.02869469,0.1100788;0.376605;-0.0130676,0.1821132;0.1977073;-0.06604535,0.2574093;0.000593558;-0.2001225,-0.1126765;0.3625709;0.003819577,-0.1627356;0.1692004;0.01391598,-0.1996414;-0.07800338;0.008602146,0.07060791;0.006759356;-0.03699777,0.09249267;-0.2900779;0.0005354472,0.08315431;-0.5829469;0.06488235,0.1021555;-0.6103638;0.004503783,-0.07151955;0.001397683;-0.03581898,-0.09526192;-0.2959646;-0.004007295,-0.09150099;-0.5898344;0.0562124,-0.08946478;-0.6158773;-0.008697785,-0.00074898;0.3990403;0.02710521,57.08813
-0;0;0,0.007602287;0.199512;0.01171157,0.01927535;0.4992185;0.01530628,0.1231544;0.3734082;-0.02879464,0.2037329;0.2090406;-0.1093576,0.2809158;0.04395865;-0.2805031,-0.09975745;0.3683414;0.0008275639,-0.1592778;0.1781938;0.01818318,-0.1889505;-0.06959538;0.003349052,0.06720139;0.003602268;-0.04325502,0.09560401;-0.2929516;-0.007911947,0.08299473;-0.5841301;0.06319411,0.09467044;-0.6130111;0.002849508,-0.0737619;0.004581864;-0.03062988,-0.09457842;-0.2932326;-0.00108015,-0.0887132;-0.5871564;0.05870612,-0.09876493;-0.5546255;-0.03924181,0.01510775;0.3993129;0.01653595,0;0;0,-0.0005212235;0.1993296;0.01635378,-0.0007092783;0.4990276;0.02869469,0.1100788;0.376605;-0.0130676,0.1821132;0.1977073;-0.06604535,0.2574093;0.000593558;-0.2001225,-0.1126765;0.3625709;0.003819577,-0.1627356;0.1692004;0.01391598,-0.1996414;-0.07800338;0.008602146,0.07060791;0.006759356;-0.03699777,0.09249267;-0.2900779;0.0005354472,0.08315431;-0.5829469;0.06488235,0.1021555;-0.6103638;0.004503783,-0.07151955;0.001397683;-0.03581898,-0.09526192;-0.2959646;-0.004007295,-0.09150099;-0.5898344;0.0562124,-0.08946478;-0.6158773;-0.008697785,-0.00074898;0.3990403;0.02710521,57.10982
-0;0;0,0.007602287;0.199512;0.01171157,0.01927535;0.4992185;0.01530628,0.1231544;0.3734082;-0.02879464,0.2037329;0.2090406;-0.1093576,0.2809158;0.04395865;-0.2805031,-0.09975745;0.3683414;0.0008275639,-0.1592778;0.1781938;0.01818318,-0.1889505;-0.06959538;0.003349052,0.06720139;0.003602268;-0.04325502,0.09560401;-0.2929516;-0.007911947,0.08299473;-0.5841301;0.06319411,0.09467044;-0.6130111;0.002849508,-0.0737619;0.004581864;-0.03062988,-0.09457842;-0.2932326;-0.00108015,-0.0887132;-0.5871564;0.05870612,-0.09876493;-0.5546255;-0.03924181,0.01510775;0.3993129;0.01653595,0;0;0,-0.0005212235;0.1993296;0.01635378,-0.0007092783;0.4990276;0.02869469,0.1100788;0.376605;-0.0130676,0.1821132;0.1977073;-0.06604535,0.2574093;0.000593558;-0.2001225,-0.1126765;0.3625709;0.003819577,-0.1627356;0.1692004;0.01391598,-0.1996414;-0.07800338;0.008602146,0.07060791;0.006759356;-0.03699777,0.09249267;-0.2900779;0.0005354472,0.08315431;-0.5829469;0.06488235,0.1021555;-0.6103638;0.004503783,-0.07151955;0.001397683;-0.03581898,-0.09526192;-0.2959646;-0.004007295,-0.09150099;-0.5898344;0.0562124,-0.08946478;-0.6158773;-0.008697785,-0.00074898;0.3990403;0.02710521,57.12176
-0;0;0,0.007777617;0.1995061;0.0116967,0.01975778;0.4992003;0.01522347,0.1243569;0.3742848;-0.02729261,0.2033035;0.2104237;-0.1104611,0.2808797;0.0517386;-0.2873818,-0.0994902;0.3685293;0.00109036,-0.1589183;0.1783256;0.01814524,-0.1883281;-0.0694859;0.003161199,0.06712476;0.003558229;-0.04337748,0.09586351;-0.2929505;-0.007928137,0.08319019;-0.5841159;0.0632202,0.09487262;-0.6128629;0.002702247,-0.07390132;0.004726284;-0.03026974,-0.09437171;-0.2931334;-0.0009341761,-0.08863723;-0.5870649;0.05882734,-0.09826474;-0.5545423;-0.03916169,0.01546938;0.3993005;0.01649914,0;0;0,-0.0005078261;0.1993213;0.01645477,-0.0006780695;0.4990165;0.02886213,0.1099299;0.3763989;-0.01329485,0.1835655;0.1995292;-0.07069619,0.2570555;0.005623952;-0.2103385,-0.1126027;0.3621745;0.004359556,-0.1628848;0.1688642;0.01449954,-0.1994391;-0.0783744;0.008428352,0.07046273;0.006756864;-0.03727395,0.09246905;-0.2900636;0.0003207885,0.08329514;-0.5828569;0.06503497,0.1021223;-0.6099023;0.004128933,-0.07170249;0.001388701;-0.03545171,-0.09543405;-0.2960406;-0.004264267,-0.09173509;-0.5899329;0.05584912,-0.08996817;-0.6162453;-0.008751884,-0.0007208829;0.3990294;0.02725461,57.14346
-0;0;0,0.007777617;0.1995061;0.0116967,0.01975778;0.4992003;0.01522347,0.1243569;0.3742848;-0.02729261,0.2033035;0.2104237;-0.1104611,0.2808797;0.0517386;-0.2873818,-0.0994902;0.3685293;0.00109036,-0.1589183;0.1783256;0.01814524,-0.1883281;-0.0694859;0.003161199,0.06712476;0.003558229;-0.04337748,0.09586351;-0.2929505;-0.007928137,0.08319019;-0.5841159;0.0632202,0.09487262;-0.6128629;0.002702247,-0.07390132;0.004726284;-0.03026974,-0.09437171;-0.2931334;-0.0009341761,-0.08863723;-0.5870649;0.05882734,-0.09826474;-0.5545423;-0.03916169,0.01546938;0.3993005;0.01649914,0;0;0,-0.0005078261;0.1993213;0.01645477,-0.0006780695;0.4990165;0.02886213,0.1099299;0.3763989;-0.01329485,0.1835655;0.1995292;-0.07069619,0.2570555;0.005623952;-0.2103385,-0.1126027;0.3621745;0.004359556,-0.1628848;0.1688642;0.01449954,-0.1994391;-0.0783744;0.008428352,0.07046273;0.006756864;-0.03727395,0.09246905;-0.2900636;0.0003207885,0.08329514;-0.5828569;0.06503497,0.1021223;-0.6099023;0.004128933,-0.07170249;0.001388701;-0.03545171,-0.09543405;-0.2960406;-0.004264267,-0.09173509;-0.5899329;0.05584912,-0.08996817;-0.6162453;-0.008751884,-0.0007208829;0.3990294;0.02725461,57.15472
-0;0;0,0.0078602;0.1995025;0.01170295,0.01998505;0.4991901;0.01525918,0.1249467;0.3746766;-0.02646843,0.2031979;0.2133923;-0.1151483,0.2803052;0.05792192;-0.2951022,-0.0994169;0.3688125;0.001397799,-0.1583765;0.1784525;0.0183345,-0.1965925;-0.06783552;-0.001203671,0.06693523;0.003620909;-0.04366423,0.09586904;-0.2928476;-0.008037418,0.08268853;-0.5838248;0.06378555,0.09580943;-0.6114823;0.002164517,-0.07399449;0.004707888;-0.03004416,-0.09426373;-0.2931735;-0.0007890556,-0.08853833;-0.5870628;0.05917977,-0.09797996;-0.5545433;-0.03882682,0.01565592;0.3992921;0.01653852,0;0;0,-0.0005078261;0.1993213;0.01645477,-0.0006780695;0.4990165;0.02886213,0.1099299;0.3763989;-0.01329485,0.1835655;0.1995292;-0.07069619,0.2570555;0.005623952;-0.2103385,-0.1126027;0.3621745;0.004359556,-0.1628848;0.1688642;0.01449954,-0.1994391;-0.0783744;0.008428352,0.07046273;0.006756864;-0.03727395,0.09246905;-0.2900636;0.0003207885,0.08329514;-0.5828569;0.06503497,0.1021223;-0.6099023;0.004128933,-0.07170249;0.001388701;-0.03545171,-0.09543405;-0.2960406;-0.004264267,-0.09173509;-0.5899329;0.05584912,-0.08996817;-0.6162453;-0.008751884,-0.0007208829;0.3990294;0.02725461,57.17847
-0;0;0,0.008064242;0.1994942;0.01170562,0.0203549;0.4991747;0.01522485,0.1244905;0.374239;-0.02810889,0.2029425;0.213436;-0.1174827,0.2797768;0.06294854;-0.301738,-0.09914312;0.3688378;0.001520202,-0.1481689;0.1750242;0.007243294,-0.1770088;-0.07280126;-0.008593399,0.06680063;0.0035633;-0.04387458,0.09633285;-0.292867;-0.008421913,0.08317528;-0.5838083;0.06355074,0.09588974;-0.6124144;0.003057633,-0.07414476;0.004753524;-0.02966409,-0.09401743;-0.2931845;-0.0007160287,-0.08820607;-0.5870414;0.05940393,-0.09087091;-0.618706;0.00175165,0.01595591;0.3992801;0.01653625,0;0;0,-0.0006134587;0.1993017;0.01668654,-0.001034217;0.4989795;0.02951036,0.1094549;0.3763055;-0.01334447,0.1847836;0.201553;-0.07488431,0.2583999;0.01288171;-0.2214578,-0.1127216;0.3617672;0.00477431,-0.1629719;0.1684481;0.0149061,-0.1992454;-0.07883379;0.008915499,0.07036638;0.006774628;-0.03745234,0.09243555;-0.2900381;0.0001658425,0.08310818;-0.5828398;0.06482026,0.1019679;-0.6101558;0.004268177,-0.07181526;0.001392889;-0.03522255,-0.09560657;-0.296023;-0.003953338,-0.09157927;-0.5899951;0.05574754,-0.09016673;-0.6164487;-0.008695129,-0.0009808014;0.3989949;0.02775465,57.19906
-0;0;0,0.008064242;0.1994942;0.01170562,0.0203549;0.4991747;0.01522485,0.1244905;0.374239;-0.02810889,0.2029425;0.213436;-0.1174827,0.2797768;0.06294854;-0.301738,-0.09914312;0.3688378;0.001520202,-0.1481689;0.1750242;0.007243294,-0.1770088;-0.07280126;-0.008593399,0.06680063;0.0035633;-0.04387458,0.09633285;-0.292867;-0.008421913,0.08317528;-0.5838083;0.06355074,0.09588974;-0.6124144;0.003057633,-0.07414476;0.004753524;-0.02966409,-0.09401743;-0.2931845;-0.0007160287,-0.08820607;-0.5870414;0.05940393,-0.09087091;-0.618706;0.00175165,0.01595591;0.3992801;0.01653625,0;0;0,-0.0006134587;0.1993017;0.01668654,-0.001034217;0.4989795;0.02951036,0.1094549;0.3763055;-0.01334447,0.1847836;0.201553;-0.07488431,0.2583999;0.01288171;-0.2214578,-0.1127216;0.3617672;0.00477431,-0.1629719;0.1684481;0.0149061,-0.1992454;-0.07883379;0.008915499,0.07036638;0.006774628;-0.03745234,0.09243555;-0.2900381;0.0001658425,0.08310818;-0.5828398;0.06482026,0.1019679;-0.6101558;0.004268177,-0.07181526;0.001392889;-0.03522255,-0.09560657;-0.296023;-0.003953338,-0.09157927;-0.5899951;0.05574754,-0.09016673;-0.6164487;-0.008695129,-0.0009808014;0.3989949;0.02775465,57.21046
-0;0;0,0.008064242;0.1994942;0.01170562,0.0203549;0.4991747;0.01522485,0.1244905;0.374239;-0.02810889,0.2029425;0.213436;-0.1174827,0.2797768;0.06294854;-0.301738,-0.09914312;0.3688378;0.001520202,-0.1481689;0.1750242;0.007243294,-0.1770088;-0.07280126;-0.008593399,0.06680063;0.0035633;-0.04387458,0.09633285;-0.292867;-0.008421913,0.08317528;-0.5838083;0.06355074,0.09588974;-0.6124144;0.003057633,-0.07414476;0.004753524;-0.02966409,-0.09401743;-0.2931845;-0.0007160287,-0.08820607;-0.5870414;0.05940393,-0.09087091;-0.618706;0.00175165,0.01595591;0.3992801;0.01653625,0;0;0,-0.0006134587;0.1993017;0.01668654,-0.001034217;0.4989795;0.02951036,0.1094549;0.3763055;-0.01334447,0.1847836;0.201553;-0.07488431,0.2583999;0.01288171;-0.2214578,-0.1127216;0.3617672;0.00477431,-0.1629719;0.1684481;0.0149061,-0.1992454;-0.07883379;0.008915499,0.07036638;0.006774628;-0.03745234,0.09243555;-0.2900381;0.0001658425,0.08310818;-0.5828398;0.06482026,0.1019679;-0.6101558;0.004268177,-0.07181526;0.001392889;-0.03522255,-0.09560657;-0.296023;-0.003953338,-0.09157927;-0.5899951;0.05574754,-0.09016673;-0.6164487;-0.008695129,-0.0009808014;0.3989949;0.02775465,57.2217
-0;0;0,0.008087642;0.1994946;0.01168251,0.02041308;0.4991736;0.01517833,0.1250822;0.3747792;-0.0271105,0.2023892;0.2155907;-0.1202912,0.279161;0.07192312;-0.3099375,-0.09908552;0.3682631;0.002667399,-0.1593141;0.178434;0.02103659,-0.1824732;-0.06988117;0.003622416,0.06678716;0.003548885;-0.04389624,0.09646498;-0.2929122;-0.008824561,0.08321252;-0.5837642;0.06349072,0.09601261;-0.6123941;0.003046568,-0.07421681;0.004789353;-0.02947756,-0.09420146;-0.2930715;0.0001788195,-0.08782514;-0.5870315;0.05973449,-0.09789603;-0.5545002;-0.03821152,0.01600768;0.3992795;0.01650701,0;0;0,-0.0006638341;0.1992947;0.01676787,-0.001223711;0.4989684;0.0296811,0.1091305;0.3763554;-0.01373863,0.1865418;0.2039005;-0.07905956,0.2598975;0.01894547;-0.2304219,-0.1127566;0.3612814;0.005203823,-0.1629355;0.1679564;0.01557261,-0.1992035;-0.0793183;0.009258928,0.07031184;0.006789012;-0.03755203,0.09232204;-0.2900133;0.000183437,0.08353415;-0.5829081;0.06449062,0.1020938;-0.610036;0.003606971,-0.0719019;0.001347826;-0.03504711,-0.09577706;-0.296083;-0.003984252,-0.09211164;-0.5899702;0.05615582,-0.09880887;-0.5569345;-0.0421669,-0.001116554;0.3989843;0.027897,57.2437
-0;0;0,0.008087642;0.1994946;0.01168251,0.02041308;0.4991736;0.01517833,0.1250822;0.3747792;-0.0271105,0.2023892;0.2155907;-0.1202912,0.279161;0.07192312;-0.3099375,-0.09908552;0.3682631;0.002667399,-0.1593141;0.178434;0.02103659,-0.1824732;-0.06988117;0.003622416,0.06678716;0.003548885;-0.04389624,0.09646498;-0.2929122;-0.008824561,0.08321252;-0.5837642;0.06349072,0.09601261;-0.6123941;0.003046568,-0.07421681;0.004789353;-0.02947756,-0.09420146;-0.2930715;0.0001788195,-0.08782514;-0.5870315;0.05973449,-0.09789603;-0.5545002;-0.03821152,0.01600768;0.3992795;0.01650701,0;0;0,-0.0006638341;0.1992947;0.01676787,-0.001223711;0.4989684;0.0296811,0.1091305;0.3763554;-0.01373863,0.1865418;0.2039005;-0.07905956,0.2598975;0.01894547;-0.2304219,-0.1127566;0.3612814;0.005203823,-0.1629355;0.1679564;0.01557261,-0.1992035;-0.0793183;0.009258928,0.07031184;0.006789012;-0.03755203,0.09232204;-0.2900133;0.000183437,0.08353415;-0.5829081;0.06449062,0.1020938;-0.610036;0.003606971,-0.0719019;0.001347826;-0.03504711,-0.09577706;-0.296083;-0.003984252,-0.09211164;-0.5899702;0.05615582,-0.09880887;-0.5569345;-0.0421669,-0.001116554;0.3989843;0.027897,57.25539
-0;0;0,0.008176841;0.1994921;0.01166335,0.0205838;0.4991672;0.01517322,0.1255783;0.3751473;-0.02646825,0.2010005;0.2171656;-0.1231807,0.2783997;0.0775833;-0.3156025,-0.09896863;0.3682517;0.003041264,-0.1588344;0.1782695;0.02100979,-0.1821961;-0.0700071;0.003319392,0.06663329;0.003511425;-0.04413246,0.09670806;-0.2929462;-0.009370681,0.0833789;-0.5837176;0.06325404,0.0966787;-0.6119016;0.002341215,-0.07437025;0.004873175;-0.02907434,-0.0935048;-0.2931216;-0.0002129208,-0.08778292;-0.5870278;0.05967347,-0.08915286;-0.6180184;0.001033407,0.01616707;0.3992737;0.01650976,0;0;0,-0.0006957995;0.1992847;0.01688567,-0.00133337;0.4989506;0.02997672,0.1089463;0.3765571;-0.0138996,0.1874551;0.2060654;-0.08295722,0.2618402;0.02788728;-0.2417634,-0.1127611;0.3611958;0.005185567,-0.1631352;0.1679462;0.0160051,-0.1990929;-0.07937768;0.009846938,0.07020386;0.006796787;-0.03775212,0.09222014;-0.2899954;5.886704E-05,0.08372685;-0.5828995;0.06436348,0.101442;-0.6101785;0.003419954,-0.07196613;0.001369483;-0.0349142,-0.09589553;-0.2961098;-0.004360875,-0.09220283;-0.5900133;0.05569798,-0.09898599;-0.556968;-0.04262052,-0.001195753;0.3989677;0.02813011,57.2774
-0;0;0,0.008176841;0.1994921;0.01166335,0.0205838;0.4991672;0.01517322,0.1255783;0.3751473;-0.02646825,0.2010005;0.2171656;-0.1231807,0.2783997;0.0775833;-0.3156025,-0.09896863;0.3682517;0.003041264,-0.1588344;0.1782695;0.02100979,-0.1821961;-0.0700071;0.003319392,0.06663329;0.003511425;-0.04413246,0.09670806;-0.2929462;-0.009370681,0.0833789;-0.5837176;0.06325404,0.0966787;-0.6119016;0.002341215,-0.07437025;0.004873175;-0.02907434,-0.0935048;-0.2931216;-0.0002129208,-0.08778292;-0.5870278;0.05967347,-0.08915286;-0.6180184;0.001033407,0.01616707;0.3992737;0.01650976,0;0;0,-0.0006957995;0.1992847;0.01688567,-0.00133337;0.4989506;0.02997672,0.1089463;0.3765571;-0.0138996,0.1874551;0.2060654;-0.08295722,0.2618402;0.02788728;-0.2417634,-0.1127611;0.3611958;0.005185567,-0.1631352;0.1679462;0.0160051,-0.1990929;-0.07937768;0.009846938,0.07020386;0.006796787;-0.03775212,0.09222014;-0.2899954;5.886704E-05,0.08372685;-0.5828995;0.06436348,0.101442;-0.6101785;0.003419954,-0.07196613;0.001369483;-0.0349142,-0.09589553;-0.2961098;-0.004360875,-0.09220283;-0.5900133;0.05569798,-0.09898599;-0.556968;-0.04262052,-0.001195753;0.3989677;0.02813011,57.28872
-0;0;0,0.008267582;0.1994877;0.01167441,0.02074538;0.499159;0.01521545,0.1247714;0.3750569;-0.02874265,0.2014413;0.2182316;-0.1263518,0.278352;0.0832556;-0.3222249,-0.09879713;0.3681024;0.003246302,-0.1581176;0.1779201;0.02090432,-0.1816567;-0.0703157;0.002879744,0.06657647;0.003461287;-0.04422209,0.09704852;-0.2929592;-0.009489976,0.08365986;-0.5836889;0.06329058,0.09700062;-0.6119075;0.002431158,-0.07439919;0.004938171;-0.0289892,-0.09317885;-0.2931765;-0.001150724,-0.08790459;-0.5870049;0.05915718,-0.09866755;-0.5544515;-0.03871916,0.01631882;0.399266;0.01655588,0;0;0,-0.0006957995;0.1992847;0.01688567,-0.00133337;0.4989506;0.02997672,0.1089463;0.3765571;-0.0138996,0.1874551;0.2060654;-0.08295722,0.2618402;0.02788728;-0.2417634,-0.1127611;0.3611958;0.005185567,-0.1631352;0.1679462;0.0160051,-0.1990929;-0.07937768;0.009846938,0.07020386;0.006796787;-0.03775212,0.09222014;-0.2899954;5.886704E-05,0.08372685;-0.5828995;0.06436348,0.101442;-0.6101785;0.003419954,-0.07196613;0.001369483;-0.0349142,-0.09589553;-0.2961098;-0.004360875,-0.09220283;-0.5900133;0.05569798,-0.09898599;-0.556968;-0.04262052,-0.001195753;0.3989677;0.02813011,57.31085
-0;0;0,0.008267582;0.1994877;0.01167441,0.02074538;0.499159;0.01521545,0.1247714;0.3750569;-0.02874265,0.2014413;0.2182316;-0.1263518,0.278352;0.0832556;-0.3222249,-0.09879713;0.3681024;0.003246302,-0.1581176;0.1779201;0.02090432,-0.1816567;-0.0703157;0.002879744,0.06657647;0.003461287;-0.04422209,0.09704852;-0.2929592;-0.009489976,0.08365986;-0.5836889;0.06329058,0.09700062;-0.6119075;0.002431158,-0.07439919;0.004938171;-0.0289892,-0.09317885;-0.2931765;-0.001150724,-0.08790459;-0.5870049;0.05915718,-0.09866755;-0.5544515;-0.03871916,0.01631882;0.399266;0.01655588,0;0;0,-0.0006957995;0.1992847;0.01688567,-0.00133337;0.4989506;0.02997672,0.1089463;0.3765571;-0.0138996,0.1874551;0.2060654;-0.08295722,0.2618402;0.02788728;-0.2417634,-0.1127611;0.3611958;0.005185567,-0.1631352;0.1679462;0.0160051,-0.1990929;-0.07937768;0.009846938,0.07020386;0.006796787;-0.03775212,0.09222014;-0.2899954;5.886704E-05,0.08372685;-0.5828995;0.06436348,0.101442;-0.6101785;0.003419954,-0.07196613;0.001369483;-0.0349142,-0.09589553;-0.2961098;-0.004360875,-0.09220283;-0.5900133;0.05569798,-0.09898599;-0.556968;-0.04262052,-0.001195753;0.3989677;0.02813011,57.32253
-0;0;0,0.008482565;0.1994794;0.01166343,0.02117365;0.4991414;0.01517353,0.1243384;0.3748869;-0.03050062,0.2014123;0.219258;-0.1296937,0.2784605;0.08943594;-0.3289669,-0.09857406;0.3682782;0.003866164,-0.1461304;0.1740646;0.008280068,-0.1818307;-0.07261187;-0.01111573,0.06641443;0.003347708;-0.04447377,0.09739511;-0.2929929;-0.009510186,0.08405683;-0.5837033;0.06335686,0.09728421;-0.6119547;0.002514906,-0.07451865;0.005089652;-0.02865425,-0.09321094;-0.2930452;-0.0009738281,-0.08759572;-0.5868797;0.05927402,-0.08940089;-0.6169567;-0.0005959384,0.01666481;0.3992524;0.01653899,0;0;0,-0.0006143824;0.1992752;0.01700134,-0.001048725;0.4989348;0.03024196,0.1089359;0.3764402;-0.01420103,0.1886689;0.2080571;-0.08693202,0.2631591;0.03623167;-0.2525437,-0.1126208;0.360933;0.006158162,-0.1627665;0.1676037;0.0166083,-0.1986375;-0.07971917;0.009924298,0.0701125;0.006705996;-0.03793767,0.09213682;-0.2900749;-4.260242E-05,0.08361941;-0.5829844;0.06423402,0.1005325;-0.6093099;0.001877185,-0.07210478;0.001541655;-0.0346197,-0.09594478;-0.2959914;-0.00452392,-0.09236149;-0.5899051;0.05549173,-0.08917973;-0.6176123;-0.007368989,-0.0009865975;0.3989528;0.02834571,57.34428
-0;0;0,0.008477005;0.1994802;0.01165346,0.02117329;0.4991418;0.01518128,0.125131;0.3751812;-0.02880588,0.2003319;0.2212428;-0.1319941,0.276203;0.09448749;-0.3336787,-0.09848474;0.3678437;0.004163663,-0.1573724;0.1774436;0.02089716,-0.1912521;-0.06918912;-0.002004404,0.06640034;0.003334347;-0.0444958,0.09738773;-0.2930062;-0.00953735,0.08407909;-0.5837474;0.06321152,0.09720297;-0.6122878;0.002720367,-0.07458404;0.005053136;-0.0284901,-0.09353988;-0.2930509;-0.0006578863,-0.08744159;-0.5868871;0.05953433,-0.08882189;-0.6173059;0.0001127869,0.01666847;0.3992525;0.01654213,0;0;0,-0.0006143824;0.1992752;0.01700134,-0.001048725;0.4989348;0.03024196,0.1089359;0.3764402;-0.01420103,0.1886689;0.2080571;-0.08693202,0.2631591;0.03623167;-0.2525437,-0.1126208;0.360933;0.006158162,-0.1627665;0.1676037;0.0166083,-0.1986375;-0.07971917;0.009924298,0.0701125;0.006705996;-0.03793767,0.09213682;-0.2900749;-4.260242E-05,0.08361941;-0.5829844;0.06423402,0.1005325;-0.6093099;0.001877185,-0.07210478;0.001541655;-0.0346197,-0.09594478;-0.2959914;-0.00452392,-0.09236149;-0.5899051;0.05549173,-0.08917973;-0.6176123;-0.007368989,-0.0009865975;0.3989528;0.02834571,57.36678
-0;0;0,0.008477005;0.1994802;0.01165346,0.02117329;0.4991418;0.01518128,0.125131;0.3751812;-0.02880588,0.2003319;0.2212428;-0.1319941,0.276203;0.09448749;-0.3336787,-0.09848474;0.3678437;0.004163663,-0.1573724;0.1774436;0.02089716,-0.1912521;-0.06918912;-0.002004404,0.06640034;0.003334347;-0.0444958,0.09738773;-0.2930062;-0.00953735,0.08407909;-0.5837474;0.06321152,0.09720297;-0.6122878;0.002720367,-0.07458404;0.005053136;-0.0284901,-0.09353988;-0.2930509;-0.0006578863,-0.08744159;-0.5868871;0.05953433,-0.08882189;-0.6173059;0.0001127869,0.01666847;0.3992525;0.01654213,0;0;0,-0.0005638717;0.1992503;0.01729134,-0.000820617;0.4988786;0.03125197,0.1087572;0.3762296;-0.01424146,0.1896423;0.2106396;-0.09194306,0.264571;0.04282756;-0.261427,-0.1123552;0.3606035;0.006847722,-0.1624783;0.1672669;0.01727029,-0.1983852;-0.08004276;0.01029747,0.07000753;0.006636065;-0.03814327,0.09198757;-0.2900725;0.0003391393,0.08357553;-0.5830437;0.064348,0.1003242;-0.6092298;0.001776777,-0.0722483;0.001775723;-0.03430787,-0.09602955;-0.2957897;-0.004487596,-0.09245615;-0.5897048;0.05552263,-0.08930077;-0.6180996;-0.006479681,-0.0008265511;0.398902;0.02908709,57.37821
-0;0;0,0.008477005;0.1994802;0.01165346,0.02117329;0.4991418;0.01518128,0.125131;0.3751812;-0.02880588,0.2003319;0.2212428;-0.1319941,0.276203;0.09448749;-0.3336787,-0.09848474;0.3678437;0.004163663,-0.1573724;0.1774436;0.02089716,-0.1912521;-0.06918912;-0.002004404,0.06640034;0.003334347;-0.0444958,0.09738773;-0.2930062;-0.00953735,0.08407909;-0.5837474;0.06321152,0.09720297;-0.6122878;0.002720367,-0.07458404;0.005053136;-0.0284901,-0.09353988;-0.2930509;-0.0006578863,-0.08744159;-0.5868871;0.05953433,-0.08882189;-0.6173059;0.0001127869,0.01666847;0.3992525;0.01654213,0;0;0,-0.0005638717;0.1992503;0.01729134,-0.000820617;0.4988786;0.03125197,0.1087572;0.3762296;-0.01424146,0.1896423;0.2106396;-0.09194306,0.264571;0.04282756;-0.261427,-0.1123552;0.3606035;0.006847722,-0.1624783;0.1672669;0.01727029,-0.1983852;-0.08004276;0.01029747,0.07000753;0.006636065;-0.03814327,0.09198757;-0.2900725;0.0003391393,0.08357553;-0.5830437;0.064348,0.1003242;-0.6092298;0.001776777,-0.0722483;0.001775723;-0.03430787,-0.09602955;-0.2957897;-0.004487596,-0.09245615;-0.5897048;0.05552263,-0.08930077;-0.6180996;-0.006479681,-0.0008265511;0.398902;0.02908709,57.38921
-0;0;0,0.008536034;0.1994802;0.01160987,0.02129754;0.4991389;0.0151265,0.1256645;0.3754255;-0.02798187,0.2000139;0.2233939;-0.1345584,0.2739912;0.1021043;-0.3402674,-0.09835194;0.3682899;0.002933127,-0.1549412;0.1773832;0.02170242,-0.1877922;-0.06932864;-0.001836134,0.06635469;0.003349618;-0.04456271,0.09747188;-0.2929705;-0.009546943,0.08419215;-0.5837054;0.06323278,0.09689596;-0.611104;0.001199882,-0.07473217;0.005009949;-0.02810697,-0.09331387;-0.2931673;-0.0008107219,-0.08741193;-0.5869372;0.05972339,-0.09761329;-0.5544143;-0.03820761,0.01678905;0.39925;0.01649874,0;0;0,-0.0005638717;0.1992503;0.01729134,-0.000820617;0.4988786;0.03125197,0.1087572;0.3762296;-0.01424146,0.1896423;0.2106396;-0.09194306,0.264571;0.04282756;-0.261427,-0.1123552;0.3606035;0.006847722,-0.1624783;0.1672669;0.01727029,-0.1983852;-0.08004276;0.01029747,0.07000753;0.006636065;-0.03814327,0.09198757;-0.2900725;0.0003391393,0.08357553;-0.5830437;0.064348,0.1003242;-0.6092298;0.001776777,-0.0722483;0.001775723;-0.03430787,-0.09602955;-0.2957897;-0.004487596,-0.09245615;-0.5897048;0.05552263,-0.08930077;-0.6180996;-0.006479681,-0.0008265511;0.398902;0.02908709,57.41187
-0;0;0,0.008597348;0.1994746;0.01166113,0.02140514;0.499131;0.01525155,0.124728;0.3748963;-0.03006606,0.2001487;0.2233357;-0.1365606,0.2731749;0.1061579;-0.3449749,-0.09811348;0.3676424;0.003263368,-0.1553794;0.1769731;0.02239028,-0.1784867;-0.07110929;0.001867937,0.06623939;0.003257751;-0.04474069,0.09742907;-0.293009;-0.009339441,0.08409103;-0.5835689;0.06412493,0.09700668;-0.6116768;0.00303195,-0.07479031;0.005062509;-0.02794243,-0.09336056;-0.2930946;-0.0004198533,-0.08735984;-0.5869036;0.05991464,-0.09838378;-0.5543631;-0.03793032,0.01688189;0.3992422;0.01658685,0;0;0,-0.0005757978;0.1992399;0.01741037,-0.0008897922;0.498863;0.03147477,0.1085144;0.3762439;-0.01455438,0.1905138;0.2131907;-0.09634511,0.2653326;0.05134408;-0.2715816,-0.112367;0.3600758;0.00777108,-0.162568;0.1667446;0.01791709,-0.1982363;-0.08058456;0.01043123,0.06991868;0.006675837;-0.03829897,0.09184664;-0.2900274;0.0002548061,0.083519;-0.5830023;0.06425752,0.1003019;-0.6090534;0.001531415,-0.07241935;0.001591627;-0.03395445,-0.09632014;-0.2960058;-0.004551399,-0.09273582;-0.5899786;0.05517453,-0.08983822;-0.6169608;-0.008585449,-0.0008729456;0.398887;0.02928289,57.43376
-0;0;0,0.008597348;0.1994746;0.01166113,0.02140514;0.499131;0.01525155,0.124728;0.3748963;-0.03006606,0.2001487;0.2233357;-0.1365606,0.2731749;0.1061579;-0.3449749,-0.09811348;0.3676424;0.003263368,-0.1553794;0.1769731;0.02239028,-0.1784867;-0.07110929;0.001867937,0.06623939;0.003257751;-0.04474069,0.09742907;-0.293009;-0.009339441,0.08409103;-0.5835689;0.06412493,0.09700668;-0.6116768;0.00303195,-0.07479031;0.005062509;-0.02794243,-0.09336056;-0.2930946;-0.0004198533,-0.08735984;-0.5869036;0.05991464,-0.09838378;-0.5543631;-0.03793032,0.01688189;0.3992422;0.01658685,0;0;0,-0.0005757978;0.1992399;0.01741037,-0.0008897922;0.498863;0.03147477,0.1085144;0.3762439;-0.01455438,0.1905138;0.2131907;-0.09634511,0.2653326;0.05134408;-0.2715816,-0.112367;0.3600758;0.00777108,-0.162568;0.1667446;0.01791709,-0.1982363;-0.08058456;0.01043123,0.06991868;0.006675837;-0.03829897,0.09184664;-0.2900274;0.0002548061,0.083519;-0.5830023;0.06425752,0.1003019;-0.6090534;0.001531415,-0.07241935;0.001591627;-0.03395445,-0.09632014;-0.2960058;-0.004551399,-0.09273582;-0.5899786;0.05517453,-0.08983822;-0.6169608;-0.008585449,-0.0008729456;0.398887;0.02928289,57.44545
-0;0;0,0.008548142;0.1994733;0.01171876,0.02133769;0.4991287;0.01540049,0.1237623;0.3750805;-0.03207952,0.1993834;0.2245196;-0.1398425,0.2725991;0.1113206;-0.3503786,-0.0982058;0.3676342;0.003754701,-0.1557505;0.1770495;0.02288844,-0.1788466;-0.07100639;0.00203599,0.06611555;0.003216496;-0.04492648,0.09734431;-0.2930143;-0.009259738,0.08331157;-0.5835385;0.06421634,0.09698009;-0.611271;0.002809145,-0.07485924;0.005088015;-0.0277526,-0.09310415;-0.2931177;-0.0005404465,-0.08754723;-0.5869308;0.05981667,-0.09943908;-0.5543699;-0.03793027,0.01682885;0.3992392;0.01672204,0;0;0,-0.0005757978;0.1992399;0.01741037,-0.0008897922;0.498863;0.03147477,0.1085144;0.3762439;-0.01455438,0.1905138;0.2131907;-0.09634511,0.2653326;0.05134408;-0.2715816,-0.112367;0.3600758;0.00777108,-0.162568;0.1667446;0.01791709,-0.1982363;-0.08058456;0.01043123,0.06991868;0.006675837;-0.03829897,0.09184664;-0.2900274;0.0002548061,0.083519;-0.5830023;0.06425752,0.1003019;-0.6090534;0.001531415,-0.07241935;0.001591627;-0.03395445,-0.09632014;-0.2960058;-0.004551399,-0.09273582;-0.5899786;0.05517453,-0.08983822;-0.6169608;-0.008585449,-0.0008729456;0.398887;0.02928289,57.46723
-0;0;0,0.008548142;0.1994733;0.01171876,0.02133769;0.4991287;0.01540049,0.1237623;0.3750805;-0.03207952,0.1993834;0.2245196;-0.1398425,0.2725991;0.1113206;-0.3503786,-0.0982058;0.3676342;0.003754701,-0.1557505;0.1770495;0.02288844,-0.1788466;-0.07100639;0.00203599,0.06611555;0.003216496;-0.04492648,0.09734431;-0.2930143;-0.009259738,0.08331157;-0.5835385;0.06421634,0.09698009;-0.611271;0.002809145,-0.07485924;0.005088015;-0.0277526,-0.09310415;-0.2931177;-0.0005404465,-0.08754723;-0.5869308;0.05981667,-0.09943908;-0.5543699;-0.03793027,0.01682885;0.3992392;0.01672204,0;0;0,-0.0005855702;0.1992307;0.01751511,-0.0009325777;0.4988478;0.03170214,0.1082913;0.3762399;-0.01484876,0.1912902;0.2166368;-0.1022446,0.2652131;0.06080788;-0.2832218,-0.1125728;0.360133;0.008762255,-0.1625953;0.1667278;0.0183639,-0.1982793;-0.08059244;0.01066071,0.06984252;0.006689462;-0.03843531,0.09178479;-0.2900027;0.0001953356,0.08348548;-0.5830181;0.06401609,0.1003727;-0.6091142;0.00137262,-0.0724459;0.001598758;-0.03389742,-0.0966815;-0.2959721;-0.004499367,-0.09271062;-0.5899505;0.05517419,-0.09026818;-0.6163588;-0.009291403,-0.0009024449;0.3988726;0.02947376,57.47916
-0;0;0,0.00858101;0.199472;0.0117166,0.02136447;0.4991274;0.01543674,0.1233969;0.3746618;-0.03274842,0.1994729;0.2255153;-0.1421458,0.2707128;0.1149992;-0.3547747,-0.09819083;0.3676563;0.004005738,-0.1561845;0.177229;0.02334935,-0.1786327;-0.07087821;0.00239931,0.06601375;0.003171641;-0.04507909,0.09732835;-0.2930213;-0.009174485,0.08348978;-0.5836799;0.06380576,0.09672415;-0.6129181;0.004256245,-0.07497097;0.005040958;-0.02745801,-0.09299815;-0.2932166;-0.0006721262,-0.08763256;-0.5870113;0.05979169,-0.08985616;-0.6179347;0.001085177,0.01687626;0.3992367;0.01674319,0;0;0,-0.0005855702;0.1992307;0.01751511,-0.0009325777;0.4988478;0.03170214,0.1082913;0.3762399;-0.01484876,0.1912902;0.2166368;-0.1022446,0.2652131;0.06080788;-0.2832218,-0.1125728;0.360133;0.008762255,-0.1625953;0.1667278;0.0183639,-0.1982793;-0.08059244;0.01066071,0.06984252;0.006689462;-0.03843531,0.09178479;-0.2900027;0.0001953356,0.08348548;-0.5830181;0.06401609,0.1003727;-0.6091142;0.00137262,-0.0724459;0.001598758;-0.03389742,-0.0966815;-0.2959721;-0.004499367,-0.09271062;-0.5899505;0.05517419,-0.09026818;-0.6163588;-0.009291403,-0.0009024449;0.3988726;0.02947376,57.50077
-0;0;0,0.00858101;0.199472;0.0117166,0.02136447;0.4991274;0.01543674,0.1233969;0.3746618;-0.03274842,0.1994729;0.2255153;-0.1421458,0.2707128;0.1149992;-0.3547747,-0.09819083;0.3676563;0.004005738,-0.1561845;0.177229;0.02334935,-0.1786327;-0.07087821;0.00239931,0.06601375;0.003171641;-0.04507909,0.09732835;-0.2930213;-0.009174485,0.08348978;-0.5836799;0.06380576,0.09672415;-0.6129181;0.004256245,-0.07497097;0.005040958;-0.02745801,-0.09299815;-0.2932166;-0.0006721262,-0.08763256;-0.5870113;0.05979169,-0.08985616;-0.6179347;0.001085177,0.01687626;0.3992367;0.01674319,0;0;0,-0.0005855702;0.1992307;0.01751511,-0.0009325777;0.4988478;0.03170214,0.1082913;0.3762399;-0.01484876,0.1912902;0.2166368;-0.1022446,0.2652131;0.06080788;-0.2832218,-0.1125728;0.360133;0.008762255,-0.1625953;0.1667278;0.0183639,-0.1982793;-0.08059244;0.01066071,0.06984252;0.006689462;-0.03843531,0.09178479;-0.2900027;0.0001953356,0.08348548;-0.5830181;0.06401609,0.1003727;-0.6091142;0.00137262,-0.0724459;0.001598758;-0.03389742,-0.0966815;-0.2959721;-0.004499367,-0.09271062;-0.5899505;0.05517419,-0.09026818;-0.6163588;-0.009291403,-0.0009024449;0.3988726;0.02947376,57.51212
-0;0;0,0.008695816;0.1994665;0.01172567,0.02162828;0.4991149;0.01548679,0.1233423;0.3746194;-0.03333119,0.1992382;0.2258152;-0.1433182,0.2693428;0.1214478;-0.3594033,-0.0980144;0.3678707;0.004103261,-0.1563585;0.1775875;0.0238081,-0.1786889;-0.07049836;0.002483459,0.06592608;0.003126185;-0.04521038,0.09776317;-0.2930033;-0.009241831,0.08423755;-0.5836652;0.06378375,0.0969254;-0.6131011;0.004378777,-0.07501582;0.00510275;-0.02732378,-0.09274207;-0.2932043;-0.0008912534,-0.0877068;-0.587027;0.05946511,-0.1001343;-0.5544559;-0.03821696,0.01712076;0.399225;0.01678413,0;0;0,-0.0005048421;0.1992287;0.01754037,-0.0007514391;0.498848;0.03167998,0.1082892;0.376183;-0.01519646,0.1910965;0.2181975;-0.1056595,0.2659453;0.07016912;-0.2927029,-0.1125839;0.3603314;0.009270309,-0.1673198;0.1687113;0.0261734,-0.198475;-0.07892245;0.01178961,0.06969566;0.00680994;-0.03867996,0.09178688;-0.2898074;0.0004367158,0.08341171;-0.5828973;0.06390479,0.1003054;-0.6091136;0.001409434,-0.07265384;0.001303869;-0.0334622,-0.09661388;-0.2963377;-0.004558712,-0.0928307;-0.5902644;0.055381,-0.09044089;-0.6158756;-0.01001962,-0.0007515423;0.3988723;0.02947234,57.5341
-0;0;0,0.008695816;0.1994665;0.01172567,0.02162828;0.4991149;0.01548679,0.1233423;0.3746194;-0.03333119,0.1992382;0.2258152;-0.1433182,0.2693428;0.1214478;-0.3594033,-0.0980144;0.3678707;0.004103261,-0.1563585;0.1775875;0.0238081,-0.1786889;-0.07049836;0.002483459,0.06592608;0.003126185;-0.04521038,0.09776317;-0.2930033;-0.009241831,0.08423755;-0.5836652;0.06378375,0.0969254;-0.6131011;0.004378777,-0.07501582;0.00510275;-0.02732378,-0.09274207;-0.2932043;-0.0008912534,-0.0877068;-0.587027;0.05946511,-0.1001343;-0.5544559;-0.03821696,0.01712076;0.399225;0.01678413,0;0;0,-0.0005048421;0.1992287;0.01754037,-0.0007514391;0.498848;0.03167998,0.1082892;0.376183;-0.01519646,0.1910965;0.2181975;-0.1056595,0.2659453;0.07016912;-0.2927029,-0.1125839;0.3603314;0.009270309,-0.1673198;0.1687113;0.0261734,-0.198475;-0.07892245;0.01178961,0.06969566;0.00680994;-0.03867996,0.09178688;-0.2898074;0.0004367158,0.08341171;-0.5828973;0.06390479,0.1003054;-0.6091136;0.001409434,-0.07265384;0.001303869;-0.0334622,-0.09661388;-0.2963377;-0.004558712,-0.0928307;-0.5902644;0.055381,-0.09044089;-0.6158756;-0.01001962,-0.0007515423;0.3988723;0.02947234,57.54572
-0;0;0,0.008627824;0.1994695;0.01172489,0.02145023;0.4991221;0.01553101,0.1229904;0.3747361;-0.03384066,0.1990591;0.2274073;-0.1456788,0.2681611;0.1264377;-0.3636927,-0.09822568;0.3680268;0.004577364,-0.145201;0.1737112;0.01047231,-0.1727182;-0.07405125;-0.008411027,0.06591685;0.003130973;-0.0452235,0.09778452;-0.2929917;-0.00922551,0.08426759;-0.583663;0.06376418,0.09678848;-0.6135098;0.00487696,-0.0750199;0.005104899;-0.02731219,-0.09265585;-0.2932058;-0.000860136,-0.08778894;-0.5870503;0.05940358,-0.1005189;-0.5544747;-0.03824036,0.01699876;0.3992295;0.01681354,0;0;0,-0.0005048421;0.1992287;0.01754037,-0.0007514391;0.498848;0.03167998,0.1082892;0.376183;-0.01519646,0.1910965;0.2181975;-0.1056595,0.2659453;0.07016912;-0.2927029,-0.1125839;0.3603314;0.009270309,-0.1673198;0.1687113;0.0261734,-0.198475;-0.07892245;0.01178961,0.06969566;0.00680994;-0.03867996,0.09178688;-0.2898074;0.0004367158,0.08341171;-0.5828973;0.06390479,0.1003054;-0.6091136;0.001409434,-0.07265384;0.001303869;-0.0334622,-0.09661388;-0.2963377;-0.004558712,-0.0928307;-0.5902644;0.055381,-0.09044089;-0.6158756;-0.01001962,-0.0007515423;0.3988723;0.02947234,57.56788
-0;0;0,0.008627824;0.1994695;0.01172489,0.02145023;0.4991221;0.01553101,0.1229904;0.3747361;-0.03384066,0.1990591;0.2274073;-0.1456788,0.2681611;0.1264377;-0.3636927,-0.09822568;0.3680268;0.004577364,-0.145201;0.1737112;0.01047231,-0.1727182;-0.07405125;-0.008411027,0.06591685;0.003130973;-0.0452235,0.09778452;-0.2929917;-0.00922551,0.08426759;-0.583663;0.06376418,0.09678848;-0.6135098;0.00487696,-0.0750199;0.005104899;-0.02731219,-0.09265585;-0.2932058;-0.000860136,-0.08778894;-0.5870503;0.05940358,-0.1005189;-0.5544747;-0.03824036,0.01699876;0.3992295;0.01681354,0;0;0,-0.0005113868;0.1992231;0.01760438,-0.0007795179;0.4988392;0.03180731,0.108039;0.3761406;-0.01563023,0.1920736;0.2219051;-0.1112837,0.266321;0.07660609;-0.3006921,-0.1125339;0.3600871;0.009446761,-0.1609539;0.1663843;0.02105321,-0.1982042;-0.08064216;0.01154726,0.06960158;0.006804811;-0.0388499,0.09171056;-0.2898001;0.0003510267,0.08307064;-0.5828409;0.06401,0.1016006;-0.6095725;0.002618633,-0.07278679;0.001257995;-0.0331738,-0.09669632;-0.2964398;-0.004812334,-0.09329718;-0.5903132;0.05541133,-0.09063406;-0.6155141;-0.01045013,-0.0007708863;0.398864;0.02958096,57.57903
-0;0;0,0.008627824;0.1994695;0.01172489,0.02145023;0.4991221;0.01553101,0.1229904;0.3747361;-0.03384066,0.1990591;0.2274073;-0.1456788,0.2681611;0.1264377;-0.3636927,-0.09822568;0.3680268;0.004577364,-0.145201;0.1737112;0.01047231,-0.1727182;-0.07405125;-0.008411027,0.06591685;0.003130973;-0.0452235,0.09778452;-0.2929917;-0.00922551,0.08426759;-0.583663;0.06376418,0.09678848;-0.6135098;0.00487696,-0.0750199;0.005104899;-0.02731219,-0.09265585;-0.2932058;-0.000860136,-0.08778894;-0.5870503;0.05940358,-0.1005189;-0.5544747;-0.03824036,0.01699876;0.3992295;0.01681354,0;0;0,-0.0005113868;0.1992231;0.01760438,-0.0007795179;0.4988392;0.03180731,0.108039;0.3761406;-0.01563023,0.1920736;0.2219051;-0.1112837,0.266321;0.07660609;-0.3006921,-0.1125339;0.3600871;0.009446761,-0.1609539;0.1663843;0.02105321,-0.1982042;-0.08064216;0.01154726,0.06960158;0.006804811;-0.0388499,0.09171056;-0.2898001;0.0003510267,0.08307064;-0.5828409;0.06401,0.1016006;-0.6095725;0.002618633,-0.07278679;0.001257995;-0.0331738,-0.09669632;-0.2964398;-0.004812334,-0.09329718;-0.5903132;0.05541133,-0.09063406;-0.6155141;-0.01045013,-0.0007708863;0.398864;0.02958096,57.59051
-0;0;0,0.008521171;0.1994682;0.01182414,0.02112495;0.4991257;0.01603707,0.1225112;0.3748308;-0.03406131,0.198059;0.228886;-0.1480466,0.2657124;0.1302605;-0.3675826,-0.09836921;0.367721;0.004890553,-0.1452383;0.1733701;0.01046099,-0.1770538;-0.07364005;-0.01130528,0.06585225;0.003145172;-0.04531654,0.09802934;-0.2929405;-0.009289615,0.08443764;-0.5836075;0.06370322,0.09701952;-0.6134664;0.004845392,-0.07504132;0.005105889;-0.02725304,-0.09289104;-0.2931472;-0.0002993755,-0.08736441;-0.587092;0.05941579,-0.08955069;-0.6184297;0.001283117,0.01676929;0.3992269;0.01715853,0;0;0,-0.0005113868;0.1992231;0.01760438,-0.0007795179;0.4988392;0.03180731,0.108039;0.3761406;-0.01563023,0.1920736;0.2219051;-0.1112837,0.266321;0.07660609;-0.3006921,-0.1125339;0.3600871;0.009446761,-0.1609539;0.1663843;0.02105321,-0.1982042;-0.08064216;0.01154726,0.06960158;0.006804811;-0.0388499,0.09171056;-0.2898001;0.0003510267,0.08307064;-0.5828409;0.06401,0.1016006;-0.6095725;0.002618633,-0.07278679;0.001257995;-0.0331738,-0.09669632;-0.2964398;-0.004812334,-0.09329718;-0.5903132;0.05541133,-0.09063406;-0.6155141;-0.01045013,-0.0007708863;0.398864;0.02958096,57.61304
-0;0;0,0.008447713;0.1994713;0.01182512,0.02097111;0.4991317;0.01605688,0.1240797;0.3755249;-0.0307633,0.1962156;0.2308934;-0.1485687,0.2627214;0.1345848;-0.3694797,-0.098524;0.3677111;0.005349874,-0.145277;0.1733479;0.01144339,-0.1772466;-0.07367039;-0.01000148,0.0658126;0.003119685;-0.04537586,0.09808451;-0.2929364;-0.009191744,0.08466164;-0.5836952;0.06346648,0.0971744;-0.6135857;0.004636809,-0.07510102;0.005190059;-0.02707211,-0.09262028;-0.29314;-0.000760803,-0.08762632;-0.5870631;0.05910768,-0.09015381;-0.618495;0.00112091,0.01665671;0.3992311;0.01717752,0;0;0,-0.0004671725;0.199212;0.01773094,-0.0006188787;0.4988145;0.03222694,0.1078293;0.3763404;-0.01620202,0.1920905;0.2241289;-0.1148514,0.26671;0.08554743;-0.3090861,-0.1124913;0.3600107;0.0102707,-0.1610729;0.1663097;0.02121402,-0.1978645;-0.08077709;0.01149353,0.06947327;0.006875236;-0.03906655,0.09177117;-0.289708;0.0001917854,0.0833104;-0.5827355;0.06393535,0.1011;-0.6089852;0.001730006,-0.07281143;0.001246884;-0.0331201,-0.09660272;-0.2964714;-0.004874608,-0.09325381;-0.5903654;0.05525089,-0.09097556;-0.6154945;-0.01070687,-0.0006558829;0.3988418;0.02989198,57.63482
-0;0;0,0.008447713;0.1994713;0.01182512,0.02097111;0.4991317;0.01605688,0.1240797;0.3755249;-0.0307633,0.1962156;0.2308934;-0.1485687,0.2627214;0.1345848;-0.3694797,-0.098524;0.3677111;0.005349874,-0.145277;0.1733479;0.01144339,-0.1772466;-0.07367039;-0.01000148,0.0658126;0.003119685;-0.04537586,0.09808451;-0.2929364;-0.009191744,0.08466164;-0.5836952;0.06346648,0.0971744;-0.6135857;0.004636809,-0.07510102;0.005190059;-0.02707211,-0.09262028;-0.29314;-0.000760803,-0.08762632;-0.5870631;0.05910768,-0.09015381;-0.618495;0.00112091,0.01665671;0.3992311;0.01717752,0;0;0,-0.0004671725;0.199212;0.01773094,-0.0006188787;0.4988145;0.03222694,0.1078293;0.3763404;-0.01620202,0.1920905;0.2241289;-0.1148514,0.26671;0.08554743;-0.3090861,-0.1124913;0.3600107;0.0102707,-0.1610729;0.1663097;0.02121402,-0.1978645;-0.08077709;0.01149353,0.06947327;0.006875236;-0.03906655,0.09177117;-0.289708;0.0001917854,0.0833104;-0.5827355;0.06393535,0.1011;-0.6089852;0.001730006,-0.07281143;0.001246884;-0.0331201,-0.09660272;-0.2964714;-0.004874608,-0.09325381;-0.5903654;0.05525089,-0.09097556;-0.6154945;-0.01070687,-0.0006558829;0.3988418;0.02989198,57.64639
-0;0;0,0.008466265;0.1994638;0.01193786,0.02102908;0.499119;0.01642713,0.1245857;0.3755593;-0.02949222,0.1952797;0.2325669;-0.1501385,0.2604055;0.1379215;-0.3721765,-0.09821111;0.3675778;0.003640947,-0.1543642;0.1767588;0.02449538,-0.1762605;-0.07156423;0.005620565,0.06584314;0.003100656;-0.04533284,0.09853925;-0.2929067;-0.009130575,0.08561187;-0.5837194;0.06340153,0.09719744;-0.6141647;0.005140696,-0.07511802;0.005210518;-0.02702098,-0.09208617;-0.2931704;-0.0009268615,-0.08745414;-0.5871032;0.05892369,-0.08983099;-0.6183769;0.0007091798,0.01671517;0.3992174;0.01745721,0;0;0,-0.0004671725;0.199212;0.01773094,-0.0006188787;0.4988145;0.03222694,0.1078293;0.3763404;-0.01620202,0.1920905;0.2241289;-0.1148514,0.26671;0.08554743;-0.3090861,-0.1124913;0.3600107;0.0102707,-0.1610729;0.1663097;0.02121402,-0.1978645;-0.08077709;0.01149353,0.06947327;0.006875236;-0.03906655,0.09177117;-0.289708;0.0001917854,0.0833104;-0.5827355;0.06393535,0.1011;-0.6089852;0.001730006,-0.07281143;0.001246884;-0.0331201,-0.09660272;-0.2964714;-0.004874608,-0.09325381;-0.5903654;0.05525089,-0.09097556;-0.6154945;-0.01070687,-0.0006558829;0.3988418;0.02989198,57.66836
-0;0;0,0.008436746;0.1994659;0.0119245,0.02102681;0.4991198;0.01640429,0.123567;0.3748596;-0.03142593,0.1967202;0.2331815;-0.1521568,0.2598451;0.1400908;-0.3754265,-0.09856295;0.3682031;0.005192958,-0.1440348;0.1735489;0.01167795,-0.1794524;-0.07320142;-0.007293077,0.06572659;0.003073564;-0.0455035,0.09872133;-0.2928741;-0.009084847,0.0858058;-0.5837145;0.06333791,0.097114;-0.6142107;0.005092826,-0.07529984;0.0053009;-0.02649216,-0.09168322;-0.2931736;-0.001104617,-0.08741744;-0.5871102;0.05875483,-0.099495;-0.5545149;-0.03897545,0.01671042;0.3992184;0.01744451,0;0;0,-0.0004510849;0.1992086;0.01776907,-0.0005772722;0.4988107;0.03227013,0.1076161;0.3762841;-0.01670735,0.1920836;0.2262225;-0.1184264,0.2671015;0.09590665;-0.3181514,-0.1124333;0.3596589;0.01087981,-0.1614067;0.1660662;0.02199273,-0.197969;-0.08102526;0.01155273,0.06936868;0.006884657;-0.03925031,0.09174846;-0.2896771;0.0001229718,0.08325768;-0.5826724;0.06401142,0.1004271;-0.6080841;0.0006215125,-0.07290313;0.00122331;-0.03291864,-0.09660238;-0.2965136;-0.004792308,-0.09334236;-0.5904158;0.05529825,-0.09091225;-0.6155543;-0.01064342,-0.000621958;0.3988379;0.02993853,57.6904
-0;0;0,0.008436746;0.1994659;0.0119245,0.02102681;0.4991198;0.01640429,0.123567;0.3748596;-0.03142593,0.1967202;0.2331815;-0.1521568,0.2598451;0.1400908;-0.3754265,-0.09856295;0.3682031;0.005192958,-0.1440348;0.1735489;0.01167795,-0.1794524;-0.07320142;-0.007293077,0.06572659;0.003073564;-0.0455035,0.09872133;-0.2928741;-0.009084847,0.0858058;-0.5837145;0.06333791,0.097114;-0.6142107;0.005092826,-0.07529984;0.0053009;-0.02649216,-0.09168322;-0.2931736;-0.001104617,-0.08741744;-0.5871102;0.05875483,-0.099495;-0.5545149;-0.03897545,0.01671042;0.3992184;0.01744451,0;0;0,-0.0004510849;0.1992086;0.01776907,-0.0005772722;0.4988107;0.03227013,0.1076161;0.3762841;-0.01670735,0.1920836;0.2262225;-0.1184264,0.2671015;0.09590665;-0.3181514,-0.1124333;0.3596589;0.01087981,-0.1614067;0.1660662;0.02199273,-0.197969;-0.08102526;0.01155273,0.06936868;0.006884657;-0.03925031,0.09174846;-0.2896771;0.0001229718,0.08325768;-0.5826724;0.06401142,0.1004271;-0.6080841;0.0006215125,-0.07290313;0.00122331;-0.03291864,-0.09660238;-0.2965136;-0.004792308,-0.09334236;-0.5904158;0.05529825,-0.09091225;-0.6155543;-0.01064342,-0.000621958;0.3988379;0.02993853,57.70319
-0;0;0,0.008349009;0.1994676;0.01195788,0.02084877;0.499124;0.01650279,0.124122;0.3751481;-0.02994054,0.1958559;0.2354386;-0.1537772,0.2538618;0.1557239;-0.383518,-0.09874729;0.3681585;0.005831237,-0.1442161;0.1734981;0.01214866,-0.1783483;-0.07337037;-0.007623752,0.06567241;0.003023179;-0.04558503,0.09888707;-0.2929058;-0.009213928,0.08615993;-0.583728;0.06331517,0.09738287;-0.6142196;0.005047359,-0.07539821;0.005378034;-0.02619516,-0.09148618;-0.2931583;-0.001350643,-0.08709047;-0.5869639;0.05913887,-0.09893861;-0.5543639;-0.03862033,0.01657101;0.3992208;0.01752831,0;0;0,-0.0004510849;0.1992086;0.01776907,-0.0005772722;0.4988107;0.03227013,0.1076161;0.3762841;-0.01670735,0.1920836;0.2262225;-0.1184264,0.2671015;0.09590665;-0.3181514,-0.1124333;0.3596589;0.01087981,-0.1614067;0.1660662;0.02199273,-0.197969;-0.08102526;0.01155273,0.06936868;0.006884657;-0.03925031,0.09174846;-0.2896771;0.0001229718,0.08325768;-0.5826724;0.06401142,0.1004271;-0.6080841;0.0006215125,-0.07290313;0.00122331;-0.03291864,-0.09660238;-0.2965136;-0.004792308,-0.09334236;-0.5904158;0.05529825,-0.09091225;-0.6155543;-0.01064342,-0.000621958;0.3988379;0.02993853,57.72445
-0;0;0,0.008349009;0.1994676;0.01195788,0.02084877;0.499124;0.01650279,0.124122;0.3751481;-0.02994054,0.1958559;0.2354386;-0.1537772,0.2538618;0.1557239;-0.383518,-0.09874729;0.3681585;0.005831237,-0.1442161;0.1734981;0.01214866,-0.1783483;-0.07337037;-0.007623752,0.06567241;0.003023179;-0.04558503,0.09888707;-0.2929058;-0.009213928,0.08615993;-0.583728;0.06331517,0.09738287;-0.6142196;0.005047359,-0.07539821;0.005378034;-0.02619516,-0.09148618;-0.2931583;-0.001350643,-0.08709047;-0.5869639;0.05913887,-0.09893861;-0.5543639;-0.03862033,0.01657101;0.3992208;0.01752831,0;0;0,-0.0004300956;0.1992089;0.01776644,-0.0004923731;0.4988134;0.0322119,0.1074573;0.3765942;-0.01738011,0.1919123;0.2291669;-0.122891,0.2671704;0.1026332;-0.3249441,-0.1124897;0.3597482;0.01133769,-0.1614396;0.1661267;0.02204454,-0.1977532;-0.0810141;0.01190924,0.06913476;0.007010411;-0.03963885,0.09152146;-0.2895119;2.712011E-05,0.08257899;-0.5824965;0.06390236,0.1003498;-0.6080249;0.0008178204,-0.07296958;0.001280174;-0.03276892,-0.09660477;-0.2965121;-0.005179727,-0.09355169;-0.5903669;0.05515288,-0.09144417;-0.6155666;-0.01073006,-0.0005657372;0.39884;0.02990779,57.73598
-0;0;0,0.008309374;0.1994688;0.01196404,0.02070392;0.4991291;0.01654899,0.1229076;0.37479;-0.03218244,0.1970568;0.2365865;-0.1562861,0.2551438;0.1550087;-0.3853515,-0.09846855;0.3675692;0.003900819,-0.1533829;0.1764139;0.02497344,-0.1868746;-0.07034603;0.002886076,0.06563471;0.003054122;-0.04563722,0.0988635;-0.2928476;-0.009058021,0.08621103;-0.5837033;0.06334974,0.0974388;-0.6141819;0.005064905,-0.07544415;0.005300663;-0.02607839,-0.0913989;-0.2933051;-0.001994152,-0.08714943;-0.5869962;0.05905887,-0.09906051;-0.5543954;-0.03869282,0.01647216;0.3992238;0.01756172,0;0;0,-0.0004300956;0.1992089;0.01776644,-0.0004923731;0.4988134;0.0322119,0.1074573;0.3765942;-0.01738011,0.1919123;0.2291669;-0.122891,0.2671704;0.1026332;-0.3249441,-0.1124897;0.3597482;0.01133769,-0.1614396;0.1661267;0.02204454,-0.1977532;-0.0810141;0.01190924,0.06913476;0.007010411;-0.03963885,0.09152146;-0.2895119;2.712011E-05,0.08257899;-0.5824965;0.06390236,0.1003498;-0.6080249;0.0008178204,-0.07296958;0.001280174;-0.03276892,-0.09660477;-0.2965121;-0.005179727,-0.09355169;-0.5903669;0.05515288,-0.09144417;-0.6155666;-0.01073006,-0.0005657372;0.39884;0.02990779,57.75906
-0;0;0,0.008309374;0.1994688;0.01196404,0.02070392;0.4991291;0.01654899,0.1229076;0.37479;-0.03218244,0.1970568;0.2365865;-0.1562861,0.2551438;0.1550087;-0.3853515,-0.09846855;0.3675692;0.003900819,-0.1533829;0.1764139;0.02497344,-0.1868746;-0.07034603;0.002886076,0.06563471;0.003054122;-0.04563722,0.0988635;-0.2928476;-0.009058021,0.08621103;-0.5837033;0.06334974,0.0974388;-0.6141819;0.005064905,-0.07544415;0.005300663;-0.02607839,-0.0913989;-0.2933051;-0.001994152,-0.08714943;-0.5869962;0.05905887,-0.09906051;-0.5543954;-0.03869282,0.01647216;0.3992238;0.01756172,0;0;0,-0.0004300956;0.1992089;0.01776644,-0.0004923731;0.4988134;0.0322119,0.1074573;0.3765942;-0.01738011,0.1919123;0.2291669;-0.122891,0.2671704;0.1026332;-0.3249441,-0.1124897;0.3597482;0.01133769,-0.1614396;0.1661267;0.02204454,-0.1977532;-0.0810141;0.01190924,0.06913476;0.007010411;-0.03963885,0.09152146;-0.2895119;2.712011E-05,0.08257899;-0.5824965;0.06390236,0.1003498;-0.6080249;0.0008178204,-0.07296958;0.001280174;-0.03276892,-0.09660477;-0.2965121;-0.005179727,-0.09355169;-0.5903669;0.05515288,-0.09144417;-0.6155666;-0.01073006,-0.0005657372;0.39884;0.02990779,57.77993
-0;0;0,0.008309374;0.1994688;0.01196404,0.02070392;0.4991291;0.01654899,0.1229076;0.37479;-0.03218244,0.1970568;0.2365865;-0.1562861,0.2551438;0.1550087;-0.3853515,-0.09846855;0.3675692;0.003900819,-0.1533829;0.1764139;0.02497344,-0.1868746;-0.07034603;0.002886076,0.06563471;0.003054122;-0.04563722,0.0988635;-0.2928476;-0.009058021,0.08621103;-0.5837033;0.06334974,0.0974388;-0.6141819;0.005064905,-0.07544415;0.005300663;-0.02607839,-0.0913989;-0.2933051;-0.001994152,-0.08714943;-0.5869962;0.05905887,-0.09906051;-0.5543954;-0.03869282,0.01647216;0.3992238;0.01756172,0;0;0,-0.000380142;0.1992064;0.01779472,-0.0003504377;0.4988098;0.03226198,0.1073516;0.3765089;-0.01778546,0.1924761;0.2313947;-0.1259321,0.2676296;0.1098076;-0.3310382,-0.1124581;0.3598407;0.01164984,-0.1615625;0.1662504;0.02221186,-0.1979157;-0.0808832;0.01204274,0.0689938;0.00696461;-0.03989172,0.09147699;-0.2895279;-5.863979E-05,0.08251652;-0.5825137;0.06380865,0.1004123;-0.6081089;0.0008394793,-0.07317521;0.001315203;-0.03230569,-0.0966576;-0.2965324;-0.005187305,-0.0936998;-0.5904129;0.05502489,-0.09200138;-0.6186073;-0.007286705,-0.0004565737;0.3988366;0.02995207,57.79137
-0;0;0,0.008236974;0.1994724;0.01195505,0.02054526;0.4991361;0.01653269,0.1221856;0.3748682;-0.0334891,0.1973377;0.2374842;-0.1578989,0.2533945;0.1581452;-0.3882529,-0.09859458;0.3672838;0.004619126,-0.1538718;0.1761832;0.02523475,-0.1870922;-0.0705497;0.002447054,0.06553763;0.003047919;-0.04577696,0.09899353;-0.2928167;-0.009105023,0.08655626;-0.5837131;0.06317665,0.09725457;-0.6129583;0.003128823,-0.07553416;0.005276011;-0.02582157,-0.09128069;-0.2933577;-0.001947837,-0.08706138;-0.5870343;0.05917672,-0.09967206;-0.5544251;-0.03848869,0.01634972;0.3992293;0.01755308,0;0;0,-0.000380142;0.1992064;0.01779472,-0.0003504377;0.4988098;0.03226198,0.1073516;0.3765089;-0.01778546,0.1924761;0.2313947;-0.1259321,0.2676296;0.1098076;-0.3310382,-0.1124581;0.3598407;0.01164984,-0.1615625;0.1662504;0.02221186,-0.1979157;-0.0808832;0.01204274,0.0689938;0.00696461;-0.03989172,0.09147699;-0.2895279;-5.863979E-05,0.08251652;-0.5825137;0.06380865,0.1004123;-0.6081089;0.0008394793,-0.07317521;0.001315203;-0.03230569,-0.0966576;-0.2965324;-0.005187305,-0.0936998;-0.5904129;0.05502489,-0.09200138;-0.6186073;-0.007286705,-0.0004565737;0.3988366;0.02995207,57.80704
-0;0;0,0.008214825;0.1994725;0.01196892,0.02048548;0.4991372;0.0165811,0.1234101;0.3755262;-0.03106655,0.1956497;0.2397796;-0.1589505,0.2496137;0.1674795;-0.392104,-0.0987239;0.3673799;0.005221454,-0.1535836;0.1760305;0.02460745,-0.1868983;-0.07071511;0.002096353,0.06550377;0.003061939;-0.04582445,0.09901187;-0.2927944;-0.009133369,0.0865951;-0.5836682;0.06324246,0.09731362;-0.6128822;0.003157075,-0.07554749;0.005272953;-0.02578316,-0.09111729;-0.293388;-0.002135538,-0.08722546;-0.5870979;0.05885087,-0.09923898;-0.5544928;-0.03888906,0.01630913;0.3992295;0.01759076,0;0;0,-0.000380142;0.1992064;0.01779472,-0.0003504377;0.4988098;0.03226198,0.1073516;0.3765089;-0.01778546,0.1924761;0.2313947;-0.1259321,0.2676296;0.1098076;-0.3310382,-0.1124581;0.3598407;0.01164984,-0.1615625;0.1662504;0.02221186,-0.1979157;-0.0808832;0.01204274,0.0689938;0.00696461;-0.03989172,0.09147699;-0.2895279;-5.863979E-05,0.08251652;-0.5825137;0.06380865,0.1004123;-0.6081089;0.0008394793,-0.07317521;0.001315203;-0.03230569,-0.0966576;-0.2965324;-0.005187305,-0.0936998;-0.5904129;0.05502489,-0.09200138;-0.6186073;-0.007286705,-0.0004565737;0.3988366;0.02995207,57.82415
-0;0;0,0.008214825;0.1994725;0.01196892,0.02048548;0.4991372;0.0165811,0.1234101;0.3755262;-0.03106655,0.1956497;0.2397796;-0.1589505,0.2496137;0.1674795;-0.392104,-0.0987239;0.3673799;0.005221454,-0.1535836;0.1760305;0.02460745,-0.1868983;-0.07071511;0.002096353,0.06550377;0.003061939;-0.04582445,0.09901187;-0.2927944;-0.009133369,0.0865951;-0.5836682;0.06324246,0.09731362;-0.6128822;0.003157075,-0.07554749;0.005272953;-0.02578316,-0.09111729;-0.293388;-0.002135538,-0.08722546;-0.5870979;0.05885087,-0.09923898;-0.5544928;-0.03888906,0.01630913;0.3992295;0.01759076,0;0;0,-0.0003641445;0.1992028;0.01783559,-0.000310466;0.498803;0.03236986,0.1071285;0.3764441;-0.01824577,0.1924888;0.2341384;-0.1298822,0.2676604;0.1169884;-0.3375481,-0.1125169;0.3598753;0.0122099,-0.1616444;0.1662982;0.0229066,-0.1972128;-0.08099446;0.01389536,0.06870276;0.007117246;-0.04036427,0.09136141;-0.2893048;-0.0001081973,0.08246733;-0.5822488;0.06395978,0.1002245;-0.6085919;0.001859691,-0.07324931;0.001303891;-0.03213781,-0.09662923;-0.2965653;-0.005168861,-0.0937872;-0.5904621;0.05496921,-0.09216002;-0.618627;-0.007381424,-0.0004245095;0.3988303;0.03003686,57.83593
-0;0;0,0.008214825;0.1994725;0.01196892,0.02048548;0.4991372;0.0165811,0.1234101;0.3755262;-0.03106655,0.1956497;0.2397796;-0.1589505,0.2496137;0.1674795;-0.392104,-0.0987239;0.3673799;0.005221454,-0.1535836;0.1760305;0.02460745,-0.1868983;-0.07071511;0.002096353,0.06550377;0.003061939;-0.04582445,0.09901187;-0.2927944;-0.009133369,0.0865951;-0.5836682;0.06324246,0.09731362;-0.6128822;0.003157075,-0.07554749;0.005272953;-0.02578316,-0.09111729;-0.293388;-0.002135538,-0.08722546;-0.5870979;0.05885087,-0.09923898;-0.5544928;-0.03888906,0.01630913;0.3992295;0.01759076,0;0;0,-0.0003641445;0.1992028;0.01783559,-0.000310466;0.498803;0.03236986,0.1071285;0.3764441;-0.01824577,0.1924888;0.2341384;-0.1298822,0.2676604;0.1169884;-0.3375481,-0.1125169;0.3598753;0.0122099,-0.1616444;0.1662982;0.0229066,-0.1972128;-0.08099446;0.01389536,0.06870276;0.007117246;-0.04036427,0.09136141;-0.2893048;-0.0001081973,0.08246733;-0.5822488;0.06395978,0.1002245;-0.6085919;0.001859691,-0.07324931;0.001303891;-0.03213781,-0.09662923;-0.2965653;-0.005168861,-0.0937872;-0.5904621;0.05496921,-0.09216002;-0.618627;-0.007381424,-0.0004245095;0.3988303;0.03003686,57.84731
-0;0;0,0.008234601;0.1994743;0.01192384,0.02058123;0.4991367;0.01648093,0.1222889;0.3755696;-0.03371524,0.1967744;0.2400687;-0.1605671,0.2453944;0.1725867;-0.396326,-0.09872933;0.3675184;0.00553764,-0.1537007;0.1761884;0.02479866,-0.1868127;-0.07052608;0.001656068,0.06542208;0.003000415;-0.04594506,0.09923421;-0.2928283;-0.009309791,0.0869479;-0.5836775;0.0631868,0.09750455;-0.6127944;0.002944976,-0.07563458;0.005360203;-0.0255084,-0.09094089;-0.2933435;-0.002231902,-0.08710314;-0.5870863;0.05859946,-0.08801956;-0.6175839;-0.0007241331,0.01638357;0.3992301;0.017512,0;0;0,-0.0003641445;0.1992028;0.01783559,-0.000310466;0.498803;0.03236986,0.1071285;0.3764441;-0.01824577,0.1924888;0.2341384;-0.1298822,0.2676604;0.1169884;-0.3375481,-0.1125169;0.3598753;0.0122099,-0.1616444;0.1662982;0.0229066,-0.1972128;-0.08099446;0.01389536,0.06870276;0.007117246;-0.04036427,0.09136141;-0.2893048;-0.0001081973,0.08246733;-0.5822488;0.06395978,0.1002245;-0.6085919;0.001859691,-0.07324931;0.001303891;-0.03213781,-0.09662923;-0.2965653;-0.005168861,-0.0937872;-0.5904621;0.05496921,-0.09216002;-0.618627;-0.007381424,-0.0004245095;0.3988303;0.03003686,57.86961
-0;0;0,0.008198156;0.1994752;0.01193482,0.02049294;0.4991388;0.01653939,0.1216424;0.3750995;-0.03463464,0.1968266;0.2412015;-0.16277,0.2433505;0.1733959;-0.3988588,-0.09860051;0.3673884;0.004131949,-0.1523181;0.175869;0.024983,-0.1731802;-0.07267575;0.007946242,0.06539274;0.003050939;-0.04598348,0.09933987;-0.2927476;-0.009230446,0.08698668;-0.5836346;0.06310324,0.09761358;-0.6126726;0.002770338,-0.07567342;0.005300959;-0.02540535,-0.0908597;-0.2934151;-0.002209075,-0.08705682;-0.5872139;0.05835337,-0.08795276;-0.6175879;-0.00113792,0.01631595;0.3992313;0.01755721,0;0;0,-0.0003271026;0.1992003;0.01786438,-0.0001615996;0.4987995;0.03241919,0.1070575;0.3762549;-0.01850143,0.1924979;0.2363662;-0.1330923,0.2668359;0.1256959;-0.3445774,-0.1124054;0.3598177;0.01230318,-0.1657424;0.1677339;0.02839658,-0.1968853;-0.07992832;0.0144855,0.06850103;0.007141983;-0.04070135,0.09124382;-0.2892205;-5.570799E-05,0.08240208;-0.5821769;0.06396227,0.1004388;-0.6089597;0.002488129,-0.07327051;0.001284537;-0.03209021,-0.09642906;-0.2966152;-0.005268076,-0.09372467;-0.5904958;0.05495562,-0.09193826;-0.6178845;-0.008351631,-0.000323399;0.3988271;0.03007677,57.89156
-0;0;0,0.008198156;0.1994752;0.01193482,0.02049294;0.4991388;0.01653939,0.1216424;0.3750995;-0.03463464,0.1968266;0.2412015;-0.16277,0.2433505;0.1733959;-0.3988588,-0.09860051;0.3673884;0.004131949,-0.1523181;0.175869;0.024983,-0.1731802;-0.07267575;0.007946242,0.06539274;0.003050939;-0.04598348,0.09933987;-0.2927476;-0.009230446,0.08698668;-0.5836346;0.06310324,0.09761358;-0.6126726;0.002770338,-0.07567342;0.005300959;-0.02540535,-0.0908597;-0.2934151;-0.002209075,-0.08705682;-0.5872139;0.05835337,-0.08795276;-0.6175879;-0.00113792,0.01631595;0.3992313;0.01755721,0;0;0,-0.0003271026;0.1992003;0.01786438,-0.0001615996;0.4987995;0.03241919,0.1070575;0.3762549;-0.01850143,0.1924979;0.2363662;-0.1330923,0.2668359;0.1256959;-0.3445774,-0.1124054;0.3598177;0.01230318,-0.1657424;0.1677339;0.02839658,-0.1968853;-0.07992832;0.0144855,0.06850103;0.007141983;-0.04070135,0.09124382;-0.2892205;-5.570799E-05,0.08240208;-0.5821769;0.06396227,0.1004388;-0.6089597;0.002488129,-0.07327051;0.001284537;-0.03209021,-0.09642906;-0.2966152;-0.005268076,-0.09372467;-0.5904958;0.05495562,-0.09193826;-0.6178845;-0.008351631,-0.000323399;0.3988271;0.03007677,57.90316
-0;0;0,0.008232519;0.199475;0.01191404,0.02055136;0.4991378;0.01650655,0.1211767;0.3745666;-0.03544872,0.196218;0.2422592;-0.1653084,0.2412018;0.1722002;-0.4010375,-0.09855098;0.367138;0.004736851,-0.1525375;0.1756234;0.02492657,-0.1872885;-0.07071649;0.0002483781,0.06531933;0.003019871;-0.04608975,0.09951693;-0.292742;-0.009272821,0.08709095;-0.5836114;0.0631189,0.09781247;-0.6126562;0.002811588,-0.07571257;0.005333051;-0.02528173,-0.09161079;-0.2932779;-0.001224462,-0.086681;-0.5872041;0.05863451,-0.08761483;-0.6176044;-0.0008205734,0.01636805;0.3992305;0.01753088,0;0;0,-0.0003271026;0.1992003;0.01786438,-0.0001615996;0.4987995;0.03241919,0.1070575;0.3762549;-0.01850143,0.1924979;0.2363662;-0.1330923,0.2668359;0.1256959;-0.3445774,-0.1124054;0.3598177;0.01230318,-0.1657424;0.1677339;0.02839658,-0.1968853;-0.07992832;0.0144855,0.06850103;0.007141983;-0.04070135,0.09124382;-0.2892205;-5.570799E-05,0.08240208;-0.5821769;0.06396227,0.1004388;-0.6089597;0.002488129,-0.07327051;0.001284537;-0.03209021,-0.09642906;-0.2966152;-0.005268076,-0.09372467;-0.5904958;0.05495562,-0.09193826;-0.6178845;-0.008351631,-0.000323399;0.3988271;0.03007677,57.92534
-0;0;0,0.008232519;0.199475;0.01191404,0.02055136;0.4991378;0.01650655,0.1211767;0.3745666;-0.03544872,0.196218;0.2422592;-0.1653084,0.2412018;0.1722002;-0.4010375,-0.09855098;0.367138;0.004736851,-0.1525375;0.1756234;0.02492657,-0.1872885;-0.07071649;0.0002483781,0.06531933;0.003019871;-0.04608975,0.09951693;-0.292742;-0.009272821,0.08709095;-0.5836114;0.0631189,0.09781247;-0.6126562;0.002811588,-0.07571257;0.005333051;-0.02528173,-0.09161079;-0.2932779;-0.001224462,-0.086681;-0.5872041;0.05863451,-0.08761483;-0.6176044;-0.0008205734,0.01636805;0.3992305;0.01753088,0;0;0,-0.0003177663;0.1991978;0.01789184,-0.0001224108;0.4987928;0.0325379,0.1069166;0.37624;-0.01879039,0.1924694;0.2394535;-0.1369859,0.2665705;0.129413;-0.3488823,-0.1123704;0.3597419;0.01250884,-0.1611765;0.1661592;0.0244967,-0.1964432;-0.08114757;0.01471761,0.06827817;0.007157537;-0.04107141,0.09105492;-0.2891447;-8.143485E-06,0.08087134;-0.5820079;0.06423722,0.1011092;-0.6080634;0.002544578,-0.07330275;0.001259025;-0.03201752,-0.09643261;-0.296647;-0.005240614,-0.09373526;-0.590539;0.05492752,-0.09197897;-0.6173152;-0.009121992,-0.0002934236;0.3988212;0.03015959,57.93658
-0;0;0,0.008232519;0.199475;0.01191404,0.02055136;0.4991378;0.01650655,0.1211767;0.3745666;-0.03544872,0.196218;0.2422592;-0.1653084,0.2412018;0.1722002;-0.4010375,-0.09855098;0.367138;0.004736851,-0.1525375;0.1756234;0.02492657,-0.1872885;-0.07071649;0.0002483781,0.06531933;0.003019871;-0.04608975,0.09951693;-0.292742;-0.009272821,0.08709095;-0.5836114;0.0631189,0.09781247;-0.6126562;0.002811588,-0.07571257;0.005333051;-0.02528173,-0.09161079;-0.2932779;-0.001224462,-0.086681;-0.5872041;0.05863451,-0.08761483;-0.6176044;-0.0008205734,0.01636805;0.3992305;0.01753088,0;0;0,-0.0003177663;0.1991978;0.01789184,-0.0001224108;0.4987928;0.0325379,0.1069166;0.37624;-0.01879039,0.1924694;0.2394535;-0.1369859,0.2665705;0.129413;-0.3488823,-0.1123704;0.3597419;0.01250884,-0.1611765;0.1661592;0.0244967,-0.1964432;-0.08114757;0.01471761,0.06827817;0.007157537;-0.04107141,0.09105492;-0.2891447;-8.143485E-06,0.08087134;-0.5820079;0.06423722,0.1011092;-0.6080634;0.002544578,-0.07330275;0.001259025;-0.03201752,-0.09643261;-0.296647;-0.005240614,-0.09373526;-0.590539;0.05492752,-0.09197897;-0.6173152;-0.009121992,-0.0002934236;0.3988212;0.03015959,57.948
-0;0;0,0.008177151;0.199473;0.01198506,0.02029726;0.4991413;0.01678457,0.1228979;0.3753739;-0.03173227,0.1932429;0.2448545;-0.165957,0.2385361;0.1776018;-0.402443,-0.09863589;0.3671806;0.004074725,-0.1523515;0.175808;0.02623682,-0.1863328;-0.07055639;0.0007444769,0.06522352;0.003111736;-0.04621914,0.09943467;-0.2926216;-0.009186853,0.08686459;-0.5834243;0.06344764,0.09748144;-0.6121073;0.002650686,-0.07574659;0.005285983;-0.02518952,-0.09170608;-0.2933342;-0.001287231,-0.08664657;-0.5871595;0.05905408,-0.09846909;-0.5545459;-0.03871065,0.01619695;0.3992298;0.01772265,0;0;0,-0.0003177663;0.1991978;0.01789184,-0.0001224108;0.4987928;0.0325379,0.1069166;0.37624;-0.01879039,0.1924694;0.2394535;-0.1369859,0.2665705;0.129413;-0.3488823,-0.1123704;0.3597419;0.01250884,-0.1611765;0.1661592;0.0244967,-0.1964432;-0.08114757;0.01471761,0.06827817;0.007157537;-0.04107141,0.09105492;-0.2891447;-8.143485E-06,0.08087134;-0.5820079;0.06423722,0.1011092;-0.6080634;0.002544578,-0.07330275;0.001259025;-0.03201752,-0.09643261;-0.296647;-0.005240614,-0.09373526;-0.590539;0.05492752,-0.09197897;-0.6173152;-0.009121992,-0.0002934236;0.3988212;0.03015959,57.9701
-0;0;0,0.008100277;0.1994763;0.011983,0.02015305;0.4991472;0.01677332,0.1219947;0.3755592;-0.03347002,0.193712;0.2467414;-0.1686092,0.2392284;0.1773564;-0.4044354,-0.09918418;0.36799;0.005922003,-0.1529035;0.1763974;0.02608399,-0.187291;-0.06991822;0.0006656274,0.06513687;0.003130014;-0.04633993,0.09952977;-0.292583;-0.009313766,0.08712021;-0.5834618;0.06304318,0.09765482;-0.6125037;0.002699129,-0.07575999;0.005280626;-0.02515031,-0.09182131;-0.2932917;-0.0007253438,-0.08641201;-0.5871997;0.05918171,-0.09934255;-0.5545738;-0.03844483,0.01607454;0.3992349;0.01771973,0;0;0,-0.0002527185;0.1991939;0.01793683,0.0001074291;0.4987853;0.0326503,0.1069154;0.3763067;-0.01910538,0.1920573;0.2410523;-0.139343,0.266015;0.1370406;-0.3543124,-0.1122979;0.359883;0.01289639,-0.1652094;0.1676203;0.02824064,-0.1954793;-0.08025482;0.01633957,0.06824092;0.007151928;-0.04113425,0.0910415;-0.2891253;9.609014E-05,0.08076346;-0.5820065;0.06424426,0.101069;-0.6080735;0.002588037,-0.0733477;0.001282873;-0.03191346,-0.09637321;-0.296641;-0.005245157,-0.09382258;-0.5905376;0.05490712,-0.09285175;-0.6184618;-0.007757727,-0.0001232767;0.3988144;0.03025166,57.99225
-0;0;0,0.008100277;0.1994763;0.011983,0.02015305;0.4991472;0.01677332,0.1219947;0.3755592;-0.03347002,0.193712;0.2467414;-0.1686092,0.2392284;0.1773564;-0.4044354,-0.09918418;0.36799;0.005922003,-0.1529035;0.1763974;0.02608399,-0.187291;-0.06991822;0.0006656274,0.06513687;0.003130014;-0.04633993,0.09952977;-0.292583;-0.009313766,0.08712021;-0.5834618;0.06304318,0.09765482;-0.6125037;0.002699129,-0.07575999;0.005280626;-0.02515031,-0.09182131;-0.2932917;-0.0007253438,-0.08641201;-0.5871997;0.05918171,-0.09934255;-0.5545738;-0.03844483,0.01607454;0.3992349;0.01771973,0;0;0,-0.0002527185;0.1991939;0.01793683,0.0001074291;0.4987853;0.0326503,0.1069154;0.3763067;-0.01910538,0.1920573;0.2410523;-0.139343,0.266015;0.1370406;-0.3543124,-0.1122979;0.359883;0.01289639,-0.1652094;0.1676203;0.02824064,-0.1954793;-0.08025482;0.01633957,0.06824092;0.007151928;-0.04113425,0.0910415;-0.2891253;9.609014E-05,0.08076346;-0.5820065;0.06424426,0.101069;-0.6080735;0.002588037,-0.0733477;0.001282873;-0.03191346,-0.09637321;-0.296641;-0.005245157,-0.09382258;-0.5905376;0.05490712,-0.09285175;-0.6184618;-0.007757727,-0.0001232767;0.3988144;0.03025166,58.00401
-0;0;0,0.008069385;0.1994721;0.01207337,0.02009969;0.4991405;0.01708495,0.1211587;0.3754952;-0.03480904,0.1934368;0.2481088;-0.1710022,0.2418995;0.1836999;-0.4076514,-0.09902716;0.3678256;0.004659612,-0.1521117;0.1762136;0.02626683,-0.1878773;-0.07009877;0.002792934,0.06506304;0.003126926;-0.04644376,0.09963775;-0.2925337;-0.009169474,0.08719211;-0.5834523;0.06302132,0.09797964;-0.6126215;0.002889302,-0.07584357;0.005270959;-0.02489922,-0.09182768;-0.2933179;-0.0006249696,-0.08621374;-0.5871986;0.05939671,-0.09919616;-0.5545645;-0.0382244,0.01602591;0.3992273;0.01795345,0;0;0,-0.0002527185;0.1991939;0.01793683,0.0001074291;0.4987853;0.0326503,0.1069154;0.3763067;-0.01910538,0.1920573;0.2410523;-0.139343,0.266015;0.1370406;-0.3543124,-0.1122979;0.359883;0.01289639,-0.1652094;0.1676203;0.02824064,-0.1954793;-0.08025482;0.01633957,0.06824092;0.007151928;-0.04113425,0.0910415;-0.2891253;9.609014E-05,0.08076346;-0.5820065;0.06424426,0.101069;-0.6080735;0.002588037,-0.0733477;0.001282873;-0.03191346,-0.09637321;-0.296641;-0.005245157,-0.09382258;-0.5905376;0.05490712,-0.09285175;-0.6184618;-0.007757727,-0.0001232767;0.3988144;0.03025166,58.02573
-0;0;0,0.008069385;0.1994721;0.01207337,0.02009969;0.4991405;0.01708495,0.1211587;0.3754952;-0.03480904,0.1934368;0.2481088;-0.1710022,0.2418995;0.1836999;-0.4076514,-0.09902716;0.3678256;0.004659612,-0.1521117;0.1762136;0.02626683,-0.1878773;-0.07009877;0.002792934,0.06506304;0.003126926;-0.04644376,0.09963775;-0.2925337;-0.009169474,0.08719211;-0.5834523;0.06302132,0.09797964;-0.6126215;0.002889302,-0.07584357;0.005270959;-0.02489922,-0.09182768;-0.2933179;-0.0006249696,-0.08621374;-0.5871986;0.05939671,-0.09919616;-0.5545645;-0.0382244,0.01602591;0.3992273;0.01795345,0;0;0,-0.0002178484;0.1991926;0.01795159,0.0001903503;0.4987819;0.03271172,0.1068747;0.3762874;-0.01928123,0.1915695;0.244239;-0.1433377,0.2636387;0.1532671;-0.3647652,-0.1123549;0.360103;0.01321654,-0.1655025;0.167889;0.02835368,-0.1953748;-0.08005106;0.01680613,0.06814726;0.007117503;-0.04129519,0.09118231;-0.2891428;-7.351115E-05,0.08089236;-0.5820217;0.06408308,0.1010896;-0.6086016;0.003029015,-0.07344149;0.00139355;-0.03169235,-0.09636206;-0.2965618;-0.005286237,-0.09392156;-0.5904574;0.05487552,-0.09334444;-0.6184459;-0.007714011,-6.038454E-05;0.3988115;0.0302926,58.03737
-0;0;0,0.008069385;0.1994721;0.01207337,0.02009969;0.4991405;0.01708495,0.1211587;0.3754952;-0.03480904,0.1934368;0.2481088;-0.1710022,0.2418995;0.1836999;-0.4076514,-0.09902716;0.3678256;0.004659612,-0.1521117;0.1762136;0.02626683,-0.1878773;-0.07009877;0.002792934,0.06506304;0.003126926;-0.04644376,0.09963775;-0.2925337;-0.009169474,0.08719211;-0.5834523;0.06302132,0.09797964;-0.6126215;0.002889302,-0.07584357;0.005270959;-0.02489922,-0.09182768;-0.2933179;-0.0006249696,-0.08621374;-0.5871986;0.05939671,-0.09919616;-0.5545645;-0.0382244,0.01602591;0.3992273;0.01795345,0;0;0,-0.0002178484;0.1991926;0.01795159,0.0001903503;0.4987819;0.03271172,0.1068747;0.3762874;-0.01928123,0.1915695;0.244239;-0.1433377,0.2636387;0.1532671;-0.3647652,-0.1123549;0.360103;0.01321654,-0.1655025;0.167889;0.02835368,-0.1953748;-0.08005106;0.01680613,0.06814726;0.007117503;-0.04129519,0.09118231;-0.2891428;-7.351115E-05,0.08089236;-0.5820217;0.06408308,0.1010896;-0.6086016;0.003029015,-0.07344149;0.00139355;-0.03169235,-0.09636206;-0.2965618;-0.005286237,-0.09392156;-0.5904574;0.05487552,-0.09334444;-0.6184459;-0.007714011,-6.038454E-05;0.3988115;0.0302926,58.04869
-0;0;0,0.008143625;0.1994624;0.01218356,0.02020816;0.4991272;0.01733672,0.1208492;0.3752032;-0.03530139,0.1933675;0.2491665;-0.172618,0.2435894;0.1832387;-0.4084809,-0.09874152;0.3675252;0.003995727,-0.1513682;0.1759063;0.0266369,-0.1854118;-0.07054727;0.002108436,0.06499933;0.003176191;-0.04652955,0.09985085;-0.2924128;-0.008945651,0.08729732;-0.5833136;0.06329786,0.09824538;-0.6121938;0.002816048,-0.07588559;0.005229738;-0.02477958,-0.09192618;-0.2934467;-0.001647944,-0.08621421;-0.5871444;0.05925416,-0.09911963;-0.5545044;-0.03837822,0.0161298;0.3992137;0.01815269,0;0;0,-0.0002178484;0.1991926;0.01795159,0.0001903503;0.4987819;0.03271172,0.1068747;0.3762874;-0.01928123,0.1915695;0.244239;-0.1433377,0.2636387;0.1532671;-0.3647652,-0.1123549;0.360103;0.01321654,-0.1655025;0.167889;0.02835368,-0.1953748;-0.08005106;0.01680613,0.06814726;0.007117503;-0.04129519,0.09118231;-0.2891428;-7.351115E-05,0.08089236;-0.5820217;0.06408308,0.1010896;-0.6086016;0.003029015,-0.07344149;0.00139355;-0.03169235,-0.09636206;-0.2965618;-0.005286237,-0.09392156;-0.5904574;0.05487552,-0.09334444;-0.6184459;-0.007714011,-6.038454E-05;0.3988115;0.0302926,58.07085
-0;0;0,0.008143625;0.1994624;0.01218356,0.02020816;0.4991272;0.01733672,0.1208492;0.3752032;-0.03530139,0.1933675;0.2491665;-0.172618,0.2435894;0.1832387;-0.4084809,-0.09874152;0.3675252;0.003995727,-0.1513682;0.1759063;0.0266369,-0.1854118;-0.07054727;0.002108436,0.06499933;0.003176191;-0.04652955,0.09985085;-0.2924128;-0.008945651,0.08729732;-0.5833136;0.06329786,0.09824538;-0.6121938;0.002816048,-0.07588559;0.005229738;-0.02477958,-0.09192618;-0.2934467;-0.001647944,-0.08621421;-0.5871444;0.05925416,-0.09911963;-0.5545044;-0.03837822,0.0161298;0.3992137;0.01815269,0;0;0,-0.0001603106;0.1991892;0.01798923,0.0005072328;0.4987717;0.03287949,0.1067229;0.3762214;-0.01991971,0.1915907;0.2465231;-0.1463151,0.2634609;0.1548887;-0.367534,-0.1123715;0.3605505;0.01384573,-0.1656655;0.1683474;0.02860166,-0.1950626;-0.07965375;0.01714605,0.06795991;0.007171602;-0.0415935,0.09109046;-0.2890469;-0.0001253262,0.0808924;-0.5819212;0.0640669,0.0999928;-0.6095503;0.003992796,-0.07351384;0.001420435;-0.03152296,-0.09640092;-0.2965641;-0.005419433,-0.09369659;-0.5903614;0.05520965,-0.09302527;-0.6168863;-0.009160168,0.000155266;0.3988027;0.0304135,58.08255
-0;0;0,0.008092735;0.1994628;0.01221014,0.02010297;0.4991288;0.01741526,0.1203986;0.3752469;-0.03596138,0.1929022;0.2498664;-0.1738852,0.2443048;0.1868231;-0.4102817,-0.0987651;0.3674557;0.003700553,-0.1510824;0.1757981;0.02672829,-0.1843195;-0.07071362;0.001683014,0.06498307;0.003190384;-0.04655129,0.09988268;-0.2923885;-0.008932889,0.08736952;-0.5833009;0.06327071,0.09891268;-0.6125841;0.003429819,-0.07590631;0.005203601;-0.02472155,-0.09173441;-0.2935118;-0.001949273,-0.08626006;-0.587181;0.05911207,-0.0992801;-0.554543;-0.03850472,0.01604197;0.3992145;0.01821649,0;0;0,-0.0001603106;0.1991892;0.01798923,0.0005072328;0.4987717;0.03287949,0.1067229;0.3762214;-0.01991971,0.1915907;0.2465231;-0.1463151,0.2634609;0.1548887;-0.367534,-0.1123715;0.3605505;0.01384573,-0.1656655;0.1683474;0.02860166,-0.1950626;-0.07965375;0.01714605,0.06795991;0.007171602;-0.0415935,0.09109046;-0.2890469;-0.0001253262,0.0808924;-0.5819212;0.0640669,0.0999928;-0.6095503;0.003992796,-0.07351384;0.001420435;-0.03152296,-0.09640092;-0.2965641;-0.005419433,-0.09369659;-0.5903614;0.05520965,-0.09302527;-0.6168863;-0.009160168,0.000155266;0.3988027;0.0304135,58.10425
-0;0;0,0.008040507;0.1994633;0.01223733,0.02000107;0.49913;0.01750926,0.1201662;0.3752543;-0.03616943,0.1923931;0.2604175;-0.1831245,0.2402545;0.2060712;-0.4224062,-0.09867837;0.3670318;0.003338029,-0.1509794;0.1754241;0.02681329,-0.1730402;-0.07280743;0.006953266,0.06493723;0.003260222;-0.04661038,0.09988138;-0.2923084;-0.008952979,0.08744113;-0.5832078;0.06331599,0.09833346;-0.6119306;0.002619352,-0.07592441;0.005146734;-0.0246778,-0.09175022;-0.2935877;-0.002155196,-0.08631299;-0.5872408;0.05898671,-0.08710103;-0.6183046;0.0004372224,0.01595448;0.399215;0.01828974,0;0;0,-0.0001603106;0.1991892;0.01798923,0.0005072328;0.4987717;0.03287949,0.1067229;0.3762214;-0.01991971,0.1915907;0.2465231;-0.1463151,0.2634609;0.1548887;-0.367534,-0.1123715;0.3605505;0.01384573,-0.1656655;0.1683474;0.02860166,-0.1950626;-0.07965375;0.01714605,0.06795991;0.007171602;-0.0415935,0.09109046;-0.2890469;-0.0001253262,0.0808924;-0.5819212;0.0640669,0.0999928;-0.6095503;0.003992796,-0.07351384;0.001420435;-0.03152296,-0.09640092;-0.2965641;-0.005419433,-0.09369659;-0.5903614;0.05520965,-0.09302527;-0.6168863;-0.009160168,0.000155266;0.3988027;0.0304135,58.12684
-0;0;0,0.008040507;0.1994633;0.01223733,0.02000107;0.49913;0.01750926,0.1201662;0.3752543;-0.03616943,0.1923931;0.2604175;-0.1831245,0.2402545;0.2060712;-0.4224062,-0.09867837;0.3670318;0.003338029,-0.1509794;0.1754241;0.02681329,-0.1730402;-0.07280743;0.006953266,0.06493723;0.003260222;-0.04661038,0.09988138;-0.2923084;-0.008952979,0.08744113;-0.5832078;0.06331599,0.09833346;-0.6119306;0.002619352,-0.07592441;0.005146734;-0.0246778,-0.09175022;-0.2935877;-0.002155196,-0.08631299;-0.5872408;0.05898671,-0.08710103;-0.6183046;0.0004372224,0.01595448;0.399215;0.01828974,0;0;0,-0.000144856;0.1991874;0.01801029,0.0005330251;0.4987692;0.03291038,0.1064638;0.3761169;-0.02044003,0.1921789;0.2514444;-0.1512441,0.2622003;0.1651782;-0.3751975,-0.1123537;0.3605256;0.01397504,-0.1656796;0.1683461;0.02892149,-0.1948663;-0.07967359;0.01732957,0.06780235;0.007154884;-0.04185271,0.09108878;-0.28902;-0.0001612753,0.08089967;-0.5818686;0.0641493,0.1006276;-0.6095759;0.004379801,-0.07367919;0.001503769;-0.03113062,-0.09645475;-0.2965319;-0.005518051,-0.09384681;-0.5903284;0.05511902,-0.09310817;-0.6164633;-0.009711012,0.0001799496;0.3988003;0.03044417,58.14897
-0;0;0,0.00801989;0.1994611;0.01228624,0.01994311;0.4991277;0.01765526,0.1199653;0.3753431;-0.03639693,0.1929625;0.2603998;-0.1828875,0.2399151;0.2139608;-0.4240075,-0.09863292;0.3668573;0.003134874,-0.150793;0.1752462;0.02689464,-0.1725545;-0.07301542;0.007080859,0.06483617;0.003307299;-0.04674755,0.09980468;-0.2922278;-0.008850507,0.08745892;-0.5831525;0.06333282,0.09867949;-0.6119559;0.00280083,-0.07595708;0.005118588;-0.02458297,-0.09171781;-0.29362;-0.00206927,-0.08638588;-0.5872853;0.05902321,-0.08781533;-0.6185766;0.0008023232,0.01591021;0.3992118;0.01840106,0;0;0,-0.000144856;0.1991874;0.01801029,0.0005330251;0.4987692;0.03291038,0.1064638;0.3761169;-0.02044003,0.1921789;0.2514444;-0.1512441,0.2622003;0.1651782;-0.3751975,-0.1123537;0.3605256;0.01397504,-0.1656796;0.1683461;0.02892149,-0.1948663;-0.07967359;0.01732957,0.06780235;0.007154884;-0.04185271,0.09108878;-0.28902;-0.0001612753,0.08089967;-0.5818686;0.0641493,0.1006276;-0.6095759;0.004379801,-0.07367919;0.001503769;-0.03113062,-0.09645475;-0.2965319;-0.005518051,-0.09384681;-0.5903284;0.05511902,-0.09310817;-0.6164633;-0.009711012,0.0001799496;0.3988003;0.03044417,58.1717
-0;0;0,0.007938607;0.1994598;0.01235938,0.0196798;0.4991308;0.01789603,0.1195746;0.3752485;-0.03655037,0.1923021;0.2629966;-0.1852454,0.2447682;0.2584853;-0.4296364,-0.09900939;0.3665561;0.005473828,-0.1518855;0.1748894;0.02710679,-0.1843281;-0.07188185;0.00362402,0.06468487;0.00341869;-0.04694869,0.09947635;-0.2920722;-0.008547377,0.0873766;-0.5831048;0.06324145,0.09921221;-0.6116869;0.002539027,-0.07600847;0.005027822;-0.02444245,-0.09169473;-0.2937234;-0.002045304,-0.08648051;-0.5873756;0.05912042,-0.08784618;-0.6187024;0.0009474494,0.01571588;0.3992118;0.01857791,0;0;0,-0.000144856;0.1991874;0.01801029,0.0005330251;0.4987692;0.03291038,0.1064638;0.3761169;-0.02044003,0.1921789;0.2514444;-0.1512441,0.2622003;0.1651782;-0.3751975,-0.1123537;0.3605256;0.01397504,-0.1656796;0.1683461;0.02892149,-0.1948663;-0.07967359;0.01732957,0.06780235;0.007154884;-0.04185271,0.09108878;-0.28902;-0.0001612753,0.08089967;-0.5818686;0.0641493,0.1006276;-0.6095759;0.004379801,-0.07367919;0.001503769;-0.03113062,-0.09645475;-0.2965319;-0.005518051,-0.09384681;-0.5903284;0.05511902,-0.09310817;-0.6164633;-0.009711012,0.0001799496;0.3988003;0.03044417,58.19311
-0;0;0,0.007938607;0.1994598;0.01235938,0.0196798;0.4991308;0.01789603,0.1195746;0.3752485;-0.03655037,0.1923021;0.2629966;-0.1852454,0.2447682;0.2584853;-0.4296364,-0.09900939;0.3665561;0.005473828,-0.1518855;0.1748894;0.02710679,-0.1843281;-0.07188185;0.00362402,0.06468487;0.00341869;-0.04694869,0.09947635;-0.2920722;-0.008547377,0.0873766;-0.5831048;0.06324145,0.09921221;-0.6116869;0.002539027,-0.07600847;0.005027822;-0.02444245,-0.09169473;-0.2937234;-0.002045304,-0.08648051;-0.5873756;0.05912042,-0.08784618;-0.6187024;0.0009474494,0.01571588;0.3992118;0.01857791,0;0;0,-0.0001121224;0.1991869;0.01801595,0.0006425503;0.4987692;0.03289789,0.106096;0.3758518;-0.02125172,0.1924727;0.2542235;-0.1544645,0.2630678;0.1695666;-0.3788515,-0.1123233;0.3606159;0.01411014,-0.1656353;0.1684357;0.02909758,-0.1944929;-0.07962754;0.01761506,0.0674966;0.007092075;-0.0423546,0.09108388;-0.2890122;-0.0003321245,0.08090127;-0.5817961;0.06427372,0.10071;-0.6087846;0.003607485,-0.0738473;0.001350851;-0.0307368,-0.09644754;-0.2967509;-0.005745048,-0.09390524;-0.5904665;0.05528503,-0.09245984;-0.6181757;-0.007636994,0.0002609511;0.3988001;0.03044262,58.20545
-0;0;0,0.007938607;0.1994598;0.01235938,0.0196798;0.4991308;0.01789603,0.1195746;0.3752485;-0.03655037,0.1923021;0.2629966;-0.1852454,0.2447682;0.2584853;-0.4296364,-0.09900939;0.3665561;0.005473828,-0.1518855;0.1748894;0.02710679,-0.1843281;-0.07188185;0.00362402,0.06468487;0.00341869;-0.04694869,0.09947635;-0.2920722;-0.008547377,0.0873766;-0.5831048;0.06324145,0.09921221;-0.6116869;0.002539027,-0.07600847;0.005027822;-0.02444245,-0.09169473;-0.2937234;-0.002045304,-0.08648051;-0.5873756;0.05912042,-0.08784618;-0.6187024;0.0009474494,0.01571588;0.3992118;0.01857791,0;0;0,-0.0001121224;0.1991869;0.01801595,0.0006425503;0.4987692;0.03289789,0.106096;0.3758518;-0.02125172,0.1924727;0.2542235;-0.1544645,0.2630678;0.1695666;-0.3788515,-0.1123233;0.3606159;0.01411014,-0.1656353;0.1684357;0.02909758,-0.1944929;-0.07962754;0.01761506,0.0674966;0.007092075;-0.0423546,0.09108388;-0.2890122;-0.0003321245,0.08090127;-0.5817961;0.06427372,0.10071;-0.6087846;0.003607485,-0.0738473;0.001350851;-0.0307368,-0.09644754;-0.2967509;-0.005745048,-0.09390524;-0.5904665;0.05528503,-0.09245984;-0.6181757;-0.007636994,0.0002609511;0.3988001;0.03044262,58.21621
-0;0;0,0.007856186;0.1994594;0.01241896,0.01956148;0.49913;0.01804151,0.119277;0.3756133;-0.03693579,0.1930929;0.2634745;-0.1851792,0.2449674;0.2602546;-0.4297169,-0.09898776;0.3663482;0.004978706,-0.1513545;0.1745993;0.02711627,-0.1747256;-0.07349838;0.00708269,0.0646527;0.003492403;-0.04698757,0.09977679;-0.2919508;-0.008521911,0.0876928;-0.5829648;0.06334513,0.09926674;-0.6113113;0.002288904,-0.07603283;0.004923441;-0.02438784,-0.091469;-0.2938423;-0.002009504,-0.08627986;-0.587505;0.0591074,-0.08726564;-0.6186237;0.0006370358,0.01560611;0.3992104;0.01870169,0;0;0,-0.0001121224;0.1991869;0.01801595,0.0006425503;0.4987692;0.03289789,0.106096;0.3758518;-0.02125172,0.1924727;0.2542235;-0.1544645,0.2630678;0.1695666;-0.3788515,-0.1123233;0.3606159;0.01411014,-0.1656353;0.1684357;0.02909758,-0.1944929;-0.07962754;0.01761506,0.0674966;0.007092075;-0.0423546,0.09108388;-0.2890122;-0.0003321245,0.08090127;-0.5817961;0.06427372,0.10071;-0.6087846;0.003607485,-0.0738473;0.001350851;-0.0307368,-0.09644754;-0.2967509;-0.005745048,-0.09390524;-0.5904665;0.05528503,-0.09245984;-0.6181757;-0.007636994,0.0002609511;0.3988001;0.03044262,58.23824
-0;0;0,0.007856186;0.1994594;0.01241896,0.01956148;0.49913;0.01804151,0.119277;0.3756133;-0.03693579,0.1930929;0.2634745;-0.1851792,0.2449674;0.2602546;-0.4297169,-0.09898776;0.3663482;0.004978706,-0.1513545;0.1745993;0.02711627,-0.1747256;-0.07349838;0.00708269,0.0646527;0.003492403;-0.04698757,0.09977679;-0.2919508;-0.008521911,0.0876928;-0.5829648;0.06334513,0.09926674;-0.6113113;0.002288904,-0.07603283;0.004923441;-0.02438784,-0.091469;-0.2938423;-0.002009504,-0.08627986;-0.587505;0.0591074,-0.08726564;-0.6186237;0.0006370358,0.01560611;0.3992104;0.01870169,0;0;0,-9.950283E-05;0.1991848;0.01803895,0.0006576214;0.4987654;0.03295599,0.1059313;0.3757584;-0.02153645,0.1931222;0.2579102;-0.1575863,0.2636877;0.183375;-0.3855447,-0.1123247;0.3606286;0.01425018,-0.1657955;0.168502;0.02935822,-0.1940999;-0.07962002;0.0177694,0.0674192;0.007112809;-0.04247421,0.09110875;-0.2889995;-0.0005657189,0.08089602;-0.5817244;0.06430224,0.1001601;-0.6088966;0.003694076,-0.07388033;0.001349308;-0.03065741,-0.0965198;-0.2967582;-0.005769845,-0.09375712;-0.5903993;0.05560851,-0.09233255;-0.6175379;-0.008012198,0.0002785178;0.3987965;0.03048979,58.24934
-0;0;0,0.007807822;0.1994562;0.01249996,0.01936442;0.4991315;0.01820534,0.1189531;0.3755287;-0.03713512,0.193738;0.2647097;-0.1858844,0.2464764;0.2663117;-0.4302531,-0.09906791;0.3663852;0.004598352,-0.1511695;0.1746205;0.02721953,-0.1818545;-0.07187475;-0.00103862,0.06459221;0.003487315;-0.04707105,0.09965268;-0.291925;-0.0083111,0.08760402;-0.5829418;0.06355046,0.0994552;-0.6114248;0.002723146,-0.07607064;0.004917143;-0.02427097,-0.09140025;-0.2938776;-0.002210021,-0.08654279;-0.5874758;0.05924343,-0.1002932;-0.5548131;-0.03827756,0.01547542;0.3992091;0.01882574,0;0;0,-9.950283E-05;0.1991848;0.01803895,0.0006576214;0.4987654;0.03295599,0.1059313;0.3757584;-0.02153645,0.1931222;0.2579102;-0.1575863,0.2636877;0.183375;-0.3855447,-0.1123247;0.3606286;0.01425018,-0.1657955;0.168502;0.02935822,-0.1940999;-0.07962002;0.0177694,0.0674192;0.007112809;-0.04247421,0.09110875;-0.2889995;-0.0005657189,0.08089602;-0.5817244;0.06430224,0.1001601;-0.6088966;0.003694076,-0.07388033;0.001349308;-0.03065741,-0.0965198;-0.2967582;-0.005769845,-0.09375712;-0.5903993;0.05560851,-0.09233255;-0.6175379;-0.008012198,0.0002785178;0.3987965;0.03048979,58.26039
-0;0;0,0.007807822;0.1994562;0.01249996,0.01936442;0.4991315;0.01820534,0.1189531;0.3755287;-0.03713512,0.193738;0.2647097;-0.1858844,0.2464764;0.2663117;-0.4302531,-0.09906791;0.3663852;0.004598352,-0.1511695;0.1746205;0.02721953,-0.1818545;-0.07187475;-0.00103862,0.06459221;0.003487315;-0.04707105,0.09965268;-0.291925;-0.0083111,0.08760402;-0.5829418;0.06355046,0.0994552;-0.6114248;0.002723146,-0.07607064;0.004917143;-0.02427097,-0.09140025;-0.2938776;-0.002210021,-0.08654279;-0.5874758;0.05924343,-0.1002932;-0.5548131;-0.03827756,0.01547542;0.3992091;0.01882574,0;0;0,-9.950283E-05;0.1991848;0.01803895,0.0006576214;0.4987654;0.03295599,0.1059313;0.3757584;-0.02153645,0.1931222;0.2579102;-0.1575863,0.2636877;0.183375;-0.3855447,-0.1123247;0.3606286;0.01425018,-0.1657955;0.168502;0.02935822,-0.1940999;-0.07962002;0.0177694,0.0674192;0.007112809;-0.04247421,0.09110875;-0.2889995;-0.0005657189,0.08089602;-0.5817244;0.06430224,0.1001601;-0.6088966;0.003694076,-0.07388033;0.001349308;-0.03065741,-0.0965198;-0.2967582;-0.005769845,-0.09375712;-0.5903993;0.05560851,-0.09233255;-0.6175379;-0.008012198,0.0002785178;0.3987965;0.03048979,58.27183
-0;0;0,0.007704734;0.1994573;0.01254664,0.01890022;0.4991418;0.01851036,0.118479;0.3756844;-0.03726083,0.1950145;0.2676843;-0.1871885,0.247529;0.2785664;-0.4313684,-0.09945984;0.3657587;0.006937399,-0.1519538;0.1738477;0.02729864,-0.1825726;-0.07260716;-0.001380034,0.06452759;0.00351917;-0.04715725,0.0996304;-0.2918766;-0.00831008,0.08753926;-0.5828879;0.06356672,0.09896105;-0.6104013;0.001428016,-0.07607812;0.004897188;-0.02425153,-0.09133098;-0.2938581;-0.001610095,-0.08647624;-0.5875323;0.05947927,-0.101043;-0.5548562;-0.0379255,0.01514611;0.3992136;0.01903032,0;0;0,-8.963675E-05;0.1991806;0.01808539,0.0005969919;0.4987607;0.03301504,0.1058436;0.375909;-0.02167045,0.1933128;0.2608736;-0.1599311,0.2618502;0.1939759;-0.3908582,-0.1124533;0.3608566;0.01445972,-0.1660108;0.1687416;0.02940627,-0.1940403;-0.07940808;0.01773982,0.06715358;0.007119328;-0.04289186,0.09099756;-0.2889114;-0.0004976802,0.08078092;-0.5816299;0.0643989,0.09983851;-0.6088571;0.003795546,-0.07392304;0.001323055;-0.03055543,-0.0966337;-0.2967944;-0.005852763,-0.09373446;-0.5903867;0.05575217,-0.09246098;-0.6172708;-0.008179244,0.0002506042;0.3987918;0.03054529,58.29362
-0;0;0,0.007704734;0.1994573;0.01254664,0.01890022;0.4991418;0.01851036,0.118479;0.3756844;-0.03726083,0.1950145;0.2676843;-0.1871885,0.247529;0.2785664;-0.4313684,-0.09945984;0.3657587;0.006937399,-0.1519538;0.1738477;0.02729864,-0.1825726;-0.07260716;-0.001380034,0.06452759;0.00351917;-0.04715725,0.0996304;-0.2918766;-0.00831008,0.08753926;-0.5828879;0.06356672,0.09896105;-0.6104013;0.001428016,-0.07607812;0.004897188;-0.02425153,-0.09133098;-0.2938581;-0.001610095,-0.08647624;-0.5875323;0.05947927,-0.101043;-0.5548562;-0.0379255,0.01514611;0.3992136;0.01903032,0;0;0,-8.963675E-05;0.1991806;0.01808539,0.0005969919;0.4987607;0.03301504,0.1058436;0.375909;-0.02167045,0.1933128;0.2608736;-0.1599311,0.2618502;0.1939759;-0.3908582,-0.1124533;0.3608566;0.01445972,-0.1660108;0.1687416;0.02940627,-0.1940403;-0.07940808;0.01773982,0.06715358;0.007119328;-0.04289186,0.09099756;-0.2889114;-0.0004976802,0.08078092;-0.5816299;0.0643989,0.09983851;-0.6088571;0.003795546,-0.07392304;0.001323055;-0.03055543,-0.0966337;-0.2967944;-0.005852763,-0.09373446;-0.5903867;0.05575217,-0.09246098;-0.6172708;-0.008179244,0.0002506042;0.3987918;0.03054529,58.30553
-0;0;0,0.007550497;0.1994585;0.01262162,0.01843833;0.4991511;0.01875089,0.1179741;0.3754907;-0.03727096,0.1961725;0.2707873;-0.1886717,0.2475835;0.2848791;-0.4329223,-0.09961132;0.3654885;0.006005826,-0.1516736;0.1735695;0.02737439,-0.1824562;-0.07285619;-0.001379872,0.06445636;0.003485648;-0.04725704,0.09970832;-0.2918521;-0.008104879,0.08765895;-0.5828025;0.06402512,0.09926715;-0.6099054;0.001412079,-0.07611523;0.004929426;-0.02412826,-0.09123169;-0.2938335;-0.001495562,-0.08637533;-0.5875102;0.05958116,-0.1006744;-0.5548349;-0.03786314,0.01479101;0.3992187;0.01921107,0;0;0,-8.963675E-05;0.1991806;0.01808539,0.0005969919;0.4987607;0.03301504,0.1058436;0.375909;-0.02167045,0.1933128;0.2608736;-0.1599311,0.2618502;0.1939759;-0.3908582,-0.1124533;0.3608566;0.01445972,-0.1660108;0.1687416;0.02940627,-0.1940403;-0.07940808;0.01773982,0.06715358;0.007119328;-0.04289186,0.09099756;-0.2889114;-0.0004976802,0.08078092;-0.5816299;0.0643989,0.09983851;-0.6088571;0.003795546,-0.07392304;0.001323055;-0.03055543,-0.0966337;-0.2967944;-0.005852763,-0.09373446;-0.5903867;0.05575217,-0.09246098;-0.6172708;-0.008179244,0.0002506042;0.3987918;0.03054529,58.32724
-0;0;0,0.007550497;0.1994585;0.01262162,0.01843833;0.4991511;0.01875089,0.1179741;0.3754907;-0.03727096,0.1961725;0.2707873;-0.1886717,0.2475835;0.2848791;-0.4329223,-0.09961132;0.3654885;0.006005826,-0.1516736;0.1735695;0.02737439,-0.1824562;-0.07285619;-0.001379872,0.06445636;0.003485648;-0.04725704,0.09970832;-0.2918521;-0.008104879,0.08765895;-0.5828025;0.06402512,0.09926715;-0.6099054;0.001412079,-0.07611523;0.004929426;-0.02412826,-0.09123169;-0.2938335;-0.001495562,-0.08637533;-0.5875102;0.05958116,-0.1006744;-0.5548349;-0.03786314,0.01479101;0.3992187;0.01921107,0;0;0,-3.350839E-05;0.1991778;0.018117,0.0008075968;0.4987544;0.03310731,0.1056976;0.3757977;-0.02215884,0.1933117;0.2621007;-0.1614311,0.2615206;0.19756;-0.393125,-0.1123565;0.3609739;0.01466461,-0.1658156;0.1688371;0.02968348,-0.1930804;-0.07939705;0.01800337,0.0670658;0.007147165;-0.04302438,0.09100812;-0.2888632;-0.0005431361,0.08073154;-0.5815772;0.06436382,0.0999878;-0.608565;0.003519155,-0.07398766;0.001316083;-0.03039891,-0.09686989;-0.2967992;-0.005828789,-0.09386638;-0.5903714;0.05586701,-0.09234712;-0.6171168;-0.008225307,0.0004074232;0.3987861;0.03061902,58.34956
-0;0;0,0.007444156;0.1994578;0.0126957,0.01825399;0.4991505;0.01894441,0.1175928;0.3754191;-0.03746785,0.1966824;0.2729031;-0.1898992,0.2487785;0.294658;-0.4334412,-0.0999326;0.365436;0.007708856,-0.1520718;0.173354;0.02735572,-0.1829002;-0.07302786;-0.001723202,0.06436492;0.003469107;-0.04738273,0.09990479;-0.2918275;-0.008180238,0.08791859;-0.5827508;0.06406917,0.09950319;-0.6098164;0.001405895,-0.07612129;0.004957268;-0.02410342,-0.09123243;-0.2938018;-0.001417164,-0.08618052;-0.5874683;0.05969327,-0.1011051;-0.5547836;-0.03765887,0.01462221;0.3992174;0.0193713,0;0;0,-3.350839E-05;0.1991778;0.018117,0.0008075968;0.4987544;0.03310731,0.1056976;0.3757977;-0.02215884,0.1933117;0.2621007;-0.1614311,0.2615206;0.19756;-0.393125,-0.1123565;0.3609739;0.01466461,-0.1658156;0.1688371;0.02968348,-0.1930804;-0.07939705;0.01800337,0.0670658;0.007147165;-0.04302438,0.09100812;-0.2888632;-0.0005431361,0.08073154;-0.5815772;0.06436382,0.0999878;-0.608565;0.003519155,-0.07398766;0.001316083;-0.03039891,-0.09686989;-0.2967992;-0.005828789,-0.09386638;-0.5903714;0.05586701,-0.09234712;-0.6171168;-0.008225307,0.0004074232;0.3987861;0.03061902,58.36057
-0;0;0,0.007444156;0.1994578;0.0126957,0.01825399;0.4991505;0.01894441,0.1175928;0.3754191;-0.03746785,0.1966824;0.2729031;-0.1898992,0.2487785;0.294658;-0.4334412,-0.0999326;0.365436;0.007708856,-0.1520718;0.173354;0.02735572,-0.1829002;-0.07302786;-0.001723202,0.06436492;0.003469107;-0.04738273,0.09990479;-0.2918275;-0.008180238,0.08791859;-0.5827508;0.06406917,0.09950319;-0.6098164;0.001405895,-0.07612129;0.004957268;-0.02410342,-0.09123243;-0.2938018;-0.001417164,-0.08618052;-0.5874683;0.05969327,-0.1011051;-0.5547836;-0.03765887,0.01462221;0.3992174;0.0193713,0;0;0,-3.350839E-05;0.1991778;0.018117,0.0008075968;0.4987544;0.03310731,0.1056976;0.3757977;-0.02215884,0.1933117;0.2621007;-0.1614311,0.2615206;0.19756;-0.393125,-0.1123565;0.3609739;0.01466461,-0.1658156;0.1688371;0.02968348,-0.1930804;-0.07939705;0.01800337,0.0670658;0.007147165;-0.04302438,0.09100812;-0.2888632;-0.0005431361,0.08073154;-0.5815772;0.06436382,0.0999878;-0.608565;0.003519155,-0.07398766;0.001316083;-0.03039891,-0.09686989;-0.2967992;-0.005828789,-0.09386638;-0.5903714;0.05586701,-0.09234712;-0.6171168;-0.008225307,0.0004074232;0.3987861;0.03061902,58.38342
-0;0;0,0.007357297;0.1994579;0.012744,0.01807819;0.4991523;0.01905455,0.117267;0.3753708;-0.03766353,0.1975138;0.2750388;-0.1909408,0.2501926;0.3015049;-0.4338904,-0.09995452;0.3649004;0.008090942,-0.1525144;0.1729054;0.02746592,-0.183848;-0.07338455;-0.001850948,0.06433951;0.003487936;-0.04741583,0.09982311;-0.2918026;-0.008116525,0.08820671;-0.5829173;0.06341863,0.09802073;-0.6139691;0.00567532,-0.07614728;0.004921754;-0.02402849,-0.09166277;-0.2938164;-0.001340348,-0.0860218;-0.5874463;0.05989451,-0.1011843;-0.5547574;-0.03742161,0.01446945;0.3992183;0.01946762,0;0;0,-1.300714E-05;0.1991766;0.01812999,0.0008313973;0.4987533;0.03311736,0.1053944;0.3757037;-0.02275458,0.192966;0.2626834;-0.1626032,0.2490984;0.212384;-0.4009708,-0.112447;0.3611888;0.0149801,-0.1657117;0.1689834;0.02981001,-0.1921426;-0.07934327;0.01817837,0.0668437;0.007124804;-0.04337229,0.09108986;-0.2888382;-0.0007340983,0.08102495;-0.5815929;0.064022,0.09832353;-0.6088449;0.002924718,-0.07405044;0.001347721;-0.03024428,-0.09663611;-0.2968279;-0.006136889,-0.0940356;-0.5904032;0.0555623,-0.09261224;-0.6169432;-0.008777387,0.0004315543;0.398785;0.03063131,58.39573
-0;0;0,0.007357297;0.1994579;0.012744,0.01807819;0.4991523;0.01905455,0.117267;0.3753708;-0.03766353,0.1975138;0.2750388;-0.1909408,0.2501926;0.3015049;-0.4338904,-0.09995452;0.3649004;0.008090942,-0.1525144;0.1729054;0.02746592,-0.183848;-0.07338455;-0.001850948,0.06433951;0.003487936;-0.04741583,0.09982311;-0.2918026;-0.008116525,0.08820671;-0.5829173;0.06341863,0.09802073;-0.6139691;0.00567532,-0.07614728;0.004921754;-0.02402849,-0.09166277;-0.2938164;-0.001340348,-0.0860218;-0.5874463;0.05989451,-0.1011843;-0.5547574;-0.03742161,0.01446945;0.3992183;0.01946762,0;0;0,-1.300714E-05;0.1991766;0.01812999,0.0008313973;0.4987533;0.03311736,0.1053944;0.3757037;-0.02275458,0.192966;0.2626834;-0.1626032,0.2490984;0.212384;-0.4009708,-0.112447;0.3611888;0.0149801,-0.1657117;0.1689834;0.02981001,-0.1921426;-0.07934327;0.01817837,0.0668437;0.007124804;-0.04337229,0.09108986;-0.2888382;-0.0007340983,0.08102495;-0.5815929;0.064022,0.09832353;-0.6088449;0.002924718,-0.07405044;0.001347721;-0.03024428,-0.09663611;-0.2968279;-0.006136889,-0.0940356;-0.5904032;0.0555623,-0.09261224;-0.6169432;-0.008777387,0.0004315543;0.398785;0.03063131,58.40724
-0;0;0,0.007348393;0.1994568;0.01276645,0.01809266;0.4991498;0.01909687,0.1171579;0.3752723;-0.03778784,0.1978373;0.2778101;-0.1926811,0.2518989;0.3082371;-0.434862,-0.09981139;0.3648402;0.006968801,-0.1517643;0.1727732;0.0272455,-0.183294;-0.07356401;-0.001457511,0.06435252;0.003523705;-0.04739554,0.0998932;-0.2917564;-0.008069832,0.0884904;-0.582877;0.06347597,0.09810088;-0.6141307;0.005982816,-0.07615367;0.004880219;-0.02401671,-0.091502;-0.2939113;-0.001924181,-0.08604509;-0.5874677;0.05967845,-0.1008741;-0.5547778;-0.0376892,0.01447376;0.3992162;0.01950667,0;0;0,-1.300714E-05;0.1991766;0.01812999,0.0008313973;0.4987533;0.03311736,0.1053944;0.3757037;-0.02275458,0.192966;0.2626834;-0.1626032,0.2490984;0.212384;-0.4009708,-0.112447;0.3611888;0.0149801,-0.1657117;0.1689834;0.02981001,-0.1921426;-0.07934327;0.01817837,0.0668437;0.007124804;-0.04337229,0.09108986;-0.2888382;-0.0007340983,0.08102495;-0.5815929;0.064022,0.09832353;-0.6088449;0.002924718,-0.07405044;0.001347721;-0.03024428,-0.09663611;-0.2968279;-0.006136889,-0.0940356;-0.5904032;0.0555623,-0.09261224;-0.6169432;-0.008777387,0.0004315543;0.398785;0.03063131,58.42917
-0;0;0,0.007348393;0.1994568;0.01276645,0.01809266;0.4991498;0.01909687,0.1171579;0.3752723;-0.03778784,0.1978373;0.2778101;-0.1926811,0.2518989;0.3082371;-0.434862,-0.09981139;0.3648402;0.006968801,-0.1517643;0.1727732;0.0272455,-0.183294;-0.07356401;-0.001457511,0.06435252;0.003523705;-0.04739554,0.0998932;-0.2917564;-0.008069832,0.0884904;-0.582877;0.06347597,0.09810088;-0.6141307;0.005982816,-0.07615367;0.004880219;-0.02401671,-0.091502;-0.2939113;-0.001924181,-0.08604509;-0.5874677;0.05967845,-0.1008741;-0.5547778;-0.0376892,0.01447376;0.3992162;0.01950667,0;0;0,-2.095303E-05;0.1991723;0.01817709,0.0007337613;0.4987447;0.03326469,0.105031;0.375569;-0.02320036,0.1926453;0.2647837;-0.1647997,0.2498475;0.2104446;-0.4020236,-0.1123372;0.3606383;0.01520678,-0.1655841;0.1684283;0.03004213,-0.1913485;-0.079954;0.01810775,0.06650257;0.00714819;-0.04388977,0.09089882;-0.2887667;-0.00100372,0.08081838;-0.5814497;0.06407344,0.09803516;-0.6088862;0.003186867,-0.07412524;0.00131012;-0.03006214,-0.09668555;-0.2968959;-0.006309049,-0.094179;-0.5904502;0.05549359,-0.09277865;-0.6170716;-0.008749701,0.0003764156;0.3987774;0.03073276,58.44108
-0;0;0,0.007237193;0.1994605;0.01277305,0.01777089;0.4991605;0.01912263,0.1167959;0.3751656;-0.03792025,0.1981064;0.278702;-0.1931084,0.2508845;0.3208288;-0.4338153,-0.09992805;0.3647048;0.006204492,-0.151569;0.1726371;0.02725626,-0.1828273;-0.07374947;-0.001319839,0.064288;0.003535922;-0.0474821,0.09974875;-0.2917351;-0.00801577,0.08854605;-0.5828519;0.06357679,0.09861436;-0.6142411;0.006354164,-0.0761841;0.004846527;-0.02392682,-0.09169538;-0.2939768;-0.002385989,-0.08614774;-0.5874786;0.05946803,-0.1007973;-0.5547909;-0.03792643,0.01422485;0.3992242;0.01952858,0;0;0,-2.095303E-05;0.1991723;0.01817709,0.0007337613;0.4987447;0.03326469,0.105031;0.375569;-0.02320036,0.1926453;0.2647837;-0.1647997,0.2498475;0.2104446;-0.4020236,-0.1123372;0.3606383;0.01520678,-0.1655841;0.1684283;0.03004213,-0.1913485;-0.079954;0.01810775,0.06650257;0.00714819;-0.04388977,0.09089882;-0.2887667;-0.00100372,0.08081838;-0.5814497;0.06407344,0.09803516;-0.6088862;0.003186867,-0.07412524;0.00131012;-0.03006214,-0.09668555;-0.2968959;-0.006309049,-0.094179;-0.5904502;0.05549359,-0.09277865;-0.6170716;-0.008749701,0.0003764156;0.3987774;0.03073276,58.46123
-0;0;0,0.007237193;0.1994605;0.01277305,0.01777089;0.4991605;0.01912263,0.1167959;0.3751656;-0.03792025,0.1981064;0.278702;-0.1931084,0.2508845;0.3208288;-0.4338153,-0.09992805;0.3647048;0.006204492,-0.151569;0.1726371;0.02725626,-0.1828273;-0.07374947;-0.001319839,0.064288;0.003535922;-0.0474821,0.09974875;-0.2917351;-0.00801577,0.08854605;-0.5828519;0.06357679,0.09861436;-0.6142411;0.006354164,-0.0761841;0.004846527;-0.02392682,-0.09169538;-0.2939768;-0.002385989,-0.08614774;-0.5874786;0.05946803,-0.1007973;-0.5547909;-0.03792643,0.01422485;0.3992242;0.01952858,0;0;0,-2.095303E-05;0.1991723;0.01817709,0.0007337613;0.4987447;0.03326469,0.105031;0.375569;-0.02320036,0.1926453;0.2647837;-0.1647997,0.2498475;0.2104446;-0.4020236,-0.1123372;0.3606383;0.01520678,-0.1655841;0.1684283;0.03004213,-0.1913485;-0.079954;0.01810775,0.06650257;0.00714819;-0.04388977,0.09089882;-0.2887667;-0.00100372,0.08081838;-0.5814497;0.06407344,0.09803516;-0.6088862;0.003186867,-0.07412524;0.00131012;-0.03006214,-0.09668555;-0.2968959;-0.006309049,-0.094179;-0.5904502;0.05549359,-0.09277865;-0.6170716;-0.008749701,0.0003764156;0.3987774;0.03073276,58.47317
-0;0;0,0.007135122;0.1994611;0.01281959,0.01758943;0.4991626;0.01921783,0.1164832;0.3749788;-0.03802407,0.1984435;0.2799298;-0.1937424,0.2499873;0.3271307;-0.4337743,-0.09998141;0.3645724;0.005716986,-0.151608;0.1725764;0.02744755,-0.1825562;-0.07381529;-0.001420211,0.06426813;0.003507065;-0.04751112,0.09981202;-0.2917746;-0.008199524,0.08879119;-0.5829448;0.06320404,0.09863185;-0.6140802;0.005582891,-0.07619338;0.004880905;-0.0238903,-0.09177581;-0.29395;-0.002505548,-0.08604995;-0.5874832;0.05918317,-0.1006024;-0.5547935;-0.03822616,0.01406261;0.3992256;0.01961369,0;0;0,-5.049458E-05;0.199172;0.01817965,0.0005661602;0.4987463;0.03323361,0.1048744;0.3754871;-0.02327185,0.184253;0.2806525;-0.1804515,0.2505947;0.2079712;-0.4102693,-0.112408;0.3604383;0.01540824,-0.165605;0.1682073;0.03014995,-0.1911494;-0.08019009;0.01805789,0.06637086;0.007122728;-0.04409281,0.09093066;-0.2887524;-0.001026098,0.08091775;-0.5813959;0.06423898,0.09804495;-0.6095544;0.004256446,-0.07417852;0.001292714;-0.02993117,-0.09678757;-0.2969375;-0.006531108,-0.09422385;-0.590431;0.05555744,-0.09289475;-0.6172598;-0.008439183,0.0002670836;0.3987784;0.03071719,58.49469
-0;0;0,0.007135122;0.1994611;0.01281959,0.01758943;0.4991626;0.01921783,0.1164832;0.3749788;-0.03802407,0.1984435;0.2799298;-0.1937424,0.2499873;0.3271307;-0.4337743,-0.09998141;0.3645724;0.005716986,-0.151608;0.1725764;0.02744755,-0.1825562;-0.07381529;-0.001420211,0.06426813;0.003507065;-0.04751112,0.09981202;-0.2917746;-0.008199524,0.08879119;-0.5829448;0.06320404,0.09863185;-0.6140802;0.005582891,-0.07619338;0.004880905;-0.0238903,-0.09177581;-0.29395;-0.002505548,-0.08604995;-0.5874832;0.05918317,-0.1006024;-0.5547935;-0.03822616,0.01406261;0.3992256;0.01961369,0;0;0,-5.049458E-05;0.199172;0.01817965,0.0005661602;0.4987463;0.03323361,0.1048744;0.3754871;-0.02327185,0.184253;0.2806525;-0.1804515,0.2505947;0.2079712;-0.4102693,-0.112408;0.3604383;0.01540824,-0.165605;0.1682073;0.03014995,-0.1911494;-0.08019009;0.01805789,0.06637086;0.007122728;-0.04409281,0.09093066;-0.2887524;-0.001026098,0.08091775;-0.5813959;0.06423898,0.09804495;-0.6095544;0.004256446,-0.07417852;0.001292714;-0.02993117,-0.09678757;-0.2969375;-0.006531108,-0.09422385;-0.590431;0.05555744,-0.09289475;-0.6172598;-0.008439183,0.0002670836;0.3987784;0.03071719,58.50637
-0;0;0,0.007017585;0.199463;0.01285635,0.01709649;0.4991741;0.01941958,0.1160195;0.3751069;-0.0381394,0.1983044;0.2821015;-0.194917,0.2503176;0.3314519;-0.4344147,-0.100104;0.3641497;0.005088589,-0.151578;0.1721921;0.02750937,-0.1700087;-0.07606657;0.004531831,0.06425041;0.003524296;-0.04753383,0.09968927;-0.291746;-0.008043062,0.08863019;-0.5829062;0.06339508,0.09968243;-0.6139854;0.005914431,-0.07620373;0.004861769;-0.02386115,-0.09195074;-0.2939825;-0.002786154,-0.08618863;-0.5875188;0.05888417,-0.1006315;-0.5548199;-0.03854312,0.01371276;0.3992319;0.01975109,0;0;0,-5.049458E-05;0.199172;0.01817965,0.0005661602;0.4987463;0.03323361,0.1048744;0.3754871;-0.02327185,0.184253;0.2806525;-0.1804515,0.2505947;0.2079712;-0.4102693,-0.112408;0.3604383;0.01540824,-0.165605;0.1682073;0.03014995,-0.1911494;-0.08019009;0.01805789,0.06637086;0.007122728;-0.04409281,0.09093066;-0.2887524;-0.001026098,0.08091775;-0.5813959;0.06423898,0.09804495;-0.6095544;0.004256446,-0.07417852;0.001292714;-0.02993117,-0.09678757;-0.2969375;-0.006531108,-0.09422385;-0.590431;0.05555744,-0.09289475;-0.6172598;-0.008439183,0.0002670836;0.3987784;0.03071719,58.5284
-0;0;0,0.007017585;0.199463;0.01285635,0.01709649;0.4991741;0.01941958,0.1160195;0.3751069;-0.0381394,0.1983044;0.2821015;-0.194917,0.2503176;0.3314519;-0.4344147,-0.100104;0.3641497;0.005088589,-0.151578;0.1721921;0.02750937,-0.1700087;-0.07606657;0.004531831,0.06425041;0.003524296;-0.04753383,0.09968927;-0.291746;-0.008043062,0.08863019;-0.5829062;0.06339508,0.09968243;-0.6139854;0.005914431,-0.07620373;0.004861769;-0.02386115,-0.09195074;-0.2939825;-0.002786154,-0.08618863;-0.5875188;0.05888417,-0.1006315;-0.5548199;-0.03854312,0.01371276;0.3992319;0.01975109,0;0;0,-4.61599E-05;0.199173;0.01816887,0.0005420781;0.4987517;0.03312678,0.1046839;0.3753162;-0.02360488,0.1872971;0.2706543;-0.1726717,0.2472572;0.2157685;-0.4090874,-0.112448;0.3604859;0.01545036,-0.1657844;0.1683116;0.03042566,-0.1911462;-0.08009009;0.01803992,0.06619169;0.007155463;-0.04435605,0.09090635;-0.2886808;-0.00111131,0.08100599;-0.5812817;0.06436171,0.09801652;-0.6086243;0.003298223,-0.07426718;0.001287404;-0.02971076,-0.09674267;-0.2969761;-0.00660865,-0.0941673;-0.5904685;0.05548495,-0.09328574;-0.6167517;-0.009168778,0.0002559018;0.3987827;0.03065481,58.53975
-0;0;0,0.007017585;0.199463;0.01285635,0.01709649;0.4991741;0.01941958,0.1160195;0.3751069;-0.0381394,0.1983044;0.2821015;-0.194917,0.2503176;0.3314519;-0.4344147,-0.100104;0.3641497;0.005088589,-0.151578;0.1721921;0.02750937,-0.1700087;-0.07606657;0.004531831,0.06425041;0.003524296;-0.04753383,0.09968927;-0.291746;-0.008043062,0.08863019;-0.5829062;0.06339508,0.09968243;-0.6139854;0.005914431,-0.07620373;0.004861769;-0.02386115,-0.09195074;-0.2939825;-0.002786154,-0.08618863;-0.5875188;0.05888417,-0.1006315;-0.5548199;-0.03854312,0.01371276;0.3992319;0.01975109,0;0;0,-4.61599E-05;0.199173;0.01816887,0.0005420781;0.4987517;0.03312678,0.1046839;0.3753162;-0.02360488,0.1872971;0.2706543;-0.1726717,0.2472572;0.2157685;-0.4090874,-0.112448;0.3604859;0.01545036,-0.1657844;0.1683116;0.03042566,-0.1911462;-0.08009009;0.01803992,0.06619169;0.007155463;-0.04435605,0.09090635;-0.2886808;-0.00111131,0.08100599;-0.5812817;0.06436171,0.09801652;-0.6086243;0.003298223,-0.07426718;0.001287404;-0.02971076,-0.09674267;-0.2969761;-0.00660865,-0.0941673;-0.5904685;0.05548495,-0.09328574;-0.6167517;-0.009168778,0.0002559018;0.3987827;0.03065481,58.55085
-0;0;0,0.007050734;0.1994559;0.01294732,0.01717995;0.4991637;0.01958157,0.1159176;0.3748735;-0.03820783,0.2054347;0.2793854;-0.1894318,0.2445044;0.3421428;-0.428252,-0.09990847;0.3640015;0.004596313,-0.1513952;0.1721364;0.02776731,-0.1757099;-0.07460405;-0.004294492,0.06428306;0.003580575;-0.04748544,0.09973948;-0.2916777;-0.007919844,0.08881798;-0.5828224;0.06360224,0.09996393;-0.6138477;0.006063733,-0.07620385;0.004812433;-0.02387079,-0.0917374;-0.2940451;-0.002825378,-0.08602785;-0.5875625;0.05893989,-0.08791839;-0.6181355;-0.0002583154,0.01378224;0.3992219;0.0198915,0;0;0,-4.61599E-05;0.199173;0.01816887,0.0005420781;0.4987517;0.03312678,0.1046839;0.3753162;-0.02360488,0.1872971;0.2706543;-0.1726717,0.2472572;0.2157685;-0.4090874,-0.112448;0.3604859;0.01545036,-0.1657844;0.1683116;0.03042566,-0.1911462;-0.08009009;0.01803992,0.06619169;0.007155463;-0.04435605,0.09090635;-0.2886808;-0.00111131,0.08100599;-0.5812817;0.06436171,0.09801652;-0.6086243;0.003298223,-0.07426718;0.001287404;-0.02971076,-0.09674267;-0.2969761;-0.00660865,-0.0941673;-0.5904685;0.05548495,-0.09328574;-0.6167517;-0.009168778,0.0002559018;0.3987827;0.03065481,58.57322
-0;0;0,0.007050734;0.1994559;0.01294732,0.01717995;0.4991637;0.01958157,0.1159176;0.3748735;-0.03820783,0.2054347;0.2793854;-0.1894318,0.2445044;0.3421428;-0.428252,-0.09990847;0.3640015;0.004596313,-0.1513952;0.1721364;0.02776731,-0.1757099;-0.07460405;-0.004294492,0.06428306;0.003580575;-0.04748544,0.09973948;-0.2916777;-0.007919844,0.08881798;-0.5828224;0.06360224,0.09996393;-0.6138477;0.006063733,-0.07620385;0.004812433;-0.02387079,-0.0917374;-0.2940451;-0.002825378,-0.08602785;-0.5875625;0.05893989,-0.08791839;-0.6181355;-0.0002583154,0.01378224;0.3992219;0.0198915,0;0;0,-1.179629E-05;0.1991703;0.01819842,0.0005973892;0.4987493;0.03314597,0.1057162;0.3756369;-0.02178836,0.1856219;0.2712175;-0.1724923,0.2450266;0.2194016;-0.4097394,-0.1123874;0.3604038;0.01559738,-0.1657383;0.1682392;0.03064524,-0.1906975;-0.08019286;0.01805402,0.06613819;0.007122691;-0.04444105,0.09093343;-0.2886875;-0.001064621,0.08130123;-0.581335;0.06423981,0.09779782;-0.6088514;0.003255654,-0.07431583;0.001235872;-0.02959104,-0.09660667;-0.2970496;-0.006593099,-0.09418572;-0.5905427;0.05550318,-0.09373748;-0.6168858;-0.00908418,0.0003057645;0.3987802;0.03068096,58.5843
-0;0;0,0.006912668;0.1994581;0.01298757,0.01686721;0.4991701;0.01969634,0.1156149;0.3748742;-0.03818902,0.2025875;0.2894483;-0.1967392,0.2466253;0.3461964;-0.4361976,-0.1000323;0.3637082;0.004368889,-0.1515655;0.1719004;0.02790844,-0.1791991;-0.07469656;-0.002526784,0.06426542;0.003605892;-0.04750739,0.09975933;-0.2916366;-0.007858355,0.08900089;-0.5828088;0.0635771,0.09923584;-0.6132919;0.005115923,-0.07621762;0.004783536;-0.02383258,-0.09194665;-0.2940727;-0.002914784,-0.08574328;-0.5875319;0.05907894,-0.08765477;-0.6178883;-0.0004122294,0.01352225;0.3992264;0.01998359,0;0;0,-1.179629E-05;0.1991703;0.01819842,0.0005973892;0.4987493;0.03314597,0.1057162;0.3756369;-0.02178836,0.1856219;0.2712175;-0.1724923,0.2450266;0.2194016;-0.4097394,-0.1123874;0.3604038;0.01559738,-0.1657383;0.1682392;0.03064524,-0.1906975;-0.08019286;0.01805402,0.06613819;0.007122691;-0.04444105,0.09093343;-0.2886875;-0.001064621,0.08130123;-0.581335;0.06423981,0.09779782;-0.6088514;0.003255654,-0.07431583;0.001235872;-0.02959104,-0.09660667;-0.2970496;-0.006593099,-0.09418572;-0.5905427;0.05550318,-0.09373748;-0.6168858;-0.00908418,0.0003057645;0.3987802;0.03068096,58.59572
-0;0;0,0.006912668;0.1994581;0.01298757,0.01686721;0.4991701;0.01969634,0.1156149;0.3748742;-0.03818902,0.2025875;0.2894483;-0.1967392,0.2466253;0.3461964;-0.4361976,-0.1000323;0.3637082;0.004368889,-0.1515655;0.1719004;0.02790844,-0.1791991;-0.07469656;-0.002526784,0.06426542;0.003605892;-0.04750739,0.09975933;-0.2916366;-0.007858355,0.08900089;-0.5828088;0.0635771,0.09923584;-0.6132919;0.005115923,-0.07621762;0.004783536;-0.02383258,-0.09194665;-0.2940727;-0.002914784,-0.08574328;-0.5875319;0.05907894,-0.08765477;-0.6178883;-0.0004122294,0.01352225;0.3992264;0.01998359,0;0;0,-1.179629E-05;0.1991703;0.01819842,0.0005973892;0.4987493;0.03314597,0.1057162;0.3756369;-0.02178836,0.1856219;0.2712175;-0.1724923,0.2450266;0.2194016;-0.4097394,-0.1123874;0.3604038;0.01559738,-0.1657383;0.1682392;0.03064524,-0.1906975;-0.08019286;0.01805402,0.06613819;0.007122691;-0.04444105,0.09093343;-0.2886875;-0.001064621,0.08130123;-0.581335;0.06423981,0.09779782;-0.6088514;0.003255654,-0.07431583;0.001235872;-0.02959104,-0.09660667;-0.2970496;-0.006593099,-0.09418572;-0.5905427;0.05550318,-0.09373748;-0.6168858;-0.00908418,0.0003057645;0.3987802;0.03068096,58.61766
-0;0;0,0.006900041;0.1994516;0.01309422,0.01695386;0.4991571;0.01992837,0.1156125;0.3750485;-0.03816023,0.2025084;0.2917386;-0.1978743,0.2461198;0.3520896;-0.4365284,-0.1002889;0.3637277;0.006891162,-0.1523096;0.1717723;0.02803255,-0.1798988;-0.07475464;-0.003004931,0.06414901;0.003601872;-0.04766478,0.1002577;-0.2915579;-0.007955007,0.08939035;-0.5827457;0.06340032,0.10021;-0.6131503;0.004936405,-0.07620709;0.004793394;-0.02386425,-0.0920318;-0.294029;-0.002538942,-0.08532389;-0.5875355;0.05917753,-0.08728927;-0.617609;-0.0006920956,0.01357104;0.3992147;0.02017954,0;0;0,7.409606E-05;0.1991709;0.01819173,0.0009042551;0.4987567;0.03297978,0.1055702;0.3753219;-0.02244334,0.1863226;0.2711232;-0.1728484,0.2439809;0.2247973;-0.4116568,-0.1121662;0.3603379;0.01556123,-0.1655807;0.1681916;0.03061833,-0.1904016;-0.08024479;0.01784062,0.06610204;0.007085579;-0.04450074,0.0913136;-0.28873;-0.001401898,0.08155059;-0.5812827;0.06430689,0.09832127;-0.6085649;0.003100634,-0.07433974;0.001242828;-0.02953062,-0.09648979;-0.2970628;-0.006658513,-0.094166;-0.5905479;0.05547947,-0.09350117;-0.6165569;-0.009498797,0.0005104952;0.3987862;0.03058381,58.62943
-0;0;0,0.006900041;0.1994516;0.01309422,0.01695386;0.4991571;0.01992837,0.1156125;0.3750485;-0.03816023,0.2025084;0.2917386;-0.1978743,0.2461198;0.3520896;-0.4365284,-0.1002889;0.3637277;0.006891162,-0.1523096;0.1717723;0.02803255,-0.1798988;-0.07475464;-0.003004931,0.06414901;0.003601872;-0.04766478,0.1002577;-0.2915579;-0.007955007,0.08939035;-0.5827457;0.06340032,0.10021;-0.6131503;0.004936405,-0.07620709;0.004793394;-0.02386425,-0.0920318;-0.294029;-0.002538942,-0.08532389;-0.5875355;0.05917753,-0.08728927;-0.617609;-0.0006920956,0.01357104;0.3992147;0.02017954,0;0;0,7.409606E-05;0.1991709;0.01819173,0.0009042551;0.4987567;0.03297978,0.1055702;0.3753219;-0.02244334,0.1863226;0.2711232;-0.1728484,0.2439809;0.2247973;-0.4116568,-0.1121662;0.3603379;0.01556123,-0.1655807;0.1681916;0.03061833,-0.1904016;-0.08024479;0.01784062,0.06610204;0.007085579;-0.04450074,0.0913136;-0.28873;-0.001401898,0.08155059;-0.5812827;0.06430689,0.09832127;-0.6085649;0.003100634,-0.07433974;0.001242828;-0.02953062,-0.09648979;-0.2970628;-0.006658513,-0.094166;-0.5905479;0.05547947,-0.09350117;-0.6165569;-0.009498797,0.0005104952;0.3987862;0.03058381,58.65154
-0;0;0,0.006843361;0.1994542;0.01308455,0.01686745;0.4991611;0.01990009,0.1154897;0.3749525;-0.03821175,0.2066489;0.2858505;-0.1923248,0.2420883;0.3567071;-0.4294395,-0.1001816;0.3634641;0.006005551,-0.1520378;0.1715783;0.02815954,-0.1795455;-0.07496057;-0.002854761,0.06410788;0.00360395;-0.04771992,0.1002589;-0.2915356;-0.007898115,0.08925662;-0.5826867;0.06358589,0.100364;-0.6129226;0.004944455,-0.07623525;0.004807047;-0.02377139,-0.09212824;-0.2940229;-0.002602862,-0.0853532;-0.587492;0.05928393,-0.0868173;-0.618002;-1.190603E-05,0.01349021;0.3992184;0.02015999,0;0;0,7.409606E-05;0.1991709;0.01819173,0.0009042551;0.4987567;0.03297978,0.1055702;0.3753219;-0.02244334,0.1863226;0.2711232;-0.1728484,0.2439809;0.2247973;-0.4116568,-0.1121662;0.3603379;0.01556123,-0.1655807;0.1681916;0.03061833,-0.1904016;-0.08024479;0.01784062,0.06610204;0.007085579;-0.04450074,0.0913136;-0.28873;-0.001401898,0.08155059;-0.5812827;0.06430689,0.09832127;-0.6085649;0.003100634,-0.07433974;0.001242828;-0.02953062,-0.09648979;-0.2970628;-0.006658513,-0.094166;-0.5905479;0.05547947,-0.09350117;-0.6165569;-0.009498797,0.0005104952;0.3987862;0.03058381,58.66321
-0;0;0,0.006843361;0.1994542;0.01308455,0.01686745;0.4991611;0.01990009,0.1154897;0.3749525;-0.03821175,0.2066489;0.2858505;-0.1923248,0.2420883;0.3567071;-0.4294395,-0.1001816;0.3634641;0.006005551,-0.1520378;0.1715783;0.02815954,-0.1795455;-0.07496057;-0.002854761,0.06410788;0.00360395;-0.04771992,0.1002589;-0.2915356;-0.007898115,0.08925662;-0.5826867;0.06358589,0.100364;-0.6129226;0.004944455,-0.07623525;0.004807047;-0.02377139,-0.09212824;-0.2940229;-0.002602862,-0.0853532;-0.587492;0.05928393,-0.0868173;-0.618002;-1.190603E-05,0.01349021;0.3992184;0.02015999,0;0;0,0.0002199015;0.1991682;0.01822085,0.001146024;0.4987532;0.03301666,0.1053067;0.3750679;-0.02324642,0.1870052;0.2753545;-0.1761601,0.241365;0.2628438;-0.4198576,-0.1120194;0.3604788;0.01578294,-0.1652506;0.1682656;0.03063318,-0.1900624;-0.0801665;0.01775376,0.06604586;0.007016372;-0.04459501,0.09167981;-0.2887521;-0.001421802,0.08181499;-0.5812665;0.06444173,0.0988168;-0.6080465;0.002669845,-0.07436507;0.0012611;-0.029466,-0.09660726;-0.2970251;-0.006431332,-0.09386242;-0.5905082;0.05569908,-0.09320188;-0.6163739;-0.009446539,0.0007310446;0.3987828;0.03061949,58.68494
-0;0;0,0.006793377;0.1994527;0.01313205,0.01682096;0.4991584;0.01998743,0.1154337;0.3749996;-0.03815627,0.2084368;0.2836794;-0.1898502,0.2401758;0.3608668;-0.4255083,-0.1000027;0.363033;0.005325483,-0.1516622;0.1711778;0.02819179,-0.1794701;-0.07540804;-0.002174821,0.06410578;0.003635664;-0.04772034,0.1002236;-0.2914815;-0.007702913,0.08938;-0.5826859;0.06358786,0.1002189;-0.6131642;0.005228966,-0.07627794;0.00474518;-0.02364654,-0.091796;-0.2941213;-0.002716962,-0.08535208;-0.5876119;0.0591034,-0.08674196;-0.6179095;-0.0004814826,0.01343616;0.399216;0.02023948,0;0;0,0.0002199015;0.1991682;0.01822085,0.001146024;0.4987532;0.03301666,0.1053067;0.3750679;-0.02324642,0.1870052;0.2753545;-0.1761601,0.241365;0.2628438;-0.4198576,-0.1120194;0.3604788;0.01578294,-0.1652506;0.1682656;0.03063318,-0.1900624;-0.0801665;0.01775376,0.06604586;0.007016372;-0.04459501,0.09167981;-0.2887521;-0.001421802,0.08181499;-0.5812665;0.06444173,0.0988168;-0.6080465;0.002669845,-0.07436507;0.0012611;-0.029466,-0.09660726;-0.2970251;-0.006431332,-0.09386242;-0.5905082;0.05569908,-0.09320188;-0.6163739;-0.009446539,0.0007310446;0.3987828;0.03061949,58.69629
-0;0;0,0.006793377;0.1994527;0.01313205,0.01682096;0.4991584;0.01998743,0.1154337;0.3749996;-0.03815627,0.2084368;0.2836794;-0.1898502,0.2401758;0.3608668;-0.4255083,-0.1000027;0.363033;0.005325483,-0.1516622;0.1711778;0.02819179,-0.1794701;-0.07540804;-0.002174821,0.06410578;0.003635664;-0.04772034,0.1002236;-0.2914815;-0.007702913,0.08938;-0.5826859;0.06358786,0.1002189;-0.6131642;0.005228966,-0.07627794;0.00474518;-0.02364654,-0.091796;-0.2941213;-0.002716962,-0.08535208;-0.5876119;0.0591034,-0.08674196;-0.6179095;-0.0004814826,0.01343616;0.399216;0.02023948,0;0;0,0.0002199015;0.1991682;0.01822085,0.001146024;0.4987532;0.03301666,0.1053067;0.3750679;-0.02324642,0.1870052;0.2753545;-0.1761601,0.241365;0.2628438;-0.4198576,-0.1120194;0.3604788;0.01578294,-0.1652506;0.1682656;0.03063318,-0.1900624;-0.0801665;0.01775376,0.06604586;0.007016372;-0.04459501,0.09167981;-0.2887521;-0.001421802,0.08181499;-0.5812665;0.06444173,0.0988168;-0.6080465;0.002669845,-0.07436507;0.0012611;-0.029466,-0.09660726;-0.2970251;-0.006431332,-0.09386242;-0.5905082;0.05569908,-0.09320188;-0.6163739;-0.009446539,0.0007310446;0.3987828;0.03061949,58.7185
-0;0;0,0.006768895;0.1994461;0.01324491,0.01673683;0.4991492;0.02031322,0.11528;0.3749185;-0.03804021,0.2094269;0.2826575;-0.1884539,0.2389809;0.3639842;-0.4230013,-0.09990332;0.3627953;0.004907624,-0.1515121;0.1710199;0.02854524,-0.1790669;-0.0756074;-0.001715541,0.0641211;0.003657302;-0.04769808,0.1002489;-0.2914313;-0.007480092,0.08914974;-0.5825357;0.06417894,0.1007142;-0.612118;0.004740544,-0.07630049;0.004708867;-0.02358097,-0.09174901;-0.2941656;-0.002715345,-0.08516251;-0.5875924;0.05939259,-0.08624651;-0.6176575;-0.0005105771,0.01337341;0.3992059;0.02048476,0;0;0,0.0001945369;0.1991684;0.01821858,0.001018475;0.4987546;0.0329965,0.1051356;0.375124;-0.02345695,0.1874129;0.2748915;-0.1757195,0.2424699;0.2619236;-0.4192366,-0.1120867;0.3604401;0.01577012,-0.1653433;0.1682358;0.03064323,-0.1899202;-0.08021046;0.01758792,0.06595799;0.00706815;-0.04471672,0.09163924;-0.2886736;-0.001389209,0.08190926;-0.5812238;0.06433557,0.09918749;-0.6091357;0.004076127,-0.07447696;0.001286946;-0.02918091,-0.09665595;-0.2970353;-0.006555337,-0.09403215;-0.5905002;0.05566565,-0.09319068;-0.6162263;-0.009640176,0.0006502159;0.3987837;0.03060802,58.72998
-0;0;0,0.006768895;0.1994461;0.01324491,0.01673683;0.4991492;0.02031322,0.11528;0.3749185;-0.03804021,0.2094269;0.2826575;-0.1884539,0.2389809;0.3639842;-0.4230013,-0.09990332;0.3627953;0.004907624,-0.1515121;0.1710199;0.02854524,-0.1790669;-0.0756074;-0.001715541,0.0641211;0.003657302;-0.04769808,0.1002489;-0.2914313;-0.007480092,0.08914974;-0.5825357;0.06417894,0.1007142;-0.612118;0.004740544,-0.07630049;0.004708867;-0.02358097,-0.09174901;-0.2941656;-0.002715345,-0.08516251;-0.5875924;0.05939259,-0.08624651;-0.6176575;-0.0005105771,0.01337341;0.3992059;0.02048476,0;0;0,0.0001945369;0.1991684;0.01821858,0.001018475;0.4987546;0.0329965,0.1051356;0.375124;-0.02345695,0.1874129;0.2748915;-0.1757195,0.2424699;0.2619236;-0.4192366,-0.1120867;0.3604401;0.01577012,-0.1653433;0.1682358;0.03064323,-0.1899202;-0.08021046;0.01758792,0.06595799;0.00706815;-0.04471672,0.09163924;-0.2886736;-0.001389209,0.08190926;-0.5812238;0.06433557,0.09918749;-0.6091357;0.004076127,-0.07447696;0.001286946;-0.02918091,-0.09665595;-0.2970353;-0.006555337,-0.09403215;-0.5905002;0.05566565,-0.09319068;-0.6162263;-0.009640176,0.0006502159;0.3987837;0.03060802,58.752
-0;0;0,0.006608206;0.1994468;0.01331634,0.01623866;0.4991568;0.0205606,0.1149433;0.3750276;-0.03782627,0.2101999;0.2818178;-0.1869508,0.2378981;0.3658804;-0.420759,-0.1001996;0.3619359;0.00660841,-0.1526393;0.1702201;0.02885992,-0.1715985;-0.07787085;0.004540261,0.06415044;0.003691286;-0.04765602,0.1002612;-0.2914019;-0.007456351,0.08923095;-0.5825619;0.06398737,0.100797;-0.6123996;0.004892752,-0.07627833;0.00464279;-0.0236656,-0.09174979;-0.2942211;-0.00266514,-0.08508421;-0.5876464;0.05944095,-0.08640146;-0.6172815;-0.001028169,0.01299482;0.3992095;0.02066941,0;0;0,0.0001945369;0.1991684;0.01821858,0.001018475;0.4987546;0.0329965,0.1051356;0.375124;-0.02345695,0.1874129;0.2748915;-0.1757195,0.2424699;0.2619236;-0.4192366,-0.1120867;0.3604401;0.01577012,-0.1653433;0.1682358;0.03064323,-0.1899202;-0.08021046;0.01758792,0.06595799;0.00706815;-0.04471672,0.09163924;-0.2886736;-0.001389209,0.08190926;-0.5812238;0.06433557,0.09918749;-0.6091357;0.004076127,-0.07447696;0.001286946;-0.02918091,-0.09665595;-0.2970353;-0.006555337,-0.09403215;-0.5905002;0.05566565,-0.09319068;-0.6162263;-0.009640176,0.0006502159;0.3987837;0.03060802,58.77397
-0;0;0,0.006608206;0.1994468;0.01331634,0.01623866;0.4991568;0.0205606,0.1149433;0.3750276;-0.03782627,0.2101999;0.2818178;-0.1869508,0.2378981;0.3658804;-0.420759,-0.1001996;0.3619359;0.00660841,-0.1526393;0.1702201;0.02885992,-0.1715985;-0.07787085;0.004540261,0.06415044;0.003691286;-0.04765602,0.1002612;-0.2914019;-0.007456351,0.08923095;-0.5825619;0.06398737,0.100797;-0.6123996;0.004892752,-0.07627833;0.00464279;-0.0236656,-0.09174979;-0.2942211;-0.00266514,-0.08508421;-0.5876464;0.05944095,-0.08640146;-0.6172815;-0.001028169,0.01299482;0.3992095;0.02066941,0;0;0,0.0002001693;0.1991662;0.01824232,0.001020175;0.4987519;0.03302845,0.1047335;0.374889;-0.02410392,0.1881137;0.2768071;-0.1771649,0.2398681;0.2720763;-0.4217035,-0.112067;0.360382;0.01582797,-0.1566791;0.1654785;0.02055765,-0.1849536;-0.08256544;0.007337349,0.06586845;0.007005741;-0.04485828,0.09159832;-0.2886963;-0.001288731,0.08187466;-0.5812494;0.06442362,0.09908706;-0.6090672;0.004023917,-0.07452065;0.001286592;-0.02906919,-0.09676179;-0.2970394;-0.006554607,-0.09413744;-0.5905012;0.05568156,-0.09350225;-0.6153963;-0.01057785,0.0006545506;0.3987812;0.03063859,58.78532
-0;0;0,0.006505565;0.1994465;0.01337109,0.01604639;0.4991577;0.02067873,0.1148062;0.3751307;-0.03771172,0.2107314;0.2814405;-0.1861048,0.2372382;0.3677557;-0.4192294,-0.1002689;0.3612982;0.00764723,-0.1530491;0.1695669;0.02893954,-0.1861148;-0.07652687;-0.0001211464,0.06411009;0.003726703;-0.04770752,0.1003343;-0.291343;-0.007437252,0.08927141;-0.5825097;0.063974,0.1009999;-0.612193;0.004703343,-0.07633919;0.004562126;-0.02348433,-0.09159108;-0.2943404;-0.002877777,-0.0849844;-0.5877323;0.0593925,-0.08608281;-0.6171756;-0.001332734,0.0128261;0.3992096;0.02077132,0;0;0,0.0002001693;0.1991662;0.01824232,0.001020175;0.4987519;0.03302845,0.1047335;0.374889;-0.02410392,0.1881137;0.2768071;-0.1771649,0.2398681;0.2720763;-0.4217035,-0.112067;0.360382;0.01582797,-0.1566791;0.1654785;0.02055765,-0.1849536;-0.08256544;0.007337349,0.06586845;0.007005741;-0.04485828,0.09159832;-0.2886963;-0.001288731,0.08187466;-0.5812494;0.06442362,0.09908706;-0.6090672;0.004023917,-0.07452065;0.001286592;-0.02906919,-0.09676179;-0.2970394;-0.006554607,-0.09413744;-0.5905012;0.05568156,-0.09350225;-0.6153963;-0.01057785,0.0006545506;0.3987812;0.03063859,58.7965
-0;0;0,0.006505565;0.1994465;0.01337109,0.01604639;0.4991577;0.02067873,0.1148062;0.3751307;-0.03771172,0.2107314;0.2814405;-0.1861048,0.2372382;0.3677557;-0.4192294,-0.1002689;0.3612982;0.00764723,-0.1530491;0.1695669;0.02893954,-0.1861148;-0.07652687;-0.0001211464,0.06411009;0.003726703;-0.04770752,0.1003343;-0.291343;-0.007437252,0.08927141;-0.5825097;0.063974,0.1009999;-0.612193;0.004703343,-0.07633919;0.004562126;-0.02348433,-0.09159108;-0.2943404;-0.002877777,-0.0849844;-0.5877323;0.0593925,-0.08608281;-0.6171756;-0.001332734,0.0128261;0.3992096;0.02077132,0;0;0,0.0002001693;0.1991662;0.01824232,0.001020175;0.4987519;0.03302845,0.1047335;0.374889;-0.02410392,0.1881137;0.2768071;-0.1771649,0.2398681;0.2720763;-0.4217035,-0.112067;0.360382;0.01582797,-0.1566791;0.1654785;0.02055765,-0.1849536;-0.08256544;0.007337349,0.06586845;0.007005741;-0.04485828,0.09159832;-0.2886963;-0.001288731,0.08187466;-0.5812494;0.06442362,0.09908706;-0.6090672;0.004023917,-0.07452065;0.001286592;-0.02906919,-0.09676179;-0.2970394;-0.006554607,-0.09413744;-0.5905012;0.05568156,-0.09350225;-0.6153963;-0.01057785,0.0006545506;0.3987812;0.03063859,58.81862
-0;0;0,0.00642791;0.1994458;0.01341781,0.01586205;0.4991581;0.02082107,0.1146361;0.3750441;-0.03759992,0.2110191;0.2812915;-0.1856566,0.2370919;0.3689378;-0.4183331,-0.1002107;0.3611445;0.006462291,-0.1528261;0.169516;0.02904808,-0.1852636;-0.07669003;0.0002313759,0.06415552;0.003724329;-0.0476466,0.1004378;-0.2913364;-0.007363491,0.08939569;-0.5825291;0.06394543,0.1011103;-0.6122261;0.00469039,-0.07631661;0.004552304;-0.02355955,-0.09137901;-0.2943803;-0.003251718,-0.08492862;-0.5877097;0.05932888,-0.08590712;-0.6172118;-0.00132139,0.01267509;0.3992089;0.0208809,0;0;0,0.0002780644;0.1991685;0.01821643,0.001176491;0.4987614;0.03283779,0.1047008;0.3752038;-0.02465636,0.1882397;0.2797421;-0.1792794,0.238904;0.279462;-0.4240917,-0.1119583;0.360379;0.0158712,-0.1566747;0.1654997;0.02061423,-0.1845293;-0.08258124;0.007198337,0.06579917;0.007007109;-0.04495964,0.09173183;-0.2886499;-0.001205366,0.08201057;-0.5812063;0.0644926,0.09905017;-0.6088198;0.003781818,-0.07457133;0.001249798;-0.02894052,-0.09683597;-0.2970816;-0.006519949,-0.09383945;-0.5904756;0.05601816,-0.09257843;-0.6168615;-0.008507773,0.0007807899;0.3987891;0.03051951,58.83001
-0;0;0,0.00642791;0.1994458;0.01341781,0.01586205;0.4991581;0.02082107,0.1146361;0.3750441;-0.03759992,0.2110191;0.2812915;-0.1856566,0.2370919;0.3689378;-0.4183331,-0.1002107;0.3611445;0.006462291,-0.1528261;0.169516;0.02904808,-0.1852636;-0.07669003;0.0002313759,0.06415552;0.003724329;-0.0476466,0.1004378;-0.2913364;-0.007363491,0.08939569;-0.5825291;0.06394543,0.1011103;-0.6122261;0.00469039,-0.07631661;0.004552304;-0.02355955,-0.09137901;-0.2943803;-0.003251718,-0.08492862;-0.5877097;0.05932888,-0.08590712;-0.6172118;-0.00132139,0.01267509;0.3992089;0.0208809,0;0;0,0.0002780644;0.1991685;0.01821643,0.001176491;0.4987614;0.03283779,0.1047008;0.3752038;-0.02465636,0.1882397;0.2797421;-0.1792794,0.238904;0.279462;-0.4240917,-0.1119583;0.360379;0.0158712,-0.1566747;0.1654997;0.02061423,-0.1845293;-0.08258124;0.007198337,0.06579917;0.007007109;-0.04495964,0.09173183;-0.2886499;-0.001205366,0.08201057;-0.5812063;0.0644926,0.09905017;-0.6088198;0.003781818,-0.07457133;0.001249798;-0.02894052,-0.09683597;-0.2970816;-0.006519949,-0.09383945;-0.5904756;0.05601816,-0.09257843;-0.6168615;-0.008507773,0.0007807899;0.3987891;0.03051951,58.84132
-0;0;0,0.006263286;0.1994454;0.01350131,0.01504663;0.4991679;0.02132034,0.1141749;0.375266;-0.03718182,0.2055092;0.2924384;-0.1946545,0.2406648;0.3713984;-0.429238,-0.100604;0.3610172;0.005851165,-0.1529959;0.1694053;0.0290889,-0.1845215;-0.0769279;0.0003472585,0.06417782;0.003758586;-0.04761387,0.1003489;-0.291296;-0.007185809,0.08942247;-0.5825303;0.06397077,0.1011308;-0.6121371;0.004593465,-0.07629528;0.004524379;-0.02363389,-0.09128566;-0.2944306;-0.003603131,-0.08503898;-0.5877281;0.05914646,-0.08608384;-0.6170363;-0.001756027,0.01211337;0.399211;0.02121409,0;0;0,0.0002780644;0.1991685;0.01821643,0.001176491;0.4987614;0.03283779,0.1047008;0.3752038;-0.02465636,0.1882397;0.2797421;-0.1792794,0.238904;0.279462;-0.4240917,-0.1119583;0.360379;0.0158712,-0.1566747;0.1654997;0.02061423,-0.1845293;-0.08258124;0.007198337,0.06579917;0.007007109;-0.04495964,0.09173183;-0.2886499;-0.001205366,0.08201057;-0.5812063;0.0644926,0.09905017;-0.6088198;0.003781818,-0.07457133;0.001249798;-0.02894052,-0.09683597;-0.2970816;-0.006519949,-0.09383945;-0.5904756;0.05601816,-0.09257843;-0.6168615;-0.008507773,0.0007807899;0.3987891;0.03051951,58.86354
-0;0;0,0.006263286;0.1994454;0.01350131,0.01504663;0.4991679;0.02132034,0.1141749;0.375266;-0.03718182,0.2055092;0.2924384;-0.1946545,0.2406648;0.3713984;-0.429238,-0.100604;0.3610172;0.005851165,-0.1529959;0.1694053;0.0290889,-0.1845215;-0.0769279;0.0003472585,0.06417782;0.003758586;-0.04761387,0.1003489;-0.291296;-0.007185809,0.08942247;-0.5825303;0.06397077,0.1011308;-0.6121371;0.004593465,-0.07629528;0.004524379;-0.02363389,-0.09128566;-0.2944306;-0.003603131,-0.08503898;-0.5877281;0.05914646,-0.08608384;-0.6170363;-0.001756027,0.01211337;0.399211;0.02121409,0;0;0,0.0004885182;0.1991636;0.01826526,0.001499185;0.4987563;0.03287351,0.1047754;0.3751903;-0.02498754,0.1886191;0.2798217;-0.1795031,0.2395698;0.2855425;-0.4241892,-0.1117098;0.3604406;0.0160022,-0.1562987;0.1655289;0.02061264,-0.1840142;-0.08255997;0.007056802,0.06554223;0.007015183;-0.04533215,0.09192031;-0.2885381;-0.001145527,0.08248308;-0.5810691;0.06470717,0.100303;-0.6092415;0.004944924,-0.07469702;0.001220954;-0.02861582,-0.09657634;-0.2971752;-0.006683229,-0.09325748;-0.590341;0.05689995,-0.09241632;-0.6162141;-0.008234963,0.001062179;0.3987837;0.03057249,58.87458
-0;0;0,0.006263286;0.1994454;0.01350131,0.01504663;0.4991679;0.02132034,0.1141749;0.375266;-0.03718182,0.2055092;0.2924384;-0.1946545,0.2406648;0.3713984;-0.429238,-0.100604;0.3610172;0.005851165,-0.1529959;0.1694053;0.0290889,-0.1845215;-0.0769279;0.0003472585,0.06417782;0.003758586;-0.04761387,0.1003489;-0.291296;-0.007185809,0.08942247;-0.5825303;0.06397077,0.1011308;-0.6121371;0.004593465,-0.07629528;0.004524379;-0.02363389,-0.09128566;-0.2944306;-0.003603131,-0.08503898;-0.5877281;0.05914646,-0.08608384;-0.6170363;-0.001756027,0.01211337;0.399211;0.02121409,0;0;0,0.0004885182;0.1991636;0.01826526,0.001499185;0.4987563;0.03287351,0.1047754;0.3751903;-0.02498754,0.1886191;0.2798217;-0.1795031,0.2395698;0.2855425;-0.4241892,-0.1117098;0.3604406;0.0160022,-0.1562987;0.1655289;0.02061264,-0.1840142;-0.08255997;0.007056802,0.06554223;0.007015183;-0.04533215,0.09192031;-0.2885381;-0.001145527,0.08248308;-0.5810691;0.06470717,0.100303;-0.6092415;0.004944924,-0.07469702;0.001220954;-0.02861582,-0.09657634;-0.2971752;-0.006683229,-0.09325748;-0.590341;0.05689995,-0.09241632;-0.6162141;-0.008234963,0.001062179;0.3987837;0.03057249,58.88599
-0;0;0,0.006154341;0.1994412;0.01361408,0.01475258;0.4991624;0.02169357,0.1139855;0.3755853;-0.03695651,0.2121385;0.2812503;-0.1834723,0.2367208;0.3699598;-0.415908,-0.1011726;0.3613621;0.007800515,-0.1538234;0.1695992;0.02912883,-0.1842948;-0.07681833;-2.40691E-05,0.06416617;0.003842557;-0.04762286,0.1004363;-0.2911947;-0.007156964,0.0894621;-0.5824112;0.06406491,0.1009341;-0.6115481;0.0040171,-0.07629896;0.00445074;-0.02363598,-0.09116243;-0.2945103;-0.003601454,-0.08500411;-0.5878019;0.05918471,-0.08549342;-0.618019;-0.0005227104,0.01187833;0.399204;0.02149253,0;0;0,0.0004885182;0.1991636;0.01826526,0.001499185;0.4987563;0.03287351,0.1047754;0.3751903;-0.02498754,0.1886191;0.2798217;-0.1795031,0.2395698;0.2855425;-0.4241892,-0.1117098;0.3604406;0.0160022,-0.1562987;0.1655289;0.02061264,-0.1840142;-0.08255997;0.007056802,0.06554223;0.007015183;-0.04533215,0.09192031;-0.2885381;-0.001145527,0.08248308;-0.5810691;0.06470717,0.100303;-0.6092415;0.004944924,-0.07469702;0.001220954;-0.02861582,-0.09657634;-0.2971752;-0.006683229,-0.09325748;-0.590341;0.05689995,-0.09241632;-0.6162141;-0.008234963,0.001062179;0.3987837;0.03057249,58.90795
-0;0;0,0.006154341;0.1994412;0.01361408,0.01475258;0.4991624;0.02169357,0.1139855;0.3755853;-0.03695651,0.2121385;0.2812503;-0.1834723,0.2367208;0.3699598;-0.415908,-0.1011726;0.3613621;0.007800515,-0.1538234;0.1695992;0.02912883,-0.1842948;-0.07681833;-2.40691E-05,0.06416617;0.003842557;-0.04762286,0.1004363;-0.2911947;-0.007156964,0.0894621;-0.5824112;0.06406491,0.1009341;-0.6115481;0.0040171,-0.07629896;0.00445074;-0.02363598,-0.09116243;-0.2945103;-0.003601454,-0.08500411;-0.5878019;0.05918471,-0.08549342;-0.618019;-0.0005227104,0.01187833;0.399204;0.02149253,0;0;0,0.0004315559;0.1991668;0.01823167,0.001336038;0.4987638;0.03275668,0.1045627;0.375244;-0.02526554,0.1884663;0.2834644;-0.1819075,0.2395028;0.2925578;-0.4264736,-0.1118012;0.3603513;0.01594367,-0.1563346;0.1654258;0.02050648,-0.1839637;-0.08265437;0.006619026,0.06553074;0.006977556;-0.04535456,0.09203325;-0.2885671;-0.001184542,0.08124688;-0.5811006;0.06444915,0.1009784;-0.6083984;0.004152209,-0.07471735;0.001244331;-0.02856168,-0.0962835;-0.297185;-0.006771363,-0.09332075;-0.5903758;0.05671389,-0.09235577;-0.6161826;-0.00849656,0.0009416688;0.3987904;0.03048616,58.91941
-0;0;0,0.006010907;0.19944;0.0136953,0.01438801;0.4991631;0.02193223,0.1136632;0.3755427;-0.03679451,0.2057071;0.289377;-0.1920472,0.2406928;0.3728257;-0.4250972,-0.1012367;0.3611118;0.00681324,-0.1538377;0.1694558;0.02919851,-0.183691;-0.07702917;-2.392381E-05,0.06416236;0.003953134;-0.04761894,0.1004423;-0.2910842;-0.007162072,0.08940574;-0.5822299;0.06433907,0.1011514;-0.6111931;0.004115831,-0.07631065;0.004317712;-0.02362294,-0.09110866;-0.2946625;-0.00382782,-0.08520433;-0.587943;0.05903504,-0.100187;-0.5551881;-0.03832062,0.01158171;0.3992028;0.02168259,0;0;0,0.0004315559;0.1991668;0.01823167,0.001336038;0.4987638;0.03275668,0.1045627;0.375244;-0.02526554,0.1884663;0.2834644;-0.1819075,0.2395028;0.2925578;-0.4264736,-0.1118012;0.3603513;0.01594367,-0.1563346;0.1654258;0.02050648,-0.1839637;-0.08265437;0.006619026,0.06553074;0.006977556;-0.04535456,0.09203325;-0.2885671;-0.001184542,0.08124688;-0.5811006;0.06444915,0.1009784;-0.6083984;0.004152209,-0.07471735;0.001244331;-0.02856168,-0.0962835;-0.297185;-0.006771363,-0.09332075;-0.5903758;0.05671389,-0.09235577;-0.6161826;-0.00849656,0.0009416688;0.3987904;0.03048616,58.94166
-0;0;0,0.006010907;0.19944;0.0136953,0.01438801;0.4991631;0.02193223,0.1136632;0.3755427;-0.03679451,0.2057071;0.289377;-0.1920472,0.2406928;0.3728257;-0.4250972,-0.1012367;0.3611118;0.00681324,-0.1538377;0.1694558;0.02919851,-0.183691;-0.07702917;-2.392381E-05,0.06416236;0.003953134;-0.04761894,0.1004423;-0.2910842;-0.007162072,0.08940574;-0.5822299;0.06433907,0.1011514;-0.6111931;0.004115831,-0.07631065;0.004317712;-0.02362294,-0.09110866;-0.2946625;-0.00382782,-0.08520433;-0.587943;0.05903504,-0.100187;-0.5551881;-0.03832062,0.01158171;0.3992028;0.02168259,0;0;0,0.0004315559;0.1991668;0.01823167,0.001336038;0.4987638;0.03275668,0.1045627;0.375244;-0.02526554,0.1884663;0.2834644;-0.1819075,0.2395028;0.2925578;-0.4264736,-0.1118012;0.3603513;0.01594367,-0.1563346;0.1654258;0.02050648,-0.1839637;-0.08265437;0.006619026,0.06553074;0.006977556;-0.04535456,0.09203325;-0.2885671;-0.001184542,0.08124688;-0.5811006;0.06444915,0.1009784;-0.6083984;0.004152209,-0.07471735;0.001244331;-0.02856168,-0.0962835;-0.297185;-0.006771363,-0.09332075;-0.5903758;0.05671389,-0.09235577;-0.6161826;-0.00849656,0.0009416688;0.3987904;0.03048616,58.95302
-0;0;0,0.005899839;0.1994385;0.01376571,0.01417623;0.4991613;0.02210634,0.113508;0.3755909;-0.0366152,0.2052466;0.2910832;-0.1929561,0.2413854;0.3734438;-0.4262171,-0.1012766;0.3610719;0.005974455,-0.153836;0.1695059;0.02921145,-0.1835871;-0.07696773;-0.0002100226,0.06418901;0.003955579;-0.04758281,0.1004171;-0.2910873;-0.007119898,0.08954607;-0.5823158;0.06406821,0.1012409;-0.6114002;0.003994271,-0.0762965;0.004320083;-0.02366813,-0.09115794;-0.2946733;-0.004120179,-0.08537479;-0.5880021;0.05852785,-0.1000604;-0.5552361;-0.03887503,0.01139505;0.3992004;0.02182739,0;0;0,0.0004119911;0.1991653;0.01824819,0.001261144;0.4987621;0.03278107,0.1044731;0.3753058;-0.02534409,0.1887434;0.2837225;-0.1819041,0.2393703;0.2988725;-0.426255,-0.1118852;0.3604482;0.01597198,-0.1564533;0.1655295;0.02048941,-0.1840499;-0.08254647;0.00646392,0.06548748;0.006988554;-0.0454153,0.09207754;-0.2885506;-0.001261611,0.08140628;-0.5810678;0.064464,0.1008001;-0.6081749;0.003814369,-0.07474586;0.001185616;-0.02848947,-0.09610247;-0.2972882;-0.007105572,-0.09334408;-0.5904674;0.05644258,-0.09213512;-0.617424;-0.007402688,0.0008920186;0.3987886;0.0305085,58.9751
-0;0;0,0.005899839;0.1994385;0.01376571,0.01417623;0.4991613;0.02210634,0.113508;0.3755909;-0.0366152,0.2052466;0.2910832;-0.1929561,0.2413854;0.3734438;-0.4262171,-0.1012766;0.3610719;0.005974455,-0.153836;0.1695059;0.02921145,-0.1835871;-0.07696773;-0.0002100226,0.06418901;0.003955579;-0.04758281,0.1004171;-0.2910873;-0.007119898,0.08954607;-0.5823158;0.06406821,0.1012409;-0.6114002;0.003994271,-0.0762965;0.004320083;-0.02366813,-0.09115794;-0.2946733;-0.004120179,-0.08537479;-0.5880021;0.05852785,-0.1000604;-0.5552361;-0.03887503,0.01139505;0.3992004;0.02182739,0;0;0,0.0004119911;0.1991653;0.01824819,0.001261144;0.4987621;0.03278107,0.1044731;0.3753058;-0.02534409,0.1887434;0.2837225;-0.1819041,0.2393703;0.2988725;-0.426255,-0.1118852;0.3604482;0.01597198,-0.1564533;0.1655295;0.02048941,-0.1840499;-0.08254647;0.00646392,0.06548748;0.006988554;-0.0454153,0.09207754;-0.2885506;-0.001261611,0.08140628;-0.5810678;0.064464,0.1008001;-0.6081749;0.003814369,-0.07474586;0.001185616;-0.02848947,-0.09610247;-0.2972882;-0.007105572,-0.09334408;-0.5904674;0.05644258,-0.09213512;-0.617424;-0.007402688,0.0008920186;0.3987886;0.0305085,58.98637
-0;0;0,0.005769862;0.1994378;0.01383031,0.01373242;0.4991654;0.02230446,0.1132594;0.3755015;-0.03627649,0.2046464;0.2922711;-0.193506,0.2420931;0.3738115;-0.4268489,-0.1015269;0.3611634;0.005344771,-0.1543758;0.1697412;0.0291046,-0.1836862;-0.07674883;-0.000620205,0.06425695;0.00394954;-0.04749153,0.100375;-0.2911003;-0.006981451,0.08940794;-0.5822345;0.06457692,0.1014586;-0.6111794;0.004389755,-0.07626522;0.004235813;-0.0237839,-0.09134461;-0.2947112;-0.003701957,-0.08519009;-0.5880877;0.05868702,-0.09958677;-0.5553216;-0.038759,0.01106222;0.3992015;0.02198197,0;0;0,0.0004119911;0.1991653;0.01824819,0.001261144;0.4987621;0.03278107,0.1044731;0.3753058;-0.02534409,0.1887434;0.2837225;-0.1819041,0.2393703;0.2988725;-0.426255,-0.1118852;0.3604482;0.01597198,-0.1564533;0.1655295;0.02048941,-0.1840499;-0.08254647;0.00646392,0.06548748;0.006988554;-0.0454153,0.09207754;-0.2885506;-0.001261611,0.08140628;-0.5810678;0.064464,0.1008001;-0.6081749;0.003814369,-0.07474586;0.001185616;-0.02848947,-0.09610247;-0.2972882;-0.007105572,-0.09334408;-0.5904674;0.05644258,-0.09213512;-0.617424;-0.007402688,0.0008920186;0.3987886;0.0305085,58.9977
-0;0;0,0.005769862;0.1994378;0.01383031,0.01373242;0.4991654;0.02230446,0.1132594;0.3755015;-0.03627649,0.2046464;0.2922711;-0.193506,0.2420931;0.3738115;-0.4268489,-0.1015269;0.3611634;0.005344771,-0.1543758;0.1697412;0.0291046,-0.1836862;-0.07674883;-0.000620205,0.06425695;0.00394954;-0.04749153,0.100375;-0.2911003;-0.006981451,0.08940794;-0.5822345;0.06457692,0.1014586;-0.6111794;0.004389755,-0.07626522;0.004235813;-0.0237839,-0.09134461;-0.2947112;-0.003701957,-0.08519009;-0.5880877;0.05868702,-0.09958677;-0.5553216;-0.038759,0.01106222;0.3992015;0.02198197,0;0;0,0.0003898946;0.1991643;0.01826058,0.001208018;0.49876;0.03281981,0.1043995;0.3753932;-0.02541653,0.1889639;0.2843741;-0.1821468,0.2404643;0.3094246;-0.4254988,-0.1119133;0.3604307;0.01594993,-0.1564399;0.1655027;0.02047054,-0.1840906;-0.08255547;0.006237189,0.06547622;0.006989545;-0.04543138,0.09213033;-0.2885326;-0.00120217,0.08106083;-0.5810799;0.0643232,0.100997;-0.6080929;0.003729932,-0.07477023;0.001162946;-0.02842638,-0.09603991;-0.2973213;-0.007101515,-0.09328207;-0.5905331;0.05629589,-0.09199762;-0.6176298;-0.007378653,0.0008522387;0.3987867;0.03053631,59.00896
-0;0;0,0.005710787;0.1994368;0.01386938,0.01359528;0.4991652;0.02237683,0.1131432;0.3754759;-0.03620341,0.2044023;0.2928717;-0.1938369,0.2425453;0.3741821;-0.4271473,-0.1016274;0.3605219;0.006860054,-0.1548782;0.1690198;0.0290246,-0.1834339;-0.07750168;-0.001170425,0.06428425;0.003962279;-0.04745351,0.1003847;-0.2910957;-0.006986804,0.08936736;-0.5822496;0.06448385,0.1022886;-0.612263;0.005909976,-0.07625346;0.004210227;-0.02382609,-0.09139706;-0.2947325;-0.003728669,-0.08516303;-0.5881065;0.05866445,-0.1000389;-0.555336;-0.03871034,0.01094812;0.3992008;0.02204851,0;0;0,0.0003898946;0.1991643;0.01826058,0.001208018;0.49876;0.03281981,0.1043995;0.3753932;-0.02541653,0.1889639;0.2843741;-0.1821468,0.2404643;0.3094246;-0.4254988,-0.1119133;0.3604307;0.01594993,-0.1564399;0.1655027;0.02047054,-0.1840906;-0.08255547;0.006237189,0.06547622;0.006989545;-0.04543138,0.09213033;-0.2885326;-0.00120217,0.08106083;-0.5810799;0.0643232,0.100997;-0.6080929;0.003729932,-0.07477023;0.001162946;-0.02842638,-0.09603991;-0.2973213;-0.007101515,-0.09328207;-0.5905331;0.05629589,-0.09199762;-0.6176298;-0.007378653,0.0008522387;0.3987867;0.03053631,59.03097
-0;0;0,0.005710787;0.1994368;0.01386938,0.01359528;0.4991652;0.02237683,0.1131432;0.3754759;-0.03620341,0.2044023;0.2928717;-0.1938369,0.2425453;0.3741821;-0.4271473,-0.1016274;0.3605219;0.006860054,-0.1548782;0.1690198;0.0290246,-0.1834339;-0.07750168;-0.001170425,0.06428425;0.003962279;-0.04745351,0.1003847;-0.2910957;-0.006986804,0.08936736;-0.5822496;0.06448385,0.1022886;-0.612263;0.005909976,-0.07625346;0.004210227;-0.02382609,-0.09139706;-0.2947325;-0.003728669,-0.08516303;-0.5881065;0.05866445,-0.1000389;-0.555336;-0.03871034,0.01094812;0.3992008;0.02204851,0;0;0,0.0003898946;0.1991643;0.01826058,0.001208018;0.49876;0.03281981,0.1043995;0.3753932;-0.02541653,0.1889639;0.2843741;-0.1821468,0.2404643;0.3094246;-0.4254988,-0.1119133;0.3604307;0.01594993,-0.1564399;0.1655027;0.02047054,-0.1840906;-0.08255547;0.006237189,0.06547622;0.006989545;-0.04543138,0.09213033;-0.2885326;-0.00120217,0.08106083;-0.5810799;0.0643232,0.100997;-0.6080929;0.003729932,-0.07477023;0.001162946;-0.02842638,-0.09603991;-0.2973213;-0.007101515,-0.09328207;-0.5905331;0.05629589,-0.09199762;-0.6176298;-0.007378653,0.0008522387;0.3987867;0.03053631,59.04234
-0;0;0,0.005710787;0.1994368;0.01386938,0.01359528;0.4991652;0.02237683,0.1131432;0.3754759;-0.03620341,0.2044023;0.2928717;-0.1938369,0.2425453;0.3741821;-0.4271473,-0.1016274;0.3605219;0.006860054,-0.1548782;0.1690198;0.0290246,-0.1834339;-0.07750168;-0.001170425,0.06428425;0.003962279;-0.04745351,0.1003847;-0.2910957;-0.006986804,0.08936736;-0.5822496;0.06448385,0.1022886;-0.612263;0.005909976,-0.07625346;0.004210227;-0.02382609,-0.09139706;-0.2947325;-0.003728669,-0.08516303;-0.5881065;0.05866445,-0.1000389;-0.555336;-0.03871034,0.01094812;0.3992008;0.02204851,0;0;0,0.0003258405;0.1991638;0.01826726,0.0009983124;0.4987642;0.03272752,0.1054046;0.375646;-0.02338696,0.1873173;0.2890877;-0.1840044,0.238373;0.3179816;-0.4270239,-0.1121022;0.3605017;0.01604403,-0.1564485;0.165525;0.0202261,-0.1843008;-0.08249494;0.005722882,0.0654598;0.006937749;-0.04546297,0.09207517;-0.288623;-0.001469232,0.08130446;-0.5811469;0.06421017,0.1006423;-0.6072853;0.002331398,-0.07479816;0.001177608;-0.0283522,-0.0963023;-0.2972758;-0.006831357,-0.09328452;-0.5905098;0.05645135,-0.09187965;-0.6170058;-0.007941008,0.0007048711;0.3987898;0.03048639,59.0536
-0;0;0,0.005675019;0.1994372;0.01387802,0.01360095;0.4991653;0.02235864,0.1131941;0.3752601;-0.03601144,0.2045014;0.2932119;-0.1939072,0.2433012;0.374542;-0.4271024,-0.1014788;0.3604915;0.005779345,-0.1547169;0.1690966;0.02888076,-0.1840353;-0.07733403;-0.001324752,0.06438382;0.003945369;-0.04731973,0.100497;-0.2911184;-0.006906658,0.08954846;-0.5823118;0.06441309,0.1024529;-0.6123344;0.005848013,-0.0761916;0.004166543;-0.02403083,-0.09137787;-0.2947606;-0.00373503,-0.08506788;-0.5881825;0.05842432,-0.09952005;-0.5554097;-0.0390147,0.01093604;0.3992013;0.02204124,0;0;0,0.0003258405;0.1991638;0.01826726,0.0009983124;0.4987642;0.03272752,0.1054046;0.375646;-0.02338696,0.1873173;0.2890877;-0.1840044,0.238373;0.3179816;-0.4270239,-0.1121022;0.3605017;0.01604403,-0.1564485;0.165525;0.0202261,-0.1843008;-0.08249494;0.005722882,0.0654598;0.006937749;-0.04546297,0.09207517;-0.288623;-0.001469232,0.08130446;-0.5811469;0.06421017,0.1006423;-0.6072853;0.002331398,-0.07479816;0.001177608;-0.0283522,-0.0963023;-0.2972758;-0.006831357,-0.09328452;-0.5905098;0.05645135,-0.09187965;-0.6170058;-0.007941008,0.0007048711;0.3987898;0.03048639,59.07558
-0;0;0,0.005675019;0.1994372;0.01387802,0.01360095;0.4991653;0.02235864,0.1131941;0.3752601;-0.03601144,0.2045014;0.2932119;-0.1939072,0.2433012;0.374542;-0.4271024,-0.1014788;0.3604915;0.005779345,-0.1547169;0.1690966;0.02888076,-0.1840353;-0.07733403;-0.001324752,0.06438382;0.003945369;-0.04731973,0.100497;-0.2911184;-0.006906658,0.08954846;-0.5823118;0.06441309,0.1024529;-0.6123344;0.005848013,-0.0761916;0.004166543;-0.02403083,-0.09137787;-0.2947606;-0.00373503,-0.08506788;-0.5881825;0.05842432,-0.09952005;-0.5554097;-0.0390147,0.01093604;0.3992013;0.02204124,0;0;0,0.0003258405;0.1991638;0.01826726,0.0009983124;0.4987642;0.03272752,0.1054046;0.375646;-0.02338696,0.1873173;0.2890877;-0.1840044,0.238373;0.3179816;-0.4270239,-0.1121022;0.3605017;0.01604403,-0.1564485;0.165525;0.0202261,-0.1843008;-0.08249494;0.005722882,0.0654598;0.006937749;-0.04546297,0.09207517;-0.288623;-0.001469232,0.08130446;-0.5811469;0.06421017,0.1006423;-0.6072853;0.002331398,-0.07479816;0.001177608;-0.0283522,-0.0963023;-0.2972758;-0.006831357,-0.09328452;-0.5905098;0.05645135,-0.09187965;-0.6170058;-0.007941008,0.0007048711;0.3987898;0.03048639,59.08714
-0;0;0,0.00556517;0.1994375;0.01391829,0.01340693;0.4991683;0.02236948,0.113161;0.3752007;-0.03571202,0.2044508;0.2933403;-0.1937153,0.2440633;0.3750572;-0.4266384,-0.1016002;0.3606617;0.005072789,-0.154889;0.1693454;0.0287029,-0.1837543;-0.07711759;-0.001674835,0.06456134;0.003969778;-0.04707519,0.1007707;-0.2911319;-0.007027011,0.08985914;-0.5823507;0.06419514,0.1029197;-0.6125054;0.005845711,-0.07614108;0.004171676;-0.02418952,-0.09117986;-0.2947696;-0.003991939,-0.08507935;-0.5882077;0.05811191,-0.09920691;-0.5554376;-0.03937421,0.01076365;0.3992037;0.02206895,0;0;0,0.0003202954;0.1991628;0.01827751,0.000968546;0.4987629;0.03274781,0.1051235;0.3756832;-0.02389035,0.1882453;0.2907799;-0.1847697,0.2384328;0.3233898;-0.4274997,-0.1120843;0.3604336;0.01593424,-0.1564689;0.1654623;0.01995592,-0.1842458;-0.08252339;0.004739176,0.06543399;0.006928165;-0.04550156,0.09232206;-0.2886143;-0.001550723,0.08170172;-0.5811576;0.0640668,0.10006;-0.6078272;0.002546635,-0.07481783;0.001170929;-0.02830054,-0.09660901;-0.2972545;-0.006681558,-0.09320436;-0.5904453;0.05678188,-0.09150957;-0.617518;-0.006912116,0.0006839235;0.3987886;0.0305019,59.10911
-0;0;0,0.00556517;0.1994375;0.01391829,0.01340693;0.4991683;0.02236948,0.113161;0.3752007;-0.03571202,0.2044508;0.2933403;-0.1937153,0.2440633;0.3750572;-0.4266384,-0.1016002;0.3606617;0.005072789,-0.154889;0.1693454;0.0287029,-0.1837543;-0.07711759;-0.001674835,0.06456134;0.003969778;-0.04707519,0.1007707;-0.2911319;-0.007027011,0.08985914;-0.5823507;0.06419514,0.1029197;-0.6125054;0.005845711,-0.07614108;0.004171676;-0.02418952,-0.09117986;-0.2947696;-0.003991939,-0.08507935;-0.5882077;0.05811191,-0.09920691;-0.5554376;-0.03937421,0.01076365;0.3992037;0.02206895,0;0;0,0.0003202954;0.1991628;0.01827751,0.000968546;0.4987629;0.03274781,0.1051235;0.3756832;-0.02389035,0.1882453;0.2907799;-0.1847697,0.2384328;0.3233898;-0.4274997,-0.1120843;0.3604336;0.01593424,-0.1564689;0.1654623;0.01995592,-0.1842458;-0.08252339;0.004739176,0.06543399;0.006928165;-0.04550156,0.09232206;-0.2886143;-0.001550723,0.08170172;-0.5811576;0.0640668,0.10006;-0.6078272;0.002546635,-0.07481783;0.001170929;-0.02830054,-0.09660901;-0.2972545;-0.006681558,-0.09320436;-0.5904453;0.05678188,-0.09150957;-0.617518;-0.006912116,0.0006839235;0.3987886;0.0305019,59.12053
-0;0;0,0.00547979;0.199438;0.01394513,0.01330876;0.4991702;0.02235102,0.1130706;0.3752236;-0.03569956,0.2043764;0.2933604;-0.1936922,0.244527;0.3755591;-0.4263536,-0.101807;0.3606028;0.005934371,-0.1554888;0.1692282;0.02816076,-0.1847187;-0.07713751;-0.002654217,0.06462047;0.004023728;-0.04698939,0.1009844;-0.2910969;-0.007221498,0.08995834;-0.5823257;0.06394161,0.103399;-0.6117821;0.00472993,-0.07609291;0.004135739;-0.02434675,-0.09126119;-0.2948185;-0.004439104,-0.08475114;-0.5880558;0.05856477,-0.09918997;-0.5552779;-0.03887713,0.01066268;0.3992056;0.02207132,0;0;0,0.0003202954;0.1991628;0.01827751,0.000968546;0.4987629;0.03274781,0.1051235;0.3756832;-0.02389035,0.1882453;0.2907799;-0.1847697,0.2384328;0.3233898;-0.4274997,-0.1120843;0.3604336;0.01593424,-0.1564689;0.1654623;0.01995592,-0.1842458;-0.08252339;0.004739176,0.06543399;0.006928165;-0.04550156,0.09232206;-0.2886143;-0.001550723,0.08170172;-0.5811576;0.0640668,0.10006;-0.6078272;0.002546635,-0.07481783;0.001170929;-0.02830054,-0.09660901;-0.2972545;-0.006681558,-0.09320436;-0.5904453;0.05678188,-0.09150957;-0.617518;-0.006912116,0.0006839235;0.3987886;0.0305019,59.14281
-0;0;0,0.005452238;0.1994397;0.01393096,0.01329179;0.4991733;0.02227517,0.1133199;0.3754415;-0.03535772,0.2045818;0.2936288;-0.1934018,0.2460795;0.3757544;-0.4258525,-0.1017389;0.3607261;0.004984414,-0.1551968;0.1693591;0.027809,-0.1855222;-0.0768781;-0.002974048,0.06478897;0.004137872;-0.04674684,0.101017;-0.2910158;-0.007100046,0.08998531;-0.58225;0.06404031,0.1033202;-0.6117689;0.004888587,-0.07604814;0.004104992;-0.02449139,-0.09107237;-0.2948995;-0.005240165,-0.08486222;-0.5880778;0.05806787,-0.0988325;-0.5553089;-0.03944069,0.01063969;0.3992088;0.02201726,0;0;0,0.0004043622;0.1991523;0.01838992,0.001094748;0.4987496;0.03291528,0.1048994;0.3754432;-0.02430251,0.1901878;0.287887;-0.1826054,0.23729;0.3293754;-0.4245973,-0.1120257;0.3605828;0.01614455,-0.1563593;0.1655969;0.02002248,-0.1841796;-0.0823819;0.004773634,0.06543135;0.006866741;-0.04551469,0.09241444;-0.2886507;-0.001454104,0.0817;-0.5811681;0.06426387,0.1004289;-0.6073249;0.00222066,-0.07485117;0.00119139;-0.02821141,-0.09659468;-0.2972373;-0.006588055,-0.09312788;-0.590398;0.05701069,-0.09160753;-0.616895;-0.007377863,0.0008052681;0.3987757;0.03065206,59.16514
-0;0;0,0.005452238;0.1994397;0.01393096,0.01329179;0.4991733;0.02227517,0.1133199;0.3754415;-0.03535772,0.2045818;0.2936288;-0.1934018,0.2460795;0.3757544;-0.4258525,-0.1017389;0.3607261;0.004984414,-0.1551968;0.1693591;0.027809,-0.1855222;-0.0768781;-0.002974048,0.06478897;0.004137872;-0.04674684,0.101017;-0.2910158;-0.007100046,0.08998531;-0.58225;0.06404031,0.1033202;-0.6117689;0.004888587,-0.07604814;0.004104992;-0.02449139,-0.09107237;-0.2948995;-0.005240165,-0.08486222;-0.5880778;0.05806787,-0.0988325;-0.5553089;-0.03944069,0.01063969;0.3992088;0.02201726,0;0;0,0.0004043622;0.1991523;0.01838992,0.001094748;0.4987496;0.03291528,0.1048994;0.3754432;-0.02430251,0.1901878;0.287887;-0.1826054,0.23729;0.3293754;-0.4245973,-0.1120257;0.3605828;0.01614455,-0.1563593;0.1655969;0.02002248,-0.1841796;-0.0823819;0.004773634,0.06543135;0.006866741;-0.04551469,0.09241444;-0.2886507;-0.001454104,0.0817;-0.5811681;0.06426387,0.1004289;-0.6073249;0.00222066,-0.07485117;0.00119139;-0.02821141,-0.09659468;-0.2972373;-0.006588055,-0.09312788;-0.590398;0.05701069,-0.09160753;-0.616895;-0.007377863,0.0008052681;0.3987757;0.03065206,59.17651
-0;0;0,0.005372956;0.1994436;0.01390578,0.0131164;0.4991803;0.02222236,0.1134035;0.3754076;-0.03499573,0.2045908;0.2937448;-0.1931604,0.2473902;0.3762456;-0.4252419,-0.1020037;0.3606971;0.005953865,-0.1555238;0.1691833;0.02735577,-0.1757299;-0.07834227;-0.001329239,0.06493551;0.00419501;-0.04653796,0.1007779;-0.2909974;-0.006829388,0.09001572;-0.5822654;0.06421363,0.1037443;-0.6112502;0.004439671,-0.07596255;0.004044656;-0.02476553,-0.0912632;-0.2949342;-0.005335037,-0.08502213;-0.5881513;0.05778996,-0.08510749;-0.6188451;-0.00127364,0.01051094;0.3992145;0.02198098,0;0;0,0.0004043622;0.1991523;0.01838992,0.001094748;0.4987496;0.03291528,0.1048994;0.3754432;-0.02430251,0.1901878;0.287887;-0.1826054,0.23729;0.3293754;-0.4245973,-0.1120257;0.3605828;0.01614455,-0.1563593;0.1655969;0.02002248,-0.1841796;-0.0823819;0.004773634,0.06543135;0.006866741;-0.04551469,0.09241444;-0.2886507;-0.001454104,0.0817;-0.5811681;0.06426387,0.1004289;-0.6073249;0.00222066,-0.07485117;0.00119139;-0.02821141,-0.09659468;-0.2972373;-0.006588055,-0.09312788;-0.590398;0.05701069,-0.09160753;-0.616895;-0.007377863,0.0008052681;0.3987757;0.03065206,59.19872
-0;0;0,0.005372956;0.1994436;0.01390578,0.0131164;0.4991803;0.02222236,0.1134035;0.3754076;-0.03499573,0.2045908;0.2937448;-0.1931604,0.2473902;0.3762456;-0.4252419,-0.1020037;0.3606971;0.005953865,-0.1555238;0.1691833;0.02735577,-0.1757299;-0.07834227;-0.001329239,0.06493551;0.00419501;-0.04653796,0.1007779;-0.2909974;-0.006829388,0.09001572;-0.5822654;0.06421363,0.1037443;-0.6112502;0.004439671,-0.07596255;0.004044656;-0.02476553,-0.0912632;-0.2949342;-0.005335037,-0.08502213;-0.5881513;0.05778996,-0.08510749;-0.6188451;-0.00127364,0.01051094;0.3992145;0.02198098,0;0;0,0.0003921316;0.1991497;0.01841827,0.001088202;0.4987459;0.0329715,0.1047651;0.3755376;-0.02453544,0.1916853;0.2865364;-0.1811358,0.2349907;0.3343067;-0.422678,-0.1120255;0.3606055;0.01602926,-0.15654;0.1656589;0.01980789,-0.1842289;-0.08234163;0.004673467,0.06542686;0.00683813;-0.04552544,0.09236997;-0.2886738;-0.001402993,0.0818555;-0.5812023;0.06429742,0.1003885;-0.6079372;0.002911054,-0.07486669;0.001197674;-0.0281699,-0.09641872;-0.2972642;-0.006814128,-0.09324288;-0.5903896;0.05696192,-0.09145503;-0.6174816;-0.006706193,0.0007941498;0.3987723;0.03069317,59.22091
-0;0;0,0.005281755;0.199446;0.01390758,0.01283495;0.4991867;0.0222503,0.1132198;0.3754807;-0.03496493,0.2047625;0.293756;-0.1928922,0.2481166;0.3767676;-0.4246884,-0.1022203;0.3604932;0.006567679,-0.155904;0.1689384;0.02717906,-0.1837145;-0.07714692;-0.007005148,0.06507564;0.004251527;-0.04633665,0.100673;-0.2910087;-0.006913181,0.09009816;-0.5822873;0.06411505,0.1035102;-0.6110168;0.003933806,-0.07589219;0.004076933;-0.02497507,-0.09149803;-0.2948802;-0.005452611,-0.08504159;-0.5881464;0.05742227,-0.08516851;-0.6189342;-0.00151252,0.01030574;0.399219;0.02200167,0;0;0,0.0003921316;0.1991497;0.01841827,0.001088202;0.4987459;0.0329715,0.1047651;0.3755376;-0.02453544,0.1916853;0.2865364;-0.1811358,0.2349907;0.3343067;-0.422678,-0.1120255;0.3606055;0.01602926,-0.15654;0.1656589;0.01980789,-0.1842289;-0.08234163;0.004673467,0.06542686;0.00683813;-0.04552544,0.09236997;-0.2886738;-0.001402993,0.0818555;-0.5812023;0.06429742,0.1003885;-0.6079372;0.002911054,-0.07486669;0.001197674;-0.0281699,-0.09641872;-0.2972642;-0.006814128,-0.09324288;-0.5903896;0.05696192,-0.09145503;-0.6174816;-0.006706193,0.0007941498;0.3987723;0.03069317,59.23198
-0;0;0,0.005281755;0.199446;0.01390758,0.01283495;0.4991867;0.0222503,0.1132198;0.3754807;-0.03496493,0.2047625;0.293756;-0.1928922,0.2481166;0.3767676;-0.4246884,-0.1022203;0.3604932;0.006567679,-0.155904;0.1689384;0.02717906,-0.1837145;-0.07714692;-0.007005148,0.06507564;0.004251527;-0.04633665,0.100673;-0.2910087;-0.006913181,0.09009816;-0.5822873;0.06411505,0.1035102;-0.6110168;0.003933806,-0.07589219;0.004076933;-0.02497507,-0.09149803;-0.2948802;-0.005452611,-0.08504159;-0.5881464;0.05742227,-0.08516851;-0.6189342;-0.00151252,0.01030574;0.399219;0.02200167,0;0;0,0.0003921316;0.1991497;0.01841827,0.001088202;0.4987459;0.0329715,0.1047651;0.3755376;-0.02453544,0.1916853;0.2865364;-0.1811358,0.2349907;0.3343067;-0.422678,-0.1120255;0.3606055;0.01602926,-0.15654;0.1656589;0.01980789,-0.1842289;-0.08234163;0.004673467,0.06542686;0.00683813;-0.04552544,0.09236997;-0.2886738;-0.001402993,0.0818555;-0.5812023;0.06429742,0.1003885;-0.6079372;0.002911054,-0.07486669;0.001197674;-0.0281699,-0.09641872;-0.2972642;-0.006814128,-0.09324288;-0.5903896;0.05696192,-0.09145503;-0.6174816;-0.006706193,0.0007941498;0.3987723;0.03069317,59.25426
-0;0;0,0.005236942;0.1994427;0.01397047,0.01267277;0.4991818;0.02247954,0.1132161;0.3755968;-0.03463067,0.2048851;0.293789;-0.1924415,0.2487938;0.3768662;-0.4241098,-0.102296;0.3603164;0.00682712,-0.1563694;0.1688008;0.0267728,-0.1778575;-0.07858753;-0.002163056,0.06514286;0.004364542;-0.04623157,0.100571;-0.2909271;-0.006890729,0.08993696;-0.5823081;0.06370712,0.1030595;-0.6108415;0.003206659,-0.07585166;0.004003393;-0.02510973,-0.09133434;-0.2949725;-0.005778071,-0.08510468;-0.5882046;0.05727843,-0.09939656;-0.5554295;-0.04018461,0.01018328;0.3992133;0.02217164,0;0;0,0.0003754551;0.1991507;0.01840802,0.001045586;0.4987475;0.03295,0.1045382;0.3758434;-0.02504183,0.1921564;0.2868537;-0.1812593,0.2353516;0.3377636;-0.4221791,-0.1120332;0.3605652;0.01592337,-0.1565578;0.1656195;0.01962858,-0.184118;-0.08238095;0.004258942,0.0654048;0.006806314;-0.04556189,0.09248437;-0.2887272;-0.00166855,0.08211864;-0.5812365;0.06414086,0.1004437;-0.6080425;0.002781019,-0.07487637;0.001211546;-0.02814359,-0.09607184;-0.2972928;-0.007026207,-0.09327383;-0.5904122;0.05679523,-0.09132851;-0.6175261;-0.006841775,0.0007607163;0.3987738;0.03067554,59.26557
-0;0;0,0.005236942;0.1994427;0.01397047,0.01267277;0.4991818;0.02247954,0.1132161;0.3755968;-0.03463067,0.2048851;0.293789;-0.1924415,0.2487938;0.3768662;-0.4241098,-0.102296;0.3603164;0.00682712,-0.1563694;0.1688008;0.0267728,-0.1778575;-0.07858753;-0.002163056,0.06514286;0.004364542;-0.04623157,0.100571;-0.2909271;-0.006890729,0.08993696;-0.5823081;0.06370712,0.1030595;-0.6108415;0.003206659,-0.07585166;0.004003393;-0.02510973,-0.09133434;-0.2949725;-0.005778071,-0.08510468;-0.5882046;0.05727843,-0.09939656;-0.5554295;-0.04018461,0.01018328;0.3992133;0.02217164,0;0;0,0.0003754551;0.1991507;0.01840802,0.001045586;0.4987475;0.03295,0.1045382;0.3758434;-0.02504183,0.1921564;0.2868537;-0.1812593,0.2353516;0.3377636;-0.4221791,-0.1120332;0.3605652;0.01592337,-0.1565578;0.1656195;0.01962858,-0.184118;-0.08238095;0.004258942,0.0654048;0.006806314;-0.04556189,0.09248437;-0.2887272;-0.00166855,0.08211864;-0.5812365;0.06414086,0.1004437;-0.6080425;0.002781019,-0.07487637;0.001211546;-0.02814359,-0.09607184;-0.2972928;-0.007026207,-0.09327383;-0.5904122;0.05679523,-0.09132851;-0.6175261;-0.006841775,0.0007607163;0.3987738;0.03067554,59.27673
-0;0;0,0.005236942;0.1994427;0.01397047,0.01267277;0.4991818;0.02247954,0.1132161;0.3755968;-0.03463067,0.2048851;0.293789;-0.1924415,0.2487938;0.3768662;-0.4241098,-0.102296;0.3603164;0.00682712,-0.1563694;0.1688008;0.0267728,-0.1778575;-0.07858753;-0.002163056,0.06514286;0.004364542;-0.04623157,0.100571;-0.2909271;-0.006890729,0.08993696;-0.5823081;0.06370712,0.1030595;-0.6108415;0.003206659,-0.07585166;0.004003393;-0.02510973,-0.09133434;-0.2949725;-0.005778071,-0.08510468;-0.5882046;0.05727843,-0.09939656;-0.5554295;-0.04018461,0.01018328;0.3992133;0.02217164,0;0;0,0.0003754551;0.1991507;0.01840802,0.001045586;0.4987475;0.03295,0.1045382;0.3758434;-0.02504183,0.1921564;0.2868537;-0.1812593,0.2353516;0.3377636;-0.4221791,-0.1120332;0.3605652;0.01592337,-0.1565578;0.1656195;0.01962858,-0.184118;-0.08238095;0.004258942,0.0654048;0.006806314;-0.04556189,0.09248437;-0.2887272;-0.00166855,0.08211864;-0.5812365;0.06414086,0.1004437;-0.6080425;0.002781019,-0.07487637;0.001211546;-0.02814359,-0.09607184;-0.2972928;-0.007026207,-0.09327383;-0.5904122;0.05679523,-0.09132851;-0.6175261;-0.006841775,0.0007607163;0.3987738;0.03067554,59.28812
-0;0;0,0.005204345;0.1994426;0.01398517,0.01259184;0.4991825;0.02250103,0.1132803;0.3757736;-0.03444534,0.2050939;0.2938989;-0.1921374,0.2499242;0.3771225;-0.4235765,-0.1023583;0.3602455;0.007010131,-0.1563113;0.1685663;0.02566862,-0.1777976;-0.0789426;-0.00221858,0.0652387;0.004387569;-0.04609405,0.1005488;-0.2909383;-0.006904174,0.09006326;-0.5823647;0.06352849,0.1040143;-0.6110191;0.003371697,-0.07582375;0.003993213;-0.02519546,-0.09145509;-0.2949812;-0.005961103,-0.0852547;-0.5881995;0.05716272,-0.08675198;-0.6187702;-0.0020498,0.01011798;0.3992136;0.02219487,0;0;0,0.000219157;0.1991503;0.01841483,0.0004933553;0.4987455;0.03300686,0.1039999;0.3760624;-0.02535344,0.19162;0.2909434;-0.1837121,0.2366034;0.3393356;-0.4248235,-0.1125131;0.3607869;0.01598454,-0.1569921;0.1658294;0.01961498,-0.1845043;-0.08216552;0.004071455,0.06542956;0.006875765;-0.04551588,0.0925448;-0.2886825;-0.001811262,0.08219282;-0.5811512;0.06418042,0.1003219;-0.6079742;0.002783649,-0.0748686;0.001118678;-0.02816809,-0.09584242;-0.2974002;-0.007035526,-0.09313109;-0.5905604;0.0566024,-0.09145361;-0.6196882;-0.004520141,0.0003598688;0.398772;0.0307092,59.31019
-0;0;0,0.005204345;0.1994426;0.01398517,0.01259184;0.4991825;0.02250103,0.1132803;0.3757736;-0.03444534,0.2050939;0.2938989;-0.1921374,0.2499242;0.3771225;-0.4235765,-0.1023583;0.3602455;0.007010131,-0.1563113;0.1685663;0.02566862,-0.1777976;-0.0789426;-0.00221858,0.0652387;0.004387569;-0.04609405,0.1005488;-0.2909383;-0.006904174,0.09006326;-0.5823647;0.06352849,0.1040143;-0.6110191;0.003371697,-0.07582375;0.003993213;-0.02519546,-0.09145509;-0.2949812;-0.005961103,-0.0852547;-0.5881995;0.05716272,-0.08675198;-0.6187702;-0.0020498,0.01011798;0.3992136;0.02219487,0;0;0,0.000219157;0.1991503;0.01841483,0.0004933553;0.4987455;0.03300686,0.1039999;0.3760624;-0.02535344,0.19162;0.2909434;-0.1837121,0.2366034;0.3393356;-0.4248235,-0.1125131;0.3607869;0.01598454,-0.1569921;0.1658294;0.01961498,-0.1845043;-0.08216552;0.004071455,0.06542956;0.006875765;-0.04551588,0.0925448;-0.2886825;-0.001811262,0.08219282;-0.5811512;0.06418042,0.1003219;-0.6079742;0.002783649,-0.0748686;0.001118678;-0.02816809,-0.09584242;-0.2974002;-0.007035526,-0.09313109;-0.5905604;0.0566024,-0.09145361;-0.6196882;-0.004520141,0.0003598688;0.398772;0.0307092,59.32152
-0;0;0,0.005159569;0.1994452;0.01396363,0.0124993;0.4991875;0.02243675,0.113245;0.3754257;-0.03427297,0.2055465;0.2938217;-0.1918205,0.2507726;0.3774956;-0.4230201,-0.1023937;0.3600849;0.00708552,-0.1565141;0.1683869;0.02505387,-0.1851285;-0.07771122;-0.008366663,0.06543335;0.004343584;-0.0458215,0.1003415;-0.2910131;-0.006503489,0.09019195;-0.5825211;0.06363957,0.1034809;-0.6108701;0.002936646,-0.07575605;0.003987755;-0.02539917,-0.09135132;-0.2949833;-0.00608246,-0.08529732;-0.5881953;0.05708467,-0.08653941;-0.6185233;-0.00246251,0.01004197;0.3992181;0.02214567,0;0;0,0.000219157;0.1991503;0.01841483,0.0004933553;0.4987455;0.03300686,0.1039999;0.3760624;-0.02535344,0.19162;0.2909434;-0.1837121,0.2366034;0.3393356;-0.4248235,-0.1125131;0.3607869;0.01598454,-0.1569921;0.1658294;0.01961498,-0.1845043;-0.08216552;0.004071455,0.06542956;0.006875765;-0.04551588,0.0925448;-0.2886825;-0.001811262,0.08219282;-0.5811512;0.06418042,0.1003219;-0.6079742;0.002783649,-0.0748686;0.001118678;-0.02816809,-0.09584242;-0.2974002;-0.007035526,-0.09313109;-0.5905604;0.0566024,-0.09145361;-0.6196882;-0.004520141,0.0003598688;0.398772;0.0307092,59.34359
-0;0;0,0.005016441;0.1994423;0.01405681,0.01216968;0.4991844;0.02269573,0.113047;0.3755051;-0.03396681,0.2056499;0.2938647;-0.1913185,0.2511942;0.3779088;-0.4223213,-0.1024134;0.3601204;0.005410116,-0.1563572;0.1685093;0.02478139,-0.1849518;-0.07761164;-0.008488016,0.06545274;0.004343282;-0.04579384,0.1003815;-0.2910134;-0.006494775,0.0902553;-0.5825293;0.06361901,0.1035036;-0.610869;0.002895251,-0.07573329;0.003981249;-0.02546799,-0.09122879;-0.294996;-0.00616812,-0.08523509;-0.5882727;0.05670395,-0.08664077;-0.6178905;-0.003785901,0.009768483;0.3992139;0.02234874,0;0;0,0.0002013474;0.1991482;0.01843777,0.0004710671;0.4987417;0.03306569,0.1039239;0.3760562;-0.02540546,0.1920798;0.289966;-0.1829396,0.2362992;0.3415153;-0.4235374,-0.1124355;0.3604732;0.01607597,-0.1567604;0.1654732;0.01928744,-0.1838476;-0.08252423;0.003052954,0.0653427;0.006905428;-0.04563602,0.09248192;-0.2886229;-0.001744784,0.08136205;-0.5810495;0.06430872,0.1006475;-0.6073439;0.002605885,-0.0749051;0.001094005;-0.02807183,-0.09596375;-0.2974205;-0.00696159,-0.09319681;-0.5905915;0.05662344,-0.09143966;-0.6202938;-0.003745917,0.0003383663;0.3987684;0.03075671,59.36615
-0;0;0,0.005016441;0.1994423;0.01405681,0.01216968;0.4991844;0.02269573,0.113047;0.3755051;-0.03396681,0.2056499;0.2938647;-0.1913185,0.2511942;0.3779088;-0.4223213,-0.1024134;0.3601204;0.005410116,-0.1563572;0.1685093;0.02478139,-0.1849518;-0.07761164;-0.008488016,0.06545274;0.004343282;-0.04579384,0.1003815;-0.2910134;-0.006494775,0.0902553;-0.5825293;0.06361901,0.1035036;-0.610869;0.002895251,-0.07573329;0.003981249;-0.02546799,-0.09122879;-0.294996;-0.00616812,-0.08523509;-0.5882727;0.05670395,-0.08664077;-0.6178905;-0.003785901,0.009768483;0.3992139;0.02234874,0;0;0,0.0002013474;0.1991482;0.01843777,0.0004710671;0.4987417;0.03306569,0.1039239;0.3760562;-0.02540546,0.1920798;0.289966;-0.1829396,0.2362992;0.3415153;-0.4235374,-0.1124355;0.3604732;0.01607597,-0.1567604;0.1654732;0.01928744,-0.1838476;-0.08252423;0.003052954,0.0653427;0.006905428;-0.04563602,0.09248192;-0.2886229;-0.001744784,0.08136205;-0.5810495;0.06430872,0.1006475;-0.6073439;0.002605885,-0.0749051;0.001094005;-0.02807183,-0.09596375;-0.2974205;-0.00696159,-0.09319681;-0.5905915;0.05662344,-0.09143966;-0.6202938;-0.003745917,0.0003383663;0.3987684;0.03075671,59.37733
-0;0;0,0.004868051;0.1994448;0.01407335,0.01167964;0.4991926;0.02279243,0.1127183;0.3754269;-0.03381015,0.2056563;0.2938862;-0.1910159,0.2513673;0.3781471;-0.4219068,-0.1027323;0.3597266;0.006168956,-0.1568995;0.1680752;0.02449014,-0.1849411;-0.07809405;-0.008891566,0.06560089;0.00436592;-0.04557918,0.1002058;-0.2910292;-0.006282363,0.09026799;-0.5826409;0.06345911,0.1015798;-0.6111804;0.002602067,-0.07565519;0.003903534;-0.02571095,-0.09128521;-0.2950597;-0.006302832,-0.08522964;-0.588308;0.05669587,-0.09907147;-0.5555273;-0.0408331,0.009411769;0.399219;0.0224188,0;0;0,0.0002013474;0.1991482;0.01843777,0.0004710671;0.4987417;0.03306569,0.1039239;0.3760562;-0.02540546,0.1920798;0.289966;-0.1829396,0.2362992;0.3415153;-0.4235374,-0.1124355;0.3604732;0.01607597,-0.1567604;0.1654732;0.01928744,-0.1838476;-0.08252423;0.003052954,0.0653427;0.006905428;-0.04563602,0.09248192;-0.2886229;-0.001744784,0.08136205;-0.5810495;0.06430872,0.1006475;-0.6073439;0.002605885,-0.0749051;0.001094005;-0.02807183,-0.09596375;-0.2974205;-0.00696159,-0.09319681;-0.5905915;0.05662344,-0.09143966;-0.6202938;-0.003745917,0.0003383663;0.3987684;0.03075671,59.39941
-0;0;0,0.004868051;0.1994448;0.01407335,0.01167964;0.4991926;0.02279243,0.1127183;0.3754269;-0.03381015,0.2056563;0.2938862;-0.1910159,0.2513673;0.3781471;-0.4219068,-0.1027323;0.3597266;0.006168956,-0.1568995;0.1680752;0.02449014,-0.1849411;-0.07809405;-0.008891566,0.06560089;0.00436592;-0.04557918,0.1002058;-0.2910292;-0.006282363,0.09026799;-0.5826409;0.06345911,0.1015798;-0.6111804;0.002602067,-0.07565519;0.003903534;-0.02571095,-0.09128521;-0.2950597;-0.006302832,-0.08522964;-0.588308;0.05669587,-0.09907147;-0.5555273;-0.0408331,0.009411769;0.399219;0.0224188,0;0;0,0.0001790848;0.1991464;0.01845704,0.0003788405;0.4987371;0.03314808,0.1037146;0.3762719;-0.0257049,0.1925521;0.2914011;-0.1835176,0.2377521;0.3433384;-0.4238496,-0.1125142;0.3605259;0.01609075,-0.1566709;0.1654867;0.01923796,-0.1831605;-0.0825296;0.002320476,0.06532759;0.006912743;-0.04565654,0.09251963;-0.288613;-0.001780175,0.08177812;-0.5810806;0.06415416,0.1004872;-0.6083885;0.00354521,-0.07491258;0.001075653;-0.02805261,-0.09572273;-0.297487;-0.007381396,-0.09324447;-0.5905986;0.056489,-0.09146197;-0.61953;-0.004883993,0.0002737351;0.3987645;0.0308113,59.41082
-0;0;0,0.004841905;0.1994471;0.01404985,0.01167992;0.4991962;0.02270674,0.1127441;0.3754039;-0.03379504,0.205984;0.2938482;-0.1908141,0.251937;0.3784652;-0.4215267,-0.1026441;0.3598974;0.005037254,-0.1567473;0.1682911;0.0240078,-0.1848217;-0.07790706;-0.009132581,0.06565094;0.004367789;-0.04550689,0.1003345;-0.2910404;-0.006378174,0.0906036;-0.5826914;0.06322771,0.1017494;-0.6115797;0.00279256,-0.07561312;0.003905782;-0.0258341,-0.09126194;-0.2950594;-0.006469993,-0.08515538;-0.5883021;0.05654892,-0.09860989;-0.555527;-0.04103326,0.009399289;0.3992228;0.02235215,0;0;0,0.0001790848;0.1991464;0.01845704,0.0003788405;0.4987371;0.03314808,0.1037146;0.3762719;-0.0257049,0.1925521;0.2914011;-0.1835176,0.2377521;0.3433384;-0.4238496,-0.1125142;0.3605259;0.01609075,-0.1566709;0.1654867;0.01923796,-0.1831605;-0.0825296;0.002320476,0.06532759;0.006912743;-0.04565654,0.09251963;-0.288613;-0.001780175,0.08177812;-0.5810806;0.06415416,0.1004872;-0.6083885;0.00354521,-0.07491258;0.001075653;-0.02805261,-0.09572273;-0.297487;-0.007381396,-0.09324447;-0.5905986;0.056489,-0.09146197;-0.61953;-0.004883993,0.0002737351;0.3987645;0.0308113,59.43296
-0;0;0,0.004841905;0.1994471;0.01404985,0.01167992;0.4991962;0.02270674,0.1127441;0.3754039;-0.03379504,0.205984;0.2938482;-0.1908141,0.251937;0.3784652;-0.4215267,-0.1026441;0.3598974;0.005037254,-0.1567473;0.1682911;0.0240078,-0.1848217;-0.07790706;-0.009132581,0.06565094;0.004367789;-0.04550689,0.1003345;-0.2910404;-0.006378174,0.0906036;-0.5826914;0.06322771,0.1017494;-0.6115797;0.00279256,-0.07561312;0.003905782;-0.0258341,-0.09126194;-0.2950594;-0.006469993,-0.08515538;-0.5883021;0.05654892,-0.09860989;-0.555527;-0.04103326,0.009399289;0.3992228;0.02235215,0;0;0,0.0001790848;0.1991464;0.01845704,0.0003788405;0.4987371;0.03314808,0.1037146;0.3762719;-0.0257049,0.1925521;0.2914011;-0.1835176,0.2377521;0.3433384;-0.4238496,-0.1125142;0.3605259;0.01609075,-0.1566709;0.1654867;0.01923796,-0.1831605;-0.0825296;0.002320476,0.06532759;0.006912743;-0.04565654,0.09251963;-0.288613;-0.001780175,0.08177812;-0.5810806;0.06415416,0.1004872;-0.6083885;0.00354521,-0.07491258;0.001075653;-0.02805261,-0.09572273;-0.297487;-0.007381396,-0.09324447;-0.5905986;0.056489,-0.09146197;-0.61953;-0.004883993,0.0002737351;0.3987645;0.0308113,59.44437
-0;0;0,0.004787616;0.1994477;0.01406095,0.01161364;0.4991984;0.02266369,0.11273;0.3752721;-0.03365681,0.2061181;0.2938975;-0.1906818,0.2523608;0.3784858;-0.421347,-0.1026632;0.3597111;0.005120572,-0.1570627;0.1681641;0.02384067,-0.1858438;-0.07799198;-0.009004591,0.06570384;0.004395065;-0.04542783,0.1003167;-0.291044;-0.006470252,0.09060171;-0.5827096;0.06307729,0.1037645;-0.6118134;0.003333561,-0.07555465;0.003907425;-0.02600438,-0.09119824;-0.2950575;-0.006633179,-0.08508239;-0.5883121;0.05632994,-0.09851262;-0.5555377;-0.04125545,0.009329833;0.399225;0.02233123,0;0;0,0.0001455822;0.1991466;0.0184553,0.0002941323;0.4987373;0.03314635,0.1036674;0.376363;-0.02570253,0.1929616;0.2933868;-0.1842632,0.2391314;0.3447689;-0.4245302,-0.1126754;0.3607263;0.01628158,-0.156665;0.1656465;0.0192462,-0.1827116;-0.08239993;0.002083488,0.06530412;0.00689549;-0.0456927,0.09268419;-0.2886097;-0.001794811,0.08196658;-0.5810677;0.06418572,0.1012699;-0.6077099;0.00292103,-0.07491861;0.001071188;-0.02803665,-0.09561279;-0.2975021;-0.007402552,-0.0929603;-0.5906428;0.05632741,-0.09111121;-0.6196794;-0.004908144,0.0002050303;0.3987647;0.03081035,59.46641
-0;0;0,0.004787616;0.1994477;0.01406095,0.01161364;0.4991984;0.02266369,0.11273;0.3752721;-0.03365681,0.2061181;0.2938975;-0.1906818,0.2523608;0.3784858;-0.421347,-0.1026632;0.3597111;0.005120572,-0.1570627;0.1681641;0.02384067,-0.1858438;-0.07799198;-0.009004591,0.06570384;0.004395065;-0.04542783,0.1003167;-0.291044;-0.006470252,0.09060171;-0.5827096;0.06307729,0.1037645;-0.6118134;0.003333561,-0.07555465;0.003907425;-0.02600438,-0.09119824;-0.2950575;-0.006633179,-0.08508239;-0.5883121;0.05632994,-0.09851262;-0.5555377;-0.04125545,0.009329833;0.399225;0.02233123,0;0;0,0.0001455822;0.1991466;0.0184553,0.0002941323;0.4987373;0.03314635,0.1036674;0.376363;-0.02570253,0.1929616;0.2933868;-0.1842632,0.2391314;0.3447689;-0.4245302,-0.1126754;0.3607263;0.01628158,-0.156665;0.1656465;0.0192462,-0.1827116;-0.08239993;0.002083488,0.06530412;0.00689549;-0.0456927,0.09268419;-0.2886097;-0.001794811,0.08196658;-0.5810677;0.06418572,0.1012699;-0.6077099;0.00292103,-0.07491861;0.001071188;-0.02803665,-0.09561279;-0.2975021;-0.007402552,-0.0929603;-0.5906428;0.05632741,-0.09111121;-0.6196794;-0.004908144,0.0002050303;0.3987647;0.03081035,59.47756
-0;0;0,0.004787616;0.1994477;0.01406095,0.01161364;0.4991984;0.02266369,0.11273;0.3752721;-0.03365681,0.2061181;0.2938975;-0.1906818,0.2523608;0.3784858;-0.421347,-0.1026632;0.3597111;0.005120572,-0.1570627;0.1681641;0.02384067,-0.1858438;-0.07799198;-0.009004591,0.06570384;0.004395065;-0.04542783,0.1003167;-0.291044;-0.006470252,0.09060171;-0.5827096;0.06307729,0.1037645;-0.6118134;0.003333561,-0.07555465;0.003907425;-0.02600438,-0.09119824;-0.2950575;-0.006633179,-0.08508239;-0.5883121;0.05632994,-0.09851262;-0.5555377;-0.04125545,0.009329833;0.399225;0.02233123,0;0;0,-1.043761E-06;0.199141;0.01851619,-0.0001497026;0.4987246;0.03335613,0.1033148;0.3763581;-0.02557914,0.1961839;0.2896492;-0.1800359,0.2383221;0.3476121;-0.4195452,-0.1130025;0.3606653;0.01648313,-0.1566882;0.1655157;0.0193485,-0.1825418;-0.0825551;0.002247022,0.06531925;0.006907063;-0.04566934,0.09287873;-0.2886042;-0.001925007,0.08221444;-0.5809653;0.06449251,0.1009902;-0.6079892;0.003543455,-0.07490093;0.001057005;-0.02808438,-0.09541613;-0.2975273;-0.007431537,-0.09312443;-0.5906934;0.05619554,-0.0913782;-0.6195167;-0.005317394,-0.0001325643;0.3987533;0.03096369,59.48917
-0;0;0,0.004613395;0.1994414;0.01420792,0.01099718;0.4991936;0.02309401,0.1123285;0.3753937;-0.033274,0.2058268;0.2942293;-0.1903421,0.2524502;0.3786871;-0.4209785,-0.1031202;0.3596936;0.005468687,-0.1574894;0.1680975;0.02377018,-0.1870972;-0.0779199;-0.009378422,0.06578499;0.004440178;-0.04530584,0.1003348;-0.2910047;-0.006335635,0.09050276;-0.5827262;0.06295982,0.1039687;-0.6117801;0.003217429,-0.07551681;0.003889029;-0.02611681,-0.0911933;-0.2950715;-0.006703962,-0.08505344;-0.5883366;0.05620762,-0.08529385;-0.6187876;-0.003185861,0.008871686;0.3992171;0.02266458,0;0;0,-1.043761E-06;0.199141;0.01851619,-0.0001497026;0.4987246;0.03335613,0.1033148;0.3763581;-0.02557914,0.1961839;0.2896492;-0.1800359,0.2383221;0.3476121;-0.4195452,-0.1130025;0.3606653;0.01648313,-0.1566882;0.1655157;0.0193485,-0.1825418;-0.0825551;0.002247022,0.06531925;0.006907063;-0.04566934,0.09287873;-0.2886042;-0.001925007,0.08221444;-0.5809653;0.06449251,0.1009902;-0.6079892;0.003543455,-0.07490093;0.001057005;-0.02808438,-0.09541613;-0.2975273;-0.007431537,-0.09312443;-0.5906934;0.05619554,-0.0913782;-0.6195167;-0.005317394,-0.0001325643;0.3987533;0.03096369,59.51115
-0;0;0,0.004613395;0.1994414;0.01420792,0.01099718;0.4991936;0.02309401,0.1123285;0.3753937;-0.033274,0.2058268;0.2942293;-0.1903421,0.2524502;0.3786871;-0.4209785,-0.1031202;0.3596936;0.005468687,-0.1574894;0.1680975;0.02377018,-0.1870972;-0.0779199;-0.009378422,0.06578499;0.004440178;-0.04530584,0.1003348;-0.2910047;-0.006335635,0.09050276;-0.5827262;0.06295982,0.1039687;-0.6117801;0.003217429,-0.07551681;0.003889029;-0.02611681,-0.0911933;-0.2950715;-0.006703962,-0.08505344;-0.5883366;0.05620762,-0.08529385;-0.6187876;-0.003185861,0.008871686;0.3992171;0.02266458,0;0;0,-1.043761E-06;0.199141;0.01851619,-0.0001497026;0.4987246;0.03335613,0.1033148;0.3763581;-0.02557914,0.1961839;0.2896492;-0.1800359,0.2383221;0.3476121;-0.4195452,-0.1130025;0.3606653;0.01648313,-0.1566882;0.1655157;0.0193485,-0.1825418;-0.0825551;0.002247022,0.06531925;0.006907063;-0.04566934,0.09287873;-0.2886042;-0.001925007,0.08221444;-0.5809653;0.06449251,0.1009902;-0.6079892;0.003543455,-0.07490093;0.001057005;-0.02808438,-0.09541613;-0.2975273;-0.007431537,-0.09312443;-0.5906934;0.05619554,-0.0913782;-0.6195167;-0.005317394,-0.0001325643;0.3987533;0.03096369,59.5227
-0;0;0,0.004550901;0.1994425;0.01421204,0.01076906;0.4991993;0.02305231,0.1122249;0.3754828;-0.03320491,0.2057048;0.2943229;-0.1902864,0.2527952;0.3788565;-0.4208,-0.1032579;0.3594333;0.005849769,-0.1576321;0.1677782;0.02350678,-0.1766059;-0.0803047;-0.0008832645,0.06579389;0.004445834;-0.04529236,0.1000767;-0.2909947;-0.006054725,0.09016449;-0.5827117;0.06324854,0.1043272;-0.6111401;0.002846509,-0.07549906;0.00386677;-0.02617135,-0.09124576;-0.295092;-0.006787786,-0.08494719;-0.5882956;0.05639397,-0.0853751;-0.6186818;-0.003086068,0.008701026;0.3992215;0.02264561,0;0;0,-1.043761E-06;0.199141;0.01851619,-0.0001497026;0.4987246;0.03335613,0.1033148;0.3763581;-0.02557914,0.1961839;0.2896492;-0.1800359,0.2383221;0.3476121;-0.4195452,-0.1130025;0.3606653;0.01648313,-0.1566882;0.1655157;0.0193485,-0.1825418;-0.0825551;0.002247022,0.06531925;0.006907063;-0.04566934,0.09287873;-0.2886042;-0.001925007,0.08221444;-0.5809653;0.06449251,0.1009902;-0.6079892;0.003543455,-0.07490093;0.001057005;-0.02808438,-0.09541613;-0.2975273;-0.007431537,-0.09312443;-0.5906934;0.05619554,-0.0913782;-0.6195167;-0.005317394,-0.0001325643;0.3987533;0.03096369,59.53416
-0;0;0,0.004550901;0.1994425;0.01421204,0.01076906;0.4991993;0.02305231,0.1122249;0.3754828;-0.03320491,0.2057048;0.2943229;-0.1902864,0.2527952;0.3788565;-0.4208,-0.1032579;0.3594333;0.005849769,-0.1576321;0.1677782;0.02350678,-0.1766059;-0.0803047;-0.0008832645,0.06579389;0.004445834;-0.04529236,0.1000767;-0.2909947;-0.006054725,0.09016449;-0.5827117;0.06324854,0.1043272;-0.6111401;0.002846509,-0.07549906;0.00386677;-0.02617135,-0.09124576;-0.295092;-0.006787786,-0.08494719;-0.5882956;0.05639397,-0.0853751;-0.6186818;-0.003086068,0.008701026;0.3992215;0.02264561,0;0;0,-7.51335E-05;0.1991397;0.01853055,-0.0005123026;0.4987195;0.03344951,0.1030202;0.3762392;-0.02556764,0.1962249;0.2915182;-0.1809229,0.2408636;0.3492855;-0.4200261,-0.1131279;0.3603311;0.01647254,-0.1566692;0.1651507;0.01943231,-0.182224;-0.08295003;0.002315983,0.06532663;0.006905835;-0.04565896,0.09287136;-0.2886035;-0.00189241,0.08239417;-0.5810113;0.06434896,0.1009345;-0.6083496;0.003726821,-0.07489122;0.001049471;-0.02811055,-0.09544072;-0.2975492;-0.007700698,-0.09323716;-0.5906626;0.05617157,-0.09216718;-0.6188661;-0.006142639,-0.0003783545;0.3987492;0.03101886,59.55585
-0;0;0,0.004476992;0.1994447;0.01420419,0.01065709;0.4992041;0.02298013,0.1121268;0.3755079;-0.03324718,0.205741;0.2942338;-0.1901895,0.2528515;0.378848;-0.4206696,-0.1033325;0.3592536;0.006030129,-0.1577742;0.1675905;0.02338985,-0.1763967;-0.08050647;-0.001127638,0.06580821;0.004523404;-0.04526387,0.1001685;-0.2909376;-0.006248638,0.09019597;-0.582651;0.06306136,0.1046663;-0.6113575;0.003095604,-0.0754469;0.003827542;-0.0263271,-0.09196729;-0.295066;-0.006585173,-0.08452554;-0.5881282;0.05712625,-0.08534362;-0.6167551;-0.004656702,0.008594854;0.3992261;0.02259714,0;0;0,-7.51335E-05;0.1991397;0.01853055,-0.0005123026;0.4987195;0.03344951,0.1030202;0.3762392;-0.02556764,0.1962249;0.2915182;-0.1809229,0.2408636;0.3492855;-0.4200261,-0.1131279;0.3603311;0.01647254,-0.1566692;0.1651507;0.01943231,-0.182224;-0.08295003;0.002315983,0.06532663;0.006905835;-0.04565896,0.09287136;-0.2886035;-0.00189241,0.08239417;-0.5810113;0.06434896,0.1009345;-0.6083496;0.003726821,-0.07489122;0.001049471;-0.02811055,-0.09544072;-0.2975492;-0.007700698,-0.09323716;-0.5906626;0.05617157,-0.09216718;-0.6188661;-0.006142639,-0.0003783545;0.3987492;0.03101886,59.56743
-0;0;0,0.004476992;0.1994447;0.01420419,0.01065709;0.4992041;0.02298013,0.1121268;0.3755079;-0.03324718,0.205741;0.2942338;-0.1901895,0.2528515;0.378848;-0.4206696,-0.1033325;0.3592536;0.006030129,-0.1577742;0.1675905;0.02338985,-0.1763967;-0.08050647;-0.001127638,0.06580821;0.004523404;-0.04526387,0.1001685;-0.2909376;-0.006248638,0.09019597;-0.582651;0.06306136,0.1046663;-0.6113575;0.003095604,-0.0754469;0.003827542;-0.0263271,-0.09196729;-0.295066;-0.006585173,-0.08452554;-0.5881282;0.05712625,-0.08534362;-0.6167551;-0.004656702,0.008594854;0.3992261;0.02259714,0;0;0,-7.51335E-05;0.1991397;0.01853055,-0.0005123026;0.4987195;0.03344951,0.1030202;0.3762392;-0.02556764,0.1962249;0.2915182;-0.1809229,0.2408636;0.3492855;-0.4200261,-0.1131279;0.3603311;0.01647254,-0.1566692;0.1651507;0.01943231,-0.182224;-0.08295003;0.002315983,0.06532663;0.006905835;-0.04565896,0.09287136;-0.2886035;-0.00189241,0.08239417;-0.5810113;0.06434896,0.1009345;-0.6083496;0.003726821,-0.07489122;0.001049471;-0.02811055,-0.09544072;-0.2975492;-0.007700698,-0.09323716;-0.5906626;0.05617157,-0.09216718;-0.6188661;-0.006142639,-0.0003783545;0.3987492;0.03101886,59.57838
-0;0;0,0.004368289;0.1994496;0.01417004,0.01044017;0.4992136;0.02285763,0.1120207;0.3754933;-0.0331813,0.205909;0.2942566;-0.1899792,0.2528623;0.378837;-0.4205037,-0.1035857;0.3593207;0.006267959,-0.1581776;0.1676674;0.02326026,-0.1770732;-0.08034071;-0.00193732,0.06590292;0.004600352;-0.04511808,0.1003622;-0.2908928;-0.006435163,0.09017216;-0.582612;0.06281833,0.1053507;-0.6119706;0.003896128,-0.07537115;0.003783332;-0.02654951,-0.0919977;-0.2950975;-0.006704142,-0.08456875;-0.5882325;0.05667297,-0.08589096;-0.6169923;-0.004931804,0.008410425;0.3992348;0.02250765,0;0;0,-0.0001083131;0.1991446;0.01847776,-0.0005412659;0.4987293;0.03329702,0.1030312;0.3762564;-0.02560063,0.1967904;0.2926141;-0.1812064,0.244924;0.3514422;-0.419371,-0.1131996;0.3603964;0.0164855,-0.1566913;0.1652035;0.01935128,-0.182179;-0.08291148;0.002341716,0.06531731;0.006898125;-0.04567345,0.09282266;-0.2886044;-0.001836386,0.08267985;-0.5810488;0.06429525,0.1007216;-0.6086197;0.003820099,-0.07490426;0.001057721;-0.02807548,-0.09570707;-0.2975178;-0.007583426,-0.0930552;-0.5906428;0.05621861,-0.0921893;-0.6200701;-0.004531305,-0.0004143482;0.398758;0.0309034,59.60065
-0;0;0,0.004368289;0.1994496;0.01417004,0.01044017;0.4992136;0.02285763,0.1120207;0.3754933;-0.0331813,0.205909;0.2942566;-0.1899792,0.2528623;0.378837;-0.4205037,-0.1035857;0.3593207;0.006267959,-0.1581776;0.1676674;0.02326026,-0.1770732;-0.08034071;-0.00193732,0.06590292;0.004600352;-0.04511808,0.1003622;-0.2908928;-0.006435163,0.09017216;-0.582612;0.06281833,0.1053507;-0.6119706;0.003896128,-0.07537115;0.003783332;-0.02654951,-0.0919977;-0.2950975;-0.006704142,-0.08456875;-0.5882325;0.05667297,-0.08589096;-0.6169923;-0.004931804,0.008410425;0.3992348;0.02250765,0;0;0,-0.0001083131;0.1991446;0.01847776,-0.0005412659;0.4987293;0.03329702,0.1030312;0.3762564;-0.02560063,0.1967904;0.2926141;-0.1812064,0.244924;0.3514422;-0.419371,-0.1131996;0.3603964;0.0164855,-0.1566913;0.1652035;0.01935128,-0.182179;-0.08291148;0.002341716,0.06531731;0.006898125;-0.04567345,0.09282266;-0.2886044;-0.001836386,0.08267985;-0.5810488;0.06429525,0.1007216;-0.6086197;0.003820099,-0.07490426;0.001057721;-0.02807548,-0.09570707;-0.2975178;-0.007583426,-0.0930552;-0.5906428;0.05621861,-0.0921893;-0.6200701;-0.004531305,-0.0004143482;0.398758;0.0309034,59.62275
-0;0;0,0.004299547;0.1994514;0.0141657,0.01026127;0.4992193;0.02278565,0.1119032;0.3754395;-0.03315043,0.2059532;0.2941797;-0.1898394,0.2528967;0.3787739;-0.4203608,-0.1035385;0.3594698;0.00463241,-0.1578887;0.1678861;0.02311843,-0.1882547;-0.07855643;-0.005933043,0.0659542;0.004599308;-0.04504319,0.1003584;-0.29091;-0.006434973,0.09019755;-0.5826349;0.06279919,0.1054288;-0.6123595;0.004386954,-0.07534828;0.00378345;-0.02661432,-0.09192762;-0.2950977;-0.006734833,-0.08459374;-0.5882465;0.05658989,-0.08569256;-0.6169836;-0.005048215,0.008266581;0.3992397;0.02246439,0;0;0,-0.0001083131;0.1991446;0.01847776,-0.0005412659;0.4987293;0.03329702,0.1030312;0.3762564;-0.02560063,0.1967904;0.2926141;-0.1812064,0.244924;0.3514422;-0.419371,-0.1131996;0.3603964;0.0164855,-0.1566913;0.1652035;0.01935128,-0.182179;-0.08291148;0.002341716,0.06531731;0.006898125;-0.04567345,0.09282266;-0.2886044;-0.001836386,0.08267985;-0.5810488;0.06429525,0.1007216;-0.6086197;0.003820099,-0.07490426;0.001057721;-0.02807548,-0.09570707;-0.2975178;-0.007583426,-0.0930552;-0.5906428;0.05621861,-0.0921893;-0.6200701;-0.004531305,-0.0004143482;0.398758;0.0309034,59.63431
-0;0;0,0.004299547;0.1994514;0.0141657,0.01026127;0.4992193;0.02278565,0.1119032;0.3754395;-0.03315043,0.2059532;0.2941797;-0.1898394,0.2528967;0.3787739;-0.4203608,-0.1035385;0.3594698;0.00463241,-0.1578887;0.1678861;0.02311843,-0.1882547;-0.07855643;-0.005933043,0.0659542;0.004599308;-0.04504319,0.1003584;-0.29091;-0.006434973,0.09019755;-0.5826349;0.06279919,0.1054288;-0.6123595;0.004386954,-0.07534828;0.00378345;-0.02661432,-0.09192762;-0.2950977;-0.006734833,-0.08459374;-0.5882465;0.05658989,-0.08569256;-0.6169836;-0.005048215,0.008266581;0.3992397;0.02246439,0;0;0,-0.0001710144;0.1991482;0.01843767,-0.0006635149;0.4987352;0.03320659,0.1029559;0.3762058;-0.02559337,0.1975059;0.2933261;-0.1811288,0.2485413;0.3544019;-0.4181207,-0.1132865;0.3604225;0.0162031,-0.1658718;0.1679484;0.02993176,-0.1868423;-0.08057664;0.01273955,0.06534328;0.006896266;-0.04563656,0.09292237;-0.2885973;-0.001784679,0.08277038;-0.581032;0.06438835,0.1007333;-0.6086864;0.003996905,-0.07490067;0.001049723;-0.02808536,-0.09551932;-0.2975354;-0.007548224,-0.09304534;-0.5906628;0.05624982,-0.09246032;-0.6190947;-0.00578326,-0.0005212033;0.3987636;0.03083026,59.64546
-0;0;0,0.004299547;0.1994514;0.0141657,0.01026127;0.4992193;0.02278565,0.1119032;0.3754395;-0.03315043,0.2059532;0.2941797;-0.1898394,0.2528967;0.3787739;-0.4203608,-0.1035385;0.3594698;0.00463241,-0.1578887;0.1678861;0.02311843,-0.1882547;-0.07855643;-0.005933043,0.0659542;0.004599308;-0.04504319,0.1003584;-0.29091;-0.006434973,0.09019755;-0.5826349;0.06279919,0.1054288;-0.6123595;0.004386954,-0.07534828;0.00378345;-0.02661432,-0.09192762;-0.2950977;-0.006734833,-0.08459374;-0.5882465;0.05658989,-0.08569256;-0.6169836;-0.005048215,0.008266581;0.3992397;0.02246439,0;0;0,-0.0001710144;0.1991482;0.01843767,-0.0006635149;0.4987352;0.03320659,0.1029559;0.3762058;-0.02559337,0.1975059;0.2933261;-0.1811288,0.2485413;0.3544019;-0.4181207,-0.1132865;0.3604225;0.0162031,-0.1658718;0.1679484;0.02993176,-0.1868423;-0.08057664;0.01273955,0.06534328;0.006896266;-0.04563656,0.09292237;-0.2885973;-0.001784679,0.08277038;-0.581032;0.06438835,0.1007333;-0.6086864;0.003996905,-0.07490067;0.001049723;-0.02808536,-0.09551932;-0.2975354;-0.007548224,-0.09304534;-0.5906628;0.05624982,-0.09246032;-0.6190947;-0.00578326,-0.0005212033;0.3987636;0.03083026,59.65686
-0;0;0,0.004164068;0.1994543;0.01416496,0.009711535;0.4992324;0.02269134,0.1116192;0.3755634;-0.03304052,0.2056653;0.2942825;-0.1897209,0.2526844;0.3788646;-0.4202313,-0.1039346;0.3594064;0.004746992,-0.1582369;0.1677919;0.02305435,-0.1769286;-0.08043475;-5.690381E-05,0.06597713;0.004664783;-0.04500287,0.1003379;-0.2908656;-0.006517742,0.09024186;-0.5825849;0.06274946,0.1054649;-0.6119274;0.003817219,-0.07532065;0.003635207;-0.02671302,-0.09177534;-0.2952624;-0.006978044,-0.08453641;-0.5883995;0.05641182,-0.08571278;-0.617847;-0.004306421,0.007870542;0.3992497;0.02241372,0;0;0,-0.0001710144;0.1991482;0.01843767,-0.0006635149;0.4987352;0.03320659,0.1029559;0.3762058;-0.02559337,0.1975059;0.2933261;-0.1811288,0.2485413;0.3544019;-0.4181207,-0.1132865;0.3604225;0.0162031,-0.1658718;0.1679484;0.02993176,-0.1868423;-0.08057664;0.01273955,0.06534328;0.006896266;-0.04563656,0.09292237;-0.2885973;-0.001784679,0.08277038;-0.581032;0.06438835,0.1007333;-0.6086864;0.003996905,-0.07490067;0.001049723;-0.02808536,-0.09551932;-0.2975354;-0.007548224,-0.09304534;-0.5906628;0.05624982,-0.09246032;-0.6190947;-0.00578326,-0.0005212033;0.3987636;0.03083026,59.67894
-0;0;0,0.004063452;0.199452;0.01422569,0.009433486;0.4992298;0.02287761,0.1114084;0.3755537;-0.03288026,0.2054808;0.2944306;-0.1896266,0.252639;0.3789054;-0.420148,-0.1041514;0.359329;0.005046051,-0.1585554;0.1677159;0.02306349,-0.1905541;-0.07841678;-0.006849503,0.06603547;0.004796663;-0.04490333,0.1002983;-0.2907745;-0.006644234,0.09031094;-0.5824957;0.06263058,0.1052006;-0.6118284;0.003599975,-0.07529254;0.003503681;-0.02680964,-0.091805;-0.2954113;-0.007389275,-0.08461642;-0.5885016;0.05622233,-0.08562893;-0.6180132;-0.004414935,0.007651978;0.3992462;0.02255686,0;0;0,-0.0001849949;0.1991499;0.01841954,-0.0006540752;0.4987383;0.03316149,0.104646;0.3764982;-0.02253224,0.1969736;0.2946826;-0.1799546,0.2517008;0.3575831;-0.4156418,-0.1132877;0.3607021;0.01546227,-0.1569154;0.165549;0.0189126,-0.1824929;-0.08259769;0.002511229,0.06534053;0.006856882;-0.04564645,0.09295924;-0.2886352;-0.001810152,0.08282121;-0.5810602;0.06440841,0.100651;-0.6089816;0.004322279,-0.07495713;0.001120318;-0.02793157,-0.09587511;-0.2974246;-0.007114843,-0.09282768;-0.5905666;0.05659167,-0.09223099;-0.6184259;-0.006158367,-0.0005223338;0.3987664;0.03079467,59.7009
-0;0;0,0.004034916;0.1994535;0.01421325,0.00942111;0.4992327;0.02280101,0.1114627;0.3756694;-0.03283326,0.2056317;0.2945193;-0.1895076,0.2531224;0.3786136;-0.4200999,-0.1042341;0.359344;0.005348321,-0.1586956;0.1677132;0.02300041,-0.1898609;-0.0784976;-0.007148271,0.06606755;0.004762285;-0.04485979,0.1003012;-0.2908011;-0.006514385,0.09035429;-0.5825437;0.06267618,0.1051599;-0.6118944;0.003648579,-0.07526389;0.00351889;-0.026888,-0.09174965;-0.2953933;-0.007400857,-0.08466317;-0.5884894;0.05619542,-0.09803639;-0.5557116;-0.0413984,0.007628305;0.3992492;0.02250576,0;0;0,-0.0001849949;0.1991499;0.01841954,-0.0006540752;0.4987383;0.03316149,0.104646;0.3764982;-0.02253224,0.1969736;0.2946826;-0.1799546,0.2517008;0.3575831;-0.4156418,-0.1132877;0.3607021;0.01546227,-0.1569154;0.165549;0.0189126,-0.1824929;-0.08259769;0.002511229,0.06534053;0.006856882;-0.04564645,0.09295924;-0.2886352;-0.001810152,0.08282121;-0.5810602;0.06440841,0.100651;-0.6089816;0.004322279,-0.07495713;0.001120318;-0.02793157,-0.09587511;-0.2974246;-0.007114843,-0.09282768;-0.5905666;0.05659167,-0.09223099;-0.6184259;-0.006158367,-0.0005223338;0.3987664;0.03079467,59.7234
-0;0;0,0.004034916;0.1994535;0.01421325,0.00942111;0.4992327;0.02280101,0.1114627;0.3756694;-0.03283326,0.2056317;0.2945193;-0.1895076,0.2531224;0.3786136;-0.4200999,-0.1042341;0.359344;0.005348321,-0.1586956;0.1677132;0.02300041,-0.1898609;-0.0784976;-0.007148271,0.06606755;0.004762285;-0.04485979,0.1003012;-0.2908011;-0.006514385,0.09035429;-0.5825437;0.06267618,0.1051599;-0.6118944;0.003648579,-0.07526389;0.00351889;-0.026888,-0.09174965;-0.2953933;-0.007400857,-0.08466317;-0.5884894;0.05619542,-0.09803639;-0.5557116;-0.0413984,0.007628305;0.3992492;0.02250576,0;0;0,-0.0001849949;0.1991499;0.01841954,-0.0006540752;0.4987383;0.03316149,0.104646;0.3764982;-0.02253224,0.1969736;0.2946826;-0.1799546,0.2517008;0.3575831;-0.4156418,-0.1132877;0.3607021;0.01546227,-0.1569154;0.165549;0.0189126,-0.1824929;-0.08259769;0.002511229,0.06534053;0.006856882;-0.04564645,0.09295924;-0.2886352;-0.001810152,0.08282121;-0.5810602;0.06440841,0.100651;-0.6089816;0.004322279,-0.07495713;0.001120318;-0.02793157,-0.09587511;-0.2974246;-0.007114843,-0.09282768;-0.5905666;0.05659167,-0.09223099;-0.6184259;-0.006158367,-0.0005223338;0.3987664;0.03079467,59.73508
-0;0;0,0.004034916;0.1994535;0.01421325,0.00942111;0.4992327;0.02280101,0.1114627;0.3756694;-0.03283326,0.2056317;0.2945193;-0.1895076,0.2531224;0.3786136;-0.4200999,-0.1042341;0.359344;0.005348321,-0.1586956;0.1677132;0.02300041,-0.1898609;-0.0784976;-0.007148271,0.06606755;0.004762285;-0.04485979,0.1003012;-0.2908011;-0.006514385,0.09035429;-0.5825437;0.06267618,0.1051599;-0.6118944;0.003648579,-0.07526389;0.00351889;-0.026888,-0.09174965;-0.2953933;-0.007400857,-0.08466317;-0.5884894;0.05619542,-0.09803639;-0.5557116;-0.0413984,0.007628305;0.3992492;0.02250576,0;0;0,-0.0001879996;0.1991528;0.01838828,-0.0006256386;0.4987438;0.03307526,0.1044584;0.3762411;-0.02288547,0.1995291;0.2955706;-0.1792626,0.2570914;0.3598562;-0.4138984,-0.113204;0.360552;0.01527834,-0.156735;0.1653783;0.01878132,-0.1824329;-0.08274519;0.002217442,0.06533802;0.006834333;-0.04565343,0.09295455;-0.2886565;-0.001807194,0.08292915;-0.5811498;0.06412582,0.1007294;-0.6091737;0.00416394,-0.07496613;0.001136545;-0.02790676,-0.09585864;-0.2974361;-0.007463843,-0.09280232;-0.5905436;0.05640054,-0.09248645;-0.6174753;-0.007485367,-0.0005073434;0.3987714;0.03072967,59.75677
-0;0;0,0.003936413;0.1994538;0.01423643,0.009274496;0.4992343;0.02280392,0.1113998;0.3758518;-0.03275191,0.2056039;0.2947124;-0.1894107,0.2533692;0.3784904;-0.4200613,-0.1042689;0.3589181;0.005674316,-0.1590997;0.167352;0.02287936,-0.1773488;-0.08087121;-0.0006197542,0.06609115;0.004809207;-0.04481998,0.1004232;-0.290757;-0.006584477,0.09047219;-0.5825073;0.0625727,0.1051396;-0.6117814;0.003407806,-0.07522517;0.003453893;-0.0270045,-0.09152105;-0.295465;-0.007459907,-0.08475597;-0.58862;0.05589911,-0.09824027;-0.5558544;-0.04167727,0.007487797;0.3992507;0.02251828,0;0;0,-0.0001879996;0.1991528;0.01838828,-0.0006256386;0.4987438;0.03307526,0.1044584;0.3762411;-0.02288547,0.1995291;0.2955706;-0.1792626,0.2570914;0.3598562;-0.4138984,-0.113204;0.360552;0.01527834,-0.156735;0.1653783;0.01878132,-0.1824329;-0.08274519;0.002217442,0.06533802;0.006834333;-0.04565343,0.09295455;-0.2886565;-0.001807194,0.08292915;-0.5811498;0.06412582,0.1007294;-0.6091737;0.00416394,-0.07496613;0.001136545;-0.02790676,-0.09585864;-0.2974361;-0.007463843,-0.09280232;-0.5905436;0.05640054,-0.09248645;-0.6174753;-0.007485367,-0.0005073434;0.3987714;0.03072967,59.7687
-0;0;0,0.0009831995;0.1995771;0.01296159,0.002976808;0.4994446;0.01969637,0.1086573;0.3789512;-0.03148064,0.2037143;0.2790471;-0.1763369,0.2489487;0.3576854;-0.4092958,-0.11021;0.3602049;0.005335418,-0.161679;0.1674349;0.01914288,-0.1856484;-0.0793577;-0.01277723,0.06674726;0.005473348;-0.04375893,0.1019061;-0.2903967;-0.008761596,0.09135257;-0.5825802;0.05845006,0.1038368;-0.6125315;-0.0003030524,-0.07443915;0.002559039;-0.02919358,-0.09190907;-0.296253;-0.009040365,-0.0821095;-0.5895311;0.05334503,-0.09520418;-0.5569527;-0.04425116,0.00223478;0.399448;0.02003766,0;0;0,-0.0001879996;0.1991528;0.01838828,-0.0006256386;0.4987438;0.03307526,0.1044584;0.3762411;-0.02288547,0.1995291;0.2955706;-0.1792626,0.2570914;0.3598562;-0.4138984,-0.113204;0.360552;0.01527834,-0.156735;0.1653783;0.01878132,-0.1824329;-0.08274519;0.002217442,0.06533802;0.006834333;-0.04565343,0.09295455;-0.2886565;-0.001807194,0.08292915;-0.5811498;0.06412582,0.1007294;-0.6091737;0.00416394,-0.07496613;0.001136545;-0.02790676,-0.09585864;-0.2974361;-0.007463843,-0.09280232;-0.5905436;0.05640054,-0.09248645;-0.6174753;-0.007485367,-0.0005073434;0.3987714;0.03072967,66.4588
-0;0;0,0.0009831995;0.1995771;0.01296159,0.002976808;0.4994446;0.01969637,0.1086573;0.3789512;-0.03148064,0.2037143;0.2790471;-0.1763369,0.2489487;0.3576854;-0.4092958,-0.11021;0.3602049;0.005335418,-0.161679;0.1674349;0.01914288,-0.1856484;-0.0793577;-0.01277723,0.06674726;0.005473348;-0.04375893,0.1019061;-0.2903967;-0.008761596,0.09135257;-0.5825802;0.05845006,0.1038368;-0.6125315;-0.0003030524,-0.07443915;0.002559039;-0.02919358,-0.09190907;-0.296253;-0.009040365,-0.0821095;-0.5895311;0.05334503,-0.09520418;-0.5569527;-0.04425116,0.00223478;0.399448;0.02003766,0;0;0,-0.000246292;0.1991547;0.01836754,-0.0007992934;0.4987479;0.03300226,0.1042236;0.3761272;-0.02308646,0.2023742;0.2965147;-0.1780971,0.2650703;0.3617908;-0.4111384,-0.1133806;0.3607025;0.01517978,-0.1568355;0.165513;0.01874641,-0.1825322;-0.08262666;0.002424289,0.06535322;0.006807132;-0.04563572,0.09290884;-0.2886938;-0.001819309,0.08293905;-0.5811701;0.0641975,0.1006766;-0.6092991;0.004353914,-0.0749578;0.001179735;-0.02792735,-0.09585088;-0.2973989;-0.00757345,-0.09295857;-0.5905129;0.05626872,-0.0921708;-0.6173168;-0.007766679,-0.0006406376;0.3987751;0.03067762,66.47917
-0;0;0,0.0009314936;0.1995711;0.01305736,0.00281252;0.4994365;0.01992635,0.1085158;0.3787318;-0.03125229,0.2036516;0.2791804;-0.1762995,0.2492531;0.3574068;-0.4093256,-0.1102968;0.3600739;0.005566336,-0.1616905;0.1672647;0.01910547,-0.1856613;-0.07952458;-0.01283916,0.06677112;0.005453798;-0.04372497,0.1019904;-0.2904284;-0.008892126,0.09165421;-0.5825724;0.05852494,0.1033114;-0.6122249;-0.0008012131,-0.07441416;0.002583997;-0.029255,-0.09201001;-0.2961956;-0.008733284,-0.08201244;-0.5895523;0.05324954,-0.08381666;-0.6202675;-0.005757257,0.002111565;0.3994394;0.02021943,0;0;0,-0.000246292;0.1991547;0.01836754,-0.0007992934;0.4987479;0.03300226,0.1042236;0.3761272;-0.02308646,0.2023742;0.2965147;-0.1780971,0.2650703;0.3617908;-0.4111384,-0.1133806;0.3607025;0.01517978,-0.1568355;0.165513;0.01874641,-0.1825322;-0.08262666;0.002424289,0.06535322;0.006807132;-0.04563572,0.09290884;-0.2886938;-0.001819309,0.08293905;-0.5811701;0.0641975,0.1006766;-0.6092991;0.004353914,-0.0749578;0.001179735;-0.02792735,-0.09585088;-0.2973989;-0.00757345,-0.09295857;-0.5905129;0.05626872,-0.0921708;-0.6173168;-0.007766679,-0.0006406376;0.3987751;0.03067762,66.49549
-0;0;0,0.0009314936;0.1995711;0.01305736,0.00281252;0.4994365;0.01992635,0.1085158;0.3787318;-0.03125229,0.2036516;0.2791804;-0.1762995,0.2492531;0.3574068;-0.4093256,-0.1102968;0.3600739;0.005566336,-0.1616905;0.1672647;0.01910547,-0.1856613;-0.07952458;-0.01283916,0.06677112;0.005453798;-0.04372497,0.1019904;-0.2904284;-0.008892126,0.09165421;-0.5825724;0.05852494,0.1033114;-0.6122249;-0.0008012131,-0.07441416;0.002583997;-0.029255,-0.09201001;-0.2961956;-0.008733284,-0.08201244;-0.5895523;0.05324954,-0.08381666;-0.6202675;-0.005757257,0.002111565;0.3994394;0.02021943,0;0;0,-0.000246292;0.1991547;0.01836754,-0.0007992934;0.4987479;0.03300226,0.1042236;0.3761272;-0.02308646,0.2023742;0.2965147;-0.1780971,0.2650703;0.3617908;-0.4111384,-0.1133806;0.3607025;0.01517978,-0.1568355;0.165513;0.01874641,-0.1825322;-0.08262666;0.002424289,0.06535322;0.006807132;-0.04563572,0.09290884;-0.2886938;-0.001819309,0.08293905;-0.5811701;0.0641975,0.1006766;-0.6092991;0.004353914,-0.0749578;0.001179735;-0.02792735,-0.09585088;-0.2973989;-0.00757345,-0.09295857;-0.5905129;0.05626872,-0.0921708;-0.6173168;-0.007766679,-0.0006406376;0.3987751;0.03067762,66.50926
-0;0;0,0.0009314936;0.1995711;0.01305736,0.00281252;0.4994365;0.01992635,0.1085158;0.3787318;-0.03125229,0.2036516;0.2791804;-0.1762995,0.2492531;0.3574068;-0.4093256,-0.1102968;0.3600739;0.005566336,-0.1616905;0.1672647;0.01910547,-0.1856613;-0.07952458;-0.01283916,0.06677112;0.005453798;-0.04372497,0.1019904;-0.2904284;-0.008892126,0.09165421;-0.5825724;0.05852494,0.1033114;-0.6122249;-0.0008012131,-0.07441416;0.002583997;-0.029255,-0.09201001;-0.2961956;-0.008733284,-0.08201244;-0.5895523;0.05324954,-0.08381666;-0.6202675;-0.005757257,0.002111565;0.3994394;0.02021943,0;0;0,-0.0002924487;0.1991541;0.01837259,-0.0009092329;0.4987471;0.03301001,0.1040359;0.3760228;-0.02322228,0.2058577;0.2971267;-0.1762182,0.2726292;0.3641477;-0.4076264,-0.1133153;0.3604229;0.01474243,-0.1568436;0.1652567;0.01867388,-0.1824586;-0.08290361;0.002539596,0.06538536;0.006818012;-0.04558803,0.09296872;-0.2886884;-0.001825683,0.08285064;-0.5811754;0.06412071,0.1007878;-0.6092232;0.004230838,-0.07494724;0.00116957;-0.0279561,-0.0960531;-0.2973669;-0.007207135,-0.0927673;-0.5905164;0.05645277,-0.09203461;-0.6176425;-0.007194839,-0.0007320085;0.3987743;0.03068554,66.52077
-0;0;0,0.0008157038;0.1995676;0.0131193,0.002395622;0.4994325;0.02009195,0.1081957;0.3786003;-0.03111619,0.203374;0.2794907;-0.1764378,0.2492929;0.3569319;-0.4096637,-0.1104505;0.3597401;0.005459348,-0.1621318;0.1670397;0.01944488,-0.1856531;-0.07972221;-0.01304082,0.0667377;0.005455635;-0.04377574,0.1018791;-0.2904387;-0.008966845,0.09153574;-0.5826026;0.05836251,0.1032024;-0.6122288;-0.0009970777,-0.07444209;0.00257724;-0.02918447,-0.09199411;-0.2962165;-0.008831574,-0.08203687;-0.5896444;0.05282015,-0.0838316;-0.6203694;-0.006173495,0.001811467;0.3994345;0.02034584,0;0;0,-0.0002924487;0.1991541;0.01837259,-0.0009092329;0.4987471;0.03301001,0.1040359;0.3760228;-0.02322228,0.2058577;0.2971267;-0.1762182,0.2726292;0.3641477;-0.4076264,-0.1133153;0.3604229;0.01474243,-0.1568436;0.1652567;0.01867388,-0.1824586;-0.08290361;0.002539596,0.06538536;0.006818012;-0.04558803,0.09296872;-0.2886884;-0.001825683,0.08285064;-0.5811754;0.06412071,0.1007878;-0.6092232;0.004230838,-0.07494724;0.00116957;-0.0279561,-0.0960531;-0.2973669;-0.007207135,-0.0927673;-0.5905164;0.05645277,-0.09203461;-0.6176425;-0.007194839,-0.0007320085;0.3987743;0.03068554,66.53206
-0;0;0,0.0008157038;0.1995676;0.0131193,0.002395622;0.4994325;0.02009195,0.1081957;0.3786003;-0.03111619,0.203374;0.2794907;-0.1764378,0.2492929;0.3569319;-0.4096637,-0.1104505;0.3597401;0.005459348,-0.1621318;0.1670397;0.01944488,-0.1856531;-0.07972221;-0.01304082,0.0667377;0.005455635;-0.04377574,0.1018791;-0.2904387;-0.008966845,0.09153574;-0.5826026;0.05836251,0.1032024;-0.6122288;-0.0009970777,-0.07444209;0.00257724;-0.02918447,-0.09199411;-0.2962165;-0.008831574,-0.08203687;-0.5896444;0.05282015,-0.0838316;-0.6203694;-0.006173495,0.001811467;0.3994345;0.02034584,0;0;0,-0.0002924487;0.1991541;0.01837259,-0.0009092329;0.4987471;0.03301001,0.1040359;0.3760228;-0.02322228,0.2058577;0.2971267;-0.1762182,0.2726292;0.3641477;-0.4076264,-0.1133153;0.3604229;0.01474243,-0.1568436;0.1652567;0.01867388,-0.1824586;-0.08290361;0.002539596,0.06538536;0.006818012;-0.04558803,0.09296872;-0.2886884;-0.001825683,0.08285064;-0.5811754;0.06412071,0.1007878;-0.6092232;0.004230838,-0.07494724;0.00116957;-0.0279561,-0.0960531;-0.2973669;-0.007207135,-0.0927673;-0.5905164;0.05645277,-0.09203461;-0.6176425;-0.007194839,-0.0007320085;0.3987743;0.03068554,66.54325
-0;0;0,0.0008157038;0.1995676;0.0131193,0.002395622;0.4994325;0.02009195,0.1081957;0.3786003;-0.03111619,0.203374;0.2794907;-0.1764378,0.2492929;0.3569319;-0.4096637,-0.1104505;0.3597401;0.005459348,-0.1621318;0.1670397;0.01944488,-0.1856531;-0.07972221;-0.01304082,0.0667377;0.005455635;-0.04377574,0.1018791;-0.2904387;-0.008966845,0.09153574;-0.5826026;0.05836251,0.1032024;-0.6122288;-0.0009970777,-0.07444209;0.00257724;-0.02918447,-0.09199411;-0.2962165;-0.008831574,-0.08203687;-0.5896444;0.05282015,-0.0838316;-0.6203694;-0.006173495,0.001811467;0.3994345;0.02034584,0;0;0,-0.0003439008;0.1991536;0.01837729,-0.001132761;0.4987447;0.03304737,0.103868;0.3759572;-0.02318707,0.2085608;0.2976608;-0.1745446,0.2796311;0.3665046;-0.4041302,-0.1134958;0.3605408;0.0146245,-0.157006;0.1653739;0.01871615,-0.1825662;-0.08279574;0.002638232,0.06543723;0.006817931;-0.04551357,0.09298775;-0.2887057;-0.001847494,0.08284135;-0.5811712;0.06419043,0.100665;-0.6097659;0.00498585,-0.07490323;0.001104339;-0.02807645,-0.09622949;-0.2973935;-0.006999481,-0.09253298;-0.5905428;0.05663897,-0.09037846;-0.6194916;-0.004699707,-0.0008918927;0.3987723;0.03070937,66.55451
-0;0;0,0.0009229782;0.1995757;0.01298754,0.002547549;0.4994424;0.01989435,0.108381;0.3785069;-0.03117455,0.2036435;0.2812365;-0.1776789,0.2501054;0.3567048;-0.4114434,-0.110389;0.3597102;0.00601344,-0.1617197;0.1668749;0.01941882,-0.1852282;-0.07989031;-0.01305096,0.06676405;0.005430567;-0.04373866,0.1021143;-0.2904637;-0.009141758,0.09170569;-0.5826377;0.05813415,0.1036057;-0.6124283;-0.0009576902,-0.07440486;0.002612619;-0.02927613,-0.09181625;-0.2961968;-0.009032547,-0.08191819;-0.5896283;0.05261139,-0.08410804;-0.6202198;-0.006551288,0.001954725;0.3994445;0.02015831,0;0;0,-0.0003439008;0.1991536;0.01837729,-0.001132761;0.4987447;0.03304737,0.103868;0.3759572;-0.02318707,0.2085608;0.2976608;-0.1745446,0.2796311;0.3665046;-0.4041302,-0.1134958;0.3605408;0.0146245,-0.157006;0.1653739;0.01871615,-0.1825662;-0.08279574;0.002638232,0.06543723;0.006817931;-0.04551357,0.09298775;-0.2887057;-0.001847494,0.08284135;-0.5811712;0.06419043,0.100665;-0.6097659;0.00498585,-0.07490323;0.001104339;-0.02807645,-0.09622949;-0.2973935;-0.006999481,-0.09253298;-0.5905428;0.05663897,-0.09037846;-0.6194916;-0.004699707,-0.0008918927;0.3987723;0.03070937,66.56674
-0;0;0,0.0009229782;0.1995757;0.01298754,0.002547549;0.4994424;0.01989435,0.108381;0.3785069;-0.03117455,0.2036435;0.2812365;-0.1776789,0.2501054;0.3567048;-0.4114434,-0.110389;0.3597102;0.00601344,-0.1617197;0.1668749;0.01941882,-0.1852282;-0.07989031;-0.01305096,0.06676405;0.005430567;-0.04373866,0.1021143;-0.2904637;-0.009141758,0.09170569;-0.5826377;0.05813415,0.1036057;-0.6124283;-0.0009576902,-0.07440486;0.002612619;-0.02927613,-0.09181625;-0.2961968;-0.009032547,-0.08191819;-0.5896283;0.05261139,-0.08410804;-0.6202198;-0.006551288,0.001954725;0.3994445;0.02015831,0;0;0,-0.0003439008;0.1991536;0.01837729,-0.001132761;0.4987447;0.03304737,0.103868;0.3759572;-0.02318707,0.2085608;0.2976608;-0.1745446,0.2796311;0.3665046;-0.4041302,-0.1134958;0.3605408;0.0146245,-0.157006;0.1653739;0.01871615,-0.1825662;-0.08279574;0.002638232,0.06543723;0.006817931;-0.04551357,0.09298775;-0.2887057;-0.001847494,0.08284135;-0.5811712;0.06419043,0.100665;-0.6097659;0.00498585,-0.07490323;0.001104339;-0.02807645,-0.09622949;-0.2973935;-0.006999481,-0.09253298;-0.5905428;0.05663897,-0.09037846;-0.6194916;-0.004699707,-0.0008918927;0.3987723;0.03070937,66.57837
-0;0;0,0.0009584629;0.1995789;0.01293665,0.002609202;0.4994465;0.01980699,0.1084242;0.3783936;-0.03124008,0.2035583;0.2808085;-0.1776185,0.2500363;0.3568706;-0.4111873,-0.1103038;0.3596183;0.005994927,-0.1616666;0.1667916;0.01940021,-0.1775433;-0.08116703;-0.00824892,0.06677193;0.005447929;-0.04372448,0.1022055;-0.2904488;-0.009233736,0.09175844;-0.5825933;0.05816408,0.1036842;-0.6123447;-0.0009753779,-0.07439144;0.002609677;-0.02931047,-0.09179483;-0.2962;-0.009064659,-0.08188036;-0.5896505;0.0524861,-0.08412325;-0.6195354;-0.007625196,0.002013764;0.3994486;0.02007754,0;0;0,-0.0004619831;0.199163;0.01827265,-0.001655434;0.4987751;0.0324378,0.1035831;0.3759854;-0.02341839,0.2126854;0.2995069;-0.1725751,0.2879425;0.3689665;-0.4006359,-0.11395;0.3607474;0.01440718,-0.1661959;0.1682576;0.02917411,-0.1873043;-0.08029509;0.01256133,0.06566401;0.006726583;-0.04519945,0.09316983;-0.2888635;-0.00195653,0.08320078;-0.5813502;0.06401431,0.1010505;-0.609797;0.004621647,-0.07485779;0.00110666;-0.02819725,-0.09606931;-0.2973936;-0.007039314,-0.09282247;-0.5905108;0.05677102,-0.09063601;-0.6194268;-0.004608776,-0.001260108;0.3987984;0.03031676,66.59872
-0;0;0,0.0009584629;0.1995789;0.01293665,0.002609202;0.4994465;0.01980699,0.1084242;0.3783936;-0.03124008,0.2035583;0.2808085;-0.1776185,0.2500363;0.3568706;-0.4111873,-0.1103038;0.3596183;0.005994927,-0.1616666;0.1667916;0.01940021,-0.1775433;-0.08116703;-0.00824892,0.06677193;0.005447929;-0.04372448,0.1022055;-0.2904488;-0.009233736,0.09175844;-0.5825933;0.05816408,0.1036842;-0.6123447;-0.0009753779,-0.07439144;0.002609677;-0.02931047,-0.09179483;-0.2962;-0.009064659,-0.08188036;-0.5896505;0.0524861,-0.08412325;-0.6195354;-0.007625196,0.002013764;0.3994486;0.02007754,0;0;0,-0.0004619831;0.199163;0.01827265,-0.001655434;0.4987751;0.0324378,0.1035831;0.3759854;-0.02341839,0.2126854;0.2995069;-0.1725751,0.2879425;0.3689665;-0.4006359,-0.11395;0.3607474;0.01440718,-0.1661959;0.1682576;0.02917411,-0.1873043;-0.08029509;0.01256133,0.06566401;0.006726583;-0.04519945,0.09316983;-0.2888635;-0.00195653,0.08320078;-0.5813502;0.06401431,0.1010505;-0.609797;0.004621647,-0.07485779;0.00110666;-0.02819725,-0.09606931;-0.2973936;-0.007039314,-0.09282247;-0.5905108;0.05677102,-0.09063601;-0.6194268;-0.004608776,-0.001260108;0.3987984;0.03031676,66.61015
-0;0;0,0.0009584629;0.1995789;0.01293665,0.002609202;0.4994465;0.01980699,0.1084242;0.3783936;-0.03124008,0.2035583;0.2808085;-0.1776185,0.2500363;0.3568706;-0.4111873,-0.1103038;0.3596183;0.005994927,-0.1616666;0.1667916;0.01940021,-0.1775433;-0.08116703;-0.00824892,0.06677193;0.005447929;-0.04372448,0.1022055;-0.2904488;-0.009233736,0.09175844;-0.5825933;0.05816408,0.1036842;-0.6123447;-0.0009753779,-0.07439144;0.002609677;-0.02931047,-0.09179483;-0.2962;-0.009064659,-0.08188036;-0.5896505;0.0524861,-0.08412325;-0.6195354;-0.007625196,0.002013764;0.3994486;0.02007754,0;0;0,-0.0004619831;0.199163;0.01827265,-0.001655434;0.4987751;0.0324378,0.1035831;0.3759854;-0.02341839,0.2126854;0.2995069;-0.1725751,0.2879425;0.3689665;-0.4006359,-0.11395;0.3607474;0.01440718,-0.1661959;0.1682576;0.02917411,-0.1873043;-0.08029509;0.01256133,0.06566401;0.006726583;-0.04519945,0.09316983;-0.2888635;-0.00195653,0.08320078;-0.5813502;0.06401431,0.1010505;-0.609797;0.004621647,-0.07485779;0.00110666;-0.02819725,-0.09606931;-0.2973936;-0.007039314,-0.09282247;-0.5905108;0.05677102,-0.09063601;-0.6194268;-0.004608776,-0.001260108;0.3987984;0.03031676,66.62141
-0;0;0,0.0009723717;0.1995786;0.0129401,0.002646803;0.4994466;0.01978398,0.1084995;0.3784947;-0.03119805,0.2036487;0.2807203;-0.1774403,0.2504061;0.3566428;-0.4109986,-0.1102689;0.3596276;0.005902641,-0.1617579;0.1668577;0.01963766,-0.1833191;-0.08047281;-0.009734789,0.06675793;0.005444819;-0.04374623,0.1022247;-0.2904407;-0.009193774,0.09176005;-0.5826135;0.0580784,0.1035592;-0.6115404;-0.002182029,-0.07440909;0.002612475;-0.02926538,-0.09180844;-0.2962047;-0.00912673,-0.08193479;-0.5896621;0.05239825,-0.08381934;-0.6198608;-0.007306173,0.00204202;0.3994488;0.02006334,0;0;0,-0.0004860763;0.1991705;0.01818995,-0.00165098;0.4987895;0.03221185,0.1035954;0.3758485;-0.02348266,0.2176418;0.2970305;-0.1676393,0.2937889;0.3695412;-0.3944516,-0.1138179;0.3604782;0.01388338,-0.1661004;0.1680347;0.02911665,-0.1869994;-0.08054855;0.01269714,0.06569164;0.006726927;-0.04515925,0.09322572;-0.2888658;-0.001952529,0.08329769;-0.5813631;0.0639775,0.1011071;-0.6099419;0.004747391,-0.07479406;0.001113873;-0.02836559,-0.09605422;-0.2973603;-0.006889816,-0.09268725;-0.5905789;0.05644687,-0.09148975;-0.6174504;-0.007501025,-0.001273281;0.3988117;0.0301388,66.64388
-0;0;0,0.0009978071;0.199579;0.01293258,0.002783996;0.4994471;0.01973126,0.1085886;0.3782289;-0.03111009,0.2037291;0.2806193;-0.177468,0.2506504;0.3566385;-0.4109621,-0.1101917;0.3596347;0.005918499,-0.1616411;0.1668627;0.01977181,-0.1771325;-0.08128144;-0.006391557,0.06674802;0.00545902;-0.04375956,0.1021969;-0.2904208;-0.009139597,0.09166548;-0.5826083;0.05805791,0.1038478;-0.6112631;-0.002481516,-0.07441473;0.002604482;-0.02925173,-0.09145388;-0.2962832;-0.009864643,-0.08246063;-0.5897495;0.05175244,-0.08382137;-0.6186158;-0.009714987,0.002127166;0.3994497;0.02003323,0;0;0,-0.0004860763;0.1991705;0.01818995,-0.00165098;0.4987895;0.03221185,0.1035954;0.3758485;-0.02348266,0.2176418;0.2970305;-0.1676393,0.2937889;0.3695412;-0.3944516,-0.1138179;0.3604782;0.01388338,-0.1661004;0.1680347;0.02911665,-0.1869994;-0.08054855;0.01269714,0.06569164;0.006726927;-0.04515925,0.09322572;-0.2888658;-0.001952529,0.08329769;-0.5813631;0.0639775,0.1011071;-0.6099419;0.004747391,-0.07479406;0.001113873;-0.02836559,-0.09605422;-0.2973603;-0.006889816,-0.09268725;-0.5905789;0.05644687,-0.09148975;-0.6174504;-0.007501025,-0.001273281;0.3988117;0.0301388,66.66574
-0;0;0,0.0009978071;0.199579;0.01293258,0.002783996;0.4994471;0.01973126,0.1085886;0.3782289;-0.03111009,0.2037291;0.2806193;-0.177468,0.2506504;0.3566385;-0.4109621,-0.1101917;0.3596347;0.005918499,-0.1616411;0.1668627;0.01977181,-0.1771325;-0.08128144;-0.006391557,0.06674802;0.00545902;-0.04375956,0.1021969;-0.2904208;-0.009139597,0.09166548;-0.5826083;0.05805791,0.1038478;-0.6112631;-0.002481516,-0.07441473;0.002604482;-0.02925173,-0.09145388;-0.2962832;-0.009864643,-0.08246063;-0.5897495;0.05175244,-0.08382137;-0.6186158;-0.009714987,0.002127166;0.3994497;0.02003323,0;0;0,-0.0004860763;0.1991705;0.01818995,-0.00165098;0.4987895;0.03221185,0.1035954;0.3758485;-0.02348266,0.2176418;0.2970305;-0.1676393,0.2937889;0.3695412;-0.3944516,-0.1138179;0.3604782;0.01388338,-0.1661004;0.1680347;0.02911665,-0.1869994;-0.08054855;0.01269714,0.06569164;0.006726927;-0.04515925,0.09322572;-0.2888658;-0.001952529,0.08329769;-0.5813631;0.0639775,0.1011071;-0.6099419;0.004747391,-0.07479406;0.001113873;-0.02836559,-0.09605422;-0.2973603;-0.006889816,-0.09268725;-0.5905789;0.05644687,-0.09148975;-0.6174504;-0.007501025,-0.001273281;0.3988117;0.0301388,66.67706
-0;0;0,0.0009774833;0.1995813;0.01289795,0.002755319;0.4994506;0.01964231,0.1085514;0.3781954;-0.03118087,0.203624;0.2808327;-0.1777472,0.2507394;0.3566323;-0.4112736,-0.1102259;0.3596311;0.005911253,-0.1616173;0.1668494;0.01984544,-0.1850047;-0.08002363;-0.01188334,0.06672809;0.005530152;-0.04378104,0.1021569;-0.2903603;-0.009231362,0.09142256;-0.5825359;0.05798623,0.1038444;-0.6109779;-0.00278008,-0.07443156;0.00253075;-0.02921537,-0.09156272;-0.2963577;-0.009921554,-0.08236454;-0.589704;0.05223392,-0.08358549;-0.6184161;-0.009433929,0.002098224;0.3994533;0.01996434,0;0;0,-0.0005776046;0.1991804;0.01807827,-0.002067487;0.4988205;0.03158087,0.1034859;0.3758551;-0.02355129,0.2198343;0.2963615;-0.1654802,0.3031157;0.3700021;-0.3894027,-0.1139913;0.3602068;0.0133891,-0.1663732;0.1678204;0.02899746,-0.1871517;-0.08076486;0.0124561,0.06579195;0.006735154;-0.04501173,0.09314163;-0.2888968;-0.001956515,0.08326555;-0.5814174;0.0638779,0.101311;-0.6095922;0.004186474,-0.07476962;0.001090487;-0.0284309,-0.09582736;-0.2974093;-0.007113013,-0.09285047;-0.5906403;0.05618577,-0.0915751;-0.6166096;-0.008829866,-0.001559042;0.3988392;0.02971499,66.69939
-0;0;0,0.0009774833;0.1995813;0.01289795,0.002755319;0.4994506;0.01964231,0.1085514;0.3781954;-0.03118087,0.203624;0.2808327;-0.1777472,0.2507394;0.3566323;-0.4112736,-0.1102259;0.3596311;0.005911253,-0.1616173;0.1668494;0.01984544,-0.1850047;-0.08002363;-0.01188334,0.06672809;0.005530152;-0.04378104,0.1021569;-0.2903603;-0.009231362,0.09142256;-0.5825359;0.05798623,0.1038444;-0.6109779;-0.00278008,-0.07443156;0.00253075;-0.02921537,-0.09156272;-0.2963577;-0.009921554,-0.08236454;-0.589704;0.05223392,-0.08358549;-0.6184161;-0.009433929,0.002098224;0.3994533;0.01996434,0;0;0,-0.0005776046;0.1991804;0.01807827,-0.002067487;0.4988205;0.03158087,0.1034859;0.3758551;-0.02355129,0.2198343;0.2963615;-0.1654802,0.3031157;0.3700021;-0.3894027,-0.1139913;0.3602068;0.0133891,-0.1663732;0.1678204;0.02899746,-0.1871517;-0.08076486;0.0124561,0.06579195;0.006735154;-0.04501173,0.09314163;-0.2888968;-0.001956515,0.08326555;-0.5814174;0.0638779,0.101311;-0.6095922;0.004186474,-0.07476962;0.001090487;-0.0284309,-0.09582736;-0.2974093;-0.007113013,-0.09285047;-0.5906403;0.05618577,-0.0915751;-0.6166096;-0.008829866,-0.001559042;0.3988392;0.02971499,66.71072
-0;0;0,0.0009368139;0.1995767;0.01297153,0.00266562;0.4994443;0.01980201,0.1084482;0.3781419;-0.03108707,0.2028499;0.2841765;-0.180281,0.2521902;0.3563743;-0.4144881,-0.1102971;0.3596308;0.005996148,-0.1617177;0.16687;0.02011019,-0.1854343;-0.07994759;-0.011805,0.06674144;0.005550453;-0.04375812,0.1021705;-0.2903521;-0.009312894,0.09155727;-0.5825379;0.05787961,0.1036589;-0.6110334;-0.00288222,-0.07442077;0.00251252;-0.02924442,-0.09065925;-0.2964333;-0.01006809,-0.08278451;-0.5899284;0.0515646,-0.08332102;-0.6187704;-0.009946804,0.002023198;0.3994468;0.02009703,0;0;0,-0.0005776046;0.1991804;0.01807827,-0.002067487;0.4988205;0.03158087,0.1034859;0.3758551;-0.02355129,0.2198343;0.2963615;-0.1654802,0.3031157;0.3700021;-0.3894027,-0.1139913;0.3602068;0.0133891,-0.1663732;0.1678204;0.02899746,-0.1871517;-0.08076486;0.0124561,0.06579195;0.006735154;-0.04501173,0.09314163;-0.2888968;-0.001956515,0.08326555;-0.5814174;0.0638779,0.101311;-0.6095922;0.004186474,-0.07476962;0.001090487;-0.0284309,-0.09582736;-0.2974093;-0.007113013,-0.09285047;-0.5906403;0.05618577,-0.0915751;-0.6166096;-0.008829866,-0.001559042;0.3988392;0.02971499,66.73307
-0;0;0,0.0009368139;0.1995767;0.01297153,0.00266562;0.4994443;0.01980201,0.1084482;0.3781419;-0.03108707,0.2028499;0.2841765;-0.180281,0.2521902;0.3563743;-0.4144881,-0.1102971;0.3596308;0.005996148,-0.1617177;0.16687;0.02011019,-0.1854343;-0.07994759;-0.011805,0.06674144;0.005550453;-0.04375812,0.1021705;-0.2903521;-0.009312894,0.09155727;-0.5825379;0.05787961,0.1036589;-0.6110334;-0.00288222,-0.07442077;0.00251252;-0.02924442,-0.09065925;-0.2964333;-0.01006809,-0.08278451;-0.5899284;0.0515646,-0.08332102;-0.6187704;-0.009946804,0.002023198;0.3994468;0.02009703,0;0;0,-0.0006309386;0.1991913;0.01795673,-0.00216841;0.4988412;0.03123759,0.1035174;0.3757435;-0.02352118,0.2226685;0.295323;-0.1625736,0.3121628;0.36965;-0.3838568,-0.1141335;0.3606904;0.01238405,-0.1661923;0.1682766;0.02871927,-0.1869207;-0.0803362;0.01253285,0.06585224;0.006780776;-0.04491663,0.09318639;-0.2888875;-0.00210182,0.08308236;-0.5812974;0.06418851,0.1014408;-0.608063;0.002788067,-0.07467161;0.0008960914;-0.02869402,-0.09580977;-0.2975768;-0.007081751,-0.09255204;-0.5907885;0.05629246,-0.09148858;-0.6158667;-0.009754073,-0.001651572;0.3988586;0.0294427,66.74419
-0;0;0,0.000907822;0.199574;0.01301534,0.002605815;0.4994414;0.01985437,0.108411;0.377913;-0.03091153,0.2028271;0.283136;-0.179582,0.2518997;0.356425;-0.4135063,-0.1102647;0.3593921;0.006052334,-0.1615731;0.1665896;0.02000447,-0.1747314;-0.08205047;-0.002467113,0.06671625;0.005544348;-0.04379728,0.1021983;-0.2903584;-0.009408332,0.09158398;-0.5825303;0.05784467,0.1036686;-0.6111274;-0.002788994,-0.0744327;0.002518676;-0.02921352,-0.09059627;-0.2964035;-0.009610698,-0.08256305;-0.5899056;0.05196834,-0.08209158;-0.6195101;-0.00855365,0.001972229;0.3994439;0.02014935,0;0;0,-0.0006309386;0.1991913;0.01795673,-0.00216841;0.4988412;0.03123759,0.1035174;0.3757435;-0.02352118,0.2226685;0.295323;-0.1625736,0.3121628;0.36965;-0.3838568,-0.1141335;0.3606904;0.01238405,-0.1661923;0.1682766;0.02871927,-0.1869207;-0.0803362;0.01253285,0.06585224;0.006780776;-0.04491663,0.09318639;-0.2888875;-0.00210182,0.08308236;-0.5812974;0.06418851,0.1014408;-0.608063;0.002788067,-0.07467161;0.0008960914;-0.02869402,-0.09580977;-0.2975768;-0.007081751,-0.09255204;-0.5907885;0.05629246,-0.09148858;-0.6158667;-0.009754073,-0.001651572;0.3988586;0.0294427,66.76674
-0;0;0,0.000907822;0.199574;0.01301534,0.002605815;0.4994414;0.01985437,0.108411;0.377913;-0.03091153,0.2028271;0.283136;-0.179582,0.2518997;0.356425;-0.4135063,-0.1102647;0.3593921;0.006052334,-0.1615731;0.1665896;0.02000447,-0.1747314;-0.08205047;-0.002467113,0.06671625;0.005544348;-0.04379728,0.1021983;-0.2903584;-0.009408332,0.09158398;-0.5825303;0.05784467,0.1036686;-0.6111274;-0.002788994,-0.0744327;0.002518676;-0.02921352,-0.09059627;-0.2964035;-0.009610698,-0.08256305;-0.5899056;0.05196834,-0.08209158;-0.6195101;-0.00855365,0.001972229;0.3994439;0.02014935,0;0;0,-0.0006309386;0.1991913;0.01795673,-0.00216841;0.4988412;0.03123759,0.1035174;0.3757435;-0.02352118,0.2226685;0.295323;-0.1625736,0.3121628;0.36965;-0.3838568,-0.1141335;0.3606904;0.01238405,-0.1661923;0.1682766;0.02871927,-0.1869207;-0.0803362;0.01253285,0.06585224;0.006780776;-0.04491663,0.09318639;-0.2888875;-0.00210182,0.08308236;-0.5812974;0.06418851,0.1014408;-0.608063;0.002788067,-0.07467161;0.0008960914;-0.02869402,-0.09580977;-0.2975768;-0.007081751,-0.09255204;-0.5907885;0.05629246,-0.09148858;-0.6158667;-0.009754073,-0.001651572;0.3988586;0.0294427,66.78869
-0;0;0,0.0009302023;0.1995743;0.01300957,0.002669244;0.4994417;0.01983969,0.1084734;0.3779722;-0.03091346,0.203068;0.282757;-0.17919,0.2518159;0.3565158;-0.4130346,-0.1102663;0.3594699;0.006194755,-0.1613854;0.1666126;0.02008399,-0.1745182;-0.0819937;-0.002772378,0.06672806;0.005554237;-0.04377804,0.1022136;-0.2903491;-0.009397589,0.09146809;-0.5825431;0.05773765,0.1038071;-0.6111732;-0.002802085,-0.0744221;0.002509134;-0.02924133,-0.09063117;-0.2964127;-0.00967053,-0.08256473;-0.5899013;0.05196857,-0.08137551;-0.6201565;-0.007677712,0.002017573;0.3994443;0.02013659,0;0;0,-0.000745055;0.1991951;0.01791006,-0.00268657;0.498849;0.03104619,0.1033674;0.3758155;-0.02327226,0.2265306;0.2941618;-0.1580443,0.3235028;0.3686115;-0.3761123,-0.1144407;0.3606572;0.0119793,-0.1664151;0.1681904;0.02795545,-0.1869535;-0.080479;0.01240918,0.0660151;0.006782241;-0.04467669,0.09312295;-0.2889368;-0.002068907,0.08311275;-0.581332;0.0642999,0.1010436;-0.6079127;0.002543174,-0.07456087;0.0009185516;-0.02897988,-0.09552483;-0.2975416;-0.007023441,-0.09225357;-0.5906842;0.05666853,-0.09119737;-0.6154451;-0.009737015,-0.002012623;0.3988666;0.02929862,66.81128
-0;0;0,0.0009302023;0.1995743;0.01300957,0.002669244;0.4994417;0.01983969,0.1084734;0.3779722;-0.03091346,0.203068;0.282757;-0.17919,0.2518159;0.3565158;-0.4130346,-0.1102663;0.3594699;0.006194755,-0.1613854;0.1666126;0.02008399,-0.1745182;-0.0819937;-0.002772378,0.06672806;0.005554237;-0.04377804,0.1022136;-0.2903491;-0.009397589,0.09146809;-0.5825431;0.05773765,0.1038071;-0.6111732;-0.002802085,-0.0744221;0.002509134;-0.02924133,-0.09063117;-0.2964127;-0.00967053,-0.08256473;-0.5899013;0.05196857,-0.08137551;-0.6201565;-0.007677712,0.002017573;0.3994443;0.02013659,0;0;0,-0.000745055;0.1991951;0.01791006,-0.00268657;0.498849;0.03104619,0.1033674;0.3758155;-0.02327226,0.2265306;0.2941618;-0.1580443,0.3235028;0.3686115;-0.3761123,-0.1144407;0.3606572;0.0119793,-0.1664151;0.1681904;0.02795545,-0.1869535;-0.080479;0.01240918,0.0660151;0.006782241;-0.04467669,0.09312295;-0.2889368;-0.002068907,0.08311275;-0.581332;0.0642999,0.1010436;-0.6079127;0.002543174,-0.07456087;0.0009185516;-0.02897988,-0.09552483;-0.2975416;-0.007023441,-0.09225357;-0.5906842;0.05666853,-0.09119737;-0.6154451;-0.009737015,-0.002012623;0.3988666;0.02929862,66.82244
-0;0;0,0.0009061225;0.1995713;0.01305637,0.002596046;0.4994367;0.01999256,0.1083933;0.377921;-0.03083128,0.2078585;0.2758543;-0.171149,0.2473301;0.3555676;-0.4047892,-0.1102865;0.359406;0.006190453,-0.1614311;0.1665603;0.02014611,-0.1747513;-0.08196223;-0.003499992,0.06670822;0.005563623;-0.04380707,0.1021941;-0.290337;-0.009403586,0.091336;-0.5825107;0.05780248,0.1037993;-0.610895;-0.003029861,-0.07445313;0.002487013;-0.02916412,-0.09063631;-0.2964204;-0.009352759,-0.08268218;-0.5900108;0.05181408,-0.08305807;-0.618219;-0.01050231,0.001961827;0.3994391;0.02025013,0;0;0,-0.0008585585;0.1992049;0.01779536,-0.003036352;0.4988659;0.03073581,0.1032725;0.3759163;-0.0231978,0.2306339;0.2959445;-0.1550446,0.3363748;0.3707218;-0.3688839,-0.1146344;0.3607485;0.01105444,-0.1631437;0.1670052;0.02156016,-0.1870099;-0.08167228;0.01207759,0.06609525;0.006767897;-0.04456022,0.09313521;-0.2889616;-0.001981609,0.08326694;-0.5813816;0.0642992,0.1006129;-0.6076725;0.002019159,-0.07442202;0.001020262;-0.02933124,-0.09509575;-0.2974667;-0.00746466,-0.09234551;-0.5905683;0.05644053,-0.09108741;-0.6150138;-0.01031493,-0.002286943;0.3988829;0.02904909,66.8336
-0;0;0,0.0009061225;0.1995713;0.01305637,0.002596046;0.4994367;0.01999256,0.1083933;0.377921;-0.03083128,0.2078585;0.2758543;-0.171149,0.2473301;0.3555676;-0.4047892,-0.1102865;0.359406;0.006190453,-0.1614311;0.1665603;0.02014611,-0.1747513;-0.08196223;-0.003499992,0.06670822;0.005563623;-0.04380707,0.1021941;-0.290337;-0.009403586,0.091336;-0.5825107;0.05780248,0.1037993;-0.610895;-0.003029861,-0.07445313;0.002487013;-0.02916412,-0.09063631;-0.2964204;-0.009352759,-0.08268218;-0.5900108;0.05181408,-0.08305807;-0.618219;-0.01050231,0.001961827;0.3994391;0.02025013,0;0;0,-0.0008585585;0.1992049;0.01779536,-0.003036352;0.4988659;0.03073581,0.1032725;0.3759163;-0.0231978,0.2306339;0.2959445;-0.1550446,0.3363748;0.3707218;-0.3688839,-0.1146344;0.3607485;0.01105444,-0.1631437;0.1670052;0.02156016,-0.1870099;-0.08167228;0.01207759,0.06609525;0.006767897;-0.04456022,0.09313521;-0.2889616;-0.001981609,0.08326694;-0.5813816;0.0642992,0.1006129;-0.6076725;0.002019159,-0.07442202;0.001020262;-0.02933124,-0.09509575;-0.2974667;-0.00746466,-0.09234551;-0.5905683;0.05644053,-0.09108741;-0.6150138;-0.01031493,-0.002286943;0.3988829;0.02904909,66.845
-0;0;0,0.0008570696;0.1995638;0.0131736,0.002435127;0.4994241;0.02037423,0.1082027;0.3776608;-0.03059056,0.2055157;0.2823501;-0.1770353,0.2501838;0.3558235;-0.4117828,-0.1103133;0.359214;0.006241283,-0.1615607;0.1664049;0.0203244,-0.1870679;-0.08038247;-0.01042281,0.06671643;0.005585982;-0.04379172,0.1020645;-0.2903264;-0.009347945,0.0912852;-0.582438;0.05814022,0.1036914;-0.611342;-0.002028272,-0.07444607;0.002471086;-0.02918347,-0.09086716;-0.2964413;-0.009645971,-0.08293223;-0.5900718;0.05133118,-0.08288887;-0.6183745;-0.01086756,0.001841746;0.399426;0.02053306,0;0;0,-0.0008585585;0.1992049;0.01779536,-0.003036352;0.4988659;0.03073581,0.1032725;0.3759163;-0.0231978,0.2306339;0.2959445;-0.1550446,0.3363748;0.3707218;-0.3688839,-0.1146344;0.3607485;0.01105444,-0.1631437;0.1670052;0.02156016,-0.1870099;-0.08167228;0.01207759,0.06609525;0.006767897;-0.04456022,0.09313521;-0.2889616;-0.001981609,0.08326694;-0.5813816;0.0642992,0.1006129;-0.6076725;0.002019159,-0.07442202;0.001020262;-0.02933124,-0.09509575;-0.2974667;-0.00746466,-0.09234551;-0.5905683;0.05644053,-0.09108741;-0.6150138;-0.01031493,-0.002286943;0.3988829;0.02904909,66.86695
-0;0;0,0.0008570696;0.1995638;0.0131736,0.002435127;0.4994241;0.02037423,0.1082027;0.3776608;-0.03059056,0.2055157;0.2823501;-0.1770353,0.2501838;0.3558235;-0.4117828,-0.1103133;0.359214;0.006241283,-0.1615607;0.1664049;0.0203244,-0.1870679;-0.08038247;-0.01042281,0.06671643;0.005585982;-0.04379172,0.1020645;-0.2903264;-0.009347945,0.0912852;-0.582438;0.05814022,0.1036914;-0.611342;-0.002028272,-0.07444607;0.002471086;-0.02918347,-0.09086716;-0.2964413;-0.009645971,-0.08293223;-0.5900718;0.05133118,-0.08288887;-0.6183745;-0.01086756,0.001841746;0.399426;0.02053306,0;0;0,-0.0009587241;0.1992186;0.01763584,-0.003288706;0.4988908;0.03028833,0.1033327;0.3760605;-0.02305983,0.2329801;0.296315;-0.1527988,0.3394218;0.37313;-0.3655654,-0.1148028;0.3607813;0.01044626,-0.1627598;0.1668696;0.02036569,-0.1869883;-0.08180195;0.01167967,0.06621248;0.006785039;-0.04438322,0.09315947;-0.2889685;-0.00191281,0.08331837;-0.5814103;0.06427585,0.1007677;-0.60773;0.002059903,-0.07420626;0.001065747;-0.02987131,-0.09484249;-0.2973868;-0.007505311,-0.092269;-0.5905363;0.05618726,-0.09090116;-0.6147649;-0.01080711,-0.002493682;0.3989066;0.02869769,66.88914
-0;0;0,0.0008417096;0.1995617;0.01320653,0.00240966;0.4994216;0.02041852,0.108233;0.3777464;-0.03047453,0.2047835;0.2817277;-0.1769615,0.2505172;0.3560854;-0.4112249,-0.1103247;0.3591932;0.00624745,-0.1616941;0.1664246;0.02044,-0.1868818;-0.08035697;-0.01061539,0.06672156;0.00560329;-0.04378169,0.102203;-0.290301;-0.009405613,0.09154332;-0.5824177;0.05807924,0.1045093;-0.6116502;-0.001536999,-0.07442293;0.002459588;-0.02924341,-0.09113058;-0.2964264;-0.009544967,-0.08282186;-0.5900819;0.05126113,-0.08250619;-0.6185501;-0.01072787,0.001819072;0.3994235;0.02057613,0;0;0,-0.0009587241;0.1992186;0.01763584,-0.003288706;0.4988908;0.03028833,0.1033327;0.3760605;-0.02305983,0.2329801;0.296315;-0.1527988,0.3394218;0.37313;-0.3655654,-0.1148028;0.3607813;0.01044626,-0.1627598;0.1668696;0.02036569,-0.1869883;-0.08180195;0.01167967,0.06621248;0.006785039;-0.04438322,0.09315947;-0.2889685;-0.00191281,0.08331837;-0.5814103;0.06427585,0.1007677;-0.60773;0.002059903,-0.07420626;0.001065747;-0.02987131,-0.09484249;-0.2973868;-0.007505311,-0.092269;-0.5905363;0.05618726,-0.09090116;-0.6147649;-0.01080711,-0.002493682;0.3989066;0.02869769,66.90082
-0;0;0,0.0008417096;0.1995617;0.01320653,0.00240966;0.4994216;0.02041852,0.108233;0.3777464;-0.03047453,0.2047835;0.2817277;-0.1769615,0.2505172;0.3560854;-0.4112249,-0.1103247;0.3591932;0.00624745,-0.1616941;0.1664246;0.02044,-0.1868818;-0.08035697;-0.01061539,0.06672156;0.00560329;-0.04378169,0.102203;-0.290301;-0.009405613,0.09154332;-0.5824177;0.05807924,0.1045093;-0.6116502;-0.001536999,-0.07442293;0.002459588;-0.02924341,-0.09113058;-0.2964264;-0.009544967,-0.08282186;-0.5900819;0.05126113,-0.08250619;-0.6185501;-0.01072787,0.001819072;0.3994235;0.02057613,0;0;0,-0.0009587241;0.1992186;0.01763584,-0.003288706;0.4988908;0.03028833,0.1033327;0.3760605;-0.02305983,0.2329801;0.296315;-0.1527988,0.3394218;0.37313;-0.3655654,-0.1148028;0.3607813;0.01044626,-0.1627598;0.1668696;0.02036569,-0.1869883;-0.08180195;0.01167967,0.06621248;0.006785039;-0.04438322,0.09315947;-0.2889685;-0.00191281,0.08331837;-0.5814103;0.06427585,0.1007677;-0.60773;0.002059903,-0.07420626;0.001065747;-0.02987131,-0.09484249;-0.2973868;-0.007505311,-0.092269;-0.5905363;0.05618726,-0.09090116;-0.6147649;-0.01080711,-0.002493682;0.3989066;0.02869769,66.91242
-0;0;0,0.0008412965;0.1995603;0.01322784,0.002407397;0.49942;0.0204479,0.1081941;0.3776724;-0.03049246,0.2042533;0.2825733;-0.1778994,0.2511429;0.3562011;-0.4121648,-0.1103081;0.3591603;0.006219349,-0.1617694;0.1664187;0.02044584,-0.1867488;-0.08033906;-0.01096494,0.06670093;0.005615484;-0.04381156,0.1021438;-0.2902928;-0.009429671,0.09154805;-0.5824292;0.05798008,0.104461;-0.6116936;-0.001605213,-0.07446799;0.002421942;-0.02913165,-0.09151292;-0.29642;-0.009057114,-0.0831002;-0.5901748;0.05125319,-0.08348944;-0.6181328;-0.01137592,0.001817194;0.3994218;0.02060456,0;0;0,-0.001136129;0.1992244;0.01756019,-0.003927097;0.4988979;0.03009263,0.1031754;0.3764509;-0.02274733,0.2356828;0.296807;-0.1496277,0.3523943;0.3729294;-0.3571941,-0.1153232;0.3609729;0.01021462,-0.1627781;0.1669339;0.02005803,-0.1872644;-0.08170418;0.0111399,0.0663204;0.006922289;-0.04420051,0.09317166;-0.2888783;-0.001997944,0.08330684;-0.5812804;0.06436236,0.1006803;-0.6082847;0.002974369,-0.07405553;0.0008100965;-0.03025099,-0.09470267;-0.2976126;-0.007500015,-0.09235037;-0.5908027;0.05601449,-0.08877236;-0.6191638;-0.006007552,-0.002963271;0.3989146;0.02853588,66.9352
-0;0;0,0.0008412965;0.1995603;0.01322784,0.002407397;0.49942;0.0204479,0.1081941;0.3776724;-0.03049246,0.2042533;0.2825733;-0.1778994,0.2511429;0.3562011;-0.4121648,-0.1103081;0.3591603;0.006219349,-0.1617694;0.1664187;0.02044584,-0.1867488;-0.08033906;-0.01096494,0.06670093;0.005615484;-0.04381156,0.1021438;-0.2902928;-0.009429671,0.09154805;-0.5824292;0.05798008,0.104461;-0.6116936;-0.001605213,-0.07446799;0.002421942;-0.02913165,-0.09151292;-0.29642;-0.009057114,-0.0831002;-0.5901748;0.05125319,-0.08348944;-0.6181328;-0.01137592,0.001817194;0.3994218;0.02060456,0;0;0,-0.001136129;0.1992244;0.01756019,-0.003927097;0.4988979;0.03009263,0.1031754;0.3764509;-0.02274733,0.2356828;0.296807;-0.1496277,0.3523943;0.3729294;-0.3571941,-0.1153232;0.3609729;0.01021462,-0.1627781;0.1669339;0.02005803,-0.1872644;-0.08170418;0.0111399,0.0663204;0.006922289;-0.04420051,0.09317166;-0.2888783;-0.001997944,0.08330684;-0.5812804;0.06436236,0.1006803;-0.6082847;0.002974369,-0.07405553;0.0008100965;-0.03025099,-0.09470267;-0.2976126;-0.007500015,-0.09235037;-0.5908027;0.05601449,-0.08877236;-0.6191638;-0.006007552,-0.002963271;0.3989146;0.02853588,66.94671
-0;0;0,0.0008412965;0.1995603;0.01322784,0.002407397;0.49942;0.0204479,0.1081941;0.3776724;-0.03049246,0.2042533;0.2825733;-0.1778994,0.2511429;0.3562011;-0.4121648,-0.1103081;0.3591603;0.006219349,-0.1617694;0.1664187;0.02044584,-0.1867488;-0.08033906;-0.01096494,0.06670093;0.005615484;-0.04381156,0.1021438;-0.2902928;-0.009429671,0.09154805;-0.5824292;0.05798008,0.104461;-0.6116936;-0.001605213,-0.07446799;0.002421942;-0.02913165,-0.09151292;-0.29642;-0.009057114,-0.0831002;-0.5901748;0.05125319,-0.08348944;-0.6181328;-0.01137592,0.001817194;0.3994218;0.02060456,0;0;0,-0.001136129;0.1992244;0.01756019,-0.003927097;0.4988979;0.03009263,0.1031754;0.3764509;-0.02274733,0.2356828;0.296807;-0.1496277,0.3523943;0.3729294;-0.3571941,-0.1153232;0.3609729;0.01021462,-0.1627781;0.1669339;0.02005803,-0.1872644;-0.08170418;0.0111399,0.0663204;0.006922289;-0.04420051,0.09317166;-0.2888783;-0.001997944,0.08330684;-0.5812804;0.06436236,0.1006803;-0.6082847;0.002974369,-0.07405553;0.0008100965;-0.03025099,-0.09470267;-0.2976126;-0.007500015,-0.09235037;-0.5908027;0.05601449,-0.08877236;-0.6191638;-0.006007552,-0.002963271;0.3989146;0.02853588,66.95787
-0;0;0,0.00078023;0.199557;0.0132817,0.00226184;0.4994158;0.02055214,0.1080395;0.3774732;-0.03039463,0.20363;0.2811368;-0.1773019,0.2512396;0.3564811;-0.4108754,-0.110688;0.3597659;0.006656154,-0.161961;0.1669317;0.02029594,-0.1747569;-0.08139972;-0.005544977,0.06668097;0.005615866;-0.04384189,0.1023399;-0.2902578;-0.009385683,0.09184229;-0.5824825;0.05765577,0.1046565;-0.6122554;-0.001268502,-0.07447354;0.002423391;-0.02911733,-0.09139766;-0.2964239;-0.009020075,-0.08287356;-0.5902025;0.05115875,-0.08295605;-0.6179922;-0.01168032,0.001698393;0.3994175;0.02069373,0;0;0,-0.001136129;0.1992244;0.01756019,-0.003927097;0.4988979;0.03009263,0.1031754;0.3764509;-0.02274733,0.2356828;0.296807;-0.1496277,0.3523943;0.3729294;-0.3571941,-0.1153232;0.3609729;0.01021462,-0.1627781;0.1669339;0.02005803,-0.1872644;-0.08170418;0.0111399,0.0663204;0.006922289;-0.04420051,0.09317166;-0.2888783;-0.001997944,0.08330684;-0.5812804;0.06436236,0.1006803;-0.6082847;0.002974369,-0.07405553;0.0008100965;-0.03025099,-0.09470267;-0.2976126;-0.007500015,-0.09235037;-0.5908027;0.05601449,-0.08877236;-0.6191638;-0.006007552,-0.002963271;0.3989146;0.02853588,66.96984
-0;0;0,0.0007951054;0.1995576;0.01327173,0.002316623;0.4994167;0.02051242,0.1080583;0.3773452;-0.03040056,0.2037548;0.2809543;-0.1772031,0.2513618;0.3567171;-0.4106417,-0.1106473;0.35976;0.006616971,-0.1621295;0.167008;0.02062691,-0.1865369;-0.07981884;-0.01069026,0.0666678;0.005625302;-0.0438607,0.102336;-0.2902418;-0.009357654,0.09192029;-0.5824859;0.05761172,0.1047261;-0.6123925;-0.001132965,-0.07451806;0.002395869;-0.02900549,-0.0906802;-0.2965209;-0.009319562,-0.08276653;-0.5901657;0.05159139,-0.08320922;-0.61736;-0.0119763,0.001734818;0.3994185;0.0206688,0;0;0,-0.001395026;0.1992221;0.01756677,-0.004806429;0.4988892;0.0301111,0.1028408;0.3767927;-0.02229957,0.238416;0.2980045;-0.1464439,0.3596945;0.3734981;-0.3516077,-0.1158498;0.3608988;0.009777913,-0.1667359;0.1678048;0.02097244,-0.1877701;-0.08109549;0.0106671,0.06653588;0.007059672;-0.04385361,0.09298202;-0.2887988;-0.001801763,0.08321319;-0.5811608;0.06474936,0.1003779;-0.6084491;0.003660168,-0.07396728;0.0006036471;-0.03047092,-0.09501045;-0.2977639;-0.007362688,-0.0924325;-0.5909468;0.0561761,-0.08933474;-0.6192294;-0.005970843,-0.003585315;0.398909;0.02853691,66.99216
-0;0;0,0.0007951054;0.1995576;0.01327173,0.002316623;0.4994167;0.02051242,0.1080583;0.3773452;-0.03040056,0.2037548;0.2809543;-0.1772031,0.2513618;0.3567171;-0.4106417,-0.1106473;0.35976;0.006616971,-0.1621295;0.167008;0.02062691,-0.1865369;-0.07981884;-0.01069026,0.0666678;0.005625302;-0.0438607,0.102336;-0.2902418;-0.009357654,0.09192029;-0.5824859;0.05761172,0.1047261;-0.6123925;-0.001132965,-0.07451806;0.002395869;-0.02900549,-0.0906802;-0.2965209;-0.009319562,-0.08276653;-0.5901657;0.05159139,-0.08320922;-0.61736;-0.0119763,0.001734818;0.3994185;0.0206688,0;0;0,-0.001395026;0.1992221;0.01756677,-0.004806429;0.4988892;0.0301111,0.1028408;0.3767927;-0.02229957,0.238416;0.2980045;-0.1464439,0.3596945;0.3734981;-0.3516077,-0.1158498;0.3608988;0.009777913,-0.1667359;0.1678048;0.02097244,-0.1877701;-0.08109549;0.0106671,0.06653588;0.007059672;-0.04385361,0.09298202;-0.2887988;-0.001801763,0.08321319;-0.5811608;0.06474936,0.1003779;-0.6084491;0.003660168,-0.07396728;0.0006036471;-0.03047092,-0.09501045;-0.2977639;-0.007362688,-0.0924325;-0.5909468;0.0561761,-0.08933474;-0.6192294;-0.005970843,-0.003585315;0.398909;0.02853691,67.00419
-0;0;0,0.0007951054;0.1995576;0.01327173,0.002316623;0.4994167;0.02051242,0.1080583;0.3773452;-0.03040056,0.2037548;0.2809543;-0.1772031,0.2513618;0.3567171;-0.4106417,-0.1106473;0.35976;0.006616971,-0.1621295;0.167008;0.02062691,-0.1865369;-0.07981884;-0.01069026,0.0666678;0.005625302;-0.0438607,0.102336;-0.2902418;-0.009357654,0.09192029;-0.5824859;0.05761172,0.1047261;-0.6123925;-0.001132965,-0.07451806;0.002395869;-0.02900549,-0.0906802;-0.2965209;-0.009319562,-0.08276653;-0.5901657;0.05159139,-0.08320922;-0.61736;-0.0119763,0.001734818;0.3994185;0.0206688,0;0;0,-0.001530661;0.1992326;0.01743612,-0.005118344;0.4989052;0.02979904,0.1028928;0.3770522;-0.02198828,0.2424037;0.2938387;-0.1386597,0.3694416;0.3635225;-0.3423888,-0.1160317;0.3610367;0.008784181,-0.1647632;0.1672617;0.01752865,-0.1879888;-0.08153863;0.00984924,0.06663345;0.007154885;-0.04368971,0.09291461;-0.2887177;-0.001633596,0.08319889;-0.5811061;0.0648091,0.1003856;-0.6086209;0.004013829,-0.07387138;0.0003859787;-0.03070617,-0.09534221;-0.2979008;-0.006957402,-0.09231491;-0.591113;0.05642593,-0.08918787;-0.6186638;-0.006630331,-0.00385189;0.3989248;0.02828267,67.01575
-0;0;0,0.0008335605;0.1995592;0.01324516,0.002384391;0.4994189;0.02046217,0.1081235;0.3773354;-0.03043741,0.2038287;0.280741;-0.1771004,0.2515142;0.3569591;-0.4103747,-0.110574;0.3597011;0.006659226,-0.1620222;0.166944;0.02072248,-0.1736976;-0.08155696;-0.00399505,0.0666367;0.00562303;-0.04390822,0.1023576;-0.2902396;-0.009421632,0.09197184;-0.5824832;0.05755478,0.104829;-0.6123708;-0.001204498,-0.07455355;0.002408558;-0.0289131,-0.09034104;-0.2965533;-0.009611195,-0.08299357;-0.590242;0.05115848,-0.08353596;-0.6182019;-0.01146711,0.001797671;0.3994208;0.02062201,0;0;0,-0.001530661;0.1992326;0.01743612,-0.005118344;0.4989052;0.02979904,0.1028928;0.3770522;-0.02198828,0.2424037;0.2938387;-0.1386597,0.3694416;0.3635225;-0.3423888,-0.1160317;0.3610367;0.008784181,-0.1647632;0.1672617;0.01752865,-0.1879888;-0.08153863;0.00984924,0.06663345;0.007154885;-0.04368971,0.09291461;-0.2887177;-0.001633596,0.08319889;-0.5811061;0.0648091,0.1003856;-0.6086209;0.004013829,-0.07387138;0.0003859787;-0.03070617,-0.09534221;-0.2979008;-0.006957402,-0.09231491;-0.591113;0.05642593,-0.08918787;-0.6186638;-0.006630331,-0.00385189;0.3989248;0.02828267,67.03884
-0;0;0,0.0008335605;0.1995592;0.01324516,0.002384391;0.4994189;0.02046217,0.1081235;0.3773354;-0.03043741,0.2038287;0.280741;-0.1771004,0.2515142;0.3569591;-0.4103747,-0.110574;0.3597011;0.006659226,-0.1620222;0.166944;0.02072248,-0.1736976;-0.08155696;-0.00399505,0.0666367;0.00562303;-0.04390822,0.1023576;-0.2902396;-0.009421632,0.09197184;-0.5824832;0.05755478,0.104829;-0.6123708;-0.001204498,-0.07455355;0.002408558;-0.0289131,-0.09034104;-0.2965533;-0.009611195,-0.08299357;-0.590242;0.05115848,-0.08353596;-0.6182019;-0.01146711,0.001797671;0.3994208;0.02062201,0;0;0,-0.001530661;0.1992326;0.01743612,-0.005118344;0.4989052;0.02979904,0.1028928;0.3770522;-0.02198828,0.2424037;0.2938387;-0.1386597,0.3694416;0.3635225;-0.3423888,-0.1160317;0.3610367;0.008784181,-0.1647632;0.1672617;0.01752865,-0.1879888;-0.08153863;0.00984924,0.06663345;0.007154885;-0.04368971,0.09291461;-0.2887177;-0.001633596,0.08319889;-0.5811061;0.0648091,0.1003856;-0.6086209;0.004013829,-0.07387138;0.0003859787;-0.03070617,-0.09534221;-0.2979008;-0.006957402,-0.09231491;-0.591113;0.05642593,-0.08918787;-0.6186638;-0.006630331,-0.00385189;0.3989248;0.02828267,67.05016
-0;0;0,0.0008359551;0.1995592;0.01324476,0.002395778;0.4994192;0.02044638,0.1080986;0.3772128;-0.03046298,0.2039265;0.2805405;-0.1769946,0.2518258;0.3572696;-0.4100574,-0.1105563;0.359663;0.006683903,-0.1620545;0.1669232;0.02080176,-0.1868304;-0.08004695;-0.009062916,0.06660174;0.005653501;-0.04395732,0.1024021;-0.2901962;-0.009441912,0.09195733;-0.5824774;0.05736063,0.1051305;-0.6120886;-0.001702998,-0.07457095;0.002396921;-0.02886914,-0.09045792;-0.2965657;-0.009660318,-0.08299322;-0.5902309;0.05120834,-0.08325906;-0.6183414;-0.01123103,0.00180604;0.3994211;0.02061218,0;0;0,-0.001530661;0.1992326;0.01743612,-0.005118344;0.4989052;0.02979904,0.1028928;0.3770522;-0.02198828,0.2424037;0.2938387;-0.1386597,0.3694416;0.3635225;-0.3423888,-0.1160317;0.3610367;0.008784181,-0.1647632;0.1672617;0.01752865,-0.1879888;-0.08153863;0.00984924,0.06663345;0.007154885;-0.04368971,0.09291461;-0.2887177;-0.001633596,0.08319889;-0.5811061;0.0648091,0.1003856;-0.6086209;0.004013829,-0.07387138;0.0003859787;-0.03070617,-0.09534221;-0.2979008;-0.006957402,-0.09231491;-0.591113;0.05642593,-0.08918787;-0.6186638;-0.006630331,-0.00385189;0.3989248;0.02828267,67.06216
-0;0;0,0.0008359551;0.1995592;0.01324476,0.002395778;0.4994192;0.02044638,0.1080986;0.3772128;-0.03046298,0.2039265;0.2805405;-0.1769946,0.2518258;0.3572696;-0.4100574,-0.1105563;0.359663;0.006683903,-0.1620545;0.1669232;0.02080176,-0.1868304;-0.08004695;-0.009062916,0.06660174;0.005653501;-0.04395732,0.1024021;-0.2901962;-0.009441912,0.09195733;-0.5824774;0.05736063,0.1051305;-0.6120886;-0.001702998,-0.07457095;0.002396921;-0.02886914,-0.09045792;-0.2965657;-0.009660318,-0.08299322;-0.5902309;0.05120834,-0.08325906;-0.6183414;-0.01123103,0.00180604;0.3994211;0.02061218,0;0;0,-0.00165647;0.1992255;0.01750633,-0.005344744;0.498893;0.02998838,0.1028491;0.376994;-0.02155018,0.2439888;0.3032258;-0.1425371,0.3773026;0.3770803;-0.3407111,-0.1162424;0.3613774;0.008401215,-0.1638946;0.1673318;0.01709456,-0.1879501;-0.0813774;0.009028058,0.0667958;0.00712918;-0.04344533,0.0929014;-0.2887756;-0.00150637,0.08308994;-0.5811917;0.06480055,0.1002796;-0.6087328;0.004039615,-0.07370274;0.0005132434;-0.03110695,-0.09553134;-0.2977147;-0.006949203,-0.09226316;-0.5909092;0.05650374,-0.08929808;-0.6177241;-0.007454745,-0.004033604;0.3989141;0.0284059,67.08469
-0;0;0,0.0008553557;0.1995593;0.01324143,0.002442125;0.49942;0.02041135,0.1081149;0.3771226;-0.03049385,0.2039901;0.2830366;-0.1786686,0.2528583;0.3575742;-0.412241,-0.1105094;0.3596371;0.006666311,-0.1620241;0.166904;0.02081528,-0.1755972;-0.08157787;-0.003112461,0.06658787;0.00567174;-0.04397597,0.1024625;-0.2901772;-0.009531114,0.09199879;-0.5824199;0.05743663,0.1056572;-0.6133012;0.0002380572,-0.07457186;0.002379337;-0.02886826,-0.09040484;-0.2966078;-0.009999238,-0.08299467;-0.5902151;0.05115475,-0.0833662;-0.6182662;-0.01135846,0.001844322;0.3994219;0.02058751,0;0;0,-0.00165647;0.1992255;0.01750633,-0.005344744;0.498893;0.02998838,0.1028491;0.376994;-0.02155018,0.2439888;0.3032258;-0.1425371,0.3773026;0.3770803;-0.3407111,-0.1162424;0.3613774;0.008401215,-0.1638946;0.1673318;0.01709456,-0.1879501;-0.0813774;0.009028058,0.0667958;0.00712918;-0.04344533,0.0929014;-0.2887756;-0.00150637,0.08308994;-0.5811917;0.06480055,0.1002796;-0.6087328;0.004039615,-0.07370274;0.0005132434;-0.03110695,-0.09553134;-0.2977147;-0.006949203,-0.09226316;-0.5909092;0.05650374,-0.08929808;-0.6177241;-0.007454745,-0.004033604;0.3989141;0.0284059,67.10709
-0;0;0,0.0008553557;0.1995593;0.01324143,0.002442125;0.49942;0.02041135,0.1081149;0.3771226;-0.03049385,0.2039901;0.2830366;-0.1786686,0.2528583;0.3575742;-0.412241,-0.1105094;0.3596371;0.006666311,-0.1620241;0.166904;0.02081528,-0.1755972;-0.08157787;-0.003112461,0.06658787;0.00567174;-0.04397597,0.1024625;-0.2901772;-0.009531114,0.09199879;-0.5824199;0.05743663,0.1056572;-0.6133012;0.0002380572,-0.07457186;0.002379337;-0.02886826,-0.09040484;-0.2966078;-0.009999238,-0.08299467;-0.5902151;0.05115475,-0.0833662;-0.6182662;-0.01135846,0.001844322;0.3994219;0.02058751,0;0;0,-0.001894627;0.1992405;0.01730962,-0.006224479;0.4989202;0.02926092,0.102562;0.3772123;-0.02137926,0.2483253;0.3040905;-0.1371647,0.3837656;0.3786983;-0.333607,-0.1169724;0.3615489;0.008054361,-0.1633557;0.1671292;0.01509515,-0.1884533;-0.08150131;0.007814985,0.06686959;0.007194588;-0.04332084,0.09284405;-0.2887181;-0.001356065,0.08301709;-0.5811449;0.06490072,0.1001797;-0.6087927;0.004268419,-0.07365137;0.0004226578;-0.03122972,-0.09573957;-0.2977536;-0.006673343,-0.09223819;-0.5909841;0.05660097,-0.08975524;-0.6177048;-0.007490903,-0.004683411;0.3989417;0.02787765,67.11831
-0;0;0,0.0009391785;0.199564;0.01316623,0.00262631;0.4994276;0.02018946,0.1082197;0.3770199;-0.03072458,0.2042662;0.2832212;-0.1789706,0.2538523;0.3581473;-0.4122672,-0.1103158;0.3595437;0.00646746,-0.1619224;0.1668284;0.02052441,-0.1830224;-0.08023871;-0.01129725,0.06666788;0.005591498;-0.04386489,0.1027546;-0.2902914;-0.009937674,0.09220067;-0.5824552;0.05735969,0.1057838;-0.612533;-0.0009759963,-0.07450522;0.002472583;-0.02903202,-0.09024339;-0.2965229;-0.0102167,-0.0823014;-0.5899575;0.05169497,-0.0806628;-0.6192175;-0.009257216,0.001999094;0.3994299;0.02041237,0;0;0,-0.001894627;0.1992405;0.01730962,-0.006224479;0.4989202;0.02926092,0.102562;0.3772123;-0.02137926,0.2483253;0.3040905;-0.1371647,0.3837656;0.3786983;-0.333607,-0.1169724;0.3615489;0.008054361,-0.1633557;0.1671292;0.01509515,-0.1884533;-0.08150131;0.007814985,0.06686959;0.007194588;-0.04332084,0.09284405;-0.2887181;-0.001356065,0.08301709;-0.5811449;0.06490072,0.1001797;-0.6087927;0.004268419,-0.07365137;0.0004226578;-0.03122972,-0.09573957;-0.2977536;-0.006673343,-0.09223819;-0.5909841;0.05660097,-0.08975524;-0.6177048;-0.007490903,-0.004683411;0.3989417;0.02787765,67.1404
-0;0;0,0.0009391785;0.199564;0.01316623,0.00262631;0.4994276;0.02018946,0.1082197;0.3770199;-0.03072458,0.2042662;0.2832212;-0.1789706,0.2538523;0.3581473;-0.4122672,-0.1103158;0.3595437;0.00646746,-0.1619224;0.1668284;0.02052441,-0.1830224;-0.08023871;-0.01129725,0.06666788;0.005591498;-0.04386489,0.1027546;-0.2902914;-0.009937674,0.09220067;-0.5824552;0.05735969,0.1057838;-0.612533;-0.0009759963,-0.07450522;0.002472583;-0.02903202,-0.09024339;-0.2965229;-0.0102167,-0.0823014;-0.5899575;0.05169497,-0.0806628;-0.6192175;-0.009257216,0.001999094;0.3994299;0.02041237,0;0;0,-0.001894627;0.1992405;0.01730962,-0.006224479;0.4989202;0.02926092,0.102562;0.3772123;-0.02137926,0.2483253;0.3040905;-0.1371647,0.3837656;0.3786983;-0.333607,-0.1169724;0.3615489;0.008054361,-0.1633557;0.1671292;0.01509515,-0.1884533;-0.08150131;0.007814985,0.06686959;0.007194588;-0.04332084,0.09284405;-0.2887181;-0.001356065,0.08301709;-0.5811449;0.06490072,0.1001797;-0.6087927;0.004268419,-0.07365137;0.0004226578;-0.03122972,-0.09573957;-0.2977536;-0.006673343,-0.09223819;-0.5909841;0.05660097,-0.08975524;-0.6177048;-0.007490903,-0.004683411;0.3989417;0.02787765,67.15179
-0;0;0,0.0008801077;0.1995672;0.01312168,0.002500551;0.4994321;0.02011265,0.1081173;0.3769777;-0.03078048,0.2063895;0.2801153;-0.175557,0.251831;0.358536;-0.408549,-0.1104098;0.359504;0.006482393,-0.162013;0.1667835;0.02047844,-0.1834445;-0.08026221;-0.0112882,0.06670708;0.005557983;-0.04380952,0.1027078;-0.2903529;-0.01003515,0.0922784;-0.5824524;0.05755991,0.1051953;-0.6119571;-0.001703586,-0.07447235;0.002518142;-0.02911232,-0.09035771;-0.2964649;-0.01022353,-0.08255813;-0.590012;0.05117116,-0.09563403;-0.5574244;-0.04642918,0.001899931;0.3994341;0.02034273,0;0;0,-0.002078343;0.1992513;0.01716357,-0.00664598;0.4989349;0.02893159,0.1026409;0.3773002;-0.02072539,0.2499742;0.3053948;-0.135279,0.3931325;0.3817162;-0.3254913,-0.1172782;0.3616917;0.007266907,-0.1634646;0.1672463;0.0148679,-0.1887553;-0.08132535;0.006350723,0.06696258;0.007293595;-0.04316036,0.09291451;-0.2886293;-0.001254037,0.08301803;-0.5810468;0.06503408,0.09992424;-0.6086702;0.004298761,-0.07352775;0.0002395601;-0.03152162,-0.09582007;-0.2978732;-0.006384661,-0.09222686;-0.5911754;0.05655105,-0.08974557;-0.6178579;-0.007586636,-0.005039095;0.3989565;0.02760699,67.1739
-0;0;0,0.0008801077;0.1995672;0.01312168,0.002500551;0.4994321;0.02011265,0.1081173;0.3769777;-0.03078048,0.2063895;0.2801153;-0.175557,0.251831;0.358536;-0.408549,-0.1104098;0.359504;0.006482393,-0.162013;0.1667835;0.02047844,-0.1834445;-0.08026221;-0.0112882,0.06670708;0.005557983;-0.04380952,0.1027078;-0.2903529;-0.01003515,0.0922784;-0.5824524;0.05755991,0.1051953;-0.6119571;-0.001703586,-0.07447235;0.002518142;-0.02911232,-0.09035771;-0.2964649;-0.01022353,-0.08255813;-0.590012;0.05117116,-0.09563403;-0.5574244;-0.04642918,0.001899931;0.3994341;0.02034273,0;0;0,-0.002078343;0.1992513;0.01716357,-0.00664598;0.4989349;0.02893159,0.1026409;0.3773002;-0.02072539,0.2499742;0.3053948;-0.135279,0.3931325;0.3817162;-0.3254913,-0.1172782;0.3616917;0.007266907,-0.1634646;0.1672463;0.0148679,-0.1887553;-0.08132535;0.006350723,0.06696258;0.007293595;-0.04316036,0.09291451;-0.2886293;-0.001254037,0.08301803;-0.5810468;0.06503408,0.09992424;-0.6086702;0.004298761,-0.07352775;0.0002395601;-0.03152162,-0.09582007;-0.2978732;-0.006384661,-0.09222686;-0.5911754;0.05655105,-0.08974557;-0.6178579;-0.007586636,-0.005039095;0.3989565;0.02760699,67.18505
-0;0;0,0.0008143946;0.1995625;0.01319659,0.002285891;0.4994249;0.02032844,0.1079665;0.3770701;-0.03063406,0.2057318;0.279375;-0.1751942,0.2529716;0.3593996;-0.4072813,-0.1105153;0.3594051;0.006457038,-0.1621761;0.1667035;0.02050297,-0.183912;-0.08030365;-0.01135594,0.0667014;0.005561981;-0.04381764,0.102731;-0.2903416;-0.0100101,0.09227811;-0.5824484;0.05755023,0.1051575;-0.6120152;-0.001637883,-0.07448525;0.002503822;-0.02908055,-0.09039548;-0.2964801;-0.0102256,-0.08271924;-0.5900931;0.0508681,-0.09576947;-0.5574992;-0.04673681,0.001738012;0.3994266;0.02050984,0;0;0,-0.002078343;0.1992513;0.01716357,-0.00664598;0.4989349;0.02893159,0.1026409;0.3773002;-0.02072539,0.2499742;0.3053948;-0.135279,0.3931325;0.3817162;-0.3254913,-0.1172782;0.3616917;0.007266907,-0.1634646;0.1672463;0.0148679,-0.1887553;-0.08132535;0.006350723,0.06696258;0.007293595;-0.04316036,0.09291451;-0.2886293;-0.001254037,0.08301803;-0.5810468;0.06503408,0.09992424;-0.6086702;0.004298761,-0.07352775;0.0002395601;-0.03152162,-0.09582007;-0.2978732;-0.006384661,-0.09222686;-0.5911754;0.05655105,-0.08974557;-0.6178579;-0.007586636,-0.005039095;0.3989565;0.02760699,67.19625
-0;0;0,0.0008143946;0.1995625;0.01319659,0.002285891;0.4994249;0.02032844,0.1079665;0.3770701;-0.03063406,0.2057318;0.279375;-0.1751942,0.2529716;0.3593996;-0.4072813,-0.1105153;0.3594051;0.006457038,-0.1621761;0.1667035;0.02050297,-0.183912;-0.08030365;-0.01135594,0.0667014;0.005561981;-0.04381764,0.102731;-0.2903416;-0.0100101,0.09227811;-0.5824484;0.05755023,0.1051575;-0.6120152;-0.001637883,-0.07448525;0.002503822;-0.02908055,-0.09039548;-0.2964801;-0.0102256,-0.08271924;-0.5900931;0.0508681,-0.09576947;-0.5574992;-0.04673681,0.001738012;0.3994266;0.02050984,0;0;0,-0.002215046;0.1992504;0.01715692,-0.00687724;0.498931;0.02896441,0.1026798;0.3774246;-0.02020707,0.2533588;0.3059549;-0.130606,0.3983451;0.3824495;-0.3193586,-0.1172705;0.3615707;0.006321182,-0.1631807;0.1670729;0.01424851,-0.1887076;-0.0814486;0.005004821,0.067159;0.007289764;-0.04285472,0.0929236;-0.2886733;-0.001116581,0.08316094;-0.5811644;0.06486539,0.09983873;-0.6094237;0.004887607,-0.07323771;0.000374141;-0.03218846,-0.09565546;-0.2976524;-0.006157359,-0.09192707;-0.5910963;0.05610655,-0.08940453;-0.617178;-0.008741036,-0.005249381;0.3989533;0.02762403,67.21864
-0;0;0,0.0007371533;0.199562;0.01320815,0.00202384;0.4994255;0.02032792,0.1078652;0.3770512;-0.03042676,0.2065767;0.2862554;-0.1787917,0.2556314;0.3596414;-0.4126894,-0.110745;0.3594672;0.00658113,-0.1622345;0.1667083;0.02046756,-0.1741428;-0.08171463;-0.004914658,0.06668583;0.005599023;-0.04383664,0.1026936;-0.2903194;-0.01013565,0.09219307;-0.5824041;0.05751241,0.1053187;-0.611816;-0.001829606,-0.0744838;0.002469543;-0.0290872,-0.09076685;-0.296486;-0.01010107,-0.08242637;-0.5900084;0.05134021,-0.0954341;-0.5574129;-0.04627067,0.001544858;0.3994268;0.02051745,0;0;0,-0.002215046;0.1992504;0.01715692,-0.00687724;0.498931;0.02896441,0.1026798;0.3774246;-0.02020707,0.2533588;0.3059549;-0.130606,0.3983451;0.3824495;-0.3193586,-0.1172705;0.3615707;0.006321182,-0.1631807;0.1670729;0.01424851,-0.1887076;-0.0814486;0.005004821,0.067159;0.007289764;-0.04285472,0.0929236;-0.2886733;-0.001116581,0.08316094;-0.5811644;0.06486539,0.09983873;-0.6094237;0.004887607,-0.07323771;0.000374141;-0.03218846,-0.09565546;-0.2976524;-0.006157359,-0.09192707;-0.5910963;0.05610655,-0.08940453;-0.617178;-0.008741036,-0.005249381;0.3989533;0.02762403,67.22958
-0;0;0,0.0007371533;0.199562;0.01320815,0.00202384;0.4994255;0.02032792,0.1078652;0.3770512;-0.03042676,0.2065767;0.2862554;-0.1787917,0.2556314;0.3596414;-0.4126894,-0.110745;0.3594672;0.00658113,-0.1622345;0.1667083;0.02046756,-0.1741428;-0.08171463;-0.004914658,0.06668583;0.005599023;-0.04383664,0.1026936;-0.2903194;-0.01013565,0.09219307;-0.5824041;0.05751241,0.1053187;-0.611816;-0.001829606,-0.0744838;0.002469543;-0.0290872,-0.09076685;-0.296486;-0.01010107,-0.08242637;-0.5900084;0.05134021,-0.0954341;-0.5574129;-0.04627067,0.001544858;0.3994268;0.02051745,0;0;0,-0.002215046;0.1992504;0.01715692,-0.00687724;0.498931;0.02896441,0.1026798;0.3774246;-0.02020707,0.2533588;0.3059549;-0.130606,0.3983451;0.3824495;-0.3193586,-0.1172705;0.3615707;0.006321182,-0.1631807;0.1670729;0.01424851,-0.1887076;-0.0814486;0.005004821,0.067159;0.007289764;-0.04285472,0.0929236;-0.2886733;-0.001116581,0.08316094;-0.5811644;0.06486539,0.09983873;-0.6094237;0.004887607,-0.07323771;0.000374141;-0.03218846,-0.09565546;-0.2976524;-0.006157359,-0.09192707;-0.5910963;0.05610655,-0.08940453;-0.617178;-0.008741036,-0.005249381;0.3989533;0.02762403,67.24101
-0;0;0,0.0007371533;0.199562;0.01320815,0.00202384;0.4994255;0.02032792,0.1078652;0.3770512;-0.03042676,0.2065767;0.2862554;-0.1787917,0.2556314;0.3596414;-0.4126894,-0.110745;0.3594672;0.00658113,-0.1622345;0.1667083;0.02046756,-0.1741428;-0.08171463;-0.004914658,0.06668583;0.005599023;-0.04383664,0.1026936;-0.2903194;-0.01013565,0.09219307;-0.5824041;0.05751241,0.1053187;-0.611816;-0.001829606,-0.0744838;0.002469543;-0.0290872,-0.09076685;-0.296486;-0.01010107,-0.08242637;-0.5900084;0.05134021,-0.0954341;-0.5574129;-0.04627067,0.001544858;0.3994268;0.02051745,0;0;0,-0.002445353;0.1992543;0.01708107,-0.007253041;0.4989322;0.02889882,0.1027082;0.3776293;-0.01951722,0.255143;0.3062619;-0.1275465,0.4049994;0.3837821;-0.3120287,-0.117524;0.3616286;0.005678598,-0.1634722;0.1671593;0.01407311,-0.1886581;-0.08136125;0.003914706,0.06738523;0.007220702;-0.04250989,0.0930144;-0.2887645;-0.000845816,0.08327857;-0.5812519;0.06515671,0.09994159;-0.6093305;0.004939739,-0.07299025;0.0006200661;-0.03274201,-0.09544976;-0.297404;-0.006717943,-0.09199926;-0.5907485;0.05602798,-0.0890938;-0.6178324;-0.007608786,-0.005594613;0.398955;0.02755415,67.25257
-0;0;0,0.0007300185;0.1995613;0.01321949,0.002004146;0.4994245;0.02034904,0.1078635;0.3770791;-0.03039057,0.2064478;0.2867262;-0.1791101,0.2578171;0.3604044;-0.4124183,-0.110741;0.3594075;0.006607202,-0.1622071;0.1666452;0.02053282,-0.1740532;-0.08175665;-0.005084021,0.06668802;0.005608504;-0.0438321,0.1026372;-0.2903225;-0.01017959,0.09225024;-0.5824262;0.05740407,0.1052751;-0.6120795;-0.001635738,-0.07447739;0.002447161;-0.02910549,-0.09080793;-0.2965061;-0.01012436,-0.08240452;-0.5900812;0.05105625,-0.09540334;-0.5574871;-0.04655556,0.001528829;0.3994258;0.02053638,0;0;0,-0.002445353;0.1992543;0.01708107,-0.007253041;0.4989322;0.02889882,0.1027082;0.3776293;-0.01951722,0.255143;0.3062619;-0.1275465,0.4049994;0.3837821;-0.3120287,-0.117524;0.3616286;0.005678598,-0.1634722;0.1671593;0.01407311,-0.1886581;-0.08136125;0.003914706,0.06738523;0.007220702;-0.04250989,0.0930144;-0.2887645;-0.000845816,0.08327857;-0.5812519;0.06515671,0.09994159;-0.6093305;0.004939739,-0.07299025;0.0006200661;-0.03274201,-0.09544976;-0.297404;-0.006717943,-0.09199926;-0.5907485;0.05602798,-0.0890938;-0.6178324;-0.007608786,-0.005594613;0.398955;0.02755415,67.27431
-0;0;0,0.0007300185;0.1995613;0.01321949,0.002004146;0.4994245;0.02034904,0.1078635;0.3770791;-0.03039057,0.2064478;0.2867262;-0.1791101,0.2578171;0.3604044;-0.4124183,-0.110741;0.3594075;0.006607202,-0.1622071;0.1666452;0.02053282,-0.1740532;-0.08175665;-0.005084021,0.06668802;0.005608504;-0.0438321,0.1026372;-0.2903225;-0.01017959,0.09225024;-0.5824262;0.05740407,0.1052751;-0.6120795;-0.001635738,-0.07447739;0.002447161;-0.02910549,-0.09080793;-0.2965061;-0.01012436,-0.08240452;-0.5900812;0.05105625,-0.09540334;-0.5574871;-0.04655556,0.001528829;0.3994258;0.02053638,0;0;0,-0.002445353;0.1992543;0.01708107,-0.007253041;0.4989322;0.02889882,0.1027082;0.3776293;-0.01951722,0.255143;0.3062619;-0.1275465,0.4049994;0.3837821;-0.3120287,-0.117524;0.3616286;0.005678598,-0.1634722;0.1671593;0.01407311,-0.1886581;-0.08136125;0.003914706,0.06738523;0.007220702;-0.04250989,0.0930144;-0.2887645;-0.000845816,0.08327857;-0.5812519;0.06515671,0.09994159;-0.6093305;0.004939739,-0.07299025;0.0006200661;-0.03274201,-0.09544976;-0.297404;-0.006717943,-0.09199926;-0.5907485;0.05602798,-0.0890938;-0.6178324;-0.007608786,-0.005594613;0.398955;0.02755415,67.28539
-0;0;0,0.0007481872;0.1995642;0.01317533,0.002077625;0.4994299;0.02018634,0.1078933;0.3771053;-0.03057022,0.2065005;0.2869319;-0.1793835,0.260117;0.3629931;-0.4114179,-0.1106341;0.3593094;0.006351139,-0.1621256;0.1665564;0.0203124,-0.1744536;-0.08179583;-0.005555892,0.06672692;0.005603153;-0.04377354,0.102692;-0.2903638;-0.01045601,0.09217762;-0.5824156;0.05733193,0.1060041;-0.6111571;-0.00273966,-0.07444175;0.002451357;-0.02919617,-0.091064;-0.296478;-0.01009266,-0.08218105;-0.5901345;0.05062777,-0.09517075;-0.5575414;-0.04698506,0.001581973;0.3994313;0.0204145,0;0;0,-0.002514176;0.1992443;0.01718675,-0.007377531;0.4989123;0.02928831,0.1027169;0.3776406;-0.01902912,0.2573366;0.306785;-0.1242538,0.4132015;0.3855523;-0.3031444,-0.1173789;0.3616522;0.004603846,-0.1635398;0.1672303;0.01292894,-0.1889069;-0.0812262;0.001708431,0.0675412;0.007185834;-0.04226761,0.09301361;-0.2888258;-0.000694748,0.08328414;-0.5813136;0.0653066,0.1000956;-0.6092988;0.005009979,-0.07283456;0.0007003889;-0.03308528,-0.09553529;-0.2972801;-0.0067736,-0.09186404;-0.5905486;0.05631475,-0.08894921;-0.6172098;-0.007830173,-0.005700205;0.3989376;0.02779143,67.30772
-0;0;0,0.0007481872;0.1995642;0.01317533,0.002077625;0.4994299;0.02018634,0.1078933;0.3771053;-0.03057022,0.2065005;0.2869319;-0.1793835,0.260117;0.3629931;-0.4114179,-0.1106341;0.3593094;0.006351139,-0.1621256;0.1665564;0.0203124,-0.1744536;-0.08179583;-0.005555892,0.06672692;0.005603153;-0.04377354,0.102692;-0.2903638;-0.01045601,0.09217762;-0.5824156;0.05733193,0.1060041;-0.6111571;-0.00273966,-0.07444175;0.002451357;-0.02919617,-0.091064;-0.296478;-0.01009266,-0.08218105;-0.5901345;0.05062777,-0.09517075;-0.5575414;-0.04698506,0.001581973;0.3994313;0.0204145,0;0;0,-0.002514176;0.1992443;0.01718675,-0.007377531;0.4989123;0.02928831,0.1027169;0.3776406;-0.01902912,0.2573366;0.306785;-0.1242538,0.4132015;0.3855523;-0.3031444,-0.1173789;0.3616522;0.004603846,-0.1635398;0.1672303;0.01292894,-0.1889069;-0.0812262;0.001708431,0.0675412;0.007185834;-0.04226761,0.09301361;-0.2888258;-0.000694748,0.08328414;-0.5813136;0.0653066,0.1000956;-0.6092988;0.005009979,-0.07283456;0.0007003889;-0.03308528,-0.09553529;-0.2972801;-0.0067736,-0.09186404;-0.5905486;0.05631475,-0.08894921;-0.6172098;-0.007830173,-0.005700205;0.3989376;0.02779143,67.31895
-0;0;0,0.0007365512;0.1995641;0.01317695,0.002047017;0.4994299;0.02018668,0.107897;0.3771529;-0.03053168,0.2072596;0.2852589;-0.1777817,0.2610162;0.3643838;-0.4087568,-0.1106572;0.3593116;0.006340598,-0.1622346;0.1665764;0.0202293,-0.1857563;-0.08001578;-0.0135201,0.06673108;0.005621901;-0.04376478,0.1026108;-0.2903623;-0.01050822,0.09223495;-0.5824438;0.0571732,0.1061514;-0.611445;-0.002535518,-0.0744352;0.002441487;-0.02921369,-0.09139197;-0.2964475;-0.009776119,-0.08215583;-0.5901806;0.05051971,-0.09513014;-0.5575864;-0.04709538,0.001558145;0.3994313;0.02041642,0;0;0,-0.002514176;0.1992443;0.01718675,-0.007377531;0.4989123;0.02928831,0.1027169;0.3776406;-0.01902912,0.2573366;0.306785;-0.1242538,0.4132015;0.3855523;-0.3031444,-0.1173789;0.3616522;0.004603846,-0.1635398;0.1672303;0.01292894,-0.1889069;-0.0812262;0.001708431,0.0675412;0.007185834;-0.04226761,0.09301361;-0.2888258;-0.000694748,0.08328414;-0.5813136;0.0653066,0.1000956;-0.6092988;0.005009979,-0.07283456;0.0007003889;-0.03308528,-0.09553529;-0.2972801;-0.0067736,-0.09186404;-0.5905486;0.05631475,-0.08894921;-0.6172098;-0.007830173,-0.005700205;0.3989376;0.02779143,67.34127
-0;0;0,0.0007365512;0.1995641;0.01317695,0.002047017;0.4994299;0.02018668,0.107897;0.3771529;-0.03053168,0.2072596;0.2852589;-0.1777817,0.2610162;0.3643838;-0.4087568,-0.1106572;0.3593116;0.006340598,-0.1622346;0.1665764;0.0202293,-0.1857563;-0.08001578;-0.0135201,0.06673108;0.005621901;-0.04376478,0.1026108;-0.2903623;-0.01050822,0.09223495;-0.5824438;0.0571732,0.1061514;-0.611445;-0.002535518,-0.0744352;0.002441487;-0.02921369,-0.09139197;-0.2964475;-0.009776119,-0.08215583;-0.5901806;0.05051971,-0.09513014;-0.5575864;-0.04709538,0.001558145;0.3994313;0.02041642,0;0;0,-0.002577832;0.1992496;0.01711544,-0.007549934;0.4989226;0.02903482,0.1028762;0.3776127;-0.01849588,0.260123;0.3069956;-0.119919,0.4218482;0.3884132;-0.2923027,-0.117287;0.3613823;0.003775671,-0.1635274;0.1669867;0.0122717,-0.1887261;-0.08146778;0.0006362703,0.06770656;0.007141542;-0.04200977,0.09307775;-0.2889047;-0.0006220192,0.08337633;-0.5813855;0.06541489,0.1001335;-0.6092799;0.004986003,-0.07277202;0.0007228675;-0.03322214,-0.0955609;-0.2972915;-0.007374568,-0.09209179;-0.5904336;0.05631001,-0.08954583;-0.6169371;-0.008038528,-0.005838757;0.3989474;0.02761157,67.35273
-0;0;0,0.0007043766;0.1995619;0.01321163,0.00196569;0.499427;0.02025618,0.107813;0.3770443;-0.03046358,0.2073901;0.2854738;-0.1777701,0.2643898;0.3656642;-0.4075973,-0.1107814;0.3593981;0.00661232,-0.16212;0.16658;0.02023309,-0.1856551;-0.07998706;-0.01369015,0.06669551;0.005616714;-0.04381965,0.102471;-0.2903534;-0.0103261,0.09214869;-0.5824701;0.05721136,0.1061551;-0.6113877;-0.002586931,-0.07448132;0.002447373;-0.02909541,-0.09164833;-0.2964299;-0.009661702,-0.08217814;-0.5901943;0.05044509,-0.09520392;-0.5575975;-0.04716361,0.001492267;0.3994284;0.02047624,0;0;0,-0.002577832;0.1992496;0.01711544,-0.007549934;0.4989226;0.02903482,0.1028762;0.3776127;-0.01849588,0.260123;0.3069956;-0.119919,0.4218482;0.3884132;-0.2923027,-0.117287;0.3613823;0.003775671,-0.1635274;0.1669867;0.0122717,-0.1887261;-0.08146778;0.0006362703,0.06770656;0.007141542;-0.04200977,0.09307775;-0.2889047;-0.0006220192,0.08337633;-0.5813855;0.06541489,0.1001335;-0.6092799;0.004986003,-0.07277202;0.0007228675;-0.03322214,-0.0955609;-0.2972915;-0.007374568,-0.09209179;-0.5904336;0.05631001,-0.08954583;-0.6169371;-0.008038528,-0.005838757;0.3989474;0.02761157,67.37479
-0;0;0,0.0006770209;0.1995602;0.01323905,0.00186592;0.499424;0.02035907,0.1077283;0.3769974;-0.03039696,0.207794;0.2859405;-0.1776908,0.2675392;0.3665431;-0.406675,-0.1108435;0.3593778;0.006661329,-0.1621869;0.1665592;0.02025786,-0.1765535;-0.08185394;-0.003918348,0.06673142;0.005637502;-0.04376227,0.1024198;-0.2903504;-0.01033345,0.09203297;-0.5824976;0.05706201,0.1061715;-0.6116769;-0.002358012,-0.07445036;0.002449249;-0.02917438,-0.09179528;-0.2964148;-0.00969441,-0.08235665;-0.5902196;0.05021942,-0.09538066;-0.5576194;-0.04739013,0.001420828;0.3994251;0.02055119,0;0;0,-0.002577832;0.1992496;0.01711544,-0.007549934;0.4989226;0.02903482,0.1028762;0.3776127;-0.01849588,0.260123;0.3069956;-0.119919,0.4218482;0.3884132;-0.2923027,-0.117287;0.3613823;0.003775671,-0.1635274;0.1669867;0.0122717,-0.1887261;-0.08146778;0.0006362703,0.06770656;0.007141542;-0.04200977,0.09307775;-0.2889047;-0.0006220192,0.08337633;-0.5813855;0.06541489,0.1001335;-0.6092799;0.004986003,-0.07277202;0.0007228675;-0.03322214,-0.0955609;-0.2972915;-0.007374568,-0.09209179;-0.5904336;0.05631001,-0.08954583;-0.6169371;-0.008038528,-0.005838757;0.3989474;0.02761157,67.39729
-0;0;0,0.0006770209;0.1995602;0.01323905,0.00186592;0.499424;0.02035907,0.1077283;0.3769974;-0.03039696,0.207794;0.2859405;-0.1776908,0.2675392;0.3665431;-0.406675,-0.1108435;0.3593778;0.006661329,-0.1621869;0.1665592;0.02025786,-0.1765535;-0.08185394;-0.003918348,0.06673142;0.005637502;-0.04376227,0.1024198;-0.2903504;-0.01033345,0.09203297;-0.5824976;0.05706201,0.1061715;-0.6116769;-0.002358012,-0.07445036;0.002449249;-0.02917438,-0.09179528;-0.2964148;-0.00969441,-0.08235665;-0.5902196;0.05021942,-0.09538066;-0.5576194;-0.04739013,0.001420828;0.3994251;0.02055119,0;0;0,-0.002670181;0.1992576;0.01700867,-0.007669962;0.498935;0.02878975,0.1030529;0.3776114;-0.01795902,0.2628753;0.3085157;-0.1163592,0.427587;0.3899904;-0.2858641,-0.1174877;0.3617359;0.00341839,-0.1632507;0.1672106;0.01152035,-0.1888548;-0.08118607;-0.000459698,0.06784812;0.00708542;-0.04179031,0.09310504;-0.2889663;-0.0003718622,0.08336388;-0.5813528;0.06607535,0.1002442;-0.6084898;0.004716162,-0.07262209;0.0008632367;-0.03354528,-0.09523243;-0.2971443;-0.007462883,-0.09202917;-0.5902119;0.056577,-0.09041018;-0.6161206;-0.008501753,-0.005962077;0.3989588;0.02742841,67.41957
-0;0;0,0.0005595775;0.1995528;0.01335558,0.001471163;0.4994096;0.02082859,0.1073827;0.3770173;-0.0301798,0.2080937;0.2865518;-0.1773983,0.2702903;0.3671542;-0.4057288,-0.1110755;0.3592706;0.006740431,-0.1623508;0.1664302;0.02028428,-0.1820665;-0.08049189;-0.01349105,0.06675348;0.005638784;-0.04372844,0.1025862;-0.2903344;-0.01032316,0.09218695;-0.582485;0.05705551,0.1063452;-0.6116645;-0.002359476,-0.07441344;0.002472064;-0.0292665,-0.09162928;-0.2964224;-0.01014224,-0.08247809;-0.5901902;0.0499972,-0.08195364;-0.6192621;-0.01121841,0.001124;0.3994102;0.02088541,0;0;0,-0.002670181;0.1992576;0.01700867,-0.007669962;0.498935;0.02878975,0.1030529;0.3776114;-0.01795902,0.2628753;0.3085157;-0.1163592,0.427587;0.3899904;-0.2858641,-0.1174877;0.3617359;0.00341839,-0.1632507;0.1672106;0.01152035,-0.1888548;-0.08118607;-0.000459698,0.06784812;0.00708542;-0.04179031,0.09310504;-0.2889663;-0.0003718622,0.08336388;-0.5813528;0.06607535,0.1002442;-0.6084898;0.004716162,-0.07262209;0.0008632367;-0.03354528,-0.09523243;-0.2971443;-0.007462883,-0.09202917;-0.5902119;0.056577,-0.09041018;-0.6161206;-0.008501753,-0.005962077;0.3989588;0.02742841,67.43098
-0;0;0,0.0005595775;0.1995528;0.01335558,0.001471163;0.4994096;0.02082859,0.1073827;0.3770173;-0.0301798,0.2080937;0.2865518;-0.1773983,0.2702903;0.3671542;-0.4057288,-0.1110755;0.3592706;0.006740431,-0.1623508;0.1664302;0.02028428,-0.1820665;-0.08049189;-0.01349105,0.06675348;0.005638784;-0.04372844,0.1025862;-0.2903344;-0.01032316,0.09218695;-0.582485;0.05705551,0.1063452;-0.6116645;-0.002359476,-0.07441344;0.002472064;-0.0292665,-0.09162928;-0.2964224;-0.01014224,-0.08247809;-0.5901902;0.0499972,-0.08195364;-0.6192621;-0.01121841,0.001124;0.3994102;0.02088541,0;0;0,-0.002670181;0.1992576;0.01700867,-0.007669962;0.498935;0.02878975,0.1030529;0.3776114;-0.01795902,0.2628753;0.3085157;-0.1163592,0.427587;0.3899904;-0.2858641,-0.1174877;0.3617359;0.00341839,-0.1632507;0.1672106;0.01152035,-0.1888548;-0.08118607;-0.000459698,0.06784812;0.00708542;-0.04179031,0.09310504;-0.2889663;-0.0003718622,0.08336388;-0.5813528;0.06607535,0.1002442;-0.6084898;0.004716162,-0.07262209;0.0008632367;-0.03354528,-0.09523243;-0.2971443;-0.007462883,-0.09202917;-0.5902119;0.056577,-0.09041018;-0.6161206;-0.008501753,-0.005962077;0.3989588;0.02742841,67.45286
-0;0;0,0.0005715862;0.1995523;0.01336189,0.001493531;0.4994091;0.02083279,0.1074192;0.3770324;-0.0301498,0.2089208;0.2867243;-0.1769213,0.2748286;0.367506;-0.4041447,-0.1111065;0.359418;0.006740078,-0.1623189;0.1665636;0.02032107,-0.1820009;-0.08035879;-0.01347202,0.06677601;0.005673539;-0.04368953,0.10261;-0.2903091;-0.01037008,0.09224763;-0.582452;0.05704788,0.1064187;-0.61044;-0.003919758,-0.07439083;0.002465897;-0.02932444,-0.09163344;-0.2964197;-0.01008667,-0.08232494;-0.5901793;0.0500688,-0.08177996;-0.6198615;-0.0103501,0.001145148;0.3994098;0.02089024,0;0;0,-0.002761788;0.1992823;0.01670153,-0.007771275;0.4989833;0.02781929,0.1034556;0.3778606;-0.0175067,0.265569;0.3081188;-0.1116094,0.4333385;0.3918996;-0.2769399,-0.1177421;0.3618611;0.003248287,-0.1633646;0.1672831;0.01086313,-0.1890832;-0.08105819;-0.001988519,0.06801014;0.007050486;-0.04153206,0.09291508;-0.2890349;-0.0001415573,0.08271447;-0.5812825;0.06684595,0.1009173;-0.6079201;0.005239729,-0.07252596;0.0009228654;-0.03375103,-0.09523279;-0.2970577;-0.007444937,-0.09232163;-0.5900618;0.05689881,-0.08960401;-0.6175596;-0.006241534,-0.006075127;0.3990037;0.02671982,67.46424
-0;0;0,0.0005715862;0.1995523;0.01336189,0.001493531;0.4994091;0.02083279,0.1074192;0.3770324;-0.0301498,0.2089208;0.2867243;-0.1769213,0.2748286;0.367506;-0.4041447,-0.1111065;0.359418;0.006740078,-0.1623189;0.1665636;0.02032107,-0.1820009;-0.08035879;-0.01347202,0.06677601;0.005673539;-0.04368953,0.10261;-0.2903091;-0.01037008,0.09224763;-0.582452;0.05704788,0.1064187;-0.61044;-0.003919758,-0.07439083;0.002465897;-0.02932444,-0.09163344;-0.2964197;-0.01008667,-0.08232494;-0.5901793;0.0500688,-0.08177996;-0.6198615;-0.0103501,0.001145148;0.3994098;0.02089024,0;0;0,-0.002761788;0.1992823;0.01670153,-0.007771275;0.4989833;0.02781929,0.1034556;0.3778606;-0.0175067,0.265569;0.3081188;-0.1116094,0.4333385;0.3918996;-0.2769399,-0.1177421;0.3618611;0.003248287,-0.1633646;0.1672831;0.01086313,-0.1890832;-0.08105819;-0.001988519,0.06801014;0.007050486;-0.04153206,0.09291508;-0.2890349;-0.0001415573,0.08271447;-0.5812825;0.06684595,0.1009173;-0.6079201;0.005239729,-0.07252596;0.0009228654;-0.03375103,-0.09523279;-0.2970577;-0.007444937,-0.09232163;-0.5900618;0.05689881,-0.08960401;-0.6175596;-0.006241534,-0.006075127;0.3990037;0.02671982,67.47583
-0;0;0,0.0005458805;0.1995529;0.01335505,0.001425731;0.49941;0.02081003,0.1073949;0.377086;-0.03013369,0.2097024;0.2870009;-0.1764821,0.2790312;0.3672765;-0.4028652,-0.1111776;0.3594789;0.006730434,-0.1623351;0.1666071;0.02027248,-0.1824591;-0.08031128;-0.01328845,0.06678002;0.005699054;-0.04368008,0.1025566;-0.2902966;-0.01041469,0.09206456;-0.5824329;0.05701183,0.1061592;-0.6102803;-0.004152782,-0.07438537;0.002439659;-0.02934049,-0.09151918;-0.2964646;-0.01029621,-0.08235662;-0.5901961;0.05001849,-0.08146504;-0.6200235;-0.01020422,0.00109583;0.3994106;0.02087722,0;0;0,-0.002761788;0.1992823;0.01670153,-0.007771275;0.4989833;0.02781929,0.1034556;0.3778606;-0.0175067,0.265569;0.3081188;-0.1116094,0.4333385;0.3918996;-0.2769399,-0.1177421;0.3618611;0.003248287,-0.1633646;0.1672831;0.01086313,-0.1890832;-0.08105819;-0.001988519,0.06801014;0.007050486;-0.04153206,0.09291508;-0.2890349;-0.0001415573,0.08271447;-0.5812825;0.06684595,0.1009173;-0.6079201;0.005239729,-0.07252596;0.0009228654;-0.03375103,-0.09523279;-0.2970577;-0.007444937,-0.09232163;-0.5900618;0.05689881,-0.08960401;-0.6175596;-0.006241534,-0.006075127;0.3990037;0.02671982,67.49772
-0;0;0,0.0005458805;0.1995529;0.01335505,0.001425731;0.49941;0.02081003,0.1073949;0.377086;-0.03013369,0.2097024;0.2870009;-0.1764821,0.2790312;0.3672765;-0.4028652,-0.1111776;0.3594789;0.006730434,-0.1623351;0.1666071;0.02027248,-0.1824591;-0.08031128;-0.01328845,0.06678002;0.005699054;-0.04368008,0.1025566;-0.2902966;-0.01041469,0.09206456;-0.5824329;0.05701183,0.1061592;-0.6102803;-0.004152782,-0.07438537;0.002439659;-0.02934049,-0.09151918;-0.2964646;-0.01029621,-0.08235662;-0.5901961;0.05001849,-0.08146504;-0.6200235;-0.01020422,0.00109583;0.3994106;0.02087722,0;0;0,-0.002728732;0.1992953;0.01655049,-0.007550001;0.4990084;0.0274114,0.1039292;0.3777573;-0.01691667,0.2679698;0.3088517;-0.1082552,0.4406581;0.3932236;-0.2681307,-0.1175942;0.3620141;0.002688816,-0.1627978;0.1673135;0.009637782,-0.1892249;-0.0809503;-0.003272976,0.0681918;0.007039522;-0.04123496,0.09297172;-0.2890877;-6.880611E-05,0.08274905;-0.5813396;0.06689618,0.100924;-0.6080085;0.005320635,-0.07232125;0.001009561;-0.03418505,-0.0950492;-0.2969327;-0.007466219,-0.09231854;-0.5899571;0.05679276,-0.0895593;-0.6174985;-0.006292231,-0.00593654;0.3990265;0.02640919,67.5095
-0;0;0,0.0004986894;0.1995496;0.01340525,0.001315729;0.4994054;0.02092233,0.1073673;0.3770784;-0.02990307,0.2108226;0.2877221;-0.175891,0.2824895;0.3672761;-0.4018002,-0.1113487;0.3596822;0.006858503,-0.1624144;0.1667833;0.02035997,-0.1828218;-0.08017018;-0.0127691,0.0667681;0.005678105;-0.04370102,0.1026357;-0.2903005;-0.01038191,0.09216899;-0.5824035;0.05719217,0.1062176;-0.6098853;-0.004445598,-0.07439515;0.002461427;-0.02931386,-0.0915651;-0.2964372;-0.01021372,-0.08233301;-0.5901488;0.05018706,-0.09529991;-0.5575359;-0.04743235,0.001002915;0.3994059;0.02097038,0;0;0,-0.002728732;0.1992953;0.01655049,-0.007550001;0.4990084;0.0274114,0.1039292;0.3777573;-0.01691667,0.2679698;0.3088517;-0.1082552,0.4406581;0.3932236;-0.2681307,-0.1175942;0.3620141;0.002688816,-0.1627978;0.1673135;0.009637782,-0.1892249;-0.0809503;-0.003272976,0.0681918;0.007039522;-0.04123496,0.09297172;-0.2890877;-6.880611E-05,0.08274905;-0.5813396;0.06689618,0.100924;-0.6080085;0.005320635,-0.07232125;0.001009561;-0.03418505,-0.0950492;-0.2969327;-0.007466219,-0.09231854;-0.5899571;0.05679276,-0.0895593;-0.6174985;-0.006292231,-0.00593654;0.3990265;0.02640919,67.53133
-0;0;0,0.0004986894;0.1995496;0.01340525,0.001315729;0.4994054;0.02092233,0.1073673;0.3770784;-0.02990307,0.2108226;0.2877221;-0.175891,0.2824895;0.3672761;-0.4018002,-0.1113487;0.3596822;0.006858503,-0.1624144;0.1667833;0.02035997,-0.1828218;-0.08017018;-0.0127691,0.0667681;0.005678105;-0.04370102,0.1026357;-0.2903005;-0.01038191,0.09216899;-0.5824035;0.05719217,0.1062176;-0.6098853;-0.004445598,-0.07439515;0.002461427;-0.02931386,-0.0915651;-0.2964372;-0.01021372,-0.08233301;-0.5901488;0.05018706,-0.09529991;-0.5575359;-0.04743235,0.001002915;0.3994059;0.02097038,0;0;0,-0.002728732;0.1992953;0.01655049,-0.007550001;0.4990084;0.0274114,0.1039292;0.3777573;-0.01691667,0.2679698;0.3088517;-0.1082552,0.4406581;0.3932236;-0.2681307,-0.1175942;0.3620141;0.002688816,-0.1627978;0.1673135;0.009637782,-0.1892249;-0.0809503;-0.003272976,0.0681918;0.007039522;-0.04123496,0.09297172;-0.2890877;-6.880611E-05,0.08274905;-0.5813396;0.06689618,0.100924;-0.6080085;0.005320635,-0.07232125;0.001009561;-0.03418505,-0.0950492;-0.2969327;-0.007466219,-0.09231854;-0.5899571;0.05679276,-0.0895593;-0.6174985;-0.006292231,-0.00593654;0.3990265;0.02640919,67.55397
-0;0;0,0.0004692224;0.1995481;0.01342948,0.001266262;0.4994038;0.02094411,0.107343;0.3770321;-0.02981091,0.2120251;0.288299;-0.1753035,0.285017;0.3677356;-0.4008295,-0.1113765;0.3596357;0.006863132,-0.1624859;0.1667472;0.02034999,-0.182917;-0.08022262;-0.01264181,0.06680739;0.00570508;-0.04363743,0.1026929;-0.2902831;-0.01042305,0.09251095;-0.5824355;0.05698097,0.1063546;-0.6102604;-0.004269741,-0.07437664;0.002447856;-0.02936194,-0.09153634;-0.2964577;-0.01036166,-0.08227839;-0.5901327;0.05021325,-0.09521396;-0.5575178;-0.04741066,0.000956465;0.3994043;0.02099656,0;0;0,-0.002753997;0.1992958;0.01654071,-0.007551714;0.4990069;0.02746532,0.1042867;0.377804;-0.015952,0.2713314;0.3105944;-0.1030091,0.4511365;0.3935552;-0.255612,-0.117522;0.3622621;0.001941195,-0.1627229;0.1675751;0.009277996,-0.1895202;-0.08061706;-0.004234367,0.06837609;0.006930438;-0.04094728,0.09302692;-0.2892217;0.000116542,0.08291183;-0.5814973;0.06699458,0.1005954;-0.6080933;0.005185563,-0.07210418;0.001293119;-0.03463113,-0.0944946;-0.2966492;-0.007630093,-0.09218878;-0.5896527;0.05674118,-0.08931675;-0.6170462;-0.00652016,-0.005950793;0.3990249;0.02644335,67.5757
-0;0;0,0.0004692224;0.1995481;0.01342948,0.001266262;0.4994038;0.02094411,0.107343;0.3770321;-0.02981091,0.2120251;0.288299;-0.1753035,0.285017;0.3677356;-0.4008295,-0.1113765;0.3596357;0.006863132,-0.1624859;0.1667472;0.02034999,-0.182917;-0.08022262;-0.01264181,0.06680739;0.00570508;-0.04363743,0.1026929;-0.2902831;-0.01042305,0.09251095;-0.5824355;0.05698097,0.1063546;-0.6102604;-0.004269741,-0.07437664;0.002447856;-0.02936194,-0.09153634;-0.2964577;-0.01036166,-0.08227839;-0.5901327;0.05021325,-0.09521396;-0.5575178;-0.04741066,0.000956465;0.3994043;0.02099656,0;0;0,-0.002753997;0.1992958;0.01654071,-0.007551714;0.4990069;0.02746532,0.1042867;0.377804;-0.015952,0.2713314;0.3105944;-0.1030091,0.4511365;0.3935552;-0.255612,-0.117522;0.3622621;0.001941195,-0.1627229;0.1675751;0.009277996,-0.1895202;-0.08061706;-0.004234367,0.06837609;0.006930438;-0.04094728,0.09302692;-0.2892217;0.000116542,0.08291183;-0.5814973;0.06699458,0.1005954;-0.6080933;0.005185563,-0.07210418;0.001293119;-0.03463113,-0.0944946;-0.2966492;-0.007630093,-0.09218878;-0.5896527;0.05674118,-0.08931675;-0.6170462;-0.00652016,-0.005950793;0.3990249;0.02644335,67.58715
-0;0;0,0.0004545138;0.1995481;0.01343018,0.001231776;0.4994043;0.02091875,0.1073717;0.3770278;-0.02970108,0.2136875;0.2800688;-0.1686108,0.2845462;0.3678317;-0.3917177,-0.1113833;0.3595761;0.006845304,-0.1625627;0.1667063;0.02033266,-0.1827562;-0.0802784;-0.01269438,0.06682658;0.00572043;-0.04360601,0.1026096;-0.2902816;-0.01040405,0.09252016;-0.5824422;0.05697842,0.1063102;-0.6102332;-0.004327253,-0.07436565;0.002432312;-0.02939107,-0.09126754;-0.296511;-0.0107572,-0.08246883;-0.5901867;0.04988271,-0.09535639;-0.5575728;-0.04774738,0.0009277372;0.3994048;0.02098377,0;0;0,-0.002753997;0.1992958;0.01654071,-0.007551714;0.4990069;0.02746532,0.1042867;0.377804;-0.015952,0.2713314;0.3105944;-0.1030091,0.4511365;0.3935552;-0.255612,-0.117522;0.3622621;0.001941195,-0.1627229;0.1675751;0.009277996,-0.1895202;-0.08061706;-0.004234367,0.06837609;0.006930438;-0.04094728,0.09302692;-0.2892217;0.000116542,0.08291183;-0.5814973;0.06699458,0.1005954;-0.6080933;0.005185563,-0.07210418;0.001293119;-0.03463113,-0.0944946;-0.2966492;-0.007630093,-0.09218878;-0.5896527;0.05674118,-0.08931675;-0.6170462;-0.00652016,-0.005950793;0.3990249;0.02644335,67.60923
-0;0;0,0.0004545138;0.1995481;0.01343018,0.001231776;0.4994043;0.02091875,0.1073717;0.3770278;-0.02970108,0.2136875;0.2800688;-0.1686108,0.2845462;0.3678317;-0.3917177,-0.1113833;0.3595761;0.006845304,-0.1625627;0.1667063;0.02033266,-0.1827562;-0.0802784;-0.01269438,0.06682658;0.00572043;-0.04360601,0.1026096;-0.2902816;-0.01040405,0.09252016;-0.5824422;0.05697842,0.1063102;-0.6102332;-0.004327253,-0.07436565;0.002432312;-0.02939107,-0.09126754;-0.296511;-0.0107572,-0.08246883;-0.5901867;0.04988271,-0.09535639;-0.5575728;-0.04774738,0.0009277372;0.3994048;0.02098377,0;0;0,-0.002805518;0.199298;0.01650605,-0.007622849;0.4990077;0.02746093,0.1045234;0.3779728;-0.01524839,0.2735313;0.3123067;-0.099654,0.4563937;0.394129;-0.2492082,-0.1174689;0.3622274;0.001421683,-0.1626621;0.1675391;0.00877329,-0.1896199;-0.08061205;-0.005165654,0.06848643;0.006907357;-0.04076638,0.09311785;-0.2892591;0.0002062544,0.08308531;-0.5815843;0.06687932,0.1002508;-0.6086946;0.005565785,-0.07199065;0.001298864;-0.03486628,-0.09420602;-0.2966125;-0.007383717,-0.09198747;-0.5896354;0.05690207,-0.09040702;-0.6163557;-0.00721883,-0.006020878;0.3990259;0.02642567,67.62054
-0;0;0,0.0004365559;0.1995485;0.01342403,0.001144038;0.4994054;0.02088511,0.1073605;0.3769135;-0.02956843,0.2151146;0.2765734;-0.1649232,0.2864313;0.3675724;-0.3865831,-0.1114044;0.3595054;0.006728359,-0.1626558;0.1666612;0.02030814,-0.1826584;-0.08033752;-0.01273043,0.06692021;0.005667331;-0.04346913,0.1024647;-0.2903762;-0.01038127,0.09257855;-0.5825871;0.05681267,0.1064102;-0.6103332;-0.004540682,-0.07433793;0.002434512;-0.02946092,-0.0909228;-0.2965307;-0.01089391,-0.08232844;-0.590153;0.05003291,-0.09513286;-0.5575411;-0.04760778,0.0008687896;0.3994058;0.02096487,0;0;0,-0.002805518;0.199298;0.01650605,-0.007622849;0.4990077;0.02746093,0.1045234;0.3779728;-0.01524839,0.2735313;0.3123067;-0.099654,0.4563937;0.394129;-0.2492082,-0.1174689;0.3622274;0.001421683,-0.1626621;0.1675391;0.00877329,-0.1896199;-0.08061205;-0.005165654,0.06848643;0.006907357;-0.04076638,0.09311785;-0.2892591;0.0002062544,0.08308531;-0.5815843;0.06687932,0.1002508;-0.6086946;0.005565785,-0.07199065;0.001298864;-0.03486628,-0.09420602;-0.2966125;-0.007383717,-0.09198747;-0.5896354;0.05690207,-0.09040702;-0.6163557;-0.00721883,-0.006020878;0.3990259;0.02642567,67.64305
-0;0;0,0.0004365559;0.1995485;0.01342403,0.001144038;0.4994054;0.02088511,0.1073605;0.3769135;-0.02956843,0.2151146;0.2765734;-0.1649232,0.2864313;0.3675724;-0.3865831,-0.1114044;0.3595054;0.006728359,-0.1626558;0.1666612;0.02030814,-0.1826584;-0.08033752;-0.01273043,0.06692021;0.005667331;-0.04346913,0.1024647;-0.2903762;-0.01038127,0.09257855;-0.5825871;0.05681267,0.1064102;-0.6103332;-0.004540682,-0.07433793;0.002434512;-0.02946092,-0.0909228;-0.2965307;-0.01089391,-0.08232844;-0.590153;0.05003291,-0.09513286;-0.5575411;-0.04760778,0.0008687896;0.3994058;0.02096487,0;0;0,-0.002805518;0.199298;0.01650605,-0.007622849;0.4990077;0.02746093,0.1045234;0.3779728;-0.01524839,0.2735313;0.3123067;-0.099654,0.4563937;0.394129;-0.2492082,-0.1174689;0.3622274;0.001421683,-0.1626621;0.1675391;0.00877329,-0.1896199;-0.08061205;-0.005165654,0.06848643;0.006907357;-0.04076638,0.09311785;-0.2892591;0.0002062544,0.08308531;-0.5815843;0.06687932,0.1002508;-0.6086946;0.005565785,-0.07199065;0.001298864;-0.03486628,-0.09420602;-0.2966125;-0.007383717,-0.09198747;-0.5896354;0.05690207,-0.09040702;-0.6163557;-0.00721883,-0.006020878;0.3990259;0.02642567,67.65413
-0;0;0,0.0004206476;0.1995487;0.01342106,0.001126896;0.4994062;0.02085694,0.1073874;0.376886;-0.02947776,0.2152943;0.2758687;-0.1642057,0.2901001;0.3680958;-0.3842017,-0.1113158;0.3592526;0.006573395,-0.162586;0.1664155;0.02018308,-0.1824341;-0.08058926;-0.01290328,0.06693969;0.005674047;-0.04343827,0.102475;-0.2903723;-0.01036559,0.09269134;-0.5825765;0.05687263,0.1068404;-0.6099871;-0.004831456,-0.07432155;0.002414692;-0.02950382,-0.09082691;-0.296555;-0.01093845,-0.08219991;-0.5899831;0.05091266,-0.07993093;-0.6196318;-0.009510394,0.0008496416;0.3994067;0.0209458,0;0;0,-0.002863279;0.1993124;0.01632118,-0.007722732;0.4990309;0.0270119,0.1048625;0.3781506;-0.01452459,0.276133;0.3135937;-0.09513979,0.4658107;0.3977127;-0.2345902,-0.1175255;0.3623566;0.0007532127,-0.1629023;0.1677227;0.008406131,-0.1899651;-0.08039755;-0.005875221,0.06861629;0.006972157;-0.04053633,0.09306508;-0.2892277;0.0003040321,0.0831598;-0.5815627;0.06695327,0.1005344;-0.6091848;0.006348532,-0.07188828;0.001168374;-0.03508146,-0.09412734;-0.2967168;-0.007335359,-0.09199698;-0.5897149;0.05706629,-0.09058262;-0.6163781;-0.007126838,-0.006112548;0.3990483;0.0260689,67.66534
-0;0;0,0.0004206476;0.1995487;0.01342106,0.001126896;0.4994062;0.02085694,0.1073874;0.376886;-0.02947776,0.2152943;0.2758687;-0.1642057,0.2901001;0.3680958;-0.3842017,-0.1113158;0.3592526;0.006573395,-0.162586;0.1664155;0.02018308,-0.1824341;-0.08058926;-0.01290328,0.06693969;0.005674047;-0.04343827,0.102475;-0.2903723;-0.01036559,0.09269134;-0.5825765;0.05687263,0.1068404;-0.6099871;-0.004831456,-0.07432155;0.002414692;-0.02950382,-0.09082691;-0.296555;-0.01093845,-0.08219991;-0.5899831;0.05091266,-0.07993093;-0.6196318;-0.009510394,0.0008496416;0.3994067;0.0209458,0;0;0,-0.002863279;0.1993124;0.01632118,-0.007722732;0.4990309;0.0270119,0.1048625;0.3781506;-0.01452459,0.276133;0.3135937;-0.09513979,0.4658107;0.3977127;-0.2345902,-0.1175255;0.3623566;0.0007532127,-0.1629023;0.1677227;0.008406131,-0.1899651;-0.08039755;-0.005875221,0.06861629;0.006972157;-0.04053633,0.09306508;-0.2892277;0.0003040321,0.0831598;-0.5815627;0.06695327,0.1005344;-0.6091848;0.006348532,-0.07188828;0.001168374;-0.03508146,-0.09412734;-0.2967168;-0.007335359,-0.09199698;-0.5897149;0.05706629,-0.09058262;-0.6163781;-0.007126838,-0.006112548;0.3990483;0.0260689,67.67657
-0;0;0,0.0003971268;0.1995471;0.0134456,0.00104439;0.4994035;0.02093135,0.1073433;0.3769161;-0.02939481,0.2184121;0.2821801;-0.1661019,0.2941777;0.3686031;-0.3881168,-0.1112219;0.3589525;0.006248776,-0.1625851;0.1660849;0.01905245,-0.182224;-0.08110386;-0.01275952,0.06697682;0.00569727;-0.04337796,0.1025437;-0.2903491;-0.01033955,0.09278698;-0.5825862;0.05675973,0.1067156;-0.6102239;-0.004708771,-0.07429403;0.002394406;-0.02957472,-0.09082124;-0.2965741;-0.011008,-0.08202583;-0.5900472;0.05060507,-0.09464238;-0.5574254;-0.04706184,0.0007868919;0.3994039;0.0210039,0;0;0,-0.002863279;0.1993124;0.01632118,-0.007722732;0.4990309;0.0270119,0.1048625;0.3781506;-0.01452459,0.276133;0.3135937;-0.09513979,0.4658107;0.3977127;-0.2345902,-0.1175255;0.3623566;0.0007532127,-0.1629023;0.1677227;0.008406131,-0.1899651;-0.08039755;-0.005875221,0.06861629;0.006972157;-0.04053633,0.09306508;-0.2892277;0.0003040321,0.0831598;-0.5815627;0.06695327,0.1005344;-0.6091848;0.006348532,-0.07188828;0.001168374;-0.03508146,-0.09412734;-0.2967168;-0.007335359,-0.09199698;-0.5897149;0.05706629,-0.09058262;-0.6163781;-0.007126838,-0.006112548;0.3990483;0.0260689,67.69877
-0;0;0,0.0003971268;0.1995471;0.0134456,0.00104439;0.4994035;0.02093135,0.1073433;0.3769161;-0.02939481,0.2184121;0.2821801;-0.1661019,0.2941777;0.3686031;-0.3881168,-0.1112219;0.3589525;0.006248776,-0.1625851;0.1660849;0.01905245,-0.182224;-0.08110386;-0.01275952,0.06697682;0.00569727;-0.04337796,0.1025437;-0.2903491;-0.01033955,0.09278698;-0.5825862;0.05675973,0.1067156;-0.6102239;-0.004708771,-0.07429403;0.002394406;-0.02957472,-0.09082124;-0.2965741;-0.011008,-0.08202583;-0.5900472;0.05060507,-0.09464238;-0.5574254;-0.04706184,0.0007868919;0.3994039;0.0210039,0;0;0,-0.002934072;0.199331;0.01607921,-0.007904895;0.4990672;0.02618037,0.1051295;0.3784347;-0.01412722,0.2786352;0.3150204;-0.09077201,0.4706395;0.3994207;-0.226827,-0.1177707;0.3628985;-0.0001347419,-0.1634825;0.1683422;0.007501199,-0.1904648;-0.07980478;-0.006463602,0.06875067;0.006954575;-0.04031102,0.0930823;-0.2892942;0.0002436042,0.0831328;-0.5816615;0.06674457,0.1006483;-0.6091436;0.006001472,-0.07181931;0.00121358;-0.03522092,-0.0940935;-0.2966457;-0.007225521,-0.0919613;-0.5896177;0.05729436,-0.0897193;-0.6171845;-0.005779982,-0.006255459;0.3990834;0.02545835,67.71006
-0;0;0,0.0003828035;0.1995472;0.01344526,0.001000867;0.499404;0.02091221,0.1074076;0.3769358;-0.02920539,0.2198057;0.284828;-0.1666202,0.2979075;0.3698502;-0.3883663,-0.111215;0.3589076;0.006055027,-0.16263;0.1660622;0.01898264,-0.1830756;-0.08107951;-0.01268703,0.06702017;0.005749345;-0.04330405,0.1025968;-0.2903105;-0.01039721,0.09261557;-0.5825577;0.05662503,0.1066769;-0.6103847;-0.004573293,-0.07427008;0.002380057;-0.02963595,-0.09007411;-0.2966376;-0.01123269,-0.08211694;-0.590106;0.05051697,-0.09460101;-0.5574868;-0.04716647,0.0007530526;0.3994043;0.02099387,0;0;0,-0.002934072;0.199331;0.01607921,-0.007904895;0.4990672;0.02618037,0.1051295;0.3784347;-0.01412722,0.2786352;0.3150204;-0.09077201,0.4706395;0.3994207;-0.226827,-0.1177707;0.3628985;-0.0001347419,-0.1634825;0.1683422;0.007501199,-0.1904648;-0.07980478;-0.006463602,0.06875067;0.006954575;-0.04031102,0.0930823;-0.2892942;0.0002436042,0.0831328;-0.5816615;0.06674457,0.1006483;-0.6091436;0.006001472,-0.07181931;0.00121358;-0.03522092,-0.0940935;-0.2966457;-0.007225521,-0.0919613;-0.5896177;0.05729436,-0.0897193;-0.6171845;-0.005779982,-0.006255459;0.3990834;0.02545835,67.73206
-0;0;0,0.0003828035;0.1995472;0.01344526,0.001000867;0.499404;0.02091221,0.1074076;0.3769358;-0.02920539,0.2198057;0.284828;-0.1666202,0.2979075;0.3698502;-0.3883663,-0.111215;0.3589076;0.006055027,-0.16263;0.1660622;0.01898264,-0.1830756;-0.08107951;-0.01268703,0.06702017;0.005749345;-0.04330405,0.1025968;-0.2903105;-0.01039721,0.09261557;-0.5825577;0.05662503,0.1066769;-0.6103847;-0.004573293,-0.07427008;0.002380057;-0.02963595,-0.09007411;-0.2966376;-0.01123269,-0.08211694;-0.590106;0.05051697,-0.09460101;-0.5574868;-0.04716647,0.0007530526;0.3994043;0.02099387,0;0;0,-0.002934072;0.199331;0.01607921,-0.007904895;0.4990672;0.02618037,0.1051295;0.3784347;-0.01412722,0.2786352;0.3150204;-0.09077201,0.4706395;0.3994207;-0.226827,-0.1177707;0.3628985;-0.0001347419,-0.1634825;0.1683422;0.007501199,-0.1904648;-0.07980478;-0.006463602,0.06875067;0.006954575;-0.04031102,0.0930823;-0.2892942;0.0002436042,0.0831328;-0.5816615;0.06674457,0.1006483;-0.6091436;0.006001472,-0.07181931;0.00121358;-0.03522092,-0.0940935;-0.2966457;-0.007225521,-0.0919613;-0.5896177;0.05729436,-0.0897193;-0.6171845;-0.005779982,-0.006255459;0.3990834;0.02545835,67.74352
-0;0;0,0.0003828035;0.1995472;0.01344526,0.001000867;0.499404;0.02091221,0.1074076;0.3769358;-0.02920539,0.2198057;0.284828;-0.1666202,0.2979075;0.3698502;-0.3883663,-0.111215;0.3589076;0.006055027,-0.16263;0.1660622;0.01898264,-0.1830756;-0.08107951;-0.01268703,0.06702017;0.005749345;-0.04330405,0.1025968;-0.2903105;-0.01039721,0.09261557;-0.5825577;0.05662503,0.1066769;-0.6103847;-0.004573293,-0.07427008;0.002380057;-0.02963595,-0.09007411;-0.2966376;-0.01123269,-0.08211694;-0.590106;0.05051697,-0.09460101;-0.5574868;-0.04716647,0.0007530526;0.3994043;0.02099387,0;0;0,-0.002947631;0.1993469;0.0158791,-0.007881747;0.4990925;0.02571562,0.1055179;0.3788645;-0.01361992,0.2807898;0.3165994;-0.08712379,0.4760069;0.4000293;-0.2191455,-0.1175938;0.3629194;-0.001251066,-0.1633288;0.1683903;0.006920053,-0.1907483;-0.07969067;-0.007361849,0.06890338;0.006932051;-0.04005336,0.09315905;-0.2893745;0.0001225732,0.08314157;-0.5816854;0.06686063,0.1002049;-0.6084822;0.005126569,-0.07167868;0.001231997;-0.03550562,-0.09392507;-0.2966142;-0.007349603,-0.0917505;-0.5895167;0.05748387,-0.08987877;-0.6175381;-0.005039386,-0.006251822;0.3991078;0.02508082,67.75487
-0;0;0,0.0003264803;0.1995453;0.01347416,0.0007570346;0.4994008;0.02100827,0.1074302;0.377098;-0.02878822,0.2207933;0.2866717;-0.1665268,0.3015009;0.3709652;-0.387617,-0.1113799;0.3589827;0.005855552,-0.1628898;0.1661685;0.0188715,-0.1730223;-0.08213685;-0.008364465,0.06703769;0.005770137;-0.04327418,0.102586;-0.2902964;-0.01039673,0.0925725;-0.5825596;0.05655077,0.1070229;-0.6091297;-0.006124537,-0.07426216;0.0023699;-0.02965664,-0.09054618;-0.2966094;-0.01104949,-0.08205619;-0.5901147;0.0504528,-0.07997946;-0.6195746;-0.01022514,0.0005797576;0.399401;0.02106703,0;0;0,-0.002947631;0.1993469;0.0158791,-0.007881747;0.4990925;0.02571562,0.1055179;0.3788645;-0.01361992,0.2807898;0.3165994;-0.08712379,0.4760069;0.4000293;-0.2191455,-0.1175938;0.3629194;-0.001251066,-0.1633288;0.1683903;0.006920053,-0.1907483;-0.07969067;-0.007361849,0.06890338;0.006932051;-0.04005336,0.09315905;-0.2893745;0.0001225732,0.08314157;-0.5816854;0.06686063,0.1002049;-0.6084822;0.005126569,-0.07167868;0.001231997;-0.03550562,-0.09392507;-0.2966142;-0.007349603,-0.0917505;-0.5895167;0.05748387,-0.08987877;-0.6175381;-0.005039386,-0.006251822;0.3991078;0.02508082,67.77674
-0;0;0,0.0002899026;0.1995435;0.01350142,0.0006736661;0.4993981;0.02107388,0.1073942;0.3769996;-0.02861669,0.2223276;0.2875391;-0.1656828,0.3058578;0.3708571;-0.3860934,-0.1113899;0.3588986;0.005681004,-0.1630094;0.1661114;0.01866232,-0.1832319;-0.08050467;-0.0169963,0.06704758;0.005761911;-0.04325994,0.1025483;-0.290318;-0.01045133,0.09266582;-0.5826037;0.05641714,0.1070455;-0.6092479;-0.006183863,-0.07425358;0.002377342;-0.02967749,-0.09060951;-0.2965976;-0.01106353,-0.08197827;-0.5901582;0.05015475,-0.0941612;-0.5575327;-0.04756784,0.0005090953;0.3993982;0.02112133,0;0;0,-0.002947631;0.1993469;0.0158791,-0.007881747;0.4990925;0.02571562,0.1055179;0.3788645;-0.01361992,0.2807898;0.3165994;-0.08712379,0.4760069;0.4000293;-0.2191455,-0.1175938;0.3629194;-0.001251066,-0.1633288;0.1683903;0.006920053,-0.1907483;-0.07969067;-0.007361849,0.06890338;0.006932051;-0.04005336,0.09315905;-0.2893745;0.0001225732,0.08314157;-0.5816854;0.06686063,0.1002049;-0.6084822;0.005126569,-0.07167868;0.001231997;-0.03550562,-0.09392507;-0.2966142;-0.007349603,-0.0917505;-0.5895167;0.05748387,-0.08987877;-0.6175381;-0.005039386,-0.006251822;0.3991078;0.02508082,67.79893
-0;0;0,0.0002899026;0.1995435;0.01350142,0.0006736661;0.4993981;0.02107388,0.1073942;0.3769996;-0.02861669,0.2223276;0.2875391;-0.1656828,0.3058578;0.3708571;-0.3860934,-0.1113899;0.3588986;0.005681004,-0.1630094;0.1661114;0.01866232,-0.1832319;-0.08050467;-0.0169963,0.06704758;0.005761911;-0.04325994,0.1025483;-0.290318;-0.01045133,0.09266582;-0.5826037;0.05641714,0.1070455;-0.6092479;-0.006183863,-0.07425358;0.002377342;-0.02967749,-0.09060951;-0.2965976;-0.01106353,-0.08197827;-0.5901582;0.05015475,-0.0941612;-0.5575327;-0.04756784,0.0005090953;0.3993982;0.02112133,0;0;0,-0.003014111;0.199349;0.01583983,-0.00797729;0.4990935;0.02569947,0.1056761;0.3790674;-0.01302917,0.2832299;0.3178146;-0.08175158,0.4832262;0.4002669;-0.2070635,-0.1173414;0.3627013;-0.00239904,-0.1636909;0.1683394;0.00627165,-0.1909806;-0.07979175;-0.007373757,0.06916048;0.006911811;-0.0396113,0.09298355;-0.2894543;0.0003839955,0.08306543;-0.5817667;0.06713011,0.0999409;-0.6087168;0.005535465,-0.07150582;0.00122568;-0.03585269,-0.09385275;-0.296567;-0.00721452,-0.09174302;-0.5894428;0.05774137,-0.09056036;-0.6187325;-0.003182799,-0.00634203;0.3991089;0.0250532,67.81066
-0;0;0,0.0002899026;0.1995435;0.01350142,0.0006736661;0.4993981;0.02107388,0.1073942;0.3769996;-0.02861669,0.2223276;0.2875391;-0.1656828,0.3058578;0.3708571;-0.3860934,-0.1113899;0.3588986;0.005681004,-0.1630094;0.1661114;0.01866232,-0.1832319;-0.08050467;-0.0169963,0.06704758;0.005761911;-0.04325994,0.1025483;-0.290318;-0.01045133,0.09266582;-0.5826037;0.05641714,0.1070455;-0.6092479;-0.006183863,-0.07425358;0.002377342;-0.02967749,-0.09060951;-0.2965976;-0.01106353,-0.08197827;-0.5901582;0.05015475,-0.0941612;-0.5575327;-0.04756784,0.0005090953;0.3993982;0.02112133,0;0;0,-0.003014111;0.199349;0.01583983,-0.00797729;0.4990935;0.02569947,0.1056761;0.3790674;-0.01302917,0.2832299;0.3178146;-0.08175158,0.4832262;0.4002669;-0.2070635,-0.1173414;0.3627013;-0.00239904,-0.1636909;0.1683394;0.00627165,-0.1909806;-0.07979175;-0.007373757,0.06916048;0.006911811;-0.0396113,0.09298355;-0.2894543;0.0003839955,0.08306543;-0.5817667;0.06713011,0.0999409;-0.6087168;0.005535465,-0.07150582;0.00122568;-0.03585269,-0.09385275;-0.296567;-0.00721452,-0.09174302;-0.5894428;0.05774137,-0.09056036;-0.6187325;-0.003182799,-0.00634203;0.3991089;0.0250532,67.82168
-0;0;0,0.0002939553;0.1995443;0.01349119,0.0007031496;0.4993994;0.02103778,0.1076494;0.3769487;-0.02811339,0.2237885;0.2880876;-0.1645517,0.3086379;0.3717839;-0.3843141,-0.1113853;0.3589473;0.005646249,-0.1628597;0.1661232;0.01865553,-0.1828022;-0.08053367;-0.01687872,0.06706265;0.005754803;-0.04323753,0.1026194;-0.290323;-0.01047094,0.09277613;-0.5826255;0.05633018,0.1070675;-0.6094247;-0.006100979,-0.07423569;0.002388651;-0.0297213,-0.09068949;-0.2965937;-0.01131371,-0.08204768;-0.5901258;0.05003955,-0.09400605;-0.5575044;-0.04771003,0.0005298026;0.3993996;0.02109373,0;0;0,-0.003014111;0.199349;0.01583983,-0.00797729;0.4990935;0.02569947,0.1056761;0.3790674;-0.01302917,0.2832299;0.3178146;-0.08175158,0.4832262;0.4002669;-0.2070635,-0.1173414;0.3627013;-0.00239904,-0.1636909;0.1683394;0.00627165,-0.1909806;-0.07979175;-0.007373757,0.06916048;0.006911811;-0.0396113,0.09298355;-0.2894543;0.0003839955,0.08306543;-0.5817667;0.06713011,0.0999409;-0.6087168;0.005535465,-0.07150582;0.00122568;-0.03585269,-0.09385275;-0.296567;-0.00721452,-0.09174302;-0.5894428;0.05774137,-0.09056036;-0.6187325;-0.003182799,-0.00634203;0.3991089;0.0250532,67.84361
-0;0;0,0.0002939553;0.1995443;0.01349119,0.0007031496;0.4993994;0.02103778,0.1076494;0.3769487;-0.02811339,0.2237885;0.2880876;-0.1645517,0.3086379;0.3717839;-0.3843141,-0.1113853;0.3589473;0.005646249,-0.1628597;0.1661232;0.01865553,-0.1828022;-0.08053367;-0.01687872,0.06706265;0.005754803;-0.04323753,0.1026194;-0.290323;-0.01047094,0.09277613;-0.5826255;0.05633018,0.1070675;-0.6094247;-0.006100979,-0.07423569;0.002388651;-0.0297213,-0.09068949;-0.2965937;-0.01131371,-0.08204768;-0.5901258;0.05003955,-0.09400605;-0.5575044;-0.04771003,0.0005298026;0.3993996;0.02109373,0;0;0,-0.002999837;0.1993608;0.01569258,-0.007866291;0.4991135;0.02535079,0.106074;0.3791703;-0.01238242,0.2852018;0.3186459;-0.07757459,0.4904034;0.4015009;-0.1938819,-0.1171288;0.362326;-0.002725275,-0.1633595;0.1679313;0.005842805,-0.1908925;-0.08019793;-0.007341216,0.06935526;0.006874783;-0.03927576,0.09293449;-0.2895669;0.0003016032,0.08308177;-0.5818588;0.06714733,0.09976856;-0.6089471;0.005674165,-0.0713697;0.00128828;-0.03612072,-0.09383191;-0.2964579;-0.007092442,-0.0917485;-0.589354;0.05777306,-0.09147462;-0.6179482;-0.004056312,-0.006270507;0.3991279;0.02477138,67.85509
-0;0;0,0.0002207241;0.1995425;0.01351812,0.0002598743;0.4993953;0.02117673,0.1074945;0.3771626;-0.02780715,0.2243946;0.288604;-0.1637915,0.3130421;0.3722624;-0.382064,-0.1116648;0.3590619;0.005313328,-0.1632629;0.1662452;0.01793686,-0.1830701;-0.08052333;-0.01689103,0.06710051;0.005775787;-0.04317593,0.1026177;-0.2903143;-0.01047788,0.09288392;-0.582625;0.05630339,0.1068559;-0.6097312;-0.005820863,-0.07419673;0.002382972;-0.02981889,-0.09102191;-0.296556;-0.01104604,-0.08206835;-0.5901599;0.04991781,-0.07970735;-0.6198205;-0.01048592,0.0002331346;0.3993953;0.02118994,0;0;0,-0.002999837;0.1993608;0.01569258,-0.007866291;0.4991135;0.02535079,0.106074;0.3791703;-0.01238242,0.2852018;0.3186459;-0.07757459,0.4904034;0.4015009;-0.1938819,-0.1171288;0.362326;-0.002725275,-0.1633595;0.1679313;0.005842805,-0.1908925;-0.08019793;-0.007341216,0.06935526;0.006874783;-0.03927576,0.09293449;-0.2895669;0.0003016032,0.08308177;-0.5818588;0.06714733,0.09976856;-0.6089471;0.005674165,-0.0713697;0.00128828;-0.03612072,-0.09383191;-0.2964579;-0.007092442,-0.0917485;-0.589354;0.05777306,-0.09147462;-0.6179482;-0.004056312,-0.006270507;0.3991279;0.02477138,67.86618
-0;0;0,0.0002207241;0.1995425;0.01351812,0.0002598743;0.4993953;0.02117673,0.1074945;0.3771626;-0.02780715,0.2243946;0.288604;-0.1637915,0.3130421;0.3722624;-0.382064,-0.1116648;0.3590619;0.005313328,-0.1632629;0.1662452;0.01793686,-0.1830701;-0.08052333;-0.01689103,0.06710051;0.005775787;-0.04317593,0.1026177;-0.2903143;-0.01047788,0.09288392;-0.582625;0.05630339,0.1068559;-0.6097312;-0.005820863,-0.07419673;0.002382972;-0.02981889,-0.09102191;-0.296556;-0.01104604,-0.08206835;-0.5901599;0.04991781,-0.07970735;-0.6198205;-0.01048592,0.0002331346;0.3993953;0.02118994,0;0;0,-0.002999837;0.1993608;0.01569258,-0.007866291;0.4991135;0.02535079,0.106074;0.3791703;-0.01238242,0.2852018;0.3186459;-0.07757459,0.4904034;0.4015009;-0.1938819,-0.1171288;0.362326;-0.002725275,-0.1633595;0.1679313;0.005842805,-0.1908925;-0.08019793;-0.007341216,0.06935526;0.006874783;-0.03927576,0.09293449;-0.2895669;0.0003016032,0.08308177;-0.5818588;0.06714733,0.09976856;-0.6089471;0.005674165,-0.0713697;0.00128828;-0.03612072,-0.09383191;-0.2964579;-0.007092442,-0.0917485;-0.589354;0.05777306,-0.09147462;-0.6179482;-0.004056312,-0.006270507;0.3991279;0.02477138,67.8885
-0;0;0,0.0001859949;0.1995432;0.01350797,0.0001866284;0.4993973;0.02111004,0.1075331;0.3771965;-0.0276432,0.2256768;0.2892188;-0.162928,0.3155425;0.3731167;-0.3806097,-0.1117149;0.3591338;0.005007492,-0.163747;0.1664428;0.01776878,-0.1711762;-0.0811436;-0.01608064,0.06721039;0.005801543;-0.04300123,0.1027298;-0.2903188;-0.01058051,0.09292678;-0.5825974;0.05633085,0.1069862;-0.6095693;-0.005940028,-0.07416286;0.002376497;-0.02990357,-0.09095684;-0.2965613;-0.01108488,-0.0820311;-0.5901734;0.04984369,-0.07955323;-0.6198319;-0.01055807,0.0001706486;0.3993973;0.02114652,0;0;0,-0.003057044;0.1993611;0.015678,-0.007957231;0.4991122;0.0253702,0.1062771;0.3792914;-0.01156871,0.2872773;0.3191768;-0.07177791,0.4951597;0.4020738;-0.1831914,-0.1170969;0.3624699;-0.003366455,-0.1635601;0.1681403;0.005419231,-0.1913871;-0.0799394;-0.008075509,0.06949915;0.006815322;-0.039031,0.0929201;-0.2896872;0.0001831427,0.08311566;-0.581941;0.06720216,0.09970713;-0.6090304;0.005704608,-0.07124055;0.001411808;-0.03637019,-0.09376809;-0.2962998;-0.007038619,-0.09148046;-0.5889603;0.05887506,-0.09165288;-0.6172124;-0.003387194,-0.006352997;0.3991269;0.02477711,67.89964
-0;0;0,0.0001859949;0.1995432;0.01350797,0.0001866284;0.4993973;0.02111004,0.1075331;0.3771965;-0.0276432,0.2256768;0.2892188;-0.162928,0.3155425;0.3731167;-0.3806097,-0.1117149;0.3591338;0.005007492,-0.163747;0.1664428;0.01776878,-0.1711762;-0.0811436;-0.01608064,0.06721039;0.005801543;-0.04300123,0.1027298;-0.2903188;-0.01058051,0.09292678;-0.5825974;0.05633085,0.1069862;-0.6095693;-0.005940028,-0.07416286;0.002376497;-0.02990357,-0.09095684;-0.2965613;-0.01108488,-0.0820311;-0.5901734;0.04984369,-0.07955323;-0.6198319;-0.01055807,0.0001706486;0.3993973;0.02114652,0;0;0,-0.003057044;0.1993611;0.015678,-0.007957231;0.4991122;0.0253702,0.1062771;0.3792914;-0.01156871,0.2872773;0.3191768;-0.07177791,0.4951597;0.4020738;-0.1831914,-0.1170969;0.3624699;-0.003366455,-0.1635601;0.1681403;0.005419231,-0.1913871;-0.0799394;-0.008075509,0.06949915;0.006815322;-0.039031,0.0929201;-0.2896872;0.0001831427,0.08311566;-0.581941;0.06720216,0.09970713;-0.6090304;0.005704608,-0.07124055;0.001411808;-0.03637019,-0.09376809;-0.2962998;-0.007038619,-0.09148046;-0.5889603;0.05887506,-0.09165288;-0.6172124;-0.003387194,-0.006352997;0.3991269;0.02477711,67.91089
-0;0;0,0.0001259921;0.1995407;0.01354579,5.354648E-05;0.4993934;0.02119929,0.1075488;0.3771495;-0.02726462,0.2267218;0.2891969;-0.1616601,0.319507;0.3740982;-0.3777218,-0.1117923;0.3591514;0.004776763,-0.163962;0.166476;0.01720801,-0.175683;-0.08091123;-0.01688244,0.06723873;0.005834317;-0.04295246,0.1028178;-0.290278;-0.01052386,0.09307929;-0.5825875;0.05626206,0.1067767;-0.6100273;-0.005507257,-0.07412565;0.00237016;-0.02999618,-0.09081067;-0.2965677;-0.01108152,-0.08179547;-0.5902074;0.04970069,-0.09325237;-0.5575777;-0.04811041,5.678981E-05;0.3993934;0.0212191,0;0;0,-0.003057044;0.1993611;0.015678,-0.007957231;0.4991122;0.0253702,0.1062771;0.3792914;-0.01156871,0.2872773;0.3191768;-0.07177791,0.4951597;0.4020738;-0.1831914,-0.1170969;0.3624699;-0.003366455,-0.1635601;0.1681403;0.005419231,-0.1913871;-0.0799394;-0.008075509,0.06949915;0.006815322;-0.039031,0.0929201;-0.2896872;0.0001831427,0.08311566;-0.581941;0.06720216,0.09970713;-0.6090304;0.005704608,-0.07124055;0.001411808;-0.03637019,-0.09376809;-0.2962998;-0.007038619,-0.09148046;-0.5889603;0.05887506,-0.09165288;-0.6172124;-0.003387194,-0.006352997;0.3991269;0.02477711,67.93311
-0;0;0,0.0001259921;0.1995407;0.01354579,5.354648E-05;0.4993934;0.02119929,0.1075488;0.3771495;-0.02726462,0.2267218;0.2891969;-0.1616601,0.319507;0.3740982;-0.3777218,-0.1117923;0.3591514;0.004776763,-0.163962;0.166476;0.01720801,-0.175683;-0.08091123;-0.01688244,0.06723873;0.005834317;-0.04295246,0.1028178;-0.290278;-0.01052386,0.09307929;-0.5825875;0.05626206,0.1067767;-0.6100273;-0.005507257,-0.07412565;0.00237016;-0.02999618,-0.09081067;-0.2965677;-0.01108152,-0.08179547;-0.5902074;0.04970069,-0.09325237;-0.5575777;-0.04811041,5.678981E-05;0.3993934;0.0212191,0;0;0,-0.003143671;0.1993718;0.01552445,-0.008018491;0.4991296;0.02501598,0.1063977;0.3791177;-0.01112724,0.2887866;0.3199145;-0.06795414,0.5005361;0.4031394;-0.1715675,-0.117053;0.3624561;-0.004085379,-0.1636978;0.1681674;0.004642756,-0.1920129;-0.07986428;-0.008719143,0.06994732;0.006762451;-0.03823143,0.09252465;-0.2898943;0.0003049485,0.08267109;-0.582145;0.06733075,0.09914752;-0.6096899;0.006377399,-0.0709572;0.001483214;-0.03691716,-0.09413059;-0.2961241;-0.007036081,-0.09204704;-0.5887879;0.05886976,-0.09167558;-0.615855;-0.004852429,-0.006430469;0.3991436;0.02449236,67.94444
-0;0;0,0.0001259921;0.1995407;0.01354579,5.354648E-05;0.4993934;0.02119929,0.1075488;0.3771495;-0.02726462,0.2267218;0.2891969;-0.1616601,0.319507;0.3740982;-0.3777218,-0.1117923;0.3591514;0.004776763,-0.163962;0.166476;0.01720801,-0.175683;-0.08091123;-0.01688244,0.06723873;0.005834317;-0.04295246,0.1028178;-0.290278;-0.01052386,0.09307929;-0.5825875;0.05626206,0.1067767;-0.6100273;-0.005507257,-0.07412565;0.00237016;-0.02999618,-0.09081067;-0.2965677;-0.01108152,-0.08179547;-0.5902074;0.04970069,-0.09325237;-0.5575777;-0.04811041,5.678981E-05;0.3993934;0.0212191,0;0;0,-0.003143671;0.1993718;0.01552445,-0.008018491;0.4991296;0.02501598,0.1063977;0.3791177;-0.01112724,0.2887866;0.3199145;-0.06795414,0.5005361;0.4031394;-0.1715675,-0.117053;0.3624561;-0.004085379,-0.1636978;0.1681674;0.004642756,-0.1920129;-0.07986428;-0.008719143,0.06994732;0.006762451;-0.03823143,0.09252465;-0.2898943;0.0003049485,0.08267109;-0.582145;0.06733075,0.09914752;-0.6096899;0.006377399,-0.0709572;0.001483214;-0.03691716,-0.09413059;-0.2961241;-0.007036081,-0.09204704;-0.5887879;0.05886976,-0.09167558;-0.615855;-0.004852429,-0.006430469;0.3991436;0.02449236,67.95562
-0;0;0,1.876867E-05;0.1995403;0.01355291,-0.0003180526;0.4993928;0.02119557,0.1076359;0.3774489;-0.0265887,0.2277802;0.2888985;-0.1597209,0.3227178;0.37536;-0.3742232,-0.1119348;0.3588639;0.004596489,-0.1639245;0.1661115;0.01657837,-0.1743848;-0.08208907;-0.0114763,0.06737771;0.005886913;-0.04272691,0.1029107;-0.2902536;-0.01050533,0.09301189;-0.5825185;0.0564518,0.1074997;-0.6104034;-0.004573114,-0.07408412;0.002329234;-0.0301018,-0.09051158;-0.2966545;-0.0116925,-0.08190379;-0.590241;0.04940462,-0.09310401;-0.5576144;-0.04843565,-0.0002169471;0.3993929;0.02122576,0;0;0,-0.003143671;0.1993718;0.01552445,-0.008018491;0.4991296;0.02501598,0.1063977;0.3791177;-0.01112724,0.2887866;0.3199145;-0.06795414,0.5005361;0.4031394;-0.1715675,-0.117053;0.3624561;-0.004085379,-0.1636978;0.1681674;0.004642756,-0.1920129;-0.07986428;-0.008719143,0.06994732;0.006762451;-0.03823143,0.09252465;-0.2898943;0.0003049485,0.08267109;-0.582145;0.06733075,0.09914752;-0.6096899;0.006377399,-0.0709572;0.001483214;-0.03691716,-0.09413059;-0.2961241;-0.007036081,-0.09204704;-0.5887879;0.05886976,-0.09167558;-0.615855;-0.004852429,-0.006430469;0.3991436;0.02449236,67.97787
-0;0;0,1.876867E-05;0.1995403;0.01355291,-0.0003180526;0.4993928;0.02119557,0.1076359;0.3774489;-0.0265887,0.2277802;0.2888985;-0.1597209,0.3227178;0.37536;-0.3742232,-0.1119348;0.3588639;0.004596489,-0.1639245;0.1661115;0.01657837,-0.1743848;-0.08208907;-0.0114763,0.06737771;0.005886913;-0.04272691,0.1029107;-0.2902536;-0.01050533,0.09301189;-0.5825185;0.0564518,0.1074997;-0.6104034;-0.004573114,-0.07408412;0.002329234;-0.0301018,-0.09051158;-0.2966545;-0.0116925,-0.08190379;-0.590241;0.04940462,-0.09310401;-0.5576144;-0.04843565,-0.0002169471;0.3993929;0.02122576,0;0;0,-0.003124368;0.1993861;0.01534274,-0.007905256;0.4991534;0.02458042,0.1067116;0.3787737;-0.01050672,0.29014;0.3193483;-0.0636355,0.5043974;0.4026802;-0.1618676,-0.1169568;0.3623596;-0.004356328,-0.1637174;0.1681071;0.004553791,-0.1920166;-0.07992995;-0.008742766,0.07024197;0.006644133;-0.03770835,0.09235173;-0.2901395;0.0001152456,0.08269885;-0.5824547;0.06688855,0.09881885;-0.6106703;0.006701723,-0.0705263;0.001722611;-0.03772363,-0.09449371;-0.2957319;-0.006959768,-0.09194342;-0.588325;0.05924255,-0.09173691;-0.6152468;-0.004655778,-0.006353189;0.3991664;0.02414117,67.98915
-0;0;0,1.319475E-05;0.1995397;0.01356142,-0.0003215393;0.4993925;0.02119222,0.1078923;0.3776094;-0.0260677,0.2291708;0.2889617;-0.1581022,0.3300143;0.3752059;-0.3699808,-0.1119542;0.3589745;0.00443157,-0.1638602;0.166176;0.01602829,-0.1743616;-0.08204944;-0.0117901,0.06741935;0.005887827;-0.04266104,0.1029834;-0.29026;-0.01054103,0.09305784;-0.5825171;0.05644599,0.1054271;-0.6092346;-0.006493822,-0.07400905;0.002405495;-0.03027994,-0.09050016;-0.2965818;-0.0119866,-0.08177017;-0.5900874;0.04948121,-0.0927394;-0.5574638;-0.04838468,-0.0002212976;0.3993925;0.02122871,0;0;0,-0.003124368;0.1993861;0.01534274,-0.007905256;0.4991534;0.02458042,0.1067116;0.3787737;-0.01050672,0.29014;0.3193483;-0.0636355,0.5043974;0.4026802;-0.1618676,-0.1169568;0.3623596;-0.004356328,-0.1637174;0.1681071;0.004553791,-0.1920166;-0.07992995;-0.008742766,0.07024197;0.006644133;-0.03770835,0.09235173;-0.2901395;0.0001152456,0.08269885;-0.5824547;0.06688855,0.09881885;-0.6106703;0.006701723,-0.0705263;0.001722611;-0.03772363,-0.09449371;-0.2957319;-0.006959768,-0.09194342;-0.588325;0.05924255,-0.09173691;-0.6152468;-0.004655778,-0.006353189;0.3991664;0.02414117,68.00049
-0;0;0,1.319475E-05;0.1995397;0.01356142,-0.0003215393;0.4993925;0.02119222,0.1078923;0.3776094;-0.0260677,0.2291708;0.2889617;-0.1581022,0.3300143;0.3752059;-0.3699808,-0.1119542;0.3589745;0.00443157,-0.1638602;0.166176;0.01602829,-0.1743616;-0.08204944;-0.0117901,0.06741935;0.005887827;-0.04266104,0.1029834;-0.29026;-0.01054103,0.09305784;-0.5825171;0.05644599,0.1054271;-0.6092346;-0.006493822,-0.07400905;0.002405495;-0.03027994,-0.09050016;-0.2965818;-0.0119866,-0.08177017;-0.5900874;0.04948121,-0.0927394;-0.5574638;-0.04838468,-0.0002212976;0.3993925;0.02122871,0;0;0,-0.003124368;0.1993861;0.01534274,-0.007905256;0.4991534;0.02458042,0.1067116;0.3787737;-0.01050672,0.29014;0.3193483;-0.0636355,0.5043974;0.4026802;-0.1618676,-0.1169568;0.3623596;-0.004356328,-0.1637174;0.1681071;0.004553791,-0.1920166;-0.07992995;-0.008742766,0.07024197;0.006644133;-0.03770835,0.09235173;-0.2901395;0.0001152456,0.08269885;-0.5824547;0.06688855,0.09881885;-0.6106703;0.006701723,-0.0705263;0.001722611;-0.03772363,-0.09449371;-0.2957319;-0.006959768,-0.09194342;-0.588325;0.05924255,-0.09173691;-0.6152468;-0.004655778,-0.006353189;0.3991664;0.02414117,68.02277
-0;0;0,-7.395674E-05;0.1995347;0.01363517,-0.0006174292;0.4993834;0.02141037,0.107905;0.3777168;-0.02540614,0.2303984;0.2888467;-0.1561635,0.3323979;0.3763275;-0.3669791,-0.1121291;0.3589309;0.004354209,-0.1637977;0.166056;0.01574037,-0.1742582;-0.08218981;-0.01191123,0.06756953;0.005913794;-0.04241915,0.1030723;-0.2902711;-0.0105746,0.09315684;-0.5825189;0.05645473,0.1054609;-0.6084815;-0.007406704,-0.07396805;0.002399245;-0.03038044,-0.09032647;-0.2965939;-0.01206429,-0.08172309;-0.5899887;0.04994784,-0.0924622;-0.5573636;-0.04794387,-0.0004460992;0.3993836;0.02139747,0;0;0,-0.003153705;0.1993866;0.01533129,-0.007944199;0.4991525;0.02460892,0.1069257;0.3791552;-0.009889383,0.2916431;0.3182345;-0.05645286,0.5088911;0.4016679;-0.1477883,-0.1170515;0.3625974;-0.004427548,-0.1637431;0.1683135;0.004154907,-0.1918935;-0.07973681;-0.009209822,0.07036041;0.006482988;-0.0375151,0.09242173;-0.2903527;-7.332489E-05,0.08283959;-0.582616;0.06693658,0.09869186;-0.6109328;0.006810226,-0.07044134;0.001901536;-0.03787351,-0.09443559;-0.2955152;-0.006767686,-0.0918465;-0.5881187;0.05938749,-0.09180019;-0.6153116;-0.004183371,-0.006390619;0.3991656;0.02415462,68.03392
-0;0;0,-7.395674E-05;0.1995347;0.01363517,-0.0006174292;0.4993834;0.02141037,0.107905;0.3777168;-0.02540614,0.2303984;0.2888467;-0.1561635,0.3323979;0.3763275;-0.3669791,-0.1121291;0.3589309;0.004354209,-0.1637977;0.166056;0.01574037,-0.1742582;-0.08218981;-0.01191123,0.06756953;0.005913794;-0.04241915,0.1030723;-0.2902711;-0.0105746,0.09315684;-0.5825189;0.05645473,0.1054609;-0.6084815;-0.007406704,-0.07396805;0.002399245;-0.03038044,-0.09032647;-0.2965939;-0.01206429,-0.08172309;-0.5899887;0.04994784,-0.0924622;-0.5573636;-0.04794387,-0.0004460992;0.3993836;0.02139747,0;0;0,-0.003153705;0.1993866;0.01533129,-0.007944199;0.4991525;0.02460892,0.1069257;0.3791552;-0.009889383,0.2916431;0.3182345;-0.05645286,0.5088911;0.4016679;-0.1477883,-0.1170515;0.3625974;-0.004427548,-0.1637431;0.1683135;0.004154907,-0.1918935;-0.07973681;-0.009209822,0.07036041;0.006482988;-0.0375151,0.09242173;-0.2903527;-7.332489E-05,0.08283959;-0.582616;0.06693658,0.09869186;-0.6109328;0.006810226,-0.07044134;0.001901536;-0.03787351,-0.09443559;-0.2955152;-0.006767686,-0.0918465;-0.5881187;0.05938749,-0.09180019;-0.6153116;-0.004183371,-0.006390619;0.3991656;0.02415462,68.04526
-0;0;0,-0.0001526674;0.1995307;0.01369186,-0.0008817408;0.4993756;0.02160866,0.1077752;0.3775936;-0.02503886,0.2314075;0.2882051;-0.154363,0.3385781;0.3762614;-0.3623547,-0.1122454;0.3589127;0.003975177,-0.1622035;0.1654378;0.01243962,-0.17417;-0.08301367;-0.01263394,0.06770594;0.006052775;-0.04218139,0.1031605;-0.2901675;-0.01061369,0.09322855;-0.5824232;0.05637867,0.1059375;-0.6086374;-0.007102638,-0.07386106;0.002388813;-0.03064044,-0.09034245;-0.296586;-0.01213495,-0.0816953;-0.589969;0.04992639,-0.09222053;-0.5573459;-0.04798818,-0.0006476967;0.3993759;0.02154447,0;0;0,-0.003153705;0.1993866;0.01533129,-0.007944199;0.4991525;0.02460892,0.1069257;0.3791552;-0.009889383,0.2916431;0.3182345;-0.05645286,0.5088911;0.4016679;-0.1477883,-0.1170515;0.3625974;-0.004427548,-0.1637431;0.1683135;0.004154907,-0.1918935;-0.07973681;-0.009209822,0.07036041;0.006482988;-0.0375151,0.09242173;-0.2903527;-7.332489E-05,0.08283959;-0.582616;0.06693658,0.09869186;-0.6109328;0.006810226,-0.07044134;0.001901536;-0.03787351,-0.09443559;-0.2955152;-0.006767686,-0.0918465;-0.5881187;0.05938749,-0.09180019;-0.6153116;-0.004183371,-0.006390619;0.3991656;0.02415462,68.06713
-0;0;0,-0.0001526674;0.1995307;0.01369186,-0.0008817408;0.4993756;0.02160866,0.1077752;0.3775936;-0.02503886,0.2314075;0.2882051;-0.154363,0.3385781;0.3762614;-0.3623547,-0.1122454;0.3589127;0.003975177,-0.1622035;0.1654378;0.01243962,-0.17417;-0.08301367;-0.01263394,0.06770594;0.006052775;-0.04218139,0.1031605;-0.2901675;-0.01061369,0.09322855;-0.5824232;0.05637867,0.1059375;-0.6086374;-0.007102638,-0.07386106;0.002388813;-0.03064044,-0.09034245;-0.296586;-0.01213495,-0.0816953;-0.589969;0.04992639,-0.09222053;-0.5573459;-0.04798818,-0.0006476967;0.3993759;0.02154447,0;0;0,-0.003260397;0.1993875;0.01529713,-0.00812416;0.4991528;0.02455857,0.1070077;0.3792863;-0.009195507,0.2924933;0.3175499;-0.05142969,0.5117922;0.4003948;-0.1382899,-0.1172388;0.362664;-0.004452242,-0.1638059;0.1683381;0.003851598,-0.191818;-0.07972567;-0.009552774,0.07047828;0.006425101;-0.03730321,0.09223998;-0.2904613;-8.918718E-05,0.08299472;-0.5827312;0.06693928,0.09832733;-0.6114162;0.007159837,-0.07039789;0.001936925;-0.03795241,-0.09459312;-0.2954407;-0.00662858,-0.09204795;-0.5880568;0.05947234,-0.09230889;-0.6145201;-0.004973762,-0.006550899;0.3991662;0.02410956,68.07869
-0;0;0,-0.0001991313;0.1995287;0.01372146,-0.001045227;0.4993723;0.02167923,0.1077403;0.3773882;-0.02468612,0.2324542;0.2874958;-0.1526151,0.3423475;0.3765434;-0.3587558,-0.1123429;0.3589856;0.003697546,-0.1614107;0.1652321;0.01090463,-0.1741868;-0.08326854;-0.01326573,0.06775827;0.006053894;-0.04209711,0.1031728;-0.2901815;-0.01062677,0.09328078;-0.5823865;0.05659255,0.1059068;-0.6090338;-0.006381854,-0.07364477;0.002369064;-0.03115821,-0.0898454;-0.2965844;-0.01207029,-0.08133474;-0.5899441;0.05012007,-0.09164973;-0.5573193;-0.04781717,-0.0007701534;0.3993727;0.02159742,0;0;0,-0.003260397;0.1993875;0.01529713,-0.00812416;0.4991528;0.02455857,0.1070077;0.3792863;-0.009195507,0.2924933;0.3175499;-0.05142969,0.5117922;0.4003948;-0.1382899,-0.1172388;0.362664;-0.004452242,-0.1638059;0.1683381;0.003851598,-0.191818;-0.07972567;-0.009552774,0.07047828;0.006425101;-0.03730321,0.09223998;-0.2904613;-8.918718E-05,0.08299472;-0.5827312;0.06693928,0.09832733;-0.6114162;0.007159837,-0.07039789;0.001936925;-0.03795241,-0.09459312;-0.2954407;-0.00662858,-0.09204795;-0.5880568;0.05947234,-0.09230889;-0.6145201;-0.004973762,-0.006550899;0.3991662;0.02410956,68.0898
-0;0;0,-0.0001991313;0.1995287;0.01372146,-0.001045227;0.4993723;0.02167923,0.1077403;0.3773882;-0.02468612,0.2324542;0.2874958;-0.1526151,0.3423475;0.3765434;-0.3587558,-0.1123429;0.3589856;0.003697546,-0.1614107;0.1652321;0.01090463,-0.1741868;-0.08326854;-0.01326573,0.06775827;0.006053894;-0.04209711,0.1031728;-0.2901815;-0.01062677,0.09328078;-0.5823865;0.05659255,0.1059068;-0.6090338;-0.006381854,-0.07364477;0.002369064;-0.03115821,-0.0898454;-0.2965844;-0.01207029,-0.08133474;-0.5899441;0.05012007,-0.09164973;-0.5573193;-0.04781717,-0.0007701534;0.3993727;0.02159742,0;0;0,-0.003260397;0.1993875;0.01529713,-0.00812416;0.4991528;0.02455857,0.1070077;0.3792863;-0.009195507,0.2924933;0.3175499;-0.05142969,0.5117922;0.4003948;-0.1382899,-0.1172388;0.362664;-0.004452242,-0.1638059;0.1683381;0.003851598,-0.191818;-0.07972567;-0.009552774,0.07047828;0.006425101;-0.03730321,0.09223998;-0.2904613;-8.918718E-05,0.08299472;-0.5827312;0.06693928,0.09832733;-0.6114162;0.007159837,-0.07039789;0.001936925;-0.03795241,-0.09459312;-0.2954407;-0.00662858,-0.09204795;-0.5880568;0.05947234,-0.09230889;-0.6145201;-0.004973762,-0.006550899;0.3991662;0.02410956,68.10255
-0;0;0,-0.0001991313;0.1995287;0.01372146,-0.001045227;0.4993723;0.02167923,0.1077403;0.3773882;-0.02468612,0.2324542;0.2874958;-0.1526151,0.3423475;0.3765434;-0.3587558,-0.1123429;0.3589856;0.003697546,-0.1614107;0.1652321;0.01090463,-0.1741868;-0.08326854;-0.01326573,0.06775827;0.006053894;-0.04209711,0.1031728;-0.2901815;-0.01062677,0.09328078;-0.5823865;0.05659255,0.1059068;-0.6090338;-0.006381854,-0.07364477;0.002369064;-0.03115821,-0.0898454;-0.2965844;-0.01207029,-0.08133474;-0.5899441;0.05012007,-0.09164973;-0.5573193;-0.04781717,-0.0007701534;0.3993727;0.02159742,0;0;0,-0.003194795;0.1994044;0.01508913,-0.007924126;0.4991821;0.02400777,0.1074461;0.3793401;-0.008650452,0.2934254;0.3166862;-0.04720161,0.5158037;0.3994644;-0.1259141,-0.1169486;0.3626624;-0.005378127,-0.1637473;0.1684124;0.003385646,-0.1916893;-0.07964113;-0.010351,0.070635;0.00647934;-0.03699616,0.09214482;-0.290469;-0.0001310073,0.08292032;-0.5826963;0.06708564,0.09819711;-0.6108842;0.0066434,-0.07020213;0.00183163;-0.03831849,-0.09456864;-0.2954756;-0.006464142,-0.09209781;-0.5880832;0.0596774,-0.09276827;-0.6139305;-0.005489554,-0.006399036;0.3991942;0.02367751,68.12325
-0;0;0,-0.0002425801;0.1995281;0.01372803,-0.001189761;0.4993713;0.02169059,0.1077403;0.3770561;-0.0242566,0.2339009;0.2877517;-0.1511748,0.3471534;0.377899;-0.3550065,-0.1124203;0.3590226;0.003426954,-0.1622584;0.1654665;0.01065433,-0.1739638;-0.08306415;-0.01374791,0.06783634;0.006022572;-0.04197569,0.1031957;-0.2902316;-0.01061987,0.09337174;-0.5823996;0.05676953,0.1058531;-0.6087658;-0.006574072,-0.07360333;0.002351148;-0.03125732,-0.08975963;-0.2966033;-0.01214576,-0.0812889;-0.5899061;0.05031789,-0.09135086;-0.5572829;-0.04764539,-0.0008796272;0.3993718;0.02160973,0;0;0,-0.003194795;0.1994044;0.01508913,-0.007924126;0.4991821;0.02400777,0.1074461;0.3793401;-0.008650452,0.2934254;0.3166862;-0.04720161,0.5158037;0.3994644;-0.1259141,-0.1169486;0.3626624;-0.005378127,-0.1637473;0.1684124;0.003385646,-0.1916893;-0.07964113;-0.010351,0.070635;0.00647934;-0.03699616,0.09214482;-0.290469;-0.0001310073,0.08292032;-0.5826963;0.06708564,0.09819711;-0.6108842;0.0066434,-0.07020213;0.00183163;-0.03831849,-0.09456864;-0.2954756;-0.006464142,-0.09209781;-0.5880832;0.0596774,-0.09276827;-0.6139305;-0.005489554,-0.006399036;0.3991942;0.02367751,68.13568
-0;0;0,-0.0002425801;0.1995281;0.01372803,-0.001189761;0.4993713;0.02169059,0.1077403;0.3770561;-0.0242566,0.2339009;0.2877517;-0.1511748,0.3471534;0.377899;-0.3550065,-0.1124203;0.3590226;0.003426954,-0.1622584;0.1654665;0.01065433,-0.1739638;-0.08306415;-0.01374791,0.06783634;0.006022572;-0.04197569,0.1031957;-0.2902316;-0.01061987,0.09337174;-0.5823996;0.05676953,0.1058531;-0.6087658;-0.006574072,-0.07360333;0.002351148;-0.03125732,-0.08975963;-0.2966033;-0.01214576,-0.0812889;-0.5899061;0.05031789,-0.09135086;-0.5572829;-0.04764539,-0.0008796272;0.3993718;0.02160973,0;0;0,-0.003194795;0.1994044;0.01508913,-0.007924126;0.4991821;0.02400777,0.1074461;0.3793401;-0.008650452,0.2934254;0.3166862;-0.04720161,0.5158037;0.3994644;-0.1259141,-0.1169486;0.3626624;-0.005378127,-0.1637473;0.1684124;0.003385646,-0.1916893;-0.07964113;-0.010351,0.070635;0.00647934;-0.03699616,0.09214482;-0.290469;-0.0001310073,0.08292032;-0.5826963;0.06708564,0.09819711;-0.6108842;0.0066434,-0.07020213;0.00183163;-0.03831849,-0.09456864;-0.2954756;-0.006464142,-0.09209781;-0.5880832;0.0596774,-0.09276827;-0.6139305;-0.005489554,-0.006399036;0.3991942;0.02367751,68.15657
-0;0;0,-0.0002642655;0.1995278;0.01373211,-0.0012385;0.4993708;0.0216954,0.1077823;0.3769216;-0.02398594,0.235523;0.2879306;-0.1495364,0.3539637;0.3770382;-0.3508611,-0.1123878;0.359038;0.002948912,-0.161153;0.1651859;0.009531979,-0.1734878;-0.08338545;-0.01413519,0.06794984;0.006011219;-0.04179336,0.1032946;-0.2902583;-0.01056651,0.09352732;-0.5824747;0.05662127,0.1060278;-0.6089713;-0.00656106,-0.07352893;0.002338343;-0.03143292,-0.08974395;-0.2965796;-0.01180732,-0.08125238;-0.5899322;0.05041937,-0.09104286;-0.5573089;-0.04757144,-0.0009213632;0.3993713;0.0216158,0;0;0,-0.003238816;0.1994014;0.01511926,-0.007997762;0.4991764;0.02411231,0.107597;0.3792608;-0.007745344,0.2937266;0.3144902;-0.04181195,0.5176516;0.3978214;-0.1153886,-0.1169289;0.3626057;-0.005564857,-0.163625;0.1683148;0.00283152,-0.1911387;-0.07977115;-0.0111816,0.07077023;0.006443697;-0.03674306,0.09220433;-0.2905532;-0.0002272092,0.08296372;-0.5827418;0.06715573,0.09804339;-0.610975;0.006722618,-0.07002234;0.001888373;-0.03864331,-0.09453079;-0.2953574;-0.006327383,-0.09216223;-0.5879447;0.05990728,-0.09248229;-0.6149924;-0.003838792,-0.006466545;0.3991888;0.02375672,68.16801
-0;0;0,-0.0002642655;0.1995278;0.01373211,-0.0012385;0.4993708;0.0216954,0.1077823;0.3769216;-0.02398594,0.235523;0.2879306;-0.1495364,0.3539637;0.3770382;-0.3508611,-0.1123878;0.359038;0.002948912,-0.161153;0.1651859;0.009531979,-0.1734878;-0.08338545;-0.01413519,0.06794984;0.006011219;-0.04179336,0.1032946;-0.2902583;-0.01056651,0.09352732;-0.5824747;0.05662127,0.1060278;-0.6089713;-0.00656106,-0.07352893;0.002338343;-0.03143292,-0.08974395;-0.2965796;-0.01180732,-0.08125238;-0.5899322;0.05041937,-0.09104286;-0.5573089;-0.04757144,-0.0009213632;0.3993713;0.0216158,0;0;0,-0.003238816;0.1994014;0.01511926,-0.007997762;0.4991764;0.02411231,0.107597;0.3792608;-0.007745344,0.2937266;0.3144902;-0.04181195,0.5176516;0.3978214;-0.1153886,-0.1169289;0.3626057;-0.005564857,-0.163625;0.1683148;0.00283152,-0.1911387;-0.07977115;-0.0111816,0.07077023;0.006443697;-0.03674306,0.09220433;-0.2905532;-0.0002272092,0.08296372;-0.5827418;0.06715573,0.09804339;-0.610975;0.006722618,-0.07002234;0.001888373;-0.03864331,-0.09453079;-0.2953574;-0.006327383,-0.09216223;-0.5879447;0.05990728,-0.09248229;-0.6149924;-0.003838792,-0.006466545;0.3991888;0.02375672,68.18999
-0;0;0,-0.0003731535;0.1995287;0.01371758,-0.001768427;0.4993726;0.02156783,0.1076306;0.3771616;-0.02365702,0.2366223;0.2879239;-0.1477448,0.3581862;0.3784281;-0.3465694,-0.1127145;0.3590675;0.002546491,-0.1621357;0.1653852;0.009231003,-0.1734684;-0.08325388;-0.01422553,0.06806424;0.006061453;-0.04159951,0.1033562;-0.2902297;-0.01051883,0.09355274;-0.5824562;0.0566195,0.1062963;-0.6099799;-0.005248759,-0.07336693;0.002365662;-0.03180718,-0.08968118;-0.2965235;-0.01182873,-0.08105252;-0.5898961;0.05028443,-0.09062631;-0.5572774;-0.04772695,-0.001292638;0.3993737;0.0215354,0;0;0,-0.003238816;0.1994014;0.01511926,-0.007997762;0.4991764;0.02411231,0.107597;0.3792608;-0.007745344,0.2937266;0.3144902;-0.04181195,0.5176516;0.3978214;-0.1153886,-0.1169289;0.3626057;-0.005564857,-0.163625;0.1683148;0.00283152,-0.1911387;-0.07977115;-0.0111816,0.07077023;0.006443697;-0.03674306,0.09220433;-0.2905532;-0.0002272092,0.08296372;-0.5827418;0.06715573,0.09804339;-0.610975;0.006722618,-0.07002234;0.001888373;-0.03864331,-0.09453079;-0.2953574;-0.006327383,-0.09216223;-0.5879447;0.05990728,-0.09248229;-0.6149924;-0.003838792,-0.006466545;0.3991888;0.02375672,68.21264
-0;0;0,-0.0003998966;0.1995279;0.01372822,-0.001828436;0.4993712;0.02159539,0.1077035;0.3769843;-0.02324588,0.2380057;0.2875455;-0.1458102,0.3636085;0.3787562;-0.341781,-0.1127276;0.3590983;0.002274316,-0.1625843;0.1655483;0.009532262,-0.1732793;-0.08306815;-0.01445743,0.0681633;0.006042179;-0.0414398,0.1034644;-0.2902489;-0.01036866,0.09353075;-0.582521;0.05655196,0.1063809;-0.610191;-0.005110383,-0.07323697;0.002274159;-0.03211189,-0.08956489;-0.2965513;-0.01121284,-0.08064456;-0.5900176;0.05041499,-0.0899678;-0.5573959;-0.04762108,-0.001344573;0.3993724;0.02155698,0;0;0,-0.003384657;0.1993878;0.01526554,-0.008237396;0.4991564;0.02440214,0.1076356;0.379283;-0.006564487,0.2942018;0.3141983;-0.03750046,0.5208471;0.3954311;-0.1048292,-0.1168959;0.3622834;-0.005878102,-0.1635564;0.1679885;0.002623923,-0.1903363;-0.08015676;-0.01175511,0.07088868;0.006627764;-0.03648106,0.09210334;-0.2903914;-1.780316E-05,0.08302967;-0.582544;0.06754357,0.09746023;-0.6114892;0.007882793,-0.06998136;0.001678538;-0.03872713,-0.09474683;-0.2954867;-0.005870897,-0.09203;-0.5881096;0.06019333,-0.09342115;-0.6152326;-0.003446985,-0.006686843;0.3991692;0.02401176,68.23492
-0;0;0,-0.0003998966;0.1995279;0.01372822,-0.001828436;0.4993712;0.02159539,0.1077035;0.3769843;-0.02324588,0.2380057;0.2875455;-0.1458102,0.3636085;0.3787562;-0.341781,-0.1127276;0.3590983;0.002274316,-0.1625843;0.1655483;0.009532262,-0.1732793;-0.08306815;-0.01445743,0.0681633;0.006042179;-0.0414398,0.1034644;-0.2902489;-0.01036866,0.09353075;-0.582521;0.05655196,0.1063809;-0.610191;-0.005110383,-0.07323697;0.002274159;-0.03211189,-0.08956489;-0.2965513;-0.01121284,-0.08064456;-0.5900176;0.05041499,-0.0899678;-0.5573959;-0.04762108,-0.001344573;0.3993724;0.02155698,0;0;0,-0.003384657;0.1993878;0.01526554,-0.008237396;0.4991564;0.02440214,0.1076356;0.379283;-0.006564487,0.2942018;0.3141983;-0.03750046,0.5208471;0.3954311;-0.1048292,-0.1168959;0.3622834;-0.005878102,-0.1635564;0.1679885;0.002623923,-0.1903363;-0.08015676;-0.01175511,0.07088868;0.006627764;-0.03648106,0.09210334;-0.2903914;-1.780316E-05,0.08302967;-0.582544;0.06754357,0.09746023;-0.6114892;0.007882793,-0.06998136;0.001678538;-0.03872713,-0.09474683;-0.2954867;-0.005870897,-0.09203;-0.5881096;0.06019333,-0.09342115;-0.6152326;-0.003446985,-0.006686843;0.3991692;0.02401176,68.24625
-0;0;0,-0.0004871252;0.1995279;0.01372453,-0.002123381;0.4993714;0.02154614,0.1076633;0.3769847;-0.02282902,0.238905;0.2873731;-0.1442595,0.3697297;0.3789285;-0.3366199,-0.1128996;0.35916;0.001815015,-0.1617589;0.1653112;0.007768265,-0.1733292;-0.08332109;-0.0156429,0.06819946;0.006029853;-0.04138205,0.1034617;-0.290267;-0.01032086,0.09351719;-0.582538;0.05660277,0.1060871;-0.609909;-0.005491689,-0.07313657;0.002295104;-0.03233845,-0.08949646;-0.2965126;-0.01121278,-0.08058547;-0.5899485;0.05056108,-0.08962805;-0.5573393;-0.04749907,-0.001568975;0.3993729;0.02152284,0;0;0,-0.003384657;0.1993878;0.01526554,-0.008237396;0.4991564;0.02440214,0.1076356;0.379283;-0.006564487,0.2942018;0.3141983;-0.03750046,0.5208471;0.3954311;-0.1048292,-0.1168959;0.3622834;-0.005878102,-0.1635564;0.1679885;0.002623923,-0.1903363;-0.08015676;-0.01175511,0.07088868;0.006627764;-0.03648106,0.09210334;-0.2903914;-1.780316E-05,0.08302967;-0.582544;0.06754357,0.09746023;-0.6114892;0.007882793,-0.06998136;0.001678538;-0.03872713,-0.09474683;-0.2954867;-0.005870897,-0.09203;-0.5881096;0.06019333,-0.09342115;-0.6152326;-0.003446985,-0.006686843;0.3991692;0.02401176,68.26847
-0;0;0,-0.0004871252;0.1995279;0.01372453,-0.002123381;0.4993714;0.02154614,0.1076633;0.3769847;-0.02282902,0.238905;0.2873731;-0.1442595,0.3697297;0.3789285;-0.3366199,-0.1128996;0.35916;0.001815015,-0.1617589;0.1653112;0.007768265,-0.1733292;-0.08332109;-0.0156429,0.06819946;0.006029853;-0.04138205,0.1034617;-0.290267;-0.01032086,0.09351719;-0.582538;0.05660277,0.1060871;-0.609909;-0.005491689,-0.07313657;0.002295104;-0.03233845,-0.08949646;-0.2965126;-0.01121278,-0.08058547;-0.5899485;0.05056108,-0.08962805;-0.5573393;-0.04749907,-0.001568975;0.3993729;0.02152284,0;0;0,-0.003459491;0.1993853;0.01528193,-0.008396661;0.49915;0.02450453,0.1077129;0.3793825;-0.005762761,0.2945417;0.3131723;-0.03243128,0.5225886;0.3940305;-0.09533283,-0.1168697;0.362305;-0.006424461,-0.1631427;0.1678998;0.001664636,-0.1896241;-0.08030395;-0.01225142,0.07102818;0.006611754;-0.03621164,0.09226015;-0.2904314;4.494563E-05,0.08312671;-0.5825628;0.06768996,0.09743379;-0.6110505;0.007399179,-0.06974006;0.001713311;-0.0391585,-0.0944901;-0.2953771;-0.005621709,-0.09193176;-0.5879896;0.06049479,-0.09277586;-0.6140237;-0.00445208,-0.00682077;0.3991633;0.0240827,68.27975
-0;0;0,-0.0005241865;0.1995276;0.01372765,-0.002156271;0.4993718;0.02151632,0.1078746;0.3768214;-0.02214359,0.2405525;0.2872308;-0.142019,0.3746849;0.3791862;-0.3318946,-0.112939;0.359337;0.001455786,-0.1612692;0.1653456;0.007070027,-0.1731955;-0.08332211;-0.01577965,0.06830819;0.006061863;-0.04119762,0.1033388;-0.2902655;-0.01016627,0.09341363;-0.5825534;0.05668645,0.10616;-0.6094962;-0.005902197,-0.0730397;0.002274315;-0.03255808,-0.0892429;-0.2965698;-0.01182939,-0.08072056;-0.5898176;0.0508846,-0.08939811;-0.5572131;-0.04720768,-0.001606028;0.3993734;0.02150719,0;0;0,-0.003459491;0.1993853;0.01528193,-0.008396661;0.49915;0.02450453,0.1077129;0.3793825;-0.005762761,0.2945417;0.3131723;-0.03243128,0.5225886;0.3940305;-0.09533283,-0.1168697;0.362305;-0.006424461,-0.1631427;0.1678998;0.001664636,-0.1896241;-0.08030395;-0.01225142,0.07102818;0.006611754;-0.03621164,0.09226015;-0.2904314;4.494563E-05,0.08312671;-0.5825628;0.06768996,0.09743379;-0.6110505;0.007399179,-0.06974006;0.001713311;-0.0391585,-0.0944901;-0.2953771;-0.005621709,-0.09193176;-0.5879896;0.06049479,-0.09277586;-0.6140237;-0.00445208,-0.00682077;0.3991633;0.0240827,68.29063
-0;0;0,-0.0005241865;0.1995276;0.01372765,-0.002156271;0.4993718;0.02151632,0.1078746;0.3768214;-0.02214359,0.2405525;0.2872308;-0.142019,0.3746849;0.3791862;-0.3318946,-0.112939;0.359337;0.001455786,-0.1612692;0.1653456;0.007070027,-0.1731955;-0.08332211;-0.01577965,0.06830819;0.006061863;-0.04119762,0.1033388;-0.2902655;-0.01016627,0.09341363;-0.5825534;0.05668645,0.10616;-0.6094962;-0.005902197,-0.0730397;0.002274315;-0.03255808,-0.0892429;-0.2965698;-0.01182939,-0.08072056;-0.5898176;0.0508846,-0.08939811;-0.5572131;-0.04720768,-0.001606028;0.3993734;0.02150719,0;0;0,-0.003459491;0.1993853;0.01528193,-0.008396661;0.49915;0.02450453,0.1077129;0.3793825;-0.005762761,0.2945417;0.3131723;-0.03243128,0.5225886;0.3940305;-0.09533283,-0.1168697;0.362305;-0.006424461,-0.1631427;0.1678998;0.001664636,-0.1896241;-0.08030395;-0.01225142,0.07102818;0.006611754;-0.03621164,0.09226015;-0.2904314;4.494563E-05,0.08312671;-0.5825628;0.06768996,0.09743379;-0.6110505;0.007399179,-0.06974006;0.001713311;-0.0391585,-0.0944901;-0.2953771;-0.005621709,-0.09193176;-0.5879896;0.06049479,-0.09277586;-0.6140237;-0.00445208,-0.00682077;0.3991633;0.0240827,68.30233
-0;0;0,-0.0006106424;0.1995242;0.01377407,-0.002397333;0.499366;0.02162911,0.1077966;0.3767118;-0.02174127,0.2421785;0.2871181;-0.139701,0.3790139;0.3796299;-0.3273647,-0.1130354;0.3592758;0.001173599,-0.1611147;0.1652234;0.006832884,-0.1728727;-0.08346578;-0.01587019,0.06844606;0.006006435;-0.04097632,0.1032311;-0.2903298;-0.009753605,0.0934161;-0.5827093;0.05671334,0.1059841;-0.6100923;-0.005366553,-0.07282693;0.002302718;-0.0330293,-0.08909488;-0.2965094;-0.01189459,-0.08065799;-0.5897834;0.05070857,-0.08911503;-0.557182;-0.04740244,-0.001788995;0.3993679;0.021591,0;0;0,-0.003446327;0.1993885;0.01524333,-0.008340833;0.499155;0.02443232,0.1079832;0.3793721;-0.00491507,0.2949287;0.3118789;-0.02718763,0.5250008;0.3925647;-0.08247425,-0.116677;0.361962;-0.006617818,-0.162792;0.167508;0.001196464,-0.1878719;-0.08080317;-0.01338237,0.0712373;0.006670979;-0.03578749,0.09248193;-0.2904223;4.894286E-05,0.08325471;-0.5825214;0.0678205,0.0974194;-0.6111121;0.007630248,-0.06943613;0.001395615;-0.03970737,-0.094281;-0.2955833;-0.005264979,-0.09186701;-0.5882167;0.0607644,-0.09204347;-0.6158829;-0.002227094,-0.00678134;0.399168;0.02401958,68.32387
-0;0;0,-0.0006106424;0.1995242;0.01377407,-0.002397333;0.499366;0.02162911,0.1077966;0.3767118;-0.02174127,0.2421785;0.2871181;-0.139701,0.3790139;0.3796299;-0.3273647,-0.1130354;0.3592758;0.001173599,-0.1611147;0.1652234;0.006832884,-0.1728727;-0.08346578;-0.01587019,0.06844606;0.006006435;-0.04097632,0.1032311;-0.2903298;-0.009753605,0.0934161;-0.5827093;0.05671334,0.1059841;-0.6100923;-0.005366553,-0.07282693;0.002302718;-0.0330293,-0.08909488;-0.2965094;-0.01189459,-0.08065799;-0.5897834;0.05070857,-0.08911503;-0.557182;-0.04740244,-0.001788995;0.3993679;0.021591,0;0;0,-0.003446327;0.1993885;0.01524333,-0.008340833;0.499155;0.02443232,0.1079832;0.3793721;-0.00491507,0.2949287;0.3118789;-0.02718763,0.5250008;0.3925647;-0.08247425,-0.116677;0.361962;-0.006617818,-0.162792;0.167508;0.001196464,-0.1878719;-0.08080317;-0.01338237,0.0712373;0.006670979;-0.03578749,0.09248193;-0.2904223;4.894286E-05,0.08325471;-0.5825214;0.0678205,0.0974194;-0.6111121;0.007630248,-0.06943613;0.001395615;-0.03970737,-0.094281;-0.2955833;-0.005264979,-0.09186701;-0.5882167;0.0607644,-0.09204347;-0.6158829;-0.002227094,-0.00678134;0.399168;0.02401958,68.33588
-0;0;0,-0.0007053021;0.1995208;0.0138182,-0.002736727;0.4993566;0.0218605,0.1077603;0.3767588;-0.02108134,0.2434696;0.2870433;-0.1374175,0.3833876;0.3800771;-0.3225328,-0.1132491;0.3593753;0.0009485297,-0.1610801;0.1652599;0.006552568,-0.1734231;-0.08335932;-0.0166024,0.06860671;0.005999058;-0.04070786,0.1032339;-0.2903736;-0.009656126,0.09336212;-0.5827833;0.05666941,0.106038;-0.6101019;-0.005468857,-0.07270098;0.002396899;-0.033299,-0.0888402;-0.2964106;-0.01200124,-0.08064771;-0.589651;0.05079173,-0.08881461;-0.5570503;-0.04734372,-0.002034526;0.3993592;0.02174771,0;0;0,-0.003446327;0.1993885;0.01524333,-0.008340833;0.499155;0.02443232,0.1079832;0.3793721;-0.00491507,0.2949287;0.3118789;-0.02718763,0.5250008;0.3925647;-0.08247425,-0.116677;0.361962;-0.006617818,-0.162792;0.167508;0.001196464,-0.1878719;-0.08080317;-0.01338237,0.0712373;0.006670979;-0.03578749,0.09248193;-0.2904223;4.894286E-05,0.08325471;-0.5825214;0.0678205,0.0974194;-0.6111121;0.007630248,-0.06943613;0.001395615;-0.03970737,-0.094281;-0.2955833;-0.005264979,-0.09186701;-0.5882167;0.0607644,-0.09204347;-0.6158829;-0.002227094,-0.00678134;0.399168;0.02401958,68.3576
-0;0;0,-0.0007053021;0.1995208;0.0138182,-0.002736727;0.4993566;0.0218605,0.1077603;0.3767588;-0.02108134,0.2434696;0.2870433;-0.1374175,0.3833876;0.3800771;-0.3225328,-0.1132491;0.3593753;0.0009485297,-0.1610801;0.1652599;0.006552568,-0.1734231;-0.08335932;-0.0166024,0.06860671;0.005999058;-0.04070786,0.1032339;-0.2903736;-0.009656126,0.09336212;-0.5827833;0.05666941,0.106038;-0.6101019;-0.005468857,-0.07270098;0.002396899;-0.033299,-0.0888402;-0.2964106;-0.01200124,-0.08064771;-0.589651;0.05079173,-0.08881461;-0.5570503;-0.04734372,-0.002034526;0.3993592;0.02174771,0;0;0,-0.003470904;0.1993911;0.01520364,-0.008420094;0.4991584;0.02433628,0.1081787;0.3795329;-0.004078487,0.2953947;0.3117195;-0.02282676,0.5271468;0.391944;-0.07135554,-0.1166811;0.3618958;-0.00680529,-0.1625407;0.167359;0.0004298543,-0.1870883;-0.08098535;-0.01448595,0.0713532;0.00669192;-0.03555191,0.09293234;-0.2904234;-0.0001000427,0.08335268;-0.5825548;0.06748286,0.09769491;-0.6107439;0.0068135,-0.0693308;0.001309179;-0.03989394,-0.09416134;-0.2956477;-0.005252246,-0.09131153;-0.5882124;0.06106369,-0.09132069;-0.6164679;-0.001194436,-0.006839579;0.3991717;0.02394136,68.36893
-0;0;0,-0.0007053021;0.1995208;0.0138182,-0.002736727;0.4993566;0.0218605,0.1077603;0.3767588;-0.02108134,0.2434696;0.2870433;-0.1374175,0.3833876;0.3800771;-0.3225328,-0.1132491;0.3593753;0.0009485297,-0.1610801;0.1652599;0.006552568,-0.1734231;-0.08335932;-0.0166024,0.06860671;0.005999058;-0.04070786,0.1032339;-0.2903736;-0.009656126,0.09336212;-0.5827833;0.05666941,0.106038;-0.6101019;-0.005468857,-0.07270098;0.002396899;-0.033299,-0.0888402;-0.2964106;-0.01200124,-0.08064771;-0.589651;0.05079173,-0.08881461;-0.5570503;-0.04734372,-0.002034526;0.3993592;0.02174771,0;0;0,-0.003470904;0.1993911;0.01520364,-0.008420094;0.4991584;0.02433628,0.1081787;0.3795329;-0.004078487,0.2953947;0.3117195;-0.02282676,0.5271468;0.391944;-0.07135554,-0.1166811;0.3618958;-0.00680529,-0.1625407;0.167359;0.0004298543,-0.1870883;-0.08098535;-0.01448595,0.0713532;0.00669192;-0.03555191,0.09293234;-0.2904234;-0.0001000427,0.08335268;-0.5825548;0.06748286,0.09769491;-0.6107439;0.0068135,-0.0693308;0.001309179;-0.03989394,-0.09416134;-0.2956477;-0.005252246,-0.09131153;-0.5882124;0.06106369,-0.09132069;-0.6164679;-0.001194436,-0.006839579;0.3991717;0.02394136,68.38013
-0;0;0,-0.0009002559;0.1995142;0.01390207,-0.003109304;0.499345;0.02210959,0.1075578;0.3767302;-0.02066887,0.2448884;0.2872594;-0.1352781,0.3875536;0.3818661;-0.3174764,-0.1133282;0.3590989;0.000510836,-0.1607403;0.1648775;0.006002332,-0.1735559;-0.08373879;-0.01692544,0.06874561;0.006024245;-0.04046913,0.1030339;-0.2904026;-0.009559372,0.09311975;-0.5827971;0.05682731,0.1059605;-0.6100401;-0.005371019,-0.07255691;0.002340837;-0.03361568,-0.08870241;-0.2964614;-0.01224803,-0.08096524;-0.5897483;0.05038508,-0.08015335;-0.6194307;-0.01003061,-0.00232581;0.3993483;0.02192243,0;0;0,-0.003470904;0.1993911;0.01520364,-0.008420094;0.4991584;0.02433628,0.1081787;0.3795329;-0.004078487,0.2953947;0.3117195;-0.02282676,0.5271468;0.391944;-0.07135554,-0.1166811;0.3618958;-0.00680529,-0.1625407;0.167359;0.0004298543,-0.1870883;-0.08098535;-0.01448595,0.0713532;0.00669192;-0.03555191,0.09293234;-0.2904234;-0.0001000427,0.08335268;-0.5825548;0.06748286,0.09769491;-0.6107439;0.0068135,-0.0693308;0.001309179;-0.03989394,-0.09416134;-0.2956477;-0.005252246,-0.09131153;-0.5882124;0.06106369,-0.09132069;-0.6164679;-0.001194436,-0.006839579;0.3991717;0.02394136,68.40253
-0;0;0,-0.0009002559;0.1995142;0.01390207,-0.003109304;0.499345;0.02210959,0.1075578;0.3767302;-0.02066887,0.2448884;0.2872594;-0.1352781,0.3875536;0.3818661;-0.3174764,-0.1133282;0.3590989;0.000510836,-0.1607403;0.1648775;0.006002332,-0.1735559;-0.08373879;-0.01692544,0.06874561;0.006024245;-0.04046913,0.1030339;-0.2904026;-0.009559372,0.09311975;-0.5827971;0.05682731,0.1059605;-0.6100401;-0.005371019,-0.07255691;0.002340837;-0.03361568,-0.08870241;-0.2964614;-0.01224803,-0.08096524;-0.5897483;0.05038508,-0.08015335;-0.6194307;-0.01003061,-0.00232581;0.3993483;0.02192243,0;0;0,-0.003566764;0.1993849;0.01526281,-0.008597337;0.4991482;0.02447372,0.1081692;0.3795529;-0.003367906,0.2958001;0.3116809;-0.01708181,0.5283294;0.3913995;-0.06263455,-0.1178219;0.3618389;-0.002866212,-0.1637255;0.1671975;-0.0001116258,-0.1883314;-0.08106379;-0.01626302,0.07141781;0.006821545;-0.03539721,0.09291444;-0.2903144;-6.836653E-05,0.08345196;-0.5825604;0.06703417,0.09805637;-0.6108486;0.006555535,-0.06925853;0.001171112;-0.04002354,-0.09431028;-0.2957533;-0.005263139,-0.09164724;-0.5883354;0.06098389,-0.09137411;-0.6163375;-0.001590792,-0.006997266;0.3991619;0.0240576,68.41374
-0;0;0,-0.00105797;0.1995101;0.01394928,-0.003865414;0.4993304;0.02236051,0.107327;0.3768974;-0.01980788,0.2459936;0.2876478;-0.132972,0.3917391;0.3824774;-0.3125982,-0.1139088;0.3594774;0.000227429,-0.1611613;0.1652204;0.005832806,-0.1740217;-0.083378;-0.0172637,0.06887358;0.006063225;-0.04024509,0.1030293;-0.29039;-0.009440906,0.09307674;-0.5828069;0.05684077,0.1059409;-0.6102308;-0.005127408,-0.07249457;0.002328645;-0.03375078,-0.08849987;-0.2964483;-0.01192849,-0.08094072;-0.5897977;0.05043318,-0.08001564;-0.6195641;-0.009869967,-0.002855409;0.3993359;0.02210085,0;0;0,-0.003566764;0.1993849;0.01526281,-0.008597337;0.4991482;0.02447372,0.1081692;0.3795529;-0.003367906,0.2958001;0.3116809;-0.01708181,0.5283294;0.3913995;-0.06263455,-0.1178219;0.3618389;-0.002866212,-0.1637255;0.1671975;-0.0001116258,-0.1883314;-0.08106379;-0.01626302,0.07141781;0.006821545;-0.03539721,0.09291444;-0.2903144;-6.836653E-05,0.08345196;-0.5825604;0.06703417,0.09805637;-0.6108486;0.006555535,-0.06925853;0.001171112;-0.04002354,-0.09431028;-0.2957533;-0.005263139,-0.09164724;-0.5883354;0.06098389,-0.09137411;-0.6163375;-0.001590792,-0.006997266;0.3991619;0.0240576,68.42474
-0;0;0,-0.00105797;0.1995101;0.01394928,-0.003865414;0.4993304;0.02236051,0.107327;0.3768974;-0.01980788,0.2459936;0.2876478;-0.132972,0.3917391;0.3824774;-0.3125982,-0.1139088;0.3594774;0.000227429,-0.1611613;0.1652204;0.005832806,-0.1740217;-0.083378;-0.0172637,0.06887358;0.006063225;-0.04024509,0.1030293;-0.29039;-0.009440906,0.09307674;-0.5828069;0.05684077,0.1059409;-0.6102308;-0.005127408,-0.07249457;0.002328645;-0.03375078,-0.08849987;-0.2964483;-0.01192849,-0.08094072;-0.5897977;0.05043318,-0.08001564;-0.6195641;-0.009869967,-0.002855409;0.3993359;0.02210085,0;0;0,-0.003566764;0.1993849;0.01526281,-0.008597337;0.4991482;0.02447372,0.1081692;0.3795529;-0.003367906,0.2958001;0.3116809;-0.01708181,0.5283294;0.3913995;-0.06263455,-0.1178219;0.3618389;-0.002866212,-0.1637255;0.1671975;-0.0001116258,-0.1883314;-0.08106379;-0.01626302,0.07141781;0.006821545;-0.03539721,0.09291444;-0.2903144;-6.836653E-05,0.08345196;-0.5825604;0.06703417,0.09805637;-0.6108486;0.006555535,-0.06925853;0.001171112;-0.04002354,-0.09431028;-0.2957533;-0.005263139,-0.09164724;-0.5883354;0.06098389,-0.09137411;-0.6163375;-0.001590792,-0.006997266;0.3991619;0.0240576,68.43654
-0;0;0,-0.00105797;0.1995101;0.01394928,-0.003865414;0.4993304;0.02236051,0.107327;0.3768974;-0.01980788,0.2459936;0.2876478;-0.132972,0.3917391;0.3824774;-0.3125982,-0.1139088;0.3594774;0.000227429,-0.1611613;0.1652204;0.005832806,-0.1740217;-0.083378;-0.0172637,0.06887358;0.006063225;-0.04024509,0.1030293;-0.29039;-0.009440906,0.09307674;-0.5828069;0.05684077,0.1059409;-0.6102308;-0.005127408,-0.07249457;0.002328645;-0.03375078,-0.08849987;-0.2964483;-0.01192849,-0.08094072;-0.5897977;0.05043318,-0.08001564;-0.6195641;-0.009869967,-0.002855409;0.3993359;0.02210085,0;0;0,-0.003570203;0.1993918;0.01517177,-0.008594159;0.4991578;0.02430965,0.1083435;0.3796636;-0.002851103,0.2971081;0.3140504;-0.01077566,0.5312589;0.3906435;-0.05328333,-0.1172288;0.3616572;-0.005097754,-0.1622923;0.1668355;-0.001386264,-0.186987;-0.08143875;-0.0172001,0.07150392;0.006781464;-0.03523068,0.09313074;-0.2903795;-0.0001924783,0.08364585;-0.5825828;0.06709255,0.09813363;-0.6115766;0.007510025,-0.06925679;0.001219912;-0.04002511,-0.0940875;-0.2957089;-0.005143322,-0.09146847;-0.5882779;0.061163,-0.0913697;-0.616165;-0.001555398,-0.006996299;0.3991714;0.02391063,68.45802
-0;0;0,-0.001306513;0.1994869;0.01425706,-0.004217099;0.499302;0.02280929,0.1070847;0.3767835;-0.01915176,0.2472182;0.2882137;-0.1310356,0.394391;0.3839728;-0.3089974,-0.1140639;0.3593148;5.550869E-05,-0.161113;0.1650104;0.005726894,-0.1739503;-0.0835733;-0.01754047,0.06903756;0.006167;-0.03994726,0.1030003;-0.2902858;-0.008926235,0.09304627;-0.5827129;0.05731037,0.1058998;-0.6110658;-0.00348115,-0.072269;0.00217905;-0.03424096,-0.08838155;-0.2965205;-0.01145959,-0.08100452;-0.5899168;0.05070297,-0.08000511;-0.6197147;-0.00955721,-0.003174586;0.3993079;0.02250804,0;0;0,-0.003570203;0.1993918;0.01517177,-0.008594159;0.4991578;0.02430965,0.1083435;0.3796636;-0.002851103,0.2971081;0.3140504;-0.01077566,0.5312589;0.3906435;-0.05328333,-0.1172288;0.3616572;-0.005097754,-0.1622923;0.1668355;-0.001386264,-0.186987;-0.08143875;-0.0172001,0.07150392;0.006781464;-0.03523068,0.09313074;-0.2903795;-0.0001924783,0.08364585;-0.5825828;0.06709255,0.09813363;-0.6115766;0.007510025,-0.06925679;0.001219912;-0.04002511,-0.0940875;-0.2957089;-0.005143322,-0.09146847;-0.5882779;0.061163,-0.0913697;-0.616165;-0.001555398,-0.006996299;0.3991714;0.02391063,68.46976
-0;0;0,-0.001481538;0.1994761;0.01439033,-0.004662931;0.4992864;0.0230283,0.1068578;0.3768557;-0.01870447,0.2484768;0.2881315;-0.1285773,0.3997396;0.3845417;-0.3027171,-0.1143701;0.3593033;4.098564E-05,-0.1613289;0.1649668;0.005350439,-0.174414;-0.08358769;-0.0180896,0.06915144;0.006173706;-0.03974876,0.1029826;-0.2902932;-0.00871875,0.09303355;-0.5827252;0.05749693,0.106035;-0.6112158;-0.003085025,-0.07205298;0.002170664;-0.03469376,-0.08832094;-0.2964662;-0.01121225,-0.08078331;-0.5899568;0.05048452,-0.08086871;-0.6183484;-0.01160201,-0.003519468;0.3992935;0.02268888,0;0;0,-0.003570203;0.1993918;0.01517177,-0.008594159;0.4991578;0.02430965,0.1083435;0.3796636;-0.002851103,0.2971081;0.3140504;-0.01077566,0.5312589;0.3906435;-0.05328333,-0.1172288;0.3616572;-0.005097754,-0.1622923;0.1668355;-0.001386264,-0.186987;-0.08143875;-0.0172001,0.07150392;0.006781464;-0.03523068,0.09313074;-0.2903795;-0.0001924783,0.08364585;-0.5825828;0.06709255,0.09813363;-0.6115766;0.007510025,-0.06925679;0.001219912;-0.04002511,-0.0940875;-0.2957089;-0.005143322,-0.09146847;-0.5882779;0.061163,-0.0913697;-0.616165;-0.001555398,-0.006996299;0.3991714;0.02391063,68.4915
-0;0;0,-0.001481538;0.1994761;0.01439033,-0.004662931;0.4992864;0.0230283,0.1068578;0.3768557;-0.01870447,0.2484768;0.2881315;-0.1285773,0.3997396;0.3845417;-0.3027171,-0.1143701;0.3593033;4.098564E-05,-0.1613289;0.1649668;0.005350439,-0.174414;-0.08358769;-0.0180896,0.06915144;0.006173706;-0.03974876,0.1029826;-0.2902932;-0.00871875,0.09303355;-0.5827252;0.05749693,0.106035;-0.6112158;-0.003085025,-0.07205298;0.002170664;-0.03469376,-0.08832094;-0.2964662;-0.01121225,-0.08078331;-0.5899568;0.05048452,-0.08086871;-0.6183484;-0.01160201,-0.003519468;0.3992935;0.02268888,0;0;0,-0.003779376;0.1993895;0.01515039,-0.009146735;0.4991541;0.02412293,0.1082415;0.3797386;-0.001674104,0.2971636;0.3141224;-0.003389009,0.5324432;0.3905442;-0.03948949,-0.1172557;0.3613386;-0.006230569,-0.1622978;0.1665295;-0.001686801,-0.1864921;-0.08174668;-0.01822646,0.07164307;0.006845603;-0.03493435,0.09323869;-0.2903626;-0.0002800301,0.08357444;-0.5824192;0.06761386,0.09801747;-0.6112524;0.007808156,-0.06915669;0.001167099;-0.04019937,-0.09410122;-0.2957087;-0.004949767,-0.09151347;-0.5882632;0.06142223,-0.09143019;-0.6159518;-0.00154176,-0.007403999;0.3991699;0.02379261,68.50314
-0;0;0,-0.001678654;0.1994648;0.01452539,-0.00501567;0.4992714;0.0232318,0.1065857;0.3767924;-0.01844099,0.2498385;0.2877912;-0.1259464,0.4025821;0.3862843;-0.2976103,-0.1146138;0.3593455;-0.0001226012,-0.1614839;0.1649897;0.005265515,-0.1748979;-0.08350737;-0.01859359,0.06927945;0.006192422;-0.03952228,0.1028774;-0.2902929;-0.008415835,0.09292639;-0.5827229;0.05780895,0.1057438;-0.6111643;-0.002876047,-0.07191058;0.002110949;-0.03499161,-0.08835576;-0.2964706;-0.0109378,-0.08097544;-0.5899693;0.0507392,-0.08105852;-0.6178551;-0.01198076,-0.003813331;0.3992793;0.02286753,0;0;0,-0.003779376;0.1993895;0.01515039,-0.009146735;0.4991541;0.02412293,0.1082415;0.3797386;-0.001674104,0.2971636;0.3141224;-0.003389009,0.5324432;0.3905442;-0.03948949,-0.1172557;0.3613386;-0.006230569,-0.1622978;0.1665295;-0.001686801,-0.1864921;-0.08174668;-0.01822646,0.07164307;0.006845603;-0.03493435,0.09323869;-0.2903626;-0.0002800301,0.08357444;-0.5824192;0.06761386,0.09801747;-0.6112524;0.007808156,-0.06915669;0.001167099;-0.04019937,-0.09410122;-0.2957087;-0.004949767,-0.09151347;-0.5882632;0.06142223,-0.09143019;-0.6159518;-0.00154176,-0.007403999;0.3991699;0.02379261,68.52508
-0;0;0,-0.001678654;0.1994648;0.01452539,-0.00501567;0.4992714;0.0232318,0.1065857;0.3767924;-0.01844099,0.2498385;0.2877912;-0.1259464,0.4025821;0.3862843;-0.2976103,-0.1146138;0.3593455;-0.0001226012,-0.1614839;0.1649897;0.005265515,-0.1748979;-0.08350737;-0.01859359,0.06927945;0.006192422;-0.03952228,0.1028774;-0.2902929;-0.008415835,0.09292639;-0.5827229;0.05780895,0.1057438;-0.6111643;-0.002876047,-0.07191058;0.002110949;-0.03499161,-0.08835576;-0.2964706;-0.0109378,-0.08097544;-0.5899693;0.0507392,-0.08105852;-0.6178551;-0.01198076,-0.003813331;0.3992793;0.02286753,0;0;0,-0.003779376;0.1993895;0.01515039,-0.009146735;0.4991541;0.02412293,0.1082415;0.3797386;-0.001674104,0.2971636;0.3141224;-0.003389009,0.5324432;0.3905442;-0.03948949,-0.1172557;0.3613386;-0.006230569,-0.1622978;0.1665295;-0.001686801,-0.1864921;-0.08174668;-0.01822646,0.07164307;0.006845603;-0.03493435,0.09323869;-0.2903626;-0.0002800301,0.08357444;-0.5824192;0.06761386,0.09801747;-0.6112524;0.007808156,-0.06915669;0.001167099;-0.04019937,-0.09410122;-0.2957087;-0.004949767,-0.09151347;-0.5882632;0.06142223,-0.09143019;-0.6159518;-0.00154176,-0.007403999;0.3991699;0.02379261,68.53694
-0;0;0,-0.001711969;0.1994643;0.01452792,-0.00509035;0.4992701;0.02324871,0.1066186;0.3767183;-0.0181099,0.2513214;0.2881045;-0.1239811,0.4072352;0.3873505;-0.2923293,-0.1146157;0.3594939;-0.0006949045,-0.1614667;0.1651377;0.004841188,-0.1749311;-0.08339052;-0.01866276,0.06930365;0.006177396;-0.0394822,0.1028387;-0.2903184;-0.008407163,0.09283533;-0.5827292;0.05789392,0.1054957;-0.6122128;-0.00145312,-0.0718936;0.002123771;-0.0350257,-0.0881934;-0.2964866;-0.01123066,-0.08101729;-0.5899497;0.05063933,-0.08065429;-0.6182771;-0.01152736,-0.003884254;0.399278;0.02288007,0;0;0,-0.003754115;0.1994038;0.01496848,-0.009102901;0.4991769;0.02366787,0.1084676;0.3795604;-0.001009826,0.2980449;0.3160115;0.003681134,0.5352515;0.3895519;-0.02503878,-0.1170132;0.3613691;-0.007350171,-0.1614712;0.1664338;-0.002480849,-0.1857499;-0.08185792;-0.01866005,0.07170738;0.006815426;-0.03480804,0.09352843;-0.2903913;-0.0002827644,0.08360634;-0.5824088;0.06774173,0.09822792;-0.6112509;0.00799115,-0.06911578;0.00120592;-0.04026853,-0.09397004;-0.2956468;-0.00476158,-0.0909244;-0.588011;0.06242399,-0.09218595;-0.6150677;-0.001299482,-0.007366654;0.3991923;0.02342391,68.56018
-0;0;0,-0.001711969;0.1994643;0.01452792,-0.00509035;0.4992701;0.02324871,0.1066186;0.3767183;-0.0181099,0.2513214;0.2881045;-0.1239811,0.4072352;0.3873505;-0.2923293,-0.1146157;0.3594939;-0.0006949045,-0.1614667;0.1651377;0.004841188,-0.1749311;-0.08339052;-0.01866276,0.06930365;0.006177396;-0.0394822,0.1028387;-0.2903184;-0.008407163,0.09283533;-0.5827292;0.05789392,0.1054957;-0.6122128;-0.00145312,-0.0718936;0.002123771;-0.0350257,-0.0881934;-0.2964866;-0.01123066,-0.08101729;-0.5899497;0.05063933,-0.08065429;-0.6182771;-0.01152736,-0.003884254;0.399278;0.02288007,0;0;0,-0.003754115;0.1994038;0.01496848,-0.009102901;0.4991769;0.02366787,0.1084676;0.3795604;-0.001009826,0.2980449;0.3160115;0.003681134,0.5352515;0.3895519;-0.02503878,-0.1170132;0.3613691;-0.007350171,-0.1614712;0.1664338;-0.002480849,-0.1857499;-0.08185792;-0.01866005,0.07170738;0.006815426;-0.03480804,0.09352843;-0.2903913;-0.0002827644,0.08360634;-0.5824088;0.06774173,0.09822792;-0.6112509;0.00799115,-0.06911578;0.00120592;-0.04026853,-0.09397004;-0.2956468;-0.00476158,-0.0909244;-0.588011;0.06242399,-0.09218595;-0.6150677;-0.001299482,-0.007366654;0.3991923;0.02342391,68.58128
-0;0;0,-0.001784244;0.1994634;0.01453251,-0.005253008;0.4992691;0.02321663,0.1065708;0.3765852;-0.0178136,0.252688;0.2879993;-0.1217479,0.4118949;0.3886147;-0.286155,-0.1144874;0.3591971;-0.001441212,-0.1614597;0.1648852;0.004599602,-0.175018;-0.08355579;-0.01975692,0.06937613;0.006141915;-0.03936026,0.1027869;-0.2903725;-0.008328617,0.09275321;-0.5826715;0.05845932,0.1057365;-0.61145;-0.001751732,-0.07181783;0.00215038;-0.03517919,-0.08813301;-0.2964423;-0.01117413,-0.08090073;-0.5899168;0.0506354,-0.08071303;-0.6181939;-0.01159521,-0.004020692;0.3992773;0.02286292,0;0;0,-0.003754115;0.1994038;0.01496848,-0.009102901;0.4991769;0.02366787,0.1084676;0.3795604;-0.001009826,0.2980449;0.3160115;0.003681134,0.5352515;0.3895519;-0.02503878,-0.1170132;0.3613691;-0.007350171,-0.1614712;0.1664338;-0.002480849,-0.1857499;-0.08185792;-0.01866005,0.07170738;0.006815426;-0.03480804,0.09352843;-0.2903913;-0.0002827644,0.08360634;-0.5824088;0.06774173,0.09822792;-0.6112509;0.00799115,-0.06911578;0.00120592;-0.04026853,-0.09397004;-0.2956468;-0.00476158,-0.0909244;-0.588011;0.06242399,-0.09218595;-0.6150677;-0.001299482,-0.007366654;0.3991923;0.02342391,68.60372
-0;0;0,-0.001784244;0.1994634;0.01453251,-0.005253008;0.4992691;0.02321663,0.1065708;0.3765852;-0.0178136,0.252688;0.2879993;-0.1217479,0.4118949;0.3886147;-0.286155,-0.1144874;0.3591971;-0.001441212,-0.1614597;0.1648852;0.004599602,-0.175018;-0.08355579;-0.01975692,0.06937613;0.006141915;-0.03936026,0.1027869;-0.2903725;-0.008328617,0.09275321;-0.5826715;0.05845932,0.1057365;-0.61145;-0.001751732,-0.07181783;0.00215038;-0.03517919,-0.08813301;-0.2964423;-0.01117413,-0.08090073;-0.5899168;0.0506354,-0.08071303;-0.6181939;-0.01159521,-0.004020692;0.3992773;0.02286292,0;0;0,-0.003781715;0.199413;0.01483728,-0.009196424;0.499192;0.02329074,0.1086328;0.3795224;-0.0001094472,0.2982908;0.3166988;0.009002884,0.5365964;0.3888407;-0.01349112,-0.1169595;0.3614392;-0.008153876,-0.1612471;0.1664762;-0.002857558,-0.1853298;-0.08181053;-0.01940121,0.0717905;0.006919584;-0.03461565,0.09385233;-0.2903141;-0.0004773065,0.08380523;-0.5822663;0.06780827,0.0986923;-0.6116703;0.008872896,-0.0690217;0.001148817;-0.04043123,-0.09373049;-0.2956904;-0.004710857,-0.09078732;-0.5880653;0.06243272,-0.0920634;-0.6158181;-0.000439208,-0.007438139;0.3992076;0.02312916,68.61504
-0;0;0,-0.001903998;0.199458;0.01458988,-0.005457289;0.4992622;0.02328939,0.1064283;0.3765222;-0.01760647,0.2542551;0.2879041;-0.1190662,0.415621;0.3902378;-0.2802768,-0.1144784;0.3591991;-0.002229886,-0.1615261;0.1649169;0.004169423,-0.1751181;-0.08356179;-0.01978007,0.06945617;0.006130144;-0.03922066,0.1027284;-0.2904107;-0.008293543,0.09231281;-0.5826605;0.05865118,0.107854;-0.6106988;-0.001916904,-0.07173336;0.002155842;-0.03535077,-0.08786333;-0.2964675;-0.01160297,-0.08095698;-0.5898881;0.05049878,-0.08098613;-0.6180463;-0.01188144,-0.004201382;0.3992707;0.02293447,0;0;0,-0.003781715;0.199413;0.01483728,-0.009196424;0.499192;0.02329074,0.1086328;0.3795224;-0.0001094472,0.2982908;0.3166988;0.009002884,0.5365964;0.3888407;-0.01349112,-0.1169595;0.3614392;-0.008153876,-0.1612471;0.1664762;-0.002857558,-0.1853298;-0.08181053;-0.01940121,0.0717905;0.006919584;-0.03461565,0.09385233;-0.2903141;-0.0004773065,0.08380523;-0.5822663;0.06780827,0.0986923;-0.6116703;0.008872896,-0.0690217;0.001148817;-0.04043123,-0.09373049;-0.2956904;-0.004710857,-0.09078732;-0.5880653;0.06243272,-0.0920634;-0.6158181;-0.000439208,-0.007438139;0.3992076;0.02312916,68.63724
-0;0;0,-0.001903998;0.199458;0.01458988,-0.005457289;0.4992622;0.02328939,0.1064283;0.3765222;-0.01760647,0.2542551;0.2879041;-0.1190662,0.415621;0.3902378;-0.2802768,-0.1144784;0.3591991;-0.002229886,-0.1615261;0.1649169;0.004169423,-0.1751181;-0.08356179;-0.01978007,0.06945617;0.006130144;-0.03922066,0.1027284;-0.2904107;-0.008293543,0.09231281;-0.5826605;0.05865118,0.107854;-0.6106988;-0.001916904,-0.07173336;0.002155842;-0.03535077,-0.08786333;-0.2964675;-0.01160297,-0.08095698;-0.5898881;0.05049878,-0.08098613;-0.6180463;-0.01188144,-0.004201382;0.3992707;0.02293447,0;0;0,-0.003781715;0.199413;0.01483728,-0.009196424;0.499192;0.02329074,0.1086328;0.3795224;-0.0001094472,0.2982908;0.3166988;0.009002884,0.5365964;0.3888407;-0.01349112,-0.1169595;0.3614392;-0.008153876,-0.1612471;0.1664762;-0.002857558,-0.1853298;-0.08181053;-0.01940121,0.0717905;0.006919584;-0.03461565,0.09385233;-0.2903141;-0.0004773065,0.08380523;-0.5822663;0.06780827,0.0986923;-0.6116703;0.008872896,-0.0690217;0.001148817;-0.04043123,-0.09373049;-0.2956904;-0.004710857,-0.09078732;-0.5880653;0.06243272,-0.0920634;-0.6158181;-0.000439208,-0.007438139;0.3992076;0.02312916,68.64854
-0;0;0,-0.002061143;0.1994573;0.01457822,-0.005814919;0.4992617;0.02317321,0.1063175;0.3764838;-0.01715805,0.2552802;0.2881812;-0.1172219,0.4199842;0.3916894;-0.2742527,-0.1146393;0.3591313;-0.002765639,-0.1617488;0.1648723;0.003879141,-0.1753022;-0.08361921;-0.01995896,0.06953394;0.006170671;-0.03907624,0.1025974;-0.2903902;-0.008116895,0.09236655;-0.5827039;0.05857627,0.1075112;-0.611073;-0.001664314,-0.07167453;0.002094337;-0.03547359,-0.08770166;-0.2965226;-0.01157559,-0.08116235;-0.5899606;0.05048386,-0.08110327;-0.6177915;-0.0123042,-0.004493814;0.3992709;0.02286204,0;0;0,-0.003832027;0.1994188;0.01474657,-0.009332952;0.4992003;0.0230502,0.1088351;0.3798732;0.000988612,0.2983347;0.3173312;0.01434468,0.5379599;0.38733;0.0009301733,-0.1168915;0.3612253;-0.008677581,-0.1609887;0.1662236;-0.003220167,-0.1849444;-0.08207688;-0.01974259,0.07188624;0.006921775;-0.03441595,0.09381086;-0.2903444;-0.0004724599,0.08430922;-0.5823853;0.06751165,0.09817561;-0.6122113;0.008898221,-0.06896826;0.001166069;-0.04052185,-0.09356975;-0.2955663;-0.003851641,-0.09037478;-0.5880191;0.06294008,-0.09143631;-0.6160319;0.0003870353,-0.007543472;0.3992164;0.02294025,68.67066
-0;0;0,-0.002061143;0.1994573;0.01457822,-0.005814919;0.4992617;0.02317321,0.1063175;0.3764838;-0.01715805,0.2552802;0.2881812;-0.1172219,0.4199842;0.3916894;-0.2742527,-0.1146393;0.3591313;-0.002765639,-0.1617488;0.1648723;0.003879141,-0.1753022;-0.08361921;-0.01995896,0.06953394;0.006170671;-0.03907624,0.1025974;-0.2903902;-0.008116895,0.09236655;-0.5827039;0.05857627,0.1075112;-0.611073;-0.001664314,-0.07167453;0.002094337;-0.03547359,-0.08770166;-0.2965226;-0.01157559,-0.08116235;-0.5899606;0.05048386,-0.08110327;-0.6177915;-0.0123042,-0.004493814;0.3992709;0.02286204,0;0;0,-0.003832027;0.1994188;0.01474657,-0.009332952;0.4992003;0.0230502,0.1088351;0.3798732;0.000988612,0.2983347;0.3173312;0.01434468,0.5379599;0.38733;0.0009301733,-0.1168915;0.3612253;-0.008677581,-0.1609887;0.1662236;-0.003220167,-0.1849444;-0.08207688;-0.01974259,0.07188624;0.006921775;-0.03441595,0.09381086;-0.2903444;-0.0004724599,0.08430922;-0.5823853;0.06751165,0.09817561;-0.6122113;0.008898221,-0.06896826;0.001166069;-0.04052185,-0.09356975;-0.2955663;-0.003851641,-0.09037478;-0.5880191;0.06294008,-0.09143631;-0.6160319;0.0003870353,-0.007543472;0.3992164;0.02294025,68.68179
-0;0;0,-0.002179479;0.1994568;0.01456889,-0.006039612;0.4992613;0.02310169,0.1061878;0.3765168;-0.01704051,0.256541;0.2884936;-0.1152538,0.4251501;0.3921035;-0.2680148,-0.1147804;0.3595023;-0.003606344,-0.1620913;0.1652994;0.003243003,-0.1755826;-0.08318898;-0.02066343,0.06961221;0.006188525;-0.03893382,0.1023974;-0.2904137;-0.008075247,0.09226312;-0.5827189;0.05867039,0.1070356;-0.6113684;-0.001296539,-0.07164235;0.002060735;-0.03554049,-0.08755029;-0.2965544;-0.01154185,-0.081311;-0.5899701;0.05065403,-0.08324964;-0.6193658;-0.01011254,-0.004688501;0.3992708;0.02281793,0;0;0,-0.003832027;0.1994188;0.01474657,-0.009332952;0.4992003;0.0230502,0.1088351;0.3798732;0.000988612,0.2983347;0.3173312;0.01434468,0.5379599;0.38733;0.0009301733,-0.1168915;0.3612253;-0.008677581,-0.1609887;0.1662236;-0.003220167,-0.1849444;-0.08207688;-0.01974259,0.07188624;0.006921775;-0.03441595,0.09381086;-0.2903444;-0.0004724599,0.08430922;-0.5823853;0.06751165,0.09817561;-0.6122113;0.008898221,-0.06896826;0.001166069;-0.04052185,-0.09356975;-0.2955663;-0.003851641,-0.09037478;-0.5880191;0.06294008,-0.09143631;-0.6160319;0.0003870353,-0.007543472;0.3992164;0.02294025,68.69292
-0;0;0,-0.002179479;0.1994568;0.01456889,-0.006039612;0.4992613;0.02310169,0.1061878;0.3765168;-0.01704051,0.256541;0.2884936;-0.1152538,0.4251501;0.3921035;-0.2680148,-0.1147804;0.3595023;-0.003606344,-0.1620913;0.1652994;0.003243003,-0.1755826;-0.08318898;-0.02066343,0.06961221;0.006188525;-0.03893382,0.1023974;-0.2904137;-0.008075247,0.09226312;-0.5827189;0.05867039,0.1070356;-0.6113684;-0.001296539,-0.07164235;0.002060735;-0.03554049,-0.08755029;-0.2965544;-0.01154185,-0.081311;-0.5899701;0.05065403,-0.08324964;-0.6193658;-0.01011254,-0.004688501;0.3992708;0.02281793,0;0;0,-0.003970108;0.1994247;0.01462957,-0.009539823;0.4992076;0.02283015,0.1088503;0.379876;0.001913378,0.2980199;0.3174015;0.01957066,0.5383072;0.3861519;0.0136244,-0.1168249;0.3614447;-0.009966478,-0.1604593;0.1663425;-0.004382728,-0.1848078;-0.08194587;-0.02050791,0.07237931;0.007140048;-0.03332049,0.09380432;-0.2902915;-0.0005264245,0.08418822;-0.5823265;0.06746684,0.09788723;-0.6120669;0.0086977,-0.06883475;0.00109063;-0.04075029,-0.09337871;-0.2956586;-0.004178505,-0.09046979;-0.5881546;0.0624374,-0.09147656;-0.6157133;-0.0006785803,-0.00773031;0.399224;0.02276109,68.70407
-0;0;0,-0.002302012;0.1994509;0.01463033,-0.006235955;0.4992522;0.02323636,0.1061246;0.3765388;-0.01660845,0.2583163;0.2890475;-0.1124363,0.4294764;0.3936892;-0.2616152,-0.1150024;0.3597462;-0.00370745,-0.1623224;0.1655408;0.003008388,-0.1760034;-0.08290981;-0.0211804,0.06977035;0.006159734;-0.03865431,0.1022092;-0.2904925;-0.007910501,0.0922929;-0.5827856;0.05892066,0.1065277;-0.6109879;-0.00175697,-0.07134874;0.002160079;-0.0361205,-0.08734259;-0.2964047;-0.01155857,-0.08103546;-0.5898117;0.05067141,-0.0829242;-0.6192371;-0.0100578,-0.004871597;0.399262;0.02293275,0;0;0,-0.003970108;0.1994247;0.01462957,-0.009539823;0.4992076;0.02283015,0.1088503;0.379876;0.001913378,0.2980199;0.3174015;0.01957066,0.5383072;0.3861519;0.0136244,-0.1168249;0.3614447;-0.009966478,-0.1604593;0.1663425;-0.004382728,-0.1848078;-0.08194587;-0.02050791,0.07237931;0.007140048;-0.03332049,0.09380432;-0.2902915;-0.0005264245,0.08418822;-0.5823265;0.06746684,0.09788723;-0.6120669;0.0086977,-0.06883475;0.00109063;-0.04075029,-0.09337871;-0.2956586;-0.004178505,-0.09046979;-0.5881546;0.0624374,-0.09147656;-0.6157133;-0.0006785803,-0.00773031;0.399224;0.02276109,68.72598
-0;0;0,-0.002302012;0.1994509;0.01463033,-0.006235955;0.4992522;0.02323636,0.1061246;0.3765388;-0.01660845,0.2583163;0.2890475;-0.1124363,0.4294764;0.3936892;-0.2616152,-0.1150024;0.3597462;-0.00370745,-0.1623224;0.1655408;0.003008388,-0.1760034;-0.08290981;-0.0211804,0.06977035;0.006159734;-0.03865431,0.1022092;-0.2904925;-0.007910501,0.0922929;-0.5827856;0.05892066,0.1065277;-0.6109879;-0.00175697,-0.07134874;0.002160079;-0.0361205,-0.08734259;-0.2964047;-0.01155857,-0.08103546;-0.5898117;0.05067141,-0.0829242;-0.6192371;-0.0100578,-0.004871597;0.399262;0.02293275,0;0;0,-0.003970108;0.1994247;0.01462957,-0.009539823;0.4992076;0.02283015,0.1088503;0.379876;0.001913378,0.2980199;0.3174015;0.01957066,0.5383072;0.3861519;0.0136244,-0.1168249;0.3614447;-0.009966478,-0.1604593;0.1663425;-0.004382728,-0.1848078;-0.08194587;-0.02050791,0.07237931;0.007140048;-0.03332049,0.09380432;-0.2902915;-0.0005264245,0.08418822;-0.5823265;0.06746684,0.09788723;-0.6120669;0.0086977,-0.06883475;0.00109063;-0.04075029,-0.09337871;-0.2956586;-0.004178505,-0.09046979;-0.5881546;0.0624374,-0.09147656;-0.6157133;-0.0006785803,-0.00773031;0.399224;0.02276109,68.73761
-0;0;0,-0.002302012;0.1994509;0.01463033,-0.006235955;0.4992522;0.02323636,0.1061246;0.3765388;-0.01660845,0.2583163;0.2890475;-0.1124363,0.4294764;0.3936892;-0.2616152,-0.1150024;0.3597462;-0.00370745,-0.1623224;0.1655408;0.003008388,-0.1760034;-0.08290981;-0.0211804,0.06977035;0.006159734;-0.03865431,0.1022092;-0.2904925;-0.007910501,0.0922929;-0.5827856;0.05892066,0.1065277;-0.6109879;-0.00175697,-0.07134874;0.002160079;-0.0361205,-0.08734259;-0.2964047;-0.01155857,-0.08103546;-0.5898117;0.05067141,-0.0829242;-0.6192371;-0.0100578,-0.004871597;0.399262;0.02293275,0;0;0,-0.003955081;0.1994338;0.01450995,-0.009497019;0.4992224;0.02251356,0.1090393;0.3798055;0.002638584,0.2978551;0.3177326;0.0248987,0.5384445;0.3855994;0.02160248,-0.1167377;0.3617256;-0.01070044,-0.1597113;0.1664612;-0.005690338,-0.1845242;-0.08181085;-0.02135276,0.0725904;0.007254806;-0.03283294,0.09393065;-0.2902513;-0.0006657802,0.08407339;-0.5822393;0.06749456,0.09784326;-0.6117551;0.008438349,-0.06865013;0.001064769;-0.04106123,-0.09330881;-0.2956494;-0.004282981,-0.09066545;-0.588176;0.06220941,-0.09092407;-0.6165091;4.946068E-05,-0.007697415;0.3992386;0.02251071,68.74896
-0;0;0,-0.002542827;0.1994493;0.01461278,-0.006695167;0.4992511;0.0230706,0.1048941;0.3777546;-0.01963323,0.2596997;0.2882333;-0.1091942,0.431011;0.3962774;-0.255751,-0.1152535;0.3595222;-0.004038192,-0.1627099;0.1653567;0.00286594,-0.1765074;-0.08306244;-0.02157888,0.06992542;0.006161208;-0.03837284,0.1019075;-0.2905464;-0.007685324,0.09210156;-0.5828837;0.05896889,0.1060569;-0.6114151;-0.001347423,-0.07117305;0.002162262;-0.03646534,-0.08750066;-0.2963616;-0.01162763,-0.08139601;-0.5897408;0.05075346,-0.08288533;-0.6191439;-0.01001602,-0.005259838;0.3992617;0.02283502,0;0;0,-0.003955081;0.1994338;0.01450995,-0.009497019;0.4992224;0.02251356,0.1090393;0.3798055;0.002638584,0.2978551;0.3177326;0.0248987,0.5384445;0.3855994;0.02160248,-0.1167377;0.3617256;-0.01070044,-0.1597113;0.1664612;-0.005690338,-0.1845242;-0.08181085;-0.02135276,0.0725904;0.007254806;-0.03283294,0.09393065;-0.2902513;-0.0006657802,0.08407339;-0.5822393;0.06749456,0.09784326;-0.6117551;0.008438349,-0.06865013;0.001064769;-0.04106123,-0.09330881;-0.2956494;-0.004282981,-0.09066545;-0.588176;0.06220941,-0.09092407;-0.6165091;4.946068E-05,-0.007697415;0.3992386;0.02251071,68.7712
-0;0;0,-0.002542827;0.1994493;0.01461278,-0.006695167;0.4992511;0.0230706,0.1048941;0.3777546;-0.01963323,0.2596997;0.2882333;-0.1091942,0.431011;0.3962774;-0.255751,-0.1152535;0.3595222;-0.004038192,-0.1627099;0.1653567;0.00286594,-0.1765074;-0.08306244;-0.02157888,0.06992542;0.006161208;-0.03837284,0.1019075;-0.2905464;-0.007685324,0.09210156;-0.5828837;0.05896889,0.1060569;-0.6114151;-0.001347423,-0.07117305;0.002162262;-0.03646534,-0.08750066;-0.2963616;-0.01162763,-0.08139601;-0.5897408;0.05075346,-0.08288533;-0.6191439;-0.01001602,-0.005259838;0.3992617;0.02283502,0;0;0,-0.003955081;0.1994338;0.01450995,-0.009497019;0.4992224;0.02251356,0.1090393;0.3798055;0.002638584,0.2978551;0.3177326;0.0248987,0.5384445;0.3855994;0.02160248,-0.1167377;0.3617256;-0.01070044,-0.1597113;0.1664612;-0.005690338,-0.1845242;-0.08181085;-0.02135276,0.0725904;0.007254806;-0.03283294,0.09393065;-0.2902513;-0.0006657802,0.08407339;-0.5822393;0.06749456,0.09784326;-0.6117551;0.008438349,-0.06865013;0.001064769;-0.04106123,-0.09330881;-0.2956494;-0.004282981,-0.09066545;-0.588176;0.06220941,-0.09092407;-0.6165091;4.946068E-05,-0.007697415;0.3992386;0.02251071,68.78249
-0;0;0,-0.002838667;0.1994467;0.01459296,-0.007234775;0.4992476;0.02293993,0.1041993;0.378211;-0.02052946,0.2607657;0.2886925;-0.1069782,0.4343987;0.3983865;-0.2495223,-0.1156382;0.3596068;-0.004564984,-0.1630473;0.1654316;0.002390551,-0.1769655;-0.08303997;-0.02144532,0.06999207;0.006164932;-0.03825054,0.1014665;-0.2905831;-0.007429508,0.09162253;-0.5829213;0.059215,0.1056934;-0.6114281;-0.001106553,-0.07119535;0.00216199;-0.0364218,-0.08796745;-0.2963208;-0.01138696,-0.08191863;-0.5895243;0.05181982,-0.08233451;-0.6189101;-0.008989062,-0.005723996;0.3992591;0.02275847,0;0;0,-0.004098522;0.1994375;0.01441824,-0.009871778;0.4992284;0.02214443,0.1089523;0.379873;0.003421415,0.2970276;0.3170387;0.02948923,0.5378093;0.3842563;0.03193881,-0.1167666;0.3616624;-0.01166099,-0.1595199;0.1663501;-0.006632656,-0.1846038;-0.08193122;-0.02170478,0.07280273;0.00738855;-0.03232912,0.0939289;-0.2901904;-0.0006994829,0.08369356;-0.5821339;0.06759588,0.09836764;-0.6111706;0.00811588,-0.06839784;0.0009270897;-0.04148343,-0.09339781;-0.2957118;-0.004329816,-0.09082926;-0.5883324;0.06175063,-0.09152003;-0.6174154;0.0005510487,-0.007966885;0.3992466;0.02225134,68.80486
-0;0;0,-0.002981084;0.1994413;0.01463799,-0.007603355;0.4992384;0.02299921,0.1046489;0.3781897;-0.01855151,0.2617944;0.2895428;-0.1048477,0.4387427;0.3972112;-0.2448362,-0.1158083;0.3594133;-0.004708411,-0.1630667;0.1652;0.002207476,-0.1771231;-0.08322608;-0.02201858,0.07011796;0.00618658;-0.03801576,0.1014345;-0.2905822;-0.007233029,0.09159609;-0.5829232;0.05940009,0.1056204;-0.6115418;-0.0007864945,-0.07097483;0.002108159;-0.03685279,-0.08813149;-0.2963113;-0.01132834,-0.08151828;-0.5893822;0.05243479,-0.08182546;-0.6189076;-0.008192036,-0.006010426;0.3992513;0.02281176,0;0;0,-0.004098522;0.1994375;0.01441824,-0.009871778;0.4992284;0.02214443,0.1089523;0.379873;0.003421415,0.2970276;0.3170387;0.02948923,0.5378093;0.3842563;0.03193881,-0.1167666;0.3616624;-0.01166099,-0.1595199;0.1663501;-0.006632656,-0.1846038;-0.08193122;-0.02170478,0.07280273;0.00738855;-0.03232912,0.0939289;-0.2901904;-0.0006994829,0.08369356;-0.5821339;0.06759588,0.09836764;-0.6111706;0.00811588,-0.06839784;0.0009270897;-0.04148343,-0.09339781;-0.2957118;-0.004329816,-0.09082926;-0.5883324;0.06175063,-0.09152003;-0.6174154;0.0005510487,-0.007966885;0.3992466;0.02225134,68.82821
-0;0;0,-0.002981084;0.1994413;0.01463799,-0.007603355;0.4992384;0.02299921,0.1046489;0.3781897;-0.01855151,0.2617944;0.2895428;-0.1048477,0.4387427;0.3972112;-0.2448362,-0.1158083;0.3594133;-0.004708411,-0.1630667;0.1652;0.002207476,-0.1771231;-0.08322608;-0.02201858,0.07011796;0.00618658;-0.03801576,0.1014345;-0.2905822;-0.007233029,0.09159609;-0.5829232;0.05940009,0.1056204;-0.6115418;-0.0007864945,-0.07097483;0.002108159;-0.03685279,-0.08813149;-0.2963113;-0.01132834,-0.08151828;-0.5893822;0.05243479,-0.08182546;-0.6189076;-0.008192036,-0.006010426;0.3992513;0.02281176,0;0;0,-0.004098522;0.1994375;0.01441824,-0.009871778;0.4992284;0.02214443,0.1089523;0.379873;0.003421415,0.2970276;0.3170387;0.02948923,0.5378093;0.3842563;0.03193881,-0.1167666;0.3616624;-0.01166099,-0.1595199;0.1663501;-0.006632656,-0.1846038;-0.08193122;-0.02170478,0.07280273;0.00738855;-0.03232912,0.0939289;-0.2901904;-0.0006994829,0.08369356;-0.5821339;0.06759588,0.09836764;-0.6111706;0.00811588,-0.06839784;0.0009270897;-0.04148343,-0.09339781;-0.2957118;-0.004329816,-0.09082926;-0.5883324;0.06175063,-0.09152003;-0.6174154;0.0005510487,-0.007966885;0.3992466;0.02225134,68.84946
-0;0;0,-0.003322944;0.199438;0.01460935,-0.008319842;0.4992331;0.02279538,0.1044405;0.3779731;-0.01752833,0.2627597;0.2905312;-0.1029036,0.4416184;0.3980671;-0.2405466,-0.11632;0.3594718;-0.005230933,-0.1636842;0.1652885;0.001803152,-0.1777302;-0.08310378;-0.02277297,0.07036919;0.006193982;-0.03754745,0.1009961;-0.290665;-0.006940817,0.09130855;-0.5830234;0.05963783,0.1050745;-0.6118892;-0.0002843365,-0.07063397;0.002097102;-0.03750258,-0.08841593;-0.2962117;-0.011127,-0.08214761;-0.5894163;0.05205371,-0.08282923;-0.6186844;-0.008906167,-0.006600316;0.3992479;0.02268767,0;0;0,-0.004488192;0.1994426;0.01422998,-0.01046946;0.4992321;0.02182603,0.1085685;0.3796375;0.004434239,0.2963726;0.3182895;0.03551581,0.5376022;0.3836238;0.04181689,-0.1171116;0.3615887;-0.01245648,-0.1595598;0.166204;-0.007666088,-0.1850362;-0.08207262;-0.0221463,0.07313568;0.007438611;-0.03155692,0.09350839;-0.2902779;-0.0007371604,0.08316962;-0.5822535;0.06740483,0.09757268;-0.6112583;0.007816348,-0.06821049;0.000867085;-0.04179208,-0.09353004;-0.295714;-0.004394747,-0.09126227;-0.5883799;0.06149577,-0.0919633;-0.6161963;-0.001306303,-0.008508185;0.3992515;0.02199367,68.87193
-0;0;0,-0.003362081;0.1994454;0.01450015,-0.008397849;0.4992422;0.02260445,0.1045921;0.3777758;-0.01694623,0.2638104;0.2912492;-0.1015788,0.445843;0.398782;-0.2349986,-0.116269;0.3601926;-0.006872177,-0.1650079;0.1663484;0.0001220941,-0.1788837;-0.08215836;-0.02336964,0.07051093;0.006127583;-0.03729157,0.1010359;-0.2907442;-0.006707933,0.0914578;-0.5831306;0.05976355,0.1062803;-0.6123257;0.0005315281,-0.07042665;0.002244841;-0.03788203,-0.08815084;-0.2960387;-0.01118419,-0.08182897;-0.5891865;0.05225383,-0.081965;-0.6188391;-0.008206464,-0.006678172;0.399257;0.02251879,0;0;0,-0.004488192;0.1994426;0.01422998,-0.01046946;0.4992321;0.02182603,0.1085685;0.3796375;0.004434239,0.2963726;0.3182895;0.03551581,0.5376022;0.3836238;0.04181689,-0.1171116;0.3615887;-0.01245648,-0.1595598;0.166204;-0.007666088,-0.1850362;-0.08207262;-0.0221463,0.07313568;0.007438611;-0.03155692,0.09350839;-0.2902779;-0.0007371604,0.08316962;-0.5822535;0.06740483,0.09757268;-0.6112583;0.007816348,-0.06821049;0.000867085;-0.04179208,-0.09353004;-0.295714;-0.004394747,-0.09126227;-0.5883799;0.06149577,-0.0919633;-0.6161963;-0.001306303,-0.008508185;0.3992515;0.02199367,68.89378
-0;0;0,-0.003362081;0.1994454;0.01450015,-0.008397849;0.4992422;0.02260445,0.1045921;0.3777758;-0.01694623,0.2638104;0.2912492;-0.1015788,0.445843;0.398782;-0.2349986,-0.116269;0.3601926;-0.006872177,-0.1650079;0.1663484;0.0001220941,-0.1788837;-0.08215836;-0.02336964,0.07051093;0.006127583;-0.03729157,0.1010359;-0.2907442;-0.006707933,0.0914578;-0.5831306;0.05976355,0.1062803;-0.6123257;0.0005315281,-0.07042665;0.002244841;-0.03788203,-0.08815084;-0.2960387;-0.01118419,-0.08182897;-0.5891865;0.05225383,-0.081965;-0.6188391;-0.008206464,-0.006678172;0.399257;0.02251879,0;0;0,-0.004488192;0.1994426;0.01422998,-0.01046946;0.4992321;0.02182603,0.1085685;0.3796375;0.004434239,0.2963726;0.3182895;0.03551581,0.5376022;0.3836238;0.04181689,-0.1171116;0.3615887;-0.01245648,-0.1595598;0.166204;-0.007666088,-0.1850362;-0.08207262;-0.0221463,0.07313568;0.007438611;-0.03155692,0.09350839;-0.2902779;-0.0007371604,0.08316962;-0.5822535;0.06740483,0.09757268;-0.6112583;0.007816348,-0.06821049;0.000867085;-0.04179208,-0.09353004;-0.295714;-0.004394747,-0.09126227;-0.5883799;0.06149577,-0.0919633;-0.6161963;-0.001306303,-0.008508185;0.3992515;0.02199367,68.90565
-0;0;0,-0.003362081;0.1994454;0.01450015,-0.008397849;0.4992422;0.02260445,0.1045921;0.3777758;-0.01694623,0.2638104;0.2912492;-0.1015788,0.445843;0.398782;-0.2349986,-0.116269;0.3601926;-0.006872177,-0.1650079;0.1663484;0.0001220941,-0.1788837;-0.08215836;-0.02336964,0.07051093;0.006127583;-0.03729157,0.1010359;-0.2907442;-0.006707933,0.0914578;-0.5831306;0.05976355,0.1062803;-0.6123257;0.0005315281,-0.07042665;0.002244841;-0.03788203,-0.08815084;-0.2960387;-0.01118419,-0.08182897;-0.5891865;0.05225383,-0.081965;-0.6188391;-0.008206464,-0.006678172;0.399257;0.02251879,0;0;0,-0.004580559;0.199451;0.01408282,-0.01061138;0.4992439;0.02147481,0.1086465;0.3799178;0.005283104,0.2959643;0.3181486;0.03839842,0.5373978;0.3821555;0.04902708,-0.1171422;0.3616359;-0.0130691,-0.1531199;0.164908;-0.01500725,-0.1796516;-0.08321096;-0.03027267,0.07348288;0.007388568;-0.03075185,0.09372751;-0.2904342;-0.00088875,0.08328447;-0.5823404;0.06753399,0.09763544;-0.6112806;0.007847331,-0.06804799;0.0008896964;-0.04205568,-0.09341989;-0.2956854;-0.004646111,-0.09186886;-0.5884366;0.06088522,-0.09147545;-0.6170535;-0.000914678,-0.008636707;0.3992637;0.02172611,68.91798
-0;0;0,-0.003508587;0.1994437;0.01448793,-0.008713242;0.4992375;0.02259728,0.1046384;0.3776545;-0.01598777,0.264762;0.2920197;-0.09981565,0.4494706;0.3986321;-0.2302631,-0.1164426;0.3601097;-0.007129828,-0.1646705;0.1661255;-0.0004801694,-0.1787462;-0.0824421;-0.02319667,0.07070675;0.006165951;-0.03691254,0.1008773;-0.2907437;-0.006344439,0.09133677;-0.5831245;0.06015696,0.1059406;-0.6124613;0.001060426,-0.07015697;0.002165291;-0.03838374,-0.08811171;-0.2960481;-0.01106272,-0.08199997;-0.5891823;0.0524589,-0.08158678;-0.6178727;-0.009247288,-0.006947287;0.3992531;0.0225107,0;0;0,-0.004580559;0.199451;0.01408282,-0.01061138;0.4992439;0.02147481,0.1086465;0.3799178;0.005283104,0.2959643;0.3181486;0.03839842,0.5373978;0.3821555;0.04902708,-0.1171422;0.3616359;-0.0130691,-0.1531199;0.164908;-0.01500725,-0.1796516;-0.08321096;-0.03027267,0.07348288;0.007388568;-0.03075185,0.09372751;-0.2904342;-0.00088875,0.08328447;-0.5823404;0.06753399,0.09763544;-0.6112806;0.007847331,-0.06804799;0.0008896964;-0.04205568,-0.09341989;-0.2956854;-0.004646111,-0.09186886;-0.5884366;0.06088522,-0.09147545;-0.6170535;-0.000914678,-0.008636707;0.3992637;0.02172611,68.939
-0;0;0,-0.003502045;0.1994644;0.01420165,-0.008644091;0.4992715;0.02183421,0.1049647;0.3774694;-0.01558399,0.2668254;0.2933966;-0.09763803,0.4537733;0.3987249;-0.2259208,-0.1164495;0.3601841;-0.00764568,-0.164139;0.1660571;-0.001287643,-0.1783337;-0.08254157;-0.02358564,0.07082247;0.006186427;-0.03668658,0.100947;-0.2907257;-0.006097015,0.09063111;-0.5830652;0.06047017,0.1064379;-0.6123887;0.001666073,-0.07014412;0.002186716;-0.038406,-0.0883721;-0.2959504;-0.01044132,-0.08207143;-0.589058;0.05318443,-0.08601454;-0.5564899;-0.04520553,-0.006918115;0.3992864;0.02191604,0;0;0,-0.004580559;0.199451;0.01408282,-0.01061138;0.4992439;0.02147481,0.1086465;0.3799178;0.005283104,0.2959643;0.3181486;0.03839842,0.5373978;0.3821555;0.04902708,-0.1171422;0.3616359;-0.0130691,-0.1531199;0.164908;-0.01500725,-0.1796516;-0.08321096;-0.03027267,0.07348288;0.007388568;-0.03075185,0.09372751;-0.2904342;-0.00088875,0.08328447;-0.5823404;0.06753399,0.09763544;-0.6112806;0.007847331,-0.06804799;0.0008896964;-0.04205568,-0.09341989;-0.2956854;-0.004646111,-0.09186886;-0.5884366;0.06088522,-0.09147545;-0.6170535;-0.000914678,-0.008636707;0.3992637;0.02172611,68.96066
-0;0;0,-0.003502045;0.1994644;0.01420165,-0.008644091;0.4992715;0.02183421,0.1049647;0.3774694;-0.01558399,0.2668254;0.2933966;-0.09763803,0.4537733;0.3987249;-0.2259208,-0.1164495;0.3601841;-0.00764568,-0.164139;0.1660571;-0.001287643,-0.1783337;-0.08254157;-0.02358564,0.07082247;0.006186427;-0.03668658,0.100947;-0.2907257;-0.006097015,0.09063111;-0.5830652;0.06047017,0.1064379;-0.6123887;0.001666073,-0.07014412;0.002186716;-0.038406,-0.0883721;-0.2959504;-0.01044132,-0.08207143;-0.589058;0.05318443,-0.08601454;-0.5564899;-0.04520553,-0.006918115;0.3992864;0.02191604,0;0;0,-0.004612322;0.1994548;0.0140189,-0.01075866;0.4992464;0.02138434,0.1085919;0.3799023;0.005628403,0.2956174;0.318597;0.04116844,0.5375646;0.3791851;0.05821623,-0.1169408;0.3612671;-0.01372833,-0.1593049;0.1658762;-0.008465143,-0.1852899;-0.08228153;-0.02403776,0.07361193;0.007373367;-0.03044532,0.09376065;-0.2904808;-0.0008319318,0.08297806;-0.5823175;0.06783438,0.09743656;-0.6111406;0.008019146,-0.06775521;0.0008606695;-0.04252635,-0.0934252;-0.2956267;-0.00462763,-0.09194551;-0.5883722;0.06093068,-0.09135935;-0.6174489;-0.000278268,-0.008748798;0.3992669;0.02163404,68.97262
-0;0;0,-0.003551806;0.1994639;0.01419684,-0.008746954;0.4992689;0.02187575,0.1050522;0.3774701;-0.01502164,0.2678521;0.2941962;-0.09602574,0.4564133;0.3984078;-0.2228508,-0.1164946;0.3601524;-0.00775783,-0.1637115;0.1658883;-0.002098663,-0.1781201;-0.08266573;-0.02475459,0.07093668;0.006168915;-0.03646822,0.1010359;-0.2907553;-0.00597143,0.09084634;-0.5831994;0.0601544,0.1064153;-0.6123241;0.001019869,-0.06996591;0.002241675;-0.03872655,-0.08827172;-0.2958452;-0.01028139,-0.08168542;-0.5889391;0.05337873,-0.08538373;-0.5563658;-0.04502163,-0.007010408;0.399284;0.02193933,0;0;0,-0.004612322;0.1994548;0.0140189,-0.01075866;0.4992464;0.02138434,0.1085919;0.3799023;0.005628403,0.2956174;0.318597;0.04116844,0.5375646;0.3791851;0.05821623,-0.1169408;0.3612671;-0.01372833,-0.1593049;0.1658762;-0.008465143,-0.1852899;-0.08228153;-0.02403776,0.07361193;0.007373367;-0.03044532,0.09376065;-0.2904808;-0.0008319318,0.08297806;-0.5823175;0.06783438,0.09743656;-0.6111406;0.008019146,-0.06775521;0.0008606695;-0.04252635,-0.0934252;-0.2956267;-0.00462763,-0.09194551;-0.5883722;0.06093068,-0.09135935;-0.6174489;-0.000278268,-0.008748798;0.3992669;0.02163404,68.99428
-0;0;0,-0.003551806;0.1994639;0.01419684,-0.008746954;0.4992689;0.02187575,0.1050522;0.3774701;-0.01502164,0.2678521;0.2941962;-0.09602574,0.4564133;0.3984078;-0.2228508,-0.1164946;0.3601524;-0.00775783,-0.1637115;0.1658883;-0.002098663,-0.1781201;-0.08266573;-0.02475459,0.07093668;0.006168915;-0.03646822,0.1010359;-0.2907553;-0.00597143,0.09084634;-0.5831994;0.0601544,0.1064153;-0.6123241;0.001019869,-0.06996591;0.002241675;-0.03872655,-0.08827172;-0.2958452;-0.01028139,-0.08168542;-0.5889391;0.05337873,-0.08538373;-0.5563658;-0.04502163,-0.007010408;0.399284;0.02193933,0;0;0,-0.004612322;0.1994548;0.0140189,-0.01075866;0.4992464;0.02138434,0.1085919;0.3799023;0.005628403,0.2956174;0.318597;0.04116844,0.5375646;0.3791851;0.05821623,-0.1169408;0.3612671;-0.01372833,-0.1593049;0.1658762;-0.008465143,-0.1852899;-0.08228153;-0.02403776,0.07361193;0.007373367;-0.03044532,0.09376065;-0.2904808;-0.0008319318,0.08297806;-0.5823175;0.06783438,0.09743656;-0.6111406;0.008019146,-0.06775521;0.0008606695;-0.04252635,-0.0934252;-0.2956267;-0.00462763,-0.09194551;-0.5883722;0.06093068,-0.09135935;-0.6174489;-0.000278268,-0.008748798;0.3992669;0.02163404,69.00652
-0;0;0,-0.003837081;0.1994688;0.01405241,-0.009347388;0.4992764;0.02135828,0.1047334;0.3774244;-0.0148271,0.2683964;0.2946835;-0.09462907,0.4590602;0.3981121;-0.2189266,-0.1169957;0.3601376;-0.008050896,-0.1636775;0.1657209;-0.003259355,-0.1781979;-0.08286773;-0.02545923,0.07117509;0.0060878;-0.0360145,0.1005335;-0.2909355;-0.00576137,0.0903874;-0.5833695;0.06041608,0.1060709;-0.6124565;0.001261439,-0.06982745;0.002285026;-0.03897313,-0.08869484;-0.2957476;-0.01032708,-0.08244065;-0.5888372;0.05338606,-0.08135894;-0.6175826;-0.00824184,-0.007501057;0.3992937;0.0215757,0;0;0,-0.004680724;0.1994606;0.01391357,-0.01091815;0.4992566;0.02098297,0.1086123;0.3798691;0.006452331,0.2953249;0.3185852;0.0436366,0.5379789;0.3755132;0.06308454,-0.1168641;0.3613646;-0.01469038,-0.1529843;0.1646576;-0.01599322,-0.1799925;-0.08338214;-0.0317039,0.07377899;0.007281135;-0.03006069,0.09381862;-0.2906159;-0.0008076578,0.08290322;-0.5824464;0.0678644,0.09755519;-0.6115878;0.008518316,-0.06761812;0.00097516;-0.04274153,-0.09307837;-0.2955268;-0.004815605,-0.09209318;-0.5881304;0.06138233,-0.0917772;-0.616177;-0.001136724,-0.008866521;0.3992783;0.02135236,69.02764
-0;0;0,-0.003837081;0.1994688;0.01405241,-0.009347388;0.4992764;0.02135828,0.1047334;0.3774244;-0.0148271,0.2683964;0.2946835;-0.09462907,0.4590602;0.3981121;-0.2189266,-0.1169957;0.3601376;-0.008050896,-0.1636775;0.1657209;-0.003259355,-0.1781979;-0.08286773;-0.02545923,0.07117509;0.0060878;-0.0360145,0.1005335;-0.2909355;-0.00576137,0.0903874;-0.5833695;0.06041608,0.1060709;-0.6124565;0.001261439,-0.06982745;0.002285026;-0.03897313,-0.08869484;-0.2957476;-0.01032708,-0.08244065;-0.5888372;0.05338606,-0.08135894;-0.6175826;-0.00824184,-0.007501057;0.3992937;0.0215757,0;0;0,-0.004680724;0.1994606;0.01391357,-0.01091815;0.4992566;0.02098297,0.1086123;0.3798691;0.006452331,0.2953249;0.3185852;0.0436366,0.5379789;0.3755132;0.06308454,-0.1168641;0.3613646;-0.01469038,-0.1529843;0.1646576;-0.01599322,-0.1799925;-0.08338214;-0.0317039,0.07377899;0.007281135;-0.03006069,0.09381862;-0.2906159;-0.0008076578,0.08290322;-0.5824464;0.0678644,0.09755519;-0.6115878;0.008518316,-0.06761812;0.00097516;-0.04274153,-0.09307837;-0.2955268;-0.004815605,-0.09209318;-0.5881304;0.06138233,-0.0917772;-0.616177;-0.001136724,-0.008866521;0.3992783;0.02135236,69.03954
-0;0;0,-0.003837081;0.1994688;0.01405241,-0.009347388;0.4992764;0.02135828,0.1047334;0.3774244;-0.0148271,0.2683964;0.2946835;-0.09462907,0.4590602;0.3981121;-0.2189266,-0.1169957;0.3601376;-0.008050896,-0.1636775;0.1657209;-0.003259355,-0.1781979;-0.08286773;-0.02545923,0.07117509;0.0060878;-0.0360145,0.1005335;-0.2909355;-0.00576137,0.0903874;-0.5833695;0.06041608,0.1060709;-0.6124565;0.001261439,-0.06982745;0.002285026;-0.03897313,-0.08869484;-0.2957476;-0.01032708,-0.08244065;-0.5888372;0.05338606,-0.08135894;-0.6175826;-0.00824184,-0.007501057;0.3992937;0.0215757,0;0;0,-0.004680724;0.1994606;0.01391357,-0.01091815;0.4992566;0.02098297,0.1086123;0.3798691;0.006452331,0.2953249;0.3185852;0.0436366,0.5379789;0.3755132;0.06308454,-0.1168641;0.3613646;-0.01469038,-0.1529843;0.1646576;-0.01599322,-0.1799925;-0.08338214;-0.0317039,0.07377899;0.007281135;-0.03006069,0.09381862;-0.2906159;-0.0008076578,0.08290322;-0.5824464;0.0678644,0.09755519;-0.6115878;0.008518316,-0.06761812;0.00097516;-0.04274153,-0.09307837;-0.2955268;-0.004815605,-0.09209318;-0.5881304;0.06138233,-0.0917772;-0.616177;-0.001136724,-0.008866521;0.3992783;0.02135236,69.05129
-0;0;0,-0.003869764;0.199479;0.01389789,-0.009471694;0.4992905;0.02097687,0.1048777;0.3773399;-0.01431408,0.2692349;0.2951844;-0.09328996,0.4629655;0.3981812;-0.2131235,-0.1171352;0.3604205;-0.008561993,-0.1636337;0.1659737;-0.003239119,-0.1781659;-0.08257505;-0.02587387,0.07128254;0.006069306;-0.03580451,0.1004122;-0.2909768;-0.005554197,0.09018555;-0.5832897;0.06114344,0.1059593;-0.6117659;0.001204483,-0.06974097;0.002300924;-0.03912676,-0.08849647;-0.2957379;-0.0104723,-0.08260424;-0.5887524;0.05362003,-0.08122843;-0.6175411;-0.007946573,-0.00760031;0.3993084;0.02126806,0;0;0,-0.004705503;0.1994684;0.01379181,-0.01095184;0.4992701;0.02059443,0.1086804;0.3798886;0.00694717,0.294926;0.3187992;0.04670512,0.5385054;0.3713952;0.06677327,-0.116871;0.3613597;-0.01502941,-0.1531127;0.1646772;-0.01663035,-0.1803622;-0.08334638;-0.03217865,0.07390958;0.007215985;-0.02975403,0.09395447;-0.2907076;-0.000775801,0.08288568;-0.5825484;0.06782763,0.0970685;-0.6114045;0.007989757,-0.06752527;0.00101453;-0.04288717,-0.09305729;-0.2954623;-0.004813675,-0.09227156;-0.588112;0.06118314,-0.09193874;-0.6159851;-0.001551766,-0.008896236;0.3992923;0.02106175,69.07284
-0;0;0,-0.003869764;0.199479;0.01389789,-0.009471694;0.4992905;0.02097687,0.1048777;0.3773399;-0.01431408,0.2692349;0.2951844;-0.09328996,0.4629655;0.3981812;-0.2131235,-0.1171352;0.3604205;-0.008561993,-0.1636337;0.1659737;-0.003239119,-0.1781659;-0.08257505;-0.02587387,0.07128254;0.006069306;-0.03580451,0.1004122;-0.2909768;-0.005554197,0.09018555;-0.5832897;0.06114344,0.1059593;-0.6117659;0.001204483,-0.06974097;0.002300924;-0.03912676,-0.08849647;-0.2957379;-0.0104723,-0.08260424;-0.5887524;0.05362003,-0.08122843;-0.6175411;-0.007946573,-0.00760031;0.3993084;0.02126806,0;0;0,-0.004705503;0.1994684;0.01379181,-0.01095184;0.4992701;0.02059443,0.1086804;0.3798886;0.00694717,0.294926;0.3187992;0.04670512,0.5385054;0.3713952;0.06677327,-0.116871;0.3613597;-0.01502941,-0.1531127;0.1646772;-0.01663035,-0.1803622;-0.08334638;-0.03217865,0.07390958;0.007215985;-0.02975403,0.09395447;-0.2907076;-0.000775801,0.08288568;-0.5825484;0.06782763,0.0970685;-0.6114045;0.007989757,-0.06752527;0.00101453;-0.04288717,-0.09305729;-0.2954623;-0.004813675,-0.09227156;-0.588112;0.06118314,-0.09193874;-0.6159851;-0.001551766,-0.008896236;0.3992923;0.02106175,69.08425
-0;0;0,-0.003994755;0.1994826;0.01381141,-0.009825774;0.4992923;0.02078063,0.1047921;0.3774109;-0.01390002,0.2695446;0.2952975;-0.09209211,0.4651984;0.3981033;-0.2089278,-0.1173197;0.3605522;-0.009237869,-0.1640038;0.1661549;-0.003735026,-0.1781742;-0.08230533;-0.02754115,0.07138222;0.006142491;-0.03559282,0.1003592;-0.2909207;-0.005363472,0.09013927;-0.5832584;0.06122641,0.106386;-0.6117361;0.00141592,-0.06964129;0.002238165;-0.03930752,-0.08860174;-0.2957627;-0.01039402,-0.08256118;-0.5887278;0.05390958,-0.08127238;-0.6181119;-0.006889306,-0.007880114;0.3993118;0.02110461,0;0;0,-0.004705503;0.1994684;0.01379181,-0.01095184;0.4992701;0.02059443,0.1086804;0.3798886;0.00694717,0.294926;0.3187992;0.04670512,0.5385054;0.3713952;0.06677327,-0.116871;0.3613597;-0.01502941,-0.1531127;0.1646772;-0.01663035,-0.1803622;-0.08334638;-0.03217865,0.07390958;0.007215985;-0.02975403,0.09395447;-0.2907076;-0.000775801,0.08288568;-0.5825484;0.06782763,0.0970685;-0.6114045;0.007989757,-0.06752527;0.00101453;-0.04288717,-0.09305729;-0.2954623;-0.004813675,-0.09227156;-0.588112;0.06118314,-0.09193874;-0.6159851;-0.001551766,-0.008896236;0.3992923;0.02106175,69.10632
-0;0;0,-0.003994755;0.1994826;0.01381141,-0.009825774;0.4992923;0.02078063,0.1047921;0.3774109;-0.01390002,0.2695446;0.2952975;-0.09209211,0.4651984;0.3981033;-0.2089278,-0.1173197;0.3605522;-0.009237869,-0.1640038;0.1661549;-0.003735026,-0.1781742;-0.08230533;-0.02754115,0.07138222;0.006142491;-0.03559282,0.1003592;-0.2909207;-0.005363472,0.09013927;-0.5832584;0.06122641,0.106386;-0.6117361;0.00141592,-0.06964129;0.002238165;-0.03930752,-0.08860174;-0.2957627;-0.01039402,-0.08256118;-0.5887278;0.05390958,-0.08127238;-0.6181119;-0.006889306,-0.007880114;0.3993118;0.02110461,0;0;0,-0.005059481;0.1994825;0.0134592,-0.01156783;0.4992875;0.01980695,0.1082324;0.3799408;0.007086896,0.2937289;0.3179106;0.04883993,0.5383219;0.3633919;0.07345154,-0.1174079;0.3615806;-0.01586074,-0.1537236;0.1649128;-0.01757431,-0.1813982;-0.08306278;-0.03313832,0.07413343;0.007171988;-0.0292027,0.09337491;-0.2908861;-0.001075713,0.08229963;-0.5827167;0.06757034,0.09646931;-0.6112871;0.007354788,-0.06723429;0.001091404;-0.04334004,-0.09346043;-0.295308;-0.005135354,-0.09298782;-0.5879592;0.06085732,-0.09275942;-0.6153471;-0.002475578,-0.009437082;0.3993122;0.02045225,69.11752
-0;0;0,-0.00410964;0.1994977;0.01355706,-0.01015478;0.4993113;0.02017994,0.104785;0.3773952;-0.01352819,0.2699326;0.2951767;-0.09077057,0.4675893;0.3976918;-0.2044476,-0.1174638;0.3603278;-0.009848015,-0.163896;0.1658646;-0.004543912,-0.1778399;-0.08260643;-0.02837025,0.0715503;0.006248167;-0.03523514,0.1003904;-0.2908145;-0.004870413,0.0890618;-0.5832524;0.06109751,0.1067421;-0.6106703;0.0003202371,-0.06955962;0.002126043;-0.03945807,-0.0885838;-0.2958457;-0.01028668,-0.08260339;-0.5887684;0.05421547,-0.08087084;-0.6181372;-0.006592263,-0.00814453;0.3993324;0.0206139,0;0;0,-0.005059481;0.1994825;0.0134592,-0.01156783;0.4992875;0.01980695,0.1082324;0.3799408;0.007086896,0.2937289;0.3179106;0.04883993,0.5383219;0.3633919;0.07345154,-0.1174079;0.3615806;-0.01586074,-0.1537236;0.1649128;-0.01757431,-0.1813982;-0.08306278;-0.03313832,0.07413343;0.007171988;-0.0292027,0.09337491;-0.2908861;-0.001075713,0.08229963;-0.5827167;0.06757034,0.09646931;-0.6112871;0.007354788,-0.06723429;0.001091404;-0.04334004,-0.09346043;-0.295308;-0.005135354,-0.09298782;-0.5879592;0.06085732,-0.09275942;-0.6153471;-0.002475578,-0.009437082;0.3993122;0.02045225,69.13987
-0;0;0,-0.00410964;0.1994977;0.01355706,-0.01015478;0.4993113;0.02017994,0.104785;0.3773952;-0.01352819,0.2699326;0.2951767;-0.09077057,0.4675893;0.3976918;-0.2044476,-0.1174638;0.3603278;-0.009848015,-0.163896;0.1658646;-0.004543912,-0.1778399;-0.08260643;-0.02837025,0.0715503;0.006248167;-0.03523514,0.1003904;-0.2908145;-0.004870413,0.0890618;-0.5832524;0.06109751,0.1067421;-0.6106703;0.0003202371,-0.06955962;0.002126043;-0.03945807,-0.0885838;-0.2958457;-0.01028668,-0.08260339;-0.5887684;0.05421547,-0.08087084;-0.6181372;-0.006592263,-0.00814453;0.3993324;0.0206139,0;0;0,-0.005059481;0.1994825;0.0134592,-0.01156783;0.4992875;0.01980695,0.1082324;0.3799408;0.007086896,0.2937289;0.3179106;0.04883993,0.5383219;0.3633919;0.07345154,-0.1174079;0.3615806;-0.01586074,-0.1537236;0.1649128;-0.01757431,-0.1813982;-0.08306278;-0.03313832,0.07413343;0.007171988;-0.0292027,0.09337491;-0.2908861;-0.001075713,0.08229963;-0.5827167;0.06757034,0.09646931;-0.6112871;0.007354788,-0.06723429;0.001091404;-0.04334004,-0.09346043;-0.295308;-0.005135354,-0.09298782;-0.5879592;0.06085732,-0.09275942;-0.6153471;-0.002475578,-0.009437082;0.3993122;0.02045225,69.15117
-0;0;0,-0.004156719;0.1994999;0.01351008,-0.01025248;0.4993121;0.02016026,0.1038547;0.3783848;-0.01680384,0.2710851;0.2951525;-0.08826271,0.4694528;0.3988242;-0.1996291,-0.1175503;0.3605503;-0.01017365,-0.1634402;0.16594;-0.005596486,-0.177514;-0.08254245;-0.02922748,0.07167451;0.006331605;-0.03496677,0.1002871;-0.2907642;-0.004710367,0.08922102;-0.583149;0.06153671,0.1063849;-0.6103022;0.0002768449,-0.06949205;0.00204085;-0.03958143,-0.08857946;-0.295874;-0.009875676,-0.08247652;-0.5889241;0.05403389,-0.08165382;-0.6177047;-0.007552817,-0.00823337;0.3993334;0.02057824,0;0;0,-0.005197288;0.199491;0.01327928,-0.01185984;0.4992993;0.01925748,0.108028;0.3798516;0.007050846,0.2924004;0.3155313;0.05029116,0.5376647;0.3557528;0.07726575,-0.1174358;0.3615124;-0.01677194,-0.1539552;0.1648812;-0.01834897,-0.1817797;-0.08305754;-0.03422976,0.07428417;0.007173455;-0.02881671,0.09333695;-0.2909357;-0.001104837,0.0820974;-0.582776;0.06747302,0.09616654;-0.6112868;0.007156298,-0.06710804;0.001102816;-0.04353496,-0.09348333;-0.2952765;-0.00527709,-0.09311675;-0.5879375;0.06067287,-0.09315013;-0.6154543;-0.002502739,-0.009665697;0.3993264;0.02004779,69.16206
-0;0;0,-0.004156719;0.1994999;0.01351008,-0.01025248;0.4993121;0.02016026,0.1038547;0.3783848;-0.01680384,0.2710851;0.2951525;-0.08826271,0.4694528;0.3988242;-0.1996291,-0.1175503;0.3605503;-0.01017365,-0.1634402;0.16594;-0.005596486,-0.177514;-0.08254245;-0.02922748,0.07167451;0.006331605;-0.03496677,0.1002871;-0.2907642;-0.004710367,0.08922102;-0.583149;0.06153671,0.1063849;-0.6103022;0.0002768449,-0.06949205;0.00204085;-0.03958143,-0.08857946;-0.295874;-0.009875676,-0.08247652;-0.5889241;0.05403389,-0.08165382;-0.6177047;-0.007552817,-0.00823337;0.3993334;0.02057824,0;0;0,-0.005197288;0.199491;0.01327928,-0.01185984;0.4992993;0.01925748,0.108028;0.3798516;0.007050846,0.2924004;0.3155313;0.05029116,0.5376647;0.3557528;0.07726575,-0.1174358;0.3615124;-0.01677194,-0.1539552;0.1648812;-0.01834897,-0.1817797;-0.08305754;-0.03422976,0.07428417;0.007173455;-0.02881671,0.09333695;-0.2909357;-0.001104837,0.0820974;-0.582776;0.06747302,0.09616654;-0.6112868;0.007156298,-0.06710804;0.001102816;-0.04353496,-0.09348333;-0.2952765;-0.00527709,-0.09311675;-0.5879375;0.06067287,-0.09315013;-0.6154543;-0.002502739,-0.009665697;0.3993264;0.02004779,69.17388
-0;0;0,-0.004168113;0.1995028;0.01346346,-0.0102536;0.4993153;0.02012263,0.1041506;0.3782785;-0.01585466,0.2718635;0.2952203;-0.08637935,0.4720722;0.3987625;-0.1945251,-0.1175252;0.3606142;-0.01042527,-0.1631468;0.1659349;-0.006109087,-0.1771711;-0.08251339;-0.03012552,0.07180402;0.006339763;-0.03469855,0.1004117;-0.2907709;-0.004584029,0.08965115;-0.5831573;0.06170622,0.1064246;-0.6106442;0.0007600114,-0.06935494;0.002057564;-0.03982032,-0.088416;-0.2958129;-0.009656096,-0.08229232;-0.5888451;0.05433315,-0.08273233;-0.6149027;-0.01059026,-0.008244386;0.3993363;0.02053118,0;0;0,-0.005197288;0.199491;0.01327928,-0.01185984;0.4992993;0.01925748,0.108028;0.3798516;0.007050846,0.2924004;0.3155313;0.05029116,0.5376647;0.3557528;0.07726575,-0.1174358;0.3615124;-0.01677194,-0.1539552;0.1648812;-0.01834897,-0.1817797;-0.08305754;-0.03422976,0.07428417;0.007173455;-0.02881671,0.09333695;-0.2909357;-0.001104837,0.0820974;-0.582776;0.06747302,0.09616654;-0.6112868;0.007156298,-0.06710804;0.001102816;-0.04353496,-0.09348333;-0.2952765;-0.00527709,-0.09311675;-0.5879375;0.06067287,-0.09315013;-0.6154543;-0.002502739,-0.009665697;0.3993264;0.02004779,69.19527
-0;0;0,-0.004168113;0.1995028;0.01346346,-0.0102536;0.4993153;0.02012263,0.1041506;0.3782785;-0.01585466,0.2718635;0.2952203;-0.08637935,0.4720722;0.3987625;-0.1945251,-0.1175252;0.3606142;-0.01042527,-0.1631468;0.1659349;-0.006109087,-0.1771711;-0.08251339;-0.03012552,0.07180402;0.006339763;-0.03469855,0.1004117;-0.2907709;-0.004584029,0.08965115;-0.5831573;0.06170622,0.1064246;-0.6106442;0.0007600114,-0.06935494;0.002057564;-0.03982032,-0.088416;-0.2958129;-0.009656096,-0.08229232;-0.5888451;0.05433315,-0.08273233;-0.6149027;-0.01059026,-0.008244386;0.3993363;0.02053118,0;0;0,-0.005166484;0.1995;0.01315568,-0.01177361;0.4993156;0.01880485,0.1081602;0.3799062;0.007245147,0.2912964;0.313171;0.05205096,0.5371927;0.3477232;0.08105332,-0.1174051;0.3615846;-0.01705318,-0.1539254;0.1649557;-0.01888872,-0.1818016;-0.08295242;-0.03515129,0.07447987;0.007069311;-0.02833326,0.0936441;-0.2910724;-0.00105172,0.08219801;-0.5828683;0.06768031,0.09599194;-0.611519;0.007482313,-0.06699092;0.001173707;-0.04371315,-0.09317953;-0.2951958;-0.005251814,-0.09319955;-0.5879039;0.06049015,-0.0930565;-0.6145942;-0.003686015,-0.009597038;0.3993434;0.01971217,69.20689
-0;0;0,-0.004218848;0.1994952;0.01356031,-0.01033431;0.4993028;0.02040949,0.1043107;0.378213;-0.01485487,0.2726849;0.2941789;-0.08259241,0.4743834;0.3981214;-0.1875385,-0.1175929;0.3606904;-0.01035205,-0.163115;0.1659884;-0.006009605,-0.17726;-0.08238721;-0.03069756,0.07201006;0.006282914;-0.0342794,0.1005812;-0.2908293;-0.004146574,0.08990188;-0.5832385;0.06205659,0.107138;-0.611184;0.001828559,-0.06921062;0.002159504;-0.04006528,-0.08815936;-0.2956373;-0.009113809,-0.08141992;-0.5885023;0.0555753,-0.08079746;-0.6167392;-0.006703109,-0.008323072;0.3993236;0.02075384,0;0;0,-0.005166484;0.1995;0.01315568,-0.01177361;0.4993156;0.01880485,0.1081602;0.3799062;0.007245147,0.2912964;0.313171;0.05205096,0.5371927;0.3477232;0.08105332,-0.1174051;0.3615846;-0.01705318,-0.1539254;0.1649557;-0.01888872,-0.1818016;-0.08295242;-0.03515129,0.07447987;0.007069311;-0.02833326,0.0936441;-0.2910724;-0.00105172,0.08219801;-0.5828683;0.06768031,0.09599194;-0.611519;0.007482313,-0.06699092;0.001173707;-0.04371315,-0.09317953;-0.2951958;-0.005251814,-0.09319955;-0.5879039;0.06049015,-0.0930565;-0.6145942;-0.003686015,-0.009597038;0.3993434;0.01971217,69.22894
-0;0;0,-0.004218848;0.1994952;0.01356031,-0.01033431;0.4993028;0.02040949,0.1043107;0.378213;-0.01485487,0.2726849;0.2941789;-0.08259241,0.4743834;0.3981214;-0.1875385,-0.1175929;0.3606904;-0.01035205,-0.163115;0.1659884;-0.006009605,-0.17726;-0.08238721;-0.03069756,0.07201006;0.006282914;-0.0342794,0.1005812;-0.2908293;-0.004146574,0.08990188;-0.5832385;0.06205659,0.107138;-0.611184;0.001828559,-0.06921062;0.002159504;-0.04006528,-0.08815936;-0.2956373;-0.009113809,-0.08141992;-0.5885023;0.0555753,-0.08079746;-0.6167392;-0.006703109,-0.008323072;0.3993236;0.02075384,0;0;0,-0.005166484;0.1995;0.01315568,-0.01177361;0.4993156;0.01880485,0.1081602;0.3799062;0.007245147,0.2912964;0.313171;0.05205096,0.5371927;0.3477232;0.08105332,-0.1174051;0.3615846;-0.01705318,-0.1539254;0.1649557;-0.01888872,-0.1818016;-0.08295242;-0.03515129,0.07447987;0.007069311;-0.02833326,0.0936441;-0.2910724;-0.00105172,0.08219801;-0.5828683;0.06768031,0.09599194;-0.611519;0.007482313,-0.06699092;0.001173707;-0.04371315,-0.09317953;-0.2951958;-0.005251814,-0.09319955;-0.5879039;0.06049015,-0.0930565;-0.6145942;-0.003686015,-0.009597038;0.3993434;0.01971217,69.24027
-0;0;0,-0.004218848;0.1994952;0.01356031,-0.01033431;0.4993028;0.02040949,0.1043107;0.378213;-0.01485487,0.2726849;0.2941789;-0.08259241,0.4743834;0.3981214;-0.1875385,-0.1175929;0.3606904;-0.01035205,-0.163115;0.1659884;-0.006009605,-0.17726;-0.08238721;-0.03069756,0.07201006;0.006282914;-0.0342794,0.1005812;-0.2908293;-0.004146574,0.08990188;-0.5832385;0.06205659,0.107138;-0.611184;0.001828559,-0.06921062;0.002159504;-0.04006528,-0.08815936;-0.2956373;-0.009113809,-0.08141992;-0.5885023;0.0555753,-0.08079746;-0.6167392;-0.006703109,-0.008323072;0.3993236;0.02075384,0;0;0,-0.005165186;0.1995097;0.01300801,-0.01177672;0.4993297;0.01836805,0.1081844;0.3799081;0.007169426,0.2904679;0.3116331;0.05311772,0.5368695;0.3395981;0.08480752,-0.1174295;0.3617057;-0.01740961,-0.1539624;0.165079;-0.01922052,-0.1817715;-0.08280362;-0.03598015,0.07461054;0.007203246;-0.02795318,0.09402159;-0.2909498;-0.0009720214,0.0825252;-0.5830443;0.06647176,0.09630491;-0.6129413;0.007934652,-0.06689348;0.001062826;-0.04386493,-0.09297149;-0.295306;-0.005323023,-0.09277705;-0.5880293;0.06035079,-0.09434202;-0.6145102;-0.004055873,-0.009596379;0.3993587;0.0193908,69.25166
-0;0;0,-0.004240273;0.199498;0.01351159,-0.01037218;0.4993059;0.02034281,0.1045267;0.378283;-0.01414664,0.2733482;0.2930503;-0.07922102,0.4763005;0.3974361;-0.1812698,-0.1176975;0.3607713;-0.01027938,-0.163229;0.1660713;-0.00594331,-0.177261;-0.08228089;-0.03092932,0.07215716;0.006216699;-0.03398084,0.1006818;-0.2909251;-0.004096713,0.09001517;-0.5832717;0.06238418,0.1077242;-0.6111977;0.00226821,-0.06912683;0.002199856;-0.04020749,-0.08806416;-0.2955689;-0.008979905,-0.08120791;-0.588307;0.05626899,-0.08075459;-0.6174238;-0.004889142,-0.008361129;0.3993267;0.02068883,0;0;0,-0.005165186;0.1995097;0.01300801,-0.01177672;0.4993297;0.01836805,0.1081844;0.3799081;0.007169426,0.2904679;0.3116331;0.05311772,0.5368695;0.3395981;0.08480752,-0.1174295;0.3617057;-0.01740961,-0.1539624;0.165079;-0.01922052,-0.1817715;-0.08280362;-0.03598015,0.07461054;0.007203246;-0.02795318,0.09402159;-0.2909498;-0.0009720214,0.0825252;-0.5830443;0.06647176,0.09630491;-0.6129413;0.007934652,-0.06689348;0.001062826;-0.04386493,-0.09297149;-0.295306;-0.005323023,-0.09277705;-0.5880293;0.06035079,-0.09434202;-0.6145102;-0.004055873,-0.009596379;0.3993587;0.0193908,69.2738
-0;0;0,-0.004240273;0.199498;0.01351159,-0.01037218;0.4993059;0.02034281,0.1045267;0.378283;-0.01414664,0.2733482;0.2930503;-0.07922102,0.4763005;0.3974361;-0.1812698,-0.1176975;0.3607713;-0.01027938,-0.163229;0.1660713;-0.00594331,-0.177261;-0.08228089;-0.03092932,0.07215716;0.006216699;-0.03398084,0.1006818;-0.2909251;-0.004096713,0.09001517;-0.5832717;0.06238418,0.1077242;-0.6111977;0.00226821,-0.06912683;0.002199856;-0.04020749,-0.08806416;-0.2955689;-0.008979905,-0.08120791;-0.588307;0.05626899,-0.08075459;-0.6174238;-0.004889142,-0.008361129;0.3993267;0.02068883,0;0;0,-0.005165186;0.1995097;0.01300801,-0.01177672;0.4993297;0.01836805,0.1081844;0.3799081;0.007169426,0.2904679;0.3116331;0.05311772,0.5368695;0.3395981;0.08480752,-0.1174295;0.3617057;-0.01740961,-0.1539624;0.165079;-0.01922052,-0.1817715;-0.08280362;-0.03598015,0.07461054;0.007203246;-0.02795318,0.09402159;-0.2909498;-0.0009720214,0.0825252;-0.5830443;0.06647176,0.09630491;-0.6129413;0.007934652,-0.06689348;0.001062826;-0.04386493,-0.09297149;-0.295306;-0.005323023,-0.09277705;-0.5880293;0.06035079,-0.09434202;-0.6145102;-0.004055873,-0.009596379;0.3993587;0.0193908,69.28497
-0;0;0,-0.004267286;0.1995002;0.01347052,-0.01042329;0.4993092;0.02022145,0.1047289;0.3781877;-0.01335024,0.2738426;0.2921547;-0.07658679,0.4793544;0.3973494;-0.1724981,-0.1180181;0.36169;-0.01053554,-0.1632968;0.1669288;-0.006302974,-0.177189;-0.08142221;-0.0313781,0.07235639;0.006087143;-0.03357826,0.100956;-0.291048;-0.003698822,0.09009808;-0.583373;0.06284592,0.1076677;-0.6110113;0.00231823,-0.06903441;0.002299403;-0.04036041,-0.08800044;-0.2953744;-0.008257437,-0.08098603;-0.5881059;0.05700419,-0.08110674;-0.6167938;-0.004706495,-0.008410253;0.3993302;0.02059872,0;0;0,-0.005228768;0.1995194;0.01283273,-0.01192923;0.4993414;0.01791471,0.1080761;0.3797882;0.007051661,0.2891618;0.3090096;0.05393834,0.5357247;0.3314378;0.08863294,-0.117547;0.361803;-0.01780919,-0.1540846;0.1651778;-0.01968946,-0.1819438;-0.08267172;-0.03684989,0.07484664;0.007300582;-0.02728883,0.09434579;-0.2909216;-0.001148112,0.08278111;-0.5830243;0.06624829,0.09654987;-0.6127946;0.007536251,-0.06675764;0.001033505;-0.04407209,-0.09271843;-0.2953496;-0.005561482,-0.09276599;-0.5880661;0.06014308,-0.09464694;-0.6134915;-0.005488295,-0.009705313;0.3993726;0.01905137,69.3072
-0;0;0,-0.004276386;0.199501;0.01345517,-0.01043314;0.4993105;0.02018472,0.1048682;0.3782725;-0.01291968,0.2745825;0.2912283;-0.07308911,0.4821525;0.3971152;-0.1636575,-0.1181277;0.3619339;-0.01051641,-0.1632884;0.1671375;-0.006656544,-0.1772049;-0.08124119;-0.03144217,0.07238332;0.006084588;-0.03352062,0.1009209;-0.2910431;-0.003507763,0.09010924;-0.5833334;0.06319666,0.1076186;-0.6096907;0.001043793,-0.06907202;0.002270023;-0.04029768,-0.0880209;-0.2953932;-0.008086704,-0.08118619;-0.5881268;0.05718452,-0.08085285;-0.6164266;-0.005017065,-0.008423326;0.3993314;0.02057002,0;0;0,-0.005228768;0.1995194;0.01283273,-0.01192923;0.4993414;0.01791471,0.1080761;0.3797882;0.007051661,0.2891618;0.3090096;0.05393834,0.5357247;0.3314378;0.08863294,-0.117547;0.361803;-0.01780919,-0.1540846;0.1651778;-0.01968946,-0.1819438;-0.08267172;-0.03684989,0.07484664;0.007300582;-0.02728883,0.09434579;-0.2909216;-0.001148112,0.08278111;-0.5830243;0.06624829,0.09654987;-0.6127946;0.007536251,-0.06675764;0.001033505;-0.04407209,-0.09271843;-0.2953496;-0.005561482,-0.09276599;-0.5880661;0.06014308,-0.09464694;-0.6134915;-0.005488295,-0.009705313;0.3993726;0.01905137,69.32973
-0;0;0,-0.004276386;0.199501;0.01345517,-0.01043314;0.4993105;0.02018472,0.1048682;0.3782725;-0.01291968,0.2745825;0.2912283;-0.07308911,0.4821525;0.3971152;-0.1636575,-0.1181277;0.3619339;-0.01051641,-0.1632884;0.1671375;-0.006656544,-0.1772049;-0.08124119;-0.03144217,0.07238332;0.006084588;-0.03352062,0.1009209;-0.2910431;-0.003507763,0.09010924;-0.5833334;0.06319666,0.1076186;-0.6096907;0.001043793,-0.06907202;0.002270023;-0.04029768,-0.0880209;-0.2953932;-0.008086704,-0.08118619;-0.5881268;0.05718452,-0.08085285;-0.6164266;-0.005017065,-0.008423326;0.3993314;0.02057002,0;0;0,-0.005228768;0.1995194;0.01283273,-0.01192923;0.4993414;0.01791471,0.1080761;0.3797882;0.007051661,0.2891618;0.3090096;0.05393834,0.5357247;0.3314378;0.08863294,-0.117547;0.361803;-0.01780919,-0.1540846;0.1651778;-0.01968946,-0.1819438;-0.08267172;-0.03684989,0.07484664;0.007300582;-0.02728883,0.09434579;-0.2909216;-0.001148112,0.08278111;-0.5830243;0.06624829,0.09654987;-0.6127946;0.007536251,-0.06675764;0.001033505;-0.04407209,-0.09271843;-0.2953496;-0.005561482,-0.09276599;-0.5880661;0.06014308,-0.09464694;-0.6134915;-0.005488295,-0.009705313;0.3993726;0.01905137,69.34078
-0;0;0,-0.004276386;0.199501;0.01345517,-0.01043314;0.4993105;0.02018472,0.1048682;0.3782725;-0.01291968,0.2745825;0.2912283;-0.07308911,0.4821525;0.3971152;-0.1636575,-0.1181277;0.3619339;-0.01051641,-0.1632884;0.1671375;-0.006656544,-0.1772049;-0.08124119;-0.03144217,0.07238332;0.006084588;-0.03352062,0.1009209;-0.2910431;-0.003507763,0.09010924;-0.5833334;0.06319666,0.1076186;-0.6096907;0.001043793,-0.06907202;0.002270023;-0.04029768,-0.0880209;-0.2953932;-0.008086704,-0.08118619;-0.5881268;0.05718452,-0.08085285;-0.6164266;-0.005017065,-0.008423326;0.3993314;0.02057002,0;0;0,-0.005215735;0.199524;0.01276578,-0.0118909;0.4993499;0.01765522,0.1081217;0.3797742;0.007044297,0.2877218;0.3061336;0.05522006,0.5344157;0.3265271;0.09023732,-0.1173971;0.3617558;-0.0182985,-0.1540675;0.1651531;-0.01993836,-0.1820429;-0.08269408;-0.03694213,0.07488129;0.00727345;-0.02720091,0.09443507;-0.2909557;-0.001180757,0.08288111;-0.5830379;0.06630626,0.09688261;-0.6122048;0.00683739,-0.06672686;0.00105105;-0.04411827,-0.09268234;-0.2953306;-0.005592186,-0.0924124;-0.5879455;0.06056236,-0.09447315;-0.6143205;-0.003956039,-0.009675073;0.3993816;0.01885344,69.35201
-0;0;0,-0.004449045;0.1994958;0.01347645,-0.01081827;0.4993016;0.02015376,0.1047065;0.3783633;-0.0124928,0.2747606;0.2896184;-0.06911397,0.4836339;0.3965563;-0.1553476,-0.1183323;0.3617309;-0.01064467,-0.1635499;0.1669432;-0.00702444,-0.1773679;-0.08146386;-0.03158056,0.07243668;0.006156569;-0.03339196,0.1006419;-0.290994;-0.00329146,0.08993142;-0.5832918;0.06339631,0.1073708;-0.6096778;0.001258928,-0.06904218;0.002187019;-0.04035337,-0.0883567;-0.295441;-0.008034054,-0.08154284;-0.5881741;0.05724144,-0.08193004;-0.6164787;-0.004953671,-0.008729843;0.3993243;0.02056509,0;0;0,-0.005215735;0.199524;0.01276578,-0.0118909;0.4993499;0.01765522,0.1081217;0.3797742;0.007044297,0.2877218;0.3061336;0.05522006,0.5344157;0.3265271;0.09023732,-0.1173971;0.3617558;-0.0182985,-0.1540675;0.1651531;-0.01993836,-0.1820429;-0.08269408;-0.03694213,0.07488129;0.00727345;-0.02720091,0.09443507;-0.2909557;-0.001180757,0.08288111;-0.5830379;0.06630626,0.09688261;-0.6122048;0.00683739,-0.06672686;0.00105105;-0.04411827,-0.09268234;-0.2953306;-0.005592186,-0.0924124;-0.5879455;0.06056236,-0.09447315;-0.6143205;-0.003956039,-0.009675073;0.3993816;0.01885344,69.37421
-0;0;0,-0.004490878;0.199496;0.01346028,-0.01091656;0.4993005;0.02015043,0.1047057;0.3781317;-0.01207161,0.2754137;0.2889232;-0.06592911,0.4858001;0.3965435;-0.14751,-0.1183155;0.3617678;-0.01105017,-0.1644013;0.1671878;-0.007216936,-0.1785135;-0.0811744;-0.03205823,0.07245863;0.006100134;-0.03335467,0.1006357;-0.2910595;-0.003317768,0.08993034;-0.5833081;0.06358608,0.1073058;-0.609719;0.001461498,-0.06908002;0.002240514;-0.0402856,-0.08882307;-0.295345;-0.007834021,-0.08152121;-0.587945;0.05798314,-0.08174935;-0.6156718;-0.004933413,-0.008813083;0.3993235;0.02055354,0;0;0,-0.005215735;0.199524;0.01276578,-0.0118909;0.4993499;0.01765522,0.1081217;0.3797742;0.007044297,0.2877218;0.3061336;0.05522006,0.5344157;0.3265271;0.09023732,-0.1173971;0.3617558;-0.0182985,-0.1540675;0.1651531;-0.01993836,-0.1820429;-0.08269408;-0.03694213,0.07488129;0.00727345;-0.02720091,0.09443507;-0.2909557;-0.001180757,0.08288111;-0.5830379;0.06630626,0.09688261;-0.6122048;0.00683739,-0.06672686;0.00105105;-0.04411827,-0.09268234;-0.2953306;-0.005592186,-0.0924124;-0.5879455;0.06056236,-0.09447315;-0.6143205;-0.003956039,-0.009675073;0.3993816;0.01885344,69.39637
-0;0;0,-0.004490878;0.199496;0.01346028,-0.01091656;0.4993005;0.02015043,0.1047057;0.3781317;-0.01207161,0.2754137;0.2889232;-0.06592911,0.4858001;0.3965435;-0.14751,-0.1183155;0.3617678;-0.01105017,-0.1644013;0.1671878;-0.007216936,-0.1785135;-0.0811744;-0.03205823,0.07245863;0.006100134;-0.03335467,0.1006357;-0.2910595;-0.003317768,0.08993034;-0.5833081;0.06358608,0.1073058;-0.609719;0.001461498,-0.06908002;0.002240514;-0.0402856,-0.08882307;-0.295345;-0.007834021,-0.08152121;-0.587945;0.05798314,-0.08174935;-0.6156718;-0.004933413,-0.008813083;0.3993235;0.02055354,0;0;0,-0.005203696;0.1995309;0.01266309,-0.01183655;0.4993592;0.01746947,0.1081344;0.3796424;0.006901971,0.2867019;0.3041159;0.05598752,0.5335522;0.3167835;0.09346367,-0.1172394;0.3616228;-0.01867272,-0.1542387;0.1650816;-0.02028221,-0.1818995;-0.0828044;-0.03723545,0.07504304;0.007266036;-0.02675342,0.0946549;-0.2910041;-0.001251843,0.08289405;-0.5831022;0.06613061,0.09747981;-0.6128939;0.007645346,-0.06664363;0.001067014;-0.0442435,-0.09258327;-0.2953093;-0.005666144,-0.09253781;-0.5879799;0.06024209,-0.09449635;-0.6146588;-0.003917888,-0.009640771;0.3993908;0.01869189,69.41878
-0;0;0,-0.00450805;0.1994847;0.0136216,-0.01093072;0.4992838;0.02054135,0.1040069;0.379175;-0.01464869,0.275745;0.2881442;-0.06175938,0.4885323;0.3951072;-0.1377887,-0.118198;0.3616061;-0.01103539,-0.1641762;0.1670095;-0.006773101,-0.1777029;-0.08134882;-0.03197609,0.07263682;0.006169211;-0.03295198,0.1008152;-0.290982;-0.00283327,0.09009358;-0.5831733;0.06431822,0.107485;-0.6094567;0.002041608,-0.06892402;0.002179269;-0.04055527,-0.08856843;-0.2953283;-0.007338736,-0.08143798;-0.5879475;0.05841252,-0.08167148;-0.6171853;-0.002590042,-0.008833591;0.3993064;0.02087257,0;0;0,-0.005203696;0.1995309;0.01266309,-0.01183655;0.4993592;0.01746947,0.1081344;0.3796424;0.006901971,0.2867019;0.3041159;0.05598752,0.5335522;0.3167835;0.09346367,-0.1172394;0.3616228;-0.01867272,-0.1542387;0.1650816;-0.02028221,-0.1818995;-0.0828044;-0.03723545,0.07504304;0.007266036;-0.02675342,0.0946549;-0.2910041;-0.001251843,0.08289405;-0.5831022;0.06613061,0.09747981;-0.6128939;0.007645346,-0.06664363;0.001067014;-0.0442435,-0.09258327;-0.2953093;-0.005666144,-0.09253781;-0.5879799;0.06024209,-0.09449635;-0.6146588;-0.003917888,-0.009640771;0.3993908;0.01869189,69.43031
-0;0;0,-0.00450805;0.1994847;0.0136216,-0.01093072;0.4992838;0.02054135,0.1040069;0.379175;-0.01464869,0.275745;0.2881442;-0.06175938,0.4885323;0.3951072;-0.1377887,-0.118198;0.3616061;-0.01103539,-0.1641762;0.1670095;-0.006773101,-0.1777029;-0.08134882;-0.03197609,0.07263682;0.006169211;-0.03295198,0.1008152;-0.290982;-0.00283327,0.09009358;-0.5831733;0.06431822,0.107485;-0.6094567;0.002041608,-0.06892402;0.002179269;-0.04055527,-0.08856843;-0.2953283;-0.007338736,-0.08143798;-0.5879475;0.05841252,-0.08167148;-0.6171853;-0.002590042,-0.008833591;0.3993064;0.02087257,0;0;0,-0.005203696;0.1995309;0.01266309,-0.01183655;0.4993592;0.01746947,0.1081344;0.3796424;0.006901971,0.2867019;0.3041159;0.05598752,0.5335522;0.3167835;0.09346367,-0.1172394;0.3616228;-0.01867272,-0.1542387;0.1650816;-0.02028221,-0.1818995;-0.0828044;-0.03723545,0.07504304;0.007266036;-0.02675342,0.0946549;-0.2910041;-0.001251843,0.08289405;-0.5831022;0.06613061,0.09747981;-0.6128939;0.007645346,-0.06664363;0.001067014;-0.0442435,-0.09258327;-0.2953093;-0.005666144,-0.09253781;-0.5879799;0.06024209,-0.09449635;-0.6146588;-0.003917888,-0.009640771;0.3993908;0.01869189,69.45229
-0;0;0,-0.004490343;0.1994881;0.01357762,-0.01087643;0.4992887;0.02047384,0.1043884;0.3791757;-0.01360066,0.2763913;0.2869177;-0.05722929,0.4911783;0.3925457;-0.1294045,-0.1181816;0.3616822;-0.0111085,-0.1638039;0.1670033;-0.006780547,-0.1772947;-0.08137061;-0.03184845,0.0727046;0.006123552;-0.0328107,0.1009321;-0.2910478;-0.002937473,0.09017944;-0.5831553;0.06457269,0.1077499;-0.6093463;0.002233256,-0.06890871;0.002217191;-0.04057923,-0.08845252;-0.2952835;-0.007242125,-0.08162097;-0.5879395;0.05837638,-0.08166188;-0.6164795;-0.003522504,-0.008795304;0.3993109;0.02080893,0;0;0,-0.005141337;0.1995409;0.01253016,-0.01161585;0.4993759;0.01708972,0.1082624;0.3793904;0.006821671,0.2859631;0.302171;0.05641635,0.5328848;0.3107653;0.09457112,-0.1170581;0.3616492;-0.01904757,-0.1540977;0.1651142;-0.02048357,-0.1817834;-0.08277054;-0.03741425,0.07508121;0.007364053;-0.02661921,0.09482381;-0.2909127;-0.001297697,0.08301759;-0.5830312;0.06598853,0.09776456;-0.6127803;0.007485446,-0.06656332;0.001030373;-0.04436511,-0.09299615;-0.2952213;-0.005169988,-0.09205295;-0.5879579;0.06043805,-0.09389968;-0.6145204;-0.003864132,-0.009487672;0.3994073;0.01840813,69.46398
-0;0;0,-0.004490343;0.1994881;0.01357762,-0.01087643;0.4992887;0.02047384,0.1043884;0.3791757;-0.01360066,0.2763913;0.2869177;-0.05722929,0.4911783;0.3925457;-0.1294045,-0.1181816;0.3616822;-0.0111085,-0.1638039;0.1670033;-0.006780547,-0.1772947;-0.08137061;-0.03184845,0.0727046;0.006123552;-0.0328107,0.1009321;-0.2910478;-0.002937473,0.09017944;-0.5831553;0.06457269,0.1077499;-0.6093463;0.002233256,-0.06890871;0.002217191;-0.04057923,-0.08845252;-0.2952835;-0.007242125,-0.08162097;-0.5879395;0.05837638,-0.08166188;-0.6164795;-0.003522504,-0.008795304;0.3993109;0.02080893,0;0;0,-0.005141337;0.1995409;0.01253016,-0.01161585;0.4993759;0.01708972,0.1082624;0.3793904;0.006821671,0.2859631;0.302171;0.05641635,0.5328848;0.3107653;0.09457112,-0.1170581;0.3616492;-0.01904757,-0.1540977;0.1651142;-0.02048357,-0.1817834;-0.08277054;-0.03741425,0.07508121;0.007364053;-0.02661921,0.09482381;-0.2909127;-0.001297697,0.08301759;-0.5830312;0.06598853,0.09776456;-0.6127803;0.007485446,-0.06656332;0.001030373;-0.04436511,-0.09299615;-0.2952213;-0.005169988,-0.09205295;-0.5879579;0.06043805,-0.09389968;-0.6145204;-0.003864132,-0.009487672;0.3994073;0.01840813,69.48592
-0;0;0,-0.004399732;0.199498;0.01346013,-0.01061817;0.4993069;0.0201417,0.1049571;0.3787403;-0.01231855,0.2773297;0.2862714;-0.05399812,0.4936275;0.3935694;-0.118824,-0.1180026;0.3617746;-0.01140537,-0.1637528;0.1671355;-0.006655367,-0.1771015;-0.08124936;-0.03169069,0.07271799;0.00607222;-0.03279056,0.1011579;-0.2910515;-0.002646655,0.09064268;-0.5832004;0.06472167,0.1076838;-0.6098421;0.002789106,-0.06896657;0.00226868;-0.04047796,-0.0881623;-0.2952434;-0.007040393,-0.08140228;-0.5878108;0.05897998,-0.08298834;-0.5553238;-0.03946175,-0.008602122;0.3993281;0.02055171,0;0;0,-0.005141337;0.1995409;0.01253016,-0.01161585;0.4993759;0.01708972,0.1082624;0.3793904;0.006821671,0.2859631;0.302171;0.05641635,0.5328848;0.3107653;0.09457112,-0.1170581;0.3616492;-0.01904757,-0.1540977;0.1651142;-0.02048357,-0.1817834;-0.08277054;-0.03741425,0.07508121;0.007364053;-0.02661921,0.09482381;-0.2909127;-0.001297697,0.08301759;-0.5830312;0.06598853,0.09776456;-0.6127803;0.007485446,-0.06656332;0.001030373;-0.04436511,-0.09299615;-0.2952213;-0.005169988,-0.09205295;-0.5879579;0.06043805,-0.09389968;-0.6145204;-0.003864132,-0.009487672;0.3994073;0.01840813,69.50818
-0;0;0,-0.004431985;0.199506;0.01333125,-0.01073612;0.4993179;0.01979172,0.1050385;0.3786101;-0.01191219,0.2781649;0.2860346;-0.05008346,0.4972941;0.3911766;-0.1086288,-0.1179939;0.3617862;-0.01200995,-0.1637054;0.1671498;-0.006799506,-0.1769348;-0.08125898;-0.0316604,0.07276171;0.006154273;-0.03267809,0.1010305;-0.2910137;-0.002810178,0.09065574;-0.5830513;0.06506022,0.1074785;-0.6099228;0.003353015,-0.06889301;0.002121882;-0.04061096,-0.08805339;-0.2954625;-0.007802151,-0.0817662;-0.5878835;0.05890922,-0.08297805;-0.5554143;-0.03953469,-0.00869008;0.39934;0.02027588,0;0;0,-0.005049952;0.1995514;0.01239899,-0.01118337;0.4993997;0.01647918,0.1085355;0.3792267;0.006496139,0.2854822;0.3007032;0.05673466,0.5323914;0.306861;0.09543809,-0.1168949;0.3621028;-0.01953293,-0.1540554;0.1655894;-0.02078888,-0.1818794;-0.08229813;-0.03745029,0.0751383;0.007282606;-0.02648017,0.09499687;-0.2909977;-0.001291413,0.08317563;-0.5831372;0.0659007,0.09792652;-0.6123756;0.006708786,-0.06648917;0.001136091;-0.04447358,-0.09327105;-0.2949898;-0.004571222,-0.09168883;-0.5878338;0.0605434,-0.09342235;-0.6147167;-0.003378473,-0.009193035;0.3994307;0.01797622,69.53088
-0;0;0,-0.004431985;0.199506;0.01333125,-0.01073612;0.4993179;0.01979172,0.1050385;0.3786101;-0.01191219,0.2781649;0.2860346;-0.05008346,0.4972941;0.3911766;-0.1086288,-0.1179939;0.3617862;-0.01200995,-0.1637054;0.1671498;-0.006799506,-0.1769348;-0.08125898;-0.0316604,0.07276171;0.006154273;-0.03267809,0.1010305;-0.2910137;-0.002810178,0.09065574;-0.5830513;0.06506022,0.1074785;-0.6099228;0.003353015,-0.06889301;0.002121882;-0.04061096,-0.08805339;-0.2954625;-0.007802151,-0.0817662;-0.5878835;0.05890922,-0.08297805;-0.5554143;-0.03953469,-0.00869008;0.39934;0.02027588,0;0;0,-0.005049952;0.1995514;0.01239899,-0.01118337;0.4993997;0.01647918,0.1085355;0.3792267;0.006496139,0.2854822;0.3007032;0.05673466,0.5323914;0.306861;0.09543809,-0.1168949;0.3621028;-0.01953293,-0.1540554;0.1655894;-0.02078888,-0.1818794;-0.08229813;-0.03745029,0.0751383;0.007282606;-0.02648017,0.09499687;-0.2909977;-0.001291413,0.08317563;-0.5831372;0.0659007,0.09792652;-0.6123756;0.006708786,-0.06648917;0.001136091;-0.04447358,-0.09327105;-0.2949898;-0.004571222,-0.09168883;-0.5878338;0.0605434,-0.09342235;-0.6147167;-0.003378473,-0.009193035;0.3994307;0.01797622,69.54187
-0;0;0,-0.004431985;0.199506;0.01333125,-0.01073612;0.4993179;0.01979172,0.1050385;0.3786101;-0.01191219,0.2781649;0.2860346;-0.05008346,0.4972941;0.3911766;-0.1086288,-0.1179939;0.3617862;-0.01200995,-0.1637054;0.1671498;-0.006799506,-0.1769348;-0.08125898;-0.0316604,0.07276171;0.006154273;-0.03267809,0.1010305;-0.2910137;-0.002810178,0.09065574;-0.5830513;0.06506022,0.1074785;-0.6099228;0.003353015,-0.06889301;0.002121882;-0.04061096,-0.08805339;-0.2954625;-0.007802151,-0.0817662;-0.5878835;0.05890922,-0.08297805;-0.5554143;-0.03953469,-0.00869008;0.39934;0.02027588,0;0;0,-0.005049952;0.1995514;0.01239899,-0.01118337;0.4993997;0.01647918,0.1085355;0.3792267;0.006496139,0.2854822;0.3007032;0.05673466,0.5323914;0.306861;0.09543809,-0.1168949;0.3621028;-0.01953293,-0.1540554;0.1655894;-0.02078888,-0.1818794;-0.08229813;-0.03745029,0.0751383;0.007282606;-0.02648017,0.09499687;-0.2909977;-0.001291413,0.08317563;-0.5831372;0.0659007,0.09792652;-0.6123756;0.006708786,-0.06648917;0.001136091;-0.04447358,-0.09327105;-0.2949898;-0.004571222,-0.09168883;-0.5878338;0.0605434,-0.09342235;-0.6147167;-0.003378473,-0.009193035;0.3994307;0.01797622,69.55319
-0;0;0,-0.004611743;0.1995269;0.01295245,-0.01139293;0.4993448;0.01854556,0.1042738;0.3790203;-0.01405919,0.2764043;0.2814531;-0.04324314,0.4948142;0.3904476;-0.09725528,-0.1183987;0.3616168;-0.0129645,-0.1640258;0.1669722;-0.007337061,-0.1771825;-0.08148915;-0.03170594,0.07285602;0.006084786;-0.03248037,0.1011917;-0.2911055;-0.002899934,0.09091574;-0.583136;0.06501621,0.1076457;-0.610582;0.004006177,-0.0687454;0.002203275;-0.04085602,-0.08749585;-0.2954867;-0.008776832,-0.08179461;-0.5877501;0.058674,-0.08189426;-0.616493;-0.002966445,-0.00917174;0.3993726;0.01934594,0;0;0,-0.00500655;0.1995628;0.01223122,-0.01111237;0.4994187;0.01582036,0.108617;0.3791975;0.006376317,0.2843907;0.2982455;0.05687773,0.5314252;0.300533;0.09520164,-0.1169238;0.3620917;-0.0197787,-0.1541024;0.1655815;-0.02098893,-0.1819827;-0.08230248;-0.0376093,0.07519394;0.007200494;-0.02634434,0.09529544;-0.2910771;-0.001315376,0.083657;-0.5833488;0.06533173,0.09753599;-0.6131037;0.006624661,-0.06638239;0.001232357;-0.04463025,-0.09309511;-0.2948531;-0.004382912,-0.09119292;-0.5877011;0.0607052,-0.09338918;-0.6124312;-0.005707059,-0.009140562;0.3994516;0.01746379,69.56609
-0;0;0,-0.004611743;0.1995269;0.01295245,-0.01139293;0.4993448;0.01854556,0.1042738;0.3790203;-0.01405919,0.2764043;0.2814531;-0.04324314,0.4948142;0.3904476;-0.09725528,-0.1183987;0.3616168;-0.0129645,-0.1640258;0.1669722;-0.007337061,-0.1771825;-0.08148915;-0.03170594,0.07285602;0.006084786;-0.03248037,0.1011917;-0.2911055;-0.002899934,0.09091574;-0.583136;0.06501621,0.1076457;-0.610582;0.004006177,-0.0687454;0.002203275;-0.04085602,-0.08749585;-0.2954867;-0.008776832,-0.08179461;-0.5877501;0.058674,-0.08189426;-0.616493;-0.002966445,-0.00917174;0.3993726;0.01934594,0;0;0,-0.00500655;0.1995628;0.01223122,-0.01111237;0.4994187;0.01582036,0.108617;0.3791975;0.006376317,0.2843907;0.2982455;0.05687773,0.5314252;0.300533;0.09520164,-0.1169238;0.3620917;-0.0197787,-0.1541024;0.1655815;-0.02098893,-0.1819827;-0.08230248;-0.0376093,0.07519394;0.007200494;-0.02634434,0.09529544;-0.2910771;-0.001315376,0.083657;-0.5833488;0.06533173,0.09753599;-0.6131037;0.006624661,-0.06638239;0.001232357;-0.04463025,-0.09309511;-0.2948531;-0.004382912,-0.09119292;-0.5877011;0.0607052,-0.09338918;-0.6124312;-0.005707059,-0.009140562;0.3994516;0.01746379,69.58598
-0;0;0,-0.004625457;0.1995348;0.01282487,-0.01139508;0.4993556;0.01829058,0.104994;0.3787045;-0.01146877,0.2785745;0.2832552;-0.03902276,0.4987987;0.3900308;-0.0900158,-0.1184266;0.3616728;-0.01318206,-0.1640575;0.1670284;-0.007582515,-0.1771616;-0.08147217;-0.03157772,0.07291412;0.00607224;-0.03235211,0.1012384;-0.2911393;-0.002974866,0.09103478;-0.5831306;0.06512058,0.1077465;-0.6106623;0.00421454,-0.06871591;0.002210605;-0.04090523,-0.08735238;-0.2954549;-0.008533418,-0.08158583;-0.5876819;0.05906916,-0.08115093;-0.6178097;-0.0007586107,-0.009183079;0.3993835;0.01912497,0;0;0,-0.00500655;0.1995628;0.01223122,-0.01111237;0.4994187;0.01582036,0.108617;0.3791975;0.006376317,0.2843907;0.2982455;0.05687773,0.5314252;0.300533;0.09520164,-0.1169238;0.3620917;-0.0197787,-0.1541024;0.1655815;-0.02098893,-0.1819827;-0.08230248;-0.0376093,0.07519394;0.007200494;-0.02634434,0.09529544;-0.2910771;-0.001315376,0.083657;-0.5833488;0.06533173,0.09753599;-0.6131037;0.006624661,-0.06638239;0.001232357;-0.04463025,-0.09309511;-0.2948531;-0.004382912,-0.09119292;-0.5877011;0.0607052,-0.09338918;-0.6124312;-0.005707059,-0.009140562;0.3994516;0.01746379,69.59779
-0;0;0,-0.004625457;0.1995348;0.01282487,-0.01139508;0.4993556;0.01829058,0.104994;0.3787045;-0.01146877,0.2785745;0.2832552;-0.03902276,0.4987987;0.3900308;-0.0900158,-0.1184266;0.3616728;-0.01318206,-0.1640575;0.1670284;-0.007582515,-0.1771616;-0.08147217;-0.03157772,0.07291412;0.00607224;-0.03235211,0.1012384;-0.2911393;-0.002974866,0.09103478;-0.5831306;0.06512058,0.1077465;-0.6106623;0.00421454,-0.06871591;0.002210605;-0.04090523,-0.08735238;-0.2954549;-0.008533418,-0.08158583;-0.5876819;0.05906916,-0.08115093;-0.6178097;-0.0007586107,-0.009183079;0.3993835;0.01912497,0;0;0,-0.0049778;0.1995725;0.01208495,-0.01102;0.4994324;0.01542159,0.1086701;0.3791005;0.006053333,0.283127;0.2957672;0.05724287,0.5300481;0.2940834;0.09632123,-0.1168515;0.361961;-0.01994118,-0.1540934;0.1654622;-0.02107549,-0.1821249;-0.08241175;-0.03758967,0.07524968;0.007152062;-0.02619796,0.0953851;-0.2911393;-0.001361793,0.08372579;-0.5834357;0.06517302,0.09745415;-0.6125702;0.005597331,-0.0663082;0.001228496;-0.04474052,-0.09266195;-0.2948586;-0.004269015,-0.09100229;-0.5878009;0.06040011,-0.09323203;-0.6127817;-0.005727831,-0.009067131;0.3994665;0.01715154,69.61966
-0;0;0,-0.004718993;0.1995345;0.01279495,-0.01159381;0.4993544;0.01817062,0.1052733;0.3783666;-0.009638332,0.2781563;0.2808925;-0.03434208,0.4994338;0.3880342;-0.07969542,-0.1185625;0.3617775;-0.01345296,-0.1641741;0.1671365;-0.007582825,-0.1771684;-0.08137357;-0.03153942,0.07293617;0.006112461;-0.03229479,0.1010685;-0.2911184;-0.002928223,0.09088612;-0.582943;0.06588119,0.107527;-0.6097283;0.00401774,-0.06868887;0.002165857;-0.040953,-0.08749776;-0.295468;-0.008390512,-0.08174185;-0.5877157;0.05912371,-0.08135942;-0.6168274;-0.002041597,-0.009338211;0.3993836;0.01904063,0;0;0,-0.0049778;0.1995725;0.01208495,-0.01102;0.4994324;0.01542159,0.1086701;0.3791005;0.006053333,0.283127;0.2957672;0.05724287,0.5300481;0.2940834;0.09632123,-0.1168515;0.361961;-0.01994118,-0.1540934;0.1654622;-0.02107549,-0.1821249;-0.08241175;-0.03758967,0.07524968;0.007152062;-0.02619796,0.0953851;-0.2911393;-0.001361793,0.08372579;-0.5834357;0.06517302,0.09745415;-0.6125702;0.005597331,-0.0663082;0.001228496;-0.04474052,-0.09266195;-0.2948586;-0.004269015,-0.09100229;-0.5878009;0.06040011,-0.09323203;-0.6127817;-0.005727831,-0.009067131;0.3994665;0.01715154,69.6313
-0;0;0,-0.004718993;0.1995345;0.01279495,-0.01159381;0.4993544;0.01817062,0.1052733;0.3783666;-0.009638332,0.2781563;0.2808925;-0.03434208,0.4994338;0.3880342;-0.07969542,-0.1185625;0.3617775;-0.01345296,-0.1641741;0.1671365;-0.007582825,-0.1771684;-0.08137357;-0.03153942,0.07293617;0.006112461;-0.03229479,0.1010685;-0.2911184;-0.002928223,0.09088612;-0.582943;0.06588119,0.107527;-0.6097283;0.00401774,-0.06868887;0.002165857;-0.040953,-0.08749776;-0.295468;-0.008390512,-0.08174185;-0.5877157;0.05912371,-0.08135942;-0.6168274;-0.002041597,-0.009338211;0.3993836;0.01904063,0;0;0,-0.0049778;0.1995725;0.01208495,-0.01102;0.4994324;0.01542159,0.1086701;0.3791005;0.006053333,0.283127;0.2957672;0.05724287,0.5300481;0.2940834;0.09632123,-0.1168515;0.361961;-0.01994118,-0.1540934;0.1654622;-0.02107549,-0.1821249;-0.08241175;-0.03758967,0.07524968;0.007152062;-0.02619796,0.0953851;-0.2911393;-0.001361793,0.08372579;-0.5834357;0.06517302,0.09745415;-0.6125702;0.005597331,-0.0663082;0.001228496;-0.04474052,-0.09266195;-0.2948586;-0.004269015,-0.09100229;-0.5878009;0.06040011,-0.09323203;-0.6127817;-0.005727831,-0.009067131;0.3994665;0.01715154,69.64239
-0;0;0,-0.004663148;0.1995403;0.0127244,-0.01142321;0.4993637;0.01806489,0.1056214;0.3783099;-0.008787591,0.2793669;0.2819232;-0.03163741,0.5033228;0.3854964;-0.07184102,-0.1182292;0.3616425;-0.01407702,-0.1641526;0.1670849;-0.007880026,-0.1770542;-0.08146091;-0.03151336,0.07303607;0.006181194;-0.03205504,0.1011856;-0.2910643;-0.002853606,0.09099165;-0.5828743;0.06601611,0.1076526;-0.6097925;0.004323367,-0.06848712;0.002105072;-0.04129265,-0.08726858;-0.2954632;-0.008120701,-0.08140127;-0.5878104;0.05895157,-0.07995178;-0.6159929;-0.003381327,-0.009211842;0.3993919;0.01894107,0;0;0,-0.004831892;0.1995901;0.01185044,-0.01064379;0.4994616;0.01447581,0.1089474;0.378936;0.005753644,0.2824725;0.2938074;0.05715547,0.529333;0.2897383;0.09644036,-0.1166204;0.3619275;-0.02045592,-0.1539744;0.165449;-0.02138777,-0.1821339;-0.08242786;-0.03763916,0.07524725;0.007105115;-0.02621771,0.09566665;-0.2911696;-0.001413364,0.08400892;-0.5834495;0.06519385,0.09787637;-0.6124402;0.005459625,-0.06627781;0.001277025;-0.04478415,-0.09277318;-0.29478;-0.004185617,-0.09052874;-0.587733;0.06041705,-0.09289974;-0.6122097;-0.00627327,-0.008793324;0.3994981;0.01644631,69.66449
-0;0;0,-0.004663148;0.1995403;0.0127244,-0.01142321;0.4993637;0.01806489,0.1056214;0.3783099;-0.008787591,0.2793669;0.2819232;-0.03163741,0.5033228;0.3854964;-0.07184102,-0.1182292;0.3616425;-0.01407702,-0.1641526;0.1670849;-0.007880026,-0.1770542;-0.08146091;-0.03151336,0.07303607;0.006181194;-0.03205504,0.1011856;-0.2910643;-0.002853606,0.09099165;-0.5828743;0.06601611,0.1076526;-0.6097925;0.004323367,-0.06848712;0.002105072;-0.04129265,-0.08726858;-0.2954632;-0.008120701,-0.08140127;-0.5878104;0.05895157,-0.07995178;-0.6159929;-0.003381327,-0.009211842;0.3993919;0.01894107,0;0;0,-0.004831892;0.1995901;0.01185044,-0.01064379;0.4994616;0.01447581,0.1089474;0.378936;0.005753644,0.2824725;0.2938074;0.05715547,0.529333;0.2897383;0.09644036,-0.1166204;0.3619275;-0.02045592,-0.1539744;0.165449;-0.02138777,-0.1821339;-0.08242786;-0.03763916,0.07524725;0.007105115;-0.02621771,0.09566665;-0.2911696;-0.001413364,0.08400892;-0.5834495;0.06519385,0.09787637;-0.6124402;0.005459625,-0.06627781;0.001277025;-0.04478415,-0.09277318;-0.29478;-0.004185617,-0.09052874;-0.587733;0.06041705,-0.09289974;-0.6122097;-0.00627327,-0.008793324;0.3994981;0.01644631,69.67577
-0;0;0,-0.004689361;0.1995454;0.01263559,-0.01150062;0.4993702;0.01783101,0.1057453;0.3780505;-0.007981144,0.280741;0.2831478;-0.02721619,0.5069203;0.3843655;-0.06035052,-0.1182597;0.3619441;-0.01470226,-0.1641596;0.1673833;-0.008435092,-0.1771427;-0.08120921;-0.03152671,0.07305352;0.006181261;-0.03201523,0.1012436;-0.2910646;-0.00285686,0.09114268;-0.5828858;0.06597907,0.1075277;-0.6101664;0.004666392,-0.068453;0.002103774;-0.04134926,-0.08721714;-0.2954589;-0.008116744,-0.0811782;-0.5878265;0.05885124,-0.07984032;-0.6168414;-0.002425671,-0.009274241;0.3993992;0.01875342,0;0;0,-0.004798405;0.199597;0.01174861,-0.01057105;0.4994718;0.01415786,0.108929;0.3786032;0.005265183,0.2810071;0.2909384;0.05726515,0.5278988;0.2821761;0.09557581,-0.1166673;0.3618742;-0.02033493,-0.1540803;0.1654069;-0.02127592,-0.1823883;-0.08245699;-0.03746637,0.07524817;0.007096386;-0.02621742,0.09557031;-0.2911744;-0.001286346,0.08423243;-0.5834379;0.06544837,0.09831598;-0.6125363;0.005907543,-0.06627138;0.001281183;-0.04479355,-0.09315748;-0.2946973;-0.003880698,-0.089989;-0.5876905;0.06050098,-0.09306143;-0.6113883;-0.00702079,-0.008730753;0.3995092;0.01617962,69.69957
-0;0;0,-0.004689361;0.1995454;0.01263559,-0.01150062;0.4993702;0.01783101,0.1057453;0.3780505;-0.007981144,0.280741;0.2831478;-0.02721619,0.5069203;0.3843655;-0.06035052,-0.1182597;0.3619441;-0.01470226,-0.1641596;0.1673833;-0.008435092,-0.1771427;-0.08120921;-0.03152671,0.07305352;0.006181261;-0.03201523,0.1012436;-0.2910646;-0.00285686,0.09114268;-0.5828858;0.06597907,0.1075277;-0.6101664;0.004666392,-0.068453;0.002103774;-0.04134926,-0.08721714;-0.2954589;-0.008116744,-0.0811782;-0.5878265;0.05885124,-0.07984032;-0.6168414;-0.002425671,-0.009274241;0.3993992;0.01875342,0;0;0,-0.004798405;0.199597;0.01174861,-0.01057105;0.4994718;0.01415786,0.108929;0.3786032;0.005265183,0.2810071;0.2909384;0.05726515,0.5278988;0.2821761;0.09557581,-0.1166673;0.3618742;-0.02033493,-0.1540803;0.1654069;-0.02127592,-0.1823883;-0.08245699;-0.03746637,0.07524817;0.007096386;-0.02621742,0.09557031;-0.2911744;-0.001286346,0.08423243;-0.5834379;0.06544837,0.09831598;-0.6125363;0.005907543,-0.06627138;0.001281183;-0.04479355,-0.09315748;-0.2946973;-0.003880698,-0.089989;-0.5876905;0.06050098,-0.09306143;-0.6113883;-0.00702079,-0.008730753;0.3995092;0.01617962,69.72092
-0;0;0,-0.004677917;0.1995499;0.01256789,-0.01145022;0.4993773;0.01766337,0.1060224;0.3778889;-0.006900243,0.2817634;0.2838063;-0.02313535,0.5089945;0.3839542;-0.05205653,-0.1182061;0.3624351;-0.01543642,-0.163986;0.167854;-0.008925978,-0.1771875;-0.08076407;-0.03161482,0.07310877;0.006207898;-0.03188369,0.1011953;-0.2910569;-0.002818525,0.0912616;-0.5828685;0.06608269,0.1073401;-0.6107051;0.005395446,-0.06827169;0.002069999;-0.04164962,-0.0870594;-0.2954441;-0.007998668,-0.08106069;-0.5877118;0.0594077,-0.07947955;-0.6163479;-0.002348799,-0.009241333;0.3994063;0.01861965,0;0;0,-0.004798405;0.199597;0.01174861,-0.01057105;0.4994718;0.01415786,0.108929;0.3786032;0.005265183,0.2810071;0.2909384;0.05726515,0.5278988;0.2821761;0.09557581,-0.1166673;0.3618742;-0.02033493,-0.1540803;0.1654069;-0.02127592,-0.1823883;-0.08245699;-0.03746637,0.07524817;0.007096386;-0.02621742,0.09557031;-0.2911744;-0.001286346,0.08423243;-0.5834379;0.06544837,0.09831598;-0.6125363;0.005907543,-0.06627138;0.001281183;-0.04479355,-0.09315748;-0.2946973;-0.003880698,-0.089989;-0.5876905;0.06050098,-0.09306143;-0.6113883;-0.00702079,-0.008730753;0.3995092;0.01617962,69.74284
-0;0;0,-0.004733819;0.1995535;0.01249036,-0.01161861;0.4993806;0.01744643,0.1061364;0.3776351;-0.005705357,0.283218;0.2855376;-0.01836037,0.5132453;0.3807585;-0.04117288,-0.1182997;0.3628516;-0.01616872,-0.1650685;0.1684998;-0.009840869,-0.1774805;-0.08021952;-0.03185558,0.07318226;0.00625323;-0.03170574,0.1013387;-0.2910315;-0.002913775,0.09147853;-0.5828031;0.06616649,0.1074312;-0.6105988;0.005393595,-0.06819692;0.001923973;-0.04177891,-0.08693641;-0.2955627;-0.007859424,-0.08079529;-0.5878217;0.05957187,-0.0792956;-0.6165776;-0.0020338,-0.00937289;0.3994109;0.01844887,0;0;0,-0.004798405;0.199597;0.01174861,-0.01057105;0.4994718;0.01415786,0.108929;0.3786032;0.005265183,0.2810071;0.2909384;0.05726515,0.5278988;0.2821761;0.09557581,-0.1166673;0.3618742;-0.02033493,-0.1540803;0.1654069;-0.02127592,-0.1823883;-0.08245699;-0.03746637,0.07524817;0.007096386;-0.02621742,0.09557031;-0.2911744;-0.001286346,0.08423243;-0.5834379;0.06544837,0.09831598;-0.6125363;0.005907543,-0.06627138;0.001281183;-0.04479355,-0.09315748;-0.2946973;-0.003880698,-0.089989;-0.5876905;0.06050098,-0.09306143;-0.6113883;-0.00702079,-0.008730753;0.3995092;0.01617962,69.7649
-0;0;0,-0.004733819;0.1995535;0.01249036,-0.01161861;0.4993806;0.01744643,0.1061364;0.3776351;-0.005705357,0.283218;0.2855376;-0.01836037,0.5132453;0.3807585;-0.04117288,-0.1182997;0.3628516;-0.01616872,-0.1650685;0.1684998;-0.009840869,-0.1774805;-0.08021952;-0.03185558,0.07318226;0.00625323;-0.03170574,0.1013387;-0.2910315;-0.002913775,0.09147853;-0.5828031;0.06616649,0.1074312;-0.6105988;0.005393595,-0.06819692;0.001923973;-0.04177891,-0.08693641;-0.2955627;-0.007859424,-0.08079529;-0.5878217;0.05957187,-0.0792956;-0.6165776;-0.0020338,-0.00937289;0.3994109;0.01844887,0;0;0,-0.004578596;0.1996122;0.01157667,-0.01020412;0.4994917;0.01383498,0.1092329;0.3785121;0.005087274,0.2790703;0.2866056;0.05713007,0.5259145;0.2752555;0.09506574,-0.1163641;0.3619466;-0.02064655,-0.1538918;0.1654999;-0.02124283,-0.1825404;-0.08238399;-0.03650209,0.07527567;0.007066793;-0.02614637,0.09596474;-0.2911841;-0.001278859,0.08466242;-0.5833962;0.06568635,0.09890002;-0.6124542;0.006128587,-0.06619356;0.001331112;-0.04490703,-0.09236263;-0.2946893;-0.003832549,-0.08966547;-0.5876734;0.06061134,-0.09210139;-0.6123997;-0.00579685,-0.008417223;0.3995288;0.01589173,69.77615
-0;0;0,-0.004763987;0.1995557;0.01244309,-0.01169404;0.4993824;0.01736958,0.1063476;0.3777489;-0.004535336,0.2833423;0.285175;-0.0146826,0.5136101;0.3809288;-0.03223176,-0.1183058;0.3629227;-0.0164888,-0.1650687;0.1685556;-0.01059976,-0.1774568;-0.08017504;-0.03249917,0.07326578;0.006259972;-0.03151092,0.1013324;-0.2910445;-0.002834767,0.09163102;-0.5828049;0.06631576,0.1072635;-0.6113394;0.00641631,-0.06800865;0.001880727;-0.04208665,-0.08669113;-0.2955641;-0.007771939,-0.08060524;-0.5878289;0.05963933,-0.0788627;-0.6166976;-0.001815371,-0.009435244;0.399413;0.01837733,0;0;0,-0.004578596;0.1996122;0.01157667,-0.01020412;0.4994917;0.01383498,0.1092329;0.3785121;0.005087274,0.2790703;0.2866056;0.05713007,0.5259145;0.2752555;0.09506574,-0.1163641;0.3619466;-0.02064655,-0.1538918;0.1654999;-0.02124283,-0.1825404;-0.08238399;-0.03650209,0.07527567;0.007066793;-0.02614637,0.09596474;-0.2911841;-0.001278859,0.08466242;-0.5833962;0.06568635,0.09890002;-0.6124542;0.006128587,-0.06619356;0.001331112;-0.04490703,-0.09236263;-0.2946893;-0.003832549,-0.08966547;-0.5876734;0.06061134,-0.09210139;-0.6123997;-0.00579685,-0.008417223;0.3995288;0.01589173,69.79839
-0;0;0,-0.004763987;0.1995557;0.01244309,-0.01169404;0.4993824;0.01736958,0.1063476;0.3777489;-0.004535336,0.2833423;0.285175;-0.0146826,0.5136101;0.3809288;-0.03223176,-0.1183058;0.3629227;-0.0164888,-0.1650687;0.1685556;-0.01059976,-0.1774568;-0.08017504;-0.03249917,0.07326578;0.006259972;-0.03151092,0.1013324;-0.2910445;-0.002834767,0.09163102;-0.5828049;0.06631576,0.1072635;-0.6113394;0.00641631,-0.06800865;0.001880727;-0.04208665,-0.08669113;-0.2955641;-0.007771939,-0.08060524;-0.5878289;0.05963933,-0.0788627;-0.6166976;-0.001815371,-0.009435244;0.399413;0.01837733,0;0;0,-0.004578596;0.1996122;0.01157667,-0.01020412;0.4994917;0.01383498,0.1092329;0.3785121;0.005087274,0.2790703;0.2866056;0.05713007,0.5259145;0.2752555;0.09506574,-0.1163641;0.3619466;-0.02064655,-0.1538918;0.1654999;-0.02124283,-0.1825404;-0.08238399;-0.03650209,0.07527567;0.007066793;-0.02614637,0.09596474;-0.2911841;-0.001278859,0.08466242;-0.5833962;0.06568635,0.09890002;-0.6124542;0.006128587,-0.06619356;0.001331112;-0.04490703,-0.09236263;-0.2946893;-0.003832549,-0.08966547;-0.5876734;0.06061134,-0.09210139;-0.6123997;-0.00579685,-0.008417223;0.3995288;0.01589173,69.80983
-0;0;0,-0.004763987;0.1995557;0.01244309,-0.01169404;0.4993824;0.01736958,0.1063476;0.3777489;-0.004535336,0.2833423;0.285175;-0.0146826,0.5136101;0.3809288;-0.03223176,-0.1183058;0.3629227;-0.0164888,-0.1650687;0.1685556;-0.01059976,-0.1774568;-0.08017504;-0.03249917,0.07326578;0.006259972;-0.03151092,0.1013324;-0.2910445;-0.002834767,0.09163102;-0.5828049;0.06631576,0.1072635;-0.6113394;0.00641631,-0.06800865;0.001880727;-0.04208665,-0.08669113;-0.2955641;-0.007771939,-0.08060524;-0.5878289;0.05963933,-0.0788627;-0.6166976;-0.001815371,-0.009435244;0.399413;0.01837733,0;0;0,-0.004492899;0.1996202;0.01147144,-0.009965313;0.499504;0.01352701,0.1094038;0.3785426;0.004724191,0.277229;0.2833681;0.0574166,0.5240053;0.2683821;0.094523,-0.1163614;0.3624044;-0.02082368,-0.1539356;0.1659659;-0.02113566,-0.1829235;-0.08190149;-0.03601688,0.07526862;0.007069465;-0.02616595,0.09607311;-0.2911496;-0.001014661,0.08441737;-0.5831679;0.06673075,0.09916401;-0.6107851;0.005427368,-0.06616755;0.001316665;-0.04494576,-0.09243019;-0.2946603;-0.003619041,-0.0895085;-0.58771;0.0605162,-0.09275242;-0.611739;-0.006634217,-0.008238457;0.3995415;0.01564912,69.82082
-0;0;0,-0.004767965;0.1995573;0.01241555,-0.01169587;0.4993842;0.01734776,0.1065949;0.3776938;-0.003196526,0.283562;0.2848165;-0.01071071,0.5133313;0.3828944;-0.02002824,-0.1184074;0.3635506;-0.01685998,-0.1649992;0.1691371;-0.01115134,-0.1773124;-0.07960902;-0.03291688,0.07336055;0.006284792;-0.03128466,0.1013859;-0.2910366;-0.002744576,0.09172859;-0.5828153;0.06633479,0.1078018;-0.6114554;0.006690975,-0.06774487;0.001909361;-0.04250867,-0.08643282;-0.2954751;-0.007677097,-0.08048342;-0.5877282;0.0597969,-0.07786963;-0.6169823;-0.001128867,-0.009439379;0.3994147;0.01834994,0;0;0,-0.004492899;0.1996202;0.01147144,-0.009965313;0.499504;0.01352701,0.1094038;0.3785426;0.004724191,0.277229;0.2833681;0.0574166,0.5240053;0.2683821;0.094523,-0.1163614;0.3624044;-0.02082368,-0.1539356;0.1659659;-0.02113566,-0.1829235;-0.08190149;-0.03601688,0.07526862;0.007069465;-0.02616595,0.09607311;-0.2911496;-0.001014661,0.08441737;-0.5831679;0.06673075,0.09916401;-0.6107851;0.005427368,-0.06616755;0.001316665;-0.04494576,-0.09243019;-0.2946603;-0.003619041,-0.0895085;-0.58771;0.0605162,-0.09275242;-0.611739;-0.006634217,-0.008238457;0.3995415;0.01564912,69.83221
-0;0;0,-0.004767965;0.1995573;0.01241555,-0.01169587;0.4993842;0.01734776,0.1065949;0.3776938;-0.003196526,0.283562;0.2848165;-0.01071071,0.5133313;0.3828944;-0.02002824,-0.1184074;0.3635506;-0.01685998,-0.1649992;0.1691371;-0.01115134,-0.1773124;-0.07960902;-0.03291688,0.07336055;0.006284792;-0.03128466,0.1013859;-0.2910366;-0.002744576,0.09172859;-0.5828153;0.06633479,0.1078018;-0.6114554;0.006690975,-0.06774487;0.001909361;-0.04250867,-0.08643282;-0.2954751;-0.007677097,-0.08048342;-0.5877282;0.0597969,-0.07786963;-0.6169823;-0.001128867,-0.009439379;0.3994147;0.01834994,0;0;0,-0.00442851;0.1996266;0.01138415,-0.009828354;0.499513;0.01329401,0.1095275;0.3787341;0.004339036,0.2748745;0.279433;0.05725091,0.5217938;0.2622634;0.09240861,-0.1162044;0.3624751;-0.02121627,-0.1538643;0.1660528;-0.02130702,-0.1829745;-0.08181964;-0.03586214,0.075263;0.007084665;-0.02617799,0.09623162;-0.2911293;-0.001103135,0.08431156;-0.5831;0.06680172,0.09919537;-0.6121648;0.00741129,-0.06614659;0.001296521;-0.04497718,-0.09279764;-0.2945663;-0.003085181,-0.08922587;-0.5877054;0.06060717,-0.09260654;-0.613541;-0.004489094,-0.008128806;0.3995509;0.01545886,69.85452
-0;0;0,-0.004796008;0.1995596;0.01236858,-0.01174795;0.499386;0.01731308,0.1067463;0.3772657;-0.001676871,0.2840219;0.2847906;-0.006334558,0.5137326;0.3831202;-0.01435552,-0.1183335;0.363799;-0.01752592,-0.1647808;0.1693396;-0.01221699,-0.1776032;-0.07941169;-0.03362696,0.07354278;0.006191612;-0.03087269,0.1015376;-0.2911498;-0.00251033,0.09177447;-0.582958;0.06642939,0.1075587;-0.6116271;0.006746661,-0.06724328;0.002158413;-0.04328606,-0.08590266;-0.295078;-0.007197782,-0.08044124;-0.5875368;0.05942056,-0.07806367;-0.6138449;-0.005165987,-0.009486713;0.3994164;0.01830405,0;0;0,-0.00442851;0.1996266;0.01138415,-0.009828354;0.499513;0.01329401,0.1095275;0.3787341;0.004339036,0.2748745;0.279433;0.05725091,0.5217938;0.2622634;0.09240861,-0.1162044;0.3624751;-0.02121627,-0.1538643;0.1660528;-0.02130702,-0.1829745;-0.08181964;-0.03586214,0.075263;0.007084665;-0.02617799,0.09623162;-0.2911293;-0.001103135,0.08431156;-0.5831;0.06680172,0.09919537;-0.6121648;0.00741129,-0.06614659;0.001296521;-0.04497718,-0.09279764;-0.2945663;-0.003085181,-0.08922587;-0.5877054;0.06060717,-0.09260654;-0.613541;-0.004489094,-0.008128806;0.3995509;0.01545886,69.86554
-0;0;0,-0.004796008;0.1995596;0.01236858,-0.01174795;0.499386;0.01731308,0.1067463;0.3772657;-0.001676871,0.2840219;0.2847906;-0.006334558,0.5137326;0.3831202;-0.01435552,-0.1183335;0.363799;-0.01752592,-0.1647808;0.1693396;-0.01221699,-0.1776032;-0.07941169;-0.03362696,0.07354278;0.006191612;-0.03087269,0.1015376;-0.2911498;-0.00251033,0.09177447;-0.582958;0.06642939,0.1075587;-0.6116271;0.006746661,-0.06724328;0.002158413;-0.04328606,-0.08590266;-0.295078;-0.007197782,-0.08044124;-0.5875368;0.05942056,-0.07806367;-0.6138449;-0.005165987,-0.009486713;0.3994164;0.01830405,0;0;0,-0.00442851;0.1996266;0.01138415,-0.009828354;0.499513;0.01329401,0.1095275;0.3787341;0.004339036,0.2748745;0.279433;0.05725091,0.5217938;0.2622634;0.09240861,-0.1162044;0.3624751;-0.02121627,-0.1538643;0.1660528;-0.02130702,-0.1829745;-0.08181964;-0.03586214,0.075263;0.007084665;-0.02617799,0.09623162;-0.2911293;-0.001103135,0.08431156;-0.5831;0.06680172,0.09919537;-0.6121648;0.00741129,-0.06614659;0.001296521;-0.04497718,-0.09279764;-0.2945663;-0.003085181,-0.08922587;-0.5877054;0.06060717,-0.09260654;-0.613541;-0.004489094,-0.008128806;0.3995509;0.01545886,69.87736
-0;0;0,-0.004740957;0.1995585;0.01240639,-0.01163133;0.4993851;0.01742039,0.1069672;0.3771159;-0.000693135,0.2844613;0.284951;-0.001905855,0.5143234;0.3832223;-0.004392068,-0.1182555;0.3641065;-0.01768218,-0.1648088;0.1696516;-0.01320183,-0.1776196;-0.07910758;-0.03452686,0.07368185;0.006145283;-0.03054866,0.1016976;-0.2912056;-0.002307111,0.09200515;-0.5830133;0.06664468,0.1079515;-0.6111273;0.00627977,-0.06701501;0.0022694;-0.04363298,-0.08546161;-0.2948962;-0.006858554,-0.08019429;-0.5873986;0.0595837,-0.07769962;-0.6131832;-0.005611952,-0.00938818;0.399415;0.01839032,0;0;0,-0.00442851;0.1996266;0.01138415,-0.009828354;0.499513;0.01329401,0.1095275;0.3787341;0.004339036,0.2748745;0.279433;0.05725091,0.5217938;0.2622634;0.09240861,-0.1162044;0.3624751;-0.02121627,-0.1538643;0.1660528;-0.02130702,-0.1829745;-0.08181964;-0.03586214,0.075263;0.007084665;-0.02617799,0.09623162;-0.2911293;-0.001103135,0.08431156;-0.5831;0.06680172,0.09919537;-0.6121648;0.00741129,-0.06614659;0.001296521;-0.04497718,-0.09279764;-0.2945663;-0.003085181,-0.08922587;-0.5877054;0.06060717,-0.09260654;-0.613541;-0.004489094,-0.008128806;0.3995509;0.01545886,69.89875
-0;0;0,-0.004740957;0.1995585;0.01240639,-0.01163133;0.4993851;0.01742039,0.1069672;0.3771159;-0.000693135,0.2844613;0.284951;-0.001905855,0.5143234;0.3832223;-0.004392068,-0.1182555;0.3641065;-0.01768218,-0.1648088;0.1696516;-0.01320183,-0.1776196;-0.07910758;-0.03452686,0.07368185;0.006145283;-0.03054866,0.1016976;-0.2912056;-0.002307111,0.09200515;-0.5830133;0.06664468,0.1079515;-0.6111273;0.00627977,-0.06701501;0.0022694;-0.04363298,-0.08546161;-0.2948962;-0.006858554,-0.08019429;-0.5873986;0.0595837,-0.07769962;-0.6131832;-0.005611952,-0.00938818;0.399415;0.01839032,0;0;0,-0.004309686;0.1996367;0.01125186,-0.009616359;0.4995255;0.01300381,0.1096581;0.3787251;0.003724903,0.2732618;0.2768807;0.05721833,0.5195848;0.2493602;0.08989303,-0.1161391;0.3627217;-0.0213718,-0.1537267;0.1662856;-0.02125641,-0.183124;-0.08158599;-0.03523791,0.07523666;0.007027449;-0.02626899,0.09634308;-0.2911795;-0.001226448,0.0845997;-0.5831255;0.06681506,0.09941366;-0.6127998;0.008227047,-0.06616566;0.001338098;-0.04494793,-0.09269758;-0.2945383;-0.003076646,-0.08913083;-0.5875359;0.06126396,-0.0908288;-0.6153417;-0.001532372,-0.007957631;0.399564;0.01522616,69.91037
-0;0;0,-0.004754118;0.1995573;0.01242113,-0.0116417;0.4993831;0.0174928,0.1070963;0.3769505;0.0004534815,0.2845738;0.2847658;0.00237665,0.5146742;0.3824881;0.004420375,-0.1180683;0.3642386;-0.0183613,-0.1642107;0.1696695;-0.01465405,-0.1773507;-0.07905674;-0.03616244,0.07383385;0.006132209;-0.03018209,0.1019136;-0.2912289;-0.002112675,0.09222883;-0.5830804;0.0666545,0.1083568;-0.611074;0.006182302,-0.06675575;0.002229732;-0.04403064,-0.08498481;-0.2948686;-0.006610103,-0.07963354;-0.5872368;0.0604138,-0.07752214;-0.6136053;-0.004110634,-0.009402135;0.3994126;0.01844166,0;0;0,-0.004309686;0.1996367;0.01125186,-0.009616359;0.4995255;0.01300381,0.1096581;0.3787251;0.003724903,0.2732618;0.2768807;0.05721833,0.5195848;0.2493602;0.08989303,-0.1161391;0.3627217;-0.0213718,-0.1537267;0.1662856;-0.02125641,-0.183124;-0.08158599;-0.03523791,0.07523666;0.007027449;-0.02626899,0.09634308;-0.2911795;-0.001226448,0.0845997;-0.5831255;0.06681506,0.09941366;-0.6127998;0.008227047,-0.06616566;0.001338098;-0.04494793,-0.09269758;-0.2945383;-0.003076646,-0.08913083;-0.5875359;0.06126396,-0.0908288;-0.6153417;-0.001532372,-0.007957631;0.399564;0.01522616,69.93242
-0;0;0,-0.004754118;0.1995573;0.01242113,-0.0116417;0.4993831;0.0174928,0.1070963;0.3769505;0.0004534815,0.2845738;0.2847658;0.00237665,0.5146742;0.3824881;0.004420375,-0.1180683;0.3642386;-0.0183613,-0.1642107;0.1696695;-0.01465405,-0.1773507;-0.07905674;-0.03616244,0.07383385;0.006132209;-0.03018209,0.1019136;-0.2912289;-0.002112675,0.09222883;-0.5830804;0.0666545,0.1083568;-0.611074;0.006182302,-0.06675575;0.002229732;-0.04403064,-0.08498481;-0.2948686;-0.006610103,-0.07963354;-0.5872368;0.0604138,-0.07752214;-0.6136053;-0.004110634,-0.009402135;0.3994126;0.01844166,0;0;0,-0.004309686;0.1996367;0.01125186,-0.009616359;0.4995255;0.01300381,0.1096581;0.3787251;0.003724903,0.2732618;0.2768807;0.05721833,0.5195848;0.2493602;0.08989303,-0.1161391;0.3627217;-0.0213718,-0.1537267;0.1662856;-0.02125641,-0.183124;-0.08158599;-0.03523791,0.07523666;0.007027449;-0.02626899,0.09634308;-0.2911795;-0.001226448,0.0845997;-0.5831255;0.06681506,0.09941366;-0.6127998;0.008227047,-0.06616566;0.001338098;-0.04494793,-0.09269758;-0.2945383;-0.003076646,-0.08913083;-0.5875359;0.06126396,-0.0908288;-0.6153417;-0.001532372,-0.007957631;0.399564;0.01522616,69.94382
-0;0;0,-0.004754118;0.1995573;0.01242113,-0.0116417;0.4993831;0.0174928,0.1070963;0.3769505;0.0004534815,0.2845738;0.2847658;0.00237665,0.5146742;0.3824881;0.004420375,-0.1180683;0.3642386;-0.0183613,-0.1642107;0.1696695;-0.01465405,-0.1773507;-0.07905674;-0.03616244,0.07383385;0.006132209;-0.03018209,0.1019136;-0.2912289;-0.002112675,0.09222883;-0.5830804;0.0666545,0.1083568;-0.611074;0.006182302,-0.06675575;0.002229732;-0.04403064,-0.08498481;-0.2948686;-0.006610103,-0.07963354;-0.5872368;0.0604138,-0.07752214;-0.6136053;-0.004110634,-0.009402135;0.3994126;0.01844166,0;0;0,-0.004188735;0.1996495;0.01106943,-0.009396873;0.4995407;0.01265724,0.1098189;0.3788272;0.003100248,0.2714324;0.27386;0.05660702,0.5166885;0.2375805;0.0887513,-0.1159956;0.3627402;-0.02155627,-0.1535204;0.1662927;-0.02102309,-0.1830848;-0.08160944;-0.03407997,0.07523558;0.007011739;-0.02627628,0.09651916;-0.29118;-0.001201738,0.08480844;-0.5831672;0.06666812,0.09899292;-0.6122344;0.007110007,-0.06611351;0.00133363;-0.04502471,-0.09210168;-0.2945632;-0.002957024,-0.08903945;-0.5875961;0.06124852,-0.09036358;-0.6156461;-0.001252964,-0.007778604;0.3995798;0.0149392,69.95534
-0;0;0,-0.004779394;0.1995577;0.01240493,-0.01170507;0.4993829;0.01746462,0.1071994;0.3769389;0.001474615,0.2845759;0.284678;0.006525504,0.5147837;0.3820444;0.0114361,-0.1179972;0.3643854;-0.01888552,-0.1635946;0.1696826;-0.01546575,-0.1774395;-0.07893522;-0.03777056,0.07397728;0.006111649;-0.02983303,0.1020566;-0.2912774;-0.002060717,0.09240956;-0.5831455;0.06664137,0.1089445;-0.6113279;0.006524034,-0.06662128;0.002114933;-0.04423948,-0.0848014;-0.2949488;-0.006521333,-0.0795678;-0.5873059;0.06056016,-0.07828102;-0.6121799;-0.005713757,-0.009453602;0.3994127;0.01841553,0;0;0,-0.004188735;0.1996495;0.01106943,-0.009396873;0.4995407;0.01265724,0.1098189;0.3788272;0.003100248,0.2714324;0.27386;0.05660702,0.5166885;0.2375805;0.0887513,-0.1159956;0.3627402;-0.02155627,-0.1535204;0.1662927;-0.02102309,-0.1830848;-0.08160944;-0.03407997,0.07523558;0.007011739;-0.02627628,0.09651916;-0.29118;-0.001201738,0.08480844;-0.5831672;0.06666812,0.09899292;-0.6122344;0.007110007,-0.06611351;0.00133363;-0.04502471,-0.09210168;-0.2945632;-0.002957024,-0.08903945;-0.5875961;0.06124852,-0.09036358;-0.6156461;-0.001252964,-0.007778604;0.3995798;0.0149392,69.97734
-0;0;0,-0.004779394;0.1995577;0.01240493,-0.01170507;0.4993829;0.01746462,0.1071994;0.3769389;0.001474615,0.2845759;0.284678;0.006525504,0.5147837;0.3820444;0.0114361,-0.1179972;0.3643854;-0.01888552,-0.1635946;0.1696826;-0.01546575,-0.1774395;-0.07893522;-0.03777056,0.07397728;0.006111649;-0.02983303,0.1020566;-0.2912774;-0.002060717,0.09240956;-0.5831455;0.06664137,0.1089445;-0.6113279;0.006524034,-0.06662128;0.002114933;-0.04423948,-0.0848014;-0.2949488;-0.006521333,-0.0795678;-0.5873059;0.06056016,-0.07828102;-0.6121799;-0.005713757,-0.009453602;0.3994127;0.01841553,0;0;0,-0.004188735;0.1996495;0.01106943,-0.009396873;0.4995407;0.01265724,0.1098189;0.3788272;0.003100248,0.2714324;0.27386;0.05660702,0.5166885;0.2375805;0.0887513,-0.1159956;0.3627402;-0.02155627,-0.1535204;0.1662927;-0.02102309,-0.1830848;-0.08160944;-0.03407997,0.07523558;0.007011739;-0.02627628,0.09651916;-0.29118;-0.001201738,0.08480844;-0.5831672;0.06666812,0.09899292;-0.6122344;0.007110007,-0.06611351;0.00133363;-0.04502471,-0.09210168;-0.2945632;-0.002957024,-0.08903945;-0.5875961;0.06124852,-0.09036358;-0.6156461;-0.001252964,-0.007778604;0.3995798;0.0149392,69.98869
-0;0;0,-0.004685661;0.1995605;0.01239547,-0.01144872;0.4993897;0.01742413,0.1075208;0.3765344;0.002934138,0.2847316;0.2840905;0.01003637,0.5141186;0.3825831;0.02348269,-0.1177586;0.3648933;-0.01950334,-0.1633912;0.1701896;-0.01664528,-0.1771333;-0.0784065;-0.03925315,0.07411893;0.00606953;-0.02948802,0.10221;-0.2913388;-0.001934718,0.09263173;-0.5831879;0.06685729,0.1089753;-0.6115547;0.006927889,-0.06642641;0.002217314;-0.04452657,-0.08443885;-0.2947879;-0.006270852,-0.07892282;-0.5871783;0.06064228,-0.07803476;-0.6108987;-0.006918993,-0.009258828;0.3994184;0.01838885,0;0;0,-0.004091376;0.1996598;0.01091917,-0.009176814;0.4995536;0.01235697,0.1099872;0.3788692;0.002794671,0.2687691;0.2697924;0.05655869,0.5129616;0.2253583;0.08648551,-0.1158584;0.3627447;-0.02169454,-0.153311;0.1662844;-0.02087593,-0.1828297;-0.08164912;-0.03342982,0.07517892;0.007043124;-0.02642962,0.09654704;-0.2911447;-0.001380492,0.08484171;-0.5831398;0.0664563,0.0986366;-0.6135882;0.008682974,-0.06624394;0.001250891;-0.04483498,-0.09227861;-0.2946497;-0.002822343,-0.08895885;-0.5877486;0.06106779,-0.09010627;-0.6159145;-0.001292255,-0.007609021;0.3995932;0.01469594,70.01052
-0;0;0,-0.004685661;0.1995605;0.01239547,-0.01144872;0.4993897;0.01742413,0.1075208;0.3765344;0.002934138,0.2847316;0.2840905;0.01003637,0.5141186;0.3825831;0.02348269,-0.1177586;0.3648933;-0.01950334,-0.1633912;0.1701896;-0.01664528,-0.1771333;-0.0784065;-0.03925315,0.07411893;0.00606953;-0.02948802,0.10221;-0.2913388;-0.001934718,0.09263173;-0.5831879;0.06685729,0.1089753;-0.6115547;0.006927889,-0.06642641;0.002217314;-0.04452657,-0.08443885;-0.2947879;-0.006270852,-0.07892282;-0.5871783;0.06064228,-0.07803476;-0.6108987;-0.006918993,-0.009258828;0.3994184;0.01838885,0;0;0,-0.004091376;0.1996598;0.01091917,-0.009176814;0.4995536;0.01235697,0.1099872;0.3788692;0.002794671,0.2687691;0.2697924;0.05655869,0.5129616;0.2253583;0.08648551,-0.1158584;0.3627447;-0.02169454,-0.153311;0.1662844;-0.02087593,-0.1828297;-0.08164912;-0.03342982,0.07517892;0.007043124;-0.02642962,0.09654704;-0.2911447;-0.001380492,0.08484171;-0.5831398;0.0664563,0.0986366;-0.6135882;0.008682974,-0.06624394;0.001250891;-0.04483498,-0.09227861;-0.2946497;-0.002822343,-0.08895885;-0.5877486;0.06106779,-0.09010627;-0.6159145;-0.001292255,-0.007609021;0.3995932;0.01469594,70.02222
-0;0;0,-0.004677058;0.1995583;0.01243475,-0.01142405;0.4993868;0.01752491,0.1076952;0.3766174;0.004112885,0.2847246;0.2841791;0.01487171,0.5151138;0.3804808;0.02698813,-0.1175125;0.365089;-0.02024774,-0.1630018;0.1703437;-0.0180136,-0.1768231;-0.07818112;-0.0413457,0.07420821;0.006147757;-0.02924629,0.1021869;-0.2912869;-0.001863558,0.09270694;-0.5831102;0.06705183,0.1089997;-0.6113924;0.006998211,-0.06627153;0.002117435;-0.04476159,-0.08445673;-0.2948174;-0.006044351,-0.07893241;-0.5872375;0.0607387,-0.07641869;-0.613011;-0.004469089,-0.009241257;0.3994151;0.01847,0;0;0,-0.004103639;0.1996646;0.0108266,-0.009282707;0.4995571;0.01212046,0.1098493;0.3787997;0.001993882,0.2656074;0.2655756;0.05602825,0.5083398;0.212337;0.08335234,-0.1159619;0.3628308;-0.0218299,-0.1534044;0.1663698;-0.02077568,-0.1827659;-0.08160195;-0.03293853,0.07513805;0.007044157;-0.02654529,0.09651272;-0.2911429;-0.001493048,0.08481236;-0.5831509;0.06628917,0.09875128;-0.613598;0.008548681,-0.0662905;0.00122121;-0.04476693,-0.09230313;-0.2946872;-0.002796225,-0.08936495;-0.5878788;0.06068685,-0.09070748;-0.6145374;-0.003513262,-0.007669416;0.3995988;0.01451375,70.04407
-0;0;0,-0.004677058;0.1995583;0.01243475,-0.01142405;0.4993868;0.01752491,0.1076952;0.3766174;0.004112885,0.2847246;0.2841791;0.01487171,0.5151138;0.3804808;0.02698813,-0.1175125;0.365089;-0.02024774,-0.1630018;0.1703437;-0.0180136,-0.1768231;-0.07818112;-0.0413457,0.07420821;0.006147757;-0.02924629,0.1021869;-0.2912869;-0.001863558,0.09270694;-0.5831102;0.06705183,0.1089997;-0.6113924;0.006998211,-0.06627153;0.002117435;-0.04476159,-0.08445673;-0.2948174;-0.006044351,-0.07893241;-0.5872375;0.0607387,-0.07641869;-0.613011;-0.004469089,-0.009241257;0.3994151;0.01847,0;0;0,-0.004103639;0.1996646;0.0108266,-0.009282707;0.4995571;0.01212046,0.1098493;0.3787997;0.001993882,0.2656074;0.2655756;0.05602825,0.5083398;0.212337;0.08335234,-0.1159619;0.3628308;-0.0218299,-0.1534044;0.1663698;-0.02077568,-0.1827659;-0.08160195;-0.03293853,0.07513805;0.007044157;-0.02654529,0.09651272;-0.2911429;-0.001493048,0.08481236;-0.5831509;0.06628917,0.09875128;-0.613598;0.008548681,-0.0662905;0.00122121;-0.04476693,-0.09230313;-0.2946872;-0.002796225,-0.08936495;-0.5878788;0.06068685,-0.09070748;-0.6145374;-0.003513262,-0.007669416;0.3995988;0.01451375,70.05569
-0;0;0,-0.004667053;0.1995581;0.0124415,-0.01137647;0.4993876;0.01751835,0.1078217;0.3768239;0.004581637,0.284434;0.283988;0.01835089,0.5161307;0.3762649;0.03571723,-0.1173905;0.3651456;-0.02055427,-0.1626096;0.1703311;-0.01895136,-0.1768614;-0.07811867;-0.04281724,0.07432402;0.006195394;-0.02894056,0.1022574;-0.2912645;-0.00178678,0.0931013;-0.5831051;0.06709893,0.1090242;-0.6108904;0.006304972,-0.0661369;0.001922749;-0.04496902,-0.08437715;-0.2949709;-0.0059634,-0.07887834;-0.5874201;0.06069448,-0.07625356;-0.6141887;-0.003334396,-0.009211408;0.3994156;0.01846941,0;0;0,-0.004103639;0.1996646;0.0108266,-0.009282707;0.4995571;0.01212046,0.1098493;0.3787997;0.001993882,0.2656074;0.2655756;0.05602825,0.5083398;0.212337;0.08335234,-0.1159619;0.3628308;-0.0218299,-0.1534044;0.1663698;-0.02077568,-0.1827659;-0.08160195;-0.03293853,0.07513805;0.007044157;-0.02654529,0.09651272;-0.2911429;-0.001493048,0.08481236;-0.5831509;0.06628917,0.09875128;-0.613598;0.008548681,-0.0662905;0.00122121;-0.04476693,-0.09230313;-0.2946872;-0.002796225,-0.08936495;-0.5878788;0.06068685,-0.09070748;-0.6145374;-0.003513262,-0.007669416;0.3995988;0.01451375,70.07769
-0;0;0,-0.004667053;0.1995581;0.0124415,-0.01137647;0.4993876;0.01751835,0.1078217;0.3768239;0.004581637,0.284434;0.283988;0.01835089,0.5161307;0.3762649;0.03571723,-0.1173905;0.3651456;-0.02055427,-0.1626096;0.1703311;-0.01895136,-0.1768614;-0.07811867;-0.04281724,0.07432402;0.006195394;-0.02894056,0.1022574;-0.2912645;-0.00178678,0.0931013;-0.5831051;0.06709893,0.1090242;-0.6108904;0.006304972,-0.0661369;0.001922749;-0.04496902,-0.08437715;-0.2949709;-0.0059634,-0.07887834;-0.5874201;0.06069448,-0.07625356;-0.6141887;-0.003334396,-0.009211408;0.3994156;0.01846941,0;0;0,-0.004103639;0.1996646;0.0108266,-0.009282707;0.4995571;0.01212046,0.1098493;0.3787997;0.001993882,0.2656074;0.2655756;0.05602825,0.5083398;0.212337;0.08335234,-0.1159619;0.3628308;-0.0218299,-0.1534044;0.1663698;-0.02077568,-0.1827659;-0.08160195;-0.03293853,0.07513805;0.007044157;-0.02654529,0.09651272;-0.2911429;-0.001493048,0.08481236;-0.5831509;0.06628917,0.09875128;-0.613598;0.008548681,-0.0662905;0.00122121;-0.04476693,-0.09230313;-0.2946872;-0.002796225,-0.08936495;-0.5878788;0.06068685,-0.09070748;-0.6145374;-0.003513262,-0.007669416;0.3995988;0.01451375,70.0894
-0;0;0,-0.004716589;0.1995524;0.01251388,-0.01146817;0.4993788;0.01771662,0.1077984;0.3766677;0.00548042,0.2839749;0.2833109;0.02117473,0.5151547;0.375226;0.045823,-0.1171672;0.3649847;-0.02109821,-0.162864;0.1702785;-0.01994236,-0.1769151;-0.0780644;-0.04500929,0.07445832;0.006549642;-0.02851423,0.10236;-0.2909211;-0.001446139,0.09313927;-0.5827489;0.06748517,0.1092043;-0.6101127;0.006192833,-0.06586529;0.00151725;-0.04538128,-0.08444963;-0.295261;-0.005665787,-0.07878952;-0.5876923;0.06105682,-0.07665806;-0.6147734;-0.002613939,-0.009291889;0.3994066;0.01862646,0;0;0,-0.004031533;0.1996701;0.01075166,-0.009178083;0.4995639;0.01204261,0.1098386;0.3791286;0.0004651975,0.2625479;0.262032;0.0549471,0.5031888;0.1998316;0.08183656,-0.115958;0.3630067;-0.02182255,-0.1532329;0.1665146;-0.02063623,-0.1823829;-0.0814945;-0.03254354,0.07515869;0.007135632;-0.02646229,0.09687985;-0.2910297;-0.001448998,0.08513092;-0.5830578;0.06623834,0.09907553;-0.6136087;0.008644179,-0.06622892;0.001157916;-0.04485965,-0.09186111;-0.2947883;-0.002921075,-0.08916233;-0.5879859;0.06054469,-0.0910181;-0.6130982;-0.005445398,-0.00757484;0.399605;0.01442192,70.10214
-0;0;0,-0.004716589;0.1995524;0.01251388,-0.01146817;0.4993788;0.01771662,0.1077984;0.3766677;0.00548042,0.2839749;0.2833109;0.02117473,0.5151547;0.375226;0.045823,-0.1171672;0.3649847;-0.02109821,-0.162864;0.1702785;-0.01994236,-0.1769151;-0.0780644;-0.04500929,0.07445832;0.006549642;-0.02851423,0.10236;-0.2909211;-0.001446139,0.09313927;-0.5827489;0.06748517,0.1092043;-0.6101127;0.006192833,-0.06586529;0.00151725;-0.04538128,-0.08444963;-0.295261;-0.005665787,-0.07878952;-0.5876923;0.06105682,-0.07665806;-0.6147734;-0.002613939,-0.009291889;0.3994066;0.01862646,0;0;0,-0.004031533;0.1996701;0.01075166,-0.009178083;0.4995639;0.01204261,0.1098386;0.3791286;0.0004651975,0.2625479;0.262032;0.0549471,0.5031888;0.1998316;0.08183656,-0.115958;0.3630067;-0.02182255,-0.1532329;0.1665146;-0.02063623,-0.1823829;-0.0814945;-0.03254354,0.07515869;0.007135632;-0.02646229,0.09687985;-0.2910297;-0.001448998,0.08513092;-0.5830578;0.06623834,0.09907553;-0.6136087;0.008644179,-0.06622892;0.001157916;-0.04485965,-0.09186111;-0.2947883;-0.002921075,-0.08916233;-0.5879859;0.06054469,-0.0910181;-0.6130982;-0.005445398,-0.00757484;0.399605;0.01442192,70.12216
-0;0;0,-0.004678616;0.199553;0.01251866,-0.01134086;0.4993811;0.01774146,0.1079575;0.3765686;0.006295638,0.282641;0.2811471;0.02580027,0.5132221;0.3740136;0.05241207,-0.1168746;0.365039;-0.02166833,-0.1629799;0.1704275;-0.02085199,-0.1768619;-0.07788043;-0.0463567,0.07456583;0.006569222;-0.02822733,0.1023113;-0.2909346;-0.001362558,0.09320591;-0.5827264;0.06773603,0.1091295;-0.6099232;0.006196603,-0.06570248;0.001449062;-0.0456189,-0.08449078;-0.2952538;-0.005439039,-0.07880726;-0.5876184;0.0615735,-0.0765694;-0.6145706;-0.002249312,-0.0092001;0.3994081;0.01864247,0;0;0,-0.004048421;0.1996752;0.01064952,-0.009406329;0.4995655;0.01178912,0.1097068;0.3795489;-0.000287408,0.2604342;0.2593177;0.05286983,0.4995008;0.1917916;0.08093058,-0.1161106;0.363013;-0.02196774,-0.1532714;0.1665017;-0.02042559,-0.1823392;-0.08152753;-0.03211198,0.07513428;0.007212527;-0.02651074,0.09690861;-0.2909599;-0.001629023,0.08520311;-0.5830262;0.06590042,0.09934542;-0.6134523;0.008180078,-0.06622926;0.001089773;-0.04486087,-0.09179678;-0.2948818;-0.003061913,-0.08953653;-0.5880947;0.06035028,-0.090933;-0.6143953;-0.004273713,-0.0077107;0.3996097;0.01422811,70.13388
-0;0;0,-0.004678616;0.199553;0.01251866,-0.01134086;0.4993811;0.01774146,0.1079575;0.3765686;0.006295638,0.282641;0.2811471;0.02580027,0.5132221;0.3740136;0.05241207,-0.1168746;0.365039;-0.02166833,-0.1629799;0.1704275;-0.02085199,-0.1768619;-0.07788043;-0.0463567,0.07456583;0.006569222;-0.02822733,0.1023113;-0.2909346;-0.001362558,0.09320591;-0.5827264;0.06773603,0.1091295;-0.6099232;0.006196603,-0.06570248;0.001449062;-0.0456189,-0.08449078;-0.2952538;-0.005439039,-0.07880726;-0.5876184;0.0615735,-0.0765694;-0.6145706;-0.002249312,-0.0092001;0.3994081;0.01864247,0;0;0,-0.004048421;0.1996752;0.01064952,-0.009406329;0.4995655;0.01178912,0.1097068;0.3795489;-0.000287408,0.2604342;0.2593177;0.05286983,0.4995008;0.1917916;0.08093058,-0.1161106;0.363013;-0.02196774,-0.1532714;0.1665017;-0.02042559,-0.1823392;-0.08152753;-0.03211198,0.07513428;0.007212527;-0.02651074,0.09690861;-0.2909599;-0.001629023,0.08520311;-0.5830262;0.06590042,0.09934542;-0.6134523;0.008180078,-0.06622926;0.001089773;-0.04486087,-0.09179678;-0.2948818;-0.003061913,-0.08953653;-0.5880947;0.06035028,-0.090933;-0.6143953;-0.004273713,-0.0077107;0.3996097;0.01422811,70.14527
-0;0;0,-0.004692337;0.1995513;0.01254018,-0.01136862;0.4993783;0.0178099,0.1080017;0.3764163;0.007306322,0.28157;0.2796892;0.03006408,0.5128082;0.3700806;0.05936047,-0.1167894;0.3651539;-0.0220051,-0.1623315;0.1704083;-0.02225707,-0.1768028;-0.07793517;-0.04707818,0.07474417;0.006473766;-0.02777406,0.1022315;-0.2910681;-0.001066968,0.09330082;-0.5828828;0.06795837,0.1092044;-0.6098468;0.006122947,-0.06544614;0.001466921;-0.04598534,-0.08426936;-0.2951599;-0.005264226,-0.07857822;-0.5875252;0.06174445,-0.07628411;-0.6144094;-0.002158295,-0.009223768;0.3994052;0.01869484,0;0;0,-0.004048421;0.1996752;0.01064952,-0.009406329;0.4995655;0.01178912,0.1097068;0.3795489;-0.000287408,0.2604342;0.2593177;0.05286983,0.4995008;0.1917916;0.08093058,-0.1161106;0.363013;-0.02196774,-0.1532714;0.1665017;-0.02042559,-0.1823392;-0.08152753;-0.03211198,0.07513428;0.007212527;-0.02651074,0.09690861;-0.2909599;-0.001629023,0.08520311;-0.5830262;0.06590042,0.09934542;-0.6134523;0.008180078,-0.06622926;0.001089773;-0.04486087,-0.09179678;-0.2948818;-0.003061913,-0.08953653;-0.5880947;0.06035028,-0.090933;-0.6143953;-0.004273713,-0.0077107;0.3996097;0.01422811,70.16866
-0;0;0,-0.004659264;0.1995504;0.01256697,-0.01130889;0.4993773;0.01787535,0.108104;0.376158;0.008441165,0.2803802;0.2777058;0.03350304,0.5119821;0.3667181;0.06411938,-0.1165597;0.3649851;-0.02227461,-0.1620488;0.1702272;-0.02259505,-0.1766473;-0.0780534;-0.04796489,0.07489423;0.006358468;-0.02739387,0.1022209;-0.2912253;-0.0009900089,0.09329768;-0.5829893;0.06824969,0.1095537;-0.6093994;0.005821791,-0.06527357;0.001557993;-0.04622698,-0.08411703;-0.2950294;-0.005228609,-0.07825893;-0.5873841;0.0618118,-0.07610232;-0.6133021;-0.003240585,-0.009170721;0.3994039;0.01874925,0;0;0,-0.004048421;0.1996752;0.01064952,-0.009406329;0.4995655;0.01178912,0.1097068;0.3795489;-0.000287408,0.2604342;0.2593177;0.05286983,0.4995008;0.1917916;0.08093058,-0.1161106;0.363013;-0.02196774,-0.1532714;0.1665017;-0.02042559,-0.1823392;-0.08152753;-0.03211198,0.07513428;0.007212527;-0.02651074,0.09690861;-0.2909599;-0.001629023,0.08520311;-0.5830262;0.06590042,0.09934542;-0.6134523;0.008180078,-0.06622926;0.001089773;-0.04486087,-0.09179678;-0.2948818;-0.003061913,-0.08953653;-0.5880947;0.06035028,-0.090933;-0.6143953;-0.004273713,-0.0077107;0.3996097;0.01422811,70.18914
-0;0;0,-0.004659264;0.1995504;0.01256697,-0.01130889;0.4993773;0.01787535,0.108104;0.376158;0.008441165,0.2803802;0.2777058;0.03350304,0.5119821;0.3667181;0.06411938,-0.1165597;0.3649851;-0.02227461,-0.1620488;0.1702272;-0.02259505,-0.1766473;-0.0780534;-0.04796489,0.07489423;0.006358468;-0.02739387,0.1022209;-0.2912253;-0.0009900089,0.09329768;-0.5829893;0.06824969,0.1095537;-0.6093994;0.005821791,-0.06527357;0.001557993;-0.04622698,-0.08411703;-0.2950294;-0.005228609,-0.07825893;-0.5873841;0.0618118,-0.07610232;-0.6133021;-0.003240585,-0.009170721;0.3994039;0.01874925,0;0;0,-0.00401996;0.1996815;0.01054262,-0.009425209;0.4995712;0.01159872,0.1096837;0.3799467;-0.001149526,0.2581328;0.2565848;0.05124021,0.494302;0.1795048;0.07921853,-0.1161311;0.3630369;-0.02208861,-0.1532592;0.1665197;-0.02051057,-0.1822102;-0.08152482;-0.03216192,0.07510445;0.007329354;-0.02656319,0.09695203;-0.2908446;-0.001763953,0.08525601;-0.5829177;0.06573775,0.09908893;-0.6133169;0.007905122,-0.06624322;0.0009900922;-0.04484255,-0.09155585;-0.295024;-0.00318981,-0.08952747;-0.5882447;0.06019386,-0.09093598;-0.614247;-0.004780591,-0.007711425;0.3996164;0.01406552,70.20077
-0;0;0,-0.004659264;0.1995504;0.01256697,-0.01130889;0.4993773;0.01787535,0.108104;0.376158;0.008441165,0.2803802;0.2777058;0.03350304,0.5119821;0.3667181;0.06411938,-0.1165597;0.3649851;-0.02227461,-0.1620488;0.1702272;-0.02259505,-0.1766473;-0.0780534;-0.04796489,0.07489423;0.006358468;-0.02739387,0.1022209;-0.2912253;-0.0009900089,0.09329768;-0.5829893;0.06824969,0.1095537;-0.6093994;0.005821791,-0.06527357;0.001557993;-0.04622698,-0.08411703;-0.2950294;-0.005228609,-0.07825893;-0.5873841;0.0618118,-0.07610232;-0.6133021;-0.003240585,-0.009170721;0.3994039;0.01874925,0;0;0,-0.00401996;0.1996815;0.01054262,-0.009425209;0.4995712;0.01159872,0.1096837;0.3799467;-0.001149526,0.2581328;0.2565848;0.05124021,0.494302;0.1795048;0.07921853,-0.1161311;0.3630369;-0.02208861,-0.1532592;0.1665197;-0.02051057,-0.1822102;-0.08152482;-0.03216192,0.07510445;0.007329354;-0.02656319,0.09695203;-0.2908446;-0.001763953,0.08525601;-0.5829177;0.06573775,0.09908893;-0.6133169;0.007905122,-0.06624322;0.0009900922;-0.04484255,-0.09155585;-0.295024;-0.00318981,-0.08952747;-0.5882447;0.06019386,-0.09093598;-0.614247;-0.004780591,-0.007711425;0.3996164;0.01406552,70.21209
-0;0;0,-0.004659264;0.1995504;0.01256697,-0.01130889;0.4993773;0.01787535,0.108104;0.376158;0.008441165,0.2803802;0.2777058;0.03350304,0.5119821;0.3667181;0.06411938,-0.1165597;0.3649851;-0.02227461,-0.1620488;0.1702272;-0.02259505,-0.1766473;-0.0780534;-0.04796489,0.07489423;0.006358468;-0.02739387,0.1022209;-0.2912253;-0.0009900089,0.09329768;-0.5829893;0.06824969,0.1095537;-0.6093994;0.005821791,-0.06527357;0.001557993;-0.04622698,-0.08411703;-0.2950294;-0.005228609,-0.07825893;-0.5873841;0.0618118,-0.07610232;-0.6133021;-0.003240585,-0.009170721;0.3994039;0.01874925,0;0;0,-0.00388879;0.1996885;0.01045889,-0.009227618;0.4995798;0.01150767,0.1100383;0.3813733;-0.001671199,0.2543362;0.2527771;0.04972068,0.488956;0.1711073;0.07771363,-0.1159656;0.3630408;-0.02213122,-0.1530451;0.1665156;-0.02040458,-0.1819472;-0.08154498;-0.03183309,0.07500827;0.00762235;-0.02675178,0.09714921;-0.290514;-0.001761321,0.08538102;-0.582612;0.06561999,0.09904239;-0.6128575;0.007533588,-0.06635734;0.0007662757;-0.04467791,-0.09147207;-0.2953255;-0.003460314,-0.08931542;-0.5885332;0.05997943,-0.09074552;-0.6149704;-0.00448231,-0.007529781;0.3996245;0.01397,70.22342
-0;0;0,-0.00467573;0.1995392;0.01273817,-0.01134584;0.499362;0.01820994,0.108132;0.376129;0.009456101,0.2801549;0.2776912;0.0362541,0.512704;0.3629858;0.07010272,-0.1165002;0.364977;-0.02222038,-0.161966;0.170215;-0.02300033,-0.1766848;-0.07795036;-0.04940705,0.07508995;0.006444809;-0.02683217,0.1021271;-0.2911633;-0.0004045181,0.09330017;-0.5829964;0.06855562,0.109981;-0.6100311;0.007013712,-0.06470081;0.00154977;-0.04702555,-0.08372651;-0.2948515;-0.004784804,-0.07774781;-0.5871989;0.0622771,-0.07532336;-0.6132295;-0.002634067,-0.009201128;0.3993885;0.0190441,0;0;0,-0.00388879;0.1996885;0.01045889,-0.009227618;0.4995798;0.01150767,0.1100383;0.3813733;-0.001671199,0.2543362;0.2527771;0.04972068,0.488956;0.1711073;0.07771363,-0.1159656;0.3630408;-0.02213122,-0.1530451;0.1665156;-0.02040458,-0.1819472;-0.08154498;-0.03183309,0.07500827;0.00762235;-0.02675178,0.09714921;-0.290514;-0.001761321,0.08538102;-0.582612;0.06561999,0.09904239;-0.6128575;0.007533588,-0.06635734;0.0007662757;-0.04467791,-0.09147207;-0.2953255;-0.003460314,-0.08931542;-0.5885332;0.05997943,-0.09074552;-0.6149704;-0.00448231,-0.007529781;0.3996245;0.01397,70.24541
-0;0;0,-0.00468315;0.1995375;0.01276147,-0.01135162;0.4993594;0.01828524,0.1081877;0.3762007;0.01011697,0.2791017;0.2764452;0.03905216,0.5127097;0.3566987;0.07760962,-0.1164041;0.3651665;-0.02258814,-0.1615955;0.1703416;-0.02359981,-0.1762385;-0.0777944;-0.05032221,0.07520578;0.00645019;-0.02650445,0.102346;-0.2911671;-0.0002870839,0.09343991;-0.5829955;0.06868318,0.1105105;-0.6092505;0.006283112,-0.06456307;0.001534031;-0.04721501,-0.08376092;-0.2948245;-0.004752841,-0.0776967;-0.5872017;0.06217102,-0.07501309;-0.6134235;-0.002505314,-0.009207915;0.3993858;0.01910142,0;0;0,-0.00388879;0.1996885;0.01045889,-0.009227618;0.4995798;0.01150767,0.1100383;0.3813733;-0.001671199,0.2543362;0.2527771;0.04972068,0.488956;0.1711073;0.07771363,-0.1159656;0.3630408;-0.02213122,-0.1530451;0.1665156;-0.02040458,-0.1819472;-0.08154498;-0.03183309,0.07500827;0.00762235;-0.02675178,0.09714921;-0.290514;-0.001761321,0.08538102;-0.582612;0.06561999,0.09904239;-0.6128575;0.007533588,-0.06635734;0.0007662757;-0.04467791,-0.09147207;-0.2953255;-0.003460314,-0.08931542;-0.5885332;0.05997943,-0.09074552;-0.6149704;-0.00448231,-0.007529781;0.3996245;0.01397,70.26742
-0;0;0,-0.00468315;0.1995375;0.01276147,-0.01135162;0.4993594;0.01828524,0.1081877;0.3762007;0.01011697,0.2791017;0.2764452;0.03905216,0.5127097;0.3566987;0.07760962,-0.1164041;0.3651665;-0.02258814,-0.1615955;0.1703416;-0.02359981,-0.1762385;-0.0777944;-0.05032221,0.07520578;0.00645019;-0.02650445,0.102346;-0.2911671;-0.0002870839,0.09343991;-0.5829955;0.06868318,0.1105105;-0.6092505;0.006283112,-0.06456307;0.001534031;-0.04721501,-0.08376092;-0.2948245;-0.004752841,-0.0776967;-0.5872017;0.06217102,-0.07501309;-0.6134235;-0.002505314,-0.009207915;0.3993858;0.01910142,0;0;0,-0.003786503;0.1996939;0.01039312,-0.009057842;0.4995867;0.01144371,0.1102431;0.3817188;-0.001761628,0.2524894;0.2504931;0.04869455,0.483268;0.1582621;0.07579954,-0.115829;0.3630688;-0.02217009,-0.152821;0.1665283;-0.02032568,-0.1817201;-0.08153875;-0.03162068,0.07494753;0.007688752;-0.02690262,0.09739196;-0.290423;-0.001890318,0.0856258;-0.5825281;0.06546108,0.09906302;-0.6123198;0.006701119,-0.06638788;0.0007114139;-0.04463344,-0.09121391;-0.2954174;-0.003506679,-0.08911674;-0.5886552;0.05979595,-0.0904072;-0.6150966;-0.004663598,-0.007374655;0.399631;0.01389737,70.27889
-0;0;0,-0.004669929;0.1995364;0.01278287,-0.01130367;0.4993588;0.01834613,0.1082328;0.3760303;0.01083112,0.2769846;0.2739226;0.04394946,0.5111393;0.3515763;0.08446491,-0.1163281;0.3651838;-0.02268495,-0.1616077;0.1703826;-0.02418602,-0.1764359;-0.07765134;-0.05174097,0.07539102;0.006380432;-0.02599007,0.1026166;-0.2912698;-0.0002398472,0.09367258;-0.5831013;0.06871254,0.1107774;-0.6094081;0.006385259,-0.06442124;0.001481357;-0.04741002,-0.08370204;-0.294832;-0.004670765,-0.0783394;-0.587363;0.06163833,-0.07401133;-0.6153275;-0.0008340776,-0.009179031;0.3993845;0.01914087,0;0;0,-0.003786503;0.1996939;0.01039312,-0.009057842;0.4995867;0.01144371,0.1102431;0.3817188;-0.001761628,0.2524894;0.2504931;0.04869455,0.483268;0.1582621;0.07579954,-0.115829;0.3630688;-0.02217009,-0.152821;0.1665283;-0.02032568,-0.1817201;-0.08153875;-0.03162068,0.07494753;0.007688752;-0.02690262,0.09739196;-0.290423;-0.001890318,0.0856258;-0.5825281;0.06546108,0.09906302;-0.6123198;0.006701119,-0.06638788;0.0007114139;-0.04463344,-0.09121391;-0.2954174;-0.003506679,-0.08911674;-0.5886552;0.05979595,-0.0904072;-0.6150966;-0.004663598,-0.007374655;0.399631;0.01389737,70.30123
-0;0;0,-0.004682891;0.1995364;0.01277853,-0.01134005;0.4993582;0.01834467,0.1082797;0.3761086;0.01169748,0.2756811;0.2724693;0.04684969,0.5104451;0.3470471;0.0895581,-0.1162215;0.3651535;-0.02300455,-0.1616828;0.170394;-0.02442828,-0.1764467;-0.07759477;-0.05242085,0.07560314;0.006301115;-0.02538623,0.1028259;-0.2913899;-0.0001082607,0.0940363;-0.5832376;0.06879488,0.1109633;-0.609879;0.006830465,-0.06423607;0.001449376;-0.04766157,-0.08341286;-0.2948077;-0.004487235,-0.07813218;-0.587346;0.06179599,-0.07368243;-0.6153577;-0.0006088838,-0.009206022;0.3993841;0.01913746,0;0;0,-0.003786503;0.1996939;0.01039312,-0.009057842;0.4995867;0.01144371,0.1102431;0.3817188;-0.001761628,0.2524894;0.2504931;0.04869455,0.483268;0.1582621;0.07579954,-0.115829;0.3630688;-0.02217009,-0.152821;0.1665283;-0.02032568,-0.1817201;-0.08153875;-0.03162068,0.07494753;0.007688752;-0.02690262,0.09739196;-0.290423;-0.001890318,0.0856258;-0.5825281;0.06546108,0.09906302;-0.6123198;0.006701119,-0.06638788;0.0007114139;-0.04463344,-0.09121391;-0.2954174;-0.003506679,-0.08911674;-0.5886552;0.05979595,-0.0904072;-0.6150966;-0.004663598,-0.007374655;0.399631;0.01389737,70.32337
-0;0;0,-0.004682891;0.1995364;0.01277853,-0.01134005;0.4993582;0.01834467,0.1082797;0.3761086;0.01169748,0.2756811;0.2724693;0.04684969,0.5104451;0.3470471;0.0895581,-0.1162215;0.3651535;-0.02300455,-0.1616828;0.170394;-0.02442828,-0.1764467;-0.07759477;-0.05242085,0.07560314;0.006301115;-0.02538623,0.1028259;-0.2913899;-0.0001082607,0.0940363;-0.5832376;0.06879488,0.1109633;-0.609879;0.006830465,-0.06423607;0.001449376;-0.04766157,-0.08341286;-0.2948077;-0.004487235,-0.07813218;-0.587346;0.06179599,-0.07368243;-0.6153577;-0.0006088838,-0.009206022;0.3993841;0.01913746,0;0;0,-0.00379915;0.1996955;0.01035841,-0.00912444;0.4995877;0.0114083,0.1102007;0.3817344;-0.001797758,0.2506428;0.2484174;0.04822801,0.4770851;0.1461742;0.07598089,-0.1159306;0.3630708;-0.02204565,-0.1528954;0.1665262;-0.02008776,-0.1815963;-0.08156852;-0.03128045,0.07491986;0.007857465;-0.02693089,0.09740873;-0.2902423;-0.001814963,0.08586433;-0.5823877;0.06539971,0.09900384;-0.6123269;0.00677314,-0.06645501;0.0004840704;-0.04453647,-0.09151781;-0.295588;-0.00314527,-0.08894315;-0.5888849;0.05986448,-0.09001976;-0.6152709;-0.004664861,-0.00742029;0.3996321;0.01385386,70.33477
-0;0;0,-0.004682891;0.1995364;0.01277853,-0.01134005;0.4993582;0.01834467,0.1082797;0.3761086;0.01169748,0.2756811;0.2724693;0.04684969,0.5104451;0.3470471;0.0895581,-0.1162215;0.3651535;-0.02300455,-0.1616828;0.170394;-0.02442828,-0.1764467;-0.07759477;-0.05242085,0.07560314;0.006301115;-0.02538623,0.1028259;-0.2913899;-0.0001082607,0.0940363;-0.5832376;0.06879488,0.1109633;-0.609879;0.006830465,-0.06423607;0.001449376;-0.04766157,-0.08341286;-0.2948077;-0.004487235,-0.07813218;-0.587346;0.06179599,-0.07368243;-0.6153577;-0.0006088838,-0.009206022;0.3993841;0.01913746,0;0;0,-0.00379915;0.1996955;0.01035841,-0.00912444;0.4995877;0.0114083,0.1102007;0.3817344;-0.001797758,0.2506428;0.2484174;0.04822801,0.4770851;0.1461742;0.07598089,-0.1159306;0.3630708;-0.02204565,-0.1528954;0.1665262;-0.02008776,-0.1815963;-0.08156852;-0.03128045,0.07491986;0.007857465;-0.02693089,0.09740873;-0.2902423;-0.001814963,0.08586433;-0.5823877;0.06539971,0.09900384;-0.6123269;0.00677314,-0.06645501;0.0004840704;-0.04453647,-0.09151781;-0.295588;-0.00314527,-0.08894315;-0.5888849;0.05986448,-0.09001976;-0.6152709;-0.004664861,-0.00742029;0.3996321;0.01385386,70.3463
-0;0;0,-0.004663007;0.1995329;0.01284044,-0.01128826;0.4993536;0.01849063,0.108346;0.3760215;0.01249035,0.2741142;0.2702187;0.04891377,0.5093168;0.3418675;0.09414837,-0.1160948;0.3651634;-0.02310869,-0.1619375;0.1704962;-0.02487618,-0.1765924;-0.07750352;-0.05282923,0.07568118;0.006357832;-0.02513835,0.1029297;-0.2913333;0.0001103412,0.09413449;-0.5831844;0.06899864,0.1107296;-0.6098291;0.006948702,-0.06416279;0.001445577;-0.04776031,-0.08388254;-0.2947209;-0.004210904,-0.0774788;-0.5872843;0.06186215,-0.0735281;-0.6151415;-0.0007689223,-0.009163991;0.3993792;0.0192598,0;0;0,-0.00379915;0.1996955;0.01035841,-0.00912444;0.4995877;0.0114083,0.1102007;0.3817344;-0.001797758,0.2506428;0.2484174;0.04822801,0.4770851;0.1461742;0.07598089,-0.1159306;0.3630708;-0.02204565,-0.1528954;0.1665262;-0.02008776,-0.1815963;-0.08156852;-0.03128045,0.07491986;0.007857465;-0.02693089,0.09740873;-0.2902423;-0.001814963,0.08586433;-0.5823877;0.06539971,0.09900384;-0.6123269;0.00677314,-0.06645501;0.0004840704;-0.04453647,-0.09151781;-0.295588;-0.00314527,-0.08894315;-0.5888849;0.05986448,-0.09001976;-0.6152709;-0.004664861,-0.00742029;0.3996321;0.01385386,70.36806
-0;0;0,-0.004663007;0.1995329;0.01284044,-0.01128826;0.4993536;0.01849063,0.108346;0.3760215;0.01249035,0.2741142;0.2702187;0.04891377,0.5093168;0.3418675;0.09414837,-0.1160948;0.3651634;-0.02310869,-0.1619375;0.1704962;-0.02487618,-0.1765924;-0.07750352;-0.05282923,0.07568118;0.006357832;-0.02513835,0.1029297;-0.2913333;0.0001103412,0.09413449;-0.5831844;0.06899864,0.1107296;-0.6098291;0.006948702,-0.06416279;0.001445577;-0.04776031,-0.08388254;-0.2947209;-0.004210904,-0.0774788;-0.5872843;0.06186215,-0.0735281;-0.6151415;-0.0007689223,-0.009163991;0.3993792;0.0192598,0;0;0,-0.003809301;0.1996962;0.01034043,-0.009168909;0.4995881;0.01140491,0.1101653;0.3817997;-0.001913275,0.2482497;0.2456875;0.04713943,0.4721176;0.1378597;0.07464082,-0.1159473;0.3629825;-0.02201767,-0.1529081;0.1664374;-0.02004219,-0.1815252;-0.08167359;-0.03108751,0.07489654;0.007964041;-0.02696447,0.09734851;-0.2901361;-0.001820698,0.08582937;-0.5822974;0.06532928,0.099104;-0.6120842;0.00652574,-0.06648817;0.0002600165;-0.04448882,-0.09157158;-0.2958479;-0.00336783,-0.08933654;-0.5891781;0.05950037,-0.08986007;-0.615628;-0.00495996,-0.007452305;0.3996324;0.01383782,70.39039
-0;0;0,-0.004638403;0.1995334;0.01284094,-0.01124283;0.4993545;0.01850141,0.1084064;0.3759893;0.01298254,0.2710691;0.2662349;0.05164511,0.5068225;0.3353975;0.09787188,-0.1158879;0.3652528;-0.02359046,-0.1615524;0.1705433;-0.02530847,-0.1763489;-0.07744876;-0.05325519,0.07578866;0.006336406;-0.0248179,0.1030301;-0.2913715;0.0002401434,0.09430529;-0.5832146;0.06917128,0.1115648;-0.6089742;0.006222248,-0.06409606;0.001456618;-0.04784949,-0.08407307;-0.2946983;-0.004338864,-0.07711638;-0.5871472;0.06218368,-0.07283875;-0.6155051;0.0002018549,-0.009123949;0.3993798;0.0192674,0;0;0,-0.003809301;0.1996962;0.01034043,-0.009168909;0.4995881;0.01140491,0.1101653;0.3817997;-0.001913275,0.2482497;0.2456875;0.04713943,0.4721176;0.1378597;0.07464082,-0.1159473;0.3629825;-0.02201767,-0.1529081;0.1664374;-0.02004219,-0.1815252;-0.08167359;-0.03108751,0.07489654;0.007964041;-0.02696447,0.09734851;-0.2901361;-0.001820698,0.08582937;-0.5822974;0.06532928,0.099104;-0.6120842;0.00652574,-0.06648817;0.0002600165;-0.04448882,-0.09157158;-0.2958479;-0.00336783,-0.08933654;-0.5891781;0.05950037,-0.08986007;-0.615628;-0.00495996,-0.007452305;0.3996324;0.01383782,70.40176
-0;0;0,-0.004638403;0.1995334;0.01284094,-0.01124283;0.4993545;0.01850141,0.1084064;0.3759893;0.01298254,0.2710691;0.2662349;0.05164511,0.5068225;0.3353975;0.09787188,-0.1158879;0.3652528;-0.02359046,-0.1615524;0.1705433;-0.02530847,-0.1763489;-0.07744876;-0.05325519,0.07578866;0.006336406;-0.0248179,0.1030301;-0.2913715;0.0002401434,0.09430529;-0.5832146;0.06917128,0.1115648;-0.6089742;0.006222248,-0.06409606;0.001456618;-0.04784949,-0.08407307;-0.2946983;-0.004338864,-0.07711638;-0.5871472;0.06218368,-0.07283875;-0.6155051;0.0002018549,-0.009123949;0.3993798;0.0192674,0;0;0,-0.003809301;0.1996962;0.01034043,-0.009168909;0.4995881;0.01140491,0.1101653;0.3817997;-0.001913275,0.2482497;0.2456875;0.04713943,0.4721176;0.1378597;0.07464082,-0.1159473;0.3629825;-0.02201767,-0.1529081;0.1664374;-0.02004219,-0.1815252;-0.08167359;-0.03108751,0.07489654;0.007964041;-0.02696447,0.09734851;-0.2901361;-0.001820698,0.08582937;-0.5822974;0.06532928,0.099104;-0.6120842;0.00652574,-0.06648817;0.0002600165;-0.04448882,-0.09157158;-0.2958479;-0.00336783,-0.08933654;-0.5891781;0.05950037,-0.08986007;-0.615628;-0.00495996,-0.007452305;0.3996324;0.01383782,70.41334
-0;0;0,-0.004640736;0.1995318;0.01286557,-0.01126935;0.4993512;0.0185957,0.1083814;0.3756658;0.01412993,0.2684023;0.2628205;0.05486364,0.5045633;0.3301928;0.1016498,-0.1158803;0.3651998;-0.02353936,-0.1615656;0.1704979;-0.02554434,-0.1763348;-0.07750215;-0.05343451,0.07594367;0.006292936;-0.02435071,0.1034824;-0.2914204;0.0003154706,0.09479041;-0.5832752;0.06920088,0.1115823;-0.6087874;0.005829386,-0.06398293;0.001496825;-0.04799942,-0.08400786;-0.2946083;-0.00417285,-0.07657034;-0.586967;0.06269361,-0.06534381;-0.5548707;-0.03504799,-0.009137701;0.3993767;0.01933203,0;0;0,-0.003782653;0.1996965;0.01034423,-0.009125417;0.4995892;0.0114863,0.1101821;0.3816861;-0.001897885,0.2450269;0.2425043;0.04755198,0.4662927;0.1291319;0.0737844,-0.1159485;0.3629816;-0.02186604,-0.152889;0.1664318;-0.01996834,-0.1814666;-0.08167574;-0.03119114,0.07486306;0.008039764;-0.02703487,0.09714198;-0.2900513;-0.001630243,0.08567007;-0.5822548;0.06534372,0.09962426;-0.6124007;0.007189576,-0.06652772;0.0002041893;-0.04442996,-0.09177393;-0.2959776;-0.003945377,-0.08971647;-0.5892704;0.05910339,-0.08998073;-0.6152678;-0.005891334,-0.007415519;0.3996323;0.01387348,70.43507
-0;0;0,-0.004640736;0.1995318;0.01286557,-0.01126935;0.4993512;0.0185957,0.1083814;0.3756658;0.01412993,0.2684023;0.2628205;0.05486364,0.5045633;0.3301928;0.1016498,-0.1158803;0.3651998;-0.02353936,-0.1615656;0.1704979;-0.02554434,-0.1763348;-0.07750215;-0.05343451,0.07594367;0.006292936;-0.02435071,0.1034824;-0.2914204;0.0003154706,0.09479041;-0.5832752;0.06920088,0.1115823;-0.6087874;0.005829386,-0.06398293;0.001496825;-0.04799942,-0.08400786;-0.2946083;-0.00417285,-0.07657034;-0.586967;0.06269361,-0.06534381;-0.5548707;-0.03504799,-0.009137701;0.3993767;0.01933203,0;0;0,-0.003782653;0.1996965;0.01034423,-0.009125417;0.4995892;0.0114863,0.1101821;0.3816861;-0.001897885,0.2450269;0.2425043;0.04755198,0.4662927;0.1291319;0.0737844,-0.1159485;0.3629816;-0.02186604,-0.152889;0.1664318;-0.01996834,-0.1814666;-0.08167574;-0.03119114,0.07486306;0.008039764;-0.02703487,0.09714198;-0.2900513;-0.001630243,0.08567007;-0.5822548;0.06534372,0.09962426;-0.6124007;0.007189576,-0.06652772;0.0002041893;-0.04442996,-0.09177393;-0.2959776;-0.003945377,-0.08971647;-0.5892704;0.05910339,-0.08998073;-0.6152678;-0.005891334,-0.007415519;0.3996323;0.01387348,70.44657
-0;0;0,-0.004519563;0.199532;0.01290571,-0.01106993;0.4993526;0.01865224,0.1085947;0.3758281;0.01446786,0.266816;0.2608447;0.05623936,0.5067162;0.2956146;0.1173862,-0.1157306;0.3654602;-0.02364062,-0.1613611;0.170747;-0.02579016,-0.1765141;-0.0772288;-0.05368968,0.07602648;0.006313078;-0.02408568,0.1037106;-0.2913726;0.0007507354,0.09490252;-0.5832649;0.0694622,0.1111935;-0.6093505;0.006648302,-0.0639048;0.001558966;-0.04810142,-0.08386165;-0.2945084;-0.003989853,-0.07629927;-0.5869418;0.06253501,-0.06490491;-0.55484;-0.03518818,-0.008968916;0.3993773;0.01938928,0;0;0,-0.003782653;0.1996965;0.01034423,-0.009125417;0.4995892;0.0114863,0.1101821;0.3816861;-0.001897885,0.2450269;0.2425043;0.04755198,0.4662927;0.1291319;0.0737844,-0.1159485;0.3629816;-0.02186604,-0.152889;0.1664318;-0.01996834,-0.1814666;-0.08167574;-0.03119114,0.07486306;0.008039764;-0.02703487,0.09714198;-0.2900513;-0.001630243,0.08567007;-0.5822548;0.06534372,0.09962426;-0.6124007;0.007189576,-0.06652772;0.0002041893;-0.04442996,-0.09177393;-0.2959776;-0.003945377,-0.08971647;-0.5892704;0.05910339,-0.08998073;-0.6152678;-0.005891334,-0.007415519;0.3996323;0.01387348,70.46866
-0;0;0,-0.004533766;0.1995314;0.01290929,-0.0110871;0.4993514;0.0186903,0.1085667;0.3756798;0.01493571,0.2600004;0.2523553;0.05805069,0.4998604;0.2949831;0.1141762,-0.1156838;0.365662;-0.0239315,-0.1617323;0.1710521;-0.02648926,-0.1764622;-0.07702953;-0.05366472,0.07610366;0.0063332;-0.02383532,0.103777;-0.2913718;0.0007803254,0.09509089;-0.5832626;0.06951419,0.1117424;-0.6095002;0.006979823,-0.06377312;0.001594728;-0.04827469,-0.08373368;-0.2944444;-0.003975667,-0.07701781;-0.5867965;0.06299573,-0.06533974;-0.5547275;-0.03468796,-0.008985176;0.3993761;0.01941323,0;0;0,-0.003787389;0.1996941;0.01038921,-0.009213381;0.4995856;0.01169925,0.1101304;0.3816711;-0.001796802,0.2430376;0.2403725;0.04688975,0.4599907;0.1189703;0.07321179,-0.1159565;0.3629573;-0.02182641,-0.1528923;0.1664058;-0.02001919,-0.1814932;-0.08169457;-0.03134096,0.07481805;0.008072506;-0.02714948,0.09719115;-0.2900046;-0.001664005,0.0858778;-0.5822133;0.06531428,0.0998318;-0.6122374;0.006992575,-0.06654363;0.0001928673;-0.04440615,-0.09150024;-0.2960944;-0.004518569,-0.08975641;-0.5893145;0.05887689,-0.08977243;-0.6151007;-0.006364502,-0.007461237;0.3996276;0.01400735,70.49091
-0;0;0,-0.004533766;0.1995314;0.01290929,-0.0110871;0.4993514;0.0186903,0.1085667;0.3756798;0.01493571,0.2600004;0.2523553;0.05805069,0.4998604;0.2949831;0.1141762,-0.1156838;0.365662;-0.0239315,-0.1617323;0.1710521;-0.02648926,-0.1764622;-0.07702953;-0.05366472,0.07610366;0.0063332;-0.02383532,0.103777;-0.2913718;0.0007803254,0.09509089;-0.5832626;0.06951419,0.1117424;-0.6095002;0.006979823,-0.06377312;0.001594728;-0.04827469,-0.08373368;-0.2944444;-0.003975667,-0.07701781;-0.5867965;0.06299573,-0.06533974;-0.5547275;-0.03468796,-0.008985176;0.3993761;0.01941323,0;0;0,-0.003787389;0.1996941;0.01038921,-0.009213381;0.4995856;0.01169925,0.1101304;0.3816711;-0.001796802,0.2430376;0.2403725;0.04688975,0.4599907;0.1189703;0.07321179,-0.1159565;0.3629573;-0.02182641,-0.1528923;0.1664058;-0.02001919,-0.1814932;-0.08169457;-0.03134096,0.07481805;0.008072506;-0.02714948,0.09719115;-0.2900046;-0.001664005,0.0858778;-0.5822133;0.06531428,0.0998318;-0.6122374;0.006992575,-0.06654363;0.0001928673;-0.04440615,-0.09150024;-0.2960944;-0.004518569,-0.08975641;-0.5893145;0.05887689,-0.08977243;-0.6151007;-0.006364502,-0.007461237;0.3996276;0.01400735,70.50235
-0;0;0,-0.004533766;0.1995314;0.01290929,-0.0110871;0.4993514;0.0186903,0.1085667;0.3756798;0.01493571,0.2600004;0.2523553;0.05805069,0.4998604;0.2949831;0.1141762,-0.1156838;0.365662;-0.0239315,-0.1617323;0.1710521;-0.02648926,-0.1764622;-0.07702953;-0.05366472,0.07610366;0.0063332;-0.02383532,0.103777;-0.2913718;0.0007803254,0.09509089;-0.5832626;0.06951419,0.1117424;-0.6095002;0.006979823,-0.06377312;0.001594728;-0.04827469,-0.08373368;-0.2944444;-0.003975667,-0.07701781;-0.5867965;0.06299573,-0.06533974;-0.5547275;-0.03468796,-0.008985176;0.3993761;0.01941323,0;0;0,-0.003787389;0.1996941;0.01038921,-0.009213381;0.4995856;0.01169925,0.1101304;0.3816711;-0.001796802,0.2430376;0.2403725;0.04688975,0.4599907;0.1189703;0.07321179,-0.1159565;0.3629573;-0.02182641,-0.1528923;0.1664058;-0.02001919,-0.1814932;-0.08169457;-0.03134096,0.07481805;0.008072506;-0.02714948,0.09719115;-0.2900046;-0.001664005,0.0858778;-0.5822133;0.06531428,0.0998318;-0.6122374;0.006992575,-0.06654363;0.0001928673;-0.04440615,-0.09150024;-0.2960944;-0.004518569,-0.08975641;-0.5893145;0.05887689,-0.08977243;-0.6151007;-0.006364502,-0.007461237;0.3996276;0.01400735,70.52434
-0;0;0,-0.004453797;0.1995292;0.01297218,-0.01094493;0.499348;0.01891578,0.1088263;0.3762272;0.0158219,0.2571787;0.2492077;0.05892196,0.4978013;0.2897362;0.1133114,-0.1154957;0.3657421;-0.02400146,-0.1615529;0.1711337;-0.02650905,-0.1763288;-0.07695279;-0.05361563,0.07622419;0.006337685;-0.02344582,0.1041922;-0.2913558;0.0009755194,0.0956127;-0.583268;0.06963166,0.1121148;-0.6097093;0.007306632,-0.063681;0.001634805;-0.0483948,-0.08373225;-0.2943632;-0.003862318,-0.07621604;-0.5865769;0.06362566,-0.06421742;-0.5545105;-0.0340187,-0.008861048;0.3993719;0.01956566,0;0;0,-0.003717365;0.1997003;0.01029446,-0.009091301;0.4995932;0.01155906,0.1102445;0.3817295;-0.001925713,0.2407153;0.2380876;0.046493,0.4539346;0.1102238;0.07272968,-0.1159252;0.3629003;-0.02166459,-0.1528671;0.1663491;-0.01994596,-0.1816744;-0.08171697;-0.03149371,0.0747712;0.008155462;-0.02725355,0.09731224;-0.2899118;-0.001801543,0.08594705;-0.5820851;0.0653223,0.1002043;-0.6124899;0.007600602,-0.06659524;9.826385E-05;-0.04432904,-0.09146093;-0.2962235;-0.004641376,-0.08958486;-0.5894576;0.05868518,-0.08956917;-0.6152797;-0.006514579,-0.007355275;0.3996351;0.01387565,70.53572
-0;0;0,-0.004453797;0.1995292;0.01297218,-0.01094493;0.499348;0.01891578,0.1088263;0.3762272;0.0158219,0.2571787;0.2492077;0.05892196,0.4978013;0.2897362;0.1133114,-0.1154957;0.3657421;-0.02400146,-0.1615529;0.1711337;-0.02650905,-0.1763288;-0.07695279;-0.05361563,0.07622419;0.006337685;-0.02344582,0.1041922;-0.2913558;0.0009755194,0.0956127;-0.583268;0.06963166,0.1121148;-0.6097093;0.007306632,-0.063681;0.001634805;-0.0483948,-0.08373225;-0.2943632;-0.003862318,-0.07621604;-0.5865769;0.06362566,-0.06421742;-0.5545105;-0.0340187,-0.008861048;0.3993719;0.01956566,0;0;0,-0.003717365;0.1997003;0.01029446,-0.009091301;0.4995932;0.01155906,0.1102445;0.3817295;-0.001925713,0.2407153;0.2380876;0.046493,0.4539346;0.1102238;0.07272968,-0.1159252;0.3629003;-0.02166459,-0.1528671;0.1663491;-0.01994596,-0.1816744;-0.08171697;-0.03149371,0.0747712;0.008155462;-0.02725355,0.09731224;-0.2899118;-0.001801543,0.08594705;-0.5820851;0.0653223,0.1002043;-0.6124899;0.007600602,-0.06659524;9.826385E-05;-0.04432904,-0.09146093;-0.2962235;-0.004641376,-0.08958486;-0.5894576;0.05868518,-0.08956917;-0.6152797;-0.006514579,-0.007355275;0.3996351;0.01387565,70.54716
-0;0;0,-0.004337392;0.199524;0.01308953,-0.01075364;0.4993429;0.01910722,0.1089315;0.3757597;0.01646144,0.256815;0.2482731;0.05979303,0.4989949;0.2777337;0.1143912,-0.1151258;0.3655118;-0.02411143,-0.1612787;0.1709229;-0.02636618,-0.1761349;-0.07717061;-0.05336408,0.07639109;0.006324213;-0.02289991,0.104431;-0.2913674;0.001461659,0.09599489;-0.5833199;0.06996389,0.1127281;-0.6099071;0.007880025,-0.06339528;0.001636648;-0.04876843,-0.08322806;-0.2941974;-0.003063697,-0.07540549;-0.5864424;0.06425402,-0.06312681;-0.5543779;-0.03335516,-0.008677988;0.3993664;0.01973753,0;0;0,-0.003717365;0.1997003;0.01029446,-0.009091301;0.4995932;0.01155906,0.1102445;0.3817295;-0.001925713,0.2407153;0.2380876;0.046493,0.4539346;0.1102238;0.07272968,-0.1159252;0.3629003;-0.02166459,-0.1528671;0.1663491;-0.01994596,-0.1816744;-0.08171697;-0.03149371,0.0747712;0.008155462;-0.02725355,0.09731224;-0.2899118;-0.001801543,0.08594705;-0.5820851;0.0653223,0.1002043;-0.6124899;0.007600602,-0.06659524;9.826385E-05;-0.04432904,-0.09146093;-0.2962235;-0.004641376,-0.08958486;-0.5894576;0.05868518,-0.08956917;-0.6152797;-0.006514579,-0.007355275;0.3996351;0.01387565,70.56911
-0;0;0,-0.004337392;0.199524;0.01308953,-0.01075364;0.4993429;0.01910722,0.1089315;0.3757597;0.01646144,0.256815;0.2482731;0.05979303,0.4989949;0.2777337;0.1143912,-0.1151258;0.3655118;-0.02411143,-0.1612787;0.1709229;-0.02636618,-0.1761349;-0.07717061;-0.05336408,0.07639109;0.006324213;-0.02289991,0.104431;-0.2913674;0.001461659,0.09599489;-0.5833199;0.06996389,0.1127281;-0.6099071;0.007880025,-0.06339528;0.001636648;-0.04876843,-0.08322806;-0.2941974;-0.003063697,-0.07540549;-0.5864424;0.06425402,-0.06312681;-0.5543779;-0.03335516,-0.008677988;0.3993664;0.01973753,0;0;0,-0.003633913;0.1997022;0.01028741,-0.008942895;0.4995962;0.01156921,0.1103535;0.3816486;-0.002011814,0.2385171;0.2358026;0.0459782,0.4484504;0.1024865;0.07156789,-0.115803;0.3628002;-0.02151861,-0.1527196;0.1662434;-0.01991794,-0.1815449;-0.08181284;-0.03163144,0.07473194;0.0082353;-0.02733711,0.09741469;-0.2898196;-0.001865929,0.0856183;-0.5819201;0.06549946,0.1006606;-0.6115752;0.006943602,-0.06661485;3.836603E-05;-0.04429966,-0.09149178;-0.2963077;-0.004800934,-0.08965161;-0.5895504;0.05848693,-0.08949507;-0.6154041;-0.006675903,-0.007221369;0.3996378;0.0138795,70.58099
-0;0;0,-0.004353683;0.1995244;0.01307906,-0.01074257;0.4993434;0.01912307,0.1089367;0.3757631;0.01667839,0.2544338;0.2455526;0.05998901,0.4979316;0.2637347;0.1136382,-0.115067;0.3655388;-0.02427322,-0.1614788;0.1710166;-0.02692503,-0.1761216;-0.07712938;-0.05355559,0.07652575;0.006297397;-0.02245332,0.1047247;-0.2913961;0.001699956,0.09629001;-0.5833254;0.07030138,0.1129456;-0.611447;0.01013822,-0.06323703;0.001690312;-0.04897164,-0.0827891;-0.2941436;-0.003145441,-0.07486075;-0.5862954;0.06456328,-0.0624508;-0.5542369;-0.03302819,-0.008679211;0.3993666;0.01974172,0;0;0,-0.003633913;0.1997022;0.01028741,-0.008942895;0.4995962;0.01156921,0.1103535;0.3816486;-0.002011814,0.2385171;0.2358026;0.0459782,0.4484504;0.1024865;0.07156789,-0.115803;0.3628002;-0.02151861,-0.1527196;0.1662434;-0.01991794,-0.1815449;-0.08181284;-0.03163144,0.07473194;0.0082353;-0.02733711,0.09741469;-0.2898196;-0.001865929,0.0856183;-0.5819201;0.06549946,0.1006606;-0.6115752;0.006943602,-0.06661485;3.836603E-05;-0.04429966,-0.09149178;-0.2963077;-0.004800934,-0.08965161;-0.5895504;0.05848693,-0.08949507;-0.6154041;-0.006675903,-0.007221369;0.3996378;0.0138795,70.60274
-0;0;0,-0.004353683;0.1995244;0.01307906,-0.01074257;0.4993434;0.01912307,0.1089367;0.3757631;0.01667839,0.2544338;0.2455526;0.05998901,0.4979316;0.2637347;0.1136382,-0.115067;0.3655388;-0.02427322,-0.1614788;0.1710166;-0.02692503,-0.1761216;-0.07712938;-0.05355559,0.07652575;0.006297397;-0.02245332,0.1047247;-0.2913961;0.001699956,0.09629001;-0.5833254;0.07030138,0.1129456;-0.611447;0.01013822,-0.06323703;0.001690312;-0.04897164,-0.0827891;-0.2941436;-0.003145441,-0.07486075;-0.5862954;0.06456328,-0.0624508;-0.5542369;-0.03302819,-0.008679211;0.3993666;0.01974172,0;0;0,-0.003633913;0.1997022;0.01028741,-0.008942895;0.4995962;0.01156921,0.1103535;0.3816486;-0.002011814,0.2385171;0.2358026;0.0459782,0.4484504;0.1024865;0.07156789,-0.115803;0.3628002;-0.02151861,-0.1527196;0.1662434;-0.01991794,-0.1815449;-0.08181284;-0.03163144,0.07473194;0.0082353;-0.02733711,0.09741469;-0.2898196;-0.001865929,0.0856183;-0.5819201;0.06549946,0.1006606;-0.6115752;0.006943602,-0.06661485;3.836603E-05;-0.04429966,-0.09149178;-0.2963077;-0.004800934,-0.08965161;-0.5895504;0.05848693,-0.08949507;-0.6154041;-0.006675903,-0.007221369;0.3996378;0.0138795,70.61458
-0;0;0,-0.004390852;0.199525;0.01305696,-0.01084676;0.4993432;0.01907616,0.1088948;0.3759352;0.01682918,0.2522768;0.2433249;0.05991206,0.4966913;0.2429703;0.1124611,-0.1151106;0.365748;-0.02456357,-0.1614329;0.1712077;-0.02744639,-0.1763139;-0.07694753;-0.05385752,0.07664475;0.006475532;-0.02199204,0.1048391;-0.2912512;0.001753934,0.09649959;-0.5831801;0.07036871,0.1132294;-0.6111413;0.01001833,-0.06312408;0.001764319;-0.04911454,-0.0825153;-0.2940899;-0.003351644,-0.07490694;-0.5862955;0.06416181,-0.06234277;-0.5542347;-0.03341034,-0.008760189;0.3993669;0.01970105,0;0;0,-0.003571111;0.1997027;0.01029881,-0.008806862;0.4995984;0.01166193,0.1104322;0.381635;-0.002110441,0.2363316;0.2338539;0.0459529,0.4419436;0.0940766;0.07214484,-0.1157429;0.3627147;-0.02125443,-0.1527494;0.1661737;-0.01979878,-0.1816549;-0.0818608;-0.03177275,0.07471886;0.008282647;-0.02735854,0.09735362;-0.2897783;-0.001916109,0.0857292;-0.5818784;0.06548125,0.1006;-0.6120192;0.007547643,-0.06665679;-3.140414E-05;-0.04423653,-0.09138536;-0.2963818;-0.004677184,-0.08953173;-0.589659;0.05845025,-0.08992989;-0.6154063;-0.006835058,-0.007120522;0.3996383;0.0139283,70.63611
-0;0;0,-0.004390852;0.199525;0.01305696,-0.01084676;0.4993432;0.01907616,0.1088948;0.3759352;0.01682918,0.2522768;0.2433249;0.05991206,0.4966913;0.2429703;0.1124611,-0.1151106;0.365748;-0.02456357,-0.1614329;0.1712077;-0.02744639,-0.1763139;-0.07694753;-0.05385752,0.07664475;0.006475532;-0.02199204,0.1048391;-0.2912512;0.001753934,0.09649959;-0.5831801;0.07036871,0.1132294;-0.6111413;0.01001833,-0.06312408;0.001764319;-0.04911454,-0.0825153;-0.2940899;-0.003351644,-0.07490694;-0.5862955;0.06416181,-0.06234277;-0.5542347;-0.03341034,-0.008760189;0.3993669;0.01970105,0;0;0,-0.003571111;0.1997027;0.01029881,-0.008806862;0.4995984;0.01166193,0.1104322;0.381635;-0.002110441,0.2363316;0.2338539;0.0459529,0.4419436;0.0940766;0.07214484,-0.1157429;0.3627147;-0.02125443,-0.1527494;0.1661737;-0.01979878,-0.1816549;-0.0818608;-0.03177275,0.07471886;0.008282647;-0.02735854,0.09735362;-0.2897783;-0.001916109,0.0857292;-0.5818784;0.06548125,0.1006;-0.6120192;0.007547643,-0.06665679;-3.140414E-05;-0.04423653,-0.09138536;-0.2963818;-0.004677184,-0.08953173;-0.589659;0.05845025,-0.08992989;-0.6154063;-0.006835058,-0.007120522;0.3996383;0.0139283,70.64789
-0;0;0,-0.004412175;0.1995239;0.01306669,-0.01089381;0.4993407;0.01913653,0.1088716;0.3762302;0.01545147,0.2508454;0.2424248;0.05949207,0.4951451;0.229892;0.1110727,-0.1150981;0.3658078;-0.02469504,-0.161391;0.1712612;-0.02762409,-0.1764563;-0.07689655;-0.05390684,0.0767334;0.006520308;-0.02166729,0.1046818;-0.2911837;0.002647862,0.09655414;-0.583295;0.07050727,0.1131514;-0.6113529;0.01024533,-0.06305037;0.001720262;-0.04921069,-0.08274785;-0.2940833;-0.00325096,-0.07489205;-0.5863106;0.06413944,-0.06272448;-0.5542262;-0.03348732,-0.008799169;0.3993644;0.01974022,0;0;0,-0.003571111;0.1997027;0.01029881,-0.008806862;0.4995984;0.01166193,0.1104322;0.381635;-0.002110441,0.2363316;0.2338539;0.0459529,0.4419436;0.0940766;0.07214484,-0.1157429;0.3627147;-0.02125443,-0.1527494;0.1661737;-0.01979878,-0.1816549;-0.0818608;-0.03177275,0.07471886;0.008282647;-0.02735854,0.09735362;-0.2897783;-0.001916109,0.0857292;-0.5818784;0.06548125,0.1006;-0.6120192;0.007547643,-0.06665679;-3.140414E-05;-0.04423653,-0.09138536;-0.2963818;-0.004677184,-0.08953173;-0.589659;0.05845025,-0.08992989;-0.6154063;-0.006835058,-0.007120522;0.3996383;0.0139283,70.65986
-0;0;0,-0.004412175;0.1995239;0.01306669,-0.01089381;0.4993407;0.01913653,0.1088716;0.3762302;0.01545147,0.2508454;0.2424248;0.05949207,0.4951451;0.229892;0.1110727,-0.1150981;0.3658078;-0.02469504,-0.161391;0.1712612;-0.02762409,-0.1764563;-0.07689655;-0.05390684,0.0767334;0.006520308;-0.02166729,0.1046818;-0.2911837;0.002647862,0.09655414;-0.583295;0.07050727,0.1131514;-0.6113529;0.01024533,-0.06305037;0.001720262;-0.04921069,-0.08274785;-0.2940833;-0.00325096,-0.07489205;-0.5863106;0.06413944,-0.06272448;-0.5542262;-0.03348732,-0.008799169;0.3993644;0.01974022,0;0;0,-0.003547905;0.1997032;0.01029771,-0.008684615;0.4996006;0.01172974,0.1104881;0.3815924;-0.002190752,0.2325506;0.2304952;0.04545776,0.4362857;0.08783177;0.0707386,-0.1156995;0.362807;-0.02120606,-0.1527178;0.1662684;-0.01971266,-0.1817245;-0.08174565;-0.03186406,0.07468893;0.008329389;-0.02742596,0.09731418;-0.2897342;-0.002004927,0.08572368;-0.5818654;0.06526323,0.1011679;-0.6113197;0.006539416,-0.06672622;-0.0001437705;-0.04413152,-0.09146543;-0.2965141;-0.004728369,-0.08968119;-0.5898776;0.05799854,-0.0882244;-0.6177117;-0.004768759,-0.007042061;0.3996391;0.01396428,70.68127
-0;0;0,-0.004352759;0.1995215;0.01312304,-0.01063645;0.4993389;0.01939308,0.1090795;0.376321;0.01596319,0.2503157;0.2413415;0.05877513,0.4938647;0.2164985;0.109438,-0.1148917;0.3659763;-0.02471885,-0.1612488;0.1714451;-0.02765814,-0.1765773;-0.07669786;-0.05392806,0.07676619;0.006629525;-0.02151745,0.1045652;-0.2910949;0.002718396,0.09658009;-0.5832267;0.07050692,0.1130684;-0.6112916;0.01022418,-0.06297438;0.001515264;-0.04931461,-0.08299214;-0.2942078;-0.002976689,-0.07473619;-0.5865635;0.06380612,-0.06236006;-0.5544742;-0.0337953,-0.008621683;0.3993606;0.0199149,0;0;0,-0.003547905;0.1997032;0.01029771,-0.008684615;0.4996006;0.01172974,0.1104881;0.3815924;-0.002190752,0.2325506;0.2304952;0.04545776,0.4362857;0.08783177;0.0707386,-0.1156995;0.362807;-0.02120606,-0.1527178;0.1662684;-0.01971266,-0.1817245;-0.08174565;-0.03186406,0.07468893;0.008329389;-0.02742596,0.09731418;-0.2897342;-0.002004927,0.08572368;-0.5818654;0.06526323,0.1011679;-0.6113197;0.006539416,-0.06672622;-0.0001437705;-0.04413152,-0.09146543;-0.2965141;-0.004728369,-0.08968119;-0.5898776;0.05799854,-0.0882244;-0.6177117;-0.004768759,-0.007042061;0.3996391;0.01396428,70.69234
-0;0;0,-0.004352759;0.1995215;0.01312304,-0.01063645;0.4993389;0.01939308,0.1090795;0.376321;0.01596319,0.2503157;0.2413415;0.05877513,0.4938647;0.2164985;0.109438,-0.1148917;0.3659763;-0.02471885,-0.1612488;0.1714451;-0.02765814,-0.1765773;-0.07669786;-0.05392806,0.07676619;0.006629525;-0.02151745,0.1045652;-0.2910949;0.002718396,0.09658009;-0.5832267;0.07050692,0.1130684;-0.6112916;0.01022418,-0.06297438;0.001515264;-0.04931461,-0.08299214;-0.2942078;-0.002976689,-0.07473619;-0.5865635;0.06380612,-0.06236006;-0.5544742;-0.0337953,-0.008621683;0.3993606;0.0199149,0;0;0,-0.003547905;0.1997032;0.01029771,-0.008684615;0.4996006;0.01172974,0.1104881;0.3815924;-0.002190752,0.2325506;0.2304952;0.04545776,0.4362857;0.08783177;0.0707386,-0.1156995;0.362807;-0.02120606,-0.1527178;0.1662684;-0.01971266,-0.1817245;-0.08174565;-0.03186406,0.07468893;0.008329389;-0.02742596,0.09731418;-0.2897342;-0.002004927,0.08572368;-0.5818654;0.06526323,0.1011679;-0.6113197;0.006539416,-0.06672622;-0.0001437705;-0.04413152,-0.09146543;-0.2965141;-0.004728369,-0.08968119;-0.5898776;0.05799854,-0.0882244;-0.6177117;-0.004768759,-0.007042061;0.3996391;0.01396428,70.71487
-0;0;0,-0.00312531;0.1995308;0.01333102,-0.002466612;0.4993892;0.02067948,0.1140691;0.3749312;0.01665877,0.2539686;0.2380729;0.05786482,0.4962678;0.2003177;0.1065024,-0.110143;0.3666303;-0.02306485,-0.1565574;0.1721132;-0.02603385,-0.171941;-0.07601473;-0.05241338,0.07686911;0.006733393;-0.02111401,0.1047848;-0.2910092;0.002761997,0.09683824;-0.5831504;0.07051444,0.113446;-0.611245;0.01030307,-0.06290542;0.001545803;-0.0494016,-0.0831838;-0.2941523;-0.003018621,-0.07462428;-0.5864262;0.06408374,-0.06197038;-0.5543628;-0.03347731,-0.003339943;0.399393;0.02074971,0;0;0,-0.003484494;0.1997053;0.01027823,-0.008568982;0.4996038;0.0117469,0.1105884;0.3816454;-0.002221524,0.2300722;0.2284675;0.04531973,0.4322976;0.08356206;0.06996266,-0.1157248;0.3628211;-0.02084439,-0.1528491;0.1663007;-0.0196044,-0.181849;-0.08170962;-0.03184675,0.07465385;0.008418068;-0.02749433,0.09737495;-0.2896436;-0.002136929,0.08574582;-0.5817767;0.06511672,0.1012517;-0.61121;0.006380644,-0.06674959;-0.0002169885;-0.04409587,-0.09136824;-0.2966138;-0.004816476,-0.08976781;-0.5899599;0.05799685,-0.08443962;-0.5577365;-0.04026606,-0.006945794;0.3996415;0.01396051,70.73717
-0;0;0,-0.003136216;0.1995297;0.01334455,-0.003351349;0.4993884;0.02078329,0.1137876;0.3752921;0.01723385,0.2524652;0.2367101;0.05677541,0.4927223;0.1871029;0.1048966,-0.1104338;0.3665963;-0.02317153,-0.1568005;0.1720682;-0.02616561,-0.1724926;-0.07603708;-0.05257613,0.0769091;0.006820456;-0.02093971,0.1048578;-0.2909318;0.002777439,0.09700673;-0.5830724;0.07054308,0.1133338;-0.6094342;0.008074678,-0.06287394;0.001529197;-0.04944219,-0.08314483;-0.2941735;-0.003084633,-0.0748474;-0.5864643;0.06397706,-0.0704646;-0.6160403;0.003574662,-0.003713373;0.399389;0.02082158,0;0;0,-0.003484494;0.1997053;0.01027823,-0.008568982;0.4996038;0.0117469,0.1105884;0.3816454;-0.002221524,0.2300722;0.2284675;0.04531973,0.4322976;0.08356206;0.06996266,-0.1157248;0.3628211;-0.02084439,-0.1528491;0.1663007;-0.0196044,-0.181849;-0.08170962;-0.03184675,0.07465385;0.008418068;-0.02749433,0.09737495;-0.2896436;-0.002136929,0.08574582;-0.5817767;0.06511672,0.1012517;-0.61121;0.006380644,-0.06674959;-0.0002169885;-0.04409587,-0.09136824;-0.2966138;-0.004816476,-0.08976781;-0.5899599;0.05799685,-0.08443962;-0.5577365;-0.04026606,-0.006945794;0.3996415;0.01396051,70.75882
-0;0;0,-0.003136216;0.1995297;0.01334455,-0.003351349;0.4993884;0.02078329,0.1137876;0.3752921;0.01723385,0.2524652;0.2367101;0.05677541,0.4927223;0.1871029;0.1048966,-0.1104338;0.3665963;-0.02317153,-0.1568005;0.1720682;-0.02616561,-0.1724926;-0.07603708;-0.05257613,0.0769091;0.006820456;-0.02093971,0.1048578;-0.2909318;0.002777439,0.09700673;-0.5830724;0.07054308,0.1133338;-0.6094342;0.008074678,-0.06287394;0.001529197;-0.04944219,-0.08314483;-0.2941735;-0.003084633,-0.0748474;-0.5864643;0.06397706,-0.0704646;-0.6160403;0.003574662,-0.003713373;0.399389;0.02082158,0;0;0,-0.003484494;0.1997053;0.01027823,-0.008568982;0.4996038;0.0117469,0.1105884;0.3816454;-0.002221524,0.2300722;0.2284675;0.04531973,0.4322976;0.08356206;0.06996266,-0.1157248;0.3628211;-0.02084439,-0.1528491;0.1663007;-0.0196044,-0.181849;-0.08170962;-0.03184675,0.07465385;0.008418068;-0.02749433,0.09737495;-0.2896436;-0.002136929,0.08574582;-0.5817767;0.06511672,0.1012517;-0.61121;0.006380644,-0.06674959;-0.0002169885;-0.04409587,-0.09136824;-0.2966138;-0.004816476,-0.08976781;-0.5899599;0.05799685,-0.08443962;-0.5577365;-0.04026606,-0.006945794;0.3996415;0.01396051,70.78228
-0;0;0,-0.003064366;0.1995298;0.01335918,-0.003547907;0.4993879;0.0208294,0.1137973;0.3755749;0.01748822,0.2507571;0.2349715;0.05586392,0.4892124;0.1764557;0.1029275,-0.1104345;0.3667059;-0.02335455,-0.1569234;0.1722083;-0.02643148,-0.1725848;-0.07589737;-0.05285735,0.07702;0.00699369;-0.02046969,0.1050608;-0.2907833;0.002823753,0.09732331;-0.5829321;0.07056761,0.1139515;-0.6096915;0.008668493,-0.06277888;0.001464133;-0.04956479,-0.08367147;-0.2941669;-0.003026459,-0.07474338;-0.5864452;0.06400824,-0.07053177;-0.6155289;0.002950605,-0.003768109;0.3993882;0.02085107,0;0;0,-0.003261945;0.199705;0.01035671,-0.007627049;0.499614;0.01250566,0.1111168;0.381568;-0.002180744,0.2280449;0.2263599;0.04512962,0.4262788;0.07608202;0.07002709,-0.1151307;0.3629618;-0.02054199,-0.1523441;0.1664584;-0.01928201,-0.1814287;-0.08152506;-0.03186316,0.07455818;0.008543872;-0.02771426,0.09760691;-0.289483;-0.002244221,0.08542522;-0.5816213;0.06488874,0.1016674;-0.6108095;0.006020863,-0.06679485;-0.0002895031;-0.04402686,-0.09126235;-0.2967109;-0.00483923,-0.08968108;-0.5900621;0.05795092,-0.08883087;-0.6179747;-0.004730057,-0.006349354;0.3996402;0.0144054,70.79414
-0;0;0,-0.003064366;0.1995298;0.01335918,-0.003547907;0.4993879;0.0208294,0.1137973;0.3755749;0.01748822,0.2507571;0.2349715;0.05586392,0.4892124;0.1764557;0.1029275,-0.1104345;0.3667059;-0.02335455,-0.1569234;0.1722083;-0.02643148,-0.1725848;-0.07589737;-0.05285735,0.07702;0.00699369;-0.02046969,0.1050608;-0.2907833;0.002823753,0.09732331;-0.5829321;0.07056761,0.1139515;-0.6096915;0.008668493,-0.06277888;0.001464133;-0.04956479,-0.08367147;-0.2941669;-0.003026459,-0.07474338;-0.5864452;0.06400824,-0.07053177;-0.6155289;0.002950605,-0.003768109;0.3993882;0.02085107,0;0;0,-0.003261945;0.199705;0.01035671,-0.007627049;0.499614;0.01250566,0.1111168;0.381568;-0.002180744,0.2280449;0.2263599;0.04512962,0.4262788;0.07608202;0.07002709,-0.1151307;0.3629618;-0.02054199,-0.1523441;0.1664584;-0.01928201,-0.1814287;-0.08152506;-0.03186316,0.07455818;0.008543872;-0.02771426,0.09760691;-0.289483;-0.002244221,0.08542522;-0.5816213;0.06488874,0.1016674;-0.6108095;0.006020863,-0.06679485;-0.0002895031;-0.04402686,-0.09126235;-0.2967109;-0.00483923,-0.08968108;-0.5900621;0.05795092,-0.08883087;-0.6179747;-0.004730057,-0.006349354;0.3996402;0.0144054,70.80527
-0;0;0,-5.452046E-05;0.1999184;0.005714068,0.0001930276;0.4998178;0.0006808653,0.1182138;0.3831532;-0.007336808,0.2384029;0.2327398;0.04679605,0.4305722;0.07513037;0.07381876,-0.1102245;0.3661055;-0.02797297,-0.1577006;0.1721079;-0.01743963,-0.1786569;-0.07636683;-0.03536003,0.07514764;0.006264172;-0.02671315,0.1032398;-0.2913728;-0.001752065,0.0940759;-0.5841548;0.06301472,0.1068578;-0.6123547;0.00201143,-0.067131;0.00204944;-0.04346526,-0.08571712;-0.2948151;-0.004401229,-0.08053797;-0.5883408;0.05737166,-0.07744323;-0.6161687;-0.005343873,4.785582E-05;0.3999175;0.005144115,0;0;0,-0.003261945;0.199705;0.01035671,-0.007627049;0.499614;0.01250566,0.1111168;0.381568;-0.002180744,0.2280449;0.2263599;0.04512962,0.4262788;0.07608202;0.07002709,-0.1151307;0.3629618;-0.02054199,-0.1523441;0.1664584;-0.01928201,-0.1814287;-0.08152506;-0.03186316,0.07455818;0.008543872;-0.02771426,0.09760691;-0.289483;-0.002244221,0.08542522;-0.5816213;0.06488874,0.1016674;-0.6108095;0.006020863,-0.06679485;-0.0002895031;-0.04402686,-0.09126235;-0.2967109;-0.00483923,-0.08968108;-0.5900621;0.05795092,-0.08883087;-0.6179747;-0.004730057,-0.006349354;0.3996402;0.0144054,81.03522
-0;0;0,-5.452046E-05;0.1999184;0.005714068,0.0001930276;0.4998178;0.0006808653,0.1182138;0.3831532;-0.007336808,0.2384029;0.2327398;0.04679605,0.4305722;0.07513037;0.07381876,-0.1102245;0.3661055;-0.02797297,-0.1577006;0.1721079;-0.01743963,-0.1786569;-0.07636683;-0.03536003,0.07514764;0.006264172;-0.02671315,0.1032398;-0.2913728;-0.001752065,0.0940759;-0.5841548;0.06301472,0.1068578;-0.6123547;0.00201143,-0.067131;0.00204944;-0.04346526,-0.08571712;-0.2948151;-0.004401229,-0.08053797;-0.5883408;0.05737166,-0.07744323;-0.6161687;-0.005343873,4.785582E-05;0.3999175;0.005144115,0;0;0,-0.003226179;0.1997016;0.01043386,-0.007502326;0.4996103;0.01284072,0.111197;0.3817954;-0.002313777,0.2259293;0.2248372;0.04459676,0.4208244;0.07015698;0.06888535,-0.1150274;0.3630794;-0.02044946,-0.1522872;0.1665844;-0.01926367,-0.1815297;-0.08138703;-0.03171586,0.07454657;0.008529969;-0.02774973,0.09753258;-0.2895107;-0.002383692,0.08571458;-0.581628;0.0649052,0.1011026;-0.6106504;0.00558687,-0.0668056;-0.0002860516;-0.04401056,-0.09170369;-0.2966266;-0.004483823,-0.08927689;-0.5900621;0.05788391,-0.08406803;-0.5577908;-0.04039407,-0.006251668;0.3996344;0.01464438,81.0508
-0;0;0,-3.816273E-05;0.1999183;0.005716855,0.0002445507;0.4998179;0.0006822888,0.1182678;0.3830551;-0.007056979,0.2380733;0.2321633;0.04659291,0.4302127;0.0744689;0.07333023,-0.1101856;0.3661253;-0.02800134,-0.1577519;0.1721481;-0.0174989,-0.1789435;-0.07631296;-0.03533228,0.07515404;0.006285627;-0.02669012,0.103065;-0.2913633;-0.001668496,0.09386884;-0.5841306;0.06315994,0.1063718;-0.6123734;0.002153877,-0.06707959;0.002005456;-0.0435466,-0.08576459;-0.2948471;-0.004438896,-0.08061296;-0.5883416;0.05748409,-0.07768709;-0.6163703;-0.004989572,8.602689E-05;0.3999174;0.005138707,0;0;0,-0.003226179;0.1997016;0.01043386,-0.007502326;0.4996103;0.01284072,0.111197;0.3817954;-0.002313777,0.2259293;0.2248372;0.04459676,0.4208244;0.07015698;0.06888535,-0.1150274;0.3630794;-0.02044946,-0.1522872;0.1665844;-0.01926367,-0.1815297;-0.08138703;-0.03171586,0.07454657;0.008529969;-0.02774973,0.09753258;-0.2895107;-0.002383692,0.08571458;-0.581628;0.0649052,0.1011026;-0.6106504;0.00558687,-0.0668056;-0.0002860516;-0.04401056,-0.09170369;-0.2966266;-0.004483823,-0.08927689;-0.5900621;0.05788391,-0.08406803;-0.5577908;-0.04039407,-0.006251668;0.3996344;0.01464438,81.06753
-0;0;0,-3.816273E-05;0.1999183;0.005716855,0.0002445507;0.4998179;0.0006822888,0.1182678;0.3830551;-0.007056979,0.2380733;0.2321633;0.04659291,0.4302127;0.0744689;0.07333023,-0.1101856;0.3661253;-0.02800134,-0.1577519;0.1721481;-0.0174989,-0.1789435;-0.07631296;-0.03533228,0.07515404;0.006285627;-0.02669012,0.103065;-0.2913633;-0.001668496,0.09386884;-0.5841306;0.06315994,0.1063718;-0.6123734;0.002153877,-0.06707959;0.002005456;-0.0435466,-0.08576459;-0.2948471;-0.004438896,-0.08061296;-0.5883416;0.05748409,-0.07768709;-0.6163703;-0.004989572,8.602689E-05;0.3999174;0.005138707,0;0;0,-0.003226179;0.1997016;0.01043386,-0.007502326;0.4996103;0.01284072,0.111197;0.3817954;-0.002313777,0.2259293;0.2248372;0.04459676,0.4208244;0.07015698;0.06888535,-0.1150274;0.3630794;-0.02044946,-0.1522872;0.1665844;-0.01926367,-0.1815297;-0.08138703;-0.03171586,0.07454657;0.008529969;-0.02774973,0.09753258;-0.2895107;-0.002383692,0.08571458;-0.581628;0.0649052,0.1011026;-0.6106504;0.00558687,-0.0668056;-0.0002860516;-0.04401056,-0.09170369;-0.2966266;-0.004483823,-0.08927689;-0.5900621;0.05788391,-0.08406803;-0.5577908;-0.04039407,-0.006251668;0.3996344;0.01464438,81.08872
-0;0;0,-3.149207E-05;0.1999173;0.005749482,0.000303315;0.4998186;0.0007857401,0.1183045;0.3830995;-0.007033507,0.237945;0.2320116;0.04643217,0.4297807;0.0738879;0.07281369,-0.1101833;0.3662585;-0.02796015,-0.1582887;0.1724315;-0.01714566,-0.1791141;-0.07611333;-0.03422703,0.0751419;0.006263246;-0.02672951,0.1030444;-0.2913853;-0.001694132,0.09372138;-0.5841442;0.06315419,0.1063609;-0.6122094;0.001949098,-0.06706328;0.002036727;-0.04357026,-0.08579671;-0.294809;-0.00443304,-0.08069018;-0.5882882;0.05756577,-0.07780302;-0.6161277;-0.005145207,0.0001209667;0.3999166;0.005207751,0;0;0,-0.003191236;0.199701;0.01045577,-0.00740871;0.49961;0.01291873,0.1112755;0.3818707;-0.00232854,0.2222252;0.2220276;0.04393521,0.4141644;0.06356604;0.06737237,-0.1149428;0.3630286;-0.02035573,-0.1522779;0.1665479;-0.01915667,-0.1816571;-0.08140779;-0.03159929,0.07452944;0.008605532;-0.02777239,0.09743406;-0.2894459;-0.002459709,0.08522572;-0.5815555;0.06479314,0.1015416;-0.6102192;0.005246505,-0.06684218;-0.0004160109;-0.04395394,-0.09158228;-0.2967727;-0.004449256,-0.08933201;-0.5901942;0.05799097,-0.08416429;-0.5579261;-0.0402886,-0.006173634;0.3996336;0.01470627,81.10024
-0;0;0,-3.149207E-05;0.1999173;0.005749482,0.000303315;0.4998186;0.0007857401,0.1183045;0.3830995;-0.007033507,0.237945;0.2320116;0.04643217,0.4297807;0.0738879;0.07281369,-0.1101833;0.3662585;-0.02796015,-0.1582887;0.1724315;-0.01714566,-0.1791141;-0.07611333;-0.03422703,0.0751419;0.006263246;-0.02672951,0.1030444;-0.2913853;-0.001694132,0.09372138;-0.5841442;0.06315419,0.1063609;-0.6122094;0.001949098,-0.06706328;0.002036727;-0.04357026,-0.08579671;-0.294809;-0.00443304,-0.08069018;-0.5882882;0.05756577,-0.07780302;-0.6161277;-0.005145207,0.0001209667;0.3999166;0.005207751,0;0;0,-0.003191236;0.199701;0.01045577,-0.00740871;0.49961;0.01291873,0.1112755;0.3818707;-0.00232854,0.2222252;0.2220276;0.04393521,0.4141644;0.06356604;0.06737237,-0.1149428;0.3630286;-0.02035573,-0.1522779;0.1665479;-0.01915667,-0.1816571;-0.08140779;-0.03159929,0.07452944;0.008605532;-0.02777239,0.09743406;-0.2894459;-0.002459709,0.08522572;-0.5815555;0.06479314,0.1015416;-0.6102192;0.005246505,-0.06684218;-0.0004160109;-0.04395394,-0.09158228;-0.2967727;-0.004449256,-0.08933201;-0.5901942;0.05799097,-0.08416429;-0.5579261;-0.0402886,-0.006173634;0.3996336;0.01470627,81.11335
-0;0;0,-8.099707E-05;0.1999161;0.005792324,0.0001671972;0.4998209;0.0009844252,0.1181994;0.3831379;-0.00702828,0.2376415;0.2318522;0.04632194,0.429422;0.0735807;0.07221319,-0.1102198;0.3661699;-0.02795317,-0.1582238;0.1723256;-0.01699746,-0.1795298;-0.0761672;-0.03424194,0.0751298;0.006237853;-0.02676941,0.102955;-0.2914135;-0.001681134,0.09369159;-0.5841821;0.06313191,0.1059662;-0.6124938;0.002167821,-0.06704379;0.00206925;-0.04359872,-0.08580872;-0.294774;-0.004458778,-0.08070076;-0.5882281;0.05765918,-0.07437791;-0.5566432;-0.04042704,2.25835E-05;0.3999155;0.005331054,0;0;0,-0.003191236;0.199701;0.01045577,-0.00740871;0.49961;0.01291873,0.1112755;0.3818707;-0.00232854,0.2222252;0.2220276;0.04393521,0.4141644;0.06356604;0.06737237,-0.1149428;0.3630286;-0.02035573,-0.1522779;0.1665479;-0.01915667,-0.1816571;-0.08140779;-0.03159929,0.07452944;0.008605532;-0.02777239,0.09743406;-0.2894459;-0.002459709,0.08522572;-0.5815555;0.06479314,0.1015416;-0.6102192;0.005246505,-0.06684218;-0.0004160109;-0.04395394,-0.09158228;-0.2967727;-0.004449256,-0.08933201;-0.5901942;0.05799097,-0.08416429;-0.5579261;-0.0402886,-0.006173634;0.3996336;0.01470627,81.13326
-0;0;0,-8.099707E-05;0.1999161;0.005792324,0.0001671972;0.4998209;0.0009844252,0.1181994;0.3831379;-0.00702828,0.2376415;0.2318522;0.04632194,0.429422;0.0735807;0.07221319,-0.1102198;0.3661699;-0.02795317,-0.1582238;0.1723256;-0.01699746,-0.1795298;-0.0761672;-0.03424194,0.0751298;0.006237853;-0.02676941,0.102955;-0.2914135;-0.001681134,0.09369159;-0.5841821;0.06313191,0.1059662;-0.6124938;0.002167821,-0.06704379;0.00206925;-0.04359872,-0.08580872;-0.294774;-0.004458778,-0.08070076;-0.5882281;0.05765918,-0.07437791;-0.5566432;-0.04042704,2.25835E-05;0.3999155;0.005331054,0;0;0,-0.003219592;0.1997031;0.01040685,-0.007476203;0.4996121;0.01282371,0.1112576;0.3819904;-0.002288599,0.2191282;0.2198887;0.04339471,0.407856;0.05756561;0.06648178,-0.1150208;0.3630329;-0.02036429,-0.1523642;0.1665553;-0.01894488,-0.1819388;-0.08139214;-0.03108631,0.07447841;0.008656628;-0.02789316,0.09725296;-0.2893929;-0.00244144,0.08510982;-0.5815312;0.0646988,0.1015472;-0.610228;0.005229313,-0.06688745;-0.0004754886;-0.04388443,-0.09182324;-0.2968474;-0.004616976,-0.08950248;-0.590277;0.05778242,-0.08432592;-0.5580114;-0.04049623,-0.006227023;0.3996361;0.01462307,81.14507
-0;0;0,-8.099707E-05;0.1999161;0.005792324,0.0001671972;0.4998209;0.0009844252,0.1181994;0.3831379;-0.00702828,0.2376415;0.2318522;0.04632194,0.429422;0.0735807;0.07221319,-0.1102198;0.3661699;-0.02795317,-0.1582238;0.1723256;-0.01699746,-0.1795298;-0.0761672;-0.03424194,0.0751298;0.006237853;-0.02676941,0.102955;-0.2914135;-0.001681134,0.09369159;-0.5841821;0.06313191,0.1059662;-0.6124938;0.002167821,-0.06704379;0.00206925;-0.04359872,-0.08580872;-0.294774;-0.004458778,-0.08070076;-0.5882281;0.05765918,-0.07437791;-0.5566432;-0.04042704,2.25835E-05;0.3999155;0.005331054,0;0;0,-0.003219592;0.1997031;0.01040685,-0.007476203;0.4996121;0.01282371,0.1112576;0.3819904;-0.002288599,0.2191282;0.2198887;0.04339471,0.407856;0.05756561;0.06648178,-0.1150208;0.3630329;-0.02036429,-0.1523642;0.1665553;-0.01894488,-0.1819388;-0.08139214;-0.03108631,0.07447841;0.008656628;-0.02789316,0.09725296;-0.2893929;-0.00244144,0.08510982;-0.5815312;0.0646988,0.1015472;-0.610228;0.005229313,-0.06688745;-0.0004754886;-0.04388443,-0.09182324;-0.2968474;-0.004616976,-0.08950248;-0.590277;0.05778242,-0.08432592;-0.5580114;-0.04049623,-0.006227023;0.3996361;0.01462307,81.15588
-0;0;0,-0.0002005196;0.1999143;0.00585028,-5.455817E-05;0.4998224;0.001181851,0.1180162;0.3831918;-0.006989215,0.2371887;0.2315347;0.04590721,0.4288876;0.07313839;0.07163943,-0.1103397;0.3661395;-0.02800281,-0.1583819;0.1723045;-0.01705215,-0.1798767;-0.07618408;-0.03412242,0.07515703;0.006257853;-0.02668821,0.1027797;-0.2914192;-0.001680983,0.09320633;-0.5841304;0.063346,0.1059131;-0.612089;0.002019115,-0.06692956;0.002035699;-0.04377546,-0.08617797;-0.2947455;-0.004400183,-0.08053949;-0.5881329;0.057986,-0.07847568;-0.6168652;-0.003633514,-0.0001593296;0.3999139;0.005457344,0;0;0,-0.003219592;0.1997031;0.01040685,-0.007476203;0.4996121;0.01282371,0.1112576;0.3819904;-0.002288599,0.2191282;0.2198887;0.04339471,0.407856;0.05756561;0.06648178,-0.1150208;0.3630329;-0.02036429,-0.1523642;0.1665553;-0.01894488,-0.1819388;-0.08139214;-0.03108631,0.07447841;0.008656628;-0.02789316,0.09725296;-0.2893929;-0.00244144,0.08510982;-0.5815312;0.0646988,0.1015472;-0.610228;0.005229313,-0.06688745;-0.0004754886;-0.04388443,-0.09182324;-0.2968474;-0.004616976,-0.08950248;-0.590277;0.05778242,-0.08432592;-0.5580114;-0.04049623,-0.006227023;0.3996361;0.01462307,81.17826
-0;0;0,-0.0003269582;0.199912;0.00592301,-0.0003038975;0.4998209;0.001305134,0.1178242;0.3832209;-0.006674219,0.2367058;0.231232;0.04592389,0.4280692;0.07227723;0.07069134,-0.1104987;0.3660986;-0.02805149,-0.1588118;0.1723315;-0.0170891,-0.1803072;-0.07617228;-0.03393643,0.0751534;0.006280814;-0.02669303,0.1024492;-0.2914199;-0.001608381,0.09277605;-0.5840938;0.06357144,0.1065633;-0.6121994;0.002666451,-0.06685267;0.0020142;-0.04389379,-0.08634634;-0.2947463;-0.00448304,-0.0809828;-0.5881108;0.05803521,-0.07988156;-0.6161201;-0.004521448,-0.0003774929;0.3999117;0.005563744,0;0;0,-0.003182778;0.1997064;0.01035481,-0.007408993;0.4996161;0.01272237,0.111321;0.3819985;-0.002370285,0.2170201;0.2183792;0.04297762,0.4023213;0.05203149;0.06515596,-0.1149862;0.3631341;-0.020463,-0.1524098;0.1666735;-0.01882396,-0.18225;-0.08125345;-0.03073254,0.07443452;0.00855884;-0.0280401,0.09719315;-0.2894964;-0.002640422,0.08506651;-0.5816104;0.06460786,0.1013159;-0.6104303;0.005249713,-0.06694673;-0.0003223923;-0.04379533,-0.09180281;-0.2967439;-0.004853353,-0.08956248;-0.5901214;0.05779352,-0.09000794;-0.6179213;-0.005031392,-0.00616451;0.3996404;0.01453895,81.20052
-0;0;0,-0.0003269582;0.199912;0.00592301,-0.0003038975;0.4998209;0.001305134,0.1178242;0.3832209;-0.006674219,0.2367058;0.231232;0.04592389,0.4280692;0.07227723;0.07069134,-0.1104987;0.3660986;-0.02805149,-0.1588118;0.1723315;-0.0170891,-0.1803072;-0.07617228;-0.03393643,0.0751534;0.006280814;-0.02669303,0.1024492;-0.2914199;-0.001608381,0.09277605;-0.5840938;0.06357144,0.1065633;-0.6121994;0.002666451,-0.06685267;0.0020142;-0.04389379,-0.08634634;-0.2947463;-0.00448304,-0.0809828;-0.5881108;0.05803521,-0.07988156;-0.6161201;-0.004521448,-0.0003774929;0.3999117;0.005563744,0;0;0,-0.003182778;0.1997064;0.01035481,-0.007408993;0.4996161;0.01272237,0.111321;0.3819985;-0.002370285,0.2170201;0.2183792;0.04297762,0.4023213;0.05203149;0.06515596,-0.1149862;0.3631341;-0.020463,-0.1524098;0.1666735;-0.01882396,-0.18225;-0.08125345;-0.03073254,0.07443452;0.00855884;-0.0280401,0.09719315;-0.2894964;-0.002640422,0.08506651;-0.5816104;0.06460786,0.1013159;-0.6104303;0.005249713,-0.06694673;-0.0003223923;-0.04379533,-0.09180281;-0.2967439;-0.004853353,-0.08956248;-0.5901214;0.05779352,-0.09000794;-0.6179213;-0.005031392,-0.00616451;0.3996404;0.01453895,81.21215
-0;0;0,-0.0003614708;0.1999104;0.005976105,-0.0003888511;0.4998208;0.001436647,0.117761;0.3832946;-0.006593022,0.2363482;0.230963;0.045677,0.4275658;0.07182483;0.07039314,-0.1105398;0.3660799;-0.02803854,-0.1587771;0.1722926;-0.01709928,-0.1809809;-0.07616921;-0.03364335,0.07515309;0.006282593;-0.02669346,0.1023482;-0.2914358;-0.001710288,0.09116116;-0.5841075;0.06323732,0.1064564;-0.6126424;0.003251363,-0.06682306;0.002011138;-0.04393898,-0.08638762;-0.294715;-0.00430553,-0.08140448;-0.588166;0.05783699,-0.08062083;-0.6157942;-0.005196616,-0.0004496573;0.3999101;0.005661233,0;0;0,-0.003182778;0.1997064;0.01035481,-0.007408993;0.4996161;0.01272237,0.111321;0.3819985;-0.002370285,0.2170201;0.2183792;0.04297762,0.4023213;0.05203149;0.06515596,-0.1149862;0.3631341;-0.020463,-0.1524098;0.1666735;-0.01882396,-0.18225;-0.08125345;-0.03073254,0.07443452;0.00855884;-0.0280401,0.09719315;-0.2894964;-0.002640422,0.08506651;-0.5816104;0.06460786,0.1013159;-0.6104303;0.005249713,-0.06694673;-0.0003223923;-0.04379533,-0.09180281;-0.2967439;-0.004853353,-0.08956248;-0.5901214;0.05779352,-0.09000794;-0.6179213;-0.005031392,-0.00616451;0.3996404;0.01453895,81.23387
-0;0;0,-0.0003614708;0.1999104;0.005976105,-0.0003888511;0.4998208;0.001436647,0.117761;0.3832946;-0.006593022,0.2363482;0.230963;0.045677,0.4275658;0.07182483;0.07039314,-0.1105398;0.3660799;-0.02803854,-0.1587771;0.1722926;-0.01709928,-0.1809809;-0.07616921;-0.03364335,0.07515309;0.006282593;-0.02669346,0.1023482;-0.2914358;-0.001710288,0.09116116;-0.5841075;0.06323732,0.1064564;-0.6126424;0.003251363,-0.06682306;0.002011138;-0.04393898,-0.08638762;-0.294715;-0.00430553,-0.08140448;-0.588166;0.05783699,-0.08062083;-0.6157942;-0.005196616,-0.0004496573;0.3999101;0.005661233,0;0;0,-0.00314986;0.1997058;0.010377,-0.007329407;0.4996159;0.01276147,0.1113823;0.3820105;-0.002419732,0.2149033;0.2168032;0.04218918,0.3944565;0.04424791;0.06421941,-0.1149357;0.3632885;-0.02051789,-0.1523952;0.1668355;-0.01877679,-0.1823052;-0.08108731;-0.03059438,0.07441626;0.008635961;-0.0280649,0.09715116;-0.2894237;-0.002696121,0.08503892;-0.5814631;0.06487822,0.1015739;-0.6100911;0.005344778,-0.0669503;-0.0004069729;-0.04378918,-0.09183004;-0.2968333;-0.004899178,-0.08958188;-0.5901984;0.0578057,-0.08968461;-0.6187313;-0.00410201,-0.006092344;0.39964;0.01457746,81.24571
-0;0;0,-0.000458322;0.1999072;0.006075444,-0.0005714088;0.4998187;0.001611871,0.1175906;0.3832179;-0.006427953,0.235992;0.2306516;0.04557793,0.4271751;0.07138023;0.06969553,-0.1107161;0.3661232;-0.0278854,-0.1590397;0.1723497;-0.01708509,-0.1814386;-0.07609956;-0.03355537,0.07515681;0.006308065;-0.02667699,0.1021307;-0.2914202;-0.001570866,0.09110148;-0.584179;0.06300933,0.1056867;-0.6127433;0.002885032,-0.06679321;0.001973856;-0.04398603,-0.08656912;-0.2947052;-0.004105337,-0.08175763;-0.5882207;0.0577454,-0.08039655;-0.6159433;-0.005162053,-0.0006111205;0.399907;0.005812622,0;0;0,-0.00314986;0.1997058;0.010377,-0.007329407;0.4996159;0.01276147,0.1113823;0.3820105;-0.002419732,0.2149033;0.2168032;0.04218918,0.3944565;0.04424791;0.06421941,-0.1149357;0.3632885;-0.02051789,-0.1523952;0.1668355;-0.01877679,-0.1823052;-0.08108731;-0.03059438,0.07441626;0.008635961;-0.0280649,0.09715116;-0.2894237;-0.002696121,0.08503892;-0.5814631;0.06487822,0.1015739;-0.6100911;0.005344778,-0.0669503;-0.0004069729;-0.04378918,-0.09183004;-0.2968333;-0.004899178,-0.08958188;-0.5901984;0.0578057,-0.08968461;-0.6187313;-0.00410201,-0.006092344;0.39964;0.01457746,81.26779
-0;0;0,-0.000458322;0.1999072;0.006075444,-0.0005714088;0.4998187;0.001611871,0.1175906;0.3832179;-0.006427953,0.235992;0.2306516;0.04557793,0.4271751;0.07138023;0.06969553,-0.1107161;0.3661232;-0.0278854,-0.1590397;0.1723497;-0.01708509,-0.1814386;-0.07609956;-0.03355537,0.07515681;0.006308065;-0.02667699,0.1021307;-0.2914202;-0.001570866,0.09110148;-0.584179;0.06300933,0.1056867;-0.6127433;0.002885032,-0.06679321;0.001973856;-0.04398603,-0.08656912;-0.2947052;-0.004105337,-0.08175763;-0.5882207;0.0577454,-0.08039655;-0.6159433;-0.005162053,-0.0006111205;0.399907;0.005812622,0;0;0,-0.00314986;0.1997058;0.010377,-0.007329407;0.4996159;0.01276147,0.1113823;0.3820105;-0.002419732,0.2149033;0.2168032;0.04218918,0.3944565;0.04424791;0.06421941,-0.1149357;0.3632885;-0.02051789,-0.1523952;0.1668355;-0.01877679,-0.1823052;-0.08108731;-0.03059438,0.07441626;0.008635961;-0.0280649,0.09715116;-0.2894237;-0.002696121,0.08503892;-0.5814631;0.06487822,0.1015739;-0.6100911;0.005344778,-0.0669503;-0.0004069729;-0.04378918,-0.09183004;-0.2968333;-0.004899178,-0.08958188;-0.5901984;0.0578057,-0.08968461;-0.6187313;-0.00410201,-0.006092344;0.39964;0.01457746,81.27908
-0;0;0,-0.0004514678;0.1999058;0.006121193,-0.0005704759;0.4998188;0.001738242,0.1175833;0.3832517;-0.006467218,0.2358296;0.230535;0.04545043,0.4266326;0.07076302;0.06926498,-0.1107023;0.3660588;-0.02776979,-0.15887;0.1722397;-0.017092,-0.1816502;-0.07618825;-0.03335936,0.07513735;0.006307703;-0.02673183,0.1020528;-0.2914017;-0.001341039,0.09083287;-0.5841603;0.06320717,0.1055213;-0.6130614;0.003550977,-0.06680536;0.001971673;-0.04396767,-0.0863901;-0.294714;-0.004041635,-0.08185547;-0.5882647;0.05766275,-0.08022816;-0.6158955;-0.005351577,-0.0006096368;0.3999056;0.005905058,0;0;0,-0.003126813;0.1997062;0.01037632,-0.007240647;0.4996172;0.01275393,0.1114472;0.3820812;-0.002493936,0.2132052;0.2156634;0.04166977,0.3858319;0.0357991;0.06034779,-0.1149102;0.3633469;-0.02045845,-0.1525436;0.1669281;-0.01862518,-0.1824831;-0.08099882;-0.0302815,0.07442764;0.008594446;-0.02804749,0.09718589;-0.289451;-0.002533536,0.08498836;-0.5815042;0.06496596,0.1012254;-0.6092217;0.004168388,-0.06692192;-0.0002716231;-0.04383358,-0.09169163;-0.2966988;-0.004880141,-0.0893944;-0.5900227;0.05801516,-0.09023605;-0.6172216;-0.005542826,-0.006027529;0.3996411;0.01457448,81.30099
-0;0;0,-0.0004514678;0.1999058;0.006121193,-0.0005704759;0.4998188;0.001738242,0.1175833;0.3832517;-0.006467218,0.2358296;0.230535;0.04545043,0.4266326;0.07076302;0.06926498,-0.1107023;0.3660588;-0.02776979,-0.15887;0.1722397;-0.017092,-0.1816502;-0.07618825;-0.03335936,0.07513735;0.006307703;-0.02673183,0.1020528;-0.2914017;-0.001341039,0.09083287;-0.5841603;0.06320717,0.1055213;-0.6130614;0.003550977,-0.06680536;0.001971673;-0.04396767,-0.0863901;-0.294714;-0.004041635,-0.08185547;-0.5882647;0.05766275,-0.08022816;-0.6158955;-0.005351577,-0.0006096368;0.3999056;0.005905058,0;0;0,-0.003126813;0.1997062;0.01037632,-0.007240647;0.4996172;0.01275393,0.1114472;0.3820812;-0.002493936,0.2132052;0.2156634;0.04166977,0.3858319;0.0357991;0.06034779,-0.1149102;0.3633469;-0.02045845,-0.1525436;0.1669281;-0.01862518,-0.1824831;-0.08099882;-0.0302815,0.07442764;0.008594446;-0.02804749,0.09718589;-0.289451;-0.002533536,0.08498836;-0.5815042;0.06496596,0.1012254;-0.6092217;0.004168388,-0.06692192;-0.0002716231;-0.04383358,-0.09169163;-0.2966988;-0.004880141,-0.0893944;-0.5900227;0.05801516,-0.09023605;-0.6172216;-0.005542826,-0.006027529;0.3996411;0.01457448,81.31293
-0;0;0,-0.0004618189;0.1999025;0.006225693,-0.0005322159;0.4998189;0.002037295,0.1175108;0.3827547;-0.006394239,0.2358399;0.230039;0.04533719,0.4266452;0.07023929;0.06894618,-0.1106829;0.3659817;-0.02749599,-0.158923;0.1721705;-0.01700155,-0.1817928;-0.07624876;-0.03327478,0.0751669;0.006373526;-0.02663295,0.1017846;-0.291365;-0.001270285,0.09066407;-0.5840858;0.063467,0.105239;-0.6129746;0.003766749,-0.06670202;0.001894632;-0.04412765,-0.08660363;-0.2947477;-0.004037116,-0.08227931;-0.5883029;0.05766134,-0.08038208;-0.6159289;-0.005351365,-0.0005961956;0.3999025;0.006123765,0;0;0,-0.003126813;0.1997062;0.01037632,-0.007240647;0.4996172;0.01275393,0.1114472;0.3820812;-0.002493936,0.2132052;0.2156634;0.04166977,0.3858319;0.0357991;0.06034779,-0.1149102;0.3633469;-0.02045845,-0.1525436;0.1669281;-0.01862518,-0.1824831;-0.08099882;-0.0302815,0.07442764;0.008594446;-0.02804749,0.09718589;-0.289451;-0.002533536,0.08498836;-0.5815042;0.06496596,0.1012254;-0.6092217;0.004168388,-0.06692192;-0.0002716231;-0.04383358,-0.09169163;-0.2966988;-0.004880141,-0.0893944;-0.5900227;0.05801516,-0.09023605;-0.6172216;-0.005542826,-0.006027529;0.3996411;0.01457448,81.33463
-0;0;0,-0.0004618189;0.1999025;0.006225693,-0.0005322159;0.4998189;0.002037295,0.1175108;0.3827547;-0.006394239,0.2358399;0.230039;0.04533719,0.4266452;0.07023929;0.06894618,-0.1106829;0.3659817;-0.02749599,-0.158923;0.1721705;-0.01700155,-0.1817928;-0.07624876;-0.03327478,0.0751669;0.006373526;-0.02663295,0.1017846;-0.291365;-0.001270285,0.09066407;-0.5840858;0.063467,0.105239;-0.6129746;0.003766749,-0.06670202;0.001894632;-0.04412765,-0.08660363;-0.2947477;-0.004037116,-0.08227931;-0.5883029;0.05766134,-0.08038208;-0.6159289;-0.005351365,-0.0005961956;0.3999025;0.006123765,0;0;0,-0.003083793;0.1997055;0.01040288,-0.007079464;0.4996175;0.01283362,0.1116242;0.3822478;-0.002235467,0.2122517;0.2149327;0.04112053,0.3798687;0.03034931;0.05938369,-0.1148772;0.3634855;-0.02025296,-0.1524938;0.1670627;-0.01850308,-0.1824753;-0.08086294;-0.03007875,0.07444368;0.008577294;-0.02801015,0.09705791;-0.2894728;-0.002421938,0.08504124;-0.5815611;0.06495751,0.1012186;-0.6093152;0.004190747,-0.06690652;-0.0002573538;-0.04385717,-0.09162785;-0.2966708;-0.004768379,-0.08946905;-0.589959;0.05829813,-0.09018323;-0.617564;-0.004764952,-0.005903305;0.3996407;0.01463965,81.34617
-0;0;0,-0.0003923755;0.199902;0.00624848,-0.0003858328;0.4998187;0.002079665,0.1176166;0.382703;-0.006437792,0.2358116;0.2298337;0.0451464,0.426348;0.06972189;0.06881239,-0.1105442;0.3658917;-0.02742812,-0.1586899;0.1720521;-0.01702557,-0.1816678;-0.07636601;-0.03316379,0.07521152;0.006366757;-0.02650833,0.1015871;-0.2914126;-0.001373228,0.09021871;-0.5839621;0.06409116,0.1052117;-0.6119633;0.003337368,-0.06665251;0.001900592;-0.04420216,-0.08649412;-0.2947588;-0.004207823,-0.08260273;-0.588319;0.05749509,-0.08038329;-0.615714;-0.005790718,-0.000474694;0.399902;0.006157717,0;0;0,-0.003083793;0.1997055;0.01040288,-0.007079464;0.4996175;0.01283362,0.1116242;0.3822478;-0.002235467,0.2122517;0.2149327;0.04112053,0.3798687;0.03034931;0.05938369,-0.1148772;0.3634855;-0.02025296,-0.1524938;0.1670627;-0.01850308,-0.1824753;-0.08086294;-0.03007875,0.07444368;0.008577294;-0.02801015,0.09705791;-0.2894728;-0.002421938,0.08504124;-0.5815611;0.06495751,0.1012186;-0.6093152;0.004190747,-0.06690652;-0.0002573538;-0.04385717,-0.09162785;-0.2966708;-0.004768379,-0.08946905;-0.589959;0.05829813,-0.09018323;-0.617564;-0.004764952,-0.005903305;0.3996407;0.01463965,81.35696
-0;0;0,-0.0003923755;0.199902;0.00624848,-0.0003858328;0.4998187;0.002079665,0.1176166;0.382703;-0.006437792,0.2358116;0.2298337;0.0451464,0.426348;0.06972189;0.06881239,-0.1105442;0.3658917;-0.02742812,-0.1586899;0.1720521;-0.01702557,-0.1816678;-0.07636601;-0.03316379,0.07521152;0.006366757;-0.02650833,0.1015871;-0.2914126;-0.001373228,0.09021871;-0.5839621;0.06409116,0.1052117;-0.6119633;0.003337368,-0.06665251;0.001900592;-0.04420216,-0.08649412;-0.2947588;-0.004207823,-0.08260273;-0.588319;0.05749509,-0.08038329;-0.615714;-0.005790718,-0.000474694;0.399902;0.006157717,0;0;0,-0.003083793;0.1997055;0.01040288,-0.007079464;0.4996175;0.01283362,0.1116242;0.3822478;-0.002235467,0.2122517;0.2149327;0.04112053,0.3798687;0.03034931;0.05938369,-0.1148772;0.3634855;-0.02025296,-0.1524938;0.1670627;-0.01850308,-0.1824753;-0.08086294;-0.03007875,0.07444368;0.008577294;-0.02801015,0.09705791;-0.2894728;-0.002421938,0.08504124;-0.5815611;0.06495751,0.1012186;-0.6093152;0.004190747,-0.06690652;-0.0002573538;-0.04385717,-0.09162785;-0.2966708;-0.004768379,-0.08946905;-0.589959;0.05829813,-0.09018323;-0.617564;-0.004764952,-0.005903305;0.3996407;0.01463965,81.37944
-0;0;0,-0.0003923755;0.199902;0.00624848,-0.0003858328;0.4998187;0.002079665,0.1176166;0.382703;-0.006437792,0.2358116;0.2298337;0.0451464,0.426348;0.06972189;0.06881239,-0.1105442;0.3658917;-0.02742812,-0.1586899;0.1720521;-0.01702557,-0.1816678;-0.07636601;-0.03316379,0.07521152;0.006366757;-0.02650833,0.1015871;-0.2914126;-0.001373228,0.09021871;-0.5839621;0.06409116,0.1052117;-0.6119633;0.003337368,-0.06665251;0.001900592;-0.04420216,-0.08649412;-0.2947588;-0.004207823,-0.08260273;-0.588319;0.05749509,-0.08038329;-0.615714;-0.005790718,-0.000474694;0.399902;0.006157717,0;0;0,-0.003109464;0.1997107;0.01029385,-0.007127075;0.4996233;0.01261915,0.1116193;0.3824244;-0.002345875,0.2104635;0.2138211;0.0401126,0.3725923;0.02426207;0.05689393,-0.1149541;0.3635949;-0.02042466,-0.1526957;0.1671965;-0.01862767,-0.1828964;-0.08069867;-0.03028607,0.07446383;0.008558914;-0.02796218,0.09690417;-0.2895215;-0.002575414,0.0849635;-0.5816423;0.06467696,0.1007675;-0.6101317;0.004763342,-0.06684871;-0.0002339;-0.04394536,-0.09158456;-0.2966445;-0.004844029,-0.08949913;-0.5899694;0.0580538,-0.09023178;-0.6179981;-0.004484106,-0.005943312;0.3996473;0.01445902,81.39066
-0;0;0,-0.0002740931;0.1998997;0.0063277,-2.875262E-05;0.4998194;0.002351033,0.1178528;0.3825603;-0.006372094,0.2357929;0.22944;0.04505055,0.4260246;0.06899813;0.06893213,-0.1103089;0.3660609;-0.02728993,-0.158302;0.1721816;-0.01692315,-0.1815261;-0.07621109;-0.03310069,0.0751471;0.0063488;-0.02669467,0.10134;-0.2914193;-0.001236327,0.08987852;-0.584025;0.06395991,0.1048621;-0.6123869;0.00366981,-0.06671266;0.001901171;-0.0441113,-0.08667322;-0.2946226;-0.003181953,-0.08213151;-0.5881627;0.05857245,-0.08034381;-0.6158941;-0.004313331,-0.000204005;0.3998997;0.006353071,0;0;0,-0.003109464;0.1997107;0.01029385,-0.007127075;0.4996233;0.01261915,0.1116193;0.3824244;-0.002345875,0.2104635;0.2138211;0.0401126,0.3725923;0.02426207;0.05689393,-0.1149541;0.3635949;-0.02042466,-0.1526957;0.1671965;-0.01862767,-0.1828964;-0.08069867;-0.03028607,0.07446383;0.008558914;-0.02796218,0.09690417;-0.2895215;-0.002575414,0.0849635;-0.5816423;0.06467696,0.1007675;-0.6101317;0.004763342,-0.06684871;-0.0002339;-0.04394536,-0.09158456;-0.2966445;-0.004844029,-0.08949913;-0.5899694;0.0580538,-0.09023178;-0.6179981;-0.004484106,-0.005943312;0.3996473;0.01445902,81.40182
-0;0;0,-0.0003163014;0.1998987;0.006356214,-0.0001700989;0.4998189;0.002404866,0.1177426;0.3825906;-0.006403153,0.2353259;0.2290778;0.04466538,0.425405;0.06847915;0.06870764,-0.1104411;0.3661065;-0.02720687,-0.158382;0.1722094;-0.01693068,-0.181781;-0.07617068;-0.03304891,0.07513684;0.006450204;-0.02669925,0.1010905;-0.291337;-0.001219602,0.08955569;-0.5839913;0.06374507,0.1047501;-0.6122448;0.003366955,-0.06668205;0.001804264;-0.04416162,-0.0868087;-0.2947535;-0.003560673,-0.0825315;-0.588207;0.05862226,-0.08076449;-0.6163347;-0.003771096,-0.0003105097;0.3998987;0.006398912,0;0;0,-0.003109464;0.1997107;0.01029385,-0.007127075;0.4996233;0.01261915,0.1116193;0.3824244;-0.002345875,0.2104635;0.2138211;0.0401126,0.3725923;0.02426207;0.05689393,-0.1149541;0.3635949;-0.02042466,-0.1526957;0.1671965;-0.01862767,-0.1828964;-0.08069867;-0.03028607,0.07446383;0.008558914;-0.02796218,0.09690417;-0.2895215;-0.002575414,0.0849635;-0.5816423;0.06467696,0.1007675;-0.6101317;0.004763342,-0.06684871;-0.0002339;-0.04394536,-0.09158456;-0.2966445;-0.004844029,-0.08949913;-0.5899694;0.0580538,-0.09023178;-0.6179981;-0.004484106,-0.005943312;0.3996473;0.01445902,81.4242
-0;0;0,-0.0003163014;0.1998987;0.006356214,-0.0001700989;0.4998189;0.002404866,0.1177426;0.3825906;-0.006403153,0.2353259;0.2290778;0.04466538,0.425405;0.06847915;0.06870764,-0.1104411;0.3661065;-0.02720687,-0.158382;0.1722094;-0.01693068,-0.181781;-0.07617068;-0.03304891,0.07513684;0.006450204;-0.02669925,0.1010905;-0.291337;-0.001219602,0.08955569;-0.5839913;0.06374507,0.1047501;-0.6122448;0.003366955,-0.06668205;0.001804264;-0.04416162,-0.0868087;-0.2947535;-0.003560673,-0.0825315;-0.588207;0.05862226,-0.08076449;-0.6163347;-0.003771096,-0.0003105097;0.3998987;0.006398912,0;0;0,-0.002985186;0.1997119;0.01030715,-0.006676489;0.4996283;0.01264285,0.1119158;0.3823281;-0.002486433,0.2087913;0.212399;0.03921756,0.3658358;0.01857986;0.05568509,-0.1146487;0.3637396;-0.0204486,-0.1526014;0.1673825;-0.01858244,-0.1828951;-0.08050683;-0.03012231,0.07445189;0.008521454;-0.02800539,0.09682864;-0.289546;-0.002410142,0.08489355;-0.5816891;0.06474616,0.1007499;-0.6102506;0.004940998,-0.06684881;-0.0001993421;-0.04394539,-0.09155621;-0.2965838;-0.004628759,-0.08932607;-0.5899401;0.05811762,-0.09044566;-0.6159604;-0.006841261,-0.005607964;0.399651;0.0144868,81.43572
-0;0;0,-0.0003163014;0.1998987;0.006356214,-0.0001700989;0.4998189;0.002404866,0.1177426;0.3825906;-0.006403153,0.2353259;0.2290778;0.04466538,0.425405;0.06847915;0.06870764,-0.1104411;0.3661065;-0.02720687,-0.158382;0.1722094;-0.01693068,-0.181781;-0.07617068;-0.03304891,0.07513684;0.006450204;-0.02669925,0.1010905;-0.291337;-0.001219602,0.08955569;-0.5839913;0.06374507,0.1047501;-0.6122448;0.003366955,-0.06668205;0.001804264;-0.04416162,-0.0868087;-0.2947535;-0.003560673,-0.0825315;-0.588207;0.05862226,-0.08076449;-0.6163347;-0.003771096,-0.0003105097;0.3998987;0.006398912,0;0;0,-0.002985186;0.1997119;0.01030715,-0.006676489;0.4996283;0.01264285,0.1119158;0.3823281;-0.002486433,0.2087913;0.212399;0.03921756,0.3658358;0.01857986;0.05568509,-0.1146487;0.3637396;-0.0204486,-0.1526014;0.1673825;-0.01858244,-0.1828951;-0.08050683;-0.03012231,0.07445189;0.008521454;-0.02800539,0.09682864;-0.289546;-0.002410142,0.08489355;-0.5816891;0.06474616,0.1007499;-0.6102506;0.004940998,-0.06684881;-0.0001993421;-0.04394539,-0.09155621;-0.2965838;-0.004628759,-0.08932607;-0.5899401;0.05811762,-0.09044566;-0.6159604;-0.006841261,-0.005607964;0.399651;0.0144868,81.44697
-0;0;0,-0.0002470038;0.1998961;0.006442623,8.502726E-05;0.4998208;0.002793079,0.1178862;0.3824443;-0.006347478,0.2352236;0.2286789;0.04452622,0.4248266;0.06757021;0.06891271,-0.1102448;0.3661397;-0.02700927,-0.1580011;0.1721891;-0.01688358,-0.1815813;-0.07619633;-0.03265189,0.07513738;0.006450531;-0.02669767,0.1010419;-0.2913358;-0.001157483,0.09019018;-0.5841433;0.06323197,0.1042051;-0.6138378;0.004475117,-0.06667818;0.00180617;-0.04416739,-0.08687583;-0.29474;-0.003517408,-0.08260172;-0.5881848;0.05870716,-0.0813341;-0.6161206;-0.003937934,-0.000123133;0.3998959;0.006661801,0;0;0,-0.002985186;0.1997119;0.01030715,-0.006676489;0.4996283;0.01264285,0.1119158;0.3823281;-0.002486433,0.2087913;0.212399;0.03921756,0.3658358;0.01857986;0.05568509,-0.1146487;0.3637396;-0.0204486,-0.1526014;0.1673825;-0.01858244,-0.1828951;-0.08050683;-0.03012231,0.07445189;0.008521454;-0.02800539,0.09682864;-0.289546;-0.002410142,0.08489355;-0.5816891;0.06474616,0.1007499;-0.6102506;0.004940998,-0.06684881;-0.0001993421;-0.04394539,-0.09155621;-0.2965838;-0.004628759,-0.08932607;-0.5899401;0.05811762,-0.09044566;-0.6159604;-0.006841261,-0.005607964;0.399651;0.0144868,81.46987
-0;0;0,-0.0002470038;0.1998961;0.006442623,8.502726E-05;0.4998208;0.002793079,0.1178862;0.3824443;-0.006347478,0.2352236;0.2286789;0.04452622,0.4248266;0.06757021;0.06891271,-0.1102448;0.3661397;-0.02700927,-0.1580011;0.1721891;-0.01688358,-0.1815813;-0.07619633;-0.03265189,0.07513738;0.006450531;-0.02669767,0.1010419;-0.2913358;-0.001157483,0.09019018;-0.5841433;0.06323197,0.1042051;-0.6138378;0.004475117,-0.06667818;0.00180617;-0.04416739,-0.08687583;-0.29474;-0.003517408,-0.08260172;-0.5881848;0.05870716,-0.0813341;-0.6161206;-0.003937934,-0.000123133;0.3998959;0.006661801,0;0;0,-0.002915045;0.1997187;0.01019626,-0.00645159;0.4996373;0.01241041,0.1120892;0.3824284;-0.002694173,0.2068048;0.2109038;0.03740896,0.3596364;0.01364347;0.05260416,-0.1145183;0.3638158;-0.02058965,-0.1525212;0.16747;-0.01856026,-0.1828139;-0.08042461;-0.02998872,0.07445095;0.008442993;-0.02803162,0.09685575;-0.2896191;-0.002399474,0.08485976;-0.5818312;0.06444507,0.1007803;-0.6099238;0.004045799,-0.06684452;-0.0001219388;-0.0439522,-0.09140134;-0.2965146;-0.004603121,-0.08921494;-0.5898958;0.05802858,-0.09045058;-0.6146317;-0.008401919,-0.005443639;0.3996604;0.01430841,81.48097
-0;0;0,-7.26427E-05;0.1998927;0.006550578,0.0005671997;0.4998198;0.003118777,0.1181807;0.3821077;-0.006393112,0.2352816;0.2281397;0.04441243,0.4238526;0.0657403;0.06823344,-0.1098507;0.3659966;-0.02667928,-0.1574344;0.1719905;-0.01680839,-0.1805349;-0.07644585;-0.03248441,0.07510366;0.006416484;-0.02680053,0.1009279;-0.2913715;-0.001198785,0.09005761;-0.5841718;0.06322035,0.1040576;-0.6137439;0.004294254,-0.06672452;0.00186571;-0.04409486,-0.08695537;-0.2947438;-0.00392624,-0.08239578;-0.5881145;0.05862643,-0.08141433;-0.6162977;-0.003714718,0.0002536347;0.3998921;0.006908484,0;0;0,-0.002915045;0.1997187;0.01019626,-0.00645159;0.4996373;0.01241041,0.1120892;0.3824284;-0.002694173,0.2068048;0.2109038;0.03740896,0.3596364;0.01364347;0.05260416,-0.1145183;0.3638158;-0.02058965,-0.1525212;0.16747;-0.01856026,-0.1828139;-0.08042461;-0.02998872,0.07445095;0.008442993;-0.02803162,0.09685575;-0.2896191;-0.002399474,0.08485976;-0.5818312;0.06444507,0.1007803;-0.6099238;0.004045799,-0.06684452;-0.0001219388;-0.0439522,-0.09140134;-0.2965146;-0.004603121,-0.08921494;-0.5898958;0.05802858,-0.09045058;-0.6146317;-0.008401919,-0.005443639;0.3996604;0.01430841,81.49268
-0;0;0,-7.26427E-05;0.1998927;0.006550578,0.0005671997;0.4998198;0.003118777,0.1181807;0.3821077;-0.006393112,0.2352816;0.2281397;0.04441243,0.4238526;0.0657403;0.06823344,-0.1098507;0.3659966;-0.02667928,-0.1574344;0.1719905;-0.01680839,-0.1805349;-0.07644585;-0.03248441,0.07510366;0.006416484;-0.02680053,0.1009279;-0.2913715;-0.001198785,0.09005761;-0.5841718;0.06322035,0.1040576;-0.6137439;0.004294254,-0.06672452;0.00186571;-0.04409486,-0.08695537;-0.2947438;-0.00392624,-0.08239578;-0.5881145;0.05862643,-0.08141433;-0.6162977;-0.003714718,0.0002536347;0.3998921;0.006908484,0;0;0,-0.002915045;0.1997187;0.01019626,-0.00645159;0.4996373;0.01241041,0.1120892;0.3824284;-0.002694173,0.2068048;0.2109038;0.03740896,0.3596364;0.01364347;0.05260416,-0.1145183;0.3638158;-0.02058965,-0.1525212;0.16747;-0.01856026,-0.1828139;-0.08042461;-0.02998872,0.07445095;0.008442993;-0.02803162,0.09685575;-0.2896191;-0.002399474,0.08485976;-0.5818312;0.06444507,0.1007803;-0.6099238;0.004045799,-0.06684452;-0.0001219388;-0.0439522,-0.09140134;-0.2965146;-0.004603121,-0.08921494;-0.5898958;0.05802858,-0.09045058;-0.6146317;-0.008401919,-0.005443639;0.3996604;0.01430841,81.51524
-0;0;0,-1.049747E-05;0.1998906;0.006614636,0.0006990625;0.4998186;0.003277868,0.1183023;0.3820097;-0.00604088,0.2350847;0.2277586;0.0446397,0.4229325;0.06450327;0.06832235,-0.110003;0.3662517;-0.02594003,-0.1573026;0.172146;-0.01668295,-0.180775;-0.07625033;-0.0324413,0.07505102;0.006397074;-0.02695221,0.1008958;-0.2913664;-0.001088217,0.08995152;-0.5840926;0.06365457,0.1036471;-0.6134655;0.004389372,-0.06680761;0.001934096;-0.04396593,-0.08715753;-0.2946917;-0.003978219,-0.08263092;-0.5880641;0.05856927,-0.081553;-0.6173097;-0.00241401,0.0003647323;0.3998898;0.007036517,0;0;0,-0.002949459;0.1997293;0.009974614,-0.006431357;0.4996494;0.01193362,0.1120882;0.3824281;-0.002998824,0.2047212;0.2095412;0.03610677,0.3519518;0.007959917;0.04982314,-0.1145512;0.3637802;-0.02082882,-0.1525968;0.1674427;-0.01880017,-0.1829665;-0.08044179;-0.0302435,0.07436948;0.008423758;-0.0282528,0.09666512;-0.289646;-0.00261368,0.08468701;-0.5818775;0.06414903,0.1005062;-0.6108926;0.004934505,-0.06690252;-9.661198E-05;-0.04386391,-0.09153247;-0.2965195;-0.004789542,-0.08932421;-0.5899379;0.05766661,-0.09092202;-0.6137933;-0.009733856,-0.005451668;0.3996744;0.01394044,81.53774
-0;0;0,-1.049747E-05;0.1998906;0.006614636,0.0006990625;0.4998186;0.003277868,0.1183023;0.3820097;-0.00604088,0.2350847;0.2277586;0.0446397,0.4229325;0.06450327;0.06832235,-0.110003;0.3662517;-0.02594003,-0.1573026;0.172146;-0.01668295,-0.180775;-0.07625033;-0.0324413,0.07505102;0.006397074;-0.02695221,0.1008958;-0.2913664;-0.001088217,0.08995152;-0.5840926;0.06365457,0.1036471;-0.6134655;0.004389372,-0.06680761;0.001934096;-0.04396593,-0.08715753;-0.2946917;-0.003978219,-0.08263092;-0.5880641;0.05856927,-0.081553;-0.6173097;-0.00241401,0.0003647323;0.3998898;0.007036517,0;0;0,-0.002949459;0.1997293;0.009974614,-0.006431357;0.4996494;0.01193362,0.1120882;0.3824281;-0.002998824,0.2047212;0.2095412;0.03610677,0.3519518;0.007959917;0.04982314,-0.1145512;0.3637802;-0.02082882,-0.1525968;0.1674427;-0.01880017,-0.1829665;-0.08044179;-0.0302435,0.07436948;0.008423758;-0.0282528,0.09666512;-0.289646;-0.00261368,0.08468701;-0.5818775;0.06414903,0.1005062;-0.6108926;0.004934505,-0.06690252;-9.661198E-05;-0.04386391,-0.09153247;-0.2965195;-0.004789542,-0.08932421;-0.5899379;0.05766661,-0.09092202;-0.6137933;-0.009733856,-0.005451668;0.3996744;0.01394044,81.54895
-0;0;0,-6.343659E-05;0.1998906;0.006612478,0.0005309845;0.4998185;0.003243977,0.1181794;0.3819921;-0.005981452,0.2345988;0.2274092;0.0445224,0.4217297;0.06329055;0.06791222,-0.1101246;0.3661278;-0.02586117,-0.1573788;0.1720121;-0.01657953,-0.1809215;-0.07636876;-0.03247518,0.07500446;0.006410665;-0.02707831,0.1005453;-0.2913773;-0.00119376,0.08955614;-0.5840868;0.06361681,0.1030993;-0.6133711;0.004198175,-0.06687372;0.001911755;-0.04386628,-0.08746653;-0.29472;-0.004047152,-0.08300212;-0.5881503;0.05823221,-0.08171374;-0.617593;-0.002490003,0.0002354076;0.39989;0.007014083,0;0;0,-0.002949459;0.1997293;0.009974614,-0.006431357;0.4996494;0.01193362,0.1120882;0.3824281;-0.002998824,0.2047212;0.2095412;0.03610677,0.3519518;0.007959917;0.04982314,-0.1145512;0.3637802;-0.02082882,-0.1525968;0.1674427;-0.01880017,-0.1829665;-0.08044179;-0.0302435,0.07436948;0.008423758;-0.0282528,0.09666512;-0.289646;-0.00261368,0.08468701;-0.5818775;0.06414903,0.1005062;-0.6108926;0.004934505,-0.06690252;-9.661198E-05;-0.04386391,-0.09153247;-0.2965195;-0.004789542,-0.08932421;-0.5899379;0.05766661,-0.09092202;-0.6137933;-0.009733856,-0.005451668;0.3996744;0.01394044,81.57159
-0;0;0,-6.343659E-05;0.1998906;0.006612478,0.0005309845;0.4998185;0.003243977,0.1181794;0.3819921;-0.005981452,0.2345988;0.2274092;0.0445224,0.4217297;0.06329055;0.06791222,-0.1101246;0.3661278;-0.02586117,-0.1573788;0.1720121;-0.01657953,-0.1809215;-0.07636876;-0.03247518,0.07500446;0.006410665;-0.02707831,0.1005453;-0.2913773;-0.00119376,0.08955614;-0.5840868;0.06361681,0.1030993;-0.6133711;0.004198175,-0.06687372;0.001911755;-0.04386628,-0.08746653;-0.29472;-0.004047152,-0.08300212;-0.5881503;0.05823221,-0.08171374;-0.617593;-0.002490003,0.0002354076;0.39989;0.007014083,0;0;0,-0.002783562;0.1997468;0.009667259,-0.006022105;0.4996707;0.01138705,0.1123925;0.3825218;-0.003518829,0.2030463;0.208278;0.03417722,0.3462701;0.003804922;0.04750804,-0.1143102;0.363965;-0.0212622,-0.1523453;0.1676261;-0.01917747,-0.1827283;-0.0802512;-0.03074134,0.07429879;0.008315776;-0.02846994,0.09677377;-0.2897582;-0.003037633,0.08481898;-0.5820261;0.0635698,0.1005635;-0.6108833;0.004125278,-0.06695668;9.951375E-06;-0.04378131,-0.09195536;-0.2963209;-0.004245665,-0.08903873;-0.5899071;0.05738769,-0.09091719;-0.6137697;-0.009997733,-0.005149068;0.3996964;0.01348147,81.5826
-0;0;0,-0.0001121536;0.1998911;0.006599586,0.0004146626;0.4998187;0.003199119,0.1181032;0.3820641;-0.005923217,0.2341707;0.2271218;0.0442884,0.4202786;0.06189454;0.06803287,-0.1102245;0.3661022;-0.02586076,-0.1575118;0.1719844;-0.01679291,-0.181128;-0.07639398;-0.03261839,0.07500688;0.006437808;-0.02706516,0.1007229;-0.2913497;-0.001349116,0.08973758;-0.5840544;0.06348386,0.102894;-0.6137552;0.0045375,-0.06685358;0.001881687;-0.04389827,-0.08748947;-0.294736;-0.003996942,-0.08312197;-0.5881935;0.05816127,-0.08173269;-0.6174431;-0.002810612,0.0001380913;0.3998905;0.006978772,0;0;0,-0.002783562;0.1997468;0.009667259,-0.006022105;0.4996707;0.01138705,0.1123925;0.3825218;-0.003518829,0.2030463;0.208278;0.03417722,0.3462701;0.003804922;0.04750804,-0.1143102;0.363965;-0.0212622,-0.1523453;0.1676261;-0.01917747,-0.1827283;-0.0802512;-0.03074134,0.07429879;0.008315776;-0.02846994,0.09677377;-0.2897582;-0.003037633,0.08481898;-0.5820261;0.0635698,0.1005635;-0.6108833;0.004125278,-0.06695668;9.951375E-06;-0.04378131,-0.09195536;-0.2963209;-0.004245665,-0.08903873;-0.5899071;0.05738769,-0.09091719;-0.6137697;-0.009997733,-0.005149068;0.3996964;0.01348147,81.60493
-0;0;0,5.432282E-05;0.1998863;0.006743116,0.0008641424;0.4998161;0.003596978,0.1184546;0.382287;-0.005944776,0.234126;0.2269961;0.04410414,0.4191954;0.06063086;0.06801836,-0.1098641;0.3662779;-0.02575645,-0.1570227;0.1721293;-0.01668043,-0.1810247;-0.07620454;-0.03262503,0.07500798;0.006482452;-0.02705143,0.1006687;-0.2913263;-0.001527365,0.08959758;-0.5839838;0.06350358,0.1022209;-0.6126771;0.003104784,-0.06683046;0.001840858;-0.04393519,-0.08757837;-0.2947745;-0.004074723,-0.08325915;-0.58825;0.05800127,-0.08227943;-0.6176128;-0.002831135,0.0004921254;0.3998851;0.007289872,0;0;0,-0.002783562;0.1997468;0.009667259,-0.006022105;0.4996707;0.01138705,0.1123925;0.3825218;-0.003518829,0.2030463;0.208278;0.03417722,0.3462701;0.003804922;0.04750804,-0.1143102;0.363965;-0.0212622,-0.1523453;0.1676261;-0.01917747,-0.1827283;-0.0802512;-0.03074134,0.07429879;0.008315776;-0.02846994,0.09677377;-0.2897582;-0.003037633,0.08481898;-0.5820261;0.0635698,0.1005635;-0.6108833;0.004125278,-0.06695668;9.951375E-06;-0.04378131,-0.09195536;-0.2963209;-0.004245665,-0.08903873;-0.5899071;0.05738769,-0.09091719;-0.6137697;-0.009997733,-0.005149068;0.3996964;0.01348147,81.62715
-0;0;0,5.432282E-05;0.1998863;0.006743116,0.0008641424;0.4998161;0.003596978,0.1184546;0.382287;-0.005944776,0.234126;0.2269961;0.04410414,0.4191954;0.06063086;0.06801836,-0.1098641;0.3662779;-0.02575645,-0.1570227;0.1721293;-0.01668043,-0.1810247;-0.07620454;-0.03262503,0.07500798;0.006482452;-0.02705143,0.1006687;-0.2913263;-0.001527365,0.08959758;-0.5839838;0.06350358,0.1022209;-0.6126771;0.003104784,-0.06683046;0.001840858;-0.04393519,-0.08757837;-0.2947745;-0.004074723,-0.08325915;-0.58825;0.05800127,-0.08227943;-0.6176128;-0.002831135,0.0004921254;0.3998851;0.007289872,0;0;0,-0.00264145;0.1997524;0.009591095,-0.005352359;0.4996813;0.01104338,0.1128167;0.3823699;-0.003785771,0.2006727;0.2063944;0.03246238,0.337553;-0.002514273;0.04346041,-0.1139465;0.3641893;-0.02140576,-0.1519051;0.1678364;-0.01924456,-0.1824854;-0.08000886;-0.03097391,0.07431761;0.008229458;-0.02844589,0.09699752;-0.2898333;-0.003064828,0.08526001;-0.582052;0.06379697,0.1005299;-0.6109437;0.004274409,-0.06692898;7.728994E-05;-0.04382357,-0.09167044;-0.2962767;-0.00429941,-0.088814;-0.5898134;0.05757209,-0.0905692;-0.6156217;-0.007620066,-0.004693333;0.3997082;0.01326627,81.63875
-0;0;0,5.432282E-05;0.1998863;0.006743116,0.0008641424;0.4998161;0.003596978,0.1184546;0.382287;-0.005944776,0.234126;0.2269961;0.04410414,0.4191954;0.06063086;0.06801836,-0.1098641;0.3662779;-0.02575645,-0.1570227;0.1721293;-0.01668043,-0.1810247;-0.07620454;-0.03262503,0.07500798;0.006482452;-0.02705143,0.1006687;-0.2913263;-0.001527365,0.08959758;-0.5839838;0.06350358,0.1022209;-0.6126771;0.003104784,-0.06683046;0.001840858;-0.04393519,-0.08757837;-0.2947745;-0.004074723,-0.08325915;-0.58825;0.05800127,-0.08227943;-0.6176128;-0.002831135,0.0004921254;0.3998851;0.007289872,0;0;0,-0.00264145;0.1997524;0.009591095,-0.005352359;0.4996813;0.01104338,0.1128167;0.3823699;-0.003785771,0.2006727;0.2063944;0.03246238,0.337553;-0.002514273;0.04346041,-0.1139465;0.3641893;-0.02140576,-0.1519051;0.1678364;-0.01924456,-0.1824854;-0.08000886;-0.03097391,0.07431761;0.008229458;-0.02844589,0.09699752;-0.2898333;-0.003064828,0.08526001;-0.582052;0.06379697,0.1005299;-0.6109437;0.004274409,-0.06692898;7.728994E-05;-0.04382357,-0.09167044;-0.2962767;-0.00429941,-0.088814;-0.5898134;0.05757209,-0.0905692;-0.6156217;-0.007620066,-0.004693333;0.3997082;0.01326627,81.6498
-0;0;0,0.0001289441;0.1998846;0.006792755,0.001057926;0.4998153;0.003748049,0.1185836;0.3821443;-0.005879342,0.2337343;0.2264247;0.04403802,0.4178553;0.0590854;0.06847178,-0.1096737;0.3662529;-0.02573417,-0.1568208;0.1721049;-0.01658459,-0.1809391;-0.07621513;-0.03256824,0.07498259;0.00645986;-0.02712712,0.1007092;-0.2913316;-0.001468338,0.08964145;-0.5840245;0.06340387,0.1021945;-0.6127138;0.002985194,-0.06685387;0.001876018;-0.04389807,-0.0874839;-0.2947481;-0.004041556,-0.08299513;-0.5881362;0.05843453,-0.07699302;-0.5564615;-0.03968866,0.0006477392;0.399883;0.007404787,0;0;0,-0.00264145;0.1997524;0.009591095,-0.005352359;0.4996813;0.01104338,0.1128167;0.3823699;-0.003785771,0.2006727;0.2063944;0.03246238,0.337553;-0.002514273;0.04346041,-0.1139465;0.3641893;-0.02140576,-0.1519051;0.1678364;-0.01924456,-0.1824854;-0.08000886;-0.03097391,0.07431761;0.008229458;-0.02844589,0.09699752;-0.2898333;-0.003064828,0.08526001;-0.582052;0.06379697,0.1005299;-0.6109437;0.004274409,-0.06692898;7.728994E-05;-0.04382357,-0.09167044;-0.2962767;-0.00429941,-0.088814;-0.5898134;0.05757209,-0.0905692;-0.6156217;-0.007620066,-0.004693333;0.3997082;0.01326627,81.67225
-0;0;0,0.0001289441;0.1998846;0.006792755,0.001057926;0.4998153;0.003748049,0.1185836;0.3821443;-0.005879342,0.2337343;0.2264247;0.04403802,0.4178553;0.0590854;0.06847178,-0.1096737;0.3662529;-0.02573417,-0.1568208;0.1721049;-0.01658459,-0.1809391;-0.07621513;-0.03256824,0.07498259;0.00645986;-0.02712712,0.1007092;-0.2913316;-0.001468338,0.08964145;-0.5840245;0.06340387,0.1021945;-0.6127138;0.002985194,-0.06685387;0.001876018;-0.04389807,-0.0874839;-0.2947481;-0.004041556,-0.08299513;-0.5881362;0.05843453,-0.07699302;-0.5564615;-0.03968866,0.0006477392;0.399883;0.007404787,0;0;0,-0.002545966;0.199756;0.009543351,-0.005046354;0.499687;0.01081956,0.1130629;0.3824353;-0.003955494,0.1985298;0.2049855;0.03078566,0.3294224;-0.007766202;0.04097655,-0.1138058;0.3643824;-0.02143671,-0.1517176;0.1680214;-0.01919211,-0.182253;-0.07982315;-0.03105377,0.07430021;0.00830778;-0.02846857,0.09709229;-0.2897346;-0.002949022,0.08538229;-0.5820096;0.06367123,0.1005667;-0.6113519;0.004728708,-0.06694998;-2.363408E-05;-0.04379155,-0.0914957;-0.2963866;-0.00421223,-0.08881525;-0.5899308;0.05763116,-0.09026293;-0.6159643;-0.007305771,-0.004453473;0.399715;0.0131128,81.68359
-0;0;0,0.0002766414;0.1998842;0.006798435,0.001530007;0.4998128;0.003696805,0.1189518;0.3822812;-0.005973332,0.2336843;0.226258;0.04395866,0.4167752;0.05769022;0.0676788,-0.1093548;0.3662367;-0.0256207,-0.1564216;0.1720637;-0.0165897,-0.1807966;-0.07623154;-0.0325681,0.0749651;0.006460534;-0.02717526,0.1007278;-0.2913215;-0.001442872,0.08961435;-0.5840155;0.06341643,0.1021303;-0.613115;0.003527977,-0.06688217;0.001868313;-0.04385527,-0.08745891;-0.2947574;-0.003983121,-0.08284093;-0.5880445;0.05895638,-0.07690085;-0.5563737;-0.03916984,0.001003195;0.3998821;0.007380845,0;0;0,-0.002545966;0.199756;0.009543351,-0.005046354;0.499687;0.01081956,0.1130629;0.3824353;-0.003955494,0.1985298;0.2049855;0.03078566,0.3294224;-0.007766202;0.04097655,-0.1138058;0.3643824;-0.02143671,-0.1517176;0.1680214;-0.01919211,-0.182253;-0.07982315;-0.03105377,0.07430021;0.00830778;-0.02846857,0.09709229;-0.2897346;-0.002949022,0.08538229;-0.5820096;0.06367123,0.1005667;-0.6113519;0.004728708,-0.06694998;-2.363408E-05;-0.04379155,-0.0914957;-0.2963866;-0.00421223,-0.08881525;-0.5899308;0.05763116,-0.09026293;-0.6159643;-0.007305771,-0.004453473;0.399715;0.0131128,81.70576
-0;0;0,0.0002766414;0.1998842;0.006798435,0.001530007;0.4998128;0.003696805,0.1189518;0.3822812;-0.005973332,0.2336843;0.226258;0.04395866,0.4167752;0.05769022;0.0676788,-0.1093548;0.3662367;-0.0256207,-0.1564216;0.1720637;-0.0165897,-0.1807966;-0.07623154;-0.0325681,0.0749651;0.006460534;-0.02717526,0.1007278;-0.2913215;-0.001442872,0.08961435;-0.5840155;0.06341643,0.1021303;-0.613115;0.003527977,-0.06688217;0.001868313;-0.04385527,-0.08745891;-0.2947574;-0.003983121,-0.08284093;-0.5880445;0.05895638,-0.07690085;-0.5563737;-0.03916984,0.001003195;0.3998821;0.007380845,0;0;0,-0.002545966;0.199756;0.009543351,-0.005046354;0.499687;0.01081956,0.1130629;0.3824353;-0.003955494,0.1985298;0.2049855;0.03078566,0.3294224;-0.007766202;0.04097655,-0.1138058;0.3643824;-0.02143671,-0.1517176;0.1680214;-0.01919211,-0.182253;-0.07982315;-0.03105377,0.07430021;0.00830778;-0.02846857,0.09709229;-0.2897346;-0.002949022,0.08538229;-0.5820096;0.06367123,0.1005667;-0.6113519;0.004728708,-0.06694998;-2.363408E-05;-0.04379155,-0.0914957;-0.2963866;-0.00421223,-0.08881525;-0.5899308;0.05763116,-0.09026293;-0.6159643;-0.007305771,-0.004453473;0.399715;0.0131128,81.71707
-0;0;0,0.0004517513;0.1998826;0.006836405,0.002050489;0.4998105;0.003815299,0.1193358;0.3821965;-0.005923096,0.2335904;0.2257885;0.04390075,0.4159172;0.05643818;0.06793036,-0.1090695;0.366485;-0.02540214,-0.1561924;0.1723149;-0.01660463,-0.181098;-0.07593307;-0.03250076,0.07491149;0.006435391;-0.02732864,0.1005479;-0.291327;-0.001244936,0.08939104;-0.5840948;0.06327289,0.102592;-0.6134194;0.003830969,-0.06694567;0.001871223;-0.04375815,-0.08757214;-0.2947417;-0.003816769,-0.08316097;-0.588074;0.05892682,-0.07726914;-0.5564;-0.0392029,0.001403689;0.3998793;0.00746856,0;0;0,-0.002567315;0.1997684;0.009273559,-0.00510636;0.4997001;0.01031661,0.113017;0.3825072;-0.004422724,0.195804;0.2036019;0.02932968,0.3207913;-0.01271546;0.03854744,-0.1138649;0.3642299;-0.02165864,-0.1518928;0.1678903;-0.01950808,-0.182285;-0.07996933;-0.03142124,0.07415947;0.008409964;-0.02880353,0.09697369;-0.2896334;-0.003315378,0.0853317;-0.5819679;0.0630547,0.09996691;-0.6110342;0.003604345,-0.06709459;-0.0001245306;-0.04356949,-0.09189306;-0.2965599;-0.004696146,-0.08920515;-0.5900941;0.05719441,-0.09144862;-0.615822;-0.008076165,-0.004501939;0.3997299;0.012685,81.73929
-0;0;0,0.0004517513;0.1998826;0.006836405,0.002050489;0.4998105;0.003815299,0.1193358;0.3821965;-0.005923096,0.2335904;0.2257885;0.04390075,0.4159172;0.05643818;0.06793036,-0.1090695;0.366485;-0.02540214,-0.1561924;0.1723149;-0.01660463,-0.181098;-0.07593307;-0.03250076,0.07491149;0.006435391;-0.02732864,0.1005479;-0.291327;-0.001244936,0.08939104;-0.5840948;0.06327289,0.102592;-0.6134194;0.003830969,-0.06694567;0.001871223;-0.04375815,-0.08757214;-0.2947417;-0.003816769,-0.08316097;-0.588074;0.05892682,-0.07726914;-0.5564;-0.0392029,0.001403689;0.3998793;0.00746856,0;0;0,-0.002567315;0.1997684;0.009273559,-0.00510636;0.4997001;0.01031661,0.113017;0.3825072;-0.004422724,0.195804;0.2036019;0.02932968,0.3207913;-0.01271546;0.03854744,-0.1138649;0.3642299;-0.02165864,-0.1518928;0.1678903;-0.01950808,-0.182285;-0.07996933;-0.03142124,0.07415947;0.008409964;-0.02880353,0.09697369;-0.2896334;-0.003315378,0.0853317;-0.5819679;0.0630547,0.09996691;-0.6110342;0.003604345,-0.06709459;-0.0001245306;-0.04356949,-0.09189306;-0.2965599;-0.004696146,-0.08920515;-0.5900941;0.05719441,-0.09144862;-0.615822;-0.008076165,-0.004501939;0.3997299;0.012685,81.75026
-0;0;0,0.0005665653;0.1998807;0.006883897,0.002320076;0.4998082;0.003919377,0.1195397;0.3820817;-0.005845735,0.2333905;0.2253743;0.04396158,0.4149478;0.05519792;0.06798158,-0.1088974;0.3665362;-0.02520119,-0.1561836;0.1723995;-0.01654464,-0.1803296;-0.07596612;-0.03175965,0.07488558;0.006464937;-0.0273926,0.1006368;-0.2912829;-0.001256365,0.08942755;-0.5840532;0.06324133,0.1023077;-0.6134894;0.003878295,-0.06697254;0.001842777;-0.04371823,-0.08765961;-0.2947756;-0.003848124,-0.08324875;-0.5881975;0.05847467,-0.0820526;-0.6170307;-0.003038608,0.001625666;0.3998768;0.007556386,0;0;0,-0.002567315;0.1997684;0.009273559,-0.00510636;0.4997001;0.01031661,0.113017;0.3825072;-0.004422724,0.195804;0.2036019;0.02932968,0.3207913;-0.01271546;0.03854744,-0.1138649;0.3642299;-0.02165864,-0.1518928;0.1678903;-0.01950808,-0.182285;-0.07996933;-0.03142124,0.07415947;0.008409964;-0.02880353,0.09697369;-0.2896334;-0.003315378,0.0853317;-0.5819679;0.0630547,0.09996691;-0.6110342;0.003604345,-0.06709459;-0.0001245306;-0.04356949,-0.09189306;-0.2965599;-0.004696146,-0.08920515;-0.5900941;0.05719441,-0.09144862;-0.615822;-0.008076165,-0.004501939;0.3997299;0.012685,81.77251
-0;0;0,0.0005621733;0.1998794;0.00692282,0.002211174;0.4998072;0.003949378,0.1194693;0.3823168;-0.006134962,0.2329102;0.2253304;0.04372916,0.4132556;0.0540275;0.06884614,-0.108962;0.3665697;-0.02520999,-0.1562051;0.1724392;-0.01618439,-0.1802292;-0.07596487;-0.03095787,0.07481904;0.006501907;-0.02756515,0.1003725;-0.2912698;-0.001506394,0.0890605;-0.5840127;0.06309712,0.1019309;-0.6130707;0.003229063,-0.0670267;0.001791542;-0.04363726,-0.08800168;-0.2948028;-0.003739089,-0.08371792;-0.5882956;0.05825823,-0.0825176;-0.6165431;-0.003998391,0.001557552;0.3998758;0.007594357,0;0;0,-0.002485761;0.1997749;0.009155837,-0.004861225;0.4997079;0.009992514,0.1131986;0.3824853;-0.004700976,0.191441;0.2011656;0.02694282,0.3104454;-0.01847725;0.03668685,-0.1137328;0.3644962;-0.02197432,-0.1521925;0.1682413;-0.01976654,-0.1824026;-0.07965115;-0.03145667,0.07408891;0.008434006;-0.0289776,0.0970149;-0.2895764;-0.003204877,0.08525713;-0.5819836;0.06282384,0.09995566;-0.6114475;0.003921907,-0.06718754;-0.0001495496;-0.04342594,-0.09157906;-0.2966362;-0.004686479,-0.089223;-0.5902025;0.0570656,-0.0911131;-0.6171577;-0.006764755,-0.004310274;0.3997395;0.01244409,81.79472
-0;0;0,0.0005621733;0.1998794;0.00692282,0.002211174;0.4998072;0.003949378,0.1194693;0.3823168;-0.006134962,0.2329102;0.2253304;0.04372916,0.4132556;0.0540275;0.06884614,-0.108962;0.3665697;-0.02520999,-0.1562051;0.1724392;-0.01618439,-0.1802292;-0.07596487;-0.03095787,0.07481904;0.006501907;-0.02756515,0.1003725;-0.2912698;-0.001506394,0.0890605;-0.5840127;0.06309712,0.1019309;-0.6130707;0.003229063,-0.0670267;0.001791542;-0.04363726,-0.08800168;-0.2948028;-0.003739089,-0.08371792;-0.5882956;0.05825823,-0.0825176;-0.6165431;-0.003998391,0.001557552;0.3998758;0.007594357,0;0;0,-0.002485761;0.1997749;0.009155837,-0.004861225;0.4997079;0.009992514,0.1131986;0.3824853;-0.004700976,0.191441;0.2011656;0.02694282,0.3104454;-0.01847725;0.03668685,-0.1137328;0.3644962;-0.02197432,-0.1521925;0.1682413;-0.01976654,-0.1824026;-0.07965115;-0.03145667,0.07408891;0.008434006;-0.0289776,0.0970149;-0.2895764;-0.003204877,0.08525713;-0.5819836;0.06282384,0.09995566;-0.6114475;0.003921907,-0.06718754;-0.0001495496;-0.04342594,-0.09157906;-0.2966362;-0.004686479,-0.089223;-0.5902025;0.0570656,-0.0911131;-0.6171577;-0.006764755,-0.004310274;0.3997395;0.01244409,81.80625
-0;0;0,0.0006206825;0.1998803;0.006891816,0.002292492;0.4998071;0.003838342,0.1195169;0.3821502;-0.006269052,0.2328584;0.2250386;0.04342618,0.4126402;0.05319449;0.06888491,-0.1089116;0.3666241;-0.02525125,-0.1564385;0.1725597;-0.01629547,-0.1803439;-0.07585365;-0.03110555,0.07480197;0.006529209;-0.02760498,0.1002666;-0.2912587;-0.001644464,0.08875519;-0.5839547;0.06313619,0.1020767;-0.6121408;0.002230726,-0.06701362;0.001779378;-0.04365785,-0.08812333;-0.2947903;-0.003647313,-0.08384405;-0.5883872;0.0578551,-0.07808799;-0.5567153;-0.04028231,0.00163624;0.3998767;0.007512111,0;0;0,-0.002485761;0.1997749;0.009155837,-0.004861225;0.4997079;0.009992514,0.1131986;0.3824853;-0.004700976,0.191441;0.2011656;0.02694282,0.3104454;-0.01847725;0.03668685,-0.1137328;0.3644962;-0.02197432,-0.1521925;0.1682413;-0.01976654,-0.1824026;-0.07965115;-0.03145667,0.07408891;0.008434006;-0.0289776,0.0970149;-0.2895764;-0.003204877,0.08525713;-0.5819836;0.06282384,0.09995566;-0.6114475;0.003921907,-0.06718754;-0.0001495496;-0.04342594,-0.09157906;-0.2966362;-0.004686479,-0.089223;-0.5902025;0.0570656,-0.0911131;-0.6171577;-0.006764755,-0.004310274;0.3997395;0.01244409,81.82827
-0;0;0,0.0006206825;0.1998803;0.006891816,0.002292492;0.4998071;0.003838342,0.1195169;0.3821502;-0.006269052,0.2328584;0.2250386;0.04342618,0.4126402;0.05319449;0.06888491,-0.1089116;0.3666241;-0.02525125,-0.1564385;0.1725597;-0.01629547,-0.1803439;-0.07585365;-0.03110555,0.07480197;0.006529209;-0.02760498,0.1002666;-0.2912587;-0.001644464,0.08875519;-0.5839547;0.06313619,0.1020767;-0.6121408;0.002230726,-0.06701362;0.001779378;-0.04365785,-0.08812333;-0.2947903;-0.003647313,-0.08384405;-0.5883872;0.0578551,-0.07808799;-0.5567153;-0.04028231,0.00163624;0.3998767;0.007512111,0;0;0,-0.002307318;0.1997821;0.009044357,-0.004370794;0.4997177;0.009721831,0.1134636;0.3820677;-0.005285583,0.1881183;0.1990505;0.02523324,0.3005396;-0.02414854;0.03183839,-0.113472;0.3648038;-0.02210087,-0.1521591;0.1685922;-0.02002345,-0.1823867;-0.07929942;-0.03168711,0.07405256;0.0084779;-0.02905755,0.09715083;-0.2895081;-0.0031572,0.08534256;-0.5819749;0.06259805,0.09991281;-0.611326;0.00351252,-0.06721463;-0.0001857414;-0.04338384,-0.09163719;-0.2965832;-0.003987223,-0.08901528;-0.5903221;0.05692729,-0.09160113;-0.6162702;-0.008074269,-0.003926932;0.3997501;0.01223024,81.83974
-0;0;0,0.0006206825;0.1998803;0.006891816,0.002292492;0.4998071;0.003838342,0.1195169;0.3821502;-0.006269052,0.2328584;0.2250386;0.04342618,0.4126402;0.05319449;0.06888491,-0.1089116;0.3666241;-0.02525125,-0.1564385;0.1725597;-0.01629547,-0.1803439;-0.07585365;-0.03110555,0.07480197;0.006529209;-0.02760498,0.1002666;-0.2912587;-0.001644464,0.08875519;-0.5839547;0.06313619,0.1020767;-0.6121408;0.002230726,-0.06701362;0.001779378;-0.04365785,-0.08812333;-0.2947903;-0.003647313,-0.08384405;-0.5883872;0.0578551,-0.07808799;-0.5567153;-0.04028231,0.00163624;0.3998767;0.007512111,0;0;0,-0.002307318;0.1997821;0.009044357,-0.004370794;0.4997177;0.009721831,0.1134636;0.3820677;-0.005285583,0.1881183;0.1990505;0.02523324,0.3005396;-0.02414854;0.03183839,-0.113472;0.3648038;-0.02210087,-0.1521591;0.1685922;-0.02002345,-0.1823867;-0.07929942;-0.03168711,0.07405256;0.0084779;-0.02905755,0.09715083;-0.2895081;-0.0031572,0.08534256;-0.5819749;0.06259805,0.09991281;-0.611326;0.00351252,-0.06721463;-0.0001857414;-0.04338384,-0.09163719;-0.2965832;-0.003987223,-0.08901528;-0.5903221;0.05692729,-0.09160113;-0.6162702;-0.008074269,-0.003926932;0.3997501;0.01223024,81.8508
-0;0;0,0.0008193062;0.199878;0.006936197,0.002873074;0.4998034;0.003971526,0.1198771;0.3817435;-0.006384227,0.233109;0.2246;0.04346031,0.4124877;0.05228512;0.06857706,-0.1084685;0.3666488;-0.02516657,-0.1555559;0.1724843;-0.01606045,-0.1802942;-0.07583374;-0.03109926,0.07476561;0.006487892;-0.02771301,0.1001523;-0.2912937;-0.001604872,0.08852328;-0.583969;0.06324841,0.1016274;-0.6126723;0.002965085,-0.06706899;0.001793467;-0.04357218,-0.08813645;-0.2947311;-0.003206771,-0.08369383;-0.5883859;0.05800709,-0.07794429;-0.5567138;-0.04013073,0.002083173;0.3998729;0.007612661,0;0;0,-0.002307318;0.1997821;0.009044357,-0.004370794;0.4997177;0.009721831,0.1134636;0.3820677;-0.005285583,0.1881183;0.1990505;0.02523324,0.3005396;-0.02414854;0.03183839,-0.113472;0.3648038;-0.02210087,-0.1521591;0.1685922;-0.02002345,-0.1823867;-0.07929942;-0.03168711,0.07405256;0.0084779;-0.02905755,0.09715083;-0.2895081;-0.0031572,0.08534256;-0.5819749;0.06259805,0.09991281;-0.611326;0.00351252,-0.06721463;-0.0001857414;-0.04338384,-0.09163719;-0.2965832;-0.003987223,-0.08901528;-0.5903221;0.05692729,-0.09160113;-0.6162702;-0.008074269,-0.003926932;0.3997501;0.01223024,81.87306
-0;0;0,0.0008193062;0.199878;0.006936197,0.002873074;0.4998034;0.003971526,0.1198771;0.3817435;-0.006384227,0.233109;0.2246;0.04346031,0.4124877;0.05228512;0.06857706,-0.1084685;0.3666488;-0.02516657,-0.1555559;0.1724843;-0.01606045,-0.1802942;-0.07583374;-0.03109926,0.07476561;0.006487892;-0.02771301,0.1001523;-0.2912937;-0.001604872,0.08852328;-0.583969;0.06324841,0.1016274;-0.6126723;0.002965085,-0.06706899;0.001793467;-0.04357218,-0.08813645;-0.2947311;-0.003206771,-0.08369383;-0.5883859;0.05800709,-0.07794429;-0.5567138;-0.04013073,0.002083173;0.3998729;0.007612661,0;0;0,-0.002277596;0.1997878;0.008925005,-0.004314625;0.4997239;0.009421973,0.1135222;0.3822346;-0.005645955,0.1851706;0.1978721;0.02396813,0.2898416;-0.02913113;0.02764411,-0.1133669;0.364651;-0.02233893,-0.1521746;0.1684642;-0.02016912,-0.1823615;-0.07943279;-0.03182364,0.07401122;0.00843527;-0.02917506,0.09705837;-0.2895605;-0.00334201,0.08552085;-0.5819913;0.06262109,0.1000284;-0.611665;0.003955681,-0.06727292;-0.0001253342;-0.04329364,-0.09113083;-0.2965738;-0.003934965,-0.08925209;-0.5903384;0.05688303,-0.0909649;-0.6178159;-0.006317526,-0.003873635;0.3997579;0.01199368,81.88428
-0;0;0,0.0008101758;0.1998786;0.006919705,0.002839877;0.4998038;0.003916585,0.1198847;0.3819731;-0.006434529,0.2327574;0.2245838;0.043449,0.4110827;0.05126224;0.06913435,-0.1085221;0.3666217;-0.02508557,-0.1558449;0.1725098;-0.01607903,-0.1805452;-0.07583305;-0.03076608,0.07475176;0.006427691;-0.02776435,0.1000844;-0.2913612;-0.001686018,0.08855145;-0.5840483;0.06313109,0.1014604;-0.612985;0.003111538,-0.0670858;0.00186706;-0.04354318,-0.08808125;-0.2946793;-0.003300916,-0.08351951;-0.5883769;0.05769834,-0.07784806;-0.5567095;-0.04044316,0.002056996;0.3998737;0.007572815,0;0;0,-0.002277596;0.1997878;0.008925005,-0.004314625;0.4997239;0.009421973,0.1135222;0.3822346;-0.005645955,0.1851706;0.1978721;0.02396813,0.2898416;-0.02913113;0.02764411,-0.1133669;0.364651;-0.02233893,-0.1521746;0.1684642;-0.02016912,-0.1823615;-0.07943279;-0.03182364,0.07401122;0.00843527;-0.02917506,0.09705837;-0.2895605;-0.00334201,0.08552085;-0.5819913;0.06262109,0.1000284;-0.611665;0.003955681,-0.06727292;-0.0001253342;-0.04329364,-0.09113083;-0.2965738;-0.003934965,-0.08925209;-0.5903384;0.05688303,-0.0909649;-0.6178159;-0.006317526,-0.003873635;0.3997579;0.01199368,81.90644
-0;0;0,0.0008101758;0.1998786;0.006919705,0.002839877;0.4998038;0.003916585,0.1198847;0.3819731;-0.006434529,0.2327574;0.2245838;0.043449,0.4110827;0.05126224;0.06913435,-0.1085221;0.3666217;-0.02508557,-0.1558449;0.1725098;-0.01607903,-0.1805452;-0.07583305;-0.03076608,0.07475176;0.006427691;-0.02776435,0.1000844;-0.2913612;-0.001686018,0.08855145;-0.5840483;0.06313109,0.1014604;-0.612985;0.003111538,-0.0670858;0.00186706;-0.04354318,-0.08808125;-0.2946793;-0.003300916,-0.08351951;-0.5883769;0.05769834,-0.07784806;-0.5567095;-0.04044316,0.002056996;0.3998737;0.007572815,0;0;0,-0.002277596;0.1997878;0.008925005,-0.004314625;0.4997239;0.009421973,0.1135222;0.3822346;-0.005645955,0.1851706;0.1978721;0.02396813,0.2898416;-0.02913113;0.02764411,-0.1133669;0.364651;-0.02233893,-0.1521746;0.1684642;-0.02016912,-0.1823615;-0.07943279;-0.03182364,0.07401122;0.00843527;-0.02917506,0.09705837;-0.2895605;-0.00334201,0.08552085;-0.5819913;0.06262109,0.1000284;-0.611665;0.003955681,-0.06727292;-0.0001253342;-0.04329364,-0.09113083;-0.2965738;-0.003934965,-0.08925209;-0.5903384;0.05688303,-0.0909649;-0.6178159;-0.006317526,-0.003873635;0.3997579;0.01199368,81.91794
-0;0;0,0.0008311281;0.1998764;0.006982388,0.002861728;0.4998029;0.004107252,0.1198722;0.3818468;-0.006449929,0.2323079;0.2241968;0.04359716,0.4099917;0.05021851;0.06928837,-0.1084688;0.3665736;-0.02499039,-0.1560012;0.1725035;-0.01618812,-0.1807024;-0.07584573;-0.0307652,0.07473986;0.00640918;-0.02780065,0.1000528;-0.2913758;-0.001659131,0.08877034;-0.5840976;0.06304524,0.1011084;-0.6129861;0.002842527,-0.0671017;0.001882609;-0.043518,-0.08774953;-0.2947773;-0.003937729,-0.08381581;-0.5883771;0.05757387,-0.07820322;-0.5567023;-0.04057239,0.00208239;0.3998711;0.007716103,0;0;0,-0.002288741;0.1997987;0.008673192,-0.004468042;0.4997353;0.008890139,0.1133989;0.382282;-0.00630108,0.1818199;0.1964325;0.02160146,0.2786002;-0.03407463;0.02157264,-0.1133895;0.3644547;-0.02283773,-0.1521584;0.1682603;-0.02066397,-0.1822253;-0.07965335;-0.03227505,0.07397407;0.008558846;-0.02923324,0.09702542;-0.2894739;-0.003833398,0.0852549;-0.5818648;0.06226512,0.09933494;-0.6108279;0.002544302,-0.06727569;-0.0002256645;-0.04328892,-0.09163506;-0.2966383;-0.003966969,-0.08945493;-0.5904768;0.05648276,-0.0912967;-0.6170099;-0.007854555,-0.003973601;0.3997713;0.01152663,81.92906
-0;0;0,0.0008311281;0.1998764;0.006982388,0.002861728;0.4998029;0.004107252,0.1198722;0.3818468;-0.006449929,0.2323079;0.2241968;0.04359716,0.4099917;0.05021851;0.06928837,-0.1084688;0.3665736;-0.02499039,-0.1560012;0.1725035;-0.01618812,-0.1807024;-0.07584573;-0.0307652,0.07473986;0.00640918;-0.02780065,0.1000528;-0.2913758;-0.001659131,0.08877034;-0.5840976;0.06304524,0.1011084;-0.6129861;0.002842527,-0.0671017;0.001882609;-0.043518,-0.08774953;-0.2947773;-0.003937729,-0.08381581;-0.5883771;0.05757387,-0.07820322;-0.5567023;-0.04057239,0.00208239;0.3998711;0.007716103,0;0;0,-0.002288741;0.1997987;0.008673192,-0.004468042;0.4997353;0.008890139,0.1133989;0.382282;-0.00630108,0.1818199;0.1964325;0.02160146,0.2786002;-0.03407463;0.02157264,-0.1133895;0.3644547;-0.02283773,-0.1521584;0.1682603;-0.02066397,-0.1822253;-0.07965335;-0.03227505,0.07397407;0.008558846;-0.02923324,0.09702542;-0.2894739;-0.003833398,0.0852549;-0.5818648;0.06226512,0.09933494;-0.6108279;0.002544302,-0.06727569;-0.0002256645;-0.04328892,-0.09163506;-0.2966383;-0.003966969,-0.08945493;-0.5904768;0.05648276,-0.0912967;-0.6170099;-0.007854555,-0.003973601;0.3997713;0.01152663,81.95109
-0;0;0,0.000749644;0.199878;0.006945285,0.002628083;0.4998046;0.003980303,0.1196868;0.3818769;-0.006590477,0.2313421;0.2236652;0.04343107,0.408547;0.04924798;0.06945106,-0.1086075;0.3664912;-0.02515437,-0.1562067;0.1724423;-0.01624647,-0.1810247;-0.07588615;-0.03097888,0.07475282;0.006348669;-0.02777968,0.09976564;-0.2914798;-0.001846075,0.08848062;-0.5840741;0.06343193,0.1008752;-0.6117142;0.00163883,-0.06707879;0.001935919;-0.04355097,-0.08764385;-0.2947387;-0.004038204,-0.08429047;-0.5883423;0.0574897,-0.07868773;-0.5566964;-0.04065172,0.001898058;0.3998736;0.007619556,0;0;0,-0.002288741;0.1997987;0.008673192,-0.004468042;0.4997353;0.008890139,0.1133989;0.382282;-0.00630108,0.1818199;0.1964325;0.02160146,0.2786002;-0.03407463;0.02157264,-0.1133895;0.3644547;-0.02283773,-0.1521584;0.1682603;-0.02066397,-0.1822253;-0.07965335;-0.03227505,0.07397407;0.008558846;-0.02923324,0.09702542;-0.2894739;-0.003833398,0.0852549;-0.5818648;0.06226512,0.09933494;-0.6108279;0.002544302,-0.06727569;-0.0002256645;-0.04328892,-0.09163506;-0.2966383;-0.003966969,-0.08945493;-0.5904768;0.05648276,-0.0912967;-0.6170099;-0.007854555,-0.003973601;0.3997713;0.01152663,81.96257
-0;0;0,0.000749644;0.199878;0.006945285,0.002628083;0.4998046;0.003980303,0.1196868;0.3818769;-0.006590477,0.2313421;0.2236652;0.04343107,0.408547;0.04924798;0.06945106,-0.1086075;0.3664912;-0.02515437,-0.1562067;0.1724423;-0.01624647,-0.1810247;-0.07588615;-0.03097888,0.07475282;0.006348669;-0.02777968,0.09976564;-0.2914798;-0.001846075,0.08848062;-0.5840741;0.06343193,0.1008752;-0.6117142;0.00163883,-0.06707879;0.001935919;-0.04355097,-0.08764385;-0.2947387;-0.004038204,-0.08429047;-0.5883423;0.0574897,-0.07868773;-0.5566964;-0.04065172,0.001898058;0.3998736;0.007619556,0;0;0,-0.00224561;0.1998043;0.008555539,-0.004565842;0.4997404;0.008478628,0.1133276;0.3823546;-0.006989196,0.1800707;0.1957969;0.02024259,0.2681554;-0.03815907;0.01785483,-0.1132859;0.3642687;-0.02337064,-0.1519586;0.1680561;-0.02113198,-0.1816889;-0.07991001;-0.03248733,0.07390685;0.008478856;-0.02942596,0.09710959;-0.2895212;-0.003782198,0.08513814;-0.5820439;0.06169414,0.0985632;-0.6115878;0.002596442,-0.06731812;-0.0001199047;-0.04322333,-0.09221269;-0.2963973;-0.003223818,-0.0896113;-0.5904834;0.05599311,-0.09097324;-0.617574;-0.007687263,-0.003998617;0.3997791;0.01120257,81.97349
-0;0;0,0.000749644;0.199878;0.006945285,0.002628083;0.4998046;0.003980303,0.1196868;0.3818769;-0.006590477,0.2313421;0.2236652;0.04343107,0.408547;0.04924798;0.06945106,-0.1086075;0.3664912;-0.02515437,-0.1562067;0.1724423;-0.01624647,-0.1810247;-0.07588615;-0.03097888,0.07475282;0.006348669;-0.02777968,0.09976564;-0.2914798;-0.001846075,0.08848062;-0.5840741;0.06343193,0.1008752;-0.6117142;0.00163883,-0.06707879;0.001935919;-0.04355097,-0.08764385;-0.2947387;-0.004038204,-0.08429047;-0.5883423;0.0574897,-0.07868773;-0.5566964;-0.04065172,0.001898058;0.3998736;0.007619556,0;0;0,-0.00224561;0.1998043;0.008555539,-0.004565842;0.4997404;0.008478628,0.1133276;0.3823546;-0.006989196,0.1800707;0.1957969;0.02024259,0.2681554;-0.03815907;0.01785483,-0.1132859;0.3642687;-0.02337064,-0.1519586;0.1680561;-0.02113198,-0.1816889;-0.07991001;-0.03248733,0.07390685;0.008478856;-0.02942596,0.09710959;-0.2895212;-0.003782198,0.08513814;-0.5820439;0.06169414,0.0985632;-0.6115878;0.002596442,-0.06731812;-0.0001199047;-0.04322333,-0.09221269;-0.2963973;-0.003223818,-0.0896113;-0.5904834;0.05599311,-0.09097324;-0.617574;-0.007687263,-0.003998617;0.3997791;0.01120257,81.9847
-0;0;0,0.0008130785;0.1998762;0.006987871,0.002726736;0.4998029;0.004057726,0.1197239;0.3816825;-0.006743005,0.2307367;0.2230527;0.04338432,0.4067578;0.04745039;0.06946906,-0.1085014;0.3665049;-0.02514355,-0.156096;0.1724589;-0.01614938,-0.1807953;-0.07589072;-0.03072313,0.07479681;0.006313484;-0.02766905,0.099753;-0.29155;-0.002085157,0.08828168;-0.5841056;0.06333389,0.1007542;-0.6120708;0.001967281,-0.06702188;0.001975375;-0.04363674,-0.08754178;-0.2946944;-0.00406424,-0.08440746;-0.5883316;0.05731506,-0.07885044;-0.5566801;-0.04082998,0.001991666;0.3998715;0.007688601,0;0;0,-0.00224561;0.1998043;0.008555539,-0.004565842;0.4997404;0.008478628,0.1133276;0.3823546;-0.006989196,0.1800707;0.1957969;0.02024259,0.2681554;-0.03815907;0.01785483,-0.1132859;0.3642687;-0.02337064,-0.1519586;0.1680561;-0.02113198,-0.1816889;-0.07991001;-0.03248733,0.07390685;0.008478856;-0.02942596,0.09710959;-0.2895212;-0.003782198,0.08513814;-0.5820439;0.06169414,0.0985632;-0.6115878;0.002596442,-0.06731812;-0.0001199047;-0.04322333,-0.09221269;-0.2963973;-0.003223818,-0.0896113;-0.5904834;0.05599311,-0.09097324;-0.617574;-0.007687263,-0.003998617;0.3997791;0.01120257,81.99599
-0;0;0,0.0008130785;0.1998762;0.006987871,0.002726736;0.4998029;0.004057726,0.1197239;0.3816825;-0.006743005,0.2307367;0.2230527;0.04338432,0.4067578;0.04745039;0.06946906,-0.1085014;0.3665049;-0.02514355,-0.156096;0.1724589;-0.01614938,-0.1807953;-0.07589072;-0.03072313,0.07479681;0.006313484;-0.02766905,0.099753;-0.29155;-0.002085157,0.08828168;-0.5841056;0.06333389,0.1007542;-0.6120708;0.001967281,-0.06702188;0.001975375;-0.04363674,-0.08754178;-0.2946944;-0.00406424,-0.08440746;-0.5883316;0.05731506,-0.07885044;-0.5566801;-0.04082998,0.001991666;0.3998715;0.007688601,0;0;0,-0.002169633;0.1998086;0.008475198,-0.004312238;0.4997452;0.008177841,0.1134797;0.3827158;-0.007823826,0.1785526;0.1954072;0.01827293,0.2565423;-0.04201199;0.01122249,-0.1130106;0.3642245;-0.02377336,-0.1517646;0.1680293;-0.02140997,-0.1813746;-0.07994024;-0.03300102,0.07387344;0.008511335;-0.02950039,0.09709905;-0.2894928;-0.003924141,0.08508665;-0.5820392;0.06143869,0.09841547;-0.6114889;0.002192713,-0.06736762;-0.0001682989;-0.04314598,-0.09127391;-0.2965862;-0.003587257,-0.08970297;-0.5906775;0.05563992,-0.09177572;-0.6178817;-0.007883482,-0.003800447;0.3997861;0.01099034,82.01807
-0;0;0,0.0008997019;0.1998765;0.006970452,0.002936798;0.4998019;0.00400058,0.1197642;0.3810333;-0.007002724,0.2305457;0.2222895;0.04327517,0.4062087;0.04634869;0.0694923,-0.1083334;0.3664209;-0.02509734,-0.1561792;0.1724304;-0.01624018,-0.181047;-0.07589591;-0.03092551,0.07476278;0.00627135;-0.02777042,0.09965228;-0.2916125;-0.002359018,0.08814349;-0.5841665;0.06306029,0.1003984;-0.6122766;0.001834203,-0.0670596;0.002026015;-0.04357643,-0.08769746;-0.2946451;-0.004075356,-0.08479054;-0.5883783;0.05685402,-0.07928412;-0.5567216;-0.04129486,0.002160813;0.3998713;0.007645481,0;0;0,-0.002169633;0.1998086;0.008475198,-0.004312238;0.4997452;0.008177841,0.1134797;0.3827158;-0.007823826,0.1785526;0.1954072;0.01827293,0.2565423;-0.04201199;0.01122249,-0.1130106;0.3642245;-0.02377336,-0.1517646;0.1680293;-0.02140997,-0.1813746;-0.07994024;-0.03300102,0.07387344;0.008511335;-0.02950039,0.09709905;-0.2894928;-0.003924141,0.08508665;-0.5820392;0.06143869,0.09841547;-0.6114889;0.002192713,-0.06736762;-0.0001682989;-0.04314598,-0.09127391;-0.2965862;-0.003587257,-0.08970297;-0.5906775;0.05563992,-0.09177572;-0.6178817;-0.007883482,-0.003800447;0.3997861;0.01099034,82.02942
-0;0;0,0.0008997019;0.1998765;0.006970452,0.002936798;0.4998019;0.00400058,0.1197642;0.3810333;-0.007002724,0.2305457;0.2222895;0.04327517,0.4062087;0.04634869;0.0694923,-0.1083334;0.3664209;-0.02509734,-0.1561792;0.1724304;-0.01624018,-0.181047;-0.07589591;-0.03092551,0.07476278;0.00627135;-0.02777042,0.09965228;-0.2916125;-0.002359018,0.08814349;-0.5841665;0.06306029,0.1003984;-0.6122766;0.001834203,-0.0670596;0.002026015;-0.04357643,-0.08769746;-0.2946451;-0.004075356,-0.08479054;-0.5883783;0.05685402,-0.07928412;-0.5567216;-0.04129486,0.002160813;0.3998713;0.007645481,0;0;0,-0.002169633;0.1998086;0.008475198,-0.004312238;0.4997452;0.008177841,0.1134797;0.3827158;-0.007823826,0.1785526;0.1954072;0.01827293,0.2565423;-0.04201199;0.01122249,-0.1130106;0.3642245;-0.02377336,-0.1517646;0.1680293;-0.02140997,-0.1813746;-0.07994024;-0.03300102,0.07387344;0.008511335;-0.02950039,0.09709905;-0.2894928;-0.003924141,0.08508665;-0.5820392;0.06143869,0.09841547;-0.6114889;0.002192713,-0.06736762;-0.0001682989;-0.04314598,-0.09127391;-0.2965862;-0.003587257,-0.08970297;-0.5906775;0.05563992,-0.09177572;-0.6178817;-0.007883482,-0.003800447;0.3997861;0.01099034,82.04061
-0;0;0,0.001065086;0.1998771;0.006929488,0.003484437;0.499798;0.003833803,0.1201641;0.3809072;-0.007034301,0.2303701;0.2217706;0.04326645,0.4047828;0.04455616;0.06925185,-0.1079674;0.3664771;-0.02512554,-0.155974;0.1725301;-0.01618518,-0.1808761;-0.07577196;-0.03121732,0.07475115;0.00625405;-0.02780559,0.09969185;-0.2916255;-0.002393791,0.08808344;-0.5841919;0.06295253,0.1003253;-0.6122733;0.001687199,-0.06707669;0.002033436;-0.04354977,-0.08710774;-0.294666;-0.003949355,-0.08474701;-0.5884448;0.05678312,-0.07924249;-0.5567978;-0.04136406,0.002570262;0.3998705;0.007528898,0;0;0,-0.002243884;0.1998194;0.008196043,-0.004432367;0.4997544;0.00748573,0.113344;0.3828151;-0.008638756,0.1768116;0.1948751;0.01686452,0.2475036;-0.04474731;0.007712798,-0.1130219;0.3639464;-0.02430203,-0.1517321;0.1677451;-0.02174053,-0.1813452;-0.0802319;-0.03316248,0.07372122;0.008767636;-0.02980454,0.0967142;-0.289273;-0.00444432,0.08461828;-0.5817878;0.0610441,0.09781878;-0.6111763;0.00168737,-0.06752379;-0.0005187792;-0.04289835,-0.09223539;-0.2969399;-0.003861692,-0.09028167;-0.5910426;0.05529707,-0.0925271;-0.6170733;-0.009620514,-0.00390391;0.3997998;0.01045145,82.06266
-0;0;0,0.001065086;0.1998771;0.006929488,0.003484437;0.499798;0.003833803,0.1201641;0.3809072;-0.007034301,0.2303701;0.2217706;0.04326645,0.4047828;0.04455616;0.06925185,-0.1079674;0.3664771;-0.02512554,-0.155974;0.1725301;-0.01618518,-0.1808761;-0.07577196;-0.03121732,0.07475115;0.00625405;-0.02780559,0.09969185;-0.2916255;-0.002393791,0.08808344;-0.5841919;0.06295253,0.1003253;-0.6122733;0.001687199,-0.06707669;0.002033436;-0.04354977,-0.08710774;-0.294666;-0.003949355,-0.08474701;-0.5884448;0.05678312,-0.07924249;-0.5567978;-0.04136406,0.002570262;0.3998705;0.007528898,0;0;0,-0.002243884;0.1998194;0.008196043,-0.004432367;0.4997544;0.00748573,0.113344;0.3828151;-0.008638756,0.1768116;0.1948751;0.01686452,0.2475036;-0.04474731;0.007712798,-0.1130219;0.3639464;-0.02430203,-0.1517321;0.1677451;-0.02174053,-0.1813452;-0.0802319;-0.03316248,0.07372122;0.008767636;-0.02980454,0.0967142;-0.289273;-0.00444432,0.08461828;-0.5817878;0.0610441,0.09781878;-0.6111763;0.00168737,-0.06752379;-0.0005187792;-0.04289835,-0.09223539;-0.2969399;-0.003861692,-0.09028167;-0.5910426;0.05529707,-0.0925271;-0.6170733;-0.009620514,-0.00390391;0.3997998;0.01045145,82.07417
-0;0;0,0.0009827737;0.1998768;0.006951198,0.003222236;0.4997992;0.003865189,0.1199208;0.3808102;-0.007229714,0.2294355;0.221256;0.04325793,0.4029197;0.04309151;0.06896004,-0.10813;0.3664507;-0.02519529,-0.1563912;0.1725679;-0.01623188,-0.181232;-0.07574083;-0.03125502,0.07468607;0.006237303;-0.0279837,0.09949455;-0.2916536;-0.00257636,0.08765122;-0.5842671;0.06251635,0.09980088;-0.6125087;0.001437388,-0.06711089;0.002046099;-0.04349646,-0.08762497;-0.2946702;-0.004271604,-0.08517616;-0.588405;0.05667028,-0.07972559;-0.5567582;-0.04147986,0.002370631;0.399871;0.007556727,0;0;0,-0.002243884;0.1998194;0.008196043,-0.004432367;0.4997544;0.00748573,0.113344;0.3828151;-0.008638756,0.1768116;0.1948751;0.01686452,0.2475036;-0.04474731;0.007712798,-0.1130219;0.3639464;-0.02430203,-0.1517321;0.1677451;-0.02174053,-0.1813452;-0.0802319;-0.03316248,0.07372122;0.008767636;-0.02980454,0.0967142;-0.289273;-0.00444432,0.08461828;-0.5817878;0.0610441,0.09781878;-0.6111763;0.00168737,-0.06752379;-0.0005187792;-0.04289835,-0.09223539;-0.2969399;-0.003861692,-0.09028167;-0.5910426;0.05529707,-0.0925271;-0.6170733;-0.009620514,-0.00390391;0.3997998;0.01045145,82.09691
-0;0;0,0.0009827737;0.1998768;0.006951198,0.003222236;0.4997992;0.003865189,0.1199208;0.3808102;-0.007229714,0.2294355;0.221256;0.04325793,0.4029197;0.04309151;0.06896004,-0.10813;0.3664507;-0.02519529,-0.1563912;0.1725679;-0.01623188,-0.181232;-0.07574083;-0.03125502,0.07468607;0.006237303;-0.0279837,0.09949455;-0.2916536;-0.00257636,0.08765122;-0.5842671;0.06251635,0.09980088;-0.6125087;0.001437388,-0.06711089;0.002046099;-0.04349646,-0.08762497;-0.2946702;-0.004271604,-0.08517616;-0.588405;0.05667028,-0.07972559;-0.5567582;-0.04147986,0.002370631;0.399871;0.007556727,0;0;0,-0.002074863;0.1998254;0.008093998,-0.00402589;0.499761;0.007091282,0.1136472;0.3829466;-0.0092821,0.175393;0.1943928;0.01591632,0.2373177;-0.04741006;0.001892233,-0.1127846;0.3641472;-0.02445868,-0.1514435;0.167936;-0.02187548,-0.1809614;-0.08004722;-0.03340766,0.07369299;0.008810355;-0.02986168,0.09667581;-0.2892456;-0.004673714,0.08434954;-0.5817704;0.06072729,0.09746388;-0.6110865;0.001254901,-0.067536;-0.0005329499;-0.04287896,-0.09243232;-0.2969747;-0.004117604,-0.09060137;-0.5910801;0.05503227,-0.09144121;-0.6194162;-0.007118776,-0.003560732;0.3998092;0.0101588,82.11859
-0;0;0,0.001051461;0.1998765;0.006948082,0.003420862;0.4997976;0.003829772,0.120069;0.3807963;-0.007288927,0.2288052;0.2205623;0.04272618,0.401555;0.04167846;0.06837896,-0.107963;0.3664118;-0.0252192,-0.1564776;0.1725912;-0.01627972,-0.1813497;-0.0757121;-0.03134093,0.0747116;0.006181599;-0.02792786,0.09954101;-0.2917115;-0.002566794,0.08769526;-0.5843667;0.06233807,0.0994521;-0.6126783;0.001272019,-0.06710871;0.002064493;-0.04349893,-0.08757097;-0.2946594;-0.004303832,-0.08491296;-0.5883385;0.05689702,-0.07949276;-0.5566864;-0.0412558,0.002525602;0.3998702;0.007534572,0;0;0,-0.002074863;0.1998254;0.008093998,-0.00402589;0.499761;0.007091282,0.1136472;0.3829466;-0.0092821,0.175393;0.1943928;0.01591632,0.2373177;-0.04741006;0.001892233,-0.1127846;0.3641472;-0.02445868,-0.1514435;0.167936;-0.02187548,-0.1809614;-0.08004722;-0.03340766,0.07369299;0.008810355;-0.02986168,0.09667581;-0.2892456;-0.004673714,0.08434954;-0.5817704;0.06072729,0.09746388;-0.6110865;0.001254901,-0.067536;-0.0005329499;-0.04287896,-0.09243232;-0.2969747;-0.004117604,-0.09060137;-0.5910801;0.05503227,-0.09144121;-0.6194162;-0.007118776,-0.003560732;0.3998092;0.0101588,82.12991
-0;0;0,0.001051461;0.1998765;0.006948082,0.003420862;0.4997976;0.003829772,0.120069;0.3807963;-0.007288927,0.2288052;0.2205623;0.04272618,0.401555;0.04167846;0.06837896,-0.107963;0.3664118;-0.0252192,-0.1564776;0.1725912;-0.01627972,-0.1813497;-0.0757121;-0.03134093,0.0747116;0.006181599;-0.02792786,0.09954101;-0.2917115;-0.002566794,0.08769526;-0.5843667;0.06233807,0.0994521;-0.6126783;0.001272019,-0.06710871;0.002064493;-0.04349893,-0.08757097;-0.2946594;-0.004303832,-0.08491296;-0.5883385;0.05689702,-0.07949276;-0.5566864;-0.0412558,0.002525602;0.3998702;0.007534572,0;0;0,-0.002074863;0.1998254;0.008093998,-0.00402589;0.499761;0.007091282,0.1136472;0.3829466;-0.0092821,0.175393;0.1943928;0.01591632,0.2373177;-0.04741006;0.001892233,-0.1127846;0.3641472;-0.02445868,-0.1514435;0.167936;-0.02187548,-0.1809614;-0.08004722;-0.03340766,0.07369299;0.008810355;-0.02986168,0.09667581;-0.2892456;-0.004673714,0.08434954;-0.5817704;0.06072729,0.09746388;-0.6110865;0.001254901,-0.067536;-0.0005329499;-0.04287896,-0.09243232;-0.2969747;-0.004117604,-0.09060137;-0.5910801;0.05503227,-0.09144121;-0.6194162;-0.007118776,-0.003560732;0.3998092;0.0101588,82.1411
-0;0;0,0.001051461;0.1998765;0.006948082,0.003420862;0.4997976;0.003829772,0.120069;0.3807963;-0.007288927,0.2288052;0.2205623;0.04272618,0.401555;0.04167846;0.06837896,-0.107963;0.3664118;-0.0252192,-0.1564776;0.1725912;-0.01627972,-0.1813497;-0.0757121;-0.03134093,0.0747116;0.006181599;-0.02792786,0.09954101;-0.2917115;-0.002566794,0.08769526;-0.5843667;0.06233807,0.0994521;-0.6126783;0.001272019,-0.06710871;0.002064493;-0.04349893,-0.08757097;-0.2946594;-0.004303832,-0.08491296;-0.5883385;0.05689702,-0.07949276;-0.5566864;-0.0412558,0.002525602;0.3998702;0.007534572,0;0;0,-0.002001829;0.1998256;0.008106899,-0.003908708;0.4997616;0.007075793,0.1137428;0.3829992;-0.009456354,0.1746155;0.1941699;0.01580266,0.2286789;-0.04931115;-0.001347438,-0.1126379;0.3640777;-0.02449228,-0.1511897;0.1678474;-0.02176861,-0.1807453;-0.08013417;-0.03324183,0.07368577;0.008719109;-0.02990624,0.09664462;-0.2893391;-0.004722755,0.08423141;-0.5818739;0.06061715,0.09719587;-0.6126115;0.003055356,-0.06758428;-0.0003854683;-0.04280441,-0.09156466;-0.2969926;-0.004736215,-0.09090982;-0.5910208;0.05482008,-0.08658982;-0.5589845;-0.04345831,-0.003444968;0.39981;0.01015033,82.15228
-0;0;0,0.001154644;0.199877;0.006916851,0.003678985;0.4997957;0.003710272,0.1202616;0.3807508;-0.00743861,0.2284729;0.2201594;0.04256845,0.4004122;0.04048645;0.06815176,-0.1077424;0.3663229;-0.02525603,-0.1562611;0.1725073;-0.01623284,-0.1812505;-0.07579598;-0.03110025,0.07472452;0.00613745;-0.02790301,0.09957248;-0.2917644;-0.002663422,0.08759542;-0.5843658;0.0624592,0.09921011;-0.6122066;0.0007670894,-0.06709419;0.002102732;-0.0435195,-0.08750337;-0.2946378;-0.004423436,-0.08514509;-0.5883269;0.05674168,-0.0797482;-0.5566805;-0.04141136,0.002733686;0.3998701;0.007449048,0;0;0,-0.002001829;0.1998256;0.008106899,-0.003908708;0.4997616;0.007075793,0.1137428;0.3829992;-0.009456354,0.1746155;0.1941699;0.01580266,0.2286789;-0.04931115;-0.001347438,-0.1126379;0.3640777;-0.02449228,-0.1511897;0.1678474;-0.02176861,-0.1807453;-0.08013417;-0.03324183,0.07368577;0.008719109;-0.02990624,0.09664462;-0.2893391;-0.004722755,0.08423141;-0.5818739;0.06061715,0.09719587;-0.6126115;0.003055356,-0.06758428;-0.0003854683;-0.04280441,-0.09156466;-0.2969926;-0.004736215,-0.09090982;-0.5910208;0.05482008,-0.08658982;-0.5589845;-0.04345831,-0.003444968;0.39981;0.01015033,82.17458
-0;0;0,0.001154644;0.199877;0.006916851,0.003678985;0.4997957;0.003710272,0.1202616;0.3807508;-0.00743861,0.2284729;0.2201594;0.04256845,0.4004122;0.04048645;0.06815176,-0.1077424;0.3663229;-0.02525603,-0.1562611;0.1725073;-0.01623284,-0.1812505;-0.07579598;-0.03110025,0.07472452;0.00613745;-0.02790301,0.09957248;-0.2917644;-0.002663422,0.08759542;-0.5843658;0.0624592,0.09921011;-0.6122066;0.0007670894,-0.06709419;0.002102732;-0.0435195,-0.08750337;-0.2946378;-0.004423436,-0.08514509;-0.5883269;0.05674168,-0.0797482;-0.5566805;-0.04141136,0.002733686;0.3998701;0.007449048,0;0;0,-0.002001829;0.1998256;0.008106899,-0.003908708;0.4997616;0.007075793,0.1137428;0.3829992;-0.009456354,0.1746155;0.1941699;0.01580266,0.2286789;-0.04931115;-0.001347438,-0.1126379;0.3640777;-0.02449228,-0.1511897;0.1678474;-0.02176861,-0.1807453;-0.08013417;-0.03324183,0.07368577;0.008719109;-0.02990624,0.09664462;-0.2893391;-0.004722755,0.08423141;-0.5818739;0.06061715,0.09719587;-0.6126115;0.003055356,-0.06758428;-0.0003854683;-0.04280441,-0.09156466;-0.2969926;-0.004736215,-0.09090982;-0.5910208;0.05482008,-0.08658982;-0.5589845;-0.04345831,-0.003444968;0.39981;0.01015033,82.18577
-0;0;0,0.001210834;0.1998768;0.006912849,0.0038252;0.4997944;0.00368026,0.1203994;0.3807936;-0.007351631,0.2281519;0.2198538;0.04252591,0.3995693;0.03963934;0.06780072,-0.1076487;0.3663701;-0.02524448,-0.1562661;0.1725939;-0.0159107,-0.1812224;-0.07570301;-0.03093781,0.07471979;0.006109191;-0.02792186,0.09972546;-0.2917786;-0.002670649,0.087544;-0.5843666;0.06247443,0.09887157;-0.6121521;0.0006594323,-0.06710882;0.002138207;-0.04349522,-0.08748829;-0.2946142;-0.004473113,-0.0851773;-0.5883856;0.05629689,-0.07976426;-0.5567252;-0.04185788,0.002851;0.3998694;0.007429884,0;0;0,-0.001828314;0.199826;0.008138288,-0.003332359;0.4997649;0.007166217,0.1140937;0.3831387;-0.01005313,0.1741202;0.1939931;0.01486158,0.217068;-0.05121481;-0.008129485,-0.1122089;0.3641062;-0.02441274,-0.1507435;0.1678723;-0.02170347,-0.1800839;-0.0801325;-0.03322506,0.07368805;0.008682085;-0.02991141,0.09680153;-0.2893612;-0.004692936,0.08426938;-0.5819188;0.06052239,0.09715813;-0.6126664;0.002957687,-0.0675905;-0.000364393;-0.04279476,-0.0916861;-0.2969676;-0.004769213,-0.09087148;-0.5909849;0.05483934,-0.0904376;-0.6190358;-0.007673509,-0.003001671;0.3998118;0.01021234,82.19695
-0;0;0,0.001210834;0.1998768;0.006912849,0.0038252;0.4997944;0.00368026,0.1203994;0.3807936;-0.007351631,0.2281519;0.2198538;0.04252591,0.3995693;0.03963934;0.06780072,-0.1076487;0.3663701;-0.02524448,-0.1562661;0.1725939;-0.0159107,-0.1812224;-0.07570301;-0.03093781,0.07471979;0.006109191;-0.02792186,0.09972546;-0.2917786;-0.002670649,0.087544;-0.5843666;0.06247443,0.09887157;-0.6121521;0.0006594323,-0.06710882;0.002138207;-0.04349522,-0.08748829;-0.2946142;-0.004473113,-0.0851773;-0.5883856;0.05629689,-0.07976426;-0.5567252;-0.04185788,0.002851;0.3998694;0.007429884,0;0;0,-0.001828314;0.199826;0.008138288,-0.003332359;0.4997649;0.007166217,0.1140937;0.3831387;-0.01005313,0.1741202;0.1939931;0.01486158,0.217068;-0.05121481;-0.008129485,-0.1122089;0.3641062;-0.02441274,-0.1507435;0.1678723;-0.02170347,-0.1800839;-0.0801325;-0.03322506,0.07368805;0.008682085;-0.02991141,0.09680153;-0.2893612;-0.004692936,0.08426938;-0.5819188;0.06052239,0.09715813;-0.6126664;0.002957687,-0.0675905;-0.000364393;-0.04279476,-0.0916861;-0.2969676;-0.004769213,-0.09087148;-0.5909849;0.05483934,-0.0904376;-0.6190358;-0.007673509,-0.003001671;0.3998118;0.01021234,82.21907
-0;0;0,0.001282797;0.1998768;0.006901057,0.004012408;0.4997932;0.003658988,0.120551;0.3809478;-0.007536637,0.2277332;0.2195748;0.0421698,0.3983986;0.03865984;0.0675295,-0.1075456;0.3664884;-0.02523175,-0.1560651;0.1726953;-0.01573971,-0.1812823;-0.07560147;-0.03032726,0.07473882;0.006091292;-0.02787482,0.09969977;-0.2918079;-0.002714625,0.0874984;-0.5844153;0.0623394,0.098952;-0.612176;0.0005163439,-0.0670986;0.002142366;-0.04351078,-0.08739876;-0.2946063;-0.004419658,-0.08501516;-0.5883251;0.05660135,-0.07965701;-0.5566658;-0.04155622,0.002998869;0.3998688;0.007412903,0;0;0,-0.001828314;0.199826;0.008138288,-0.003332359;0.4997649;0.007166217,0.1140937;0.3831387;-0.01005313,0.1741202;0.1939931;0.01486158,0.217068;-0.05121481;-0.008129485,-0.1122089;0.3641062;-0.02441274,-0.1507435;0.1678723;-0.02170347,-0.1800839;-0.0801325;-0.03322506,0.07368805;0.008682085;-0.02991141,0.09680153;-0.2893612;-0.004692936,0.08426938;-0.5819188;0.06052239,0.09715813;-0.6126664;0.002957687,-0.0675905;-0.000364393;-0.04279476,-0.0916861;-0.2969676;-0.004769213,-0.09087148;-0.5909849;0.05483934,-0.0904376;-0.6190358;-0.007673509,-0.003001671;0.3998118;0.01021234,82.23049
-0;0;0,0.001282797;0.1998768;0.006901057,0.004012408;0.4997932;0.003658988,0.120551;0.3809478;-0.007536637,0.2277332;0.2195748;0.0421698,0.3983986;0.03865984;0.0675295,-0.1075456;0.3664884;-0.02523175,-0.1560651;0.1726953;-0.01573971,-0.1812823;-0.07560147;-0.03032726,0.07473882;0.006091292;-0.02787482,0.09969977;-0.2918079;-0.002714625,0.0874984;-0.5844153;0.0623394,0.098952;-0.612176;0.0005163439,-0.0670986;0.002142366;-0.04351078,-0.08739876;-0.2946063;-0.004419658,-0.08501516;-0.5883251;0.05660135,-0.07965701;-0.5566658;-0.04155622,0.002998869;0.3998688;0.007412903,0;0;0,-0.001770195;0.1998302;0.008048183,-0.003342689;0.4997683;0.00687833,0.114102;0.3835782;-0.01075823,0.1733721;0.1941733;0.01399708,0.211483;-0.05156282;-0.0117192,-0.1120714;0.36398;-0.0248414,-0.1509624;0.1678186;-0.02197737,-0.1802932;-0.08019017;-0.03343787,0.07371498;0.008710961;-0.02983657,0.09657039;-0.2893718;-0.00485062,0.08398568;-0.5819225;0.06038496,0.09711604;-0.6119457;0.001870938,-0.06755199;-0.0003729509;-0.04285545,-0.09214503;-0.2969547;-0.00498132,-0.09113189;-0.5909234;0.05486308,-0.09025282;-0.6200666;-0.006256323,-0.002970922;0.3998172;0.009983447,82.24214
-0;0;0,0.001355277;0.1998786;0.006833068,0.004261796;0.4997906;0.003399476,0.120751;0.3810881;-0.007774344,0.2273432;0.2192643;0.0417347,0.3975395;0.03791344;0.06713332,-0.1074145;0.3665268;-0.0252687,-0.1559815;0.1727465;-0.01575826,-0.1812008;-0.07553758;-0.03055632,0.07472134;0.006075988;-0.02792497,0.09984931;-0.2918133;-0.002813989,0.08749587;-0.5844293;0.06217303,0.09898436;-0.6124982;0.0007462688,-0.06711128;0.002165644;-0.04349007,-0.08744851;-0.2945994;-0.004542351,-0.08478941;-0.588317;0.05647326,-0.07948935;-0.5566606;-0.04168692,0.003183683;0.3998699;0.007231784,0;0;0,-0.001770195;0.1998302;0.008048183,-0.003342689;0.4997683;0.00687833,0.114102;0.3835782;-0.01075823,0.1733721;0.1941733;0.01399708,0.211483;-0.05156282;-0.0117192,-0.1120714;0.36398;-0.0248414,-0.1509624;0.1678186;-0.02197737,-0.1802932;-0.08019017;-0.03343787,0.07371498;0.008710961;-0.02983657,0.09657039;-0.2893718;-0.00485062,0.08398568;-0.5819225;0.06038496,0.09711604;-0.6119457;0.001870938,-0.06755199;-0.0003729509;-0.04285545,-0.09214503;-0.2969547;-0.00498132,-0.09113189;-0.5909234;0.05486308,-0.09025282;-0.6200666;-0.006256323,-0.002970922;0.3998172;0.009983447,82.26364
-0;0;0,0.001355277;0.1998786;0.006833068,0.004261796;0.4997906;0.003399476,0.120751;0.3810881;-0.007774344,0.2273432;0.2192643;0.0417347,0.3975395;0.03791344;0.06713332,-0.1074145;0.3665268;-0.0252687,-0.1559815;0.1727465;-0.01575826,-0.1812008;-0.07553758;-0.03055632,0.07472134;0.006075988;-0.02792497,0.09984931;-0.2918133;-0.002813989,0.08749587;-0.5844293;0.06217303,0.09898436;-0.6124982;0.0007462688,-0.06711128;0.002165644;-0.04349007,-0.08744851;-0.2945994;-0.004542351,-0.08478941;-0.588317;0.05647326,-0.07948935;-0.5566606;-0.04168692,0.003183683;0.3998699;0.007231784,0;0;0,-0.001770195;0.1998302;0.008048183,-0.003342689;0.4997683;0.00687833,0.114102;0.3835782;-0.01075823,0.1733721;0.1941733;0.01399708,0.211483;-0.05156282;-0.0117192,-0.1120714;0.36398;-0.0248414,-0.1509624;0.1678186;-0.02197737,-0.1802932;-0.08019017;-0.03343787,0.07371498;0.008710961;-0.02983657,0.09657039;-0.2893718;-0.00485062,0.08398568;-0.5819225;0.06038496,0.09711604;-0.6119457;0.001870938,-0.06755199;-0.0003729509;-0.04285545,-0.09214503;-0.2969547;-0.00498132,-0.09113189;-0.5909234;0.05486308,-0.09025282;-0.6200666;-0.006256323,-0.002970922;0.3998172;0.009983447,82.27521
-0;0;0,0.001355277;0.1998786;0.006833068,0.004261796;0.4997906;0.003399476,0.120751;0.3810881;-0.007774344,0.2273432;0.2192643;0.0417347,0.3975395;0.03791344;0.06713332,-0.1074145;0.3665268;-0.0252687,-0.1559815;0.1727465;-0.01575826,-0.1812008;-0.07553758;-0.03055632,0.07472134;0.006075988;-0.02792497,0.09984931;-0.2918133;-0.002813989,0.08749587;-0.5844293;0.06217303,0.09898436;-0.6124982;0.0007462688,-0.06711128;0.002165644;-0.04349007,-0.08744851;-0.2945994;-0.004542351,-0.08478941;-0.588317;0.05647326,-0.07948935;-0.5566606;-0.04168692,0.003183683;0.3998699;0.007231784,0;0;0,-0.001667263;0.199835;0.007948243,-0.003147268;0.4997728;0.006561425,0.1142607;0.3837325;-0.01120606,0.172666;0.1940005;0.01309574,0.2060947;-0.05210699;-0.01542872,-0.1118297;0.3637362;-0.0250404,-0.151115;0.1676524;-0.02224068,-0.1804432;-0.08035871;-0.03365654,0.07379237;0.008513629;-0.02970193,0.09642695;-0.2895967;-0.004844343,0.08366321;-0.582171;0.06025071,0.09704163;-0.6125075;0.002224199,-0.06750693;-0.0002251616;-0.04292742,-0.09191857;-0.2968733;-0.005457781,-0.09177311;-0.5907656;0.05476917,-0.08780974;-0.558765;-0.04351773,-0.002796693;0.3998238;0.00973734,82.28654
-0;0;0,0.00143751;0.1998771;0.006860388,0.004379577;0.4997892;0.003463515,0.1209092;0.3812589;-0.007592588,0.226675;0.2188125;0.04164907,0.3963896;0.03697245;0.06677188,-0.1073462;0.3667368;-0.02527771,-0.1559222;0.1729813;-0.01532036,-0.1811872;-0.07527779;-0.03045727,0.07468905;0.006064658;-0.02801366,0.09958272;-0.291849;-0.002957927,0.08736401;-0.5844654;0.06205241,0.09846578;-0.6117037;-0.0004854947,-0.06711917;0.002193141;-0.04347651,-0.08779116;-0.2945637;-0.004642583,-0.08506844;-0.5882919;0.0563189,-0.07969777;-0.5566434;-0.04183596,0.003297886;0.399868;0.007283122,0;0;0,-0.001667263;0.199835;0.007948243,-0.003147268;0.4997728;0.006561425,0.1142607;0.3837325;-0.01120606,0.172666;0.1940005;0.01309574,0.2060947;-0.05210699;-0.01542872,-0.1118297;0.3637362;-0.0250404,-0.151115;0.1676524;-0.02224068,-0.1804432;-0.08035871;-0.03365654,0.07379237;0.008513629;-0.02970193,0.09642695;-0.2895967;-0.004844343,0.08366321;-0.582171;0.06025071,0.09704163;-0.6125075;0.002224199,-0.06750693;-0.0002251616;-0.04292742,-0.09191857;-0.2968733;-0.005457781,-0.09177311;-0.5907656;0.05476917,-0.08780974;-0.558765;-0.04351773,-0.002796693;0.3998238;0.00973734,82.3084
-0;0;0,0.00143751;0.1998771;0.006860388,0.004379577;0.4997892;0.003463515,0.1209092;0.3812589;-0.007592588,0.226675;0.2188125;0.04164907,0.3963896;0.03697245;0.06677188,-0.1073462;0.3667368;-0.02527771,-0.1559222;0.1729813;-0.01532036,-0.1811872;-0.07527779;-0.03045727,0.07468905;0.006064658;-0.02801366,0.09958272;-0.291849;-0.002957927,0.08736401;-0.5844654;0.06205241,0.09846578;-0.6117037;-0.0004854947,-0.06711917;0.002193141;-0.04347651,-0.08779116;-0.2945637;-0.004642583,-0.08506844;-0.5882919;0.0563189,-0.07969777;-0.5566434;-0.04183596,0.003297886;0.399868;0.007283122,0;0;0,-0.001667263;0.199835;0.007948243,-0.003147268;0.4997728;0.006561425,0.1142607;0.3837325;-0.01120606,0.172666;0.1940005;0.01309574,0.2060947;-0.05210699;-0.01542872,-0.1118297;0.3637362;-0.0250404,-0.151115;0.1676524;-0.02224068,-0.1804432;-0.08035871;-0.03365654,0.07379237;0.008513629;-0.02970193,0.09642695;-0.2895967;-0.004844343,0.08366321;-0.582171;0.06025071,0.09704163;-0.6125075;0.002224199,-0.06750693;-0.0002251616;-0.04292742,-0.09191857;-0.2968733;-0.005457781,-0.09177311;-0.5907656;0.05476917,-0.08780974;-0.558765;-0.04351773,-0.002796693;0.3998238;0.00973734,82.31981
-0;0;0,0.001419169;0.1998778;0.006845995,0.004308721;0.4997903;0.003440621,0.1207767;0.3808537;-0.007728539,0.2265841;0.2183803;0.04133459,0.3959133;0.03615133;0.06623849,-0.1073514;0.3665876;-0.02530877,-0.1560871;0.1728719;-0.01535676,-0.1815469;-0.07539634;-0.03000902,0.07471036;0.006007629;-0.02796908,0.09954382;-0.2919131;-0.002938,0.08731541;-0.5845113;0.06215234,0.09886391;-0.6114053;-0.0007280558,-0.06711811;0.002240455;-0.04347575,-0.08806398;-0.2944599;-0.004358687,-0.08504135;-0.5882283;0.05639504,-0.07967922;-0.5565808;-0.04176012,0.003244868;0.399869;0.007261226,0;0;0,-0.001258897;0.1998328;0.008079208,-0.001630719;0.4997763;0.007035613,0.1152672;0.3838108;-0.0114974,0.172177;0.1933775;0.01078348,0.1991481;-0.05307908;-0.02133643,-0.110722;0.3638194;-0.02478864,-0.1500519;0.1677416;-0.02221171,-0.1791889;-0.08028579;-0.03376415,0.07384322;0.0084226;-0.02960132,0.09665837;-0.2896936;-0.004980206,0.08375004;-0.5822507;0.06016384,0.09676109;-0.6121043;0.001392163,-0.06745287;-0.0001735691;-0.04301256,-0.09143975;-0.2969114;-0.005981747,-0.09181278;-0.5907032;0.05473287,-0.08791649;-0.5586904;-0.04355894,-0.0016875;0.3998224;0.01007205,82.34187
-0;0;0,0.001419169;0.1998778;0.006845995,0.004308721;0.4997903;0.003440621,0.1207767;0.3808537;-0.007728539,0.2265841;0.2183803;0.04133459,0.3959133;0.03615133;0.06623849,-0.1073514;0.3665876;-0.02530877,-0.1560871;0.1728719;-0.01535676,-0.1815469;-0.07539634;-0.03000902,0.07471036;0.006007629;-0.02796908,0.09954382;-0.2919131;-0.002938,0.08731541;-0.5845113;0.06215234,0.09886391;-0.6114053;-0.0007280558,-0.06711811;0.002240455;-0.04347575,-0.08806398;-0.2944599;-0.004358687,-0.08504135;-0.5882283;0.05639504,-0.07967922;-0.5565808;-0.04176012,0.003244868;0.399869;0.007261226,0;0;0,-0.001258897;0.1998328;0.008079208,-0.001630719;0.4997763;0.007035613,0.1152672;0.3838108;-0.0114974,0.172177;0.1933775;0.01078348,0.1991481;-0.05307908;-0.02133643,-0.110722;0.3638194;-0.02478864,-0.1500519;0.1677416;-0.02221171,-0.1791889;-0.08028579;-0.03376415,0.07384322;0.0084226;-0.02960132,0.09665837;-0.2896936;-0.004980206,0.08375004;-0.5822507;0.06016384,0.09676109;-0.6121043;0.001392163,-0.06745287;-0.0001735691;-0.04301256,-0.09143975;-0.2969114;-0.005981747,-0.09181278;-0.5907032;0.05473287,-0.08791649;-0.5586904;-0.04355894,-0.0016875;0.3998224;0.01007205,82.3535
-0;0;0,0.001395592;0.1998791;0.006813386,0.004217316;0.4997918;0.003363247,0.1206975;0.3808618;-0.007889578,0.2261585;0.2181561;0.04114971,0.3948868;0.03526761;0.06528619,-0.1074096;0.3666252;-0.02544177,-0.1562148;0.1729302;-0.01542678,-0.181621;-0.07534656;-0.03002802,0.07471541;0.006030625;-0.02795063,0.09960758;-0.2919003;-0.003100432,0.08720304;-0.5845128;0.06189226,0.09875415;-0.6115668;-0.0007915199,-0.0671012;0.002228133;-0.04350246,-0.08821606;-0.2944819;-0.004549753,-0.08524072;-0.588276;0.05608185,-0.07988697;-0.5566313;-0.04207323,0.00317713;0.3998708;0.007197217,0;0;0,-0.001258897;0.1998328;0.008079208,-0.001630719;0.4997763;0.007035613,0.1152672;0.3838108;-0.0114974,0.172177;0.1933775;0.01078348,0.1991481;-0.05307908;-0.02133643,-0.110722;0.3638194;-0.02478864,-0.1500519;0.1677416;-0.02221171,-0.1791889;-0.08028579;-0.03376415,0.07384322;0.0084226;-0.02960132,0.09665837;-0.2896936;-0.004980206,0.08375004;-0.5822507;0.06016384,0.09676109;-0.6121043;0.001392163,-0.06745287;-0.0001735691;-0.04301256,-0.09143975;-0.2969114;-0.005981747,-0.09181278;-0.5907032;0.05473287,-0.08791649;-0.5586904;-0.04355894,-0.0016875;0.3998224;0.01007205,82.36443
-0;0;0,0.001395592;0.1998791;0.006813386,0.004217316;0.4997918;0.003363247,0.1206975;0.3808618;-0.007889578,0.2261585;0.2181561;0.04114971,0.3948868;0.03526761;0.06528619,-0.1074096;0.3666252;-0.02544177,-0.1562148;0.1729302;-0.01542678,-0.181621;-0.07534656;-0.03002802,0.07471541;0.006030625;-0.02795063,0.09960758;-0.2919003;-0.003100432,0.08720304;-0.5845128;0.06189226,0.09875415;-0.6115668;-0.0007915199,-0.0671012;0.002228133;-0.04350246,-0.08821606;-0.2944819;-0.004549753,-0.08524072;-0.588276;0.05608185,-0.07988697;-0.5566313;-0.04207323,0.00317713;0.3998708;0.007197217,0;0;0,-0.001210242;0.199831;0.008129865,-0.001824425;0.4997743;0.00707877,0.1150661;0.3836819;-0.01197327,0.1703729;0.1925602;0.008365955,0.1952556;-0.0540389;-0.02434079,-0.1108018;0.3637069;-0.02465578,-0.1571597;0.1693939;-0.01499057,-0.1856509;-0.07868606;-0.02701416,0.07373317;0.008675429;-0.02980193,0.0955503;-0.2895225;-0.005266236,0.08268216;-0.5820785;0.05989048,0.09570266;-0.6119524;0.001148384,-0.06746288;-0.0003828852;-0.04299549,-0.09279014;-0.2970459;-0.006259177,-0.09308412;-0.590871;0.05429436,-0.08929619;-0.5588631;-0.0440008,-0.001774538;0.3998204;0.01011305,82.38673
-0;0;0,0.001496924;0.1998785;0.006806571,0.004494662;0.4997892;0.003328924,0.1209455;0.3810692;-0.007947659,0.2258763;0.2179691;0.0409182,0.3935291;0.03406292;0.06481496,-0.1072765;0.3668605;-0.02541465,-0.1561514;0.1731832;-0.01539874,-0.1811002;-0.07515512;-0.02973971,0.07470201;0.006035033;-0.02798549,0.09961934;-0.2919005;-0.003214832,0.08718463;-0.5844952;0.06185226,0.09878845;-0.6115357;-0.0008382984,-0.0671092;0.00222523;-0.04349027,-0.08859949;-0.2944369;-0.00437839,-0.08524619;-0.5882483;0.05614981,-0.07991288;-0.5566031;-0.04200649,0.003395955;0.3998692;0.007174103,0;0;0,-0.001210242;0.199831;0.008129865,-0.001824425;0.4997743;0.00707877,0.1150661;0.3836819;-0.01197327,0.1703729;0.1925602;0.008365955,0.1952556;-0.0540389;-0.02434079,-0.1108018;0.3637069;-0.02465578,-0.1571597;0.1693939;-0.01499057,-0.1856509;-0.07868606;-0.02701416,0.07373317;0.008675429;-0.02980193,0.0955503;-0.2895225;-0.005266236,0.08268216;-0.5820785;0.05989048,0.09570266;-0.6119524;0.001148384,-0.06746288;-0.0003828852;-0.04299549,-0.09279014;-0.2970459;-0.006259177,-0.09308412;-0.590871;0.05429436,-0.08929619;-0.5588631;-0.0440008,-0.001774538;0.3998204;0.01011305,82.40874
-0;0;0,0.001496924;0.1998785;0.006806571,0.004494662;0.4997892;0.003328924,0.1209455;0.3810692;-0.007947659,0.2258763;0.2179691;0.0409182,0.3935291;0.03406292;0.06481496,-0.1072765;0.3668605;-0.02541465,-0.1561514;0.1731832;-0.01539874,-0.1811002;-0.07515512;-0.02973971,0.07470201;0.006035033;-0.02798549,0.09961934;-0.2919005;-0.003214832,0.08718463;-0.5844952;0.06185226,0.09878845;-0.6115357;-0.0008382984,-0.0671092;0.00222523;-0.04349027,-0.08859949;-0.2944369;-0.00437839,-0.08524619;-0.5882483;0.05614981,-0.07991288;-0.5566031;-0.04200649,0.003395955;0.3998692;0.007174103,0;0;0,-0.001210242;0.199831;0.008129865,-0.001824425;0.4997743;0.00707877,0.1150661;0.3836819;-0.01197327,0.1703729;0.1925602;0.008365955,0.1952556;-0.0540389;-0.02434079,-0.1108018;0.3637069;-0.02465578,-0.1571597;0.1693939;-0.01499057,-0.1856509;-0.07868606;-0.02701416,0.07373317;0.008675429;-0.02980193,0.0955503;-0.2895225;-0.005266236,0.08268216;-0.5820785;0.05989048,0.09570266;-0.6119524;0.001148384,-0.06746288;-0.0003828852;-0.04299549,-0.09279014;-0.2970459;-0.006259177,-0.09308412;-0.590871;0.05429436,-0.08929619;-0.5588631;-0.0440008,-0.001774538;0.3998204;0.01011305,82.42016
-0;0;0,0.0014793;0.1998795;0.006781307,0.004436507;0.4997904;0.003282184,0.120929;0.3814114;-0.008185768,0.2252219;0.2178377;0.04046232,0.3920264;0.03310487;0.06391481,-0.107316;0.3668334;-0.02544655,-0.1562527;0.1731791;-0.01528702,-0.1811512;-0.07515165;-0.02984386,0.07465836;0.006037202;-0.02810125,0.0995217;-0.2919186;-0.003521753,0.0868925;-0.5844393;0.06183976,0.09873003;-0.6115343;-0.0007400811,-0.06720586;0.002209344;-0.04334156,-0.08880822;-0.2944866;-0.004548583,-0.08556546;-0.588302;0.05596591,-0.08030508;-0.5566546;-0.04219474,0.003350913;0.3998705;0.007132333,0;0;0,-0.001031373;0.1998289;0.008207365,-0.001516165;0.4997729;0.007252907,0.1152871;0.3837216;-0.01219903,0.1703535;0.1924635;0.0074987,0.1873087;-0.05425447;-0.0291451,-0.110502;0.3636229;-0.02448089,-0.1501117;0.1676007;-0.02196003,-0.179411;-0.0804022;-0.03362707,0.07380301;0.00864133;-0.02963855,0.09516608;-0.2896066;-0.005311554,0.08224507;-0.5821345;0.05996073,0.09591736;-0.6138735;0.003998198,-0.06741215;-0.0003441878;-0.04307533,-0.09314471;-0.2969702;-0.006321315,-0.09333831;-0.5907593;0.05440731,-0.08964976;-0.5587441;-0.04389296,-0.001490059;0.3998179;0.01025131,82.44263
-0;0;0,0.001457018;0.1998804;0.006759403,0.004355307;0.4997905;0.003173752,0.1208949;0.3815801;-0.008322004,0.2242918;0.2173164;0.03991197,0.3907887;0.03232937;0.06354574,-0.1073717;0.3667935;-0.02546153,-0.1562688;0.1731291;-0.01530558,-0.1811107;-0.07520412;-0.02991737,0.07463793;0.006045871;-0.02815362,0.09945235;-0.2919099;-0.003523935,0.08734601;-0.584536;0.06146371,0.09804604;-0.6121785;-0.0006422624,-0.06722641;0.002208165;-0.04330974,-0.08918037;-0.2944607;-0.004507348,-0.08563834;-0.5882899;0.05592324,-0.08042641;-0.55662;-0.04224416,0.003299184;0.3998717;0.007062139,0;0;0,-0.001031373;0.1998289;0.008207365,-0.001516165;0.4997729;0.007252907,0.1152871;0.3837216;-0.01219903,0.1703535;0.1924635;0.0074987,0.1873087;-0.05425447;-0.0291451,-0.110502;0.3636229;-0.02448089,-0.1501117;0.1676007;-0.02196003,-0.179411;-0.0804022;-0.03362707,0.07380301;0.00864133;-0.02963855,0.09516608;-0.2896066;-0.005311554,0.08224507;-0.5821345;0.05996073,0.09591736;-0.6138735;0.003998198,-0.06741215;-0.0003441878;-0.04307533,-0.09314471;-0.2969702;-0.006321315,-0.09333831;-0.5907593;0.05440731,-0.08964976;-0.5587441;-0.04389296,-0.001490059;0.3998179;0.01025131,82.46479
-0;0;0,0.001457018;0.1998804;0.006759403,0.004355307;0.4997905;0.003173752,0.1208949;0.3815801;-0.008322004,0.2242918;0.2173164;0.03991197,0.3907887;0.03232937;0.06354574,-0.1073717;0.3667935;-0.02546153,-0.1562688;0.1731291;-0.01530558,-0.1811107;-0.07520412;-0.02991737,0.07463793;0.006045871;-0.02815362,0.09945235;-0.2919099;-0.003523935,0.08734601;-0.584536;0.06146371,0.09804604;-0.6121785;-0.0006422624,-0.06722641;0.002208165;-0.04330974,-0.08918037;-0.2944607;-0.004507348,-0.08563834;-0.5882899;0.05592324,-0.08042641;-0.55662;-0.04224416,0.003299184;0.3998717;0.007062139,0;0;0,-0.001031373;0.1998289;0.008207365,-0.001516165;0.4997729;0.007252907,0.1152871;0.3837216;-0.01219903,0.1703535;0.1924635;0.0074987,0.1873087;-0.05425447;-0.0291451,-0.110502;0.3636229;-0.02448089,-0.1501117;0.1676007;-0.02196003,-0.179411;-0.0804022;-0.03362707,0.07380301;0.00864133;-0.02963855,0.09516608;-0.2896066;-0.005311554,0.08224507;-0.5821345;0.05996073,0.09591736;-0.6138735;0.003998198,-0.06741215;-0.0003441878;-0.04307533,-0.09314471;-0.2969702;-0.006321315,-0.09333831;-0.5907593;0.05440731,-0.08964976;-0.5587441;-0.04389296,-0.001490059;0.3998179;0.01025131,82.4761
-0;0;0,0.001457018;0.1998804;0.006759403,0.004355307;0.4997905;0.003173752,0.1208949;0.3815801;-0.008322004,0.2242918;0.2173164;0.03991197,0.3907887;0.03232937;0.06354574,-0.1073717;0.3667935;-0.02546153,-0.1562688;0.1731291;-0.01530558,-0.1811107;-0.07520412;-0.02991737,0.07463793;0.006045871;-0.02815362,0.09945235;-0.2919099;-0.003523935,0.08734601;-0.584536;0.06146371,0.09804604;-0.6121785;-0.0006422624,-0.06722641;0.002208165;-0.04330974,-0.08918037;-0.2944607;-0.004507348,-0.08563834;-0.5882899;0.05592324,-0.08042641;-0.55662;-0.04224416,0.003299184;0.3998717;0.007062139,0;0;0,-0.0007626929;0.1998292;0.008229551,-0.0009410374;0.4997738;0.007279758,0.1157621;0.3839356;-0.01240794,0.1702064;0.1924713;0.007014943,0.1861529;-0.05413915;-0.03078715,-0.110222;0.3638239;-0.02400427,-0.1573783;0.1696841;-0.01472998,-0.1855793;-0.0784149;-0.02704188,0.07381433;0.008671209;-0.0296016,0.09462003;-0.289609;-0.005187239,0.08178494;-0.5821804;0.0599064,0.09527414;-0.61383;0.003769111,-0.06741671;-0.0003391559;-0.04306822,-0.09258401;-0.2971086;-0.007088639,-0.09430882;-0.5908026;0.05407385,-0.09079007;-0.5587823;-0.04423355,-0.0009997345;0.3998186;0.01027238,82.48765
-0;0;0,0.001476608;0.1998795;0.00678247,0.004395476;0.4997899;0.003232288,0.1209186;0.3815684;-0.00833773,0.2238617;0.2169233;0.03956547,0.3897378;0.03128055;0.06241041,-0.1073394;0.3667703;-0.02538978,-0.1560425;0.1730537;-0.0152952,-0.1811083;-0.07525137;-0.03000203,0.07458274;0.00605994;-0.02829647,0.09942181;-0.2918808;-0.003510021,0.08718059;-0.5844887;0.06153413,0.09752903;-0.6114144;-0.001516245,-0.06726237;0.002205508;-0.043254,-0.089063;-0.29454;-0.004954688,-0.08587122;-0.5883325;0.05567367,-0.08068381;-0.556658;-0.04249594,0.003332561;0.3998706;0.007107485,0;0;0,-0.0007626929;0.1998292;0.008229551,-0.0009410374;0.4997738;0.007279758,0.1157621;0.3839356;-0.01240794,0.1702064;0.1924713;0.007014943,0.1861529;-0.05413915;-0.03078715,-0.110222;0.3638239;-0.02400427,-0.1573783;0.1696841;-0.01472998,-0.1855793;-0.0784149;-0.02704188,0.07381433;0.008671209;-0.0296016,0.09462003;-0.289609;-0.005187239,0.08178494;-0.5821804;0.0599064,0.09527414;-0.61383;0.003769111,-0.06741671;-0.0003391559;-0.04306822,-0.09258401;-0.2971086;-0.007088639,-0.09430882;-0.5908026;0.05407385,-0.09079007;-0.5587823;-0.04423355,-0.0009997345;0.3998186;0.01027238,82.50928
-0;0;0,0.001476608;0.1998795;0.00678247,0.004395476;0.4997899;0.003232288,0.1209186;0.3815684;-0.00833773,0.2238617;0.2169233;0.03956547,0.3897378;0.03128055;0.06241041,-0.1073394;0.3667703;-0.02538978,-0.1560425;0.1730537;-0.0152952,-0.1811083;-0.07525137;-0.03000203,0.07458274;0.00605994;-0.02829647,0.09942181;-0.2918808;-0.003510021,0.08718059;-0.5844887;0.06153413,0.09752903;-0.6114144;-0.001516245,-0.06726237;0.002205508;-0.043254,-0.089063;-0.29454;-0.004954688,-0.08587122;-0.5883325;0.05567367,-0.08068381;-0.556658;-0.04249594,0.003332561;0.3998706;0.007107485,0;0;0,-0.0007626929;0.1998292;0.008229551,-0.0009410374;0.4997738;0.007279758,0.1157621;0.3839356;-0.01240794,0.1702064;0.1924713;0.007014943,0.1861529;-0.05413915;-0.03078715,-0.110222;0.3638239;-0.02400427,-0.1573783;0.1696841;-0.01472998,-0.1855793;-0.0784149;-0.02704188,0.07381433;0.008671209;-0.0296016,0.09462003;-0.289609;-0.005187239,0.08178494;-0.5821804;0.0599064,0.09527414;-0.61383;0.003769111,-0.06741671;-0.0003391559;-0.04306822,-0.09258401;-0.2971086;-0.007088639,-0.09430882;-0.5908026;0.05407385,-0.09079007;-0.5587823;-0.04423355,-0.0009997345;0.3998186;0.01027238,82.52096
-0;0;0,0.001493043;0.1998787;0.006801513,0.004448066;0.4997899;0.003326528,0.1209002;0.3813359;-0.008442178,0.2234988;0.2164924;0.03951767,0.3889884;0.03048889;0.06223103,-0.1073133;0.3668473;-0.02536056,-0.1559037;0.1731019;-0.0152773,-0.1812436;-0.07517414;-0.03000549,0.07456163;0.006020566;-0.02836048,0.09937496;-0.2919146;-0.003481239,0.08708274;-0.5845261;0.06153727,0.09759466;-0.6121008;-0.0006853417,-0.06727335;0.002216809;-0.04323635,-0.08881431;-0.2945246;-0.004758555,-0.08529228;-0.5884569;0.05516948,-0.08015919;-0.5567562;-0.04300785,0.003372439;0.3998696;0.007169445,0;0;0,-0.000402366;0.1998269;0.008310651,0.000186019;0.4997717;0.007516474,0.1165395;0.3839623;-0.01265689,0.1706693;0.1922863;0.005516585,0.1857232;-0.05437988;-0.03228782,-0.1095957;0.3643616;-0.02365411,-0.1569733;0.1702606;-0.01470083,-0.1852207;-0.07779899;-0.02768286,0.07380623;0.008614046;-0.02963847,0.09445977;-0.2896741;-0.005191853,0.08167838;-0.5822407;0.05993412,0.09501028;-0.6140544;0.003998734,-0.06743956;-0.0002905475;-0.0430328,-0.09264144;-0.2970664;-0.007130541,-0.09423915;-0.5907623;0.05402665,-0.09085175;-0.5587298;-0.04428761,-0.0001427856;0.3998153;0.01045009,82.54288
-0;0;0,0.001493043;0.1998787;0.006801513,0.004448066;0.4997899;0.003326528,0.1209002;0.3813359;-0.008442178,0.2234988;0.2164924;0.03951767,0.3889884;0.03048889;0.06223103,-0.1073133;0.3668473;-0.02536056,-0.1559037;0.1731019;-0.0152773,-0.1812436;-0.07517414;-0.03000549,0.07456163;0.006020566;-0.02836048,0.09937496;-0.2919146;-0.003481239,0.08708274;-0.5845261;0.06153727,0.09759466;-0.6121008;-0.0006853417,-0.06727335;0.002216809;-0.04323635,-0.08881431;-0.2945246;-0.004758555,-0.08529228;-0.5884569;0.05516948,-0.08015919;-0.5567562;-0.04300785,0.003372439;0.3998696;0.007169445,0;0;0,-0.000402366;0.1998269;0.008310651,0.000186019;0.4997717;0.007516474,0.1165395;0.3839623;-0.01265689,0.1706693;0.1922863;0.005516585,0.1857232;-0.05437988;-0.03228782,-0.1095957;0.3643616;-0.02365411,-0.1569733;0.1702606;-0.01470083,-0.1852207;-0.07779899;-0.02768286,0.07380623;0.008614046;-0.02963847,0.09445977;-0.2896741;-0.005191853,0.08167838;-0.5822407;0.05993412,0.09501028;-0.6140544;0.003998734,-0.06743956;-0.0002905475;-0.0430328,-0.09264144;-0.2970664;-0.007130541,-0.09423915;-0.5907623;0.05402665,-0.09085175;-0.5587298;-0.04428761,-0.0001427856;0.3998153;0.01045009,82.55436
-0;0;0,0.001487412;0.1998795;0.006781657,0.004394861;0.49979;0.003226948,0.1208598;0.3812668;-0.008491673,0.2229848;0.2160774;0.03928848,0.3873238;0.02898099;0.06137096,-0.1073387;0.3667791;-0.02538026,-0.1559811;0.1730463;-0.01530486,-0.1815016;-0.07521014;-0.03005018,0.07455666;0.006021176;-0.02837338,0.09929712;-0.2919279;-0.003588881,0.08712314;-0.5845277;0.06150448,0.09777935;-0.6125305;-0.0001559593,-0.06727512;0.002215483;-0.04323367,-0.08882716;-0.2945348;-0.004830774,-0.08531692;-0.5884804;0.05503318,-0.08020282;-0.5567833;-0.04314446,0.003340626;0.3998706;0.007101051,0;0;0,-0.000402366;0.1998269;0.008310651,0.000186019;0.4997717;0.007516474,0.1165395;0.3839623;-0.01265689,0.1706693;0.1922863;0.005516585,0.1857232;-0.05437988;-0.03228782,-0.1095957;0.3643616;-0.02365411,-0.1569733;0.1702606;-0.01470083,-0.1852207;-0.07779899;-0.02768286,0.07380623;0.008614046;-0.02963847,0.09445977;-0.2896741;-0.005191853,0.08167838;-0.5822407;0.05993412,0.09501028;-0.6140544;0.003998734,-0.06743956;-0.0002905475;-0.0430328,-0.09264144;-0.2970664;-0.007130541,-0.09423915;-0.5907623;0.05402665,-0.09085175;-0.5587298;-0.04428761,-0.0001427856;0.3998153;0.01045009,82.56564
-0;0;0,0.001487412;0.1998795;0.006781657,0.004394861;0.49979;0.003226948,0.1208598;0.3812668;-0.008491673,0.2229848;0.2160774;0.03928848,0.3873238;0.02898099;0.06137096,-0.1073387;0.3667791;-0.02538026,-0.1559811;0.1730463;-0.01530486,-0.1815016;-0.07521014;-0.03005018,0.07455666;0.006021176;-0.02837338,0.09929712;-0.2919279;-0.003588881,0.08712314;-0.5845277;0.06150448,0.09777935;-0.6125305;-0.0001559593,-0.06727512;0.002215483;-0.04323367,-0.08882716;-0.2945348;-0.004830774,-0.08531692;-0.5884804;0.05503318,-0.08020282;-0.5567833;-0.04314446,0.003340626;0.3998706;0.007101051,0;0;0,-0.0001575577;0.1998246;0.00837202,0.000901086;0.4997689;0.00772241,0.1170101;0.3837376;-0.01278535,0.1705335;0.1918509;0.004956612,0.1818376;-0.05473858;-0.03461374,-0.1090715;0.3643017;-0.02334435,-0.1566922;0.1702512;-0.0145885,-0.1851166;-0.07778256;-0.02767726,0.07379235;0.008565982;-0.02968693,0.09428976;-0.289729;-0.005193051,0.08157108;-0.5823023;0.05991526,0.09477849;-0.6138289;0.003532771,-0.0674663;-0.0002443861;-0.04299114,-0.09268906;-0.2970234;-0.007129751,-0.09437634;-0.5907308;0.05396964,-0.09111343;-0.5586839;-0.04435146,0.0004133163;0.3998114;0.01059866,82.57677
-0;0;0,0.001710309;0.1998765;0.006815813,0.004727916;0.499786;0.003267889,0.1210291;0.3807456;-0.008587206,0.2232152;0.2155166;0.03892477,0.3865275;0.02749874;0.06079637,-0.1070781;0.366797;-0.02533138,-0.1557082;0.1730597;-0.01528261,-0.1813145;-0.07518739;-0.03003682,0.07452453;0.005990156;-0.02846422,0.09955444;-0.2919191;-0.003492316,0.08738517;-0.5845257;0.06157146,0.09806422;-0.6125515;-5.590916E-05,-0.06734733;0.002232488;-0.04312022,-0.088521;-0.2945445;-0.004713532,-0.08497621;-0.5885296;0.05495416,-0.07985946;-0.5568304;-0.04322372,0.003610803;0.3998672;0.007138891,0;0;0,-0.0001575577;0.1998246;0.00837202,0.000901086;0.4997689;0.00772241,0.1170101;0.3837376;-0.01278535,0.1705335;0.1918509;0.004956612,0.1818376;-0.05473858;-0.03461374,-0.1090715;0.3643017;-0.02334435,-0.1566922;0.1702512;-0.0145885,-0.1851166;-0.07778256;-0.02767726,0.07379235;0.008565982;-0.02968693,0.09428976;-0.289729;-0.005193051,0.08157108;-0.5823023;0.05991526,0.09477849;-0.6138289;0.003532771,-0.0674663;-0.0002443861;-0.04299114,-0.09268906;-0.2970234;-0.007129751,-0.09437634;-0.5907308;0.05396964,-0.09111343;-0.5586839;-0.04435146,0.0004133163;0.3998114;0.01059866,82.59882
-0;0;0,0.001710309;0.1998765;0.006815813,0.004727916;0.499786;0.003267889,0.1210291;0.3807456;-0.008587206,0.2232152;0.2155166;0.03892477,0.3865275;0.02749874;0.06079637,-0.1070781;0.366797;-0.02533138,-0.1557082;0.1730597;-0.01528261,-0.1813145;-0.07518739;-0.03003682,0.07452453;0.005990156;-0.02846422,0.09955444;-0.2919191;-0.003492316,0.08738517;-0.5845257;0.06157146,0.09806422;-0.6125515;-5.590916E-05,-0.06734733;0.002232488;-0.04312022,-0.088521;-0.2945445;-0.004713532,-0.08497621;-0.5885296;0.05495416,-0.07985946;-0.5568304;-0.04322372,0.003610803;0.3998672;0.007138891,0;0;0,-0.0001575577;0.1998246;0.00837202,0.000901086;0.4997689;0.00772241,0.1170101;0.3837376;-0.01278535,0.1705335;0.1918509;0.004956612,0.1818376;-0.05473858;-0.03461374,-0.1090715;0.3643017;-0.02334435,-0.1566922;0.1702512;-0.0145885,-0.1851166;-0.07778256;-0.02767726,0.07379235;0.008565982;-0.02968693,0.09428976;-0.289729;-0.005193051,0.08157108;-0.5823023;0.05991526,0.09477849;-0.6138289;0.003532771,-0.0674663;-0.0002443861;-0.04299114,-0.09268906;-0.2970234;-0.007129751,-0.09437634;-0.5907308;0.05396964,-0.09111343;-0.5586839;-0.04435146,0.0004133163;0.3998114;0.01059866,82.61005
-0;0;0,0.001710309;0.1998765;0.006815813,0.004727916;0.499786;0.003267889,0.1210291;0.3807456;-0.008587206,0.2232152;0.2155166;0.03892477,0.3865275;0.02749874;0.06079637,-0.1070781;0.366797;-0.02533138,-0.1557082;0.1730597;-0.01528261,-0.1813145;-0.07518739;-0.03003682,0.07452453;0.005990156;-0.02846422,0.09955444;-0.2919191;-0.003492316,0.08738517;-0.5845257;0.06157146,0.09806422;-0.6125515;-5.590916E-05,-0.06734733;0.002232488;-0.04312022,-0.088521;-0.2945445;-0.004713532,-0.08497621;-0.5885296;0.05495416,-0.07985946;-0.5568304;-0.04322372,0.003610803;0.3998672;0.007138891,0;0;0,-8.217696E-05;0.1998203;0.008474781,0.0009409362;0.499765;0.007958457,0.117023;0.383662;-0.01280761,0.1696886;0.1914929;0.004437995,0.1824344;-0.05493444;-0.03570043,-0.1090732;0.3643099;-0.02295093,-0.1496909;0.1684832;-0.0215,-0.1793021;-0.07944022;-0.03403639,0.07380491;0.008517878;-0.02966951,0.09387068;-0.2897843;-0.004907835,0.08098924;-0.582316;0.06035563,0.09430572;-0.613729;0.003834918,-0.06743949;-0.0001772293;-0.04303352,-0.09362189;-0.2967887;-0.006480452,-0.09443785;-0.5904225;0.05498911,-0.09135137;-0.5583645;-0.04333973,0.0004787559;0.3998062;0.01078897,82.62126
-0;0;0,0.001669135;0.1998745;0.006884211,0.004653237;0.4997892;0.003620065,0.1209902;0.3809184;-0.008499729,0.2223938;0.2150803;0.03856438,0.3851143;0.02654015;0.06035086,-0.1071126;0.3668773;-0.02524867,-0.155766;0.1731442;-0.0152312,-0.1810767;-0.07514434;-0.02979704,0.07449029;0.006011374;-0.02854924,0.09942053;-0.2918981;-0.00347987,0.0871767;-0.5845079;0.0615555,0.09801196;-0.61269;0.0001540221,-0.06736936;0.002222735;-0.04308629,-0.0885732;-0.2945571;-0.004718147,-0.08495917;-0.5885302;0.0550044,-0.07984912;-0.5568206;-0.04317578,0.003561123;0.399865;0.0073571,0;0;0,-8.217696E-05;0.1998203;0.008474781,0.0009409362;0.499765;0.007958457,0.117023;0.383662;-0.01280761,0.1696886;0.1914929;0.004437995,0.1824344;-0.05493444;-0.03570043,-0.1090732;0.3643099;-0.02295093,-0.1496909;0.1684832;-0.0215,-0.1793021;-0.07944022;-0.03403639,0.07380491;0.008517878;-0.02966951,0.09387068;-0.2897843;-0.004907835,0.08098924;-0.582316;0.06035563,0.09430572;-0.613729;0.003834918,-0.06743949;-0.0001772293;-0.04303352,-0.09362189;-0.2967887;-0.006480452,-0.09443785;-0.5904225;0.05498911,-0.09135137;-0.5583645;-0.04333973,0.0004787559;0.3998062;0.01078897,82.64365
-0;0;0,0.001669135;0.1998745;0.006884211,0.004653237;0.4997892;0.003620065,0.1209902;0.3809184;-0.008499729,0.2223938;0.2150803;0.03856438,0.3851143;0.02654015;0.06035086,-0.1071126;0.3668773;-0.02524867,-0.155766;0.1731442;-0.0152312,-0.1810767;-0.07514434;-0.02979704,0.07449029;0.006011374;-0.02854924,0.09942053;-0.2918981;-0.00347987,0.0871767;-0.5845079;0.0615555,0.09801196;-0.61269;0.0001540221,-0.06736936;0.002222735;-0.04308629,-0.0885732;-0.2945571;-0.004718147,-0.08495917;-0.5885302;0.0550044,-0.07984912;-0.5568206;-0.04317578,0.003561123;0.399865;0.0073571,0;0;0,-8.217696E-05;0.1998203;0.008474781,0.0009409362;0.499765;0.007958457,0.117023;0.383662;-0.01280761,0.1696886;0.1914929;0.004437995,0.1824344;-0.05493444;-0.03570043,-0.1090732;0.3643099;-0.02295093,-0.1496909;0.1684832;-0.0215,-0.1793021;-0.07944022;-0.03403639,0.07380491;0.008517878;-0.02966951,0.09387068;-0.2897843;-0.004907835,0.08098924;-0.582316;0.06035563,0.09430572;-0.613729;0.003834918,-0.06743949;-0.0001772293;-0.04303352,-0.09362189;-0.2967887;-0.006480452,-0.09443785;-0.5904225;0.05498911,-0.09135137;-0.5583645;-0.04333973,0.0004787559;0.3998062;0.01078897,82.6547
-0;0;0,0.001654287;0.1998741;0.006899466,0.004570544;0.4997901;0.003691118,0.1209622;0.3811091;-0.008482805,0.2217295;0.2147788;0.03820952,0.3836059;0.02546746;0.05959354,-0.10724;0.3669679;-0.02504003,-0.1559162;0.1732276;-0.01527688,-0.1815928;-0.0750185;-0.02992536,0.0744824;0.006008767;-0.02857037,0.09932218;-0.291912;-0.003546095,0.08716216;-0.5845146;0.06153718,0.09796942;-0.6128092;0.0002741851,-0.06739272;0.002237392;-0.04304897,-0.08873473;-0.2945465;-0.004788503,-0.08495536;-0.5884486;0.05527165,-0.07992553;-0.5567437;-0.0429118,0.003507114;0.3998649;0.007407951,0;0;0,0.0001395731;0.1998163;0.008568552,0.001603749;0.4997599;0.008203952,0.1174492;0.3836486;-0.0130174,0.1700043;0.1914097;0.003780235,0.1815632;-0.05494651;-0.03714683,-0.1088146;0.3651787;-0.02286718,-0.1498813;0.1694453;-0.02146452,-0.1798678;-0.07843436;-0.03397334,0.07377204;0.008359889;-0.02979593,0.09356752;-0.2899366;-0.004749419,0.08082328;-0.5824312;0.0607066,0.09403004;-0.6141201;0.004559416,-0.06751785;-7.2766E-05;-0.04291077,-0.09369245;-0.2966659;-0.006203886,-0.09481821;-0.5903028;0.05524628,-0.09182596;-0.5582234;-0.04308938,0.0009862677;0.3998001;0.01097263,82.67998
-0;0;0,0.001626762;0.1998733;0.006930028,0.004406753;0.499792;0.003819636,0.1208701;0.3812827;-0.008503133,0.220742;0.2142503;0.03760305,0.3820649;0.0244429;0.05877029,-0.1073129;0.3669132;-0.02500916,-0.1558558;0.1731364;-0.01530674,-0.181364;-0.07511891;-0.03009318,0.07444867;0.005992449;-0.02866159,0.09932912;-0.2919297;-0.003693936,0.08709437;-0.5845044;0.06150064,0.09762979;-0.6125709;-9.983778E-05,-0.06740529;0.002245301;-0.04302889,-0.08917844;-0.2944808;-0.004564006,-0.08507077;-0.5884037;0.05537313,-0.080068;-0.5567091;-0.04280978,0.003401788;0.3998646;0.00749423,0;0;0,0.0001395731;0.1998163;0.008568552,0.001603749;0.4997599;0.008203952,0.1174492;0.3836486;-0.0130174,0.1700043;0.1914097;0.003780235,0.1815632;-0.05494651;-0.03714683,-0.1088146;0.3651787;-0.02286718,-0.1498813;0.1694453;-0.02146452,-0.1798678;-0.07843436;-0.03397334,0.07377204;0.008359889;-0.02979593,0.09356752;-0.2899366;-0.004749419,0.08082328;-0.5824312;0.0607066,0.09403004;-0.6141201;0.004559416,-0.06751785;-7.2766E-05;-0.04291077,-0.09369245;-0.2966659;-0.006203886,-0.09481821;-0.5903028;0.05524628,-0.09182596;-0.5582234;-0.04308938,0.0009862677;0.3998001;0.01097263,82.69916
-0;0;0,0.001626762;0.1998733;0.006930028,0.004406753;0.499792;0.003819636,0.1208701;0.3812827;-0.008503133,0.220742;0.2142503;0.03760305,0.3820649;0.0244429;0.05877029,-0.1073129;0.3669132;-0.02500916,-0.1558558;0.1731364;-0.01530674,-0.181364;-0.07511891;-0.03009318,0.07444867;0.005992449;-0.02866159,0.09932912;-0.2919297;-0.003693936,0.08709437;-0.5845044;0.06150064,0.09762979;-0.6125709;-9.983778E-05,-0.06740529;0.002245301;-0.04302889,-0.08917844;-0.2944808;-0.004564006,-0.08507077;-0.5884037;0.05537313,-0.080068;-0.5567091;-0.04280978,0.003401788;0.3998646;0.00749423,0;0;0,0.0001395731;0.1998163;0.008568552,0.001603749;0.4997599;0.008203952,0.1174492;0.3836486;-0.0130174,0.1700043;0.1914097;0.003780235,0.1815632;-0.05494651;-0.03714683,-0.1088146;0.3651787;-0.02286718,-0.1498813;0.1694453;-0.02146452,-0.1798678;-0.07843436;-0.03397334,0.07377204;0.008359889;-0.02979593,0.09356752;-0.2899366;-0.004749419,0.08082328;-0.5824312;0.0607066,0.09403004;-0.6141201;0.004559416,-0.06751785;-7.2766E-05;-0.04291077,-0.09369245;-0.2966659;-0.006203886,-0.09481821;-0.5903028;0.05524628,-0.09182596;-0.5582234;-0.04308938,0.0009862677;0.3998001;0.01097263,82.71062
-0;0;0,0.001694114;0.1998715;0.006964145,0.00451539;0.4997901;0.003879349,0.1209577;0.3812292;-0.008489555,0.2202627;0.2137969;0.03739029,0.38047;0.02299233;0.05805986,-0.1072142;0.3669146;-0.02494908,-0.1555624;0.1730855;-0.01532057,-0.1814676;-0.07509431;-0.03067349,0.07441784;0.00594175;-0.02875207,0.09938665;-0.2919948;-0.004045734,0.08695798;-0.584448;0.06165518,0.09696279;-0.6114821;-0.001318283,-0.06742392;0.002281171;-0.0429978,-0.08906505;-0.2945627;-0.005375978,-0.08521353;-0.5883554;0.05521268,-0.08022802;-0.5566575;-0.04297173,0.003503151;0.3998625;0.007548725,0;0;0,0.0002308203;0.1998141;0.008617065,0.001928302;0.4997569;0.008372894,0.1176625;0.383409;-0.0128673,0.1696553;0.190999;0.003719947,0.1810002;-0.05539517;-0.03703798,-0.1085461;0.3650586;-0.02272176,-0.1499213;0.1693893;-0.02145291,-0.1801459;-0.07845642;-0.03406188,0.07375044;0.008284602;-0.02987036,0.09358747;-0.2900142;-0.004883558,0.08089812;-0.5824804;0.0607099,0.09526701;-0.6141548;0.004827496,-0.06753538;-1.731652E-05;-0.04288324,-0.09353422;-0.2966614;-0.006463908,-0.09483542;-0.5902303;0.05530674,-0.0919067;-0.5581458;-0.04303175,0.001226146;0.3997964;0.01109167,82.73271
-0;0;0,0.001694114;0.1998715;0.006964145,0.00451539;0.4997901;0.003879349,0.1209577;0.3812292;-0.008489555,0.2202627;0.2137969;0.03739029,0.38047;0.02299233;0.05805986,-0.1072142;0.3669146;-0.02494908,-0.1555624;0.1730855;-0.01532057,-0.1814676;-0.07509431;-0.03067349,0.07441784;0.00594175;-0.02875207,0.09938665;-0.2919948;-0.004045734,0.08695798;-0.584448;0.06165518,0.09696279;-0.6114821;-0.001318283,-0.06742392;0.002281171;-0.0429978,-0.08906505;-0.2945627;-0.005375978,-0.08521353;-0.5883554;0.05521268,-0.08022802;-0.5566575;-0.04297173,0.003503151;0.3998625;0.007548725,0;0;0,0.0002308203;0.1998141;0.008617065,0.001928302;0.4997569;0.008372894,0.1176625;0.383409;-0.0128673,0.1696553;0.190999;0.003719947,0.1810002;-0.05539517;-0.03703798,-0.1085461;0.3650586;-0.02272176,-0.1499213;0.1693893;-0.02145291,-0.1801459;-0.07845642;-0.03406188,0.07375044;0.008284602;-0.02987036,0.09358747;-0.2900142;-0.004883558,0.08089812;-0.5824804;0.0607099,0.09526701;-0.6141548;0.004827496,-0.06753538;-1.731652E-05;-0.04288324,-0.09353422;-0.2966614;-0.006463908,-0.09483542;-0.5902303;0.05530674,-0.0919067;-0.5581458;-0.04303175,0.001226146;0.3997964;0.01109167,82.74409
-0;0;0,0.001694114;0.1998715;0.006964145,0.00451539;0.4997901;0.003879349,0.1209577;0.3812292;-0.008489555,0.2202627;0.2137969;0.03739029,0.38047;0.02299233;0.05805986,-0.1072142;0.3669146;-0.02494908,-0.1555624;0.1730855;-0.01532057,-0.1814676;-0.07509431;-0.03067349,0.07441784;0.00594175;-0.02875207,0.09938665;-0.2919948;-0.004045734,0.08695798;-0.584448;0.06165518,0.09696279;-0.6114821;-0.001318283,-0.06742392;0.002281171;-0.0429978,-0.08906505;-0.2945627;-0.005375978,-0.08521353;-0.5883554;0.05521268,-0.08022802;-0.5566575;-0.04297173,0.003503151;0.3998625;0.007548725,0;0;0,0.0002308203;0.1998141;0.008617065,0.001928302;0.4997569;0.008372894,0.1176625;0.383409;-0.0128673,0.1696553;0.190999;0.003719947,0.1810002;-0.05539517;-0.03703798,-0.1085461;0.3650586;-0.02272176,-0.1499213;0.1693893;-0.02145291,-0.1801459;-0.07845642;-0.03406188,0.07375044;0.008284602;-0.02987036,0.09358747;-0.2900142;-0.004883558,0.08089812;-0.5824804;0.0607099,0.09526701;-0.6141548;0.004827496,-0.06753538;-1.731652E-05;-0.04288324,-0.09353422;-0.2966614;-0.006463908,-0.09483542;-0.5902303;0.05530674,-0.0919067;-0.5581458;-0.04303175,0.001226146;0.3997964;0.01109167,82.75502
-0;0;0,0.001732572;0.1998696;0.007011208,0.004604179;0.4997891;0.004036189,0.1210383;0.3814076;-0.008464416,0.2195959;0.2134549;0.03712374,0.3788368;0.02175722;0.05698192,-0.1071971;0.3670784;-0.02484683,-0.1553934;0.1732088;-0.01527084,-0.181495;-0.07494025;-0.03078657,0.07439747;0.005936818;-0.02880575,0.09942977;-0.2919936;-0.004089933,0.08698452;-0.5844252;0.06170395,0.09861621;-0.6118991;-0.000445012,-0.06744681;0.002287101;-0.04296158,-0.08913023;-0.2945418;-0.005246546,-0.08517551;-0.5883521;0.05525046,-0.0802188;-0.5566586;-0.04293459,0.003566998;0.3998601;0.007659751,0;0;0,0.0004880972;0.1998073;0.008763765,0.003321043;0.4997436;0.009083323,0.1184755;0.3832829;-0.01291749,0.1700898;0.1907718;0.003679678,0.1813635;-0.05565207;-0.03691785,-0.1077006;0.3654094;-0.02234228,-0.1571066;0.1717686;-0.01445062,-0.1868375;-0.07611406;-0.02749867,0.07374652;0.008066425;-0.02993965,0.09364645;-0.2902097;-0.004732674,0.08086172;-0.5826278;0.06105631,0.09521227;-0.6140429;0.004792258,-0.06753781;0.0001967309;-0.04287896,-0.09330547;-0.2964285;-0.00614335,-0.09459376;-0.5900485;0.05538429,-0.09481752;-0.6189248;-0.006084997,0.002161419;0.3997808;0.01155379,82.76649
-0;0;0,0.001732572;0.1998696;0.007011208,0.004604179;0.4997891;0.004036189,0.1210383;0.3814076;-0.008464416,0.2195959;0.2134549;0.03712374,0.3788368;0.02175722;0.05698192,-0.1071971;0.3670784;-0.02484683,-0.1553934;0.1732088;-0.01527084,-0.181495;-0.07494025;-0.03078657,0.07439747;0.005936818;-0.02880575,0.09942977;-0.2919936;-0.004089933,0.08698452;-0.5844252;0.06170395,0.09861621;-0.6118991;-0.000445012,-0.06744681;0.002287101;-0.04296158,-0.08913023;-0.2945418;-0.005246546,-0.08517551;-0.5883521;0.05525046,-0.0802188;-0.5566586;-0.04293459,0.003566998;0.3998601;0.007659751,0;0;0,0.0004880972;0.1998073;0.008763765,0.003321043;0.4997436;0.009083323,0.1184755;0.3832829;-0.01291749,0.1700898;0.1907718;0.003679678,0.1813635;-0.05565207;-0.03691785,-0.1077006;0.3654094;-0.02234228,-0.1571066;0.1717686;-0.01445062,-0.1868375;-0.07611406;-0.02749867,0.07374652;0.008066425;-0.02993965,0.09364645;-0.2902097;-0.004732674,0.08086172;-0.5826278;0.06105631,0.09521227;-0.6140429;0.004792258,-0.06753781;0.0001967309;-0.04287896,-0.09330547;-0.2964285;-0.00614335,-0.09459376;-0.5900485;0.05538429,-0.09481752;-0.6189248;-0.006084997,0.002161419;0.3997808;0.01155379,82.78885
-0;0;0,0.001785842;0.1998672;0.007065515,0.004701655;0.4997862;0.004109297,0.1211158;0.3814166;-0.00841043,0.2189381;0.2129444;0.03684335,0.3762825;0.01947163;0.05448014,-0.1071196;0.3669572;-0.02465193,-0.1554887;0.1731333;-0.01502333,-0.1808703;-0.07507159;-0.03083857,0.07435656;0.005908632;-0.02891694,0.09946509;-0.2920074;-0.004105719,0.08694535;-0.584348;0.06207784,0.09827666;-0.6121781;0.000319656,-0.06746423;0.002310972;-0.04293294,-0.08918045;-0.2945339;-0.005362645,-0.08528357;-0.5883225;0.05524324,-0.08036932;-0.556633;-0.04294319,0.003645193;0.3998575;0.007732183,0;0;0,0.0004880972;0.1998073;0.008763765,0.003321043;0.4997436;0.009083323,0.1184755;0.3832829;-0.01291749,0.1700898;0.1907718;0.003679678,0.1813635;-0.05565207;-0.03691785,-0.1077006;0.3654094;-0.02234228,-0.1571066;0.1717686;-0.01445062,-0.1868375;-0.07611406;-0.02749867,0.07374652;0.008066425;-0.02993965,0.09364645;-0.2902097;-0.004732674,0.08086172;-0.5826278;0.06105631,0.09521227;-0.6140429;0.004792258,-0.06753781;0.0001967309;-0.04287896,-0.09330547;-0.2964285;-0.00614335,-0.09459376;-0.5900485;0.05538429,-0.09481752;-0.6189248;-0.006084997,0.002161419;0.3997808;0.01155379,82.80008
-0;0;0,0.001785842;0.1998672;0.007065515,0.004701655;0.4997862;0.004109297,0.1211158;0.3814166;-0.00841043,0.2189381;0.2129444;0.03684335,0.3762825;0.01947163;0.05448014,-0.1071196;0.3669572;-0.02465193,-0.1554887;0.1731333;-0.01502333,-0.1808703;-0.07507159;-0.03083857,0.07435656;0.005908632;-0.02891694,0.09946509;-0.2920074;-0.004105719,0.08694535;-0.584348;0.06207784,0.09827666;-0.6121781;0.000319656,-0.06746423;0.002310972;-0.04293294,-0.08918045;-0.2945339;-0.005362645,-0.08528357;-0.5883225;0.05524324,-0.08036932;-0.556633;-0.04294319,0.003645193;0.3998575;0.007732183,0;0;0,0.0006535568;0.199804;0.008828598,0.003745191;0.4997376;0.009270625,0.1188094;0.3833868;-0.01294416,0.1702442;0.1908195;0.003557405,0.1816715;-0.05563222;-0.03682762,-0.1073292;0.3653591;-0.02220522,-0.1569103;0.1717668;-0.01422159,-0.1867424;-0.07610016;-0.02733739,0.07376748;0.00792444;-0.02992595,0.09361971;-0.2903812;-0.005032841,0.08063696;-0.5827163;0.0610852,0.09504852;-0.6138604;0.004446514,-0.06748208;0.0003375757;-0.04296574,-0.09370066;-0.2961913;-0.005774457,-0.09443263;-0.5898646;0.05550731,-0.09459057;-0.6190792;-0.005525596,0.002516194;0.3997747;0.0117,82.81172
-0;0;0,0.001837636;0.1998661;0.007083493,0.004810725;0.499785;0.004168346,0.1211967;0.3814441;-0.008440528,0.2185158;0.2126304;0.03662528,0.3752858;0.01867987;0.05412885,-0.1070725;0.3670689;-0.02458945,-0.1554659;0.173252;-0.01494249,-0.1806313;-0.07497483;-0.03075903,0.07431655;0.00589583;-0.02902224,0.09938049;-0.2920291;-0.004272396,0.08704875;-0.584357;0.0620024,0.09851862;-0.6122342;0.0003292374,-0.06751072;0.002322183;-0.04285919,-0.08920491;-0.2945318;-0.00534822,-0.08530487;-0.5883425;0.05515035,-0.08041567;-0.5566489;-0.0430381,0.003731573;0.3998559;0.007775245,0;0;0,0.0006535568;0.199804;0.008828598,0.003745191;0.4997376;0.009270625,0.1188094;0.3833868;-0.01294416,0.1702442;0.1908195;0.003557405,0.1816715;-0.05563222;-0.03682762,-0.1073292;0.3653591;-0.02220522,-0.1569103;0.1717668;-0.01422159,-0.1867424;-0.07610016;-0.02733739,0.07376748;0.00792444;-0.02992595,0.09361971;-0.2903812;-0.005032841,0.08063696;-0.5827163;0.0610852,0.09504852;-0.6138604;0.004446514,-0.06748208;0.0003375757;-0.04296574,-0.09370066;-0.2961913;-0.005774457,-0.09443263;-0.5898646;0.05550731,-0.09459057;-0.6190792;-0.005525596,0.002516194;0.3997747;0.0117,82.83333
-0;0;0,0.001837636;0.1998661;0.007083493,0.004810725;0.499785;0.004168346,0.1211967;0.3814441;-0.008440528,0.2185158;0.2126304;0.03662528,0.3752858;0.01867987;0.05412885,-0.1070725;0.3670689;-0.02458945,-0.1554659;0.173252;-0.01494249,-0.1806313;-0.07497483;-0.03075903,0.07431655;0.00589583;-0.02902224,0.09938049;-0.2920291;-0.004272396,0.08704875;-0.584357;0.0620024,0.09851862;-0.6122342;0.0003292374,-0.06751072;0.002322183;-0.04285919,-0.08920491;-0.2945318;-0.00534822,-0.08530487;-0.5883425;0.05515035,-0.08041567;-0.5566489;-0.0430381,0.003731573;0.3998559;0.007775245,0;0;0,0.0006535568;0.199804;0.008828598,0.003745191;0.4997376;0.009270625,0.1188094;0.3833868;-0.01294416,0.1702442;0.1908195;0.003557405,0.1816715;-0.05563222;-0.03682762,-0.1073292;0.3653591;-0.02220522,-0.1569103;0.1717668;-0.01422159,-0.1867424;-0.07610016;-0.02733739,0.07376748;0.00792444;-0.02992595,0.09361971;-0.2903812;-0.005032841,0.08063696;-0.5827163;0.0610852,0.09504852;-0.6138604;0.004446514,-0.06748208;0.0003375757;-0.04296574,-0.09370066;-0.2961913;-0.005774457,-0.09443263;-0.5898646;0.05550731,-0.09459057;-0.6190792;-0.005525596,0.002516194;0.3997747;0.0117,82.84486
-0;0;0,0.002013816;0.1998563;0.007307549,0.006124182;0.4997788;0.005929354,0.1217947;0.3808963;-0.008299825,0.218411;0.2116;0.03646684,0.3744708;0.01708414;0.05404244,-0.1060397;0.3668799;-0.02406821,-0.1544665;0.1730715;-0.01441786,-0.1794859;-0.07516389;-0.03033089,0.07429761;0.005853459;-0.02907925,0.09931404;-0.2920703;-0.004267428,0.08704823;-0.5843986;0.0620176,0.09861115;-0.6124909;0.0006343871,-0.06752776;0.002357878;-0.04283038,-0.0892608;-0.2944678;-0.00511837,-0.08515798;-0.5884056;0.05474623,-0.08030707;-0.556644;-0.04345678,0.004547838;0.3998342;0.008862183,0;0;0,0.0008532528;0.1997977;0.008952024,0.004395672;0.4997264;0.009720659,0.1192591;0.383426;-0.0129131,0.170396;0.1907342;0.003051998,0.1817093;-0.0558369;-0.03663047,-0.1069255;0.3655474;-0.02175272,-0.1490474;0.1700358;-0.02077818,-0.1798327;-0.07773013;-0.03359628,0.07377899;0.007918099;-0.02989921,0.09362388;-0.2903872;-0.004996996,0.0805972;-0.5826741;0.06132564,0.09487274;-0.613526;0.004236374,-0.06746857;0.0003551336;-0.04298681,-0.09390035;-0.296115;-0.005479287,-0.09418704;-0.5898391;0.05556254,-0.09157547;-0.5577011;-0.04279462,0.003021494;0.3997624;0.01202587,82.86668
-0;0;0,0.002013816;0.1998563;0.007307549,0.006124182;0.4997788;0.005929354,0.1217947;0.3808963;-0.008299825,0.218411;0.2116;0.03646684,0.3744708;0.01708414;0.05404244,-0.1060397;0.3668799;-0.02406821,-0.1544665;0.1730715;-0.01441786,-0.1794859;-0.07516389;-0.03033089,0.07429761;0.005853459;-0.02907925,0.09931404;-0.2920703;-0.004267428,0.08704823;-0.5843986;0.0620176,0.09861115;-0.6124909;0.0006343871,-0.06752776;0.002357878;-0.04283038,-0.0892608;-0.2944678;-0.00511837,-0.08515798;-0.5884056;0.05474623,-0.08030707;-0.556644;-0.04345678,0.004547838;0.3998342;0.008862183,0;0;0,0.0008532528;0.1997977;0.008952024,0.004395672;0.4997264;0.009720659,0.1192591;0.383426;-0.0129131,0.170396;0.1907342;0.003051998,0.1817093;-0.0558369;-0.03663047,-0.1069255;0.3655474;-0.02175272,-0.1490474;0.1700358;-0.02077818,-0.1798327;-0.07773013;-0.03359628,0.07377899;0.007918099;-0.02989921,0.09362388;-0.2903872;-0.004996996,0.0805972;-0.5826741;0.06132564,0.09487274;-0.613526;0.004236374,-0.06746857;0.0003551336;-0.04298681,-0.09390035;-0.296115;-0.005479287,-0.09418704;-0.5898391;0.05556254,-0.09157547;-0.5577011;-0.04279462,0.003021494;0.3997624;0.01202587,82.87836
-0;0;0,0.002013816;0.1998563;0.007307549,0.006124182;0.4997788;0.005929354,0.1217947;0.3808963;-0.008299825,0.218411;0.2116;0.03646684,0.3744708;0.01708414;0.05404244,-0.1060397;0.3668799;-0.02406821,-0.1544665;0.1730715;-0.01441786,-0.1794859;-0.07516389;-0.03033089,0.07429761;0.005853459;-0.02907925,0.09931404;-0.2920703;-0.004267428,0.08704823;-0.5843986;0.0620176,0.09861115;-0.6124909;0.0006343871,-0.06752776;0.002357878;-0.04283038,-0.0892608;-0.2944678;-0.00511837,-0.08515798;-0.5884056;0.05474623,-0.08030707;-0.556644;-0.04345678,0.004547838;0.3998342;0.008862183,0;0;0,0.0008532528;0.1997977;0.008952024,0.004395672;0.4997264;0.009720659,0.1192591;0.383426;-0.0129131,0.170396;0.1907342;0.003051998,0.1817093;-0.0558369;-0.03663047,-0.1069255;0.3655474;-0.02175272,-0.1490474;0.1700358;-0.02077818,-0.1798327;-0.07773013;-0.03359628,0.07377899;0.007918099;-0.02989921,0.09362388;-0.2903872;-0.004996996,0.0805972;-0.5826741;0.06132564,0.09487274;-0.613526;0.004236374,-0.06746857;0.0003551336;-0.04298681,-0.09390035;-0.296115;-0.005479287,-0.09418704;-0.5898391;0.05556254,-0.09157547;-0.5577011;-0.04279462,0.003021494;0.3997624;0.01202587,82.88941
-0;0;0,0.002280435;0.1998494;0.007418513,0.006501777;0.4997701;0.006057129,0.1221239;0.380852;-0.008355469,0.2182153;0.2111631;0.036053,0.3736951;0.01618065;0.05359931,-0.1056535;0.3668689;-0.02401358,-0.1541458;0.1730827;-0.01424741,-0.1790628;-0.0751802;-0.02989016,0.07427268;0.005862605;-0.02914103,0.09962733;-0.2920359;-0.004369862,0.0875055;-0.584367;0.06192932,0.09953161;-0.6121803;0.0002813786,-0.06755546;0.002355786;-0.04278679,-0.08899425;-0.2945317;-0.005393822,-0.08463557;-0.5882946;0.05530512,-0.07981667;-0.5565308;-0.04289985,0.004910396;0.3998259;0.008993501,0;0;0,0.001048743;0.1997928;0.009041954,0.004792072;0.4997185;0.009942001,0.1194891;0.3830483;-0.01303723,0.1706595;0.1903623;0.002890751,0.1833703;-0.05615105;-0.03672756,-0.1066278;0.3656083;-0.02147814,-0.1489505;0.1701397;-0.0205606,-0.1798806;-0.07760742;-0.03339278,0.07377328;0.007747505;-0.02995797,0.0935252;-0.2905509;-0.00489893,0.08058217;-0.5828682;0.06130565,0.09480458;-0.6136816;0.004148688,-0.06745431;0.0005260679;-0.04300744,-0.09414127;-0.2958776;-0.00515686,-0.09385647;-0.5896556;0.05562475,-0.09135844;-0.5575029;-0.04273801,0.003369722;0.3997543;0.01220556,82.91151
-0;0;0,0.002173735;0.1998509;0.007409754,0.006002041;0.4997745;0.005855664,0.121884;0.3811573;-0.008236899,0.2175178;0.2110855;0.03569245,0.3721937;0.01547298;0.05333047,-0.1060139;0.3669779;-0.02407583,-0.1545617;0.173206;-0.01430008,-0.1795754;-0.07503748;-0.03009482,0.07421044;0.005865579;-0.02929854,0.09973466;-0.2920153;-0.004488612,0.08759438;-0.5843189;0.06192856,0.09991699;-0.6123763;0.0006489344,-0.06759834;0.002357142;-0.04271895,-0.08899418;-0.2945409;-0.005385589,-0.0846208;-0.5882519;0.05556273,-0.07980467;-0.5565009;-0.04264002,0.004590817;0.3998308;0.008898065,0;0;0,0.001048743;0.1997928;0.009041954,0.004792072;0.4997185;0.009942001,0.1194891;0.3830483;-0.01303723,0.1706595;0.1903623;0.002890751,0.1833703;-0.05615105;-0.03672756,-0.1066278;0.3656083;-0.02147814,-0.1489505;0.1701397;-0.0205606,-0.1798806;-0.07760742;-0.03339278,0.07377328;0.007747505;-0.02995797,0.0935252;-0.2905509;-0.00489893,0.08058217;-0.5828682;0.06130565,0.09480458;-0.6136816;0.004148688,-0.06745431;0.0005260679;-0.04300744,-0.09414127;-0.2958776;-0.00515686,-0.09385647;-0.5896556;0.05562475,-0.09135844;-0.5575029;-0.04273801,0.003369722;0.3997543;0.01220556,82.9229
-0;0;0,0.002173735;0.1998509;0.007409754,0.006002041;0.4997745;0.005855664,0.121884;0.3811573;-0.008236899,0.2175178;0.2110855;0.03569245,0.3721937;0.01547298;0.05333047,-0.1060139;0.3669779;-0.02407583,-0.1545617;0.173206;-0.01430008,-0.1795754;-0.07503748;-0.03009482,0.07421044;0.005865579;-0.02929854,0.09973466;-0.2920153;-0.004488612,0.08759438;-0.5843189;0.06192856,0.09991699;-0.6123763;0.0006489344,-0.06759834;0.002357142;-0.04271895,-0.08899418;-0.2945409;-0.005385589,-0.0846208;-0.5882519;0.05556273,-0.07980467;-0.5565009;-0.04264002,0.004590817;0.3998308;0.008898065,0;0;0,0.001048743;0.1997928;0.009041954,0.004792072;0.4997185;0.009942001,0.1194891;0.3830483;-0.01303723,0.1706595;0.1903623;0.002890751,0.1833703;-0.05615105;-0.03672756,-0.1066278;0.3656083;-0.02147814,-0.1489505;0.1701397;-0.0205606,-0.1798806;-0.07760742;-0.03339278,0.07377328;0.007747505;-0.02995797,0.0935252;-0.2905509;-0.00489893,0.08058217;-0.5828682;0.06130565,0.09480458;-0.6136816;0.004148688,-0.06745431;0.0005260679;-0.04300744,-0.09414127;-0.2958776;-0.00515686,-0.09385647;-0.5896556;0.05562475,-0.09135844;-0.5575029;-0.04273801,0.003369722;0.3997543;0.01220556,82.94516
-0;0;0,0.002574725;0.1998371;0.007648794,0.007164813;0.499755;0.006760816,0.1225493;0.3807735;-0.0081378,0.2177705;0.2104132;0.03556937,0.3719208;0.01439342;0.05328712,-0.1051337;0.366854;-0.02363063,-0.1537281;0.1730915;-0.01390022,-0.1786545;-0.07516208;-0.02967457,0.07421418;0.005763138;-0.0293094,0.100074;-0.2920832;-0.00443274,0.08807957;-0.5843602;0.06212755,0.100255;-0.6122654;0.0006251596,-0.06762411;0.00245732;-0.04267247,-0.08869622;-0.2944242;-0.005024783,-0.08407952;-0.5881625;0.05577379,-0.07932539;-0.5563818;-0.04243749,0.005390577;0.3998086;0.009511208,0;0;0,0.001313017;0.1997837;0.009206921,0.005418852;0.4997043;0.01019707,0.1199884;0.382865;-0.01272861,0.1708641;0.1901016;0.003207097,0.1839935;-0.05633333;-0.03676073,-0.106234;0.3655624;-0.02084675,-0.1487368;0.1701325;-0.02002094,-0.1799551;-0.07758118;-0.03280151,0.07379787;0.007452934;-0.02997211,0.09349611;-0.2908139;-0.00449935,0.08051753;-0.583112;0.06178322,0.0946742;-0.6138363;0.004484333,-0.06744914;0.0008734034;-0.04300989,-0.09386644;-0.2955543;-0.005158301,-0.09393092;-0.5892614;0.05596591,-0.09621047;-0.6176348;-0.006101821,0.003876083;0.3997412;0.01243342,82.96768
-0;0;0,0.002574725;0.1998371;0.007648794,0.007164813;0.499755;0.006760816,0.1225493;0.3807735;-0.0081378,0.2177705;0.2104132;0.03556937,0.3719208;0.01439342;0.05328712,-0.1051337;0.366854;-0.02363063,-0.1537281;0.1730915;-0.01390022,-0.1786545;-0.07516208;-0.02967457,0.07421418;0.005763138;-0.0293094,0.100074;-0.2920832;-0.00443274,0.08807957;-0.5843602;0.06212755,0.100255;-0.6122654;0.0006251596,-0.06762411;0.00245732;-0.04267247,-0.08869622;-0.2944242;-0.005024783,-0.08407952;-0.5881625;0.05577379,-0.07932539;-0.5563818;-0.04243749,0.005390577;0.3998086;0.009511208,0;0;0,0.001313017;0.1997837;0.009206921,0.005418852;0.4997043;0.01019707,0.1199884;0.382865;-0.01272861,0.1708641;0.1901016;0.003207097,0.1839935;-0.05633333;-0.03676073,-0.106234;0.3655624;-0.02084675,-0.1487368;0.1701325;-0.02002094,-0.1799551;-0.07758118;-0.03280151,0.07379787;0.007452934;-0.02997211,0.09349611;-0.2908139;-0.00449935,0.08051753;-0.583112;0.06178322,0.0946742;-0.6138363;0.004484333,-0.06744914;0.0008734034;-0.04300989,-0.09386644;-0.2955543;-0.005158301,-0.09393092;-0.5892614;0.05596591,-0.09621047;-0.6176348;-0.006101821,0.003876083;0.3997412;0.01243342,82.97885
-0;0;0,0.003101884;0.1998276;0.007701401,0.007966349;0.4997396;0.006735199,0.1232534;0.3807217;-0.008366387,0.2181658;0.210151;0.0351911,0.3719279;0.01385775;0.05325183,-0.1044188;0.3669034;-0.02352974,-0.1532108;0.1731965;-0.01368177,-0.1782174;-0.07505511;-0.02936051,0.0741381;0.005650262;-0.02952315,0.1009748;-0.2921245;-0.004824892,0.08912201;-0.5843312;0.06206846,0.1016084;-0.6120446;0.0003861412,-0.06768882;0.002564091;-0.04256347,-0.08804195;-0.2943748;-0.004972819,-0.08346023;-0.588037;0.05619512,-0.07880209;-0.556271;-0.04201804,0.006141921;0.3997959;0.00955198,0;0;0,0.001313017;0.1997837;0.009206921,0.005418852;0.4997043;0.01019707,0.1199884;0.382865;-0.01272861,0.1708641;0.1901016;0.003207097,0.1839935;-0.05633333;-0.03676073,-0.106234;0.3655624;-0.02084675,-0.1487368;0.1701325;-0.02002094,-0.1799551;-0.07758118;-0.03280151,0.07379787;0.007452934;-0.02997211,0.09349611;-0.2908139;-0.00449935,0.08051753;-0.583112;0.06178322,0.0946742;-0.6138363;0.004484333,-0.06744914;0.0008734034;-0.04300989,-0.09386644;-0.2955543;-0.005158301,-0.09393092;-0.5892614;0.05596591,-0.09621047;-0.6176348;-0.006101821,0.003876083;0.3997412;0.01243342,83.0009
-0;0;0,0.003101884;0.1998276;0.007701401,0.007966349;0.4997396;0.006735199,0.1232534;0.3807217;-0.008366387,0.2181658;0.210151;0.0351911,0.3719279;0.01385775;0.05325183,-0.1044188;0.3669034;-0.02352974,-0.1532108;0.1731965;-0.01368177,-0.1782174;-0.07505511;-0.02936051,0.0741381;0.005650262;-0.02952315,0.1009748;-0.2921245;-0.004824892,0.08912201;-0.5843312;0.06206846,0.1016084;-0.6120446;0.0003861412,-0.06768882;0.002564091;-0.04256347,-0.08804195;-0.2943748;-0.004972819,-0.08346023;-0.588037;0.05619512,-0.07880209;-0.556271;-0.04201804,0.006141921;0.3997959;0.00955198,0;0;0,0.001494956;0.1997771;0.009320951,0.005780794;0.4996948;0.01039752,0.1202209;0.3824535;-0.01263587,0.1710347;0.1896333;0.002801856,0.1842587;-0.056888;-0.03659859,-0.1059769;0.3654097;-0.02035094,-0.1561953;0.1719566;-0.01300263,-0.1869289;-0.07580945;-0.02594208,0.07381108;0.007213314;-0.02999821,0.09347196;-0.2910268;-0.004185393,0.08050398;-0.5833085;0.06217162,0.09466332;-0.6140153;0.004848763,-0.06744121;0.001134093;-0.04301624,-0.0935639;-0.2952828;-0.004876729,-0.09394215;-0.5889885;0.0562527,-0.09627122;-0.6170951;-0.006148722,0.004185424;0.399732;0.01260742,83.0124
-0;0;0,0.003144481;0.1998272;0.00769338,0.008000164;0.4997363;0.006448095,0.1233974;0.3812798;-0.008558711,0.2180069;0.2104862;0.03478395,0.3713562;0.01393273;0.05351154,-0.1044789;0.3670841;-0.02343439,-0.1534116;0.1734216;-0.01341338,-0.1784036;-0.07483083;-0.02910239,0.0741498;0.005623205;-0.02949893,0.1011371;-0.2921273;-0.004673246,0.08939996;-0.584328;0.0622672,0.1018905;-0.6121296;0.0006969534,-0.06769945;0.002589829;-0.04254499,-0.08818771;-0.2943174;-0.004778121,-0.08335757;-0.5879998;0.05627389,-0.07881271;-0.5562297;-0.04194535,0.006204772;0.3997964;0.009414304,0;0;0,0.001494956;0.1997771;0.009320951,0.005780794;0.4996948;0.01039752,0.1202209;0.3824535;-0.01263587,0.1710347;0.1896333;0.002801856,0.1842587;-0.056888;-0.03659859,-0.1059769;0.3654097;-0.02035094,-0.1561953;0.1719566;-0.01300263,-0.1869289;-0.07580945;-0.02594208,0.07381108;0.007213314;-0.02999821,0.09347196;-0.2910268;-0.004185393,0.08050398;-0.5833085;0.06217162,0.09466332;-0.6140153;0.004848763,-0.06744121;0.001134093;-0.04301624,-0.0935639;-0.2952828;-0.004876729,-0.09394215;-0.5889885;0.0562527,-0.09627122;-0.6170951;-0.006148722,0.004185424;0.399732;0.01260742,83.03421
-0;0;0,0.003144481;0.1998272;0.00769338,0.008000164;0.4997363;0.006448095,0.1233974;0.3812798;-0.008558711,0.2180069;0.2104862;0.03478395,0.3713562;0.01393273;0.05351154,-0.1044789;0.3670841;-0.02343439,-0.1534116;0.1734216;-0.01341338,-0.1784036;-0.07483083;-0.02910239,0.0741498;0.005623205;-0.02949893,0.1011371;-0.2921273;-0.004673246,0.08939996;-0.584328;0.0622672,0.1018905;-0.6121296;0.0006969534,-0.06769945;0.002589829;-0.04254499,-0.08818771;-0.2943174;-0.004778121,-0.08335757;-0.5879998;0.05627389,-0.07881271;-0.5562297;-0.04194535,0.006204772;0.3997964;0.009414304,0;0;0,0.001494956;0.1997771;0.009320951,0.005780794;0.4996948;0.01039752,0.1202209;0.3824535;-0.01263587,0.1710347;0.1896333;0.002801856,0.1842587;-0.056888;-0.03659859,-0.1059769;0.3654097;-0.02035094,-0.1561953;0.1719566;-0.01300263,-0.1869289;-0.07580945;-0.02594208,0.07381108;0.007213314;-0.02999821,0.09347196;-0.2910268;-0.004185393,0.08050398;-0.5833085;0.06217162,0.09466332;-0.6140153;0.004848763,-0.06744121;0.001134093;-0.04301624,-0.0935639;-0.2952828;-0.004876729,-0.09394215;-0.5889885;0.0562527,-0.09627122;-0.6170951;-0.006148722,0.004185424;0.399732;0.01260742,83.04593
-0;0;0,0.003164411;0.1998295;0.00762612,0.008022917;0.4997362;0.00613949,0.1234571;0.3813368;-0.008715603,0.2177948;0.2104028;0.03466633,0.3708465;0.0136622;0.0538574,-0.1044392;0.3669472;-0.02346909,-0.153606;0.1733548;-0.01324048,-0.1784966;-0.07490505;-0.02897246,0.07412076;0.005577517;-0.02958047,0.101266;-0.2921569;-0.004734071,0.08967406;-0.5843488;0.06227007,0.1020319;-0.6116959;0.0001032501,-0.06774136;0.002636616;-0.04247535,-0.0882927;-0.2942491;-0.004573934,-0.08311284;-0.5879672;0.05627763,-0.07863256;-0.5562057;-0.04194294,0.006250239;0.3997993;0.009220085,0;0;0,0.001465002;0.1997665;0.009548871,0.005498019;0.4996862;0.01084059,0.1199695;0.3824583;-0.01250581,0.1702376;0.1894471;0.002319178,0.1841781;-0.05714874;-0.03636107,-0.1061771;0.3653252;-0.01987416,-0.1564292;0.171873;-0.0127347,-0.1875414;-0.07585564;-0.02548483,0.0738124;0.007099997;-0.03002197,0.09299692;-0.2911406;-0.003857987,0.0801481;-0.5834696;0.06231311,0.0938703;-0.6145343;0.005390249,-0.06750816;0.001216298;-0.04290885,-0.09424528;-0.2950562;-0.004079413,-0.09417937;-0.5888242;0.05675163,-0.09658658;-0.6168112;-0.005796194,0.003988368;0.3997209;0.01299685,83.06797
-0;0;0,0.003164411;0.1998295;0.00762612,0.008022917;0.4997362;0.00613949,0.1234571;0.3813368;-0.008715603,0.2177948;0.2104028;0.03466633,0.3708465;0.0136622;0.0538574,-0.1044392;0.3669472;-0.02346909,-0.153606;0.1733548;-0.01324048,-0.1784966;-0.07490505;-0.02897246,0.07412076;0.005577517;-0.02958047,0.101266;-0.2921569;-0.004734071,0.08967406;-0.5843488;0.06227007,0.1020319;-0.6116959;0.0001032501,-0.06774136;0.002636616;-0.04247535,-0.0882927;-0.2942491;-0.004573934,-0.08311284;-0.5879672;0.05627763,-0.07863256;-0.5562057;-0.04194294,0.006250239;0.3997993;0.009220085,0;0;0,0.001465002;0.1997665;0.009548871,0.005498019;0.4996862;0.01084059,0.1199695;0.3824583;-0.01250581,0.1702376;0.1894471;0.002319178,0.1841781;-0.05714874;-0.03636107,-0.1061771;0.3653252;-0.01987416,-0.1564292;0.171873;-0.0127347,-0.1875414;-0.07585564;-0.02548483,0.0738124;0.007099997;-0.03002197,0.09299692;-0.2911406;-0.003857987,0.0801481;-0.5834696;0.06231311,0.0938703;-0.6145343;0.005390249,-0.06750816;0.001216298;-0.04290885,-0.09424528;-0.2950562;-0.004079413,-0.09417937;-0.5888242;0.05675163,-0.09658658;-0.6168112;-0.005796194,0.003988368;0.3997209;0.01299685,83.07923
-0;0;0,0.003201697;0.1998321;0.007543472,0.008072627;0.4997358;0.005791858,0.1235783;0.3815283;-0.008754422,0.2177866;0.2105085;0.03456986,0.3705686;0.01356547;0.05383369,-0.1045121;0.3671041;-0.02338799,-0.1538198;0.1735392;-0.01331864,-0.1788068;-0.07475987;-0.02825944,0.07406063;0.005504144;-0.02974435,0.1013723;-0.292212;-0.004861135,0.08995351;-0.5843982;0.06219749,0.1023004;-0.6117704;5.984679E-05,-0.06783676;0.002687862;-0.04231961,-0.08854619;-0.2941774;-0.004344337,-0.08321363;-0.5879151;0.05639889,-0.07878996;-0.5561515;-0.04182464,0.006313287;0.3998026;0.008993261,0;0;0,0.001465002;0.1997665;0.009548871,0.005498019;0.4996862;0.01084059,0.1199695;0.3824583;-0.01250581,0.1702376;0.1894471;0.002319178,0.1841781;-0.05714874;-0.03636107,-0.1061771;0.3653252;-0.01987416,-0.1564292;0.171873;-0.0127347,-0.1875414;-0.07585564;-0.02548483,0.0738124;0.007099997;-0.03002197,0.09299692;-0.2911406;-0.003857987,0.0801481;-0.5834696;0.06231311,0.0938703;-0.6145343;0.005390249,-0.06750816;0.001216298;-0.04290885,-0.09424528;-0.2950562;-0.004079413,-0.09417937;-0.5888242;0.05675163,-0.09658658;-0.6168112;-0.005796194,0.003988368;0.3997209;0.01299685,83.10141
-0;0;0,0.003201697;0.1998321;0.007543472,0.008072627;0.4997358;0.005791858,0.1235783;0.3815283;-0.008754422,0.2177866;0.2105085;0.03456986,0.3705686;0.01356547;0.05383369,-0.1045121;0.3671041;-0.02338799,-0.1538198;0.1735392;-0.01331864,-0.1788068;-0.07475987;-0.02825944,0.07406063;0.005504144;-0.02974435,0.1013723;-0.292212;-0.004861135,0.08995351;-0.5843982;0.06219749,0.1023004;-0.6117704;5.984679E-05,-0.06783676;0.002687862;-0.04231961,-0.08854619;-0.2941774;-0.004344337,-0.08321363;-0.5879151;0.05639889,-0.07878996;-0.5561515;-0.04182464,0.006313287;0.3998026;0.008993261,0;0;0,0.001582059;0.1997604;0.009659209,0.005747666;0.4996777;0.01109283,0.1201433;0.3823842;-0.01243164,0.170215;0.1892906;0.001978746,0.1843601;-0.05737227;-0.03619658,-0.1059839;0.3653505;-0.01964445,-0.1563298;0.1719247;-0.01245148,-0.1874857;-0.07580294;-0.02511443,0.07376345;0.006994421;-0.03016672,0.09294793;-0.291229;-0.003808815,0.08009629;-0.5835181;0.06253803,0.0934365;-0.614608;0.005560156,-0.06755269;0.001303322;-0.04283614,-0.09420417;-0.2949735;-0.003980268,-0.09418196;-0.5887449;0.05683364,-0.0969776;-0.6152856;-0.007460237,0.004200281;0.3997119;0.01319971,83.11271
-0;0;0,0.003126393;0.1998349;0.00749883,0.007858677;0.4997395;0.005595514,0.1233683;0.3813422;-0.009079972,0.2175323;0.2103553;0.03447034,0.3697747;0.01299803;0.05376666,-0.1046565;0.3669798;-0.0234094,-0.1541729;0.1734756;-0.01319807,-0.1793019;-0.07480915;-0.02813797,0.07399421;0.005473801;-0.02991478,0.1012995;-0.2922319;-0.004900504,0.0899562;-0.584433;0.06210635,0.1030153;-0.6126183;0.001143135,-0.06788678;0.002706123;-0.04223815,-0.08856887;-0.2941707;-0.004338261,-0.08352032;-0.5878368;0.05677448,-0.07920904;-0.5560676;-0.0414551,0.006162807;0.3998072;0.008862104,0;0;0,0.001582059;0.1997604;0.009659209,0.005747666;0.4996777;0.01109283,0.1201433;0.3823842;-0.01243164,0.170215;0.1892906;0.001978746,0.1843601;-0.05737227;-0.03619658,-0.1059839;0.3653505;-0.01964445,-0.1563298;0.1719247;-0.01245148,-0.1874857;-0.07580294;-0.02511443,0.07376345;0.006994421;-0.03016672,0.09294793;-0.291229;-0.003808815,0.08009629;-0.5835181;0.06253803,0.0934365;-0.614608;0.005560156,-0.06755269;0.001303322;-0.04283614,-0.09420417;-0.2949735;-0.003980268,-0.09418196;-0.5887449;0.05683364,-0.0969776;-0.6152856;-0.007460237,0.004200281;0.3997119;0.01319971,83.13486
-0;0;0,0.003211427;0.1998375;0.007392587,0.008023089;0.4997377;0.005195325,0.1235494;0.3813547;-0.009158764,0.2174888;0.2102144;0.03427389,0.3686506;0.01194687;0.05271581,-0.1045519;0.3669094;-0.02345308,-0.1543331;0.1734888;-0.01294971,-0.1794539;-0.07480079;-0.0278239,0.07399023;0.005415425;-0.02993525,0.1016693;-0.292251;-0.004864099,0.09001128;-0.5844948;0.06190151,0.1038364;-0.6127191;0.001157466,-0.067928;0.00276886;-0.04216775,-0.08857745;-0.2941298;-0.004421864,-0.08307852;-0.5876817;0.05719862,-0.07879357;-0.5559256;-0.04102967,0.006312604;0.3998099;0.008587778,0;0;0,0.001582059;0.1997604;0.009659209,0.005747666;0.4996777;0.01109283,0.1201433;0.3823842;-0.01243164,0.170215;0.1892906;0.001978746,0.1843601;-0.05737227;-0.03619658,-0.1059839;0.3653505;-0.01964445,-0.1563298;0.1719247;-0.01245148,-0.1874857;-0.07580294;-0.02511443,0.07376345;0.006994421;-0.03016672,0.09294793;-0.291229;-0.003808815,0.08009629;-0.5835181;0.06253803,0.0934365;-0.614608;0.005560156,-0.06755269;0.001303322;-0.04283614,-0.09420417;-0.2949735;-0.003980268,-0.09418196;-0.5887449;0.05683364,-0.0969776;-0.6152856;-0.007460237,0.004200281;0.3997119;0.01319971,83.15693
-0;0;0,0.003211427;0.1998375;0.007392587,0.008023089;0.4997377;0.005195325,0.1235494;0.3813547;-0.009158764,0.2174888;0.2102144;0.03427389,0.3686506;0.01194687;0.05271581,-0.1045519;0.3669094;-0.02345308,-0.1543331;0.1734888;-0.01294971,-0.1794539;-0.07480079;-0.0278239,0.07399023;0.005415425;-0.02993525,0.1016693;-0.292251;-0.004864099,0.09001128;-0.5844948;0.06190151,0.1038364;-0.6127191;0.001157466,-0.067928;0.00276886;-0.04216775,-0.08857745;-0.2941298;-0.004421864,-0.08307852;-0.5876817;0.05719862,-0.07879357;-0.5559256;-0.04102967,0.006312604;0.3998099;0.008587778,0;0;0,0.001642404;0.1997542;0.009775512,0.005670609;0.4996724;0.01135465,0.1200592;0.3822082;-0.01239499,0.1701139;0.1891148;0.002078071,0.184003;-0.05752963;-0.03630979,-0.1060779;0.3654253;-0.01925199,-0.1564776;0.1720105;-0.01214202,-0.1876544;-0.07571089;-0.02487519,0.07372367;0.00681356;-0.03030505,0.09252448;-0.2914061;-0.003629353,0.07976985;-0.5836607;0.06288774,0.09300365;-0.6148136;0.005974896,-0.06763502;0.001437359;-0.04270172,-0.09407572;-0.2949196;-0.004316054,-0.09444162;-0.5885633;0.05711059,-0.09799372;-0.6149011;-0.007386867,0.004182584;0.3997049;0.01342116,83.16882
-0;0;0,0.003211427;0.1998375;0.007392587,0.008023089;0.4997377;0.005195325,0.1235494;0.3813547;-0.009158764,0.2174888;0.2102144;0.03427389,0.3686506;0.01194687;0.05271581,-0.1045519;0.3669094;-0.02345308,-0.1543331;0.1734888;-0.01294971,-0.1794539;-0.07480079;-0.0278239,0.07399023;0.005415425;-0.02993525,0.1016693;-0.292251;-0.004864099,0.09001128;-0.5844948;0.06190151,0.1038364;-0.6127191;0.001157466,-0.067928;0.00276886;-0.04216775,-0.08857745;-0.2941298;-0.004421864,-0.08307852;-0.5876817;0.05719862,-0.07879357;-0.5559256;-0.04102967,0.006312604;0.3998099;0.008587778,0;0;0,0.001642404;0.1997542;0.009775512,0.005670609;0.4996724;0.01135465,0.1200592;0.3822082;-0.01239499,0.1701139;0.1891148;0.002078071,0.184003;-0.05752963;-0.03630979,-0.1060779;0.3654253;-0.01925199,-0.1564776;0.1720105;-0.01214202,-0.1876544;-0.07571089;-0.02487519,0.07372367;0.00681356;-0.03030505,0.09252448;-0.2914061;-0.003629353,0.07976985;-0.5836607;0.06288774,0.09300365;-0.6148136;0.005974896,-0.06763502;0.001437359;-0.04270172,-0.09407572;-0.2949196;-0.004316054,-0.09444162;-0.5885633;0.05711059,-0.09799372;-0.6149011;-0.007386867,0.004182584;0.3997049;0.01342116,83.19058
-0;0;0,0.00311631;0.1998417;0.007320653,0.007803018;0.499742;0.00493917,0.1234014;0.381416;-0.009268189,0.2170621;0.2101104;0.03411456,0.3677717;0.01151372;0.05271482,-0.1047853;0.3669147;-0.02340981,-0.1546304;0.1735136;-0.01285164,-0.1797335;-0.07479547;-0.02742674,0.07390921;0.005378948;-0.03014127,0.1016368;-0.2922726;-0.004947009,0.09043498;-0.5845085;0.06193107,0.1036912;-0.6133806;0.00190213,-0.06798879;0.002802639;-0.04206743,-0.08867937;-0.2941303;-0.004614275,-0.08296603;-0.5876116;0.05732197,-0.07877214;-0.5558623;-0.04090899,0.00614458;0.3998158;0.008403486,0;0;0,0.001642404;0.1997542;0.009775512,0.005670609;0.4996724;0.01135465,0.1200592;0.3822082;-0.01239499,0.1701139;0.1891148;0.002078071,0.184003;-0.05752963;-0.03630979,-0.1060779;0.3654253;-0.01925199,-0.1564776;0.1720105;-0.01214202,-0.1876544;-0.07571089;-0.02487519,0.07372367;0.00681356;-0.03030505,0.09252448;-0.2914061;-0.003629353,0.07976985;-0.5836607;0.06288774,0.09300365;-0.6148136;0.005974896,-0.06763502;0.001437359;-0.04270172,-0.09407572;-0.2949196;-0.004316054,-0.09444162;-0.5885633;0.05711059,-0.09799372;-0.6149011;-0.007386867,0.004182584;0.3997049;0.01342116,83.20213
-0;0;0,0.00311631;0.1998417;0.007320653,0.007803018;0.499742;0.00493917,0.1234014;0.381416;-0.009268189,0.2170621;0.2101104;0.03411456,0.3677717;0.01151372;0.05271482,-0.1047853;0.3669147;-0.02340981,-0.1546304;0.1735136;-0.01285164,-0.1797335;-0.07479547;-0.02742674,0.07390921;0.005378948;-0.03014127,0.1016368;-0.2922726;-0.004947009,0.09043498;-0.5845085;0.06193107,0.1036912;-0.6133806;0.00190213,-0.06798879;0.002802639;-0.04206743,-0.08867937;-0.2941303;-0.004614275,-0.08296603;-0.5876116;0.05732197,-0.07877214;-0.5558623;-0.04090899,0.00614458;0.3998158;0.008403486,0;0;0,0.001882663;0.1997486;0.009846575,0.006108167;0.4996634;0.01155804,0.1202871;0.3817399;-0.01263917,0.1701891;0.1886307;0.002147279,0.1839532;-0.05803157;-0.03617051,-0.1057826;0.3654271;-0.01878457,-0.1562054;0.1720177;-0.01168887,-0.1876735;-0.0756501;-0.02474253,0.07370138;0.006651725;-0.03039508,0.09214838;-0.2915683;-0.003477782,0.07948305;-0.5838635;0.06287814,0.09243229;-0.6156532;0.006817803,-0.0676862;0.001581806;-0.04261544,-0.09420747;-0.2947581;-0.004154198,-0.09486507;-0.5883776;0.05738595,-0.09853779;-0.6146681;-0.007160742,0.004571738;0.3996956;0.0135819,83.22424
-0;0;0,0.003027574;0.1998442;0.007290497,0.007569049;0.4997459;0.004821101,0.1232318;0.3814298;-0.00931567,0.2164412;0.2098536;0.03396948,0.3666383;0.01079573;0.05176812,-0.1049412;0.3668094;-0.02345294,-0.1550417;0.1734885;-0.01263767,-0.179935;-0.0748625;-0.02685443,0.07391516;0.005384846;-0.03012561,0.1016563;-0.2922811;-0.0051169,0.09046502;-0.5844401;0.06209842,0.10414;-0.6130657;0.001840498,-0.06801101;0.002797043;-0.04203189,-0.08856334;-0.2941465;-0.004587173,-0.08283091;-0.5876205;0.05738217,-0.07865663;-0.5558741;-0.04084909,0.005967915;0.3998199;0.008319097,0;0;0,0.001882663;0.1997486;0.009846575,0.006108167;0.4996634;0.01155804,0.1202871;0.3817399;-0.01263917,0.1701891;0.1886307;0.002147279,0.1839532;-0.05803157;-0.03617051,-0.1057826;0.3654271;-0.01878457,-0.1562054;0.1720177;-0.01168887,-0.1876735;-0.0756501;-0.02474253,0.07370138;0.006651725;-0.03039508,0.09214838;-0.2915683;-0.003477782,0.07948305;-0.5838635;0.06287814,0.09243229;-0.6156532;0.006817803,-0.0676862;0.001581806;-0.04261544,-0.09420747;-0.2947581;-0.004154198,-0.09486507;-0.5883776;0.05738595,-0.09853779;-0.6146681;-0.007160742,0.004571738;0.3996956;0.0135819,83.23578
-0;0;0,0.003027574;0.1998442;0.007290497,0.007569049;0.4997459;0.004821101,0.1232318;0.3814298;-0.00931567,0.2164412;0.2098536;0.03396948,0.3666383;0.01079573;0.05176812,-0.1049412;0.3668094;-0.02345294,-0.1550417;0.1734885;-0.01263767,-0.179935;-0.0748625;-0.02685443,0.07391516;0.005384846;-0.03012561,0.1016563;-0.2922811;-0.0051169,0.09046502;-0.5844401;0.06209842,0.10414;-0.6130657;0.001840498,-0.06801101;0.002797043;-0.04203189,-0.08856334;-0.2941465;-0.004587173,-0.08283091;-0.5876205;0.05738217,-0.07865663;-0.5558741;-0.04084909,0.005967915;0.3998199;0.008319097,0;0;0,0.001882663;0.1997486;0.009846575,0.006108167;0.4996634;0.01155804,0.1202871;0.3817399;-0.01263917,0.1701891;0.1886307;0.002147279,0.1839532;-0.05803157;-0.03617051,-0.1057826;0.3654271;-0.01878457,-0.1562054;0.1720177;-0.01168887,-0.1876735;-0.0756501;-0.02474253,0.07370138;0.006651725;-0.03039508,0.09214838;-0.2915683;-0.003477782,0.07948305;-0.5838635;0.06287814,0.09243229;-0.6156532;0.006817803,-0.0676862;0.001581806;-0.04261544,-0.09420747;-0.2947581;-0.004154198,-0.09486507;-0.5883776;0.05738595,-0.09853779;-0.6146681;-0.007160742,0.004571738;0.3996956;0.0135819,83.24718
-0;0;0,0.002954804;0.1998501;0.007155438,0.007407465;0.4997496;0.004349112,0.1231783;0.3815554;-0.009279828,0.2157543;0.2095125;0.03350954,0.3652413;0.009900287;0.05107575,-0.1051933;0.3669046;-0.02345546,-0.155405;0.1736203;-0.01250379,-0.1804927;-0.0747371;-0.02625955,0.07395791;0.005380767;-0.03002124,0.101768;-0.2922735;-0.004949881,0.09058736;-0.58446;0.06214717,0.1043703;-0.6131044;0.00193841,-0.0679946;0.002810841;-0.04205749,-0.08828873;-0.2941225;-0.004391231,-0.08254479;-0.5876127;0.05749983,-0.0783852;-0.5558826;-0.04072904,0.005839353;0.3998277;0.007974342,0;0;0,0.001611587;0.1997355;0.01015479,0.005499837;0.4996527;0.012055,0.1197365;0.3817705;-0.01233205,0.1694185;0.1886097;0.002520625,0.1834756;-0.05798069;-0.03615236,-0.1062845;0.3653685;-0.01834644,-0.1568076;0.1719812;-0.01136338,-0.1884377;-0.07566489;-0.02443819,0.07373279;0.006519941;-0.0303474,0.09170269;-0.2917072;-0.003188102,0.07878219;-0.5839329;0.06342472,0.09145036;-0.6153045;0.006695777,-0.06763541;0.001740006;-0.04268985,-0.09524684;-0.2944201;-0.003615689,-0.09557823;-0.5880685;0.05778913,-0.09820555;-0.6154149;-0.005540453,0.004049186;0.3996829;0.01404179,83.26907
-0;0;0,0.002954804;0.1998501;0.007155438,0.007407465;0.4997496;0.004349112,0.1231783;0.3815554;-0.009279828,0.2157543;0.2095125;0.03350954,0.3652413;0.009900287;0.05107575,-0.1051933;0.3669046;-0.02345546,-0.155405;0.1736203;-0.01250379,-0.1804927;-0.0747371;-0.02625955,0.07395791;0.005380767;-0.03002124,0.101768;-0.2922735;-0.004949881,0.09058736;-0.58446;0.06214717,0.1043703;-0.6131044;0.00193841,-0.0679946;0.002810841;-0.04205749,-0.08828873;-0.2941225;-0.004391231,-0.08254479;-0.5876127;0.05749983,-0.0783852;-0.5558826;-0.04072904,0.005839353;0.3998277;0.007974342,0;0;0,0.001611587;0.1997355;0.01015479,0.005499837;0.4996527;0.012055,0.1197365;0.3817705;-0.01233205,0.1694185;0.1886097;0.002520625,0.1834756;-0.05798069;-0.03615236,-0.1062845;0.3653685;-0.01834644,-0.1568076;0.1719812;-0.01136338,-0.1884377;-0.07566489;-0.02443819,0.07373279;0.006519941;-0.0303474,0.09170269;-0.2917072;-0.003188102,0.07878219;-0.5839329;0.06342472,0.09145036;-0.6153045;0.006695777,-0.06763541;0.001740006;-0.04268985,-0.09524684;-0.2944201;-0.003615689,-0.09557823;-0.5880685;0.05778913,-0.09820555;-0.6154149;-0.005540453,0.004049186;0.3996829;0.01404179,83.28031
-0;0;0,0.003047371;0.1998478;0.007181482,0.007611056;0.4997458;0.004397922,0.1233394;0.3815028;-0.00927972,0.2153393;0.20906;0.03314085,0.3632352;0.008198023;0.04991088,-0.1050324;0.3669444;-0.02340769,-0.1552496;0.1736687;-0.01232753,-0.1802021;-0.07470819;-0.02597563,0.07396305;0.00528961;-0.03002477,0.1019225;-0.2923846;-0.005359607,0.09079968;-0.5843961;0.06250469,0.105388;-0.6121591;0.001348279,-0.06801043;0.002903386;-0.04202558,-0.08800105;-0.2940455;-0.004319176,-0.08219959;-0.5875317;0.05758543,-0.07805853;-0.5557963;-0.0406452,0.006014431;0.3998241;0.00801719,0;0;0,0.00165814;0.1997333;0.01019062,0.00568084;0.4996479;0.01226834,0.1198303;0.3818071;-0.01240926,0.1695291;0.1886483;0.002413006,0.1837831;-0.05793597;-0.03622653,-0.1061446;0.3653693;-0.01821588,-0.1566786;0.1719804;-0.01135708,-0.1883177;-0.0756619;-0.02448216,0.07373697;0.006504621;-0.03034055,0.09174623;-0.2917212;-0.003192222,0.07884516;-0.5839601;0.06336605,0.09165431;-0.6153681;0.006721109,-0.06763374;0.001764746;-0.04269149,-0.09526018;-0.2943829;-0.003533795,-0.09533118;-0.5879598;0.05821295,-0.09749469;-0.6161413;-0.004100461,0.004187069;0.3996774;0.01418589,83.30283
-0;0;0,0.003028773;0.1998537;0.007021697,0.007560937;0.499748;0.003879934,0.1233905;0.3817279;-0.009303737,0.2145829;0.2088068;0.03291267,0.3612559;0.006995574;0.04901472,-0.1052061;0.3669678;-0.02331396,-0.1554187;0.1737134;-0.01184887,-0.1803114;-0.07468191;-0.02526986,0.07391593;0.005277526;-0.03014271,0.1022649;-0.292359;-0.00546827,0.09123475;-0.5843688;0.06241845,0.1065159;-0.6119995;0.00126313,-0.06808802;0.002912214;-0.04189919,-0.08857481;-0.2939089;-0.003461037,-0.08095733;-0.5873656;0.05838678,-0.076882;-0.5556487;-0.03984315,0.005979332;0.3998311;0.007634364,0;0;0,0.00165814;0.1997333;0.01019062,0.00568084;0.4996479;0.01226834,0.1198303;0.3818071;-0.01240926,0.1695291;0.1886483;0.002413006,0.1837831;-0.05793597;-0.03622653,-0.1061446;0.3653693;-0.01821588,-0.1566786;0.1719804;-0.01135708,-0.1883177;-0.0756619;-0.02448216,0.07373697;0.006504621;-0.03034055,0.09174623;-0.2917212;-0.003192222,0.07884516;-0.5839601;0.06336605,0.09165431;-0.6153681;0.006721109,-0.06763374;0.001764746;-0.04269149,-0.09526018;-0.2943829;-0.003533795,-0.09533118;-0.5879598;0.05821295,-0.09749469;-0.6161413;-0.004100461,0.004187069;0.3996774;0.01418589,83.32466
-0;0;0,0.003028773;0.1998537;0.007021697,0.007560937;0.499748;0.003879934,0.1233905;0.3817279;-0.009303737,0.2145829;0.2088068;0.03291267,0.3612559;0.006995574;0.04901472,-0.1052061;0.3669678;-0.02331396,-0.1554187;0.1737134;-0.01184887,-0.1803114;-0.07468191;-0.02526986,0.07391593;0.005277526;-0.03014271,0.1022649;-0.292359;-0.00546827,0.09123475;-0.5843688;0.06241845,0.1065159;-0.6119995;0.00126313,-0.06808802;0.002912214;-0.04189919,-0.08857481;-0.2939089;-0.003461037,-0.08095733;-0.5873656;0.05838678,-0.076882;-0.5556487;-0.03984315,0.005979332;0.3998311;0.007634364,0;0;0,0.00165814;0.1997333;0.01019062,0.00568084;0.4996479;0.01226834,0.1198303;0.3818071;-0.01240926,0.1695291;0.1886483;0.002413006,0.1837831;-0.05793597;-0.03622653,-0.1061446;0.3653693;-0.01821588,-0.1566786;0.1719804;-0.01135708,-0.1883177;-0.0756619;-0.02448216,0.07373697;0.006504621;-0.03034055,0.09174623;-0.2917212;-0.003192222,0.07884516;-0.5839601;0.06336605,0.09165431;-0.6153681;0.006721109,-0.06763374;0.001764746;-0.04269149,-0.09526018;-0.2943829;-0.003533795,-0.09533118;-0.5879598;0.05821295,-0.09749469;-0.6161413;-0.004100461,0.004187069;0.3996774;0.01418589,83.33665
-0;0;0,0.003028773;0.1998537;0.007021697,0.007560937;0.499748;0.003879934,0.1233905;0.3817279;-0.009303737,0.2145829;0.2088068;0.03291267,0.3612559;0.006995574;0.04901472,-0.1052061;0.3669678;-0.02331396,-0.1554187;0.1737134;-0.01184887,-0.1803114;-0.07468191;-0.02526986,0.07391593;0.005277526;-0.03014271,0.1022649;-0.292359;-0.00546827,0.09123475;-0.5843688;0.06241845,0.1065159;-0.6119995;0.00126313,-0.06808802;0.002912214;-0.04189919,-0.08857481;-0.2939089;-0.003461037,-0.08095733;-0.5873656;0.05838678,-0.076882;-0.5556487;-0.03984315,0.005979332;0.3998311;0.007634364,0;0;0,0.001690972;0.199723;0.01038601,0.005720696;0.4996357;0.01275065,0.119794;0.3816697;-0.01228137,0.1693378;0.1884076;0.001689014,0.1838547;-0.05827753;-0.03620156,-0.1061063;0.365344;-0.01781826,-0.1565394;0.1719235;-0.0111072,-0.1882609;-0.07569624;-0.02445639,0.073738;0.006533252;-0.03033189,0.09158811;-0.2916923;-0.003076347,0.07854801;-0.5838929;0.0636229,0.09148566;-0.6146354;0.006061923,-0.06766074;0.00173768;-0.04264979,-0.09564096;-0.2943386;-0.003203787,-0.09546927;-0.5879316;0.05846524,-0.09738195;-0.6163599;-0.003545631,0.00422766;0.3996633;0.0145637,83.34739
-0;0;0,0.003028773;0.1998537;0.007021697,0.007560937;0.499748;0.003879934,0.1233905;0.3817279;-0.009303737,0.2145829;0.2088068;0.03291267,0.3612559;0.006995574;0.04901472,-0.1052061;0.3669678;-0.02331396,-0.1554187;0.1737134;-0.01184887,-0.1803114;-0.07468191;-0.02526986,0.07391593;0.005277526;-0.03014271,0.1022649;-0.292359;-0.00546827,0.09123475;-0.5843688;0.06241845,0.1065159;-0.6119995;0.00126313,-0.06808802;0.002912214;-0.04189919,-0.08857481;-0.2939089;-0.003461037,-0.08095733;-0.5873656;0.05838678,-0.076882;-0.5556487;-0.03984315,0.005979332;0.3998311;0.007634364,0;0;0,0.001690972;0.199723;0.01038601,0.005720696;0.4996357;0.01275065,0.119794;0.3816697;-0.01228137,0.1693378;0.1884076;0.001689014,0.1838547;-0.05827753;-0.03620156,-0.1061063;0.365344;-0.01781826,-0.1565394;0.1719235;-0.0111072,-0.1882609;-0.07569624;-0.02445639,0.073738;0.006533252;-0.03033189,0.09158811;-0.2916923;-0.003076347,0.07854801;-0.5838929;0.0636229,0.09148566;-0.6146354;0.006061923,-0.06766074;0.00173768;-0.04264979,-0.09564096;-0.2943386;-0.003203787,-0.09546927;-0.5879316;0.05846524,-0.09738195;-0.6163599;-0.003545631,0.00422766;0.3996633;0.0145637,83.35854
-0;0;0,0.002975116;0.1998558;0.006987112,0.007414788;0.4997503;0.003751244,0.1232853;0.381736;-0.009352051,0.2134333;0.2081971;0.03257143,0.3592001;0.005668625;0.04787691,-0.1053249;0.366947;-0.02336133,-0.1555739;0.1737058;-0.01183411,-0.1805766;-0.0746813;-0.02520319,0.07390067;0.005260361;-0.0301831,0.1020832;-0.2924163;-0.00580376,0.09116729;-0.5843754;0.06231936,0.1067627;-0.613547;0.003254697,-0.06810417;0.002928487;-0.04187176,-0.08847328;-0.2939664;-0.003943752,-0.08105405;-0.5873346;0.05834602,-0.0809554;-0.6179238;-0.0008602254,0.005866714;0.3998341;0.007539556,0;0;0,0.001690972;0.199723;0.01038601,0.005720696;0.4996357;0.01275065,0.119794;0.3816697;-0.01228137,0.1693378;0.1884076;0.001689014,0.1838547;-0.05827753;-0.03620156,-0.1061063;0.365344;-0.01781826,-0.1565394;0.1719235;-0.0111072,-0.1882609;-0.07569624;-0.02445639,0.073738;0.006533252;-0.03033189,0.09158811;-0.2916923;-0.003076347,0.07854801;-0.5838929;0.0636229,0.09148566;-0.6146354;0.006061923,-0.06766074;0.00173768;-0.04264979,-0.09564096;-0.2943386;-0.003203787,-0.09546927;-0.5879316;0.05846524,-0.09738195;-0.6163599;-0.003545631,0.00422766;0.3996633;0.0145637,83.38084
-0;0;0,0.00285842;0.1998606;0.006896115,0.007081347;0.4997562;0.003472388,0.1230689;0.381898;-0.00946302,0.2122869;0.207805;0.0321515,0.3553217;0.003166869;0.04496856,-0.1056143;0.3669826;-0.02348326,-0.1559173;0.1737614;-0.01185708,-0.1809059;-0.07463324;-0.02511107,0.07389909;0.005257791;-0.03018743,0.1020616;-0.2924077;-0.005648984,0.09120122;-0.5843774;0.06243757,0.1067406;-0.6134842;0.003271408,-0.06811088;0.002946869;-0.04185957,-0.08845817;-0.2939415;-0.003869023,-0.08096651;-0.5872723;0.05858826,-0.07692448;-0.5555928;-0.03963608,0.005611553;0.3998412;0.007324483,0;0;0,0.001613356;0.1997166;0.01051999,0.005486303;0.4996299;0.01301055,0.1196156;0.3817382;-0.01205894,0.1690377;0.1883982;0.001249799,0.1835418;-0.05819072;-0.03726678,-0.1062281;0.3653127;-0.01778788,-0.1566065;0.1718705;-0.01129716,-0.1885718;-0.07569809;-0.02500906,0.07374515;0.006521924;-0.03031695,0.09173455;-0.2917047;-0.003164524,0.07872706;-0.5838951;0.06358583,0.09124921;-0.6149926;0.006433528,-0.06762117;0.001773902;-0.04271101,-0.09593645;-0.2942383;-0.003024027,-0.09583201;-0.5878839;0.05839413,-0.09718844;-0.6135334;-0.006991822,0.004039434;0.3996562;0.01479412,83.4049
-0;0;0,0.00285842;0.1998606;0.006896115,0.007081347;0.4997562;0.003472388,0.1230689;0.381898;-0.00946302,0.2122869;0.207805;0.0321515,0.3553217;0.003166869;0.04496856,-0.1056143;0.3669826;-0.02348326,-0.1559173;0.1737614;-0.01185708,-0.1809059;-0.07463324;-0.02511107,0.07389909;0.005257791;-0.03018743,0.1020616;-0.2924077;-0.005648984,0.09120122;-0.5843774;0.06243757,0.1067406;-0.6134842;0.003271408,-0.06811088;0.002946869;-0.04185957,-0.08845817;-0.2939415;-0.003869023,-0.08096651;-0.5872723;0.05858826,-0.07692448;-0.5555928;-0.03963608,0.005611553;0.3998412;0.007324483,0;0;0,0.001613356;0.1997166;0.01051999,0.005486303;0.4996299;0.01301055,0.1196156;0.3817382;-0.01205894,0.1690377;0.1883982;0.001249799,0.1835418;-0.05819072;-0.03726678,-0.1062281;0.3653127;-0.01778788,-0.1566065;0.1718705;-0.01129716,-0.1885718;-0.07569809;-0.02500906,0.07374515;0.006521924;-0.03031695,0.09173455;-0.2917047;-0.003164524,0.07872706;-0.5838951;0.06358583,0.09124921;-0.6149926;0.006433528,-0.06762117;0.001773902;-0.04271101,-0.09593645;-0.2942383;-0.003024027,-0.09583201;-0.5878839;0.05839413,-0.09718844;-0.6135334;-0.006991822,0.004039434;0.3996562;0.01479412,83.41589
-0;0;0,0.002708823;0.1998659;0.006802802,0.006687505;0.4997627;0.003201423,0.1228431;0.3822448;-0.009452367,0.2108632;0.207394;0.03153128,0.3506671;0.0005135834;0.04399588,-0.1059514;0.3670198;-0.02362045,-0.1561509;0.1737754;-0.01193308,-0.1809334;-0.07463524;-0.0252748,0.07389286;0.00526807;-0.03020085,0.1020761;-0.2924096;-0.005833995,0.09118518;-0.5843858;0.06221972,0.1057662;-0.6122762;0.001224063,-0.06811333;0.002942959;-0.04185586,-0.08835547;-0.293974;-0.004032645,-0.08086434;-0.5872977;0.058458,-0.07680385;-0.5556258;-0.03976415,0.005303216;0.3998488;0.007114999,0;0;0,0.001613356;0.1997166;0.01051999,0.005486303;0.4996299;0.01301055,0.1196156;0.3817382;-0.01205894,0.1690377;0.1883982;0.001249799,0.1835418;-0.05819072;-0.03726678,-0.1062281;0.3653127;-0.01778788,-0.1566065;0.1718705;-0.01129716,-0.1885718;-0.07569809;-0.02500906,0.07374515;0.006521924;-0.03031695,0.09173455;-0.2917047;-0.003164524,0.07872706;-0.5838951;0.06358583,0.09124921;-0.6149926;0.006433528,-0.06762117;0.001773902;-0.04271101,-0.09593645;-0.2942383;-0.003024027,-0.09583201;-0.5878839;0.05839413,-0.09718844;-0.6135334;-0.006991822,0.004039434;0.3996562;0.01479412,83.4366
-0;0;0,0.002708823;0.1998659;0.006802802,0.006687505;0.4997627;0.003201423,0.1228431;0.3822448;-0.009452367,0.2108632;0.207394;0.03153128,0.3506671;0.0005135834;0.04399588,-0.1059514;0.3670198;-0.02362045,-0.1561509;0.1737754;-0.01193308,-0.1809334;-0.07463524;-0.0252748,0.07389286;0.00526807;-0.03020085,0.1020761;-0.2924096;-0.005833995,0.09118518;-0.5843858;0.06221972,0.1057662;-0.6122762;0.001224063,-0.06811333;0.002942959;-0.04185586,-0.08835547;-0.293974;-0.004032645,-0.08086434;-0.5872977;0.058458,-0.07680385;-0.5556258;-0.03976415,0.005303216;0.3998488;0.007114999,0;0;0,0.001556661;0.1997152;0.01055544,0.00518168;0.4996311;0.01307588,0.1193722;0.3816656;-0.01206482,0.1694384;0.1885085;0.001490196,0.1832704;-0.05806464;-0.03737304,-0.106458;0.3653177;-0.01768922,-0.1568083;0.1718622;-0.01138034,-0.1890815;-0.07563584;-0.02563429,0.07372737;0.006631169;-0.0303365,0.0913589;-0.2916121;-0.003131302,0.0782802;-0.5837995;0.06361768,0.09077799;-0.6148441;0.006385017,-0.06761502;0.001670165;-0.04272492,-0.09655939;-0.2942673;-0.002934761,-0.09661835;-0.5879048;0.05852284,-0.09728332;-0.6149684;-0.005201161,0.003822617;0.3996562;0.01485404,83.44817
-0;0;0,0.002659877;0.1998689;0.00673498,0.006609617;0.4997646;0.003017975,0.1228017;0.3825468;-0.009709563,0.2092642;0.2067907;0.03071329,0.3465036;-0.001818523;0.04285945,-0.1060013;0.3669113;-0.02371887,-0.1563111;0.1737074;-0.01183698,-0.1807752;-0.07472464;-0.02536533,0.07389748;0.005248579;-0.03019296,0.1021471;-0.2924374;-0.006004877,0.09119732;-0.5843657;0.06224422,0.1057242;-0.6120337;0.0009526424,-0.06811867;0.002961845;-0.04184583,-0.088062;-0.2940006;-0.004221298,-0.08076464;-0.5873246;0.05829091,-0.07943053;-0.61787;-0.000959862,0.005233261;0.3998522;0.006969512,0;0;0,0.001556661;0.1997152;0.01055544,0.00518168;0.4996311;0.01307588,0.1193722;0.3816656;-0.01206482,0.1694384;0.1885085;0.001490196,0.1832704;-0.05806464;-0.03737304,-0.106458;0.3653177;-0.01768922,-0.1568083;0.1718622;-0.01138034,-0.1890815;-0.07563584;-0.02563429,0.07372737;0.006631169;-0.0303365,0.0913589;-0.2916121;-0.003131302,0.0782802;-0.5837995;0.06361768,0.09077799;-0.6148441;0.006385017,-0.06761502;0.001670165;-0.04272492,-0.09655939;-0.2942673;-0.002934761,-0.09661835;-0.5879048;0.05852284,-0.09728332;-0.6149684;-0.005201161,0.003822617;0.3996562;0.01485404,83.46055
-0;0;0,0.002659877;0.1998689;0.00673498,0.006609617;0.4997646;0.003017975,0.1228017;0.3825468;-0.009709563,0.2092642;0.2067907;0.03071329,0.3465036;-0.001818523;0.04285945,-0.1060013;0.3669113;-0.02371887,-0.1563111;0.1737074;-0.01183698,-0.1807752;-0.07472464;-0.02536533,0.07389748;0.005248579;-0.03019296,0.1021471;-0.2924374;-0.006004877,0.09119732;-0.5843657;0.06224422,0.1057242;-0.6120337;0.0009526424,-0.06811867;0.002961845;-0.04184583,-0.088062;-0.2940006;-0.004221298,-0.08076464;-0.5873246;0.05829091,-0.07943053;-0.61787;-0.000959862,0.005233261;0.3998522;0.006969512,0;0;0,0.001556661;0.1997152;0.01055544,0.00518168;0.4996311;0.01307588,0.1193722;0.3816656;-0.01206482,0.1694384;0.1885085;0.001490196,0.1832704;-0.05806464;-0.03737304,-0.106458;0.3653177;-0.01768922,-0.1568083;0.1718622;-0.01138034,-0.1890815;-0.07563584;-0.02563429,0.07372737;0.006631169;-0.0303365,0.0913589;-0.2916121;-0.003131302,0.0782802;-0.5837995;0.06361768,0.09077799;-0.6148441;0.006385017,-0.06761502;0.001670165;-0.04272492,-0.09655939;-0.2942673;-0.002934761,-0.09661835;-0.5879048;0.05852284,-0.09728332;-0.6149684;-0.005201161,0.003822617;0.3996562;0.01485404,83.48111
-0;0;0,0.002645132;0.1998684;0.006753193,0.006621985;0.4997645;0.003083477,0.1227945;0.3825698;-0.009750652,0.2079927;0.2060514;0.03003008,0.3439114;-0.003433853;0.04194769,-0.1060064;0.366987;-0.02372783,-0.1562922;0.1737801;-0.01179208,-0.1807182;-0.07465023;-0.02541985,0.07390273;0.005234997;-0.03018246,0.1023467;-0.292425;-0.005903056,0.09124239;-0.584321;0.06245936,0.1062922;-0.6109328;-2.370775E-05,-0.06812686;0.00298118;-0.04183114,-0.08786067;-0.2940097;-0.004320834,-0.08063567;-0.5873262;0.05823495,-0.07948302;-0.6179554;-0.0009055287,0.005235192;0.3998515;0.007016853,0;0;0,0.001468636;0.1997019;0.01081569,0.004912639;0.4996171;0.01357619,0.1190781;0.3814117;-0.01180846,0.1689379;0.1882083;0.001846266,0.1827214;-0.05831221;-0.03736666,-0.1066477;0.3651969;-0.01721998,-0.1569601;0.1717166;-0.01138608,-0.1893491;-0.07574531;-0.02599954,0.07373066;0.006645022;-0.03032547,0.09114793;-0.2915609;-0.002578646,0.0779248;-0.5837308;0.06421865,0.09049916;-0.6147135;0.006915268,-0.06765545;0.001665875;-0.04266104,-0.09692819;-0.2941795;-0.002428927,-0.09674834;-0.5877737;0.05923515,-0.09714331;-0.6154661;-0.003723048,0.003608781;0.3996404;0.01529404,83.49265
-0;0;0,0.002645132;0.1998684;0.006753193,0.006621985;0.4997645;0.003083477,0.1227945;0.3825698;-0.009750652,0.2079927;0.2060514;0.03003008,0.3439114;-0.003433853;0.04194769,-0.1060064;0.366987;-0.02372783,-0.1562922;0.1737801;-0.01179208,-0.1807182;-0.07465023;-0.02541985,0.07390273;0.005234997;-0.03018246,0.1023467;-0.292425;-0.005903056,0.09124239;-0.584321;0.06245936,0.1062922;-0.6109328;-2.370775E-05,-0.06812686;0.00298118;-0.04183114,-0.08786067;-0.2940097;-0.004320834,-0.08063567;-0.5873262;0.05823495,-0.07948302;-0.6179554;-0.0009055287,0.005235192;0.3998515;0.007016853,0;0;0,0.001468636;0.1997019;0.01081569,0.004912639;0.4996171;0.01357619,0.1190781;0.3814117;-0.01180846,0.1689379;0.1882083;0.001846266,0.1827214;-0.05831221;-0.03736666,-0.1066477;0.3651969;-0.01721998,-0.1569601;0.1717166;-0.01138608,-0.1893491;-0.07574531;-0.02599954,0.07373066;0.006645022;-0.03032547,0.09114793;-0.2915609;-0.002578646,0.0779248;-0.5837308;0.06421865,0.09049916;-0.6147135;0.006915268,-0.06765545;0.001665875;-0.04266104,-0.09692819;-0.2941795;-0.002428927,-0.09674834;-0.5877737;0.05923515,-0.09714331;-0.6154661;-0.003723048,0.003608781;0.3996404;0.01529404,83.51472
-0;0;0,0.00251741;0.1998706;0.006737155,0.006266403;0.4997695;0.003052975,0.1225383;0.3827633;-0.0098451,0.2068875;0.2057436;0.02951525,0.3420879;-0.004240289;0.0408129,-0.1063211;0.3671524;-0.02378135,-0.156588;0.1739389;-0.01187356,-0.1808346;-0.07450089;-0.0256489,0.07388113;0.005231616;-0.03023586,0.1024194;-0.2924264;-0.006043535,0.09130986;-0.5842967;0.0624277,0.105021;-0.6121601;0.001196206,-0.06815809;0.002980909;-0.04178024,-0.08770507;-0.2940413;-0.004421148,-0.08059279;-0.5873419;0.0582221,-0.07965138;-0.6180036;-0.0008778498,0.004960827;0.3998556;0.006989256,0;0;0,0.001468636;0.1997019;0.01081569,0.004912639;0.4996171;0.01357619,0.1190781;0.3814117;-0.01180846,0.1689379;0.1882083;0.001846266,0.1827214;-0.05831221;-0.03736666,-0.1066477;0.3651969;-0.01721998,-0.1569601;0.1717166;-0.01138608,-0.1893491;-0.07574531;-0.02599954,0.07373066;0.006645022;-0.03032547,0.09114793;-0.2915609;-0.002578646,0.0779248;-0.5837308;0.06421865,0.09049916;-0.6147135;0.006915268,-0.06765545;0.001665875;-0.04266104,-0.09692819;-0.2941795;-0.002428927,-0.09674834;-0.5877737;0.05923515,-0.09714331;-0.6154661;-0.003723048,0.003608781;0.3996404;0.01529404,83.53765
-0;0;0,0.002525786;0.1998702;0.006748007,0.006289628;0.4997689;0.003061847,0.1225429;0.3831268;-0.01026942,0.2060359;0.2056811;0.02899804,0.3397961;-0.005299434;0.03876796,-0.1063476;0.3673374;-0.02381915,-0.1564838;0.1740904;-0.01190468,-0.1806776;-0.07431346;-0.02640254,0.07389212;0.005253324;-0.03020522,0.1024065;-0.2924022;-0.005953509,0.09125302;-0.5842521;0.06259751,0.1051171;-0.6120408;0.001305636,-0.06813881;0.002961633;-0.04181304,-0.08771858;-0.2940647;-0.004503883,-0.08053721;-0.5874463;0.05775101,-0.08011913;-0.6168275;-0.003063846,0.004975867;0.399855;0.00699772,0;0;0,0.001468636;0.1997019;0.01081569,0.004912639;0.4996171;0.01357619,0.1190781;0.3814117;-0.01180846,0.1689379;0.1882083;0.001846266,0.1827214;-0.05831221;-0.03736666,-0.1066477;0.3651969;-0.01721998,-0.1569601;0.1717166;-0.01138608,-0.1893491;-0.07574531;-0.02599954,0.07373066;0.006645022;-0.03032547,0.09114793;-0.2915609;-0.002578646,0.0779248;-0.5837308;0.06421865,0.09049916;-0.6147135;0.006915268,-0.06765545;0.001665875;-0.04266104,-0.09692819;-0.2941795;-0.002428927,-0.09674834;-0.5877737;0.05923515,-0.09714331;-0.6154661;-0.003723048,0.003608781;0.3996404;0.01529404,83.55926
-0;0;0,0.002525786;0.1998702;0.006748007,0.006289628;0.4997689;0.003061847,0.1225429;0.3831268;-0.01026942,0.2060359;0.2056811;0.02899804,0.3397961;-0.005299434;0.03876796,-0.1063476;0.3673374;-0.02381915,-0.1564838;0.1740904;-0.01190468,-0.1806776;-0.07431346;-0.02640254,0.07389212;0.005253324;-0.03020522,0.1024065;-0.2924022;-0.005953509,0.09125302;-0.5842521;0.06259751,0.1051171;-0.6120408;0.001305636,-0.06813881;0.002961633;-0.04181304,-0.08771858;-0.2940647;-0.004503883,-0.08053721;-0.5874463;0.05775101,-0.08011913;-0.6168275;-0.003063846,0.004975867;0.399855;0.00699772,0;0;0,0.001473433;0.1996976;0.01089458,0.004869482;0.4996124;0.01373543,0.1190482;0.3814544;-0.01172773,0.1689422;0.1882588;0.00191231,0.1827213;-0.058144;-0.03803488,-0.1066455;0.3651655;-0.01714603,-0.1569737;0.1716854;-0.01144284,-0.1892966;-0.07573108;-0.02694429,0.07375084;0.006787338;-0.03024477,0.09114143;-0.2914203;-0.002499957,0.0780091;-0.5835844;0.06434105,0.09038678;-0.6145276;0.006939139,-0.06760391;0.001469704;-0.04274987,-0.09700449;-0.2943178;-0.002187051,-0.09667818;-0.5878824;0.05961715,-0.09717093;-0.6158041;-0.003056381,0.003584373;0.399635;0.01543058,83.57124
-0;0;0,0.00259986;0.199872;0.006666677,0.006489398;0.4997667;0.00281794,0.1227145;0.3829519;-0.01016894,0.2045082;0.2045966;0.02855027,0.3374209;-0.006960854;0.03736219,-0.1062451;0.3673473;-0.02381898,-0.1563421;0.1740706;-0.01222543,-0.1802517;-0.07435702;-0.02678682,0.07378565;0.005169191;-0.0304788,0.1025526;-0.2924365;-0.005916091,0.09145985;-0.5842528;0.06278782,0.1054612;-0.6114621;0.0007984452,-0.06820061;0.003015149;-0.04170833,-0.08743168;-0.2940473;-0.004505109,-0.08047722;-0.5874159;0.05783625,-0.07963633;-0.6177087;-0.001765393,0.005131365;0.3998559;0.006815491,0;0;0,0.001473433;0.1996976;0.01089458,0.004869482;0.4996124;0.01373543,0.1190482;0.3814544;-0.01172773,0.1689422;0.1882588;0.00191231,0.1827213;-0.058144;-0.03803488,-0.1066455;0.3651655;-0.01714603,-0.1569737;0.1716854;-0.01144284,-0.1892966;-0.07573108;-0.02694429,0.07375084;0.006787338;-0.03024477,0.09114143;-0.2914203;-0.002499957,0.0780091;-0.5835844;0.06434105,0.09038678;-0.6145276;0.006939139,-0.06760391;0.001469704;-0.04274987,-0.09700449;-0.2943178;-0.002187051,-0.09667818;-0.5878824;0.05961715,-0.09717093;-0.6158041;-0.003056381,0.003584373;0.399635;0.01543058,83.59299
-0;0;0,0.00259986;0.199872;0.006666677,0.006489398;0.4997667;0.00281794,0.1227145;0.3829519;-0.01016894,0.2045082;0.2045966;0.02855027,0.3374209;-0.006960854;0.03736219,-0.1062451;0.3673473;-0.02381898,-0.1563421;0.1740706;-0.01222543,-0.1802517;-0.07435702;-0.02678682,0.07378565;0.005169191;-0.0304788,0.1025526;-0.2924365;-0.005916091,0.09145985;-0.5842528;0.06278782,0.1054612;-0.6114621;0.0007984452,-0.06820061;0.003015149;-0.04170833,-0.08743168;-0.2940473;-0.004505109,-0.08047722;-0.5874159;0.05783625,-0.07963633;-0.6177087;-0.001765393,0.005131365;0.3998559;0.006815491,0;0;0,0.001473397;0.1996994;0.01086245,0.004782328;0.4996154;0.01366986,0.1190526;0.3815119;-0.01158983,0.1688605;0.1882805;0.001855993,0.182787;-0.05810006;-0.03817735,-0.1067613;0.3652513;-0.01705937,-0.1569885;0.1717344;-0.011726,-0.1893185;-0.07566322;-0.02751163,0.07375357;0.006754044;-0.03024554,0.09113319;-0.2914461;-0.002412841,0.07796396;-0.583609;0.06442551,0.09026298;-0.6146079;0.007085107,-0.06761095;0.0015093;-0.04273736,-0.09714733;-0.294251;-0.002074439,-0.09658492;-0.5877961;0.05982023,-0.09498543;-0.5554986;-0.03858741,0.003535505;0.3996378;0.01537795,83.60471
-0;0;0,0.00259986;0.199872;0.006666677,0.006489398;0.4997667;0.00281794,0.1227145;0.3829519;-0.01016894,0.2045082;0.2045966;0.02855027,0.3374209;-0.006960854;0.03736219,-0.1062451;0.3673473;-0.02381898,-0.1563421;0.1740706;-0.01222543,-0.1802517;-0.07435702;-0.02678682,0.07378565;0.005169191;-0.0304788,0.1025526;-0.2924365;-0.005916091,0.09145985;-0.5842528;0.06278782,0.1054612;-0.6114621;0.0007984452,-0.06820061;0.003015149;-0.04170833,-0.08743168;-0.2940473;-0.004505109,-0.08047722;-0.5874159;0.05783625,-0.07963633;-0.6177087;-0.001765393,0.005131365;0.3998559;0.006815491,0;0;0,0.001473397;0.1996994;0.01086245,0.004782328;0.4996154;0.01366986,0.1190526;0.3815119;-0.01158983,0.1688605;0.1882805;0.001855993,0.182787;-0.05810006;-0.03817735,-0.1067613;0.3652513;-0.01705937,-0.1569885;0.1717344;-0.011726,-0.1893185;-0.07566322;-0.02751163,0.07375357;0.006754044;-0.03024554,0.09113319;-0.2914461;-0.002412841,0.07796396;-0.583609;0.06442551,0.09026298;-0.6146079;0.007085107,-0.06761095;0.0015093;-0.04273736,-0.09714733;-0.294251;-0.002074439,-0.09658492;-0.5877961;0.05982023,-0.09498543;-0.5554986;-0.03858741,0.003535505;0.3996378;0.01537795,83.61565
-0;0;0,0.002577339;0.1998693;0.00675443,0.006479483;0.4997654;0.003029638,0.1226384;0.3831421;-0.01059329,0.2034462;0.2042671;0.02779725,0.3341256;-0.008751333;0.03458291,-0.1062492;0.3672633;-0.02360556,-0.1562203;0.1739501;-0.01207691,-0.1801715;-0.07444485;-0.02711919,0.07371695;0.005270386;-0.03062735,0.102478;-0.2923301;-0.00599538,0.09156183;-0.5841256;0.06282517,0.1054348;-0.6114285;0.0009236597,-0.06826003;0.002956144;-0.04161525,-0.08743243;-0.2941237;-0.004520781,-0.08051573;-0.5874602;0.05797585,-0.08044404;-0.6179577;-0.001355037,0.005115239;0.3998531;0.006986322,0;0;0,0.001473397;0.1996994;0.01086245,0.004782328;0.4996154;0.01366986,0.1190526;0.3815119;-0.01158983,0.1688605;0.1882805;0.001855993,0.182787;-0.05810006;-0.03817735,-0.1067613;0.3652513;-0.01705937,-0.1569885;0.1717344;-0.011726,-0.1893185;-0.07566322;-0.02751163,0.07375357;0.006754044;-0.03024554,0.09113319;-0.2914461;-0.002412841,0.07796396;-0.583609;0.06442551,0.09026298;-0.6146079;0.007085107,-0.06761095;0.0015093;-0.04273736,-0.09714733;-0.294251;-0.002074439,-0.09658492;-0.5877961;0.05982023,-0.09498543;-0.5554986;-0.03858741,0.003535505;0.3996378;0.01537795,83.63757
-0;0;0,0.002577339;0.1998693;0.00675443,0.006479483;0.4997654;0.003029638,0.1226384;0.3831421;-0.01059329,0.2034462;0.2042671;0.02779725,0.3341256;-0.008751333;0.03458291,-0.1062492;0.3672633;-0.02360556,-0.1562203;0.1739501;-0.01207691,-0.1801715;-0.07444485;-0.02711919,0.07371695;0.005270386;-0.03062735,0.102478;-0.2923301;-0.00599538,0.09156183;-0.5841256;0.06282517,0.1054348;-0.6114285;0.0009236597,-0.06826003;0.002956144;-0.04161525,-0.08743243;-0.2941237;-0.004520781,-0.08051573;-0.5874602;0.05797585,-0.08044404;-0.6179577;-0.001355037,0.005115239;0.3998531;0.006986322,0;0;0,0.001487802;0.1996965;0.01091302,0.004803951;0.499612;0.01378434,0.1190612;0.3815592;-0.01158397,0.1688067;0.1882875;0.001508615,0.1828899;-0.05812736;-0.03825809,-0.106785;0.3655086;-0.01709604,-0.1568988;0.1719545;-0.01205317,-0.1893088;-0.07539971;-0.02834712,0.07374916;0.006764747;-0.0302539,0.09118316;-0.2914289;-0.002385903,0.0779195;-0.5835807;0.06448247,0.09025232;-0.614611;0.007193703,-0.06762628;0.001504857;-0.04271324,-0.09729242;-0.2942474;-0.002086587,-0.09652483;-0.5878226;0.05966333,-0.09864081;-0.6170027;-0.001377802,0.003555739;0.399634;0.01546751,83.64902
-0;0;0,0.002586841;0.1998715;0.006686268,0.006548801;0.4997655;0.002855637,0.1227047;0.3829902;-0.0104525,0.2019197;0.2031118;0.02654373,0.3326808;-0.009843603;0.03372325,-0.1062655;0.3673217;-0.02357677,-0.1561388;0.1739861;-0.01200063,-0.1798343;-0.07442306;-0.02721239,0.07363588;0.005334514;-0.03081071,0.1025969;-0.2922306;-0.005985869,0.09166686;-0.5840037;0.06292693,0.1056123;-0.6111718;0.000873629,-0.06831963;0.002899698;-0.04152133,-0.08716965;-0.2942214;-0.004592348,-0.0804581;-0.587552;0.05795432,-0.08070134;-0.6175508;-0.002046756,0.005161722;0.3998548;0.006846257,0;0;0,0.001487802;0.1996965;0.01091302,0.004803951;0.499612;0.01378434,0.1190612;0.3815592;-0.01158397,0.1688067;0.1882875;0.001508615,0.1828899;-0.05812736;-0.03825809,-0.106785;0.3655086;-0.01709604,-0.1568988;0.1719545;-0.01205317,-0.1893088;-0.07539971;-0.02834712,0.07374916;0.006764747;-0.0302539,0.09118316;-0.2914289;-0.002385903,0.0779195;-0.5835807;0.06448247,0.09025232;-0.614611;0.007193703,-0.06762628;0.001504857;-0.04271324,-0.09729242;-0.2942474;-0.002086587,-0.09652483;-0.5878226;0.05966333,-0.09864081;-0.6170027;-0.001377802,0.003555739;0.399634;0.01546751,83.66013
-0;0;0,0.002586841;0.1998715;0.006686268,0.006548801;0.4997655;0.002855637,0.1227047;0.3829902;-0.0104525,0.2019197;0.2031118;0.02654373,0.3326808;-0.009843603;0.03372325,-0.1062655;0.3673217;-0.02357677,-0.1561388;0.1739861;-0.01200063,-0.1798343;-0.07442306;-0.02721239,0.07363588;0.005334514;-0.03081071,0.1025969;-0.2922306;-0.005985869,0.09166686;-0.5840037;0.06292693,0.1056123;-0.6111718;0.000873629,-0.06831963;0.002899698;-0.04152133,-0.08716965;-0.2942214;-0.004592348,-0.0804581;-0.587552;0.05795432,-0.08070134;-0.6175508;-0.002046756,0.005161722;0.3998548;0.006846257,0;0;0,0.001487802;0.1996965;0.01091302,0.004803951;0.499612;0.01378434,0.1190612;0.3815592;-0.01158397,0.1688067;0.1882875;0.001508615,0.1828899;-0.05812736;-0.03825809,-0.106785;0.3655086;-0.01709604,-0.1568988;0.1719545;-0.01205317,-0.1893088;-0.07539971;-0.02834712,0.07374916;0.006764747;-0.0302539,0.09118316;-0.2914289;-0.002385903,0.0779195;-0.5835807;0.06448247,0.09025232;-0.614611;0.007193703,-0.06762628;0.001504857;-0.04271324,-0.09729242;-0.2942474;-0.002086587,-0.09652483;-0.5878226;0.05966333,-0.09864081;-0.6170027;-0.001377802,0.003555739;0.399634;0.01546751,83.68239
-0;0;0,0.002561112;0.1998719;0.006684138,0.006502542;0.4997665;0.002866309,0.1226224;0.3825815;-0.01033153,0.2017672;0.2025937;0.02628147,0.3299257;-0.0119715;0.0323781,-0.1062722;0.367311;-0.02368153,-0.1560722;0.173953;-0.01216397,-0.1799046;-0.07441385;-0.02784572,0.07362868;0.005342824;-0.03082646,0.1026363;-0.2922353;-0.006212704,0.09164981;-0.583957;0.06290882,0.105677;-0.6113065;0.001100376,-0.06833836;0.002898229;-0.0414906,-0.08688059;-0.2942427;-0.004565593,-0.08058166;-0.5875928;0.05793303,-0.08077152;-0.6169353;-0.002933525,0.00512187;0.3998554;0.006850724,0;0;0,0.001428599;0.1996906;0.01102905,0.004640966;0.4996057;0.01401672,0.1189454;0.3814882;-0.01127503,0.1685196;0.1881366;0.001276208,0.1830944;-0.05823895;-0.03855679,-0.1068764;0.3654606;-0.01698552,-0.1570487;0.1719188;-0.01205738,-0.1893329;-0.07536121;-0.02967391,0.07371915;0.006898942;-0.03029671,0.09087867;-0.2912777;-0.002078876,0.07763939;-0.5834188;0.06484125,0.09011136;-0.6141319;0.007136341,-0.06767307;0.001398451;-0.04264269,-0.09757259;-0.294302;-0.001810126,-0.09672248;-0.5878655;0.0599938,-0.09912512;-0.6163186;-0.001968581,0.003424793;0.3996268;0.0156691,83.69373
-0;0;0,0.002561112;0.1998719;0.006684138,0.006502542;0.4997665;0.002866309,0.1226224;0.3825815;-0.01033153,0.2017672;0.2025937;0.02628147,0.3299257;-0.0119715;0.0323781,-0.1062722;0.367311;-0.02368153,-0.1560722;0.173953;-0.01216397,-0.1799046;-0.07441385;-0.02784572,0.07362868;0.005342824;-0.03082646,0.1026363;-0.2922353;-0.006212704,0.09164981;-0.583957;0.06290882,0.105677;-0.6113065;0.001100376,-0.06833836;0.002898229;-0.0414906,-0.08688059;-0.2942427;-0.004565593,-0.08058166;-0.5875928;0.05793303,-0.08077152;-0.6169353;-0.002933525,0.00512187;0.3998554;0.006850724,0;0;0,0.001428599;0.1996906;0.01102905,0.004640966;0.4996057;0.01401672,0.1189454;0.3814882;-0.01127503,0.1685196;0.1881366;0.001276208,0.1830944;-0.05823895;-0.03855679,-0.1068764;0.3654606;-0.01698552,-0.1570487;0.1719188;-0.01205738,-0.1893329;-0.07536121;-0.02967391,0.07371915;0.006898942;-0.03029671,0.09087867;-0.2912777;-0.002078876,0.07763939;-0.5834188;0.06484125,0.09011136;-0.6141319;0.007136341,-0.06767307;0.001398451;-0.04264269,-0.09757259;-0.294302;-0.001810126,-0.09672248;-0.5878655;0.0599938,-0.09912512;-0.6163186;-0.001968581,0.003424793;0.3996268;0.0156691,83.70511
-0;0;0,0.002607266;0.1998717;0.006672695,0.006623779;0.4997652;0.002848193,0.1227042;0.382266;-0.01013651,0.2016064;0.202084;0.02604206,0.3282772;-0.01337647;0.03163885,-0.1062124;0.3673072;-0.02355699,-0.1559624;0.1739171;-0.01236909,-0.1797142;-0.07447581;-0.02775858,0.07361903;0.005367539;-0.03084522,0.1028075;-0.2921712;-0.005970825,0.09178549;-0.5838683;0.06324884,0.1056007;-0.6112972;0.001492038,-0.06837098;0.002885562;-0.04143768,-0.08745306;-0.2941582;-0.004009303,-0.08020305;-0.5875388;0.05824232,-0.07985995;-0.6174872;-0.0018255,0.005219541;0.3998545;0.006833856,0;0;0,0.001428599;0.1996906;0.01102905,0.004640966;0.4996057;0.01401672,0.1189454;0.3814882;-0.01127503,0.1685196;0.1881366;0.001276208,0.1830944;-0.05823895;-0.03855679,-0.1068764;0.3654606;-0.01698552,-0.1570487;0.1719188;-0.01205738,-0.1893329;-0.07536121;-0.02967391,0.07371915;0.006898942;-0.03029671,0.09087867;-0.2912777;-0.002078876,0.07763939;-0.5834188;0.06484125,0.09011136;-0.6141319;0.007136341,-0.06767307;0.001398451;-0.04264269,-0.09757259;-0.294302;-0.001810126,-0.09672248;-0.5878655;0.0599938,-0.09912512;-0.6163186;-0.001968581,0.003424793;0.3996268;0.0156691,83.727
-0;0;0,0.002607266;0.1998717;0.006672695,0.006623779;0.4997652;0.002848193,0.1227042;0.382266;-0.01013651,0.2016064;0.202084;0.02604206,0.3282772;-0.01337647;0.03163885,-0.1062124;0.3673072;-0.02355699,-0.1559624;0.1739171;-0.01236909,-0.1797142;-0.07447581;-0.02775858,0.07361903;0.005367539;-0.03084522,0.1028075;-0.2921712;-0.005970825,0.09178549;-0.5838683;0.06324884,0.1056007;-0.6112972;0.001492038,-0.06837098;0.002885562;-0.04143768,-0.08745306;-0.2941582;-0.004009303,-0.08020305;-0.5875388;0.05824232,-0.07985995;-0.6174872;-0.0018255,0.005219541;0.3998545;0.006833856,0;0;0,0.001398405;0.1996859;0.01111759,0.004527149;0.4996006;0.0142063,0.1188654;0.3814379;-0.01105596,0.1684833;0.1880796;0.001216549,0.1834308;-0.05810456;-0.03964845,-0.1069246;0.3653882;-0.01688314,-0.1570059;0.1718084;-0.0125575,-0.1892564;-0.0753677;-0.03163336,0.07364147;0.0070373;-0.0304534,0.09068623;-0.2911272;-0.002038343,0.07742409;-0.5832245;0.06506804,0.08997806;-0.6137701;0.007147368,-0.06770825;0.001257928;-0.0425912,-0.09792271;-0.2944004;-0.001685698,-0.09662691;-0.5879424;0.06021244,-0.09951846;-0.6174509;-0.0003684014,0.003338443;0.3996209;0.01583072,83.74922
-0;0;0,0.00260931;0.1998705;0.00670768,0.006648356;0.4997644;0.002936753,0.1227084;0.3821182;-0.0100006,0.2009659;0.2016078;0.02594065,0.3258455;-0.01492916;0.03004128,-0.1061705;0.3673031;-0.02357464,-0.1560036;0.1739351;-0.01237168,-0.1797567;-0.07444529;-0.02795849,0.07355961;0.005366544;-0.03098682,0.102837;-0.2921464;-0.005908778,0.09163614;-0.5838845;0.06310882,0.1056925;-0.6114561;0.001585975,-0.06841789;0.002889103;-0.04135995,-0.08769029;-0.2941408;-0.003918875,-0.08017971;-0.5875082;0.05836416,-0.08004706;-0.6181912;-0.0007139817,0.005236389;0.3998531;0.006904759,0;0;0,0.001398405;0.1996859;0.01111759,0.004527149;0.4996006;0.0142063,0.1188654;0.3814379;-0.01105596,0.1684833;0.1880796;0.001216549,0.1834308;-0.05810456;-0.03964845,-0.1069246;0.3653882;-0.01688314,-0.1570059;0.1718084;-0.0125575,-0.1892564;-0.0753677;-0.03163336,0.07364147;0.0070373;-0.0304534,0.09068623;-0.2911272;-0.002038343,0.07742409;-0.5832245;0.06506804,0.08997806;-0.6137701;0.007147368,-0.06770825;0.001257928;-0.0425912,-0.09792271;-0.2944004;-0.001685698,-0.09662691;-0.5879424;0.06021244,-0.09951846;-0.6174509;-0.0003684014,0.003338443;0.3996209;0.01583072,83.76066
-0;0;0,0.00260931;0.1998705;0.00670768,0.006648356;0.4997644;0.002936753,0.1227084;0.3821182;-0.0100006,0.2009659;0.2016078;0.02594065,0.3258455;-0.01492916;0.03004128,-0.1061705;0.3673031;-0.02357464,-0.1560036;0.1739351;-0.01237168,-0.1797567;-0.07444529;-0.02795849,0.07355961;0.005366544;-0.03098682,0.102837;-0.2921464;-0.005908778,0.09163614;-0.5838845;0.06310882,0.1056925;-0.6114561;0.001585975,-0.06841789;0.002889103;-0.04135995,-0.08769029;-0.2941408;-0.003918875,-0.08017971;-0.5875082;0.05836416,-0.08004706;-0.6181912;-0.0007139817,0.005236389;0.3998531;0.006904759,0;0;0,0.001398405;0.1996859;0.01111759,0.004527149;0.4996006;0.0142063,0.1188654;0.3814379;-0.01105596,0.1684833;0.1880796;0.001216549,0.1834308;-0.05810456;-0.03964845,-0.1069246;0.3653882;-0.01688314,-0.1570059;0.1718084;-0.0125575,-0.1892564;-0.0753677;-0.03163336,0.07364147;0.0070373;-0.0304534,0.09068623;-0.2911272;-0.002038343,0.07742409;-0.5832245;0.06506804,0.08997806;-0.6137701;0.007147368,-0.06770825;0.001257928;-0.0425912,-0.09792271;-0.2944004;-0.001685698,-0.09662691;-0.5879424;0.06021244,-0.09951846;-0.6174509;-0.0003684014,0.003338443;0.3996209;0.01583072,83.78273
-0;0;0,0.002927978;0.1998559;0.007004163,0.008776483;0.4997475;0.005281246,0.1236808;0.3806759;-0.009799955,0.200744;0.1993884;0.02478451,0.3254951;-0.0172234;0.02884882,-0.1044102;0.3667698;-0.02299513,-0.1541968;0.17339;-0.01179071,-0.1779307;-0.0749971;-0.02730083,0.07355643;0.005367581;-0.0309942,0.1027728;-0.2921441;-0.005830659,0.09157965;-0.583922;0.06301972,0.1065084;-0.6126575;0.003204614,-0.06843898;0.002892899;-0.04132478,-0.08769128;-0.2941705;-0.00414056,-0.0801093;-0.5873903;0.05882521,-0.07605337;-0.5556657;-0.03940697,0.006613611;0.3998175;0.008334918,0;0;0,0.001440001;0.1996809;0.01120144,0.004571648;0.4995949;0.01435282,0.1189041;0.3814494;-0.01096964,0.168694;0.1881012;0.0007535042,0.1838949;-0.05794321;-0.04085266,-0.1068167;0.3653194;-0.01690042,-0.1567865;0.1716939;-0.01340847,-0.1890353;-0.07541032;-0.0333968,0.07354611;0.00703816;-0.03068279,0.09070116;-0.291081;-0.001860851,0.07741763;-0.5831781;0.06524213,0.09004644;-0.6138557;0.007521752,-0.06777995;0.001236665;-0.04247763,-0.09806506;-0.2944168;-0.00158944,-0.09662929;-0.5879565;0.06031659,-0.1001192;-0.6171376;-0.0006602816,0.003383817;0.3996149;0.01595779,83.79404
-0;0;0,0.002927978;0.1998559;0.007004163,0.008776483;0.4997475;0.005281246,0.1236808;0.3806759;-0.009799955,0.200744;0.1993884;0.02478451,0.3254951;-0.0172234;0.02884882,-0.1044102;0.3667698;-0.02299513,-0.1541968;0.17339;-0.01179071,-0.1779307;-0.0749971;-0.02730083,0.07355643;0.005367581;-0.0309942,0.1027728;-0.2921441;-0.005830659,0.09157965;-0.583922;0.06301972,0.1065084;-0.6126575;0.003204614,-0.06843898;0.002892899;-0.04132478,-0.08769128;-0.2941705;-0.00414056,-0.0801093;-0.5873903;0.05882521,-0.07605337;-0.5556657;-0.03940697,0.006613611;0.3998175;0.008334918,0;0;0,0.001440001;0.1996809;0.01120144,0.004571648;0.4995949;0.01435282,0.1189041;0.3814494;-0.01096964,0.168694;0.1881012;0.0007535042,0.1838949;-0.05794321;-0.04085266,-0.1068167;0.3653194;-0.01690042,-0.1567865;0.1716939;-0.01340847,-0.1890353;-0.07541032;-0.0333968,0.07354611;0.00703816;-0.03068279,0.09070116;-0.291081;-0.001860851,0.07741763;-0.5831781;0.06524213,0.09004644;-0.6138557;0.007521752,-0.06777995;0.001236665;-0.04247763,-0.09806506;-0.2944168;-0.00158944,-0.09662929;-0.5879565;0.06031659,-0.1001192;-0.6171376;-0.0006602816,0.003383817;0.3996149;0.01595779,83.80579
-0;0;0,0.002811561;0.1998549;0.007080717,0.008146727;0.4997524;0.005087976,0.1234006;0.3809749;-0.00953417,0.2000308;0.1994428;0.02472857,0.3216463;-0.01895317;0.02831392,-0.1048705;0.3669781;-0.02295496,-0.1546667;0.1736032;-0.01170812,-0.1783696;-0.07477784;-0.02736179,0.07347985;0.005373418;-0.03117433,0.1024569;-0.2921214;-0.005538912,0.09132499;-0.5838883;0.06336808,0.1060834;-0.6126817;0.00358694,-0.06854326;0.002898687;-0.04115117,-0.08767831;-0.2942111;-0.004278366,-0.08030894;-0.5873448;0.0591122,-0.08024445;-0.6182671;0.000362128,0.006237853;0.3998219;0.0082895,0;0;0,0.001440001;0.1996809;0.01120144,0.004571648;0.4995949;0.01435282,0.1189041;0.3814494;-0.01096964,0.168694;0.1881012;0.0007535042,0.1838949;-0.05794321;-0.04085266,-0.1068167;0.3653194;-0.01690042,-0.1567865;0.1716939;-0.01340847,-0.1890353;-0.07541032;-0.0333968,0.07354611;0.00703816;-0.03068279,0.09070116;-0.291081;-0.001860851,0.07741763;-0.5831781;0.06524213,0.09004644;-0.6138557;0.007521752,-0.06777995;0.001236665;-0.04247763,-0.09806506;-0.2944168;-0.00158944,-0.09662929;-0.5879565;0.06031659,-0.1001192;-0.6171376;-0.0006602816,0.003383817;0.3996149;0.01595779,83.82742
-0;0;0,0.002811561;0.1998549;0.007080717,0.008146727;0.4997524;0.005087976,0.1234006;0.3809749;-0.00953417,0.2000308;0.1994428;0.02472857,0.3216463;-0.01895317;0.02831392,-0.1048705;0.3669781;-0.02295496,-0.1546667;0.1736032;-0.01170812,-0.1783696;-0.07477784;-0.02736179,0.07347985;0.005373418;-0.03117433,0.1024569;-0.2921214;-0.005538912,0.09132499;-0.5838883;0.06336808,0.1060834;-0.6126817;0.00358694,-0.06854326;0.002898687;-0.04115117,-0.08767831;-0.2942111;-0.004278366,-0.08030894;-0.5873448;0.0591122,-0.08024445;-0.6182671;0.000362128,0.006237853;0.3998219;0.0082895,0;0;0,0.001558914;0.1996681;0.01141139,0.004768011;0.4995801;0.01470284,0.119032;0.3814584;-0.01083994,0.1691727;0.188192;0.0007371521,0.1849198;-0.05762087;-0.04201842,-0.1066747;0.3654012;-0.01663448,-0.1566368;0.171765;-0.01366205,-0.1893136;-0.07512926;-0.03546637,0.07358884;0.006916451;-0.03060792,0.09090012;-0.2911672;-0.001514019,0.07758833;-0.5831661;0.06600983,0.08943591;-0.61524;0.01012151,-0.06775802;0.001380909;-0.04250817,-0.09792901;-0.294235;-0.001265261,-0.09624582;-0.5878046;0.06049308,-0.09962876;-0.6179672;0.000806313,0.003546945;0.3995996;0.0162542,83.83904
-0;0;0,0.002811561;0.1998549;0.007080717,0.008146727;0.4997524;0.005087976,0.1234006;0.3809749;-0.00953417,0.2000308;0.1994428;0.02472857,0.3216463;-0.01895317;0.02831392,-0.1048705;0.3669781;-0.02295496,-0.1546667;0.1736032;-0.01170812,-0.1783696;-0.07477784;-0.02736179,0.07347985;0.005373418;-0.03117433,0.1024569;-0.2921214;-0.005538912,0.09132499;-0.5838883;0.06336808,0.1060834;-0.6126817;0.00358694,-0.06854326;0.002898687;-0.04115117,-0.08767831;-0.2942111;-0.004278366,-0.08030894;-0.5873448;0.0591122,-0.08024445;-0.6182671;0.000362128,0.006237853;0.3998219;0.0082895,0;0;0,0.001558914;0.1996681;0.01141139,0.004768011;0.4995801;0.01470284,0.119032;0.3814584;-0.01083994,0.1691727;0.188192;0.0007371521,0.1849198;-0.05762087;-0.04201842,-0.1066747;0.3654012;-0.01663448,-0.1566368;0.171765;-0.01366205,-0.1893136;-0.07512926;-0.03546637,0.07358884;0.006916451;-0.03060792,0.09090012;-0.2911672;-0.001514019,0.07758833;-0.5831661;0.06600983,0.08943591;-0.61524;0.01012151,-0.06775802;0.001380909;-0.04250817,-0.09792901;-0.294235;-0.001265261,-0.09624582;-0.5878046;0.06049308,-0.09962876;-0.6179672;0.000806313,0.003546945;0.3995996;0.0162542,83.85023
-0;0;0,0.002864029;0.1998534;0.007100064,0.008168556;0.4997509;0.005068259,0.1233947;0.3811196;-0.009989853,0.1991999;0.1992248;0.02418412,0.3211058;-0.01899812;0.0283934,-0.1048152;0.3669073;-0.02292818,-0.1546214;0.1735386;-0.01161843,-0.178266;-0.07484756;-0.02727796,0.07348917;0.005394592;-0.03114868,0.10258;-0.2920842;-0.005456612,0.09140498;-0.58385;0.06344817,0.1063171;-0.612796;0.003906969,-0.06856047;0.002879537;-0.04112383,-0.08731238;-0.2942679;-0.004357107,-0.08011624;-0.5874043;0.05904083,-0.08047141;-0.6178324;-0.0003829747,0.00627925;0.3998207;0.008292439,0;0;0,0.001558914;0.1996681;0.01141139,0.004768011;0.4995801;0.01470284,0.119032;0.3814584;-0.01083994,0.1691727;0.188192;0.0007371521,0.1849198;-0.05762087;-0.04201842,-0.1066747;0.3654012;-0.01663448,-0.1566368;0.171765;-0.01366205,-0.1893136;-0.07512926;-0.03546637,0.07358884;0.006916451;-0.03060792,0.09090012;-0.2911672;-0.001514019,0.07758833;-0.5831661;0.06600983,0.08943591;-0.61524;0.01012151,-0.06775802;0.001380909;-0.04250817,-0.09792901;-0.294235;-0.001265261,-0.09624582;-0.5878046;0.06049308,-0.09962876;-0.6179672;0.000806313,0.003546945;0.3995996;0.0162542,83.87228
-0;0;0,0.002864029;0.1998534;0.007100064,0.008168556;0.4997509;0.005068259,0.1233947;0.3811196;-0.009989853,0.1991999;0.1992248;0.02418412,0.3211058;-0.01899812;0.0283934,-0.1048152;0.3669073;-0.02292818,-0.1546214;0.1735386;-0.01161843,-0.178266;-0.07484756;-0.02727796,0.07348917;0.005394592;-0.03114868,0.10258;-0.2920842;-0.005456612,0.09140498;-0.58385;0.06344817,0.1063171;-0.612796;0.003906969,-0.06856047;0.002879537;-0.04112383,-0.08731238;-0.2942679;-0.004357107,-0.08011624;-0.5874043;0.05904083,-0.08047141;-0.6178324;-0.0003829747,0.00627925;0.3998207;0.008292439,0;0;0,0.001527626;0.1996595;0.01156479,0.004611496;0.4995701;0.01506508,0.1189288;0.3814451;-0.01051376,0.1692923;0.1882184;0.0007545771,0.1857502;-0.05700563;-0.04500912,-0.1067854;0.3653339;-0.01626511,-0.156728;0.1716841;-0.01391938,-0.1903812;-0.0745469;-0.04108071,0.07358958;0.00705108;-0.03057541,0.09056053;-0.2910237;-0.001191782,0.07713614;-0.5830019;0.06639931,0.0893999;-0.6140737;0.009154633,-0.06779087;0.001265459;-0.04245935,-0.09815928;-0.2942958;-0.0009704083,-0.09653406;-0.5878266;0.0609735,-0.099631;-0.6176568;0.0008274727,0.003438614;0.3995881;0.01655743,83.88345
-0;0;0,0.002858523;0.1998587;0.006953713,0.008036556;0.4997503;0.004258233,0.1233293;0.3809918;-0.01033694,0.198582;0.1988413;0.02369591,0.3203203;-0.01948449;0.02738945,-0.1049983;0.3669232;-0.02304715,-0.1546134;0.1734935;-0.01194257,-0.1784719;-0.07488477;-0.02740205,0.07349464;0.005388963;-0.03113674,0.1025575;-0.2921055;-0.00559493,0.09142619;-0.583822;0.06352496,0.1059078;-0.613102;0.00432216,-0.06857321;0.002884973;-0.04110222,-0.08732841;-0.2942663;-0.004368618,-0.0801015;-0.5874128;0.05897903,-0.08049275;-0.6177559;-0.0005594566,0.006209369;0.3998289;0.007776069,0;0;0,0.001527626;0.1996595;0.01156479,0.004611496;0.4995701;0.01506508,0.1189288;0.3814451;-0.01051376,0.1692923;0.1882184;0.0007545771,0.1857502;-0.05700563;-0.04500912,-0.1067854;0.3653339;-0.01626511,-0.156728;0.1716841;-0.01391938,-0.1903812;-0.0745469;-0.04108071,0.07358958;0.00705108;-0.03057541,0.09056053;-0.2910237;-0.001191782,0.07713614;-0.5830019;0.06639931,0.0893999;-0.6140737;0.009154633,-0.06779087;0.001265459;-0.04245935,-0.09815928;-0.2942958;-0.0009704083,-0.09653406;-0.5878266;0.0609735,-0.099631;-0.6176568;0.0008274727,0.003438614;0.3995881;0.01655743,83.90573
-0;0;0,0.002858523;0.1998587;0.006953713,0.008036556;0.4997503;0.004258233,0.1233293;0.3809918;-0.01033694,0.198582;0.1988413;0.02369591,0.3203203;-0.01948449;0.02738945,-0.1049983;0.3669232;-0.02304715,-0.1546134;0.1734935;-0.01194257,-0.1784719;-0.07488477;-0.02740205,0.07349464;0.005388963;-0.03113674,0.1025575;-0.2921055;-0.00559493,0.09142619;-0.583822;0.06352496,0.1059078;-0.613102;0.00432216,-0.06857321;0.002884973;-0.04110222,-0.08732841;-0.2942663;-0.004368618,-0.0801015;-0.5874128;0.05897903,-0.08049275;-0.6177559;-0.0005594566,0.006209369;0.3998289;0.007776069,0;0;0,0.001527626;0.1996595;0.01156479,0.004611496;0.4995701;0.01506508,0.1189288;0.3814451;-0.01051376,0.1692923;0.1882184;0.0007545771,0.1857502;-0.05700563;-0.04500912,-0.1067854;0.3653339;-0.01626511,-0.156728;0.1716841;-0.01391938,-0.1903812;-0.0745469;-0.04108071,0.07358958;0.00705108;-0.03057541,0.09056053;-0.2910237;-0.001191782,0.07713614;-0.5830019;0.06639931,0.0893999;-0.6140737;0.009154633,-0.06779087;0.001265459;-0.04245935,-0.09815928;-0.2942958;-0.0009704083,-0.09653406;-0.5878266;0.0609735,-0.099631;-0.6176568;0.0008274727,0.003438614;0.3995881;0.01655743,83.9174
-0;0;0,0.002876558;0.1998594;0.00692356,0.008016302;0.4997485;0.003993353,0.1233588;0.3811767;-0.01047945,0.1981569;0.1987903;0.02329099,0.3196288;-0.01968603;0.02685035,-0.1051028;0.3671424;-0.02307086,-0.1546899;0.1737067;-0.01194605,-0.1784305;-0.07468243;-0.02741225,0.07349625;0.005389799;-0.03113279,0.1026417;-0.2920869;-0.005478371,0.09146738;-0.5837988;0.06365456,0.1058137;-0.613311;0.004730951,-0.06858331;0.002880084;-0.0410857,-0.08715619;-0.294306;-0.004541852,-0.07980356;-0.5872527;0.05970944,-0.08028171;-0.6173118;-0.0002097264,0.006206781;0.3998305;0.007615598,0;0;0,0.001235436;0.199649;0.01177909,0.004134468;0.4995597;0.015422,0.1185065;0.3816957;-0.01041646,0.1691148;0.1885121;0.0004875818,0.1867986;-0.05583924;-0.04930877,-0.1070453;0.3650055;-0.016138,-0.1573338;0.1714375;-0.01455706,-0.19104;-0.07436247;-0.04531869,0.07350115;0.007013288;-0.03079602,0.08997747;-0.2910326;-0.0008434411,0.07651578;-0.5830641;0.06650951,0.08887628;-0.614153;0.009309903,-0.06789365;0.001298547;-0.04229381,-0.09874979;-0.2941989;-0.0007108189,-0.09718438;-0.5877293;0.06123638,-0.100306;-0.6169111;0.0002404302,0.003025276;0.3995763;0.01686681,83.93927
-0;0;0,0.002876558;0.1998594;0.00692356,0.008016302;0.4997485;0.003993353,0.1233588;0.3811767;-0.01047945,0.1981569;0.1987903;0.02329099,0.3196288;-0.01968603;0.02685035,-0.1051028;0.3671424;-0.02307086,-0.1546899;0.1737067;-0.01194605,-0.1784305;-0.07468243;-0.02741225,0.07349625;0.005389799;-0.03113279,0.1026417;-0.2920869;-0.005478371,0.09146738;-0.5837988;0.06365456,0.1058137;-0.613311;0.004730951,-0.06858331;0.002880084;-0.0410857,-0.08715619;-0.294306;-0.004541852,-0.07980356;-0.5872527;0.05970944,-0.08028171;-0.6173118;-0.0002097264,0.006206781;0.3998305;0.007615598,0;0;0,0.001235436;0.199649;0.01177909,0.004134468;0.4995597;0.015422,0.1185065;0.3816957;-0.01041646,0.1691148;0.1885121;0.0004875818,0.1867986;-0.05583924;-0.04930877,-0.1070453;0.3650055;-0.016138,-0.1573338;0.1714375;-0.01455706,-0.19104;-0.07436247;-0.04531869,0.07350115;0.007013288;-0.03079602,0.08997747;-0.2910326;-0.0008434411,0.07651578;-0.5830641;0.06650951,0.08887628;-0.614153;0.009309903,-0.06789365;0.001298547;-0.04229381,-0.09874979;-0.2941989;-0.0007108189,-0.09718438;-0.5877293;0.06123638,-0.100306;-0.6169111;0.0002404302,0.003025276;0.3995763;0.01686681,83.95065
-0;0;0,0.002893032;0.1998569;0.006989569,0.008016001;0.4997461;0.004072849,0.1233976;0.3811049;-0.0101233,0.1979083;0.1985028;0.02311261,0.3193554;-0.01999892;0.02586835,-0.1051676;0.3672564;-0.02284891,-0.1547579;0.1738219;-0.01171828,-0.178624;-0.07455263;-0.02722638,0.07343433;0.00535056;-0.03128532,0.1025176;-0.2920993;-0.005251374,0.09135285;-0.5838219;0.06383748,0.106947;-0.613196;0.005044766,-0.0686692;0.002913754;-0.04093961,-0.08710722;-0.2942789;-0.004380867,-0.0798038;-0.5871589;0.06017932,-0.07991298;-0.6171495;0.0001669005,0.006214606;0.3998281;0.007697507,0;0;0,0.001235436;0.199649;0.01177909,0.004134468;0.4995597;0.015422,0.1185065;0.3816957;-0.01041646,0.1691148;0.1885121;0.0004875818,0.1867986;-0.05583924;-0.04930877,-0.1070453;0.3650055;-0.016138,-0.1573338;0.1714375;-0.01455706,-0.19104;-0.07436247;-0.04531869,0.07350115;0.007013288;-0.03079602,0.08997747;-0.2910326;-0.0008434411,0.07651578;-0.5830641;0.06650951,0.08887628;-0.614153;0.009309903,-0.06789365;0.001298547;-0.04229381,-0.09874979;-0.2941989;-0.0007108189,-0.09718438;-0.5877293;0.06123638,-0.100306;-0.6169111;0.0002404302,0.003025276;0.3995763;0.01686681,83.9619
-0;0;0,0.002893032;0.1998569;0.006989569,0.008016001;0.4997461;0.004072849,0.1233976;0.3811049;-0.0101233,0.1979083;0.1985028;0.02311261,0.3193554;-0.01999892;0.02586835,-0.1051676;0.3672564;-0.02284891,-0.1547579;0.1738219;-0.01171828,-0.178624;-0.07455263;-0.02722638,0.07343433;0.00535056;-0.03128532,0.1025176;-0.2920993;-0.005251374,0.09135285;-0.5838219;0.06383748,0.106947;-0.613196;0.005044766,-0.0686692;0.002913754;-0.04093961,-0.08710722;-0.2942789;-0.004380867,-0.0798038;-0.5871589;0.06017932,-0.07991298;-0.6171495;0.0001669005,0.006214606;0.3998281;0.007697507,0;0;0,0.001243136;0.1996352;0.01200949,0.004120932;0.4995436;0.01582369,0.118412;0.3816429;-0.01037666,0.1692331;0.1884922;0.000113124,0.1888;-0.05472451;-0.0543182,-0.1070861;0.3650294;-0.01573931,-0.1573236;0.1714418;-0.01597596,-0.1921968;-0.07393633;-0.04873915,0.07353867;0.00698968;-0.0307117,0.09001397;-0.2910367;-0.0005650129,0.07665382;-0.5830553;0.06686432,0.08878428;-0.6137771;0.009098951,-0.06784885;0.001341866;-0.04236429,-0.09885737;-0.2940888;-0.0004214421,-0.09721714;-0.5876008;0.06161112,-0.1003132;-0.6169456;0.0008261837,0.003010908;0.3995595;0.01721993,83.98368
-0;0;0,0.003090636;0.199845;0.007240428,0.009300566;0.4997302;0.005770356,0.123972;0.3803271;-0.009966388,0.1984775;0.1976831;0.02304997,0.3196282;-0.02099068;0.02512555,-0.1040907;0.3669923;-0.02240543,-0.1537509;0.1735809;-0.01118474,-0.1778917;-0.07477342;-0.02659052,0.07344598;0.005364144;-0.03125562,0.1026119;-0.2920785;-0.005231908,0.09122116;-0.5837135;0.06418919,0.1063222;-0.6115569;0.00326011,-0.0686695;0.002903451;-0.04093982,-0.08700712;-0.2942972;-0.004394919,-0.08016347;-0.5872372;0.05994263,-0.07979105;-0.6174479;0.0002257936,0.007051928;0.3998001;0.008755049,0;0;0,0.001243136;0.1996352;0.01200949,0.004120932;0.4995436;0.01582369,0.118412;0.3816429;-0.01037666,0.1692331;0.1884922;0.000113124,0.1888;-0.05472451;-0.0543182,-0.1070861;0.3650294;-0.01573931,-0.1573236;0.1714418;-0.01597596,-0.1921968;-0.07393633;-0.04873915,0.07353867;0.00698968;-0.0307117,0.09001397;-0.2910367;-0.0005650129,0.07665382;-0.5830553;0.06686432,0.08878428;-0.6137771;0.009098951,-0.06784885;0.001341866;-0.04236429,-0.09885737;-0.2940888;-0.0004214421,-0.09721714;-0.5876008;0.06161112,-0.1003132;-0.6169456;0.0008261837,0.003010908;0.3995595;0.01721993,83.99516
-0;0;0,0.003090636;0.199845;0.007240428,0.009300566;0.4997302;0.005770356,0.123972;0.3803271;-0.009966388,0.1984775;0.1976831;0.02304997,0.3196282;-0.02099068;0.02512555,-0.1040907;0.3669923;-0.02240543,-0.1537509;0.1735809;-0.01118474,-0.1778917;-0.07477342;-0.02659052,0.07344598;0.005364144;-0.03125562,0.1026119;-0.2920785;-0.005231908,0.09122116;-0.5837135;0.06418919,0.1063222;-0.6115569;0.00326011,-0.0686695;0.002903451;-0.04093982,-0.08700712;-0.2942972;-0.004394919,-0.08016347;-0.5872372;0.05994263,-0.07979105;-0.6174479;0.0002257936,0.007051928;0.3998001;0.008755049,0;0;0,0.001243136;0.1996352;0.01200949,0.004120932;0.4995436;0.01582369,0.118412;0.3816429;-0.01037666,0.1692331;0.1884922;0.000113124,0.1888;-0.05472451;-0.0543182,-0.1070861;0.3650294;-0.01573931,-0.1573236;0.1714418;-0.01597596,-0.1921968;-0.07393633;-0.04873915,0.07353867;0.00698968;-0.0307117,0.09001397;-0.2910367;-0.0005650129,0.07665382;-0.5830553;0.06686432,0.08878428;-0.6137771;0.009098951,-0.06784885;0.001341866;-0.04236429,-0.09885737;-0.2940888;-0.0004214421,-0.09721714;-0.5876008;0.06161112,-0.1003132;-0.6169456;0.0008261837,0.003010908;0.3995595;0.01721993,84.0069
-0;0;0,0.003009766;0.1998486;0.007175074,0.008652641;0.4997391;0.005175193,0.1235758;0.3807617;-0.01084479,0.1979491;0.1981563;0.02267939,0.3189351;-0.02060661;0.02495689,-0.1045507;0.367101;-0.02255406,-0.1542435;0.1736995;-0.01130652,-0.1784182;-0.07465678;-0.02662746,0.07345226;0.005408852;-0.03123316,0.1026077;-0.2920313;-0.005168753,0.09122114;-0.5836628;0.06426757,0.1062029;-0.6115851;0.003409918,-0.06866891;0.002849926;-0.04094458,-0.08703071;-0.2943318;-0.004258316,-0.08018264;-0.5872493;0.06018136,-0.07654195;-0.5554847;-0.0380745,0.006673648;0.3998112;0.008416553,0;0;0,0.001307603;0.199619;0.01227066,0.004214635;0.4995241;0.01629293,0.1184614;0.3814724;-0.009951837,0.1693705;0.1883007;-0.000311099,0.1889854;-0.05378415;-0.059558,-0.1069996;0.3649486;-0.01533024,-0.1572254;0.1713644;-0.01692324,-0.193675;-0.0730017;-0.05508895,0.07350448;0.006878537;-0.03081846,0.08996978;-0.2910872;-7.197075E-05,0.07666839;-0.583111;0.06734596,0.08862711;-0.6137425;0.009418879,-0.06791292;0.001431495;-0.04225856,-0.0989467;-0.2939688;-0.0001210161,-0.09725318;-0.58744;0.06210266,-0.1008678;-0.6168324;0.001408517,0.003079274;0.3995394;0.01762608,84.02831
-0;0;0,0.003009766;0.1998486;0.007175074,0.008652641;0.4997391;0.005175193,0.1235758;0.3807617;-0.01084479,0.1979491;0.1981563;0.02267939,0.3189351;-0.02060661;0.02495689,-0.1045507;0.367101;-0.02255406,-0.1542435;0.1736995;-0.01130652,-0.1784182;-0.07465678;-0.02662746,0.07345226;0.005408852;-0.03123316,0.1026077;-0.2920313;-0.005168753,0.09122114;-0.5836628;0.06426757,0.1062029;-0.6115851;0.003409918,-0.06866891;0.002849926;-0.04094458,-0.08703071;-0.2943318;-0.004258316,-0.08018264;-0.5872493;0.06018136,-0.07654195;-0.5554847;-0.0380745,0.006673648;0.3998112;0.008416553,0;0;0,0.001307603;0.199619;0.01227066,0.004214635;0.4995241;0.01629293,0.1184614;0.3814724;-0.009951837,0.1693705;0.1883007;-0.000311099,0.1889854;-0.05378415;-0.059558,-0.1069996;0.3649486;-0.01533024,-0.1572254;0.1713644;-0.01692324,-0.193675;-0.0730017;-0.05508895,0.07350448;0.006878537;-0.03081846,0.08996978;-0.2910872;-7.197075E-05,0.07666839;-0.583111;0.06734596,0.08862711;-0.6137425;0.009418879,-0.06791292;0.001431495;-0.04225856,-0.0989467;-0.2939688;-0.0001210161,-0.09725318;-0.58744;0.06210266,-0.1008678;-0.6168324;0.001408517,0.003079274;0.3995394;0.01762608,84.03992
-0;0;0,0.003017441;0.1998512;0.007097817,0.008595383;0.499739;0.004756032,0.1235448;0.3809124;-0.01126934,0.1974072;0.1981154;0.02234019,0.3175071;-0.02114171;0.02386604,-0.1046369;0.3671994;-0.02271475,-0.1545588;0.1738679;-0.01127977,-0.1788982;-0.07447764;-0.02651394,0.07346051;0.005414709;-0.0312127,0.1024162;-0.2920346;-0.005030755,0.09103285;-0.583637;0.06452823,0.1060078;-0.6116427;0.003775727,-0.06868094;0.002843574;-0.04092483,-0.08713051;-0.2943054;-0.004018217,-0.08024374;-0.5871925;0.06055485,-0.07670838;-0.5554377;-0.03770305,0.00664481;0.3998156;0.008148894,0;0;0,0.001307603;0.199619;0.01227066,0.004214635;0.4995241;0.01629293,0.1184614;0.3814724;-0.009951837,0.1693705;0.1883007;-0.000311099,0.1889854;-0.05378415;-0.059558,-0.1069996;0.3649486;-0.01533024,-0.1572254;0.1713644;-0.01692324,-0.193675;-0.0730017;-0.05508895,0.07350448;0.006878537;-0.03081846,0.08996978;-0.2910872;-7.197075E-05,0.07666839;-0.583111;0.06734596,0.08862711;-0.6137425;0.009418879,-0.06791292;0.001431495;-0.04225856,-0.0989467;-0.2939688;-0.0001210161,-0.09725318;-0.58744;0.06210266,-0.1008678;-0.6168324;0.001408517,0.003079274;0.3995394;0.01762608,84.06208
-0;0;0,0.003017441;0.1998512;0.007097817,0.008595383;0.499739;0.004756032,0.1235448;0.3809124;-0.01126934,0.1974072;0.1981154;0.02234019,0.3175071;-0.02114171;0.02386604,-0.1046369;0.3671994;-0.02271475,-0.1545588;0.1738679;-0.01127977,-0.1788982;-0.07447764;-0.02651394,0.07346051;0.005414709;-0.0312127,0.1024162;-0.2920346;-0.005030755,0.09103285;-0.583637;0.06452823,0.1060078;-0.6116427;0.003775727,-0.06868094;0.002843574;-0.04092483,-0.08713051;-0.2943054;-0.004018217,-0.08024374;-0.5871925;0.06055485,-0.07670838;-0.5554377;-0.03770305,0.00664481;0.3998156;0.008148894,0;0;0,0.001277374;0.1996148;0.01234123,0.004065762;0.4995182;0.01655048,0.1183214;0.3811429;-0.009673927,0.1691358;0.1878529;-0.002132833,0.1892584;-0.05335189;-0.06470521,-0.1071069;0.3648246;-0.01500714,-0.1508442;0.1700768;-0.02767019,-0.1884123;-0.07366124;-0.068663,0.07342155;0.006861151;-0.03101936,0.08961271;-0.2910888;2.365187E-05,0.07642581;-0.5830879;0.06757091,0.08837021;-0.6135892;0.009459969,-0.06801019;0.001451703;-0.04210114,-0.09841903;-0.2940945;-0.0005353168,-0.09767874;-0.5874128;0.06242399,-0.1014169;-0.6167365;0.001647577,0.002971707;0.3995324;0.01782676,84.07352
-0;0;0,0.003017441;0.1998512;0.007097817,0.008595383;0.499739;0.004756032,0.1235448;0.3809124;-0.01126934,0.1974072;0.1981154;0.02234019,0.3175071;-0.02114171;0.02386604,-0.1046369;0.3671994;-0.02271475,-0.1545588;0.1738679;-0.01127977,-0.1788982;-0.07447764;-0.02651394,0.07346051;0.005414709;-0.0312127,0.1024162;-0.2920346;-0.005030755,0.09103285;-0.583637;0.06452823,0.1060078;-0.6116427;0.003775727,-0.06868094;0.002843574;-0.04092483,-0.08713051;-0.2943054;-0.004018217,-0.08024374;-0.5871925;0.06055485,-0.07670838;-0.5554377;-0.03770305,0.00664481;0.3998156;0.008148894,0;0;0,0.001277374;0.1996148;0.01234123,0.004065762;0.4995182;0.01655048,0.1183214;0.3811429;-0.009673927,0.1691358;0.1878529;-0.002132833,0.1892584;-0.05335189;-0.06470521,-0.1071069;0.3648246;-0.01500714,-0.1508442;0.1700768;-0.02767019,-0.1884123;-0.07366124;-0.068663,0.07342155;0.006861151;-0.03101936,0.08961271;-0.2910888;2.365187E-05,0.07642581;-0.5830879;0.06757091,0.08837021;-0.6135892;0.009459969,-0.06801019;0.001451703;-0.04210114,-0.09841903;-0.2940945;-0.0005353168,-0.09767874;-0.5874128;0.06242399,-0.1014169;-0.6167365;0.001647577,0.002971707;0.3995324;0.01782676,84.08488
-0;0;0,0.003030269;0.1998578;0.006906764,0.008558728;0.4997381;0.003875032,0.1236654;0.3810671;-0.01118958,0.1972706;0.1980907;0.02200542,0.3161221;-0.02185062;0.02166007,-0.1048506;0.3673665;-0.02274906,-0.1548106;0.1740446;-0.01131894,-0.1792776;-0.07429461;-0.02645168,0.07336036;0.005453172;-0.03144073,0.1023555;-0.2919716;-0.005024774,0.09093066;-0.5835782;0.06450947,0.1059467;-0.6117502;0.003981285,-0.06873201;0.002834532;-0.04083963,-0.08717953;-0.294328;-0.004041243,-0.08005032;-0.587149;0.06080527,-0.07647903;-0.5554205;-0.03744643,0.006631638;0.3998243;0.007552662,0;0;0,0.001277374;0.1996148;0.01234123,0.004065762;0.4995182;0.01655048,0.1183214;0.3811429;-0.009673927,0.1691358;0.1878529;-0.002132833,0.1892584;-0.05335189;-0.06470521,-0.1071069;0.3648246;-0.01500714,-0.1508442;0.1700768;-0.02767019,-0.1884123;-0.07366124;-0.068663,0.07342155;0.006861151;-0.03101936,0.08961271;-0.2910888;2.365187E-05,0.07642581;-0.5830879;0.06757091,0.08837021;-0.6135892;0.009459969,-0.06801019;0.001451703;-0.04210114,-0.09841903;-0.2940945;-0.0005353168,-0.09767874;-0.5874128;0.06242399,-0.1014169;-0.6167365;0.001647577,0.002971707;0.3995324;0.01782676,84.10675
-0;0;0,0.003030269;0.1998578;0.006906764,0.008558728;0.4997381;0.003875032,0.1236654;0.3810671;-0.01118958,0.1972706;0.1980907;0.02200542,0.3161221;-0.02185062;0.02166007,-0.1048506;0.3673665;-0.02274906,-0.1548106;0.1740446;-0.01131894,-0.1792776;-0.07429461;-0.02645168,0.07336036;0.005453172;-0.03144073,0.1023555;-0.2919716;-0.005024774,0.09093066;-0.5835782;0.06450947,0.1059467;-0.6117502;0.003981285,-0.06873201;0.002834532;-0.04083963,-0.08717953;-0.294328;-0.004041243,-0.08005032;-0.587149;0.06080527,-0.07647903;-0.5554205;-0.03744643,0.006631638;0.3998243;0.007552662,0;0;0,0.001288661;0.1996023;0.01253964,0.004046706;0.4995021;0.01697492,0.1183474;0.3815332;-0.009443648,0.1696061;0.188301;-0.003622836,0.1911718;-0.05121605;-0.07193453,-0.1071367;0.3648437;-0.01459564,-0.1510322;0.1702709;-0.02924529,-0.1894265;-0.07291438;-0.07268241,0.07348096;0.006824126;-0.03088656,0.08966652;-0.2910875;0.0005254801,0.07648952;-0.5831208;0.06792671,0.08846287;-0.6137056;0.009937737,-0.06794196;0.001502416;-0.04220938,-0.09846447;-0.294076;-0.0009570383,-0.09777379;-0.5871962;0.06291854,-0.1018497;-0.6170563;0.002870545,0.002966431;0.3995153;0.01819444,84.11818
-0;0;0,0.003265001;0.1998407;0.007283152,0.009771571;0.4997207;0.005968974,0.1240783;0.3805295;-0.0118487,0.1970797;0.1972593;0.02105766,0.3145734;-0.02340825;0.02003238,-0.1036625;0.3668307;-0.02216123,-0.1536787;0.1735203;-0.01078275,-0.178192;-0.07481241;-0.02594765,0.07332653;0.005520495;-0.03150784,0.1022243;-0.2918954;-0.004886104,0.09065222;-0.5834718;0.0647509,0.1056852;-0.6117008;0.00430068,-0.06878243;0.00278083;-0.04075836,-0.087374;-0.2943542;-0.003810778,-0.08017316;-0.5871429;0.06117317,-0.07999501;-0.6181128;0.002488825,0.007464604;0.3997901;0.008894259,0;0;0,0.001288661;0.1996023;0.01253964,0.004046706;0.4995021;0.01697492,0.1183474;0.3815332;-0.009443648,0.1696061;0.188301;-0.003622836,0.1911718;-0.05121605;-0.07193453,-0.1071367;0.3648437;-0.01459564,-0.1510322;0.1702709;-0.02924529,-0.1894265;-0.07291438;-0.07268241,0.07348096;0.006824126;-0.03088656,0.08966652;-0.2910875;0.0005254801,0.07648952;-0.5831208;0.06792671,0.08846287;-0.6137056;0.009937737,-0.06794196;0.001502416;-0.04220938,-0.09846447;-0.294076;-0.0009570383,-0.09777379;-0.5871962;0.06291854,-0.1018497;-0.6170563;0.002870545,0.002966431;0.3995153;0.01819444,84.12942
-0;0;0,0.003265001;0.1998407;0.007283152,0.009771571;0.4997207;0.005968974,0.1240783;0.3805295;-0.0118487,0.1970797;0.1972593;0.02105766,0.3145734;-0.02340825;0.02003238,-0.1036625;0.3668307;-0.02216123,-0.1536787;0.1735203;-0.01078275,-0.178192;-0.07481241;-0.02594765,0.07332653;0.005520495;-0.03150784,0.1022243;-0.2918954;-0.004886104,0.09065222;-0.5834718;0.0647509,0.1056852;-0.6117008;0.00430068,-0.06878243;0.00278083;-0.04075836,-0.087374;-0.2943542;-0.003810778,-0.08017316;-0.5871429;0.06117317,-0.07999501;-0.6181128;0.002488825,0.007464604;0.3997901;0.008894259,0;0;0,0.001288661;0.1996023;0.01253964,0.004046706;0.4995021;0.01697492,0.1183474;0.3815332;-0.009443648,0.1696061;0.188301;-0.003622836,0.1911718;-0.05121605;-0.07193453,-0.1071367;0.3648437;-0.01459564,-0.1510322;0.1702709;-0.02924529,-0.1894265;-0.07291438;-0.07268241,0.07348096;0.006824126;-0.03088656,0.08966652;-0.2910875;0.0005254801,0.07648952;-0.5831208;0.06792671,0.08846287;-0.6137056;0.009937737,-0.06794196;0.001502416;-0.04220938,-0.09846447;-0.294076;-0.0009570383,-0.09777379;-0.5871962;0.06291854,-0.1018497;-0.6170563;0.002870545,0.002966431;0.3995153;0.01819444,84.15136
-0;0;0,0.003212963;0.1998481;0.007100299,0.009272045;0.4997267;0.004793781,0.1239919;0.380817;-0.01166286,0.1967149;0.1973878;0.02097313,0.312068;-0.02439545;0.01855308,-0.1041829;0.3670315;-0.02223363,-0.1542428;0.1737323;-0.01085702,-0.178981;-0.07459067;-0.02581388,0.07334816;0.005504218;-0.03146029,0.1020952;-0.291912;-0.0046799,0.09055575;-0.5834799;0.06499791,0.1054705;-0.6116703;0.004468475,-0.06878372;0.00279453;-0.04075525,-0.08763475;-0.2943165;-0.00374632,-0.08020385;-0.5871328;0.06108741,-0.07937378;-0.6175752;0.001687683,0.007176846;0.3998059;0.008177793,0;0;0,0.001241356;0.1995905;0.01273084,0.003977799;0.4994895;0.01737957,0.1182993;0.3815138;-0.009122608,0.1698822;0.1883345;-0.004542489,0.1925508;-0.04962522;-0.07776342,-0.1072265;0.3648062;-0.01418538,-0.1519068;0.170572;-0.03082193,-0.1922309;-0.07159153;-0.07805317,0.07346868;0.006779249;-0.03092563,0.08954144;-0.2910998;0.000851253,0.07633149;-0.5831352;0.06823641,0.08819875;-0.6135204;0.009949327,-0.06797181;0.001538715;-0.04215999,-0.09852817;-0.2940441;-0.0009637401,-0.09815365;-0.5871418;0.06301781,-0.1024079;-0.6158879;0.001528505,0.002908679;0.3995012;0.01847188,84.16283
-0;0;0,0.003212963;0.1998481;0.007100299,0.009272045;0.4997267;0.004793781,0.1239919;0.380817;-0.01166286,0.1967149;0.1973878;0.02097313,0.312068;-0.02439545;0.01855308,-0.1041829;0.3670315;-0.02223363,-0.1542428;0.1737323;-0.01085702,-0.178981;-0.07459067;-0.02581388,0.07334816;0.005504218;-0.03146029,0.1020952;-0.291912;-0.0046799,0.09055575;-0.5834799;0.06499791,0.1054705;-0.6116703;0.004468475,-0.06878372;0.00279453;-0.04075525,-0.08763475;-0.2943165;-0.00374632,-0.08020385;-0.5871328;0.06108741,-0.07937378;-0.6175752;0.001687683,0.007176846;0.3998059;0.008177793,0;0;0,0.001241356;0.1995905;0.01273084,0.003977799;0.4994895;0.01737957,0.1182993;0.3815138;-0.009122608,0.1698822;0.1883345;-0.004542489,0.1925508;-0.04962522;-0.07776342,-0.1072265;0.3648062;-0.01418538,-0.1519068;0.170572;-0.03082193,-0.1922309;-0.07159153;-0.07805317,0.07346868;0.006779249;-0.03092563,0.08954144;-0.2910998;0.000851253,0.07633149;-0.5831352;0.06823641,0.08819875;-0.6135204;0.009949327,-0.06797181;0.001538715;-0.04215999,-0.09852817;-0.2940441;-0.0009637401,-0.09815365;-0.5871418;0.06301781,-0.1024079;-0.6158879;0.001528505,0.002908679;0.3995012;0.01847188,84.18486
-0;0;0,0.003113085;0.1998502;0.00708634,0.008808665;0.4997315;0.004443509,0.123779;0.3809054;-0.01142251,0.1960361;0.1972038;0.0207123,0.3100451;-0.02526689;0.0177585,-0.104565;0.3671866;-0.02228662,-0.1547458;0.1739221;-0.01085375,-0.1797067;-0.07438491;-0.02570561,0.07337066;0.005484725;-0.03141121,0.1019183;-0.2919369;-0.004477624,0.09040562;-0.5835055;0.06520195,0.1052656;-0.6119388;0.004974052,-0.06878857;0.002803724;-0.04074642,-0.08773208;-0.2942824;-0.003584493,-0.08023401;-0.5871167;0.06115982,-0.08003488;-0.6164325;0.00025855,0.006877333;0.3998128;0.007981367,0;0;0,0.001241356;0.1995905;0.01273084,0.003977799;0.4994895;0.01737957,0.1182993;0.3815138;-0.009122608,0.1698822;0.1883345;-0.004542489,0.1925508;-0.04962522;-0.07776342,-0.1072265;0.3648062;-0.01418538,-0.1519068;0.170572;-0.03082193,-0.1922309;-0.07159153;-0.07805317,0.07346868;0.006779249;-0.03092563,0.08954144;-0.2910998;0.000851253,0.07633149;-0.5831352;0.06823641,0.08819875;-0.6135204;0.009949327,-0.06797181;0.001538715;-0.04215999,-0.09852817;-0.2940441;-0.0009637401,-0.09815365;-0.5871418;0.06301781,-0.1024079;-0.6158879;0.001528505,0.002908679;0.3995012;0.01847188,84.20711
-0;0;0,0.003113085;0.1998502;0.00708634,0.008808665;0.4997315;0.004443509,0.123779;0.3809054;-0.01142251,0.1960361;0.1972038;0.0207123,0.3100451;-0.02526689;0.0177585,-0.104565;0.3671866;-0.02228662,-0.1547458;0.1739221;-0.01085375,-0.1797067;-0.07438491;-0.02570561,0.07337066;0.005484725;-0.03141121,0.1019183;-0.2919369;-0.004477624,0.09040562;-0.5835055;0.06520195,0.1052656;-0.6119388;0.004974052,-0.06878857;0.002803724;-0.04074642,-0.08773208;-0.2942824;-0.003584493,-0.08023401;-0.5871167;0.06115982,-0.08003488;-0.6164325;0.00025855,0.006877333;0.3998128;0.007981367,0;0;0,0.001255174;0.1995726;0.01300705,0.004049608;0.4994688;0.01791581,0.1183198;0.3815095;-0.008786039,0.1701855;0.1883831;-0.005297263,0.1955428;-0.04726587;-0.08483703,-0.1072088;0.3647221;-0.01366571,-0.1528241;0.1708826;-0.03225275,-0.1933729;-0.07052161;-0.08304473,0.07345548;0.006747644;-0.03096385,0.08946684;-0.2910869;0.001257801,0.07620734;-0.5830855;0.06879327,0.08884718;-0.6132738;0.01039754,-0.06801233;0.001556922;-0.04209391,-0.09831358;-0.2940348;-0.0007737577,-0.09849559;-0.5871038;0.06333966,-0.1003576;-0.6165833;0.00268048,0.002941888;0.3994795;0.01887272,84.21832
-0;0;0,0.003109562;0.1998476;0.007161639,0.008769799;0.4997296;0.004543934,0.123774;0.380904;-0.01117956,0.1949308;0.1966497;0.02023762,0.3069732;-0.02678034;0.01518232,-0.1046144;0.3672277;-0.02216203,-0.1548515;0.1739783;-0.01072033,-0.1802028;-0.07427563;-0.02579588,0.07339627;0.005467081;-0.03135439,0.1018766;-0.2919421;-0.004213452,0.09037822;-0.5835028;0.06550158,0.1052517;-0.611948;0.005292516,-0.06878297;0.002819414;-0.0407548,-0.08766943;-0.2942394;-0.003346987,-0.0802944;-0.5870924;0.0613272,-0.08022825;-0.6179133;0.002437674,0.006848021;0.3998105;0.008078377,0;0;0,0.001255174;0.1995726;0.01300705,0.004049608;0.4994688;0.01791581,0.1183198;0.3815095;-0.008786039,0.1701855;0.1883831;-0.005297263,0.1955428;-0.04726587;-0.08483703,-0.1072088;0.3647221;-0.01366571,-0.1528241;0.1708826;-0.03225275,-0.1933729;-0.07052161;-0.08304473,0.07345548;0.006747644;-0.03096385,0.08946684;-0.2910869;0.001257801,0.07620734;-0.5830855;0.06879327,0.08884718;-0.6132738;0.01039754,-0.06801233;0.001556922;-0.04209391,-0.09831358;-0.2940348;-0.0007737577,-0.09849559;-0.5871038;0.06333966,-0.1003576;-0.6165833;0.00268048,0.002941888;0.3994795;0.01887272,84.22985
-0;0;0,0.003109562;0.1998476;0.007161639,0.008769799;0.4997296;0.004543934,0.123774;0.380904;-0.01117956,0.1949308;0.1966497;0.02023762,0.3069732;-0.02678034;0.01518232,-0.1046144;0.3672277;-0.02216203,-0.1548515;0.1739783;-0.01072033,-0.1802028;-0.07427563;-0.02579588,0.07339627;0.005467081;-0.03135439,0.1018766;-0.2919421;-0.004213452,0.09037822;-0.5835028;0.06550158,0.1052517;-0.611948;0.005292516,-0.06878297;0.002819414;-0.0407548,-0.08766943;-0.2942394;-0.003346987,-0.0802944;-0.5870924;0.0613272,-0.08022825;-0.6179133;0.002437674,0.006848021;0.3998105;0.008078377,0;0;0,0.001255174;0.1995726;0.01300705,0.004049608;0.4994688;0.01791581,0.1183198;0.3815095;-0.008786039,0.1701855;0.1883831;-0.005297263,0.1955428;-0.04726587;-0.08483703,-0.1072088;0.3647221;-0.01366571,-0.1528241;0.1708826;-0.03225275,-0.1933729;-0.07052161;-0.08304473,0.07345548;0.006747644;-0.03096385,0.08946684;-0.2910869;0.001257801,0.07620734;-0.5830855;0.06879327,0.08884718;-0.6132738;0.01039754,-0.06801233;0.001556922;-0.04209391,-0.09831358;-0.2940348;-0.0007737577,-0.09849559;-0.5871038;0.06333966,-0.1003576;-0.6165833;0.00268048,0.002941888;0.3994795;0.01887272,84.25246
-0;0;0,0.003088421;0.1998501;0.007098169,0.008554459;0.4997312;0.004125815,0.1237005;0.3817706;-0.01191951,0.1938626;0.1971577;0.0196292,0.3030978;-0.02763416;0.01360426,-0.1048689;0.3674378;-0.02219483,-0.1551817;0.1742076;-0.01076228,-0.1805255;-0.07405157;-0.02576511,0.0733813;0.005471984;-0.03138854,0.1018066;-0.2919357;-0.004172606,0.0902444;-0.5834814;0.06559388,0.1047169;-0.6121895;0.005630631,-0.06880558;0.002808916;-0.04071736,-0.08771583;-0.2942421;-0.003259137,-0.08028575;-0.5870988;0.06139139,-0.08028493;-0.6179922;0.002601411,0.006716965;0.399816;0.007809281,0;0;0,0.001261979;0.1995657;0.01311218,0.004110833;0.4994593;0.01822287,0.1183476;0.381514;-0.008634064,0.1707634;0.1885078;-0.007546811,0.1968101;-0.04562593;-0.09123063,-0.1071956;0.3649487;-0.01362541,-0.159235;0.1720772;-0.02324295,-0.2022539;-0.06708039;-0.08200513,0.07344943;0.006707895;-0.03098685,0.08942902;-0.2911253;0.001262521,0.07626548;-0.5831372;0.06875946,0.08878046;-0.6135712;0.01067557,-0.06801822;0.001597597;-0.04208288,-0.0980995;-0.2940222;-0.0008027852,-0.09862331;-0.5870361;0.06356005,-0.09997154;-0.6168168;0.003283873,0.002980392;0.3994693;0.019079,84.27441
-0;0;0,0.003088421;0.1998501;0.007098169,0.008554459;0.4997312;0.004125815,0.1237005;0.3817706;-0.01191951,0.1938626;0.1971577;0.0196292,0.3030978;-0.02763416;0.01360426,-0.1048689;0.3674378;-0.02219483,-0.1551817;0.1742076;-0.01076228,-0.1805255;-0.07405157;-0.02576511,0.0733813;0.005471984;-0.03138854,0.1018066;-0.2919357;-0.004172606,0.0902444;-0.5834814;0.06559388,0.1047169;-0.6121895;0.005630631,-0.06880558;0.002808916;-0.04071736,-0.08771583;-0.2942421;-0.003259137,-0.08028575;-0.5870988;0.06139139,-0.08028493;-0.6179922;0.002601411,0.006716965;0.399816;0.007809281,0;0;0,0.001261979;0.1995657;0.01311218,0.004110833;0.4994593;0.01822287,0.1183476;0.381514;-0.008634064,0.1707634;0.1885078;-0.007546811,0.1968101;-0.04562593;-0.09123063,-0.1071956;0.3649487;-0.01362541,-0.159235;0.1720772;-0.02324295,-0.2022539;-0.06708039;-0.08200513,0.07344943;0.006707895;-0.03098685,0.08942902;-0.2911253;0.001262521,0.07626548;-0.5831372;0.06875946,0.08878046;-0.6135712;0.01067557,-0.06801822;0.001597597;-0.04208288,-0.0980995;-0.2940222;-0.0008027852,-0.09862331;-0.5870361;0.06356005,-0.09997154;-0.6168168;0.003283873,0.002980392;0.3994693;0.019079,84.28564
-0;0;0,0.003131461;0.1998518;0.007032339,0.008622206;0.4997309;0.003926544,0.123798;0.3818039;-0.01185093,0.1931641;0.1967403;0.01880548,0.2989063;-0.02966356;0.01106644,-0.1048174;0.3674858;-0.0223819,-0.1552562;0.1742975;-0.0107975,-0.1809409;-0.07394126;-0.02555607,0.07337418;0.005416881;-0.03141477,0.1016959;-0.2919964;-0.00415262,0.09009744;-0.583517;0.06571364,0.1041545;-0.6124943;0.006006189,-0.06884097;0.002851537;-0.04065453,-0.08772996;-0.2942235;-0.003376856,-0.08027195;-0.5870016;0.06162616,-0.08031777;-0.6180254;0.003016189,0.006772611;0.3998177;0.0076569,0;0;0,0.001261979;0.1995657;0.01311218,0.004110833;0.4994593;0.01822287,0.1183476;0.381514;-0.008634064,0.1707634;0.1885078;-0.007546811,0.1968101;-0.04562593;-0.09123063,-0.1071956;0.3649487;-0.01362541,-0.159235;0.1720772;-0.02324295,-0.2022539;-0.06708039;-0.08200513,0.07344943;0.006707895;-0.03098685,0.08942902;-0.2911253;0.001262521,0.07626548;-0.5831372;0.06875946,0.08878046;-0.6135712;0.01067557,-0.06801822;0.001597597;-0.04208288,-0.0980995;-0.2940222;-0.0008027852,-0.09862331;-0.5870361;0.06356005,-0.09997154;-0.6168168;0.003283873,0.002980392;0.3994693;0.019079,84.30762
-0;0;0,0.003131461;0.1998518;0.007032339,0.008622206;0.4997309;0.003926544,0.123798;0.3818039;-0.01185093,0.1931641;0.1967403;0.01880548,0.2989063;-0.02966356;0.01106644,-0.1048174;0.3674858;-0.0223819,-0.1552562;0.1742975;-0.0107975,-0.1809409;-0.07394126;-0.02555607,0.07337418;0.005416881;-0.03141477,0.1016959;-0.2919964;-0.00415262,0.09009744;-0.583517;0.06571364,0.1041545;-0.6124943;0.006006189,-0.06884097;0.002851537;-0.04065453,-0.08772996;-0.2942235;-0.003376856,-0.08027195;-0.5870016;0.06162616,-0.08031777;-0.6180254;0.003016189,0.006772611;0.3998177;0.0076569,0;0;0,0.001267762;0.1995593;0.01320814,0.004029277;0.4994515;0.01853658,0.1182994;0.3814819;-0.008489946,0.1709182;0.1885281;-0.008203323,0.1979083;-0.04351237;-0.09724692,-0.1076216;0.365527;-0.01269605,-0.1586164;0.1724735;-0.02409205,-0.201544;-0.06559317;-0.08719115,0.07344076;0.006687273;-0.03101185,0.08945045;-0.2911386;0.001290876,0.07630678;-0.5831358;0.06885459,0.08872154;-0.6141921;0.0116203,-0.06802163;0.0016191;-0.04207656,-0.09825481;-0.293987;-0.0008091442,-0.09867143;-0.5869833;0.06363462,-0.1002508;-0.6166908;0.003267262,0.002949659;0.39946;0.01928114,84.31902
-0;0;0,0.003201467;0.199854;0.006936006,0.008787398;0.499729;0.003615482,0.1238604;0.3823511;-0.01293993,0.1909203;0.1963529;0.01718718,0.2933028;-0.03155716;0.008536107,-0.1048468;0.3677555;-0.02232853,-0.1552886;0.1745596;-0.01088353,-0.1810853;-0.07367836;-0.02545835,0.07340522;0.005313146;-0.03135991,0.1017285;-0.2920826;-0.003908809,0.09005781;-0.5835739;0.066067,0.1038831;-0.6118589;0.005401332,-0.06881617;0.002959331;-0.04068879,-0.08773472;-0.2940904;-0.00322463,-0.08085757;-0.5869064;0.06167139,-0.08024167;-0.6181034;0.003304783,0.006897741;0.3998193;0.00742144,0;0;0,0.001267762;0.1995593;0.01320814,0.004029277;0.4994515;0.01853658,0.1182994;0.3814819;-0.008489946,0.1709182;0.1885281;-0.008203323,0.1979083;-0.04351237;-0.09724692,-0.1076216;0.365527;-0.01269605,-0.1586164;0.1724735;-0.02409205,-0.201544;-0.06559317;-0.08719115,0.07344076;0.006687273;-0.03101185,0.08945045;-0.2911386;0.001290876,0.07630678;-0.5831358;0.06885459,0.08872154;-0.6141921;0.0116203,-0.06802163;0.0016191;-0.04207656,-0.09825481;-0.293987;-0.0008091442,-0.09867143;-0.5869833;0.06363462,-0.1002508;-0.6166908;0.003267262,0.002949659;0.39946;0.01928114,84.33043
-0;0;0,0.003201467;0.199854;0.006936006,0.008787398;0.499729;0.003615482,0.1238604;0.3823511;-0.01293993,0.1909203;0.1963529;0.01718718,0.2933028;-0.03155716;0.008536107,-0.1048468;0.3677555;-0.02232853,-0.1552886;0.1745596;-0.01088353,-0.1810853;-0.07367836;-0.02545835,0.07340522;0.005313146;-0.03135991,0.1017285;-0.2920826;-0.003908809,0.09005781;-0.5835739;0.066067,0.1038831;-0.6118589;0.005401332,-0.06881617;0.002959331;-0.04068879,-0.08773472;-0.2940904;-0.00322463,-0.08085757;-0.5869064;0.06167139,-0.08024167;-0.6181034;0.003304783,0.006897741;0.3998193;0.00742144,0;0;0,0.001267762;0.1995593;0.01320814,0.004029277;0.4994515;0.01853658,0.1182994;0.3814819;-0.008489946,0.1709182;0.1885281;-0.008203323,0.1979083;-0.04351237;-0.09724692,-0.1076216;0.365527;-0.01269605,-0.1586164;0.1724735;-0.02409205,-0.201544;-0.06559317;-0.08719115,0.07344076;0.006687273;-0.03101185,0.08945045;-0.2911386;0.001290876,0.07630678;-0.5831358;0.06885459,0.08872154;-0.6141921;0.0116203,-0.06802163;0.0016191;-0.04207656,-0.09825481;-0.293987;-0.0008091442,-0.09867143;-0.5869833;0.06363462,-0.1002508;-0.6166908;0.003267262,0.002949659;0.39946;0.01928114,84.35248
-0;0;0,0.003432728;0.199852;0.00688309,0.009518899;0.4997166;0.003497275,0.1242891;0.382115;-0.0134496,0.1902377;0.1957007;0.0165587,0.2879677;-0.03413987;0.005506047,-0.1044466;0.3679233;-0.0221055,-0.1547096;0.1746841;-0.01060672,-0.1805139;-0.07355657;-0.02512241,0.07342118;0.005292515;-0.031326,0.1015943;-0.2921129;-0.00382472,0.08959126;-0.5834612;0.06668853,0.1039749;-0.6116759;0.006062128,-0.06881554;0.002980415;-0.04068832,-0.08780939;-0.2940628;-0.003210578,-0.08114998;-0.5869232;0.06150728,-0.08122901;-0.6173112;0.002028171,0.007433152;0.3998115;0.007323594,0;0;0,0.001272661;0.1995398;0.01350003,0.003997565;0.4994284;0.01922752,0.1182654;0.3814191;-0.008123862,0.1716195;0.1886716;-0.009447859,0.1991291;-0.0412913;-0.1035769,-0.1078024;0.3658134;-0.01194808,-0.1592885;0.1729939;-0.02497897,-0.2020634;-0.06331016;-0.09448233,0.07348461;0.006687978;-0.03090765,0.0894746;-0.2911168;0.001598367,0.07635299;-0.5831086;0.06918999,0.08875567;-0.6141626;0.01194986,-0.06798263;0.00161153;-0.04213984,-0.09803165;-0.2939668;-0.0005404279,-0.098511;-0.5869536;0.06394586,-0.1002888;-0.6166458;0.003563713,0.002945387;0.3994353;0.01974573,84.36385
-0;0;0,0.003432728;0.199852;0.00688309,0.009518899;0.4997166;0.003497275,0.1242891;0.382115;-0.0134496,0.1902377;0.1957007;0.0165587,0.2879677;-0.03413987;0.005506047,-0.1044466;0.3679233;-0.0221055,-0.1547096;0.1746841;-0.01060672,-0.1805139;-0.07355657;-0.02512241,0.07342118;0.005292515;-0.031326,0.1015943;-0.2921129;-0.00382472,0.08959126;-0.5834612;0.06668853,0.1039749;-0.6116759;0.006062128,-0.06881554;0.002980415;-0.04068832,-0.08780939;-0.2940628;-0.003210578,-0.08114998;-0.5869232;0.06150728,-0.08122901;-0.6173112;0.002028171,0.007433152;0.3998115;0.007323594,0;0;0,0.001272661;0.1995398;0.01350003,0.003997565;0.4994284;0.01922752,0.1182654;0.3814191;-0.008123862,0.1716195;0.1886716;-0.009447859,0.1991291;-0.0412913;-0.1035769,-0.1078024;0.3658134;-0.01194808,-0.1592885;0.1729939;-0.02497897,-0.2020634;-0.06331016;-0.09448233,0.07348461;0.006687978;-0.03090765,0.0894746;-0.2911168;0.001598367,0.07635299;-0.5831086;0.06918999,0.08875567;-0.6141626;0.01194986,-0.06798263;0.00161153;-0.04213984,-0.09803165;-0.2939668;-0.0005404279,-0.098511;-0.5869536;0.06394586,-0.1002888;-0.6166458;0.003563713,0.002945387;0.3994353;0.01974573,84.37501
-0;0;0,0.003547083;0.19985;0.006884339,0.009790107;0.4997116;0.003521167,0.1245405;0.3819275;-0.01307068,0.1900942;0.1952859;0.01638469,0.2844243;-0.03585316;0.003096604,-0.1042624;0.3680686;-0.02213477,-0.1545869;0.1748421;-0.01069044,-0.180604;-0.07337348;-0.02525458,0.07343755;0.005227081;-0.03129862,0.1016041;-0.292187;-0.003884777,0.08966786;-0.5835226;0.06669199,0.1040496;-0.6120912;0.006524473,-0.06881001;0.003024056;-0.04069443,-0.08778781;-0.2940129;-0.003159121,-0.08098286;-0.5868475;0.06166045,-0.0815106;-0.6183994;0.003789801,0.007648255;0.3998075;0.007338007,0;0;0,0.001272661;0.1995398;0.01350003,0.003997565;0.4994284;0.01922752,0.1182654;0.3814191;-0.008123862,0.1716195;0.1886716;-0.009447859,0.1991291;-0.0412913;-0.1035769,-0.1078024;0.3658134;-0.01194808,-0.1592885;0.1729939;-0.02497897,-0.2020634;-0.06331016;-0.09448233,0.07348461;0.006687978;-0.03090765,0.0894746;-0.2911168;0.001598367,0.07635299;-0.5831086;0.06918999,0.08875567;-0.6141626;0.01194986,-0.06798263;0.00161153;-0.04213984,-0.09803165;-0.2939668;-0.0005404279,-0.098511;-0.5869536;0.06394586,-0.1002888;-0.6166458;0.003563713,0.002945387;0.3994353;0.01974573,84.39757
-0;0;0,0.003547083;0.19985;0.006884339,0.009790107;0.4997116;0.003521167,0.1245405;0.3819275;-0.01307068,0.1900942;0.1952859;0.01638469,0.2844243;-0.03585316;0.003096604,-0.1042624;0.3680686;-0.02213477,-0.1545869;0.1748421;-0.01069044,-0.180604;-0.07337348;-0.02525458,0.07343755;0.005227081;-0.03129862,0.1016041;-0.292187;-0.003884777,0.08966786;-0.5835226;0.06669199,0.1040496;-0.6120912;0.006524473,-0.06881001;0.003024056;-0.04069443,-0.08778781;-0.2940129;-0.003159121,-0.08098286;-0.5868475;0.06166045,-0.0815106;-0.6183994;0.003789801,0.007648255;0.3998075;0.007338007,0;0;0,0.001147423;0.1995216;0.01377725,0.003813952;0.4994047;0.01988602,0.1180543;0.3813041;-0.007772746,0.172148;0.1887823;-0.01081143,0.199557;-0.03945073;-0.1090887,-0.1078396;0.3655244;-0.01162026,-0.1603243;0.1730424;-0.02562095,-0.2042516;-0.0610303;-0.1016498,0.07338592;0.006767697;-0.03112402,0.08894011;-0.2910004;0.001925053,0.07591941;-0.5829794;0.06959142,0.08799009;-0.6140229;0.01226553,-0.06812022;0.001527787;-0.04192017,-0.09839675;-0.2940125;-0.0002154224,-0.09897836;-0.5869308;0.06458069,-0.1003912;-0.6165769;0.004128247,0.002781641;0.3994107;0.02023361,84.40871
-0;0;0,0.003736733;0.1998503;0.006773755,0.01028771;0.4997029;0.003209891,0.1250124;0.3818518;-0.01275064,0.1899533;0.1948926;0.01604049,0.27968;-0.03789872;-1.600012E-06,-0.103928;0.3682926;-0.02242193,-0.154465;0.175135;-0.01075285,-0.1806247;-0.07306412;-0.0253422,0.07341309;0.005186641;-0.03136269,0.1014361;-0.2922255;-0.003781294,0.08949646;-0.5835908;0.06667241,0.1038812;-0.6123063;0.006697819,-0.06884147;0.003058559;-0.04063862,-0.08822089;-0.2939737;-0.003271881,-0.08094741;-0.5868174;0.06145587,-0.08170443;-0.6169078;0.001581408,0.008034743;0.3998039;0.007097423,0;0;0,0.001147423;0.1995216;0.01377725,0.003813952;0.4994047;0.01988602,0.1180543;0.3813041;-0.007772746,0.172148;0.1887823;-0.01081143,0.199557;-0.03945073;-0.1090887,-0.1078396;0.3655244;-0.01162026,-0.1603243;0.1730424;-0.02562095,-0.2042516;-0.0610303;-0.1016498,0.07338592;0.006767697;-0.03112402,0.08894011;-0.2910004;0.001925053,0.07591941;-0.5829794;0.06959142,0.08799009;-0.6140229;0.01226553,-0.06812022;0.001527787;-0.04192017,-0.09839675;-0.2940125;-0.0002154224,-0.09897836;-0.5869308;0.06458069,-0.1003912;-0.6165769;0.004128247,0.002781641;0.3994107;0.02023361,84.43089
-0;0;0,0.003736733;0.1998503;0.006773755,0.01028771;0.4997029;0.003209891,0.1250124;0.3818518;-0.01275064,0.1899533;0.1948926;0.01604049,0.27968;-0.03789872;-1.600012E-06,-0.103928;0.3682926;-0.02242193,-0.154465;0.175135;-0.01075285,-0.1806247;-0.07306412;-0.0253422,0.07341309;0.005186641;-0.03136269,0.1014361;-0.2922255;-0.003781294,0.08949646;-0.5835908;0.06667241,0.1038812;-0.6123063;0.006697819,-0.06884147;0.003058559;-0.04063862,-0.08822089;-0.2939737;-0.003271881,-0.08094741;-0.5868174;0.06145587,-0.08170443;-0.6169078;0.001581408,0.008034743;0.3998039;0.007097423,0;0;0,0.001147423;0.1995216;0.01377725,0.003813952;0.4994047;0.01988602,0.1180543;0.3813041;-0.007772746,0.172148;0.1887823;-0.01081143,0.199557;-0.03945073;-0.1090887,-0.1078396;0.3655244;-0.01162026,-0.1603243;0.1730424;-0.02562095,-0.2042516;-0.0610303;-0.1016498,0.07338592;0.006767697;-0.03112402,0.08894011;-0.2910004;0.001925053,0.07591941;-0.5829794;0.06959142,0.08799009;-0.6140229;0.01226553,-0.06812022;0.001527787;-0.04192017,-0.09839675;-0.2940125;-0.0002154224,-0.09897836;-0.5869308;0.06458069,-0.1003912;-0.6165769;0.004128247,0.002781641;0.3994107;0.02023361,84.45288
-0;0;0,0.003755148;0.1998535;0.006669992,0.0102526;0.4997049;0.002927165,0.1249629;0.3822315;-0.01350025,0.1886884;0.1948796;0.0154536,0.2750237;-0.03910199;-0.001833109,-0.1039478;0.3681438;-0.02246097,-0.1545362;0.1749993;-0.01079852,-0.1811675;-0.0731498;-0.02538683,0.07338015;0.005205883;-0.03143647,0.101178;-0.2921971;-0.003530513,0.08945633;-0.5835619;0.06696185,0.1033786;-0.6126344;0.007348783,-0.06886476;0.003047027;-0.04060001,-0.08864314;-0.2939631;-0.003266137,-0.08091956;-0.5865561;0.06253394,-0.08135326;-0.6155836;0.00126018,0.008019261;0.3998079;0.006877583,0;0;0,0.001086253;0.1994997;0.01409567,0.003771165;0.4993768;0.02055633,0.1179649;0.3812861;-0.007379279,0.1725935;0.1889402;-0.0117101,0.2024445;-0.03519598;-0.1183492,-0.1080507;0.3657441;-0.01085366,-0.1602414;0.173295;-0.02632847,-0.2053067;-0.05843911;-0.108599,0.0734559;0.006703374;-0.0309725,0.0887887;-0.2910534;0.002281779,0.07575017;-0.5830194;0.07000061,0.08792323;-0.6138672;0.01242078,-0.06806266;0.001584681;-0.04201147,-0.09857789;-0.2939036;-0.0001123771,-0.09912895;-0.5867569;0.06497673,-0.09941914;-0.6173492;0.005775388,0.002719256;0.3993825;0.02074499,84.46436
-0;0;0,0.003755148;0.1998535;0.006669992,0.0102526;0.4997049;0.002927165,0.1249629;0.3822315;-0.01350025,0.1886884;0.1948796;0.0154536,0.2750237;-0.03910199;-0.001833109,-0.1039478;0.3681438;-0.02246097,-0.1545362;0.1749993;-0.01079852,-0.1811675;-0.0731498;-0.02538683,0.07338015;0.005205883;-0.03143647,0.101178;-0.2921971;-0.003530513,0.08945633;-0.5835619;0.06696185,0.1033786;-0.6126344;0.007348783,-0.06886476;0.003047027;-0.04060001,-0.08864314;-0.2939631;-0.003266137,-0.08091956;-0.5865561;0.06253394,-0.08135326;-0.6155836;0.00126018,0.008019261;0.3998079;0.006877583,0;0;0,0.001086253;0.1994997;0.01409567,0.003771165;0.4993768;0.02055633,0.1179649;0.3812861;-0.007379279,0.1725935;0.1889402;-0.0117101,0.2024445;-0.03519598;-0.1183492,-0.1080507;0.3657441;-0.01085366,-0.1602414;0.173295;-0.02632847,-0.2053067;-0.05843911;-0.108599,0.0734559;0.006703374;-0.0309725,0.0887887;-0.2910534;0.002281779,0.07575017;-0.5830194;0.07000061,0.08792323;-0.6138672;0.01242078,-0.06806266;0.001584681;-0.04201147,-0.09857789;-0.2939036;-0.0001123771,-0.09912895;-0.5867569;0.06497673,-0.09941914;-0.6173492;0.005775388,0.002719256;0.3993825;0.02074499,84.47527
-0;0;0,0.003893569;0.1998516;0.006648262,0.01068729;0.4996962;0.002884913,0.1253013;0.3827468;-0.01389867,0.1884687;0.1951929;0.01496998,0.2703043;-0.04027975;-0.003886874,-0.1037322;0.3684071;-0.02236971,-0.154175;0.1752183;-0.01081055,-0.1808739;-0.07290694;-0.02567835,0.07334412;0.005188541;-0.03152329,0.1011079;-0.2922111;-0.003547242,0.0896643;-0.5836167;0.06682175,0.1031468;-0.6130677;0.00761221,-0.06889181;0.003053345;-0.04055362,-0.08841673;-0.2939643;-0.003146552,-0.08089955;-0.5865865;0.0625481,-0.08108733;-0.6158957;0.001638316,0.00834408;0.3998019;0.006841091,0;0;0,0.001086253;0.1994997;0.01409567,0.003771165;0.4993768;0.02055633,0.1179649;0.3812861;-0.007379279,0.1725935;0.1889402;-0.0117101,0.2024445;-0.03519598;-0.1183492,-0.1080507;0.3657441;-0.01085366,-0.1602414;0.173295;-0.02632847,-0.2053067;-0.05843911;-0.108599,0.0734559;0.006703374;-0.0309725,0.0887887;-0.2910534;0.002281779,0.07575017;-0.5830194;0.07000061,0.08792323;-0.6138672;0.01242078,-0.06806266;0.001584681;-0.04201147,-0.09857789;-0.2939036;-0.0001123771,-0.09912895;-0.5867569;0.06497673,-0.09941914;-0.6173492;0.005775388,0.002719256;0.3993825;0.02074499,84.4892
-0;0;0,0.003893569;0.1998516;0.006648262,0.01068729;0.4996962;0.002884913,0.1253013;0.3827468;-0.01389867,0.1884687;0.1951929;0.01496998,0.2703043;-0.04027975;-0.003886874,-0.1037322;0.3684071;-0.02236971,-0.154175;0.1752183;-0.01081055,-0.1808739;-0.07290694;-0.02567835,0.07334412;0.005188541;-0.03152329,0.1011079;-0.2922111;-0.003547242,0.0896643;-0.5836167;0.06682175,0.1031468;-0.6130677;0.00761221,-0.06889181;0.003053345;-0.04055362,-0.08841673;-0.2939643;-0.003146552,-0.08089955;-0.5865865;0.0625481,-0.08108733;-0.6158957;0.001638316,0.00834408;0.3998019;0.006841091,0;0;0,0.001153714;0.1994836;0.01431714,0.003899277;0.499353;0.02106821,0.1180473;0.3812203;-0.006940736,0.1726967;0.1889486;-0.01365011,0.2044927;-0.0314723;-0.1272444,-0.1080744;0.3658797;-0.01019609,-0.160455;0.1736584;-0.0277254,-0.2065738;-0.05509673;-0.1174145,0.0735018;0.006728387;-0.03085797,0.08869233;-0.2910016;0.0026992,0.07570366;-0.5829866;0.07034588,0.087882;-0.6140954;0.01313535,-0.06803618;0.001550955;-0.0420556,-0.09858696;-0.2938909;0.0001439452,-0.09922178;-0.5868013;0.06497533,-0.09981232;-0.617032;0.005287066,0.00280724;0.399359;0.02117907,84.50788
-0;0;0,0.003893569;0.1998516;0.006648262,0.01068729;0.4996962;0.002884913,0.1253013;0.3827468;-0.01389867,0.1884687;0.1951929;0.01496998,0.2703043;-0.04027975;-0.003886874,-0.1037322;0.3684071;-0.02236971,-0.154175;0.1752183;-0.01081055,-0.1808739;-0.07290694;-0.02567835,0.07334412;0.005188541;-0.03152329,0.1011079;-0.2922111;-0.003547242,0.0896643;-0.5836167;0.06682175,0.1031468;-0.6130677;0.00761221,-0.06889181;0.003053345;-0.04055362,-0.08841673;-0.2939643;-0.003146552,-0.08089955;-0.5865865;0.0625481,-0.08108733;-0.6158957;0.001638316,0.00834408;0.3998019;0.006841091,0;0;0,0.001153714;0.1994836;0.01431714,0.003899277;0.499353;0.02106821,0.1180473;0.3812203;-0.006940736,0.1726967;0.1889486;-0.01365011,0.2044927;-0.0314723;-0.1272444,-0.1080744;0.3658797;-0.01019609,-0.160455;0.1736584;-0.0277254,-0.2065738;-0.05509673;-0.1174145,0.0735018;0.006728387;-0.03085797,0.08869233;-0.2910016;0.0026992,0.07570366;-0.5829866;0.07034588,0.087882;-0.6140954;0.01313535,-0.06803618;0.001550955;-0.0420556,-0.09858696;-0.2938909;0.0001439452,-0.09922178;-0.5868013;0.06497533,-0.09981232;-0.617032;0.005287066,0.00280724;0.399359;0.02117907,84.51921
-0;0;0,0.004090818;0.1998293;0.007177124,0.01178146;0.4996849;0.006049293,0.1253971;0.3815288;-0.01448315,0.1877542;0.1937496;0.01468095,0.2662522;-0.04277763;-0.005142276,-0.1022664;0.3674735;-0.022051,-0.1530342;0.174373;-0.01044015,-0.1799244;-0.07373752;-0.02520861,0.07337679;0.005156617;-0.03145243,0.100725;-0.2922588;-0.003236298,0.08925734;-0.5836787;0.0670698,0.1027941;-0.6132246;0.008000229,-0.06889239;0.003087629;-0.04055002,-0.08817166;-0.2939651;-0.003294297,-0.08122892;-0.5866467;0.06219827,-0.08145669;-0.6166058;0.002144188,0.009105036;0.3997596;0.008836099,0;0;0,0.001153714;0.1994836;0.01431714,0.003899277;0.499353;0.02106821,0.1180473;0.3812203;-0.006940736,0.1726967;0.1889486;-0.01365011,0.2044927;-0.0314723;-0.1272444,-0.1080744;0.3658797;-0.01019609,-0.160455;0.1736584;-0.0277254,-0.2065738;-0.05509673;-0.1174145,0.0735018;0.006728387;-0.03085797,0.08869233;-0.2910016;0.0026992,0.07570366;-0.5829866;0.07034588,0.087882;-0.6140954;0.01313535,-0.06803618;0.001550955;-0.0420556,-0.09858696;-0.2938909;0.0001439452,-0.09922178;-0.5868013;0.06497533,-0.09981232;-0.617032;0.005287066,0.00280724;0.399359;0.02117907,84.54149
-0;0;0,0.004090818;0.1998293;0.007177124,0.01178146;0.4996849;0.006049293,0.1253971;0.3815288;-0.01448315,0.1877542;0.1937496;0.01468095,0.2662522;-0.04277763;-0.005142276,-0.1022664;0.3674735;-0.022051,-0.1530342;0.174373;-0.01044015,-0.1799244;-0.07373752;-0.02520861,0.07337679;0.005156617;-0.03145243,0.100725;-0.2922588;-0.003236298,0.08925734;-0.5836787;0.0670698,0.1027941;-0.6132246;0.008000229,-0.06889239;0.003087629;-0.04055002,-0.08817166;-0.2939651;-0.003294297,-0.08122892;-0.5866467;0.06219827,-0.08145669;-0.6166058;0.002144188,0.009105036;0.3997596;0.008836099,0;0;0,0.001050204;0.1994639;0.01459646,0.003729913;0.4993289;0.02162915,0.1178983;0.3811764;-0.006535916,0.1729403;0.189097;-0.01524754,0.2060796;-0.02580142;-0.1386187,-0.1080986;0.3655998;-0.009908883,-0.1616425;0.1738997;-0.0295085,-0.208802;-0.05331708;-0.1225058,0.07352541;0.006812584;-0.03078317,0.08841132;-0.2909027;0.003040113,0.07541005;-0.5828455;0.0708663,0.08749943;-0.6137382;0.01333185,-0.06805176;0.001469887;-0.04203327,-0.09888258;-0.2939;0.0004649647,-0.09922313;-0.5867655;0.06550072,-0.100333;-0.6153452;0.003662184,0.002666361;0.3993345;0.02160437,84.55269
-0;0;0,0.004113951;0.1998325;0.007073784,0.0117152;0.4996821;0.005204858,0.1254944;0.3822259;-0.01486904,0.1872487;0.1942348;0.01421298,0.2627428;-0.04325651;-0.005749326,-0.1026105;0.3679544;-0.02186222,-0.1531627;0.1747755;-0.01061991,-0.1802342;-0.07332428;-0.02523586,0.07334911;0.005123137;-0.03152239,0.100354;-0.2922765;-0.002813671,0.08887114;-0.5836724;0.06758952,0.1014218;-0.6126356;0.00752873,-0.06896936;0.003114091;-0.04041695,-0.08814362;-0.2939105;-0.002883654,-0.08136807;-0.5867062;0.06211456,-0.08083474;-0.6168121;0.002258345,0.00907864;0.3997667;0.008362049,0;0;0,0.001050204;0.1994639;0.01459646,0.003729913;0.4993289;0.02162915,0.1178983;0.3811764;-0.006535916,0.1729403;0.189097;-0.01524754,0.2060796;-0.02580142;-0.1386187,-0.1080986;0.3655998;-0.009908883,-0.1616425;0.1738997;-0.0295085,-0.208802;-0.05331708;-0.1225058,0.07352541;0.006812584;-0.03078317,0.08841132;-0.2909027;0.003040113,0.07541005;-0.5828455;0.0708663,0.08749943;-0.6137382;0.01333185,-0.06805176;0.001469887;-0.04203327,-0.09888258;-0.2939;0.0004649647,-0.09922313;-0.5867655;0.06550072,-0.100333;-0.6153452;0.003662184,0.002666361;0.3993345;0.02160437,84.56416
-0;0;0,0.004113951;0.1998325;0.007073784,0.0117152;0.4996821;0.005204858,0.1254944;0.3822259;-0.01486904,0.1872487;0.1942348;0.01421298,0.2627428;-0.04325651;-0.005749326,-0.1026105;0.3679544;-0.02186222,-0.1531627;0.1747755;-0.01061991,-0.1802342;-0.07332428;-0.02523586,0.07334911;0.005123137;-0.03152239,0.100354;-0.2922765;-0.002813671,0.08887114;-0.5836724;0.06758952,0.1014218;-0.6126356;0.00752873,-0.06896936;0.003114091;-0.04041695,-0.08814362;-0.2939105;-0.002883654,-0.08136807;-0.5867062;0.06211456,-0.08083474;-0.6168121;0.002258345,0.00907864;0.3997667;0.008362049,0;0;0,0.001050204;0.1994639;0.01459646,0.003729913;0.4993289;0.02162915,0.1178983;0.3811764;-0.006535916,0.1729403;0.189097;-0.01524754,0.2060796;-0.02580142;-0.1386187,-0.1080986;0.3655998;-0.009908883,-0.1616425;0.1738997;-0.0295085,-0.208802;-0.05331708;-0.1225058,0.07352541;0.006812584;-0.03078317,0.08841132;-0.2909027;0.003040113,0.07541005;-0.5828455;0.0708663,0.08749943;-0.6137382;0.01333185,-0.06805176;0.001469887;-0.04203327,-0.09888258;-0.2939;0.0004649647,-0.09922313;-0.5867655;0.06550072,-0.100333;-0.6153452;0.003662184,0.002666361;0.3993345;0.02160437,84.58607
-0;0;0,0.004218485;0.1998111;0.007597969,0.01217753;0.4996609;0.007204524,0.1254759;0.3819359;-0.01506521,0.1867883;0.1938354;0.0142432,0.2588399;-0.04465136;-0.006556911,-0.1019277;0.3674852;-0.02121369,-0.1523667;0.1742669;-0.01014162,-0.1796004;-0.0738079;-0.02488063,0.07338645;0.00510338;-0.03143859,0.09996583;-0.2923017;-0.002390947,0.08855309;-0.5836958;0.06803119,0.1010503;-0.6126199;0.007908054,-0.06892976;0.003133604;-0.04048295,-0.08837365;-0.2938137;-0.002479859,-0.08168163;-0.58661;0.06252462,-0.08093777;-0.616454;0.002321858,0.009429589;0.3997315;0.009765726,0;0;0,0.001037465;0.1994579;0.01467862,0.003739257;0.4993123;0.0221648,0.1178609;0.3811467;-0.006409848,0.173332;0.1893154;-0.01753215,0.2075636;-0.0226467;-0.1455957,-0.1079498;0.365062;-0.009417117,-0.1628003;0.1739956;-0.03144155,-0.2105269;-0.05095328;-0.1295239,0.07354167;0.006808139;-0.03074526,0.08832012;-0.2909352;0.002878308,0.07528396;-0.5828252;0.07092448,0.08769086;-0.6139166;0.01373833,-0.06803993;0.001475229;-0.04205224,-0.0990516;-0.293925;0.00010195,-0.09962167;-0.5867014;0.06553648,-0.1006208;-0.615446;0.003906298,0.002690289;0.399318;0.02197223,84.59748
-0;0;0,0.004218485;0.1998111;0.007597969,0.01217753;0.4996609;0.007204524,0.1254759;0.3819359;-0.01506521,0.1867883;0.1938354;0.0142432,0.2588399;-0.04465136;-0.006556911,-0.1019277;0.3674852;-0.02121369,-0.1523667;0.1742669;-0.01014162,-0.1796004;-0.0738079;-0.02488063,0.07338645;0.00510338;-0.03143859,0.09996583;-0.2923017;-0.002390947,0.08855309;-0.5836958;0.06803119,0.1010503;-0.6126199;0.007908054,-0.06892976;0.003133604;-0.04048295,-0.08837365;-0.2938137;-0.002479859,-0.08168163;-0.58661;0.06252462,-0.08093777;-0.616454;0.002321858,0.009429589;0.3997315;0.009765726,0;0;0,0.001037465;0.1994579;0.01467862,0.003739257;0.4993123;0.0221648,0.1178609;0.3811467;-0.006409848,0.173332;0.1893154;-0.01753215,0.2075636;-0.0226467;-0.1455957,-0.1079498;0.365062;-0.009417117,-0.1628003;0.1739956;-0.03144155,-0.2105269;-0.05095328;-0.1295239,0.07354167;0.006808139;-0.03074526,0.08832012;-0.2909352;0.002878308,0.07528396;-0.5828252;0.07092448,0.08769086;-0.6139166;0.01373833,-0.06803993;0.001475229;-0.04205224,-0.0990516;-0.293925;0.00010195,-0.09962167;-0.5867014;0.06553648,-0.1006208;-0.615446;0.003906298,0.002690289;0.399318;0.02197223,84.60876
-0;0;0,0.004236455;0.1998126;0.007549175,0.01214181;0.4996592;0.006639008,0.12555;0.3824179;-0.01525223,0.1863713;0.1941721;0.01414636,0.2550019;-0.04522571;-0.007729543,-0.1021599;0.367744;-0.02101671,-0.1525638;0.1745071;-0.01011085,-0.1798121;-0.07357569;-0.02468661,0.07340356;0.005146699;-0.03139153,0.09953126;-0.2922772;-0.002127593,0.08815242;-0.5836571;0.0683581,0.1003221;-0.6128247;0.008488324,-0.06892219;0.003091767;-0.04049904,-0.08841643;-0.2938364;-0.002372481,-0.08161239;-0.5864307;0.06352355,-0.07967576;-0.5545514;-0.0348019,0.009407533;0.3997366;0.009465884,0;0;0,0.001037465;0.1994579;0.01467862,0.003739257;0.4993123;0.0221648,0.1178609;0.3811467;-0.006409848,0.173332;0.1893154;-0.01753215,0.2075636;-0.0226467;-0.1455957,-0.1079498;0.365062;-0.009417117,-0.1628003;0.1739956;-0.03144155,-0.2105269;-0.05095328;-0.1295239,0.07354167;0.006808139;-0.03074526,0.08832012;-0.2909352;0.002878308,0.07528396;-0.5828252;0.07092448,0.08769086;-0.6139166;0.01373833,-0.06803993;0.001475229;-0.04205224,-0.0990516;-0.293925;0.00010195,-0.09962167;-0.5867014;0.06553648,-0.1006208;-0.615446;0.003906298,0.002690289;0.399318;0.02197223,84.63101
-0;0;0,0.004236455;0.1998126;0.007549175,0.01214181;0.4996592;0.006639008,0.12555;0.3824179;-0.01525223,0.1863713;0.1941721;0.01414636,0.2550019;-0.04522571;-0.007729543,-0.1021599;0.367744;-0.02101671,-0.1525638;0.1745071;-0.01011085,-0.1798121;-0.07357569;-0.02468661,0.07340356;0.005146699;-0.03139153,0.09953126;-0.2922772;-0.002127593,0.08815242;-0.5836571;0.0683581,0.1003221;-0.6128247;0.008488324,-0.06892219;0.003091767;-0.04049904,-0.08841643;-0.2938364;-0.002372481,-0.08161239;-0.5864307;0.06352355,-0.07967576;-0.5545514;-0.0348019,0.009407533;0.3997366;0.009465884,0;0;0,0.0008878355;0.1994499;0.01479665,0.003446937;0.4992971;0.02261313,0.1175828;0.3811687;-0.006274894,0.1740332;0.1898277;-0.020486,0.2091481;-0.01821974;-0.1545876,-0.1081223;0.3648266;-0.009045597,-0.1643101;0.1744443;-0.03348958,-0.2122838;-0.04710607;-0.1389123,0.07356571;0.006892111;-0.03066893,0.08778934;-0.2908799;0.002939438,0.07452163;-0.5828302;0.07068153,0.08775929;-0.6131659;0.01262182,-0.06805488;0.00139917;-0.04203065,-0.0997382;-0.2939567;-6.522983E-05,-0.09992056;-0.5867029;0.06550638,-0.1022448;-0.6139477;0.002041139,0.002457704;0.3993024;0.02231499,84.65304
-0;0;0,0.004418178;0.199792;0.007978175,0.01277485;0.4996308;0.008525659,0.1256421;0.3817354;-0.01530492,0.1858562;0.1932732;0.01395727,0.2519897;-0.04675008;-0.008740406,-0.1012817;0.3671842;-0.02057727,-0.1516084;0.1739107;-0.009967427,-0.1793208;-0.07413533;-0.02429142,0.07343176;0.005056537;-0.03134019,0.09950837;-0.2923755;-0.002113746,0.08815193;-0.5837392;0.06844307,0.1018036;-0.6133995;0.00955452,-0.0688778;0.003201261;-0.040566,-0.08836623;-0.293711;-0.002312716,-0.08187167;-0.5863166;0.06356451,-0.08003856;-0.554378;-0.03477381,0.009894805;0.3996975;0.0107705,0;0;0,0.0008878355;0.1994499;0.01479665,0.003446937;0.4992971;0.02261313,0.1175828;0.3811687;-0.006274894,0.1740332;0.1898277;-0.020486,0.2091481;-0.01821974;-0.1545876,-0.1081223;0.3648266;-0.009045597,-0.1643101;0.1744443;-0.03348958,-0.2122838;-0.04710607;-0.1389123,0.07356571;0.006892111;-0.03066893,0.08778934;-0.2908799;0.002939438,0.07452163;-0.5828302;0.07068153,0.08775929;-0.6131659;0.01262182,-0.06805488;0.00139917;-0.04203065,-0.0997382;-0.2939567;-6.522983E-05,-0.09992056;-0.5867029;0.06550638,-0.1022448;-0.6139477;0.002041139,0.002457704;0.3993024;0.02231499,84.6647
-0;0;0,0.004418178;0.199792;0.007978175,0.01277485;0.4996308;0.008525659,0.1256421;0.3817354;-0.01530492,0.1858562;0.1932732;0.01395727,0.2519897;-0.04675008;-0.008740406,-0.1012817;0.3671842;-0.02057727,-0.1516084;0.1739107;-0.009967427,-0.1793208;-0.07413533;-0.02429142,0.07343176;0.005056537;-0.03134019,0.09950837;-0.2923755;-0.002113746,0.08815193;-0.5837392;0.06844307,0.1018036;-0.6133995;0.00955452,-0.0688778;0.003201261;-0.040566,-0.08836623;-0.293711;-0.002312716,-0.08187167;-0.5863166;0.06356451,-0.08003856;-0.554378;-0.03477381,0.009894805;0.3996975;0.0107705,0;0;0,0.0008878355;0.1994499;0.01479665,0.003446937;0.4992971;0.02261313,0.1175828;0.3811687;-0.006274894,0.1740332;0.1898277;-0.020486,0.2091481;-0.01821974;-0.1545876,-0.1081223;0.3648266;-0.009045597,-0.1643101;0.1744443;-0.03348958,-0.2122838;-0.04710607;-0.1389123,0.07356571;0.006892111;-0.03066893,0.08778934;-0.2908799;0.002939438,0.07452163;-0.5828302;0.07068153,0.08775929;-0.6131659;0.01262182,-0.06805488;0.00139917;-0.04203065,-0.0997382;-0.2939567;-6.522983E-05,-0.09992056;-0.5867029;0.06550638,-0.1022448;-0.6139477;0.002041139,0.002457704;0.3993024;0.02231499,84.6869
-0;0;0,0.004620846;0.1997918;0.007867255,0.01334716;0.4996161;0.007613679,0.1262101;0.3821183;-0.01544415,0.1861102;0.1935441;0.0137412,0.2496001;-0.04713893;-0.00951143,-0.1011357;0.3675773;-0.02052745,-0.151848;0.1744037;-0.009932584,-0.1797901;-0.07361688;-0.02425092,0.07345391;0.005005384;-0.03129648,0.09933361;-0.2924225;-0.001853094,0.08797306;-0.5837936;0.06867231,0.1015993;-0.6135786;0.00994686,-0.06884287;0.003257707;-0.04062075,-0.08851095;-0.2936159;-0.002160199,-0.08207448;-0.5862373;0.06365219,-0.08028198;-0.5543218;-0.03468264,0.01031677;0.3996966;0.01024105,0;0;0,0.000652364;0.1994341;0.01501996,0.003038266;0.4992744;0.02317506,0.1172187;0.3810045;-0.00582438,0.1738681;0.1899631;-0.02297099,0.2104526;-0.01135296;-0.1666144,-0.108411;0.3645773;-0.008573638,-0.1656357;0.1748509;-0.035578,-0.2135559;-0.04507262;-0.1443773,0.07354076;0.006957393;-0.03071402,0.08713456;-0.2908041;0.003246348,0.07385824;-0.5827754;0.07089634,0.08713529;-0.6134186;0.01327353,-0.06814247;0.001329995;-0.04189073,-0.1003128;-0.2939444;0.0002769716,-0.100343;-0.5866973;0.06581861,-0.1025959;-0.6140454;0.002476647,0.002110479;0.3992797;0.02274341,84.71001
-0;0;0,0.004606377;0.1997947;0.007802146,0.01316209;0.4996203;0.007032081,0.1262682;0.3826433;-0.01539409,0.1856228;0.1938968;0.01379177,0.2473413;-0.04727492;-0.009164775,-0.1013447;0.367779;-0.02068897,-0.152473;0.1747134;-0.01012594,-0.180766;-0.07327345;-0.02433995,0.07342194;0.005011353;-0.03137045,0.09901121;-0.2924158;-0.001667375,0.08749859;-0.5837578;0.06895392,0.1012882;-0.6133471;0.0100015,-0.06890461;0.003251027;-0.04051648,-0.08874433;-0.2936098;-0.002045464,-0.08230688;-0.5862058;0.06387962,-0.08051984;-0.5543069;-0.03445226,0.01021212;0.3997051;0.009901864,0;0;0,0.000652364;0.1994341;0.01501996,0.003038266;0.4992744;0.02317506,0.1172187;0.3810045;-0.00582438,0.1738681;0.1899631;-0.02297099,0.2104526;-0.01135296;-0.1666144,-0.108411;0.3645773;-0.008573638,-0.1656357;0.1748509;-0.035578,-0.2135559;-0.04507262;-0.1443773,0.07354076;0.006957393;-0.03071402,0.08713456;-0.2908041;0.003246348,0.07385824;-0.5827754;0.07089634,0.08713529;-0.6134186;0.01327353,-0.06814247;0.001329995;-0.04189073,-0.1003128;-0.2939444;0.0002769716,-0.100343;-0.5866973;0.06581861,-0.1025959;-0.6140454;0.002476647,0.002110479;0.3992797;0.02274341,84.73164
-0;0;0,0.004606377;0.1997947;0.007802146,0.01316209;0.4996203;0.007032081,0.1262682;0.3826433;-0.01539409,0.1856228;0.1938968;0.01379177,0.2473413;-0.04727492;-0.009164775,-0.1013447;0.367779;-0.02068897,-0.152473;0.1747134;-0.01012594,-0.180766;-0.07327345;-0.02433995,0.07342194;0.005011353;-0.03137045,0.09901121;-0.2924158;-0.001667375,0.08749859;-0.5837578;0.06895392,0.1012882;-0.6133471;0.0100015,-0.06890461;0.003251027;-0.04051648,-0.08874433;-0.2936098;-0.002045464,-0.08230688;-0.5862058;0.06387962,-0.08051984;-0.5543069;-0.03445226,0.01021212;0.3997051;0.009901864,0;0;0,0.000652364;0.1994341;0.01501996,0.003038266;0.4992744;0.02317506,0.1172187;0.3810045;-0.00582438,0.1738681;0.1899631;-0.02297099,0.2104526;-0.01135296;-0.1666144,-0.108411;0.3645773;-0.008573638,-0.1656357;0.1748509;-0.035578,-0.2135559;-0.04507262;-0.1443773,0.07354076;0.006957393;-0.03071402,0.08713456;-0.2908041;0.003246348,0.07385824;-0.5827754;0.07089634,0.08713529;-0.6134186;0.01327353,-0.06814247;0.001329995;-0.04189073,-0.1003128;-0.2939444;0.0002769716,-0.100343;-0.5866973;0.06581861,-0.1025959;-0.6140454;0.002476647,0.002110479;0.3992797;0.02274341,84.75368
-0;0;0,0.004744242;0.1997973;0.007651339,0.01339705;0.4996162;0.00626219,0.1266503;0.3834211;-0.01563522,0.1853659;0.1944859;0.01362192,0.2446174;-0.04729483;-0.009428781,-0.1012609;0.3682666;-0.02124677,-0.1529564;0.1753654;-0.0104437,-0.1817034;-0.07257459;-0.02456296,0.0733857;0.004943326;-0.03146588,0.09859887;-0.2924869;-0.001473002,0.08721463;-0.5837549;0.06947304,0.10078;-0.6133746;0.01050967,-0.0689856;0.003307436;-0.04037383,-0.08885731;-0.2935579;-0.001954027,-0.08248713;-0.5862002;0.06377238,-0.08067188;-0.5543195;-0.03455562,0.01042278;0.3997091;0.009381903,0;0;0,0.0006417194;0.19943;0.01507473,0.002958232;0.4992639;0.02349312,0.1171391;0.381024;-0.005784055,0.1741529;0.190542;-0.02737197,0.2102128;-0.006771684;-0.1765933,-0.1084552;0.3645931;-0.008364934,-0.1663849;0.175538;-0.03840351,-0.2150015;-0.04064041;-0.1541761,0.07355192;0.006949231;-0.03068914,0.08709976;-0.2908322;0.003114356,0.07379898;-0.5827864;0.07083303,0.086807;-0.6132835;0.01294502,-0.06812005;0.001336532;-0.04192699,-0.1004703;-0.2939308;0.0001521446,-0.1004722;-0.5866128;0.06601013,-0.102438;-0.6143292;0.00311102,0.002071079;0.3992692;0.02296428,84.77621
-0;0;0,0.004744242;0.1997973;0.007651339,0.01339705;0.4996162;0.00626219,0.1266503;0.3834211;-0.01563522,0.1853659;0.1944859;0.01362192,0.2446174;-0.04729483;-0.009428781,-0.1012609;0.3682666;-0.02124677,-0.1529564;0.1753654;-0.0104437,-0.1817034;-0.07257459;-0.02456296,0.0733857;0.004943326;-0.03146588,0.09859887;-0.2924869;-0.001473002,0.08721463;-0.5837549;0.06947304,0.10078;-0.6133746;0.01050967,-0.0689856;0.003307436;-0.04037383,-0.08885731;-0.2935579;-0.001954027,-0.08248713;-0.5862002;0.06377238,-0.08067188;-0.5543195;-0.03455562,0.01042278;0.3997091;0.009381903,0;0;0,0.0006417194;0.19943;0.01507473,0.002958232;0.4992639;0.02349312,0.1171391;0.381024;-0.005784055,0.1741529;0.190542;-0.02737197,0.2102128;-0.006771684;-0.1765933,-0.1084552;0.3645931;-0.008364934,-0.1663849;0.175538;-0.03840351,-0.2150015;-0.04064041;-0.1541761,0.07355192;0.006949231;-0.03068914,0.08709976;-0.2908322;0.003114356,0.07379898;-0.5827864;0.07083303,0.086807;-0.6132835;0.01294502,-0.06812005;0.001336532;-0.04192699,-0.1004703;-0.2939308;0.0001521446,-0.1004722;-0.5866128;0.06601013,-0.102438;-0.6143292;0.00311102,0.002071079;0.3992692;0.02296428,84.78738
-0;0;0,0.004793429;0.1998031;0.007466053,0.01333691;0.4996207;0.005494405,0.1267265;0.3837995;-0.01601831,0.1847841;0.1946527;0.01318493,0.242562;-0.04755518;-0.009110086,-0.1014136;0.3682596;-0.02124484,-0.1532963;0.1754073;-0.01046657,-0.1823683;-0.07249032;-0.02466484,0.07344849;0.004972089;-0.03131447,0.09841909;-0.2924761;-0.001297032,0.08715183;-0.5837837;0.06950488,0.1007079;-0.6131799;0.01023863,-0.06883173;0.003310725;-0.04063534,-0.08905262;-0.2934608;-0.001676716,-0.08282236;-0.5861585;0.06381594,-0.08116507;-0.5542983;-0.03451105,0.01041352;0.3997194;0.00883799,0;0;0,0.0006417194;0.19943;0.01507473,0.002958232;0.4992639;0.02349312,0.1171391;0.381024;-0.005784055,0.1741529;0.190542;-0.02737197,0.2102128;-0.006771684;-0.1765933,-0.1084552;0.3645931;-0.008364934,-0.1663849;0.175538;-0.03840351,-0.2150015;-0.04064041;-0.1541761,0.07355192;0.006949231;-0.03068914,0.08709976;-0.2908322;0.003114356,0.07379898;-0.5827864;0.07083303,0.086807;-0.6132835;0.01294502,-0.06812005;0.001336532;-0.04192699,-0.1004703;-0.2939308;0.0001521446,-0.1004722;-0.5866128;0.06601013,-0.102438;-0.6143292;0.00311102,0.002071079;0.3992692;0.02296428,84.80972
-0;0;0,0.004928289;0.199802;0.007407414,0.01360043;0.4996149;0.00528239,0.12694;0.383945;-0.01631648,0.1845496;0.1946644;0.01290703,0.2403858;-0.04800896;-0.009272348,-0.1012162;0.3682044;-0.02125487,-0.1534554;0.175447;-0.01050178,-0.1828075;-0.07241656;-0.0247184,0.07346635;0.004912885;-0.03128193,0.09823427;-0.2925719;-0.001460232,0.08705384;-0.5838045;0.06966341,0.1004013;-0.6133931;0.01060827,-0.06881971;0.003374396;-0.04065047,-0.08903885;-0.293393;-0.001659196,-0.08295564;-0.5861012;0.06380002,-0.08141217;-0.5542428;-0.03452849,0.01063641;0.3997165;0.00867813,0;0;0,0.0005136691;0.1994173;0.01524696,0.002498949;0.4992291;0.02453391,0.1167015;0.3809125;-0.005598133,0.1743615;0.1911084;-0.03108757,0.2098585;-0.003202364;-0.1843301,-0.1088194;0.364872;-0.007734582,-0.1664143;0.1763519;-0.0415426,-0.2156605;-0.03532568;-0.165104,0.07357246;0.007106996;-0.03060363,0.08663294;-0.2907194;0.002994662,0.07345293;-0.5825921;0.07108779,0.08646625;-0.613205;0.01336259,-0.06813427;0.001212239;-0.04190766,-0.1007984;-0.2940087;0.000254821,-0.1006823;-0.586717;0.06599554,-0.1030742;-0.6139359;0.002501316,0.001779888;0.3992354;0.02368141,84.83168
-0;0;0,0.004928289;0.199802;0.007407414,0.01360043;0.4996149;0.00528239,0.12694;0.383945;-0.01631648,0.1845496;0.1946644;0.01290703,0.2403858;-0.04800896;-0.009272348,-0.1012162;0.3682044;-0.02125487,-0.1534554;0.175447;-0.01050178,-0.1828075;-0.07241656;-0.0247184,0.07346635;0.004912885;-0.03128193,0.09823427;-0.2925719;-0.001460232,0.08705384;-0.5838045;0.06966341,0.1004013;-0.6133931;0.01060827,-0.06881971;0.003374396;-0.04065047,-0.08903885;-0.293393;-0.001659196,-0.08295564;-0.5861012;0.06380002,-0.08141217;-0.5542428;-0.03452849,0.01063641;0.3997165;0.00867813,0;0;0,0.0005136691;0.1994173;0.01524696,0.002498949;0.4992291;0.02453391,0.1167015;0.3809125;-0.005598133,0.1743615;0.1911084;-0.03108757,0.2098585;-0.003202364;-0.1843301,-0.1088194;0.364872;-0.007734582,-0.1664143;0.1763519;-0.0415426,-0.2156605;-0.03532568;-0.165104,0.07357246;0.007106996;-0.03060363,0.08663294;-0.2907194;0.002994662,0.07345293;-0.5825921;0.07108779,0.08646625;-0.613205;0.01336259,-0.06813427;0.001212239;-0.04190766,-0.1007984;-0.2940087;0.000254821,-0.1006823;-0.586717;0.06599554,-0.1030742;-0.6139359;0.002501316,0.001779888;0.3992354;0.02368141,84.84339
-0;0;0,0.005374104;0.1997994;0.007162928,0.01509994;0.4995728;0.004345765,0.1280807;0.3840238;-0.01688251,0.1845669;0.1943998;0.01230795,0.2383093;-0.04876956;-0.009609997,-0.1003502;0.3684633;-0.02132308,-0.152976;0.1758059;-0.01066207,-0.1826837;-0.07201655;-0.02485668,0.0734721;0.004900543;-0.03127035,0.09817179;-0.2925932;-0.001480738,0.08700649;-0.5838;0.06975079,0.1002263;-0.6126178;0.009642713,-0.06881029;0.003391221;-0.04066502,-0.08908111;-0.2933627;-0.001598414,-0.08300915;-0.5860727;0.06385355,-0.08156262;-0.5542411;-0.03447151,0.0117407;0.3996963;0.008004828,0;0;0,0.0005136691;0.1994173;0.01524696,0.002498949;0.4992291;0.02453391,0.1167015;0.3809125;-0.005598133,0.1743615;0.1911084;-0.03108757,0.2098585;-0.003202364;-0.1843301,-0.1088194;0.364872;-0.007734582,-0.1664143;0.1763519;-0.0415426,-0.2156605;-0.03532568;-0.165104,0.07357246;0.007106996;-0.03060363,0.08663294;-0.2907194;0.002994662,0.07345293;-0.5825921;0.07108779,0.08646625;-0.613205;0.01336259,-0.06813427;0.001212239;-0.04190766,-0.1007984;-0.2940087;0.000254821,-0.1006823;-0.586717;0.06599554,-0.1030742;-0.6139359;0.002501316,0.001779888;0.3992354;0.02368141,84.8654
-0;0;0,0.005374104;0.1997994;0.007162928,0.01509994;0.4995728;0.004345765,0.1280807;0.3840238;-0.01688251,0.1845669;0.1943998;0.01230795,0.2383093;-0.04876956;-0.009609997,-0.1003502;0.3684633;-0.02132308,-0.152976;0.1758059;-0.01066207,-0.1826837;-0.07201655;-0.02485668,0.0734721;0.004900543;-0.03127035,0.09817179;-0.2925932;-0.001480738,0.08700649;-0.5838;0.06975079,0.1002263;-0.6126178;0.009642713,-0.06881029;0.003391221;-0.04066502,-0.08908111;-0.2933627;-0.001598414,-0.08300915;-0.5860727;0.06385355,-0.08156262;-0.5542411;-0.03447151,0.0117407;0.3996963;0.008004828,0;0;0,0.0005279746;0.1994111;0.01532729,0.002449785;0.4992152;0.02483867,0.1165994;0.3807686;-0.005589325,0.174854;0.1915246;-0.03375136,0.2093889;0.0005017966;-0.1912875,-0.1089512;0.3650117;-0.007226899,-0.1667906;0.1771016;-0.043893,-0.2158942;-0.0327934;-0.1705141,0.07355887;0.007158587;-0.03062427,0.0863907;-0.2906833;0.002925321,0.07318193;-0.5825751;0.07093057,0.08632963;-0.6133006;0.01339344,-0.06815101;0.001163815;-0.0418818,-0.1010819;-0.2940311;0.0002552196,-0.1008243;-0.5867454;0.06596904,-0.1033372;-0.6139411;0.002451234,0.001764238;0.3992215;0.02394674,84.87732
-0;0;0,0.005374104;0.1997994;0.007162928,0.01509994;0.4995728;0.004345765,0.1280807;0.3840238;-0.01688251,0.1845669;0.1943998;0.01230795,0.2383093;-0.04876956;-0.009609997,-0.1003502;0.3684633;-0.02132308,-0.152976;0.1758059;-0.01066207,-0.1826837;-0.07201655;-0.02485668,0.0734721;0.004900543;-0.03127035,0.09817179;-0.2925932;-0.001480738,0.08700649;-0.5838;0.06975079,0.1002263;-0.6126178;0.009642713,-0.06881029;0.003391221;-0.04066502,-0.08908111;-0.2933627;-0.001598414,-0.08300915;-0.5860727;0.06385355,-0.08156262;-0.5542411;-0.03447151,0.0117407;0.3996963;0.008004828,0;0;0,0.0005279746;0.1994111;0.01532729,0.002449785;0.4992152;0.02483867,0.1165994;0.3807686;-0.005589325,0.174854;0.1915246;-0.03375136,0.2093889;0.0005017966;-0.1912875,-0.1089512;0.3650117;-0.007226899,-0.1667906;0.1771016;-0.043893,-0.2158942;-0.0327934;-0.1705141,0.07355887;0.007158587;-0.03062427,0.0863907;-0.2906833;0.002925321,0.07318193;-0.5825751;0.07093057,0.08632963;-0.6133006;0.01339344,-0.06815101;0.001163815;-0.0418818,-0.1010819;-0.2940311;0.0002552196,-0.1008243;-0.5867454;0.06596904,-0.1033372;-0.6139411;0.002451234,0.001764238;0.3992215;0.02394674,84.88855
-0;0;0,0.005586955;0.1997977;0.007047548,0.01552287;0.4995628;0.004048483,0.1284157;0.3837739;-0.01710617,0.1840708;0.1939112;0.01212813,0.2332277;-0.0502871;-0.009104079,-0.1000758;0.3685708;-0.02134458,-0.1527159;0.1759008;-0.01098558,-0.1825645;-0.07185799;-0.02597328,0.07351979;0.004832543;-0.03116869,0.09806778;-0.2926687;-0.001329383,0.08685912;-0.5838413;0.0700353,0.1000866;-0.61244;0.00964275,-0.06873815;0.003466815;-0.04078048,-0.08913279;-0.2932346;-0.001380906,-0.08291861;-0.585923;0.0641546,-0.08157253;-0.5541019;-0.03416994,0.01210451;0.3996902;0.007761226,0;0;0,0.0005279746;0.1994111;0.01532729,0.002449785;0.4992152;0.02483867,0.1165994;0.3807686;-0.005589325,0.174854;0.1915246;-0.03375136,0.2093889;0.0005017966;-0.1912875,-0.1089512;0.3650117;-0.007226899,-0.1667906;0.1771016;-0.043893,-0.2158942;-0.0327934;-0.1705141,0.07355887;0.007158587;-0.03062427,0.0863907;-0.2906833;0.002925321,0.07318193;-0.5825751;0.07093057,0.08632963;-0.6133006;0.01339344,-0.06815101;0.001163815;-0.0418818,-0.1010819;-0.2940311;0.0002552196,-0.1008243;-0.5867454;0.06596904,-0.1033372;-0.6139411;0.002451234,0.001764238;0.3992215;0.02394674,84.91108
-0;0;0,0.005807986;0.199773;0.007550026,0.01624349;0.4995469;0.007281718,0.1282727;0.3823368;-0.01731772,0.1833552;0.1922847;0.01177046,0.2285177;-0.05262293;-0.01015263,-0.09866364;0.3673919;-0.02127031,-0.1518256;0.1748778;-0.01067999,-0.1822866;-0.07278641;-0.02599499,0.07348998;0.004739054;-0.03125322,0.09780623;-0.2927929;-0.001530273,0.08667536;-0.5839022;0.07010419,0.09993641;-0.61467;0.01265242,-0.06875435;0.003535473;-0.04074727,-0.08935174;-0.2931494;-0.001328617,-0.08314911;-0.5858729;0.0640511,-0.08189271;-0.5539483;-0.0342937,0.01266592;0.3996427;0.009804018,0;0;0,0.0004750797;0.1993966;0.01551653,0.002146628;0.4991716;0.02596433,0.1162503;0.3806792;-0.005418302,0.1737822;0.1917743;-0.03712029,0.2094335;0.005568162;-0.2000812,-0.1090738;0.3649063;-0.006556474,-0.167988;0.1778983;-0.04601689,-0.2175197;-0.02926658;-0.176896,0.07357212;0.007198734;-0.03058301,0.08618444;-0.2906553;0.002942391,0.07301259;-0.5825202;0.07106964,0.08532484;-0.6142817;0.0148249,-0.06814443;0.001124125;-0.04189359,-0.1012718;-0.294001;0.0005774796,-0.1007131;-0.5867827;0.06598803,-0.1037854;-0.6131936;0.001552522,0.0015858;0.3991806;0.02474391,84.93321
-0;0;0,0.005807986;0.199773;0.007550026,0.01624349;0.4995469;0.007281718,0.1282727;0.3823368;-0.01731772,0.1833552;0.1922847;0.01177046,0.2285177;-0.05262293;-0.01015263,-0.09866364;0.3673919;-0.02127031,-0.1518256;0.1748778;-0.01067999,-0.1822866;-0.07278641;-0.02599499,0.07348998;0.004739054;-0.03125322,0.09780623;-0.2927929;-0.001530273,0.08667536;-0.5839022;0.07010419,0.09993641;-0.61467;0.01265242,-0.06875435;0.003535473;-0.04074727,-0.08935174;-0.2931494;-0.001328617,-0.08314911;-0.5858729;0.0640511,-0.08189271;-0.5539483;-0.0342937,0.01266592;0.3996427;0.009804018,0;0;0,0.0004750797;0.1993966;0.01551653,0.002146628;0.4991716;0.02596433,0.1162503;0.3806792;-0.005418302,0.1737822;0.1917743;-0.03712029,0.2094335;0.005568162;-0.2000812,-0.1090738;0.3649063;-0.006556474,-0.167988;0.1778983;-0.04601689,-0.2175197;-0.02926658;-0.176896,0.07357212;0.007198734;-0.03058301,0.08618444;-0.2906553;0.002942391,0.07301259;-0.5825202;0.07106964,0.08532484;-0.6142817;0.0148249,-0.06814443;0.001124125;-0.04189359,-0.1012718;-0.294001;0.0005774796,-0.1007131;-0.5867827;0.06598803,-0.1037854;-0.6131936;0.001552522,0.0015858;0.3991806;0.02474391,84.94458
-0;0;0,0.005875175;0.1997559;0.007942034,0.01648667;0.4995239;0.00894884,0.1280754;0.3812946;-0.01718341,0.1822157;0.1908953;0.01139869,0.2241129;-0.05458401;-0.01061274,-0.09806931;0.3668434;-0.02090113,-0.1511151;0.1742971;-0.01031534,-0.1818237;-0.07331996;-0.02589656,0.07354116;0.004632819;-0.0311486,0.09752665;-0.2929251;-0.001416782,0.08654043;-0.5840133;0.07032556,0.09982131;-0.6150194;0.01321491,-0.06870986;0.003622756;-0.04081459,-0.08946667;-0.2930087;-0.001078438,-0.08329761;-0.5857723;0.06412411,-0.08406671;-0.6131908;0.0008328408,0.01287716;0.39961;0.01099299,0;0;0,0.0004750797;0.1993966;0.01551653,0.002146628;0.4991716;0.02596433,0.1162503;0.3806792;-0.005418302,0.1737822;0.1917743;-0.03712029,0.2094335;0.005568162;-0.2000812,-0.1090738;0.3649063;-0.006556474,-0.167988;0.1778983;-0.04601689,-0.2175197;-0.02926658;-0.176896,0.07357212;0.007198734;-0.03058301,0.08618444;-0.2906553;0.002942391,0.07301259;-0.5825202;0.07106964,0.08532484;-0.6142817;0.0148249,-0.06814443;0.001124125;-0.04189359,-0.1012718;-0.294001;0.0005774796,-0.1007131;-0.5867827;0.06598803,-0.1037854;-0.6131936;0.001552522,0.0015858;0.3991806;0.02474391,84.96854
-0;0;0,0.005875175;0.1997559;0.007942034,0.01648667;0.4995239;0.00894884,0.1280754;0.3812946;-0.01718341,0.1822157;0.1908953;0.01139869,0.2241129;-0.05458401;-0.01061274,-0.09806931;0.3668434;-0.02090113,-0.1511151;0.1742971;-0.01031534,-0.1818237;-0.07331996;-0.02589656,0.07354116;0.004632819;-0.0311486,0.09752665;-0.2929251;-0.001416782,0.08654043;-0.5840133;0.07032556,0.09982131;-0.6150194;0.01321491,-0.06870986;0.003622756;-0.04081459,-0.08946667;-0.2930087;-0.001078438,-0.08329761;-0.5857723;0.06412411,-0.08406671;-0.6131908;0.0008328408,0.01287716;0.39961;0.01099299,0;0;0,0.0003351408;0.1993862;0.01565367,0.001811431;0.4991494;0.02646596,0.1159528;0.3807595;-0.005306059,0.1731661;0.1923023;-0.04009874,0.2087751;0.01071224;-0.208197,-0.1093178;0.3647974;-0.006087247,-0.1694608;0.1789864;-0.04918144,-0.2192614;-0.02495822;-0.1849257,0.07354791;0.007236291;-0.03063234,0.08591432;-0.2906074;0.003075477,0.07265223;-0.5825001;0.07106632,0.08530653;-0.6142869;0.01493443,-0.06816645;0.001080047;-0.0418589,-0.1018559;-0.2940034;0.0004591048,-0.1010434;-0.5867348;0.06609195,-0.1045905;-0.6112623;-0.0004892945,0.001341331;0.3991596;0.02511849,84.989
-0;0;0,0.006320337;0.1997494;0.007760677,0.01769846;0.4994856;0.007691258,0.1291116;0.3814101;-0.0174609,0.1824635;0.1907217;0.01067262,0.2209056;-0.05532423;-0.01131885,-0.09757583;0.367367;-0.0207729,-0.1506018;0.1747849;-0.01075343,-0.1818289;-0.07279077;-0.02595618,0.07358031;0.004611356;-0.0310592,0.09717334;-0.2930161;-0.001711357,0.08639033;-0.5840732;0.07018775,0.09949015;-0.615258;0.01328947,-0.06866089;0.003656279;-0.04089394,-0.08980253;-0.2929104;-0.0008783825,-0.08365304;-0.5856683;0.06435223,-0.08419538;-0.6131645;0.001153789,0.01377746;0.399595;0.01024008,0;0;0,0.0003351408;0.1993862;0.01565367,0.001811431;0.4991494;0.02646596,0.1159528;0.3807595;-0.005306059,0.1731661;0.1923023;-0.04009874,0.2087751;0.01071224;-0.208197,-0.1093178;0.3647974;-0.006087247,-0.1694608;0.1789864;-0.04918144,-0.2192614;-0.02495822;-0.1849257,0.07354791;0.007236291;-0.03063234,0.08591432;-0.2906074;0.003075477,0.07265223;-0.5825001;0.07106632,0.08530653;-0.6142869;0.01493443,-0.06816645;0.001080047;-0.0418589,-0.1018559;-0.2940034;0.0004591048,-0.1010434;-0.5867348;0.06609195,-0.1045905;-0.6112623;-0.0004892945,0.001341331;0.3991596;0.02511849,85.0116
-0;0;0,0.006320337;0.1997494;0.007760677,0.01769846;0.4994856;0.007691258,0.1291116;0.3814101;-0.0174609,0.1824635;0.1907217;0.01067262,0.2209056;-0.05532423;-0.01131885,-0.09757583;0.367367;-0.0207729,-0.1506018;0.1747849;-0.01075343,-0.1818289;-0.07279077;-0.02595618,0.07358031;0.004611356;-0.0310592,0.09717334;-0.2930161;-0.001711357,0.08639033;-0.5840732;0.07018775,0.09949015;-0.615258;0.01328947,-0.06866089;0.003656279;-0.04089394,-0.08980253;-0.2929104;-0.0008783825,-0.08365304;-0.5856683;0.06435223,-0.08419538;-0.6131645;0.001153789,0.01377746;0.399595;0.01024008,0;0;0,0.0003351408;0.1993862;0.01565367,0.001811431;0.4991494;0.02646596,0.1159528;0.3807595;-0.005306059,0.1731661;0.1923023;-0.04009874,0.2087751;0.01071224;-0.208197,-0.1093178;0.3647974;-0.006087247,-0.1694608;0.1789864;-0.04918144,-0.2192614;-0.02495822;-0.1849257,0.07354791;0.007236291;-0.03063234,0.08591432;-0.2906074;0.003075477,0.07265223;-0.5825001;0.07106632,0.08530653;-0.6142869;0.01493443,-0.06816645;0.001080047;-0.0418589,-0.1018559;-0.2940034;0.0004591048,-0.1010434;-0.5867348;0.06609195,-0.1045905;-0.6112623;-0.0004892945,0.001341331;0.3991596;0.02511849,85.02381
-0;0;0,0.006395238;0.1997582;0.007466858,0.01775296;0.4994851;0.005980375,0.1294091;0.3814602;-0.01764116,0.1821946;0.1906037;0.01042053,0.2168726;-0.05583549;-0.01335307,-0.09789602;0.3678409;-0.02085956,-0.1511081;0.1753099;-0.01084435,-0.1824857;-0.0722416;-0.02613131,0.07357045;0.00462548;-0.03108045,0.09673573;-0.2930226;-0.001601934,0.08596713;-0.5840578;0.07038831,0.1001466;-0.6146584;0.012921,-0.06865393;0.003668263;-0.04090454,-0.09033244;-0.2928443;-0.000775639,-0.08435354;-0.585642;0.06429176,-0.08485923;-0.6134399;0.001464732,0.01385861;0.3996117;0.009165714,0;0;0,0.0002785768;0.1993784;0.01575355,0.001653551;0.4991334;0.02678277,0.1157647;0.3806868;-0.005269395,0.1720189;0.1928301;-0.04457983,0.2091061;0.01437151;-0.2156853,-0.10939;0.3645266;-0.005696826,-0.1703096;0.1795324;-0.05114969,-0.2202375;-0.02067468;-0.1923032,0.07353862;0.007261625;-0.03064863,0.08567512;-0.2905822;0.003141547,0.07224184;-0.5824654;0.07113971,0.08520719;-0.6142479;0.0150725,-0.06819133;0.001052985;-0.04181905,-0.1022085;-0.2939804;0.0005853139,-0.1012964;-0.5867482;0.06605437,-0.104681;-0.6113107;-0.0004962161,0.001224045;0.3991441;0.02538629,85.04473
-0;0;0,0.006395238;0.1997582;0.007466858,0.01775296;0.4994851;0.005980375,0.1294091;0.3814602;-0.01764116,0.1821946;0.1906037;0.01042053,0.2168726;-0.05583549;-0.01335307,-0.09789602;0.3678409;-0.02085956,-0.1511081;0.1753099;-0.01084435,-0.1824857;-0.0722416;-0.02613131,0.07357045;0.00462548;-0.03108045,0.09673573;-0.2930226;-0.001601934,0.08596713;-0.5840578;0.07038831,0.1001466;-0.6146584;0.012921,-0.06865393;0.003668263;-0.04090454,-0.09033244;-0.2928443;-0.000775639,-0.08435354;-0.585642;0.06429176,-0.08485923;-0.6134399;0.001464732,0.01385861;0.3996117;0.009165714,0;0;0,0.0002785768;0.1993784;0.01575355,0.001653551;0.4991334;0.02678277,0.1157647;0.3806868;-0.005269395,0.1720189;0.1928301;-0.04457983,0.2091061;0.01437151;-0.2156853,-0.10939;0.3645266;-0.005696826,-0.1703096;0.1795324;-0.05114969,-0.2202375;-0.02067468;-0.1923032,0.07353862;0.007261625;-0.03064863,0.08567512;-0.2905822;0.003141547,0.07224184;-0.5824654;0.07113971,0.08520719;-0.6142479;0.0150725,-0.06819133;0.001052985;-0.04181905,-0.1022085;-0.2939804;0.0005853139,-0.1012964;-0.5867482;0.06605437,-0.104681;-0.6113107;-0.0004962161,0.001224045;0.3991441;0.02538629,85.05608
-0;0;0,0.006472071;0.1997608;0.007329975,0.01777501;0.4994861;0.005392188,0.1295197;0.3816395;-0.01789102,0.1817885;0.1905831;0.009774804,0.2126634;-0.05629057;-0.01472295,-0.09807658;0.3681237;-0.02071588,-0.1512961;0.1755869;-0.01085306,-0.1828302;-0.07194325;-0.02616462,0.07357167;0.004552396;-0.03108833,0.0961981;-0.2931366;-0.001604432,0.08550706;-0.5841584;0.07045129,0.09935107;-0.6135032;0.0111828,-0.06863699;0.00375353;-0.04092523,-0.09076859;-0.2927088;-0.0006728321,-0.08422488;-0.5853046;0.06524313,-0.08413333;-0.6136647;0.003116775,0.01390436;0.3996176;0.008752763,0;0;0,0.0002785768;0.1993784;0.01575355,0.001653551;0.4991334;0.02678277,0.1157647;0.3806868;-0.005269395,0.1720189;0.1928301;-0.04457983,0.2091061;0.01437151;-0.2156853,-0.10939;0.3645266;-0.005696826,-0.1703096;0.1795324;-0.05114969,-0.2202375;-0.02067468;-0.1923032,0.07353862;0.007261625;-0.03064863,0.08567512;-0.2905822;0.003141547,0.07224184;-0.5824654;0.07113971,0.08520719;-0.6142479;0.0150725,-0.06819133;0.001052985;-0.04181905,-0.1022085;-0.2939804;0.0005853139,-0.1012964;-0.5867482;0.06605437,-0.104681;-0.6113107;-0.0004962161,0.001224045;0.3991441;0.02538629,85.07859
-0;0;0,0.006695388;0.19976;0.007149349,0.0181206;0.4994765;0.004706972,0.1298401;0.3818953;-0.01852693,0.1814928;0.1906339;0.008879034,0.2091816;-0.05662431;-0.01554809,-0.0980351;0.3685927;-0.02069024,-0.1513277;0.1760761;-0.0108284,-0.183211;-0.07141185;-0.0260991,0.07352966;0.004510196;-0.03119369,0.09544623;-0.2932381;-0.001772342,0.08475886;-0.5842144;0.0704674,0.09812348;-0.6133588;0.01082213,-0.06869516;0.003797151;-0.04082349,-0.09158673;-0.2926238;-0.000691317,-0.08520254;-0.5852904;0.06492524,-0.08430706;-0.5534422;-0.03340945,0.01421531;0.3996156;0.008248049,0;0;0,0.0003170157;0.199366;0.01590859,0.001656205;0.4991044;0.02734788,0.1156416;0.380318;-0.005134841,0.1712335;0.1930642;-0.04809494,0.2082841;0.01906043;-0.2237364,-0.1093481;0.3646003;-0.005411971,-0.171026;0.180894;-0.05488749,-0.221604;-0.01710445;-0.1988961,0.07354543;0.007268742;-0.03063061,0.08556873;-0.2905808;0.003149375,0.07216866;-0.582492;0.07103375,0.08514909;-0.6139374;0.01448157,-0.06817251;0.001044476;-0.04184992,-0.1023255;-0.2939667;0.00060004,-0.1013995;-0.5867544;0.06597981,-0.105669;-0.6104374;-0.001493052,0.001246146;0.3991165;0.02585369,85.10054
-0;0;0,0.006695388;0.19976;0.007149349,0.0181206;0.4994765;0.004706972,0.1298401;0.3818953;-0.01852693,0.1814928;0.1906339;0.008879034,0.2091816;-0.05662431;-0.01554809,-0.0980351;0.3685927;-0.02069024,-0.1513277;0.1760761;-0.0108284,-0.183211;-0.07141185;-0.0260991,0.07352966;0.004510196;-0.03119369,0.09544623;-0.2932381;-0.001772342,0.08475886;-0.5842144;0.0704674,0.09812348;-0.6133588;0.01082213,-0.06869516;0.003797151;-0.04082349,-0.09158673;-0.2926238;-0.000691317,-0.08520254;-0.5852904;0.06492524,-0.08430706;-0.5534422;-0.03340945,0.01421531;0.3996156;0.008248049,0;0;0,0.0003170157;0.199366;0.01590859,0.001656205;0.4991044;0.02734788,0.1156416;0.380318;-0.005134841,0.1712335;0.1930642;-0.04809494,0.2082841;0.01906043;-0.2237364,-0.1093481;0.3646003;-0.005411971,-0.171026;0.180894;-0.05488749,-0.221604;-0.01710445;-0.1988961,0.07354543;0.007268742;-0.03063061,0.08556873;-0.2905808;0.003149375,0.07216866;-0.582492;0.07103375,0.08514909;-0.6139374;0.01448157,-0.06817251;0.001044476;-0.04184992,-0.1023255;-0.2939667;0.00060004,-0.1013995;-0.5867544;0.06597981,-0.105669;-0.6104374;-0.001493052,0.001246146;0.3991165;0.02585369,85.11244
-0;0;0,0.00671069;0.1997693;0.006870558,0.01799557;0.4994822;0.003634876,0.1298888;0.3823217;-0.019103,0.1809331;0.1907943;0.007575553,0.2057216;-0.05664064;-0.01814392,-0.09848928;0.3692333;-0.02058134,-0.1517252;0.1766997;-0.01074577,-0.1839674;-0.07073747;-0.02608581,0.07353722;0.004473946;-0.0311811,0.09489661;-0.2933273;-0.001886459,0.08407051;-0.5842239;0.07065292,0.09736411;-0.6137205;0.011462,-0.06868236;0.003856347;-0.04083946,-0.09235795;-0.2924697;-0.0004616491,-0.08610541;-0.5851858;0.06494628,-0.08538345;-0.5533707;-0.03338372,0.01415597;0.3996297;0.007474012,0;0;0,0.0003170157;0.199366;0.01590859,0.001656205;0.4991044;0.02734788,0.1156416;0.380318;-0.005134841,0.1712335;0.1930642;-0.04809494,0.2082841;0.01906043;-0.2237364,-0.1093481;0.3646003;-0.005411971,-0.171026;0.180894;-0.05488749,-0.221604;-0.01710445;-0.1988961,0.07354543;0.007268742;-0.03063061,0.08556873;-0.2905808;0.003149375,0.07216866;-0.582492;0.07103375,0.08514909;-0.6139374;0.01448157,-0.06817251;0.001044476;-0.04184992,-0.1023255;-0.2939667;0.00060004,-0.1013995;-0.5867544;0.06597981,-0.105669;-0.6104374;-0.001493052,0.001246146;0.3991165;0.02585369,85.13396
-0;0;0,0.00671069;0.1997693;0.006870558,0.01799557;0.4994822;0.003634876,0.1298888;0.3823217;-0.019103,0.1809331;0.1907943;0.007575553,0.2057216;-0.05664064;-0.01814392,-0.09848928;0.3692333;-0.02058134,-0.1517252;0.1766997;-0.01074577,-0.1839674;-0.07073747;-0.02608581,0.07353722;0.004473946;-0.0311811,0.09489661;-0.2933273;-0.001886459,0.08407051;-0.5842239;0.07065292,0.09736411;-0.6137205;0.011462,-0.06868236;0.003856347;-0.04083946,-0.09235795;-0.2924697;-0.0004616491,-0.08610541;-0.5851858;0.06494628,-0.08538345;-0.5533707;-0.03338372,0.01415597;0.3996297;0.007474012,0;0;0,0.0001999548;0.1993572;0.01602092,0.001318961;0.4990873;0.02767194,0.1153351;0.3804336;-0.00510204,0.1702049;0.193788;-0.05149943,0.2070949;0.02233985;-0.2296698,-0.1096296;0.3645372;-0.005001161,-0.1720341;0.1819515;-0.05761442,-0.2229483;-0.0115032;-0.2075578,0.07350536;0.007327594;-0.03071266,0.08521055;-0.2905425;0.002998147,0.07169154;-0.5824422;0.07090846,0.08462191;-0.6137226;0.01410804,-0.06817508;0.0009754977;-0.04184742,-0.1028395;-0.2940007;0.0004311092,-0.1018107;-0.5867928;0.06578934,-0.1062443;-0.6104651;-0.001684636,0.0009861236;0.3990996;0.02613711,85.14584
-0;0;0,0.006669939;0.1997738;0.006777078,0.01776051;0.4994925;0.003375043,0.1297474;0.3824411;-0.01926314,0.1801281;0.190606;0.006447781,0.2025144;-0.05694571;-0.02032964,-0.09880057;0.3696202;-0.02062982,-0.1522393;0.1771433;-0.01078352,-0.1847471;-0.07026093;-0.02609393,0.07355295;0.00436111;-0.03115998,0.09420972;-0.2934916;-0.001884021,0.08341467;-0.5844005;0.07061032,0.09660788;-0.6139618;0.01148384,-0.06866926;0.003968856;-0.0408507,-0.09304735;-0.2923017;-0.0004836135,-0.08683984;-0.5850137;0.06494665,-0.08613909;-0.5532053;-0.03338228,0.01398634;0.3996394;0.007262127,0;0;0,0.0001999548;0.1993572;0.01602092,0.001318961;0.4990873;0.02767194,0.1153351;0.3804336;-0.00510204,0.1702049;0.193788;-0.05149943,0.2070949;0.02233985;-0.2296698,-0.1096296;0.3645372;-0.005001161,-0.1720341;0.1819515;-0.05761442,-0.2229483;-0.0115032;-0.2075578,0.07350536;0.007327594;-0.03071266,0.08521055;-0.2905425;0.002998147,0.07169154;-0.5824422;0.07090846,0.08462191;-0.6137226;0.01410804,-0.06817508;0.0009754977;-0.04184742,-0.1028395;-0.2940007;0.0004311092,-0.1018107;-0.5867928;0.06578934,-0.1062443;-0.6104651;-0.001684636,0.0009861236;0.3990996;0.02613711,85.16772
-0;0;0,0.006669939;0.1997738;0.006777078,0.01776051;0.4994925;0.003375043,0.1297474;0.3824411;-0.01926314,0.1801281;0.190606;0.006447781,0.2025144;-0.05694571;-0.02032964,-0.09880057;0.3696202;-0.02062982,-0.1522393;0.1771433;-0.01078352,-0.1847471;-0.07026093;-0.02609393,0.07355295;0.00436111;-0.03115998,0.09420972;-0.2934916;-0.001884021,0.08341467;-0.5844005;0.07061032,0.09660788;-0.6139618;0.01148384,-0.06866926;0.003968856;-0.0408507,-0.09304735;-0.2923017;-0.0004836135,-0.08683984;-0.5850137;0.06494665,-0.08613909;-0.5532053;-0.03338228,0.01398634;0.3996394;0.007262127,0;0;0,0.0001999548;0.1993572;0.01602092,0.001318961;0.4990873;0.02767194,0.1153351;0.3804336;-0.00510204,0.1702049;0.193788;-0.05149943,0.2070949;0.02233985;-0.2296698,-0.1096296;0.3645372;-0.005001161,-0.1720341;0.1819515;-0.05761442,-0.2229483;-0.0115032;-0.2075578,0.07350536;0.007327594;-0.03071266,0.08521055;-0.2905425;0.002998147,0.07169154;-0.5824422;0.07090846,0.08462191;-0.6137226;0.01410804,-0.06817508;0.0009754977;-0.04184742,-0.1028395;-0.2940007;0.0004311092,-0.1018107;-0.5867928;0.06578934,-0.1062443;-0.6104651;-0.001684636,0.0009861236;0.3990996;0.02613711,85.17909
-0;0;0,0.006669939;0.1997738;0.006777078,0.01776051;0.4994925;0.003375043,0.1297474;0.3824411;-0.01926314,0.1801281;0.190606;0.006447781,0.2025144;-0.05694571;-0.02032964,-0.09880057;0.3696202;-0.02062982,-0.1522393;0.1771433;-0.01078352,-0.1847471;-0.07026093;-0.02609393,0.07355295;0.00436111;-0.03115998,0.09420972;-0.2934916;-0.001884021,0.08341467;-0.5844005;0.07061032,0.09660788;-0.6139618;0.01148384,-0.06866926;0.003968856;-0.0408507,-0.09304735;-0.2923017;-0.0004836135,-0.08683984;-0.5850137;0.06494665,-0.08613909;-0.5532053;-0.03338228,0.01398634;0.3996394;0.007262127,0;0;0,0.0001494976;0.1993422;0.01620694,0.001037083;0.4990556;0.02827646,0.1149945;0.3804316;-0.005145572,0.1697375;0.1944463;-0.05426437,0.2060317;0.02679852;-0.2361351,-0.1098606;0.3645191;-0.004404379,-0.1734133;0.1830706;-0.05951811,-0.2237547;-0.007424206;-0.2133929,0.07351305;0.00734897;-0.03068913,0.08500128;-0.2905425;0.002906909,0.07155076;-0.5824437;0.0708241,0.08450254;-0.6137405;0.01405187,-0.06814142;0.000961212;-0.04190253,-0.1031275;-0.2939835;0.0003299899,-0.1019175;-0.5867587;0.06576113,-0.1072071;-0.6104318;-0.001650192,0.0007884568;0.3990695;0.02662864,85.19242
-0;0;0,0.00649015;0.199784;0.0066526,0.01727112;0.4995099;0.002945045,0.1294705;0.3830073;-0.01948116,0.1793242;0.1909075;0.005263327,0.1988404;-0.05665265;-0.02359976,-0.09928311;0.3701459;-0.02107373,-0.153603;0.1779262;-0.01102635,-0.1866106;-0.06942062;-0.02619316,0.07357587;0.004289888;-0.03111573,0.09325492;-0.2936267;-0.001816645,0.08243103;-0.5845186;0.07074209,0.09564365;-0.6144266;0.01208944,-0.06868952;0.00404081;-0.04080959,-0.09395474;-0.2921626;-0.000495214,-0.0876736;-0.5848767;0.06491911,-0.08731662;-0.6139883;0.00375367,0.01360648;0.3996571;0.006944632,0;0;0,0.0001494976;0.1993422;0.01620694,0.001037083;0.4990556;0.02827646,0.1149945;0.3804316;-0.005145572,0.1697375;0.1944463;-0.05426437,0.2060317;0.02679852;-0.2361351,-0.1098606;0.3645191;-0.004404379,-0.1734133;0.1830706;-0.05951811,-0.2237547;-0.007424206;-0.2133929,0.07351305;0.00734897;-0.03068913,0.08500128;-0.2905425;0.002906909,0.07155076;-0.5824437;0.0708241,0.08450254;-0.6137405;0.01405187,-0.06814142;0.000961212;-0.04190253,-0.1031275;-0.2939835;0.0003299899,-0.1019175;-0.5867587;0.06576113,-0.1072071;-0.6104318;-0.001650192,0.0007884568;0.3990695;0.02662864,85.21278
-0;0;0,0.006670767;0.1997792;0.006616686,0.01764487;0.4994977;0.002845165,0.1297294;0.3828546;-0.01970619,0.1789032;0.1904783;0.004237903,0.1962283;-0.05706266;-0.02614832,-0.09901808;0.3702338;-0.02107752,-0.153706;0.1781155;-0.01108863,-0.1870958;-0.06918392;-0.02619299,0.07355542;0.004174766;-0.03117964,0.09299706;-0.2937467;-0.001771884,0.08215891;-0.58464;0.07077924,0.09529072;-0.6145388;0.01209598,-0.06870714;0.004137741;-0.04077018,-0.09422708;-0.2920612;-0.0005844124,-0.08793624;-0.5847517;0.06493469,-0.08801559;-0.6123103;0.001810692,0.01391763;0.3996477;0.006857174,0;0;0,0.0001494976;0.1993422;0.01620694,0.001037083;0.4990556;0.02827646,0.1149945;0.3804316;-0.005145572,0.1697375;0.1944463;-0.05426437,0.2060317;0.02679852;-0.2361351,-0.1098606;0.3645191;-0.004404379,-0.1734133;0.1830706;-0.05951811,-0.2237547;-0.007424206;-0.2133929,0.07351305;0.00734897;-0.03068913,0.08500128;-0.2905425;0.002906909,0.07155076;-0.5824437;0.0708241,0.08450254;-0.6137405;0.01405187,-0.06814142;0.000961212;-0.04190253,-0.1031275;-0.2939835;0.0003299899,-0.1019175;-0.5867587;0.06576113,-0.1072071;-0.6104318;-0.001650192,0.0007884568;0.3990695;0.02662864,85.2347
-0;0;0,0.006670767;0.1997792;0.006616686,0.01764487;0.4994977;0.002845165,0.1297294;0.3828546;-0.01970619,0.1789032;0.1904783;0.004237903,0.1962283;-0.05706266;-0.02614832,-0.09901808;0.3702338;-0.02107752,-0.153706;0.1781155;-0.01108863,-0.1870958;-0.06918392;-0.02619299,0.07355542;0.004174766;-0.03117964,0.09299706;-0.2937467;-0.001771884,0.08215891;-0.58464;0.07077924,0.09529072;-0.6145388;0.01209598,-0.06870714;0.004137741;-0.04077018,-0.09422708;-0.2920612;-0.0005844124,-0.08793624;-0.5847517;0.06493469,-0.08801559;-0.6123103;0.001810692,0.01391763;0.3996477;0.006857174,0;0;0,0.0001458772;0.1993292;0.01636637,0.0009357496;0.4990303;0.02872138,0.1148067;0.3803287;-0.005149096,0.1691415;0.1951561;-0.05767382,0.2038544;0.03107508;-0.2430719,-0.1098851;0.3645008;-0.004193785,-0.174039;0.1837179;-0.06077846,-0.2240828;-0.001744539;-0.2207763,0.07347476;0.00733845;-0.03078322,0.08482199;-0.2905556;0.002838122,0.07141373;-0.5824665;0.07072209,0.08443163;-0.6139129;0.01418002,-0.06817745;0.0009743555;-0.04184357,-0.1034158;-0.2939666;0.0002052858,-0.1020911;-0.5867649;0.06553045,-0.1074979;-0.6104135;-0.001898438,0.0007195087;0.3990453;0.02700387,85.25689
-0;0;0,0.006817469;0.1997777;0.006512153,0.01806238;0.4994822;0.002465155,0.1299549;0.3825568;-0.02022124,0.1783192;0.189854;0.002725029,0.1938463;-0.05768074;-0.02866697,-0.09873445;0.3703811;-0.02136941,-0.1537511;0.1783727;-0.01107605,-0.1876063;-0.06885833;-0.0262628,0.0735902;0.004151089;-0.03110065,0.09294985;-0.2938139;-0.002081983,0.0819689;-0.584687;0.07052819,0.09480764;-0.6142019;0.01126146,-0.06867302;0.004154345;-0.04082594,-0.09443396;-0.2920327;-0.0007056668,-0.08765654;-0.5846472;0.06510334,-0.08803454;-0.6129624;0.002921421,0.01423915;0.3996399;0.006574963,0;0;0,0.0001458772;0.1993292;0.01636637,0.0009357496;0.4990303;0.02872138,0.1148067;0.3803287;-0.005149096,0.1691415;0.1951561;-0.05767382,0.2038544;0.03107508;-0.2430719,-0.1098851;0.3645008;-0.004193785,-0.174039;0.1837179;-0.06077846,-0.2240828;-0.001744539;-0.2207763,0.07347476;0.00733845;-0.03078322,0.08482199;-0.2905556;0.002838122,0.07141373;-0.5824665;0.07072209,0.08443163;-0.6139129;0.01418002,-0.06817745;0.0009743555;-0.04184357,-0.1034158;-0.2939666;0.0002052858,-0.1020911;-0.5867649;0.06553045,-0.1074979;-0.6104135;-0.001898438,0.0007195087;0.3990453;0.02700387,85.26868
-0;0;0,0.006817469;0.1997777;0.006512153,0.01806238;0.4994822;0.002465155,0.1299549;0.3825568;-0.02022124,0.1783192;0.189854;0.002725029,0.1938463;-0.05768074;-0.02866697,-0.09873445;0.3703811;-0.02136941,-0.1537511;0.1783727;-0.01107605,-0.1876063;-0.06885833;-0.0262628,0.0735902;0.004151089;-0.03110065,0.09294985;-0.2938139;-0.002081983,0.0819689;-0.584687;0.07052819,0.09480764;-0.6142019;0.01126146,-0.06867302;0.004154345;-0.04082594,-0.09443396;-0.2920327;-0.0007056668,-0.08765654;-0.5846472;0.06510334,-0.08803454;-0.6129624;0.002921421,0.01423915;0.3996399;0.006574963,0;0;0,0.0001458772;0.1993292;0.01636637,0.0009357496;0.4990303;0.02872138,0.1148067;0.3803287;-0.005149096,0.1691415;0.1951561;-0.05767382,0.2038544;0.03107508;-0.2430719,-0.1098851;0.3645008;-0.004193785,-0.174039;0.1837179;-0.06077846,-0.2240828;-0.001744539;-0.2207763,0.07347476;0.00733845;-0.03078322,0.08482199;-0.2905556;0.002838122,0.07141373;-0.5824665;0.07072209,0.08443163;-0.6139129;0.01418002,-0.06817745;0.0009743555;-0.04184357,-0.1034158;-0.2939666;0.0002052858,-0.1020911;-0.5867649;0.06553045,-0.1074979;-0.6104135;-0.001898438,0.0007195087;0.3990453;0.02700387,85.28008
-0;0;0,0.006805452;0.199782;0.006390776,0.0179229;0.4994894;0.002178873,0.1298389;0.3826191;-0.02058999,0.1776566;0.1897102;0.001762234,0.1917259;-0.05767421;-0.03144933,-0.09892058;0.3705993;-0.02145805,-0.1542936;0.1786915;-0.01120087,-0.1890296;-0.06844707;-0.02589596,0.07358696;0.004102642;-0.03111475,0.09257746;-0.2939011;-0.002250824,0.08122385;-0.5847064;0.07057337,0.09615606;-0.6143847;0.01202084,-0.06866147;0.004218692;-0.04083878,-0.09504665;-0.2919182;-0.000753995,-0.08825079;-0.5845641;0.06491306,-0.08877033;-0.6126506;0.002445232,0.01414483;0.3996473;0.00633458,0;0;0,0.0001100794;0.1993107;0.01659,0.0006946987;0.4989883;0.02950127,0.1144993;0.3804144;-0.005088978,0.1682831;0.1958489;-0.060251,0.2046233;0.03558402;-0.248651,-0.1102004;0.3650739;-0.003746483,-0.1734532;0.1844989;-0.06198524,-0.2235605;0.004418343;-0.227998,0.07344518;0.007438506;-0.03082977,0.08468889;-0.2904584;0.00280069,0.07135852;-0.5823569;0.07075345,0.08452532;-0.6137588;0.01418162,-0.06821614;0.0009206242;-0.0417817,-0.1035453;-0.2940193;0.0001978166,-0.1021792;-0.5868332;0.06545222,-0.1077335;-0.6102658;-0.002199903,0.00054784;0.3990062;0.02761301,85.30167
-0;0;0,0.006805452;0.199782;0.006390776,0.0179229;0.4994894;0.002178873,0.1298389;0.3826191;-0.02058999,0.1776566;0.1897102;0.001762234,0.1917259;-0.05767421;-0.03144933,-0.09892058;0.3705993;-0.02145805,-0.1542936;0.1786915;-0.01120087,-0.1890296;-0.06844707;-0.02589596,0.07358696;0.004102642;-0.03111475,0.09257746;-0.2939011;-0.002250824,0.08122385;-0.5847064;0.07057337,0.09615606;-0.6143847;0.01202084,-0.06866147;0.004218692;-0.04083878,-0.09504665;-0.2919182;-0.000753995,-0.08825079;-0.5845641;0.06491306,-0.08877033;-0.6126506;0.002445232,0.01414483;0.3996473;0.00633458,0;0;0,0.0001100794;0.1993107;0.01659,0.0006946987;0.4989883;0.02950127,0.1144993;0.3804144;-0.005088978,0.1682831;0.1958489;-0.060251,0.2046233;0.03558402;-0.248651,-0.1102004;0.3650739;-0.003746483,-0.1734532;0.1844989;-0.06198524,-0.2235605;0.004418343;-0.227998,0.07344518;0.007438506;-0.03082977,0.08468889;-0.2904584;0.00280069,0.07135852;-0.5823569;0.07075345,0.08452532;-0.6137588;0.01418162,-0.06821614;0.0009206242;-0.0417817,-0.1035453;-0.2940193;0.0001978166,-0.1021792;-0.5868332;0.06545222,-0.1077335;-0.6102658;-0.002199903,0.00054784;0.3990062;0.02761301,85.32386
-0;0;0,0.006945173;0.1997773;0.006386254,0.01819248;0.4994804;0.002184244,0.1300047;0.3825715;-0.02084471,0.1769643;0.1893236;0.0003697239,0.1899333;-0.05779842;-0.03516236,-0.09872379;0.3706813;-0.02142459,-0.1544749;0.1788804;-0.0112146,-0.1896923;-0.0681888;-0.02592941,0.07359087;0.004013684;-0.0311171,0.09242627;-0.2940178;-0.002438363,0.08104127;-0.5848238;0.07037793,0.09586339;-0.6146488;0.01199736,-0.0686458;0.004308114;-0.04085577,-0.09546968;-0.2917944;-0.0008085035,-0.08882964;-0.5844478;0.06484161,-0.08845321;-0.5526957;-0.03347864,0.01437451;0.3996393;0.00632801,0;0;0,0.0001100794;0.1993107;0.01659,0.0006946987;0.4989883;0.02950127,0.1144993;0.3804144;-0.005088978,0.1682831;0.1958489;-0.060251,0.2046233;0.03558402;-0.248651,-0.1102004;0.3650739;-0.003746483,-0.1734532;0.1844989;-0.06198524,-0.2235605;0.004418343;-0.227998,0.07344518;0.007438506;-0.03082977,0.08468889;-0.2904584;0.00280069,0.07135852;-0.5823569;0.07075345,0.08452532;-0.6137588;0.01418162,-0.06821614;0.0009206242;-0.0417817,-0.1035453;-0.2940193;0.0001978166,-0.1021792;-0.5868332;0.06545222,-0.1077335;-0.6102658;-0.002199903,0.00054784;0.3990062;0.02761301,85.33541
-0;0;0,0.006945173;0.1997773;0.006386254,0.01819248;0.4994804;0.002184244,0.1300047;0.3825715;-0.02084471,0.1769643;0.1893236;0.0003697239,0.1899333;-0.05779842;-0.03516236,-0.09872379;0.3706813;-0.02142459,-0.1544749;0.1788804;-0.0112146,-0.1896923;-0.0681888;-0.02592941,0.07359087;0.004013684;-0.0311171,0.09242627;-0.2940178;-0.002438363,0.08104127;-0.5848238;0.07037793,0.09586339;-0.6146488;0.01199736,-0.0686458;0.004308114;-0.04085577,-0.09546968;-0.2917944;-0.0008085035,-0.08882964;-0.5844478;0.06484161,-0.08845321;-0.5526957;-0.03347864,0.01437451;0.3996393;0.00632801,0;0;0,0.0001337593;0.1992963;0.01676145,0.0007469036;0.4989647;0.02986019,0.1143955;0.3803143;-0.005185554,0.1673992;0.1967474;-0.06429386,0.2049068;0.04072396;-0.2559964,-0.1102063;0.365393;-0.003657272,-0.173063;0.1850599;-0.06306278,-0.2233708;0.01066057;-0.2349755,0.07340331;0.007352489;-0.03094986,0.08459755;-0.290541;0.002727231,0.07137179;-0.5824711;0.07056463,0.08451143;-0.6138098;0.01389563,-0.06827114;0.001009291;-0.04168972,-0.1035408;-0.2939571;0.0001539737,-0.1022736;-0.5869493;0.06460518,-0.1084718;-0.6087191;-0.00475391,0.000578886;0.3989832;0.02793921,85.35747
-0;0;0,0.006989186;0.1997759;0.006383615,0.01819804;0.4994811;0.00220556,0.1299883;0.3823493;-0.02087788,0.1760135;0.1887778;-0.0005862359,0.188122;-0.05807607;-0.03822305,-0.098774;0.3708302;-0.02126674,-0.1548425;0.1791206;-0.0110794,-0.1903621;-0.06790446;-0.02580919,0.07360461;0.003832278;-0.03110747,0.09203605;-0.2942006;-0.002181346,0.08053699;-0.5849181;0.07096979,0.09427226;-0.6154385;0.01328257,-0.06866345;0.004451736;-0.0408107,-0.09596966;-0.2915932;-0.0006640106,-0.0891351;-0.5842099;0.06512967,-0.08885264;-0.5524546;-0.03319149,0.01439996;0.3996385;0.006332804,0;0;0,0.0001337593;0.1992963;0.01676145,0.0007469036;0.4989647;0.02986019,0.1143955;0.3803143;-0.005185554,0.1673992;0.1967474;-0.06429386,0.2049068;0.04072396;-0.2559964,-0.1102063;0.365393;-0.003657272,-0.173063;0.1850599;-0.06306278,-0.2233708;0.01066057;-0.2349755,0.07340331;0.007352489;-0.03094986,0.08459755;-0.290541;0.002727231,0.07137179;-0.5824711;0.07056463,0.08451143;-0.6138098;0.01389563,-0.06827114;0.001009291;-0.04168972,-0.1035408;-0.2939571;0.0001539737,-0.1022736;-0.5869493;0.06460518,-0.1084718;-0.6087191;-0.00475391,0.000578886;0.3989832;0.02793921,85.37992
-0;0;0,0.006989186;0.1997759;0.006383615,0.01819804;0.4994811;0.00220556,0.1299883;0.3823493;-0.02087788,0.1760135;0.1887778;-0.0005862359,0.188122;-0.05807607;-0.03822305,-0.098774;0.3708302;-0.02126674,-0.1548425;0.1791206;-0.0110794,-0.1903621;-0.06790446;-0.02580919,0.07360461;0.003832278;-0.03110747,0.09203605;-0.2942006;-0.002181346,0.08053699;-0.5849181;0.07096979,0.09427226;-0.6154385;0.01328257,-0.06866345;0.004451736;-0.0408107,-0.09596966;-0.2915932;-0.0006640106,-0.0891351;-0.5842099;0.06512967,-0.08885264;-0.5524546;-0.03319149,0.01439996;0.3996385;0.006332804,0;0;0,0.0001337593;0.1992963;0.01676145,0.0007469036;0.4989647;0.02986019,0.1143955;0.3803143;-0.005185554,0.1673992;0.1967474;-0.06429386,0.2049068;0.04072396;-0.2559964,-0.1102063;0.365393;-0.003657272,-0.173063;0.1850599;-0.06306278,-0.2233708;0.01066057;-0.2349755,0.07340331;0.007352489;-0.03094986,0.08459755;-0.290541;0.002727231,0.07137179;-0.5824711;0.07056463,0.08451143;-0.6138098;0.01389563,-0.06827114;0.001009291;-0.04168972,-0.1035408;-0.2939571;0.0001539737,-0.1022736;-0.5869493;0.06460518,-0.1084718;-0.6087191;-0.00475391,0.000578886;0.3989832;0.02793921,85.39094
-0;0;0,0.00708416;0.1997718;0.006405452,0.0183345;0.4994766;0.002285034,0.1301249;0.3824491;-0.02085467,0.1755648;0.1886404;-0.001530614,0.187177;-0.05792266;-0.04117645,-0.0988539;0.3712676;-0.02081609,-0.1553861;0.1796801;-0.01089873,-0.1911391;-0.06730619;-0.02571418,0.07347854;0.003849641;-0.03140198,0.09124219;-0.2941628;-0.001854785,0.07980028;-0.5848646;0.07136779,0.09372669;-0.615544;0.01394922,-0.06879938;0.004445207;-0.04058184,-0.09670643;-0.2915437;-0.000434991,-0.08986486;-0.5842067;0.06515142,-0.0897084;-0.5524389;-0.03317235,0.01452793;0.3996333;0.006385824,0;0;0,0.0001824628;0.1992723;0.01704512,0.0008141553;0.498923;0.03052166,0.1142423;0.3801143;-0.005241353,0.1670421;0.1971934;-0.06649609,0.204434;0.04548611;-0.2616543,-0.1102041;0.3656445;-0.003228888,-0.1735647;0.1864372;-0.06543969,-0.2236828;0.0154994;-0.240849,0.07334616;0.007348427;-0.03108603,0.08446821;-0.2905466;0.002602194,0.07129978;-0.5825116;0.07030018,0.08442958;-0.6138521;0.01363161,-0.06832037;0.0009907888;-0.04160944,-0.1037257;-0.2939801;8.756295E-05,-0.1022892;-0.5869344;0.0647072,-0.1085242;-0.6092454;-0.00408411,0.0006322388;0.3989437;0.02849593,85.4024
-0;0;0,0.00708416;0.1997718;0.006405452,0.0183345;0.4994766;0.002285034,0.1301249;0.3824491;-0.02085467,0.1755648;0.1886404;-0.001530614,0.187177;-0.05792266;-0.04117645,-0.0988539;0.3712676;-0.02081609,-0.1553861;0.1796801;-0.01089873,-0.1911391;-0.06730619;-0.02571418,0.07347854;0.003849641;-0.03140198,0.09124219;-0.2941628;-0.001854785,0.07980028;-0.5848646;0.07136779,0.09372669;-0.615544;0.01394922,-0.06879938;0.004445207;-0.04058184,-0.09670643;-0.2915437;-0.000434991,-0.08986486;-0.5842067;0.06515142,-0.0897084;-0.5524389;-0.03317235,0.01452793;0.3996333;0.006385824,0;0;0,0.0001824628;0.1992723;0.01704512,0.0008141553;0.498923;0.03052166,0.1142423;0.3801143;-0.005241353,0.1670421;0.1971934;-0.06649609,0.204434;0.04548611;-0.2616543,-0.1102041;0.3656445;-0.003228888,-0.1735647;0.1864372;-0.06543969,-0.2236828;0.0154994;-0.240849,0.07334616;0.007348427;-0.03108603,0.08446821;-0.2905466;0.002602194,0.07129978;-0.5825116;0.07030018,0.08442958;-0.6138521;0.01363161,-0.06832037;0.0009907888;-0.04160944,-0.1037257;-0.2939801;8.756295E-05,-0.1022892;-0.5869344;0.0647072,-0.1085242;-0.6092454;-0.00408411,0.0006322388;0.3989437;0.02849593,85.41389
-0;0;0,-0.001381317;0.1991532;0.01833321,-0.003330736;0.4986972;0.03385008,0.1100084;0.3775173;-0.004098885,0.1786995;0.1918707;-0.03268015,0.1900208;0.04129285;-0.2319241,-0.1124425;0.3594495;0.002680738,-0.1772995;0.1767391;-0.04641591,-0.2144453;0.01898776;-0.2367701,0.07213214;0.006714704;-0.03393918,0.08391181;-0.2905845;0.004458919,0.07296839;-0.5829741;0.07070562,0.08277762;-0.6129835;0.01152565,-0.07022441;0.001608173;-0.03828767,-0.1015021;-0.2945349;-0.00194199,-0.0992138;-0.5875872;0.06220688,-0.1006554;-0.6148208;-0.001298171,-0.00270148;0.3987342;0.03120456,0;0;0,0.0001824628;0.1992723;0.01704512,0.0008141553;0.498923;0.03052166,0.1142423;0.3801143;-0.005241353,0.1670421;0.1971934;-0.06649609,0.204434;0.04548611;-0.2616543,-0.1102041;0.3656445;-0.003228888,-0.1735647;0.1864372;-0.06543969,-0.2236828;0.0154994;-0.240849,0.07334616;0.007348427;-0.03108603,0.08446821;-0.2905466;0.002602194,0.07129978;-0.5825116;0.07030018,0.08442958;-0.6138521;0.01363161,-0.06832037;0.0009907888;-0.04160944,-0.1037257;-0.2939801;8.756295E-05,-0.1022892;-0.5869344;0.0647072,-0.1085242;-0.6092454;-0.00408411,0.0006322388;0.3989437;0.02849593,96.73985
-0;0;0,-0.001381317;0.1991532;0.01833321,-0.003330736;0.4986972;0.03385008,0.1100084;0.3775173;-0.004098885,0.1786995;0.1918707;-0.03268015,0.1900208;0.04129285;-0.2319241,-0.1124425;0.3594495;0.002680738,-0.1772995;0.1767391;-0.04641591,-0.2144453;0.01898776;-0.2367701,0.07213214;0.006714704;-0.03393918,0.08391181;-0.2905845;0.004458919,0.07296839;-0.5829741;0.07070562,0.08277762;-0.6129835;0.01152565,-0.07022441;0.001608173;-0.03828767,-0.1015021;-0.2945349;-0.00194199,-0.0992138;-0.5875872;0.06220688,-0.1006554;-0.6148208;-0.001298171,-0.00270148;0.3987342;0.03120456,0;0;0,0.0001874147;0.1992551;0.0172446,0.0007978664;0.498889;0.03108431,0.1140766;0.3799252;-0.00520641,0.1658883;0.1976303;-0.06911349,0.2047193;0.05161503;-0.2682911,-0.1100741;0.365432;-0.003094718,-0.1739706;0.1871357;-0.06734172,-0.2243508;0.01973139;-0.2460527,0.0733313;0.007351149;-0.0311204,0.08438938;-0.2905278;0.002730083,0.0712834;-0.5825608;0.07014625,0.08422121;-0.6140655;0.01366973,-0.06835463;0.0009802607;-0.04155339,-0.1037273;-0.2939463;0.0004837848,-0.1021464;-0.5869296;0.06496848,-0.1084563;-0.6108964;-0.002032191,0.0006168566;0.398912;0.02894581,96.75968
-0;0;0,-0.001574505;0.1991504;0.01834808,-0.003757699;0.4986923;0.03388353,0.1096988;0.3778939;-0.004189374,0.1784888;0.1922473;-0.03253157,0.1902609;0.04167975;-0.2317572,-0.1128268;0.3595346;0.002717398,-0.1779023;0.1769825;-0.0466782,-0.2146085;0.01926035;-0.2371417,0.07221133;0.006745574;-0.03376418,0.08363702;-0.2906188;0.004233938,0.07263276;-0.5830306;0.07037202,0.08269099;-0.6136909;0.01212464,-0.07016189;0.001579287;-0.03840331,-0.1016329;-0.2945195;-0.001863949,-0.09925228;-0.5874596;0.06279236,-0.1014205;-0.6167149;0.001850668,-0.003048594;0.3987303;0.03122066,0;0;0,0.0001874147;0.1992551;0.0172446,0.0007978664;0.498889;0.03108431,0.1140766;0.3799252;-0.00520641,0.1658883;0.1976303;-0.06911349,0.2047193;0.05161503;-0.2682911,-0.1100741;0.365432;-0.003094718,-0.1739706;0.1871357;-0.06734172,-0.2243508;0.01973139;-0.2460527,0.0733313;0.007351149;-0.0311204,0.08438938;-0.2905278;0.002730083,0.0712834;-0.5825608;0.07014625,0.08422121;-0.6140655;0.01366973,-0.06835463;0.0009802607;-0.04155339,-0.1037273;-0.2939463;0.0004837848,-0.1021464;-0.5869296;0.06496848,-0.1084563;-0.6108964;-0.002032191,0.0006168566;0.398912;0.02894581,96.77658
-0;0;0,-0.001619933;0.1991529;0.01831726,-0.003839441;0.4986995;0.03375938,0.1096358;0.3778902;-0.004246376,0.1785566;0.1922585;-0.03236747,0.1904034;0.04172753;-0.2316163,-0.1129381;0.3598758;0.002307028,-0.1778252;0.1770922;-0.04647626,-0.2145095;0.01918043;-0.2367869,0.07226434;0.006812453;-0.03363712,0.08368145;-0.2905874;0.004085407,0.07272292;-0.5829853;0.07029247,0.08269369;-0.6134459;0.01175468,-0.07012003;0.001538168;-0.03848136,-0.101521;-0.2945603;-0.00187929,-0.09878844;-0.5875933;0.06234049,-0.1015763;-0.6179178;0.00284094,-0.003122463;0.3987368;0.03112286,0;0;0,0.0001874147;0.1992551;0.0172446,0.0007978664;0.498889;0.03108431,0.1140766;0.3799252;-0.00520641,0.1658883;0.1976303;-0.06911349,0.2047193;0.05161503;-0.2682911,-0.1100741;0.365432;-0.003094718,-0.1739706;0.1871357;-0.06734172,-0.2243508;0.01973139;-0.2460527,0.0733313;0.007351149;-0.0311204,0.08438938;-0.2905278;0.002730083,0.0712834;-0.5825608;0.07014625,0.08422121;-0.6140655;0.01366973,-0.06835463;0.0009802607;-0.04155339,-0.1037273;-0.2939463;0.0004837848,-0.1021464;-0.5869296;0.06496848,-0.1084563;-0.6108964;-0.002032191,0.0006168566;0.398912;0.02894581,96.79022
-0;0;0,-0.001619933;0.1991529;0.01831726,-0.003839441;0.4986995;0.03375938,0.1096358;0.3778902;-0.004246376,0.1785566;0.1922585;-0.03236747,0.1904034;0.04172753;-0.2316163,-0.1129381;0.3598758;0.002307028,-0.1778252;0.1770922;-0.04647626,-0.2145095;0.01918043;-0.2367869,0.07226434;0.006812453;-0.03363712,0.08368145;-0.2905874;0.004085407,0.07272292;-0.5829853;0.07029247,0.08269369;-0.6134459;0.01175468,-0.07012003;0.001538168;-0.03848136,-0.101521;-0.2945603;-0.00187929,-0.09878844;-0.5875933;0.06234049,-0.1015763;-0.6179178;0.00284094,-0.003122463;0.3987368;0.03112286,0;0;0,0.0001601542;0.1992509;0.01729314,0.0007124232;0.498884;0.03114484,0.1139696;0.3800172;-0.005314428,0.1655628;0.1983263;-0.07109076,0.2048436;0.05611843;-0.2729173,-0.1101931;0.3656904;-0.003132015,-0.1729617;0.1880614;-0.07027396,-0.2237063;0.02372628;-0.2517098,0.07327336;0.007356081;-0.03125543,0.08432722;-0.2905124;0.002688538,0.07115228;-0.5825609;0.07002446,0.08403502;-0.6142804;0.01384661,-0.06845062;0.0009622843;-0.04139548,-0.1038711;-0.293983;0.000469543,-0.1023093;-0.5870098;0.06475694,-0.1079215;-0.6099548;-0.003415793,0.0005467009;0.3989068;0.02901397,96.80167
-0;0;0,-0.001619933;0.1991529;0.01831726,-0.003839441;0.4986995;0.03375938,0.1096358;0.3778902;-0.004246376,0.1785566;0.1922585;-0.03236747,0.1904034;0.04172753;-0.2316163,-0.1129381;0.3598758;0.002307028,-0.1778252;0.1770922;-0.04647626,-0.2145095;0.01918043;-0.2367869,0.07226434;0.006812453;-0.03363712,0.08368145;-0.2905874;0.004085407,0.07272292;-0.5829853;0.07029247,0.08269369;-0.6134459;0.01175468,-0.07012003;0.001538168;-0.03848136,-0.101521;-0.2945603;-0.00187929,-0.09878844;-0.5875933;0.06234049,-0.1015763;-0.6179178;0.00284094,-0.003122463;0.3987368;0.03112286,0;0;0,0.0001601542;0.1992509;0.01729314,0.0007124232;0.498884;0.03114484,0.1139696;0.3800172;-0.005314428,0.1655628;0.1983263;-0.07109076,0.2048436;0.05611843;-0.2729173,-0.1101931;0.3656904;-0.003132015,-0.1729617;0.1880614;-0.07027396,-0.2237063;0.02372628;-0.2517098,0.07327336;0.007356081;-0.03125543,0.08432722;-0.2905124;0.002688538,0.07115228;-0.5825609;0.07002446,0.08403502;-0.6142804;0.01384661,-0.06845062;0.0009622843;-0.04139548,-0.1038711;-0.293983;0.000469543,-0.1023093;-0.5870098;0.06475694,-0.1079215;-0.6099548;-0.003415793,0.0005467009;0.3989068;0.02901397,96.8129
-0;0;0,-0.00169985;0.1991424;0.01842354,-0.004055543;0.4986821;0.0339824,0.1095582;0.3779649;-0.003821302,0.1785014;0.1924015;-0.0323357,0.1908627;0.04132365;-0.2311388,-0.113125;0.3603137;0.001946852,-0.1777403;0.1773685;-0.04659076,-0.214768;0.01956199;-0.2369222,0.07232758;0.006739527;-0.03351564,0.08364717;-0.2906845;0.004045352,0.07253826;-0.5829446;0.07083323,0.08265682;-0.6126514;0.01129804,-0.07005551;0.001594844;-0.0385964,-0.101556;-0.2944832;-0.001915436,-0.09922586;-0.5875723;0.0620642,-0.1012902;-0.5547757;-0.03642327,-0.003293066;0.3987208;0.03130396,0;0;0,0.0001601542;0.1992509;0.01729314,0.0007124232;0.498884;0.03114484,0.1139696;0.3800172;-0.005314428,0.1655628;0.1983263;-0.07109076,0.2048436;0.05611843;-0.2729173,-0.1101931;0.3656904;-0.003132015,-0.1729617;0.1880614;-0.07027396,-0.2237063;0.02372628;-0.2517098,0.07327336;0.007356081;-0.03125543,0.08432722;-0.2905124;0.002688538,0.07115228;-0.5825609;0.07002446,0.08403502;-0.6142804;0.01384661,-0.06845062;0.0009622843;-0.04139548,-0.1038711;-0.293983;0.000469543,-0.1023093;-0.5870098;0.06475694,-0.1079215;-0.6099548;-0.003415793,0.0005467009;0.3989068;0.02901397,96.8349
-0;0;0,-0.00169985;0.1991424;0.01842354,-0.004055543;0.4986821;0.0339824,0.1095582;0.3779649;-0.003821302,0.1785014;0.1924015;-0.0323357,0.1908627;0.04132365;-0.2311388,-0.113125;0.3603137;0.001946852,-0.1777403;0.1773685;-0.04659076,-0.214768;0.01956199;-0.2369222,0.07232758;0.006739527;-0.03351564,0.08364717;-0.2906845;0.004045352,0.07253826;-0.5829446;0.07083323,0.08265682;-0.6126514;0.01129804,-0.07005551;0.001594844;-0.0385964,-0.101556;-0.2944832;-0.001915436,-0.09922586;-0.5875723;0.0620642,-0.1012902;-0.5547757;-0.03642327,-0.003293066;0.3987208;0.03130396,0;0;0,7.197122E-05;0.1992298;0.01753541,0.0003925239;0.4988441;0.03178646,0.1135747;0.3801686;-0.005393581,0.1644534;0.199216;-0.07371287,0.2045187;0.06107999;-0.2781956,-0.110332;0.3657959;-0.003115667,-0.1726014;0.1893055;-0.07363983,-0.2238095;0.02883463;-0.2583743,0.07324286;0.00738927;-0.03131903,0.08423751;-0.2904867;0.002578169,0.07117343;-0.5825713;0.06977914,0.0840831;-0.6151603;0.01489384,-0.06847843;0.0009091694;-0.04135067,-0.1038318;-0.2940198;0.0006853566,-0.1024215;-0.5871674;0.06442344,-0.1074961;-0.6102239;-0.003671966,0.0003033972;0.3988695;0.02953321,96.84631
-0;0;0,-0.001668705;0.199168;0.01814686,-0.003664496;0.4987344;0.03318733,0.1097865;0.3775569;-0.004076814,0.1786784;0.1919823;-0.03264195,0.1913404;0.04096355;-0.2314711,-0.1129966;0.3605114;0.001524039,-0.1773356;0.1773119;-0.04641813,-0.2146966;0.01952383;-0.2366997,0.07235882;0.00681674;-0.03343251,0.08360749;-0.2906473;0.003831573,0.07229297;-0.5829338;0.07046943,0.08269735;-0.6123887;0.01064745,-0.06999296;0.001527492;-0.03871243,-0.1017444;-0.2945601;-0.002325431,-0.09948248;-0.5876534;0.06163682,-0.1013941;-0.5548785;-0.03684995,-0.003074875;0.398766;0.03074401,0;0;0,7.197122E-05;0.1992298;0.01753541,0.0003925239;0.4988441;0.03178646,0.1135747;0.3801686;-0.005393581,0.1644534;0.199216;-0.07371287,0.2045187;0.06107999;-0.2781956,-0.110332;0.3657959;-0.003115667,-0.1726014;0.1893055;-0.07363983,-0.2238095;0.02883463;-0.2583743,0.07324286;0.00738927;-0.03131903,0.08423751;-0.2904867;0.002578169,0.07117343;-0.5825713;0.06977914,0.0840831;-0.6151603;0.01489384,-0.06847843;0.0009091694;-0.04135067,-0.1038318;-0.2940198;0.0006853566,-0.1024215;-0.5871674;0.06442344,-0.1074961;-0.6102239;-0.003671966,0.0003033972;0.3988695;0.02953321,96.86852
-0;0;0,-0.001668705;0.199168;0.01814686,-0.003664496;0.4987344;0.03318733,0.1097865;0.3775569;-0.004076814,0.1786784;0.1919823;-0.03264195,0.1913404;0.04096355;-0.2314711,-0.1129966;0.3605114;0.001524039,-0.1773356;0.1773119;-0.04641813,-0.2146966;0.01952383;-0.2366997,0.07235882;0.00681674;-0.03343251,0.08360749;-0.2906473;0.003831573,0.07229297;-0.5829338;0.07046943,0.08269735;-0.6123887;0.01064745,-0.06999296;0.001527492;-0.03871243,-0.1017444;-0.2945601;-0.002325431,-0.09948248;-0.5876534;0.06163682,-0.1013941;-0.5548785;-0.03684995,-0.003074875;0.398766;0.03074401,0;0;0,7.197122E-05;0.1992298;0.01753541,0.0003925239;0.4988441;0.03178646,0.1135747;0.3801686;-0.005393581,0.1644534;0.199216;-0.07371287,0.2045187;0.06107999;-0.2781956,-0.110332;0.3657959;-0.003115667,-0.1726014;0.1893055;-0.07363983,-0.2238095;0.02883463;-0.2583743,0.07324286;0.00738927;-0.03131903,0.08423751;-0.2904867;0.002578169,0.07117343;-0.5825713;0.06977914,0.0840831;-0.6151603;0.01489384,-0.06847843;0.0009091694;-0.04135067,-0.1038318;-0.2940198;0.0006853566,-0.1024215;-0.5871674;0.06442344,-0.1074961;-0.6102239;-0.003671966,0.0003033972;0.3988695;0.02953321,96.87981
-0;0;0,-0.001521735;0.1991535;0.01831804,-0.003296779;0.4987114;0.03356024,0.1099566;0.3774483;-0.004122697,0.1786154;0.1917929;-0.03272423,0.1919351;0.04052196;-0.2313185,-0.1126305;0.3606248;0.001370845,-0.1765965;0.1770813;-0.04574721,-0.2146276;0.01924527;-0.2358562,0.0723834;0.006887353;-0.03336474,0.08346835;-0.2906159;0.003634587,0.07184334;-0.5828297;0.07053711,0.08303887;-0.6118751;0.01031671,-0.06996129;0.001459135;-0.03877225,-0.1018389;-0.2946085;-0.002333183,-0.09960319;-0.5877411;0.06144978,-0.1024525;-0.6165439;-4.813075E-05,-0.002782277;0.3987445;0.03104,0;0;0,-9.808916E-06;0.1992218;0.0176256,0.0001405636;0.4988309;0.03198409,0.1133084;0.3800897;-0.005420934,0.163949;0.1997891;-0.07561514,0.2044397;0.06589435;-0.2828172,-0.1104472;0.3657947;-0.003228661,-0.172161;0.1900326;-0.07602346,-0.2229392;0.03285214;-0.2636824,0.07319929;0.007347804;-0.03143048,0.08408986;-0.2905062;0.002693299,0.07118743;-0.5826458;0.06968579,0.08375505;-0.6152042;0.01467514,-0.0685341;0.000948925;-0.04125744,-0.1039545;-0.2939957;0.0006119423,-0.1025389;-0.5871638;0.06425534,-0.1086156;-0.6101243;-0.003860965,0.0001083274;0.3988569;0.02970088,96.90195
-0;0;0,-0.001521735;0.1991535;0.01831804,-0.003296779;0.4987114;0.03356024,0.1099566;0.3774483;-0.004122697,0.1786154;0.1917929;-0.03272423,0.1919351;0.04052196;-0.2313185,-0.1126305;0.3606248;0.001370845,-0.1765965;0.1770813;-0.04574721,-0.2146276;0.01924527;-0.2358562,0.0723834;0.006887353;-0.03336474,0.08346835;-0.2906159;0.003634587,0.07184334;-0.5828297;0.07053711,0.08303887;-0.6118751;0.01031671,-0.06996129;0.001459135;-0.03877225,-0.1018389;-0.2946085;-0.002333183,-0.09960319;-0.5877411;0.06144978,-0.1024525;-0.6165439;-4.813075E-05,-0.002782277;0.3987445;0.03104,0;0;0,-9.808916E-06;0.1992218;0.0176256,0.0001405636;0.4988309;0.03198409,0.1133084;0.3800897;-0.005420934,0.163949;0.1997891;-0.07561514,0.2044397;0.06589435;-0.2828172,-0.1104472;0.3657947;-0.003228661,-0.172161;0.1900326;-0.07602346,-0.2229392;0.03285214;-0.2636824,0.07319929;0.007347804;-0.03143048,0.08408986;-0.2905062;0.002693299,0.07118743;-0.5826458;0.06968579,0.08375505;-0.6152042;0.01467514,-0.0685341;0.000948925;-0.04125744,-0.1039545;-0.2939957;0.0006119423,-0.1025389;-0.5871638;0.06425534,-0.1086156;-0.6101243;-0.003860965,0.0001083274;0.3988569;0.02970088,96.91367
-0;0;0,-0.001600599;0.1991404;0.01845372,-0.003572034;0.498686;0.03392809,0.1096576;0.3768702;-0.003834043,0.1782123;0.1912462;-0.03288536,0.1921463;0.03952289;-0.231092,-0.1127235;0.3607442;0.001073057,-0.1765184;0.1771099;-0.04592322,-0.2144763;0.01903409;-0.2358475,0.07252278;0.00681653;-0.03307537,0.08342484;-0.2907282;0.00364342,0.07182367;-0.5829023;0.07072319,0.0828045;-0.6118109;0.01028429,-0.06987963;0.001509032;-0.03891734,-0.1018976;-0.2945359;-0.002417129,-0.09966991;-0.5876781;0.06132213,-0.1026378;-0.6166791;8.472055E-05,-0.002980878;0.3987221;0.03130946,0;0;0,-9.808916E-06;0.1992218;0.0176256,0.0001405636;0.4988309;0.03198409,0.1133084;0.3800897;-0.005420934,0.163949;0.1997891;-0.07561514,0.2044397;0.06589435;-0.2828172,-0.1104472;0.3657947;-0.003228661,-0.172161;0.1900326;-0.07602346,-0.2229392;0.03285214;-0.2636824,0.07319929;0.007347804;-0.03143048,0.08408986;-0.2905062;0.002693299,0.07118743;-0.5826458;0.06968579,0.08375505;-0.6152042;0.01467514,-0.0685341;0.000948925;-0.04125744,-0.1039545;-0.2939957;0.0006119423,-0.1025389;-0.5871638;0.06425534,-0.1086156;-0.6101243;-0.003860965,0.0001083274;0.3988569;0.02970088,96.92589
-0;0;0,-0.001600599;0.1991404;0.01845372,-0.003572034;0.498686;0.03392809,0.1096576;0.3768702;-0.003834043,0.1782123;0.1912462;-0.03288536,0.1921463;0.03952289;-0.231092,-0.1127235;0.3607442;0.001073057,-0.1765184;0.1771099;-0.04592322,-0.2144763;0.01903409;-0.2358475,0.07252278;0.00681653;-0.03307537,0.08342484;-0.2907282;0.00364342,0.07182367;-0.5829023;0.07072319,0.0828045;-0.6118109;0.01028429,-0.06987963;0.001509032;-0.03891734,-0.1018976;-0.2945359;-0.002417129,-0.09966991;-0.5876781;0.06132213,-0.1026378;-0.6166791;8.472055E-05,-0.002980878;0.3987221;0.03130946,0;0;0,-6.179691E-07;0.1992145;0.01770785,0.0001582516;0.4988221;0.0320932,0.1131984;0.3798364;-0.005565375,0.1639471;0.2006622;-0.07851181,0.2043323;0.06831302;-0.286725,-0.1103832;0.3657594;-0.003278371,-0.1716328;0.1907362;-0.07821408,-0.2217996;0.03761628;-0.2693622,0.07318313;0.007370538;-0.03146274,0.0839886;-0.2904947;0.002589211,0.071197;-0.582721;0.06922425,0.08394933;-0.6153601;0.01437768,-0.06854062;0.0009127373;-0.04124742,-0.1040116;-0.2940398;0.0005232953,-0.1026228;-0.5872368;0.06403446,-0.1092773;-0.6112603;-0.002870195,0.0001176029;0.3988482;0.02980795,96.94647
-0;0;0,-0.001600599;0.1991404;0.01845372,-0.003572034;0.498686;0.03392809,0.1096576;0.3768702;-0.003834043,0.1782123;0.1912462;-0.03288536,0.1921463;0.03952289;-0.231092,-0.1127235;0.3607442;0.001073057,-0.1765184;0.1771099;-0.04592322,-0.2144763;0.01903409;-0.2358475,0.07252278;0.00681653;-0.03307537,0.08342484;-0.2907282;0.00364342,0.07182367;-0.5829023;0.07072319,0.0828045;-0.6118109;0.01028429,-0.06987963;0.001509032;-0.03891734,-0.1018976;-0.2945359;-0.002417129,-0.09966991;-0.5876781;0.06132213,-0.1026378;-0.6166791;8.472055E-05,-0.002980878;0.3987221;0.03130946,0;0;0,-6.179691E-07;0.1992145;0.01770785,0.0001582516;0.4988221;0.0320932,0.1131984;0.3798364;-0.005565375,0.1639471;0.2006622;-0.07851181,0.2043323;0.06831302;-0.286725,-0.1103832;0.3657594;-0.003278371,-0.1716328;0.1907362;-0.07821408,-0.2217996;0.03761628;-0.2693622,0.07318313;0.007370538;-0.03146274,0.0839886;-0.2904947;0.002589211,0.071197;-0.582721;0.06922425,0.08394933;-0.6153601;0.01437768,-0.06854062;0.0009127373;-0.04124742,-0.1040116;-0.2940398;0.0005232953,-0.1026228;-0.5872368;0.06403446,-0.1092773;-0.6112603;-0.002870195,0.0001176029;0.3988482;0.02980795,96.95772
-0;0;0,-0.001629569;0.1991342;0.01851838,-0.003672711;0.4986753;0.03407322,0.1095319;0.3767309;-0.003804833,0.1780349;0.1910273;-0.03246694,0.1925475;0.03960134;-0.2308594,-0.1127915;0.3605293;0.001423068,-0.1770587;0.1771887;-0.04607391,-0.2150806;0.01917171;-0.2360343,0.07252331;0.006829887;-0.03307145,0.08329157;-0.290727;0.003588624,0.07175626;-0.582945;0.07048824,0.08419654;-0.6127655;0.01154812,-0.06986888;0.001492974;-0.03893726,-0.1019782;-0.2945186;-0.002247442,-0.09983023;-0.5877429;0.06111586,-0.1032201;-0.6176054;0.001028433,-0.00305509;0.3987123;0.03142274,0;0;0,-6.179691E-07;0.1992145;0.01770785,0.0001582516;0.4988221;0.0320932,0.1131984;0.3798364;-0.005565375,0.1639471;0.2006622;-0.07851181,0.2043323;0.06831302;-0.286725,-0.1103832;0.3657594;-0.003278371,-0.1716328;0.1907362;-0.07821408,-0.2217996;0.03761628;-0.2693622,0.07318313;0.007370538;-0.03146274,0.0839886;-0.2904947;0.002589211,0.071197;-0.582721;0.06922425,0.08394933;-0.6153601;0.01437768,-0.06854062;0.0009127373;-0.04124742,-0.1040116;-0.2940398;0.0005232953,-0.1026228;-0.5872368;0.06403446,-0.1092773;-0.6112603;-0.002870195,0.0001176029;0.3988482;0.02980795,96.98074
-0;0;0,-0.001563329;0.1991111;0.01877076,-0.003497289;0.4986314;0.03474386,0.1096032;0.3764565;-0.00335332,0.1778988;0.1907696;-0.03261238,0.1926288;0.03928749;-0.2309459,-0.1125639;0.3607274;0.001318682,-0.1766552;0.1773019;-0.04608792,-0.2147842;0.01927772;-0.2360209,0.07248019;0.00684434;-0.03316288,0.08330778;-0.2907027;0.003559511,0.07169683;-0.582955;0.07029602,0.08395056;-0.6128562;0.01142636,-0.06990342;0.001472883;-0.03887599,-0.1020369;-0.2945291;-0.002130348,-0.09989138;-0.5878511;0.06077942,-0.1010297;-0.6159852;-0.001620647,-0.002916884;0.3986723;0.03194088,0;0;0,1.30066E-05;0.1991917;0.01796279,0.0002366134;0.4987817;0.03270481,0.1130222;0.3795391;-0.005632043,0.1640113;0.2015422;-0.08124421,0.204605;0.07118663;-0.290671,-0.110143;0.3655905;-0.003293313,-0.1713265;0.1914519;-0.08031494,-0.220647;0.04382107;-0.2759489,0.07312909;0.007274691;-0.03161036,0.08399106;-0.2905795;0.002520476,0.07128882;-0.5828699;0.0688905,0.08341935;-0.6154662;0.01383874,-0.06861906;0.001015311;-0.04111438,-0.1039672;-0.2939717;0.0005175844,-0.1026134;-0.5872281;0.06375424,-0.1090709;-0.6115366;-0.002853185,0.0001635209;0.3988104;0.03030594,97.00259
-0;0;0,-0.001563329;0.1991111;0.01877076,-0.003497289;0.4986314;0.03474386,0.1096032;0.3764565;-0.00335332,0.1778988;0.1907696;-0.03261238,0.1926288;0.03928749;-0.2309459,-0.1125639;0.3607274;0.001318682,-0.1766552;0.1773019;-0.04608792,-0.2147842;0.01927772;-0.2360209,0.07248019;0.00684434;-0.03316288,0.08330778;-0.2907027;0.003559511,0.07169683;-0.582955;0.07029602,0.08395056;-0.6128562;0.01142636,-0.06990342;0.001472883;-0.03887599,-0.1020369;-0.2945291;-0.002130348,-0.09989138;-0.5878511;0.06077942,-0.1010297;-0.6159852;-0.001620647,-0.002916884;0.3986723;0.03194088,0;0;0,1.30066E-05;0.1991917;0.01796279,0.0002366134;0.4987817;0.03270481,0.1130222;0.3795391;-0.005632043,0.1640113;0.2015422;-0.08124421,0.204605;0.07118663;-0.290671,-0.110143;0.3655905;-0.003293313,-0.1713265;0.1914519;-0.08031494,-0.220647;0.04382107;-0.2759489,0.07312909;0.007274691;-0.03161036,0.08399106;-0.2905795;0.002520476,0.07128882;-0.5828699;0.0688905,0.08341935;-0.6154662;0.01383874,-0.06861906;0.001015311;-0.04111438,-0.1039672;-0.2939717;0.0005175844,-0.1026134;-0.5872281;0.06375424,-0.1090709;-0.6115366;-0.002853185,0.0001635209;0.3988104;0.03030594,97.01395
-0;0;0,-0.001577496;0.199103;0.01885451,-0.003572447;0.4986182;0.03491812,0.1095198;0.3761276;-0.003109716,0.177651;0.1904171;-0.03260108,0.1929191;0.03849001;-0.2305532,-0.1126088;0.3608951;0.001214743,-0.1764466;0.1772511;-0.04568531,-0.2150069;0.01931645;-0.2356057,0.07248787;0.006830547;-0.03314894,0.08319706;-0.2907366;0.003445078,0.07171425;-0.5830764;0.06981973,0.08419455;-0.6132976;0.01143484,-0.06988289;0.00148248;-0.03891252,-0.1020283;-0.2945159;-0.002147671,-0.0999873;-0.5878417;0.06074713,-0.1018001;-0.6159421;-0.00167929,-0.002968898;0.3986602;0.03208358,0;0;0,1.30066E-05;0.1991917;0.01796279,0.0002366134;0.4987817;0.03270481,0.1130222;0.3795391;-0.005632043,0.1640113;0.2015422;-0.08124421,0.204605;0.07118663;-0.290671,-0.110143;0.3655905;-0.003293313,-0.1713265;0.1914519;-0.08031494,-0.220647;0.04382107;-0.2759489,0.07312909;0.007274691;-0.03161036,0.08399106;-0.2905795;0.002520476,0.07128882;-0.5828699;0.0688905,0.08341935;-0.6154662;0.01383874,-0.06861906;0.001015311;-0.04111438,-0.1039672;-0.2939717;0.0005175844,-0.1026134;-0.5872281;0.06375424,-0.1090709;-0.6115366;-0.002853185,0.0001635209;0.3988104;0.03030594,97.03622
-0;0;0,-0.001577496;0.199103;0.01885451,-0.003572447;0.4986182;0.03491812,0.1095198;0.3761276;-0.003109716,0.177651;0.1904171;-0.03260108,0.1929191;0.03849001;-0.2305532,-0.1126088;0.3608951;0.001214743,-0.1764466;0.1772511;-0.04568531,-0.2150069;0.01931645;-0.2356057,0.07248787;0.006830547;-0.03314894,0.08319706;-0.2907366;0.003445078,0.07171425;-0.5830764;0.06981973,0.08419455;-0.6132976;0.01143484,-0.06988289;0.00148248;-0.03891252,-0.1020283;-0.2945159;-0.002147671,-0.0999873;-0.5878417;0.06074713,-0.1018001;-0.6159421;-0.00167929,-0.002968898;0.3986602;0.03208358,0;0;0,-0.0001597733;0.1991864;0.01802127,-0.0001958845;0.4987761;0.03276262,0.1125696;0.3797078;-0.005977884,0.1637676;0.2024946;-0.08327123,0.2035805;0.07606506;-0.2952394,-0.1104101;0.365667;-0.003580876,-0.1720176;0.1923203;-0.08203736,-0.2209491;0.04874082;-0.2807599,0.07300089;0.007291888;-0.03190138,0.08380303;-0.2905526;0.002333038,0.07097618;-0.5829461;0.0682231,0.08230663;-0.6158397;0.01344831,-0.06868162;0.0009673961;-0.04101096,-0.1043299;-0.2939656;0.0007468089,-0.1031817;-0.587383;0.06323608,-0.1094672;-0.6116746;-0.003406614,-0.0001869404;0.3988047;0.03037128,97.04755
-0;0;0,-0.001561436;0.1990878;0.01901643,-0.003527407;0.4985896;0.03533407,0.1094747;0.3758701;-0.002893165,0.1774264;0.1901184;-0.03253872,0.1927978;0.03830536;-0.2305703,-0.112631;0.3609062;0.001700912,-0.1765749;0.177468;-0.04585563,-0.2152387;0.01953195;-0.2357538,0.0724607;0.006813684;-0.03321174,0.08318584;-0.2907467;0.003432468,0.07171493;-0.5830927;0.06978188,0.08411058;-0.6135948;0.01176681,-0.06991515;0.00149059;-0.03885422,-0.1020031;-0.2945303;-0.002221163,-0.100028;-0.5878314;0.06079149,-0.1010238;-0.6174467;0.0002901219,-0.002933214;0.3986341;0.03240913,0;0;0,-0.0001597733;0.1991864;0.01802127,-0.0001958845;0.4987761;0.03276262,0.1125696;0.3797078;-0.005977884,0.1637676;0.2024946;-0.08327123,0.2035805;0.07606506;-0.2952394,-0.1104101;0.365667;-0.003580876,-0.1720176;0.1923203;-0.08203736,-0.2209491;0.04874082;-0.2807599,0.07300089;0.007291888;-0.03190138,0.08380303;-0.2905526;0.002333038,0.07097618;-0.5829461;0.0682231,0.08230663;-0.6158397;0.01344831,-0.06868162;0.0009673961;-0.04101096,-0.1043299;-0.2939656;0.0007468089,-0.1031817;-0.587383;0.06323608,-0.1094672;-0.6116746;-0.003406614,-0.0001869404;0.3988047;0.03037128,97.06957
-0;0;0,-0.001561436;0.1990878;0.01901643,-0.003527407;0.4985896;0.03533407,0.1094747;0.3758701;-0.002893165,0.1774264;0.1901184;-0.03253872,0.1927978;0.03830536;-0.2305703,-0.112631;0.3609062;0.001700912,-0.1765749;0.177468;-0.04585563,-0.2152387;0.01953195;-0.2357538,0.0724607;0.006813684;-0.03321174,0.08318584;-0.2907467;0.003432468,0.07171493;-0.5830927;0.06978188,0.08411058;-0.6135948;0.01176681,-0.06991515;0.00149059;-0.03885422,-0.1020031;-0.2945303;-0.002221163,-0.100028;-0.5878314;0.06079149,-0.1010238;-0.6174467;0.0002901219,-0.002933214;0.3986341;0.03240913,0;0;0,-0.0002882014;0.1991696;0.0182041,-0.0005706533;0.4987491;0.03314161,0.1121242;0.3798757;-0.006220354,0.1633083;0.2038205;-0.08612511,0.2037091;0.08100017;-0.3000946,-0.1105211;0.3656787;-0.003879955,-0.1717671;0.1930667;-0.08421689,-0.2206104;0.05545716;-0.2871404,0.07292978;0.007195782;-0.03208531,0.0836615;-0.2906798;0.001899339,0.07075001;-0.5830334;0.06794973,0.08220711;-0.6152326;0.01216411,-0.06872385;0.00106012;-0.04093785,-0.1044492;-0.2939431;0.0002540275,-0.1034068;-0.5873915;0.0625999,-0.1096311;-0.6113416;-0.004427224,-0.0004807576;0.398779;0.03069572,97.08081
-0;0;0,-0.001564715;0.1990876;0.01901843,-0.003535237;0.4985909;0.0353086,0.1094907;0.375882;-0.002845559,0.1773783;0.1900836;-0.03234521,0.1930423;0.03840822;-0.2304593,-0.1126467;0.3610129;0.001587672,-0.1765576;0.1774561;-0.04555374,-0.2150345;0.01977861;-0.2357045,0.07244859;0.006815043;-0.03323789,0.08317003;-0.290747;0.003393885,0.0717713;-0.5830947;0.06974843,0.08393552;-0.613978;0.0122166,-0.06993232;0.001479442;-0.03882371,-0.1019435;-0.2945467;-0.002165429,-0.0998322;-0.58801;0.06008281,-0.1006789;-0.6170679;-0.001147296,-0.002939666;0.3986351;0.03239233,0;0;0,-0.0002882014;0.1991696;0.0182041,-0.0005706533;0.4987491;0.03314161,0.1121242;0.3798757;-0.006220354,0.1633083;0.2038205;-0.08612511,0.2037091;0.08100017;-0.3000946,-0.1105211;0.3656787;-0.003879955,-0.1717671;0.1930667;-0.08421689,-0.2206104;0.05545716;-0.2871404,0.07292978;0.007195782;-0.03208531,0.0836615;-0.2906798;0.001899339,0.07075001;-0.5830334;0.06794973,0.08220711;-0.6152326;0.01216411,-0.06872385;0.00106012;-0.04093785,-0.1044492;-0.2939431;0.0002540275,-0.1034068;-0.5873915;0.0625999,-0.1096311;-0.6113416;-0.004427224,-0.0004807576;0.398779;0.03069572,97.10314
-0;0;0,-0.001564715;0.1990876;0.01901843,-0.003535237;0.4985909;0.0353086,0.1094907;0.375882;-0.002845559,0.1773783;0.1900836;-0.03234521,0.1930423;0.03840822;-0.2304593,-0.1126467;0.3610129;0.001587672,-0.1765576;0.1774561;-0.04555374,-0.2150345;0.01977861;-0.2357045,0.07244859;0.006815043;-0.03323789,0.08317003;-0.290747;0.003393885,0.0717713;-0.5830947;0.06974843,0.08393552;-0.613978;0.0122166,-0.06993232;0.001479442;-0.03882371,-0.1019435;-0.2945467;-0.002165429,-0.0998322;-0.58801;0.06008281,-0.1006789;-0.6170679;-0.001147296,-0.002939666;0.3986351;0.03239233,0;0;0,-0.0002882014;0.1991696;0.0182041,-0.0005706533;0.4987491;0.03314161,0.1121242;0.3798757;-0.006220354,0.1633083;0.2038205;-0.08612511,0.2037091;0.08100017;-0.3000946,-0.1105211;0.3656787;-0.003879955,-0.1717671;0.1930667;-0.08421689,-0.2206104;0.05545716;-0.2871404,0.07292978;0.007195782;-0.03208531,0.0836615;-0.2906798;0.001899339,0.07075001;-0.5830334;0.06794973,0.08220711;-0.6152326;0.01216411,-0.06872385;0.00106012;-0.04093785,-0.1044492;-0.2939431;0.0002540275,-0.1034068;-0.5873915;0.0625999,-0.1096311;-0.6113416;-0.004427224,-0.0004807576;0.398779;0.03069572,97.11422
-0;0;0,-0.001538632;0.1990671;0.01923359,-0.003481132;0.4985442;0.03601544,0.109322;0.3755631;-0.002829291,0.1775219;0.1898751;-0.03230366,0.1933186;0.03815264;-0.2303712,-0.1124519;0.3610414;0.001504291,-0.1763009;0.1773677;-0.04526388,-0.2150245;0.01984638;-0.2354941,0.07247835;0.006793471;-0.03317734,0.08314066;-0.2907897;0.003299706,0.07174009;-0.5831417;0.06963508,0.08382411;-0.6139985;0.01204909,-0.06991315;0.001503292;-0.03885732,-0.1019472;-0.2945223;-0.002214622,-0.09979418;-0.587867;0.06058858,-0.1003139;-0.6170599;-0.0004705712,-0.002892369;0.3985941;0.03291301,0;0;0,-0.0002882014;0.1991696;0.0182041,-0.0005706533;0.4987491;0.03314161,0.1121242;0.3798757;-0.006220354,0.1633083;0.2038205;-0.08612511,0.2037091;0.08100017;-0.3000946,-0.1105211;0.3656787;-0.003879955,-0.1717671;0.1930667;-0.08421689,-0.2206104;0.05545716;-0.2871404,0.07292978;0.007195782;-0.03208531,0.0836615;-0.2906798;0.001899339,0.07075001;-0.5830334;0.06794973,0.08220711;-0.6152326;0.01216411,-0.06872385;0.00106012;-0.04093785,-0.1044492;-0.2939431;0.0002540275,-0.1034068;-0.5873915;0.0625999,-0.1096311;-0.6113416;-0.004427224,-0.0004807576;0.398779;0.03069572,97.13662
-0;0;0,-0.001513922;0.1990573;0.01933618,-0.003429187;0.498524;0.03630924,0.1094011;0.3756537;-0.002562128,0.1775251;0.1899604;-0.03217801,0.1940715;0.03855406;-0.2304262,-0.1125374;0.3604746;0.002864331,-0.1767819;0.1773701;-0.04556506,-0.2161234;0.02056523;-0.2362597,0.07245359;0.006786689;-0.0332328,0.08310849;-0.2907947;0.00326113,0.0715213;-0.5831614;0.06949933,0.08379294;-0.6141816;0.01218331,-0.06996098;0.001511486;-0.03877081,-0.1020813;-0.2945252;-0.00229359,-0.09934421;-0.5876694;0.06141677,-0.1011535;-0.6170594;0.0006389506,-0.002848394;0.398576;0.03313972,0;0;0,-0.0004222901;0.1991684;0.01821494,-0.0009369841;0.4987498;0.03310291,0.1117333;0.3798511;-0.006536938,0.1627697;0.2045339;-0.08814063,0.2069198;0.09354103;-0.307757,-0.1106859;0.3650711;-0.003701326,-0.1734734;0.1943452;-0.08683008,-0.222107;0.06055908;-0.2923442,0.0728616;0.007250906;-0.0322275,0.08373068;-0.2906044;0.001891829,0.07084928;-0.5830868;0.06737535,0.08243278;-0.6153337;0.01168625,-0.06878205;0.0009755206;-0.0408421,-0.1044893;-0.2940243;0.0003899634,-0.1034383;-0.5875233;0.06249664,-0.1093705;-0.612651;-0.003234953,-0.0007687836;0.3987793;0.03067856,97.15871
-0;0;0,-0.001513922;0.1990573;0.01933618,-0.003429187;0.498524;0.03630924,0.1094011;0.3756537;-0.002562128,0.1775251;0.1899604;-0.03217801,0.1940715;0.03855406;-0.2304262,-0.1125374;0.3604746;0.002864331,-0.1767819;0.1773701;-0.04556506,-0.2161234;0.02056523;-0.2362597,0.07245359;0.006786689;-0.0332328,0.08310849;-0.2907947;0.00326113,0.0715213;-0.5831614;0.06949933,0.08379294;-0.6141816;0.01218331,-0.06996098;0.001511486;-0.03877081,-0.1020813;-0.2945252;-0.00229359,-0.09934421;-0.5876694;0.06141677,-0.1011535;-0.6170594;0.0006389506,-0.002848394;0.398576;0.03313972,0;0;0,-0.0004222901;0.1991684;0.01821494,-0.0009369841;0.4987498;0.03310291,0.1117333;0.3798511;-0.006536938,0.1627697;0.2045339;-0.08814063,0.2069198;0.09354103;-0.307757,-0.1106859;0.3650711;-0.003701326,-0.1734734;0.1943452;-0.08683008,-0.222107;0.06055908;-0.2923442,0.0728616;0.007250906;-0.0322275,0.08373068;-0.2906044;0.001891829,0.07084928;-0.5830868;0.06737535,0.08243278;-0.6153337;0.01168625,-0.06878205;0.0009755206;-0.0408421,-0.1044893;-0.2940243;0.0003899634,-0.1034383;-0.5875233;0.06249664,-0.1093705;-0.612651;-0.003234953,-0.0007687836;0.3987793;0.03067856,97.17052
-0;0;0,-0.001513922;0.1990573;0.01933618,-0.003429187;0.498524;0.03630924,0.1094011;0.3756537;-0.002562128,0.1775251;0.1899604;-0.03217801,0.1940715;0.03855406;-0.2304262,-0.1125374;0.3604746;0.002864331,-0.1767819;0.1773701;-0.04556506,-0.2161234;0.02056523;-0.2362597,0.07245359;0.006786689;-0.0332328,0.08310849;-0.2907947;0.00326113,0.0715213;-0.5831614;0.06949933,0.08379294;-0.6141816;0.01218331,-0.06996098;0.001511486;-0.03877081,-0.1020813;-0.2945252;-0.00229359,-0.09934421;-0.5876694;0.06141677,-0.1011535;-0.6170594;0.0006389506,-0.002848394;0.398576;0.03313972,0;0;0,-0.0004222901;0.1991684;0.01821494,-0.0009369841;0.4987498;0.03310291,0.1117333;0.3798511;-0.006536938,0.1627697;0.2045339;-0.08814063,0.2069198;0.09354103;-0.307757,-0.1106859;0.3650711;-0.003701326,-0.1734734;0.1943452;-0.08683008,-0.222107;0.06055908;-0.2923442,0.0728616;0.007250906;-0.0322275,0.08373068;-0.2906044;0.001891829,0.07084928;-0.5830868;0.06737535,0.08243278;-0.6153337;0.01168625,-0.06878205;0.0009755206;-0.0408421,-0.1044893;-0.2940243;0.0003899634,-0.1034383;-0.5875233;0.06249664,-0.1093705;-0.612651;-0.003234953,-0.0007687836;0.3987793;0.03067856,97.1821
-0;0;0,-0.001551023;0.199043;0.01948021,-0.003580615;0.4984995;0.03661837,0.1091795;0.3756528;-0.002673887,0.1776353;0.1900775;-0.03226519,0.194221;0.03879;-0.2306007,-0.1126351;0.360397;0.003152641,-0.1773871;0.1775593;-0.04560745,-0.2167261;0.02220096;-0.237483,0.07247812;0.006755429;-0.0331856,0.08306861;-0.2908386;0.003223736,0.07135383;-0.5832405;0.06928359,0.0837995;-0.6141371;0.01183066,-0.06992739;0.001535525;-0.03883041,-0.1021686;-0.2945069;-0.002507135,-0.09950326;-0.5877196;0.06089003,-0.1014383;-0.6157991;-0.001558702,-0.002956507;0.3985533;0.03339653,0;0;0,-0.000467939;0.1991755;0.01813553,-0.001035522;0.4987635;0.03289121,0.1115538;0.3797245;-0.006924914,0.1629454;0.2053318;-0.09026822,0.2076795;0.09304321;-0.3091063,-0.1106609;0.3645016;-0.003644207,-0.1731527;0.1950621;-0.08958055,-0.222527;0.06324001;-0.2961843,0.07279342;0.007321906;-0.03236523,0.08366844;-0.2905359;0.001729392,0.07081614;-0.5830402;0.06712092,0.08211116;-0.6153311;0.01143764,-0.06883714;0.0008817025;-0.04075133,-0.1046395;-0.2941155;0.0004174225,-0.103691;-0.587695;0.06214412,-0.1091118;-0.6137192;-0.002593264,-0.0008527902;0.3987921;0.03050739,97.20484
-0;0;0,-0.001440756;0.1990313;0.019608,-0.003168768;0.498477;0.03696683,0.1093813;0.3753698;-0.002528705,0.1777803;0.1898196;-0.03240623,0.1943839;0.03893317;-0.2310456,-0.1123361;0.3603356;0.003464367,-0.1776409;0.1778153;-0.04574559,-0.2176298;0.0253406;-0.2397877,0.07244962;0.006777403;-0.03324331,0.0830659;-0.2908138;0.003181867,0.07133001;-0.5832536;0.06906968,0.0837476;-0.6142038;0.01168608,-0.06997117;0.001495984;-0.03875302,-0.1023018;-0.2945565;-0.002591498,-0.09960307;-0.5876042;0.06156281,-0.1013141;-0.6156517;-0.0009324364,-0.002660378;0.3985328;0.03366723,0;0;0,-0.000467939;0.1991755;0.01813553,-0.001035522;0.4987635;0.03289121,0.1115538;0.3797245;-0.006924914,0.1629454;0.2053318;-0.09026822,0.2076795;0.09304321;-0.3091063,-0.1106609;0.3645016;-0.003644207,-0.1731527;0.1950621;-0.08958055,-0.222527;0.06324001;-0.2961843,0.07279342;0.007321906;-0.03236523,0.08366844;-0.2905359;0.001729392,0.07081614;-0.5830402;0.06712092,0.08211116;-0.6153311;0.01143764,-0.06883714;0.0008817025;-0.04075133,-0.1046395;-0.2941155;0.0004174225,-0.103691;-0.587695;0.06214412,-0.1091118;-0.6137192;-0.002593264,-0.0008527902;0.3987921;0.03050739,97.22771
-0;0;0,-0.001440756;0.1990313;0.019608,-0.003168768;0.498477;0.03696683,0.1093813;0.3753698;-0.002528705,0.1777803;0.1898196;-0.03240623,0.1943839;0.03893317;-0.2310456,-0.1123361;0.3603356;0.003464367,-0.1776409;0.1778153;-0.04574559,-0.2176298;0.0253406;-0.2397877,0.07244962;0.006777403;-0.03324331,0.0830659;-0.2908138;0.003181867,0.07133001;-0.5832536;0.06906968,0.0837476;-0.6142038;0.01168608,-0.06997117;0.001495984;-0.03875302,-0.1023018;-0.2945565;-0.002591498,-0.09960307;-0.5876042;0.06156281,-0.1013141;-0.6156517;-0.0009324364,-0.002660378;0.3985328;0.03366723,0;0;0,-0.000467939;0.1991755;0.01813553,-0.001035522;0.4987635;0.03289121,0.1115538;0.3797245;-0.006924914,0.1629454;0.2053318;-0.09026822,0.2076795;0.09304321;-0.3091063,-0.1106609;0.3645016;-0.003644207,-0.1731527;0.1950621;-0.08958055,-0.222527;0.06324001;-0.2961843,0.07279342;0.007321906;-0.03236523,0.08366844;-0.2905359;0.001729392,0.07081614;-0.5830402;0.06712092,0.08211116;-0.6153311;0.01143764,-0.06883714;0.0008817025;-0.04075133,-0.1046395;-0.2941155;0.0004174225,-0.103691;-0.587695;0.06214412,-0.1091118;-0.6137192;-0.002593264,-0.0008527902;0.3987921;0.03050739,97.23917
-0;0;0,-0.001440756;0.1990313;0.019608,-0.003168768;0.498477;0.03696683,0.1093813;0.3753698;-0.002528705,0.1777803;0.1898196;-0.03240623,0.1943839;0.03893317;-0.2310456,-0.1123361;0.3603356;0.003464367,-0.1776409;0.1778153;-0.04574559,-0.2176298;0.0253406;-0.2397877,0.07244962;0.006777403;-0.03324331,0.0830659;-0.2908138;0.003181867,0.07133001;-0.5832536;0.06906968,0.0837476;-0.6142038;0.01168608,-0.06997117;0.001495984;-0.03875302,-0.1023018;-0.2945565;-0.002591498,-0.09960307;-0.5876042;0.06156281,-0.1013141;-0.6156517;-0.0009324364,-0.002660378;0.3985328;0.03366723,0;0;0,-0.0005412971;0.1991608;0.01829457,-0.00123967;0.4987386;0.03324447,0.1112824;0.3800058;-0.007105574,0.1629188;0.2064;-0.09192717,0.2074664;0.09646693;-0.3119959,-0.1107195;0.3647854;-0.003983576,-0.1726459;0.1960749;-0.09174405,-0.2216658;0.06899574;-0.3013817,0.07268219;0.00728423;-0.03262269,0.08354373;-0.2905517;0.00166744,0.07062674;-0.5831695;0.06653638,0.08182752;-0.6155389;0.01095024,-0.06895299;0.0008992477;-0.04055461,-0.1047814;-0.2941054;0.0005379245,-0.1038536;-0.5878325;0.06155908,-0.109264;-0.614779;-0.002080157,-0.00101553;0.3987687;0.03080386,97.25073
-0;0;0,-0.001369443;0.1990429;0.01949449,-0.003053268;0.4985002;0.03666273,0.1095912;0.3751878;-0.002325457,0.1777361;0.1896338;-0.03275575,0.1947514;0.03984912;-0.2321925,-0.1122288;0.3606777;0.002816331,-0.1776898;0.1780566;-0.04580882,-0.2182672;0.03014237;-0.2432293,0.07240241;0.006805922;-0.03334023,0.08312417;-0.2908096;0.002854269,0.07137123;-0.5832673;0.06865992,0.08401514;-0.6142098;0.011315,-0.07001771;0.001453057;-0.03867051,-0.1022093;-0.2946648;-0.002922192,-0.09955033;-0.5877646;0.06099544,-0.1018182;-0.6139812;-0.003702916,-0.002552877;0.3985541;0.03341978,0;0;0,-0.0005412971;0.1991608;0.01829457,-0.00123967;0.4987386;0.03324447,0.1112824;0.3800058;-0.007105574,0.1629188;0.2064;-0.09192717,0.2074664;0.09646693;-0.3119959,-0.1107195;0.3647854;-0.003983576,-0.1726459;0.1960749;-0.09174405,-0.2216658;0.06899574;-0.3013817,0.07268219;0.00728423;-0.03262269,0.08354373;-0.2905517;0.00166744,0.07062674;-0.5831695;0.06653638,0.08182752;-0.6155389;0.01095024,-0.06895299;0.0008992477;-0.04055461,-0.1047814;-0.2941054;0.0005379245,-0.1038536;-0.5878325;0.06155908,-0.109264;-0.614779;-0.002080157,-0.00101553;0.3987687;0.03080386,97.26254
-0;0;0,-0.001369443;0.1990429;0.01949449,-0.003053268;0.4985002;0.03666273,0.1095912;0.3751878;-0.002325457,0.1777361;0.1896338;-0.03275575,0.1947514;0.03984912;-0.2321925,-0.1122288;0.3606777;0.002816331,-0.1776898;0.1780566;-0.04580882,-0.2182672;0.03014237;-0.2432293,0.07240241;0.006805922;-0.03334023,0.08312417;-0.2908096;0.002854269,0.07137123;-0.5832673;0.06865992,0.08401514;-0.6142098;0.011315,-0.07001771;0.001453057;-0.03867051,-0.1022093;-0.2946648;-0.002922192,-0.09955033;-0.5877646;0.06099544,-0.1018182;-0.6139812;-0.003702916,-0.002552877;0.3985541;0.03341978,0;0;0,-0.0005412971;0.1991608;0.01829457,-0.00123967;0.4987386;0.03324447,0.1112824;0.3800058;-0.007105574,0.1629188;0.2064;-0.09192717,0.2074664;0.09646693;-0.3119959,-0.1107195;0.3647854;-0.003983576,-0.1726459;0.1960749;-0.09174405,-0.2216658;0.06899574;-0.3013817,0.07268219;0.00728423;-0.03262269,0.08354373;-0.2905517;0.00166744,0.07062674;-0.5831695;0.06653638,0.08182752;-0.6155389;0.01095024,-0.06895299;0.0008992477;-0.04055461,-0.1047814;-0.2941054;0.0005379245,-0.1038536;-0.5878325;0.06155908,-0.109264;-0.614779;-0.002080157,-0.00101553;0.3987687;0.03080386,97.27358
-0;0;0,-0.001307478;0.1990394;0.01953493,-0.002898659;0.4984978;0.03668927,0.1096809;0.3749989;-0.002275988,0.1780387;0.1896103;-0.03323184,0.1954992;0.04180068;-0.2340986,-0.1121411;0.3605009;0.003201434,-0.179774;0.1786691;-0.04540924,-0.2197259;0.03251073;-0.2442599,0.07232738;0.006795973;-0.03350471,0.08300982;-0.2907607;0.00318199,0.07118352;-0.5832743;0.06872535,0.08379514;-0.6141083;0.01122054,-0.07012355;0.001457402;-0.03847808,-0.1022522;-0.2946588;-0.002659358,-0.09980048;-0.5878938;0.06064282,-0.1017687;-0.6131092;-0.005226582,-0.002428543;0.3985512;0.03345585,0;0;0,-0.0007657994;0.1991634;0.01825815,-0.001910246;0.4987428;0.03314367,0.1107152;0.3801613;-0.007427827,0.1623594;0.2072497;-0.09365103,0.2077533;0.1020105;-0.3158314,-0.1111059;0.3649055;-0.004550718,-0.1722904;0.1971141;-0.09456467,-0.2207742;0.0761897;-0.3079343,0.07258634;0.007299286;-0.03283203,0.08352831;-0.2905664;0.001172528,0.07056823;-0.583218;0.06588004,0.08218788;-0.6152854;0.009934235,-0.06906369;0.0008570436;-0.0403667,-0.1047777;-0.2942533;6.082281E-05,-0.1038575;-0.5880322;0.06083169,-0.1091955;-0.61471;-0.003137242,-0.001523721;0.3987727;0.0307304,97.29627
-0;0;0,-0.001307478;0.1990394;0.01953493,-0.002898659;0.4984978;0.03668927,0.1096809;0.3749989;-0.002275988,0.1780387;0.1896103;-0.03323184,0.1954992;0.04180068;-0.2340986,-0.1121411;0.3605009;0.003201434,-0.179774;0.1786691;-0.04540924,-0.2197259;0.03251073;-0.2442599,0.07232738;0.006795973;-0.03350471,0.08300982;-0.2907607;0.00318199,0.07118352;-0.5832743;0.06872535,0.08379514;-0.6141083;0.01122054,-0.07012355;0.001457402;-0.03847808,-0.1022522;-0.2946588;-0.002659358,-0.09980048;-0.5878938;0.06064282,-0.1017687;-0.6131092;-0.005226582,-0.002428543;0.3985512;0.03345585,0;0;0,-0.0007657994;0.1991634;0.01825815,-0.001910246;0.4987428;0.03314367,0.1107152;0.3801613;-0.007427827,0.1623594;0.2072497;-0.09365103,0.2077533;0.1020105;-0.3158314,-0.1111059;0.3649055;-0.004550718,-0.1722904;0.1971141;-0.09456467,-0.2207742;0.0761897;-0.3079343,0.07258634;0.007299286;-0.03283203,0.08352831;-0.2905664;0.001172528,0.07056823;-0.583218;0.06588004,0.08218788;-0.6152854;0.009934235,-0.06906369;0.0008570436;-0.0403667,-0.1047777;-0.2942533;6.082281E-05,-0.1038575;-0.5880322;0.06083169,-0.1091955;-0.61471;-0.003137242,-0.001523721;0.3987727;0.0307304,97.30772
-0;0;0,-0.001307478;0.1990394;0.01953493,-0.002898659;0.4984978;0.03668927,0.1096809;0.3749989;-0.002275988,0.1780387;0.1896103;-0.03323184,0.1954992;0.04180068;-0.2340986,-0.1121411;0.3605009;0.003201434,-0.179774;0.1786691;-0.04540924,-0.2197259;0.03251073;-0.2442599,0.07232738;0.006795973;-0.03350471,0.08300982;-0.2907607;0.00318199,0.07118352;-0.5832743;0.06872535,0.08379514;-0.6141083;0.01122054,-0.07012355;0.001457402;-0.03847808,-0.1022522;-0.2946588;-0.002659358,-0.09980048;-0.5878938;0.06064282,-0.1017687;-0.6131092;-0.005226582,-0.002428543;0.3985512;0.03345585,0;0;0,-0.0007657994;0.1991634;0.01825815,-0.001910246;0.4987428;0.03314367,0.1107152;0.3801613;-0.007427827,0.1623594;0.2072497;-0.09365103,0.2077533;0.1020105;-0.3158314,-0.1111059;0.3649055;-0.004550718,-0.1722904;0.1971141;-0.09456467,-0.2207742;0.0761897;-0.3079343,0.07258634;0.007299286;-0.03283203,0.08352831;-0.2905664;0.001172528,0.07056823;-0.583218;0.06588004,0.08218788;-0.6152854;0.009934235,-0.06906369;0.0008570436;-0.0403667,-0.1047777;-0.2942533;6.082281E-05,-0.1038575;-0.5880322;0.06083169,-0.1091955;-0.61471;-0.003137242,-0.001523721;0.3987727;0.0307304,97.31976
-0;0;0,-0.001371116;0.1990374;0.0195504,-0.00307447;0.4984974;0.03666489,0.1095359;0.3748696;-0.002225012,0.1782301;0.189714;-0.03382402,0.1955853;0.0449685;-0.2369189,-0.1121946;0.3606392;0.002720721,-0.1798012;0.1789759;-0.04655183,-0.2197612;0.03689398;-0.2483337,0.07230893;0.00676978;-0.03354978,0.08304621;-0.2908077;0.002952036,0.07130604;-0.5833679;0.06830233,0.08324321;-0.6140387;0.01042547,-0.0701124;0.001481026;-0.0384975,-0.1023286;-0.294657;-0.00293931,-0.09995015;-0.5879371;0.06015705,-0.1017324;-0.6125327;-0.006418612,-0.002565265;0.3985505;0.03344773,0;0;0,-0.0009932461;0.1991252;0.01865947,-0.002657148;0.4986638;0.0343083,0.1098662;0.3801668;-0.00740017,0.1600554;0.2117688;-0.1029154,0.2077345;0.1100716;-0.3262635,-0.1114038;0.3646305;-0.00427524,-0.173292;0.1983005;-0.09649327,-0.2210955;0.08242445;-0.3127976,0.07252734;0.007220758;-0.03297947,0.08348989;-0.290666;0.000833597,0.07049448;-0.5833318;0.06546979,0.08222474;-0.6152105;0.009271223,-0.06913115;0.0009329023;-0.0402494,-0.1047681;-0.2942364;-0.0001858324,-0.1039028;-0.5880455;0.06044009,-0.109321;-0.6144353;-0.003865775,-0.002086547;0.3987014;0.03162613,97.33092
-0;0;0,-0.001371116;0.1990374;0.0195504,-0.00307447;0.4984974;0.03666489,0.1095359;0.3748696;-0.002225012,0.1782301;0.189714;-0.03382402,0.1955853;0.0449685;-0.2369189,-0.1121946;0.3606392;0.002720721,-0.1798012;0.1789759;-0.04655183,-0.2197612;0.03689398;-0.2483337,0.07230893;0.00676978;-0.03354978,0.08304621;-0.2908077;0.002952036,0.07130604;-0.5833679;0.06830233,0.08324321;-0.6140387;0.01042547,-0.0701124;0.001481026;-0.0384975,-0.1023286;-0.294657;-0.00293931,-0.09995015;-0.5879371;0.06015705,-0.1017324;-0.6125327;-0.006418612,-0.002565265;0.3985505;0.03344773,0;0;0,-0.0009932461;0.1991252;0.01865947,-0.002657148;0.4986638;0.0343083,0.1098662;0.3801668;-0.00740017,0.1600554;0.2117688;-0.1029154,0.2077345;0.1100716;-0.3262635,-0.1114038;0.3646305;-0.00427524,-0.173292;0.1983005;-0.09649327,-0.2210955;0.08242445;-0.3127976,0.07252734;0.007220758;-0.03297947,0.08348989;-0.290666;0.000833597,0.07049448;-0.5833318;0.06546979,0.08222474;-0.6152105;0.009271223,-0.06913115;0.0009329023;-0.0402494,-0.1047681;-0.2942364;-0.0001858324,-0.1039028;-0.5880455;0.06044009,-0.109321;-0.6144353;-0.003865775,-0.002086547;0.3987014;0.03162613,97.3424
-0;0;0,-0.001371116;0.1990374;0.0195504,-0.00307447;0.4984974;0.03666489,0.1095359;0.3748696;-0.002225012,0.1782301;0.189714;-0.03382402,0.1955853;0.0449685;-0.2369189,-0.1121946;0.3606392;0.002720721,-0.1798012;0.1789759;-0.04655183,-0.2197612;0.03689398;-0.2483337,0.07230893;0.00676978;-0.03354978,0.08304621;-0.2908077;0.002952036,0.07130604;-0.5833679;0.06830233,0.08324321;-0.6140387;0.01042547,-0.0701124;0.001481026;-0.0384975,-0.1023286;-0.294657;-0.00293931,-0.09995015;-0.5879371;0.06015705,-0.1017324;-0.6125327;-0.006418612,-0.002565265;0.3985505;0.03344773,0;0;0,-0.0009932461;0.1991252;0.01865947,-0.002657148;0.4986638;0.0343083,0.1098662;0.3801668;-0.00740017,0.1600554;0.2117688;-0.1029154,0.2077345;0.1100716;-0.3262635,-0.1114038;0.3646305;-0.00427524,-0.173292;0.1983005;-0.09649327,-0.2210955;0.08242445;-0.3127976,0.07252734;0.007220758;-0.03297947,0.08348989;-0.290666;0.000833597,0.07049448;-0.5833318;0.06546979,0.08222474;-0.6152105;0.009271223,-0.06913115;0.0009329023;-0.0402494,-0.1047681;-0.2942364;-0.0001858324,-0.1039028;-0.5880455;0.06044009,-0.109321;-0.6144353;-0.003865775,-0.002086547;0.3987014;0.03162613,97.35445
-0;0;0,-0.001359592;0.1990377;0.01954794,-0.003057398;0.4985013;0.03659673,0.1095308;0.3749289;-0.002371926,0.1786538;0.1900581;-0.03469505,0.1984092;0.0505739;-0.2412232,-0.1121192;0.3600844;0.003165632,-0.1800114;0.1789397;-0.04760092,-0.2210977;0.04249381;-0.2530138,0.07233534;0.006811547;-0.03348435,0.08309485;-0.2907821;0.002878256,0.07136716;-0.5833933;0.06800231,0.08324019;-0.6142163;0.01032498,-0.07007451;0.00145601;-0.03856739,-0.1022933;-0.2946922;-0.003096208,-0.1000284;-0.5880146;0.05980712,-0.1017733;-0.6126214;-0.006757013,-0.002548842;0.3985536;0.03340567,0;0;0,-0.001065842;0.1991159;0.01875453,-0.00278711;0.4986519;0.03443995,0.1096359;0.3801127;-0.007568635,0.1608703;0.2140018;-0.1064738,0.2082787;0.1168956;-0.331913,-0.1113858;0.3645837;-0.004530326,-0.1723978;0.2065264;-0.1108102,-0.2190965;0.08719894;-0.3254732,0.07246951;0.007272292;-0.03309506,0.08351373;-0.2905995;0.0008230582,0.07074483;-0.5832841;0.06541936,0.082439;-0.6155815;0.009828217,-0.06919868;0.0008567246;-0.04013489,-0.1046646;-0.294346;-0.0001657978,-0.1038865;-0.5882311;0.06009131,-0.1084586;-0.6142809;-0.004681598,-0.002206006;0.3986897;0.03175408,97.37612
-0;0;0,-0.001359592;0.1990377;0.01954794,-0.003057398;0.4985013;0.03659673,0.1095308;0.3749289;-0.002371926,0.1786538;0.1900581;-0.03469505,0.1984092;0.0505739;-0.2412232,-0.1121192;0.3600844;0.003165632,-0.1800114;0.1789397;-0.04760092,-0.2210977;0.04249381;-0.2530138,0.07233534;0.006811547;-0.03348435,0.08309485;-0.2907821;0.002878256,0.07136716;-0.5833933;0.06800231,0.08324019;-0.6142163;0.01032498,-0.07007451;0.00145601;-0.03856739,-0.1022933;-0.2946922;-0.003096208,-0.1000284;-0.5880146;0.05980712,-0.1017733;-0.6126214;-0.006757013,-0.002548842;0.3985536;0.03340567,0;0;0,-0.001065842;0.1991159;0.01875453,-0.00278711;0.4986519;0.03443995,0.1096359;0.3801127;-0.007568635,0.1608703;0.2140018;-0.1064738,0.2082787;0.1168956;-0.331913,-0.1113858;0.3645837;-0.004530326,-0.1723978;0.2065264;-0.1108102,-0.2190965;0.08719894;-0.3254732,0.07246951;0.007272292;-0.03309506,0.08351373;-0.2905995;0.0008230582,0.07074483;-0.5832841;0.06541936,0.082439;-0.6155815;0.009828217,-0.06919868;0.0008567246;-0.04013489,-0.1046646;-0.294346;-0.0001657978,-0.1038865;-0.5882311;0.06009131,-0.1084586;-0.6142809;-0.004681598,-0.002206006;0.3986897;0.03175408,97.3875
-0;0;0,-0.001332921;0.1990266;0.01966352,-0.002973055;0.4984811;0.03687477,0.1094889;0.3748123;-0.002412472,0.1791976;0.1903033;-0.03553497,0.1993344;0.05919693;-0.2474445,-0.1119871;0.3603966;0.002733799,-0.1799315;0.1795492;-0.04901353,-0.2209364;0.0479652;-0.2575903,0.07238495;0.006746488;-0.03339017,0.08315959;-0.2908697;0.002783243,0.07134973;-0.5834817;0.06788874,0.08339809;-0.6138014;0.009548545,-0.07004426;0.001507951;-0.0386203,-0.10225;-0.2946395;-0.003131092,-0.100036;-0.5879995;0.05959883,-0.1018783;-0.6123862;-0.007208534,-0.002484633;0.3985349;0.03363155,0;0;0,-0.001065842;0.1991159;0.01875453,-0.00278711;0.4986519;0.03443995,0.1096359;0.3801127;-0.007568635,0.1608703;0.2140018;-0.1064738,0.2082787;0.1168956;-0.331913,-0.1113858;0.3645837;-0.004530326,-0.1723978;0.2065264;-0.1108102,-0.2190965;0.08719894;-0.3254732,0.07246951;0.007272292;-0.03309506,0.08351373;-0.2905995;0.0008230582,0.07074483;-0.5832841;0.06541936,0.082439;-0.6155815;0.009828217,-0.06919868;0.0008567246;-0.04013489,-0.1046646;-0.294346;-0.0001657978,-0.1038865;-0.5882311;0.06009131,-0.1084586;-0.6142809;-0.004681598,-0.002206006;0.3986897;0.03175408,97.40971
-0;0;0,-0.001276955;0.1990273;0.01966012,-0.002824382;0.4984825;0.03686763,0.1095224;0.3747415;-0.00262263,0.1800708;0.1908098;-0.03714888,0.2003405;0.06107593;-0.2498888,-0.1119639;0.3601219;0.003400749,-0.180892;0.1802429;-0.05038086,-0.2205079;0.0573399;-0.2644496,0.07241502;0.006727472;-0.03332875,0.08327355;-0.2909027;0.002704002,0.07144432;-0.5835281;0.06774591,0.08355236;-0.6136988;0.009213332,-0.0700068;0.00152901;-0.03868734,-0.1022052;-0.2946088;-0.00311064,-0.1001001;-0.588035;0.05931238,-0.1017806;-0.6137289;-0.006014574,-0.002369977;0.3985361;0.03362528,0;0;0,-0.001045947;0.1991024;0.01889766,-0.002666974;0.4986318;0.03471714,0.1095575;0.3801942;-0.007817913,0.1606887;0.2157006;-0.109442,0.2088045;0.1243716;-0.3371345,-0.1111442;0.3647485;-0.004949935,-0.1717679;0.210219;-0.1165088,-0.2181281;0.09714854;-0.3346047,0.07249533;0.007319244;-0.03302809,0.08371434;-0.2905763;0.0006223321,0.07091562;-0.5833091;0.06499404,0.08266813;-0.6155391;0.009315435,-0.06915665;0.0008189009;-0.04020803,-0.1044423;-0.2944407;-0.000500109,-0.10368;-0.5883386;0.05969502,-0.1082066;-0.6135427;-0.00606098,-0.002128131;0.3986703;0.03199341,97.43224
-0;0;0,-0.001276955;0.1990273;0.01966012,-0.002824382;0.4984825;0.03686763,0.1095224;0.3747415;-0.00262263,0.1800708;0.1908098;-0.03714888,0.2003405;0.06107593;-0.2498888,-0.1119639;0.3601219;0.003400749,-0.180892;0.1802429;-0.05038086,-0.2205079;0.0573399;-0.2644496,0.07241502;0.006727472;-0.03332875,0.08327355;-0.2909027;0.002704002,0.07144432;-0.5835281;0.06774591,0.08355236;-0.6136988;0.009213332,-0.0700068;0.00152901;-0.03868734,-0.1022052;-0.2946088;-0.00311064,-0.1001001;-0.588035;0.05931238,-0.1017806;-0.6137289;-0.006014574,-0.002369977;0.3985361;0.03362528,0;0;0,-0.001045947;0.1991024;0.01889766,-0.002666974;0.4986318;0.03471714,0.1095575;0.3801942;-0.007817913,0.1606887;0.2157006;-0.109442,0.2088045;0.1243716;-0.3371345,-0.1111442;0.3647485;-0.004949935,-0.1717679;0.210219;-0.1165088,-0.2181281;0.09714854;-0.3346047,0.07249533;0.007319244;-0.03302809,0.08371434;-0.2905763;0.0006223321,0.07091562;-0.5833091;0.06499404,0.08266813;-0.6155391;0.009315435,-0.06915665;0.0008189009;-0.04020803,-0.1044423;-0.2944407;-0.000500109,-0.10368;-0.5883386;0.05969502,-0.1082066;-0.6135427;-0.00606098,-0.002128131;0.3986703;0.03199341,97.44337
-0;0;0,-0.001252052;0.1990227;0.01970818,-0.002765799;0.4984759;0.03695126,0.1094944;0.3745745;-0.002677131,0.1802518;0.1911078;-0.03919245,0.2001925;0.06721111;-0.2554145,-0.1118311;0.3604156;0.002796179,-0.1807067;0.1806896;-0.05156108,-0.2202841;0.06035523;-0.2670913,0.07238869;0.00673062;-0.03338529,0.08326757;-0.2909229;0.002447896,0.07164036;-0.5836231;0.06718932,0.08357929;-0.6140683;0.008999739,-0.07002375;0.00152115;-0.03865695,-0.1021627;-0.2946462;-0.003273603,-0.1001736;-0.588115;0.05895266,-0.1022849;-0.6151235;-0.004806519,-0.002321797;0.3985298;0.0336997,0;0;0,-0.001076459;0.1990979;0.01894376,-0.002711624;0.4986274;0.03475322,0.1094108;0.3802987;-0.008105885,0.1642867;0.2279087;-0.1254343,0.2092132;0.1186405;-0.3457569,-0.1110994;0.3649766;-0.005378745,-0.1717499;0.2118536;-0.1188462,-0.2172856;0.105463;-0.3404484,0.07242922;0.007335806;-0.03316916,0.08359526;-0.2905445;0.0006341971,0.070817;-0.5833948;0.06447306,0.08281054;-0.6156376;0.008864891,-0.06919071;0.0008006232;-0.04014977,-0.1045204;-0.2945341;-0.001044631,-0.1039837;-0.5885103;0.05876979,-0.1078748;-0.6143032;-0.00634769,-0.002173212;0.3986657;0.03203949,97.46548
-0;0;0,-0.001252052;0.1990227;0.01970818,-0.002765799;0.4984759;0.03695126,0.1094944;0.3745745;-0.002677131,0.1802518;0.1911078;-0.03919245,0.2001925;0.06721111;-0.2554145,-0.1118311;0.3604156;0.002796179,-0.1807067;0.1806896;-0.05156108,-0.2202841;0.06035523;-0.2670913,0.07238869;0.00673062;-0.03338529,0.08326757;-0.2909229;0.002447896,0.07164036;-0.5836231;0.06718932,0.08357929;-0.6140683;0.008999739,-0.07002375;0.00152115;-0.03865695,-0.1021627;-0.2946462;-0.003273603,-0.1001736;-0.588115;0.05895266,-0.1022849;-0.6151235;-0.004806519,-0.002321797;0.3985298;0.0336997,0;0;0,-0.001076459;0.1990979;0.01894376,-0.002711624;0.4986274;0.03475322,0.1094108;0.3802987;-0.008105885,0.1642867;0.2279087;-0.1254343,0.2092132;0.1186405;-0.3457569,-0.1110994;0.3649766;-0.005378745,-0.1717499;0.2118536;-0.1188462,-0.2172856;0.105463;-0.3404484,0.07242922;0.007335806;-0.03316916,0.08359526;-0.2905445;0.0006341971,0.070817;-0.5833948;0.06447306,0.08281054;-0.6156376;0.008864891,-0.06919071;0.0008006232;-0.04014977,-0.1045204;-0.2945341;-0.001044631,-0.1039837;-0.5885103;0.05876979,-0.1078748;-0.6143032;-0.00634769,-0.002173212;0.3986657;0.03203949,97.47701
-0;0;0,-0.001252052;0.1990227;0.01970818,-0.002765799;0.4984759;0.03695126,0.1094944;0.3745745;-0.002677131,0.1802518;0.1911078;-0.03919245,0.2001925;0.06721111;-0.2554145,-0.1118311;0.3604156;0.002796179,-0.1807067;0.1806896;-0.05156108,-0.2202841;0.06035523;-0.2670913,0.07238869;0.00673062;-0.03338529,0.08326757;-0.2909229;0.002447896,0.07164036;-0.5836231;0.06718932,0.08357929;-0.6140683;0.008999739,-0.07002375;0.00152115;-0.03865695,-0.1021627;-0.2946462;-0.003273603,-0.1001736;-0.588115;0.05895266,-0.1022849;-0.6151235;-0.004806519,-0.002321797;0.3985298;0.0336997,0;0;0,-0.001076459;0.1990979;0.01894376,-0.002711624;0.4986274;0.03475322,0.1094108;0.3802987;-0.008105885,0.1642867;0.2279087;-0.1254343,0.2092132;0.1186405;-0.3457569,-0.1110994;0.3649766;-0.005378745,-0.1717499;0.2118536;-0.1188462,-0.2172856;0.105463;-0.3404484,0.07242922;0.007335806;-0.03316916,0.08359526;-0.2905445;0.0006341971,0.070817;-0.5833948;0.06447306,0.08281054;-0.6156376;0.008864891,-0.06919071;0.0008006232;-0.04014977,-0.1045204;-0.2945341;-0.001044631,-0.1039837;-0.5885103;0.05876979,-0.1078748;-0.6143032;-0.00634769,-0.002173212;0.3986657;0.03203949,97.48816
-0;0;0,-0.00122948;0.1990162;0.0197747,-0.002721688;0.4984654;0.03708933,0.1095672;0.374725;-0.002559815,0.1805029;0.1916773;-0.04079111,0.2008401;0.07471546;-0.2608055,-0.1117809;0.3607707;0.00242709,-0.1803876;0.1814582;-0.05360993,-0.2184288;0.0699739;-0.2741187,0.07236733;0.006748226;-0.03342799,0.08321588;-0.2909172;0.002315663,0.07161982;-0.5835648;0.06729978,0.08285814;-0.6127072;0.00721503,-0.07003324;0.001497138;-0.03864068,-0.1022226;-0.2946739;-0.003334366,-0.1002987;-0.5881886;0.05867691,-0.1024898;-0.6146685;-0.005712681,-0.00228345;0.3985199;0.03381666,0;0;0,-0.001076459;0.1990979;0.01894376,-0.002711624;0.4986274;0.03475322,0.1094108;0.3802987;-0.008105885,0.1642867;0.2279087;-0.1254343,0.2092132;0.1186405;-0.3457569,-0.1110994;0.3649766;-0.005378745,-0.1717499;0.2118536;-0.1188462,-0.2172856;0.105463;-0.3404484,0.07242922;0.007335806;-0.03316916,0.08359526;-0.2905445;0.0006341971,0.070817;-0.5833948;0.06447306,0.08281054;-0.6156376;0.008864891,-0.06919071;0.0008006232;-0.04014977,-0.1045204;-0.2945341;-0.001044631,-0.1039837;-0.5885103;0.05876979,-0.1078748;-0.6143032;-0.00634769,-0.002173212;0.3986657;0.03203949,97.51012
-0;0;0,-0.00122948;0.1990162;0.0197747,-0.002721688;0.4984654;0.03708933,0.1095672;0.374725;-0.002559815,0.1805029;0.1916773;-0.04079111,0.2008401;0.07471546;-0.2608055,-0.1117809;0.3607707;0.00242709,-0.1803876;0.1814582;-0.05360993,-0.2184288;0.0699739;-0.2741187,0.07236733;0.006748226;-0.03342799,0.08321588;-0.2909172;0.002315663,0.07161982;-0.5835648;0.06729978,0.08285814;-0.6127072;0.00721503,-0.07003324;0.001497138;-0.03864068,-0.1022226;-0.2946739;-0.003334366,-0.1002987;-0.5881886;0.05867691,-0.1024898;-0.6146685;-0.005712681,-0.00228345;0.3985199;0.03381666,0;0;0,-0.001058429;0.1990913;0.01901436,-0.002631234;0.498617;0.03490188,0.1093814;0.3802717;-0.00820785,0.1641112;0.2291915;-0.1272853,0.2099539;0.124726;-0.3497384,-0.1109492;0.3649647;-0.005530678,-0.1664147;0.2294169;-0.1417305,-0.2197806;0.101623;-0.3498669,0.07239373;0.00736157;-0.03324087,0.08364271;-0.2905207;0.0005177148,0.07083093;-0.5833981;0.06422536,0.08313639;-0.6152463;0.008105397,-0.06922942;0.0007642036;-0.04008368,-0.1044957;-0.2946042;-0.001176227,-0.1038764;-0.5886189;0.0584477,-0.1037063;-0.6161386;-0.004723981,-0.002118518;0.3986558;0.03216274,97.52156
-0;0;0,-0.0011863;0.199003;0.01991017,-0.002605687;0.4984405;0.03743147,0.1094938;0.3745341;-0.002682358,0.1802138;0.1917058;-0.04233703,0.201582;0.07860684;-0.264265,-0.1115487;0.3607665;0.002191827,-0.1799583;0.1819418;-0.05561669,-0.2162422;0.07563742;-0.2789614,0.07240526;0.006707575;-0.03335396,0.08328244;-0.2909386;0.002541143,0.07167353;-0.5836864;0.06706981,0.08300234;-0.6131111;0.007375795,-0.06999245;0.001529793;-0.03871326,-0.1021754;-0.2946454;-0.00343515,-0.1004874;-0.5882577;0.05811964,-0.1025918;-0.6150487;-0.005901501,-0.002191653;0.3984972;0.03408897,0;0;0,-0.001058429;0.1990913;0.01901436,-0.002631234;0.498617;0.03490188,0.1093814;0.3802717;-0.00820785,0.1641112;0.2291915;-0.1272853,0.2099539;0.124726;-0.3497384,-0.1109492;0.3649647;-0.005530678,-0.1664147;0.2294169;-0.1417305,-0.2197806;0.101623;-0.3498669,0.07239373;0.00736157;-0.03324087,0.08364271;-0.2905207;0.0005177148,0.07083093;-0.5833981;0.06422536,0.08313639;-0.6152463;0.008105397,-0.06922942;0.0007642036;-0.04008368,-0.1044957;-0.2946042;-0.001176227,-0.1038764;-0.5886189;0.0584477,-0.1037063;-0.6161386;-0.004723981,-0.002118518;0.3986558;0.03216274,97.54375
-0;0;0,-0.0011863;0.199003;0.01991017,-0.002605687;0.4984405;0.03743147,0.1094938;0.3745341;-0.002682358,0.1802138;0.1917058;-0.04233703,0.201582;0.07860684;-0.264265,-0.1115487;0.3607665;0.002191827,-0.1799583;0.1819418;-0.05561669,-0.2162422;0.07563742;-0.2789614,0.07240526;0.006707575;-0.03335396,0.08328244;-0.2909386;0.002541143,0.07167353;-0.5836864;0.06706981,0.08300234;-0.6131111;0.007375795,-0.06999245;0.001529793;-0.03871326,-0.1021754;-0.2946454;-0.00343515,-0.1004874;-0.5882577;0.05811964,-0.1025918;-0.6150487;-0.005901501,-0.002191653;0.3984972;0.03408897,0;0;0,-0.001058429;0.1990913;0.01901436,-0.002631234;0.498617;0.03490188,0.1093814;0.3802717;-0.00820785,0.1641112;0.2291915;-0.1272853,0.2099539;0.124726;-0.3497384,-0.1109492;0.3649647;-0.005530678,-0.1664147;0.2294169;-0.1417305,-0.2197806;0.101623;-0.3498669,0.07239373;0.00736157;-0.03324087,0.08364271;-0.2905207;0.0005177148,0.07083093;-0.5833981;0.06422536,0.08313639;-0.6152463;0.008105397,-0.06922942;0.0007642036;-0.04008368,-0.1044957;-0.2946042;-0.001176227,-0.1038764;-0.5886189;0.0584477,-0.1037063;-0.6161386;-0.004723981,-0.002118518;0.3986558;0.03216274,97.55538
-0;0;0,-0.001135695;0.1989936;0.02000658,-0.002501115;0.4984242;0.03764816,0.1095701;0.3742312;-0.002354279,0.1802044;0.19183;-0.0440748,0.2050613;0.09025837;-0.2711548,-0.1113638;0.3608842;0.001888383,-0.1792548;0.1822951;-0.05724518,-0.2140518;0.08037747;-0.2828598,0.07232942;0.006717838;-0.03351607,0.08307672;-0.2909273;0.002426889,0.07141868;-0.5837245;0.06672217,0.0828774;-0.613241;0.00717539,-0.07006766;0.001499985;-0.03857815,-0.1024814;-0.2946731;-0.00349446,-0.100964;-0.5882751;0.05811362,-0.1028012;-0.6158894;-0.004915316,-0.002102557;0.3984822;0.03426673,0;0;0,-0.000891003;0.1991004;0.0189271,-0.002074681;0.4986299;0.03477985,0.10969;0.3801961;-0.008505132,0.1635914;0.230241;-0.1293691,0.207891;0.1368552;-0.3570018,-0.1105651;0.3650616;-0.005704954,-0.1657421;0.229912;-0.1424168,-0.2184349;0.1121735;-0.3565688,0.07242662;0.007390176;-0.03316277,0.08376794;-0.290526;0.0002642274,0.07089159;-0.5834143;0.06390882,0.08359714;-0.6154767;0.00819229,-0.06917164;0.0007454593;-0.04018368,-0.1043593;-0.2946667;-0.001537953,-0.1037473;-0.5886897;0.05804496,-0.1055603;-0.6145991;-0.007027835,-0.001728997;0.3986678;0.0320485,97.56645
-0;0;0,-0.001135695;0.1989936;0.02000658,-0.002501115;0.4984242;0.03764816,0.1095701;0.3742312;-0.002354279,0.1802044;0.19183;-0.0440748,0.2050613;0.09025837;-0.2711548,-0.1113638;0.3608842;0.001888383,-0.1792548;0.1822951;-0.05724518,-0.2140518;0.08037747;-0.2828598,0.07232942;0.006717838;-0.03351607,0.08307672;-0.2909273;0.002426889,0.07141868;-0.5837245;0.06672217,0.0828774;-0.613241;0.00717539,-0.07006766;0.001499985;-0.03857815,-0.1024814;-0.2946731;-0.00349446,-0.100964;-0.5882751;0.05811362,-0.1028012;-0.6158894;-0.004915316,-0.002102557;0.3984822;0.03426673,0;0;0,-0.000891003;0.1991004;0.0189271,-0.002074681;0.4986299;0.03477985,0.10969;0.3801961;-0.008505132,0.1635914;0.230241;-0.1293691,0.207891;0.1368552;-0.3570018,-0.1105651;0.3650616;-0.005704954,-0.1657421;0.229912;-0.1424168,-0.2184349;0.1121735;-0.3565688,0.07242662;0.007390176;-0.03316277,0.08376794;-0.290526;0.0002642274,0.07089159;-0.5834143;0.06390882,0.08359714;-0.6154767;0.00819229,-0.06917164;0.0007454593;-0.04018368,-0.1043593;-0.2946667;-0.001537953,-0.1037473;-0.5886897;0.05804496,-0.1055603;-0.6145991;-0.007027835,-0.001728997;0.3986678;0.0320485,97.58823
-0;0;0,-0.001119258;0.1989895;0.02004842,-0.002489946;0.498419;0.03770616,0.1095618;0.3741904;-0.00234811,0.1803885;0.1924391;-0.04650729,0.2080421;0.09209438;-0.2738093,-0.1113357;0.3606077;0.002219688,-0.1792854;0.1827349;-0.05896937,-0.2118067;0.08694103;-0.2875867,0.07237999;0.0066425;-0.03342176,0.08293305;-0.2910495;0.002189506,0.07118575;-0.5838482;0.06646122,0.08275768;-0.6131929;0.006707378,-0.0700159;0.001567407;-0.03866933,-0.1026351;-0.2946052;-0.003772523,-0.1011556;-0.5882523;0.0576211,-0.1032897;-0.6144211;-0.007138152,-0.002086833;0.3984771;0.03432259,0;0;0,-0.0009513706;0.1990869;0.01906595,-0.002253725;0.4986057;0.03510933,0.1097544;0.3805179;-0.0078444,0.1628987;0.2318066;-0.1305661,0.2089009;0.1482653;-0.3616606,-0.1105244;0.3649579;-0.005871683,-0.1657556;0.2304471;-0.1431901,-0.2167806;0.1203965;-0.3617886,0.07238255;0.007418184;-0.0332526,0.08365551;-0.290488;0.0002858788,0.0707343;-0.5834017;0.06380443,0.08339871;-0.6156834;0.008402742,-0.06920287;0.000707131;-0.04013057,-0.1043831;-0.2947405;-0.001750063,-0.103863;-0.5888023;0.05764158,-0.105531;-0.6148777;-0.007241044,-0.001864285;0.3986455;0.03231361,97.5999
-0;0;0,-0.001119258;0.1989895;0.02004842,-0.002489946;0.498419;0.03770616,0.1095618;0.3741904;-0.00234811,0.1803885;0.1924391;-0.04650729,0.2080421;0.09209438;-0.2738093,-0.1113357;0.3606077;0.002219688,-0.1792854;0.1827349;-0.05896937,-0.2118067;0.08694103;-0.2875867,0.07237999;0.0066425;-0.03342176,0.08293305;-0.2910495;0.002189506,0.07118575;-0.5838482;0.06646122,0.08275768;-0.6131929;0.006707378,-0.0700159;0.001567407;-0.03866933,-0.1026351;-0.2946052;-0.003772523,-0.1011556;-0.5882523;0.0576211,-0.1032897;-0.6144211;-0.007138152,-0.002086833;0.3984771;0.03432259,0;0;0,-0.0009513706;0.1990869;0.01906595,-0.002253725;0.4986057;0.03510933,0.1097544;0.3805179;-0.0078444,0.1628987;0.2318066;-0.1305661,0.2089009;0.1482653;-0.3616606,-0.1105244;0.3649579;-0.005871683,-0.1657556;0.2304471;-0.1431901,-0.2167806;0.1203965;-0.3617886,0.07238255;0.007418184;-0.0332526,0.08365551;-0.290488;0.0002858788,0.0707343;-0.5834017;0.06380443,0.08339871;-0.6156834;0.008402742,-0.06920287;0.000707131;-0.04013057,-0.1043831;-0.2947405;-0.001750063,-0.103863;-0.5888023;0.05764158,-0.105531;-0.6148777;-0.007241044,-0.001864285;0.3986455;0.03231361,97.61073
-0;0;0,-0.001119258;0.1989895;0.02004842,-0.002489946;0.498419;0.03770616,0.1095618;0.3741904;-0.00234811,0.1803885;0.1924391;-0.04650729,0.2080421;0.09209438;-0.2738093,-0.1113357;0.3606077;0.002219688,-0.1792854;0.1827349;-0.05896937,-0.2118067;0.08694103;-0.2875867,0.07237999;0.0066425;-0.03342176,0.08293305;-0.2910495;0.002189506,0.07118575;-0.5838482;0.06646122,0.08275768;-0.6131929;0.006707378,-0.0700159;0.001567407;-0.03866933,-0.1026351;-0.2946052;-0.003772523,-0.1011556;-0.5882523;0.0576211,-0.1032897;-0.6144211;-0.007138152,-0.002086833;0.3984771;0.03432259,0;0;0,-0.0009513706;0.1990869;0.01906595,-0.002253725;0.4986057;0.03510933,0.1097544;0.3805179;-0.0078444,0.1628987;0.2318066;-0.1305661,0.2089009;0.1482653;-0.3616606,-0.1105244;0.3649579;-0.005871683,-0.1657556;0.2304471;-0.1431901,-0.2167806;0.1203965;-0.3617886,0.07238255;0.007418184;-0.0332526,0.08365551;-0.290488;0.0002858788,0.0707343;-0.5834017;0.06380443,0.08339871;-0.6156834;0.008402742,-0.06920287;0.000707131;-0.04013057,-0.1043831;-0.2947405;-0.001750063,-0.103863;-0.5888023;0.05764158,-0.105531;-0.6148777;-0.007241044,-0.001864285;0.3986455;0.03231361,97.62213
-0;0;0,-0.001120648;0.1989841;0.02010165,-0.002504292;0.4984087;0.03784211,0.1096548;0.374469;-0.0021194,0.180021;0.1928706;-0.04762353,0.2082232;0.09739266;-0.2769456,-0.1113557;0.3601095;0.002952006,-0.170866;0.2003827;-0.1016706,-0.2078894;0.08716661;-0.3214691,0.07236695;0.006656111;-0.03344727,0.0828774;-0.2910472;0.002080955,0.07112588;-0.5838666;0.06625837,0.08269855;-0.6131735;0.006454647,-0.07002491;0.001548484;-0.03865377,-0.1026952;-0.2946265;-0.003824737,-0.1012534;-0.5882957;0.057464,-0.1038216;-0.6137868;-0.008068416,-0.00209564;0.3984678;0.03443038,0;0;0,-0.0009513706;0.1990869;0.01906595,-0.002253725;0.4986057;0.03510933,0.1097544;0.3805179;-0.0078444,0.1628987;0.2318066;-0.1305661,0.2089009;0.1482653;-0.3616606,-0.1105244;0.3649579;-0.005871683,-0.1657556;0.2304471;-0.1431901,-0.2167806;0.1203965;-0.3617886,0.07238255;0.007418184;-0.0332526,0.08365551;-0.290488;0.0002858788,0.0707343;-0.5834017;0.06380443,0.08339871;-0.6156834;0.008402742,-0.06920287;0.000707131;-0.04013057,-0.1043831;-0.2947405;-0.001750063,-0.103863;-0.5888023;0.05764158,-0.105531;-0.6148777;-0.007241044,-0.001864285;0.3986455;0.03231361,97.64452
-0;0;0,-0.001120648;0.1989841;0.02010165,-0.002504292;0.4984087;0.03784211,0.1096548;0.374469;-0.0021194,0.180021;0.1928706;-0.04762353,0.2082232;0.09739266;-0.2769456,-0.1113557;0.3601095;0.002952006,-0.170866;0.2003827;-0.1016706,-0.2078894;0.08716661;-0.3214691,0.07236695;0.006656111;-0.03344727,0.0828774;-0.2910472;0.002080955,0.07112588;-0.5838666;0.06625837,0.08269855;-0.6131735;0.006454647,-0.07002491;0.001548484;-0.03865377,-0.1026952;-0.2946265;-0.003824737,-0.1012534;-0.5882957;0.057464,-0.1038216;-0.6137868;-0.008068416,-0.00209564;0.3984678;0.03443038,0;0;0,-0.0009974714;0.199077;0.01916637,-0.002391794;0.498587;0.03536776,0.109523;0.3803961;-0.007947993,0.1627573;0.2325632;-0.1316879,0.2110754;0.1549946;-0.3643861,-0.1104884;0.3648887;-0.006018676,-0.1657377;0.2317497;-0.1446604,-0.2146695;0.1250651;-0.3653957,0.0723501;0.00743623;-0.03331915,0.08356225;-0.2904534;0.0003864206,0.0706935;-0.5834384;0.06358607,0.08339108;-0.6154168;0.007744204,-0.06922431;0.0006874423;-0.04009391,-0.104433;-0.2947815;-0.001903892,-0.1041046;-0.5888593;0.05740992,-0.1058712;-0.6155283;-0.006767485,-0.001967954;0.3986286;0.032516,97.65565
-0;0;0,-0.001194148;0.1989786;0.02015172,-0.002698082;0.4983983;0.03796595,0.1094358;0.3745807;-0.002305549,0.1796096;0.1933074;-0.04937611,0.2076376;0.1105134;-0.2835974,-0.111439;0.3601465;0.002756752,-0.1711349;0.2005529;-0.1019632,-0.2041602;0.1091654;-0.3323057,0.07226797;0.006573861;-0.03367675,0.08263608;-0.2911516;0.00170793,0.07089017;-0.5839866;0.06581481,0.08239428;-0.6132156;0.005894601,-0.07009435;0.00165551;-0.03852325,-0.1029765;-0.2945592;-0.004235871,-0.1016116;-0.5882553;0.05692561,-0.1042072;-0.6131682;-0.009265874,-0.002247469;0.3984585;0.03452794,0;0;0,-0.0009974714;0.199077;0.01916637,-0.002391794;0.498587;0.03536776,0.109523;0.3803961;-0.007947993,0.1627573;0.2325632;-0.1316879,0.2110754;0.1549946;-0.3643861,-0.1104884;0.3648887;-0.006018676,-0.1657377;0.2317497;-0.1446604,-0.2146695;0.1250651;-0.3653957,0.0723501;0.00743623;-0.03331915,0.08356225;-0.2904534;0.0003864206,0.0706935;-0.5834384;0.06358607,0.08339108;-0.6154168;0.007744204,-0.06922431;0.0006874423;-0.04009391,-0.104433;-0.2947815;-0.001903892,-0.1041046;-0.5888593;0.05740992,-0.1058712;-0.6155283;-0.006767485,-0.001967954;0.3986286;0.032516,97.66812
-0;0;0,-0.001194148;0.1989786;0.02015172,-0.002698082;0.4983983;0.03796595,0.1094358;0.3745807;-0.002305549,0.1796096;0.1933074;-0.04937611,0.2076376;0.1105134;-0.2835974,-0.111439;0.3601465;0.002756752,-0.1711349;0.2005529;-0.1019632,-0.2041602;0.1091654;-0.3323057,0.07226797;0.006573861;-0.03367675,0.08263608;-0.2911516;0.00170793,0.07089017;-0.5839866;0.06581481,0.08239428;-0.6132156;0.005894601,-0.07009435;0.00165551;-0.03852325,-0.1029765;-0.2945592;-0.004235871,-0.1016116;-0.5882553;0.05692561,-0.1042072;-0.6131682;-0.009265874,-0.002247469;0.3984585;0.03452794,0;0;0,-0.0009974714;0.199077;0.01916637,-0.002391794;0.498587;0.03536776,0.109523;0.3803961;-0.007947993,0.1627573;0.2325632;-0.1316879,0.2110754;0.1549946;-0.3643861,-0.1104884;0.3648887;-0.006018676,-0.1657377;0.2317497;-0.1446604,-0.2146695;0.1250651;-0.3653957,0.0723501;0.00743623;-0.03331915,0.08356225;-0.2904534;0.0003864206,0.0706935;-0.5834384;0.06358607,0.08339108;-0.6154168;0.007744204,-0.06922431;0.0006874423;-0.04009391,-0.104433;-0.2947815;-0.001903892,-0.1041046;-0.5888593;0.05740992,-0.1058712;-0.6155283;-0.006767485,-0.001967954;0.3986286;0.032516,97.67924
-0;0;0,-0.001178742;0.198975;0.02018874,-0.002664424;0.4983927;0.03803685,0.1094428;0.3747107;-0.002395019,0.179367;0.193734;-0.05095444,0.2078614;0.1099212;-0.2847567,-0.1113373;0.3605571;0.002074696,-0.1709461;0.201609;-0.1036715,-0.2114952;0.1099087;-0.3326843,0.07231358;0.00668778;-0.03355621,0.08271784;-0.291085;0.001417242,0.07094835;-0.5839407;0.06542506,0.08253368;-0.613309;0.005705271,-0.0700231;0.001567089;-0.03865629,-0.1027763;-0.2946505;-0.004270203,-0.1015806;-0.5884066;0.05660607,-0.1038107;-0.6142317;-0.008551989,-0.002219529;0.3984531;0.0345892,0;0;0,-0.0009867484;0.1990751;0.01918674,-0.002358074;0.4985852;0.03538729,0.1097336;0.3806397;-0.007525157,0.1619368;0.2331841;-0.1321514,0.1928506;0.1578191;-0.368508,-0.1104229;0.3648794;-0.006101303,-0.1652105;0.2344252;-0.1474519,-0.2138152;0.128742;-0.3687406,0.07237635;0.007459205;-0.03325693,0.0835565;-0.2904466;0.000316266,0.07070334;-0.5834719;0.06333195,0.08346377;-0.6155828;0.007699523,-0.06919734;0.0006709766;-0.04014071,-0.1044108;-0.2948049;-0.002009161,-0.1041242;-0.5888979;0.05722989,-0.1061775;-0.6148776;-0.007753611,-0.001941906;0.3986267;0.03253797,97.70026
-0;0;0,-0.001178742;0.198975;0.02018874,-0.002664424;0.4983927;0.03803685,0.1094428;0.3747107;-0.002395019,0.179367;0.193734;-0.05095444,0.2078614;0.1099212;-0.2847567,-0.1113373;0.3605571;0.002074696,-0.1709461;0.201609;-0.1036715,-0.2114952;0.1099087;-0.3326843,0.07231358;0.00668778;-0.03355621,0.08271784;-0.291085;0.001417242,0.07094835;-0.5839407;0.06542506,0.08253368;-0.613309;0.005705271,-0.0700231;0.001567089;-0.03865629,-0.1027763;-0.2946505;-0.004270203,-0.1015806;-0.5884066;0.05660607,-0.1038107;-0.6142317;-0.008551989,-0.002219529;0.3984531;0.0345892,0;0;0,-0.0009867484;0.1990751;0.01918674,-0.002358074;0.4985852;0.03538729,0.1097336;0.3806397;-0.007525157,0.1619368;0.2331841;-0.1321514,0.1928506;0.1578191;-0.368508,-0.1104229;0.3648794;-0.006101303,-0.1652105;0.2344252;-0.1474519,-0.2138152;0.128742;-0.3687406,0.07237635;0.007459205;-0.03325693,0.0835565;-0.2904466;0.000316266,0.07070334;-0.5834719;0.06333195,0.08346377;-0.6155828;0.007699523,-0.06919734;0.0006709766;-0.04014071,-0.1044108;-0.2948049;-0.002009161,-0.1041242;-0.5888979;0.05722989,-0.1061775;-0.6148776;-0.007753611,-0.001941906;0.3986267;0.03253797,97.71313
-0;0;0,-0.001169438;0.1989671;0.02026669,-0.002660492;0.4983771;0.03824515,0.1094006;0.3744571;-0.002228867,0.1691241;0.2007329;-0.08130494,0.1889194;0.1252752;-0.3188218,-0.1112365;0.3601925;0.002336029,-0.1688652;0.2029806;-0.1070411,-0.216056;0.1075981;-0.3332604,0.07229265;0.006682937;-0.03360225,0.08260931;-0.2910984;0.001323681,0.0708397;-0.5839725;0.06524776,0.08189401;-0.6125894;0.00444331,-0.07002441;0.00156439;-0.03865404,-0.1029182;-0.2946554;-0.004421454,-0.1009855;-0.5881495;0.05768661,-0.1039771;-0.6122482;-0.009398725,-0.002211675;0.3984391;0.03475177,0;0;0,-0.0009867484;0.1990751;0.01918674,-0.002358074;0.4985852;0.03538729,0.1097336;0.3806397;-0.007525157,0.1619368;0.2331841;-0.1321514,0.1928506;0.1578191;-0.368508,-0.1104229;0.3648794;-0.006101303,-0.1652105;0.2344252;-0.1474519,-0.2138152;0.128742;-0.3687406,0.07237635;0.007459205;-0.03325693,0.0835565;-0.2904466;0.000316266,0.07070334;-0.5834719;0.06333195,0.08346377;-0.6155828;0.007699523,-0.06919734;0.0006709766;-0.04014071,-0.1044108;-0.2948049;-0.002009161,-0.1041242;-0.5888979;0.05722989,-0.1061775;-0.6148776;-0.007753611,-0.001941906;0.3986267;0.03253797,97.73367
-0;0;0,-0.001169438;0.1989671;0.02026669,-0.002660492;0.4983771;0.03824515,0.1094006;0.3744571;-0.002228867,0.1691241;0.2007329;-0.08130494,0.1889194;0.1252752;-0.3188218,-0.1112365;0.3601925;0.002336029,-0.1688652;0.2029806;-0.1070411,-0.216056;0.1075981;-0.3332604,0.07229265;0.006682937;-0.03360225,0.08260931;-0.2910984;0.001323681,0.0708397;-0.5839725;0.06524776,0.08189401;-0.6125894;0.00444331,-0.07002441;0.00156439;-0.03865404,-0.1029182;-0.2946554;-0.004421454,-0.1009855;-0.5881495;0.05768661,-0.1039771;-0.6122482;-0.009398725,-0.002211675;0.3984391;0.03475177,0;0;0,-0.001015617;0.199046;0.01948535,-0.002421978;0.4985262;0.03623585,0.1097291;0.381088;-0.006962076,0.1612083;0.2343368;-0.1327157,0.193601;0.1678008;-0.3715121,-0.1101986;0.3647853;-0.006181058,-0.1631924;0.2357286;-0.149485,-0.2135797;0.1319223;-0.3712628,0.07248204;0.007566411;-0.03300155,0.08371238;-0.2904025;-1.078099E-05,0.07079189;-0.5833444;0.06337795,0.08330274;-0.6150209;0.007053673,-0.0690898;0.0006171213;-0.04032639,-0.1042797;-0.2948649;-0.002220336,-0.1039739;-0.5889691;0.05696245,-0.106176;-0.6150181;-0.007935148,-0.00199398;0.3985735;0.0331904,97.74517
-0;0;0,-0.001169438;0.1989671;0.02026669,-0.002660492;0.4983771;0.03824515,0.1094006;0.3744571;-0.002228867,0.1691241;0.2007329;-0.08130494,0.1889194;0.1252752;-0.3188218,-0.1112365;0.3601925;0.002336029,-0.1688652;0.2029806;-0.1070411,-0.216056;0.1075981;-0.3332604,0.07229265;0.006682937;-0.03360225,0.08260931;-0.2910984;0.001323681,0.0708397;-0.5839725;0.06524776,0.08189401;-0.6125894;0.00444331,-0.07002441;0.00156439;-0.03865404,-0.1029182;-0.2946554;-0.004421454,-0.1009855;-0.5881495;0.05768661,-0.1039771;-0.6122482;-0.009398725,-0.002211675;0.3984391;0.03475177,0;0;0,-0.001015617;0.199046;0.01948535,-0.002421978;0.4985262;0.03623585,0.1097291;0.381088;-0.006962076,0.1612083;0.2343368;-0.1327157,0.193601;0.1678008;-0.3715121,-0.1101986;0.3647853;-0.006181058,-0.1631924;0.2357286;-0.149485,-0.2135797;0.1319223;-0.3712628,0.07248204;0.007566411;-0.03300155,0.08371238;-0.2904025;-1.078099E-05,0.07079189;-0.5833444;0.06337795,0.08330274;-0.6150209;0.007053673,-0.0690898;0.0006171213;-0.04032639,-0.1042797;-0.2948649;-0.002220336,-0.1039739;-0.5889691;0.05696245,-0.106176;-0.6150181;-0.007935148,-0.00199398;0.3985735;0.0331904,97.75621
-0;0;0,-0.001182476;0.1989611;0.02032478,-0.002704599;0.4983656;0.03839248,0.109306;0.3744342;-0.002290331,0.1791133;0.1946938;-0.05539697,0.2000039;0.112615;-0.2906131,-0.1112301;0.3600374;0.002492607,-0.168024;0.2045123;-0.1096965,-0.2160078;0.1039566;-0.3334957,0.07228249;0.006635772;-0.03363341,0.08259986;-0.2911583;0.00118364,0.07095075;-0.5840418;0.06508617,0.08123954;-0.6120121;0.003322273,-0.07002687;0.00160882;-0.03864775,-0.1029295;-0.2946195;-0.004498471,-0.1011537;-0.5882382;0.05702348,-0.1037628;-0.6124274;-0.009977683,-0.00224429;0.3984287;0.03486868,0;0;0,-0.001015617;0.199046;0.01948535,-0.002421978;0.4985262;0.03623585,0.1097291;0.381088;-0.006962076,0.1612083;0.2343368;-0.1327157,0.193601;0.1678008;-0.3715121,-0.1101986;0.3647853;-0.006181058,-0.1631924;0.2357286;-0.149485,-0.2135797;0.1319223;-0.3712628,0.07248204;0.007566411;-0.03300155,0.08371238;-0.2904025;-1.078099E-05,0.07079189;-0.5833444;0.06337795,0.08330274;-0.6150209;0.007053673,-0.0690898;0.0006171213;-0.04032639,-0.1042797;-0.2948649;-0.002220336,-0.1039739;-0.5889691;0.05696245,-0.106176;-0.6150181;-0.007935148,-0.00199398;0.3985735;0.0331904,97.76739
-0;0;0,-0.001161871;0.1989515;0.02041957,-0.002660613;0.4983482;0.03861689,0.1092905;0.3745532;-0.002351522,0.1596916;0.1971314;-0.07968983,0.1797772;0.1363456;-0.3213542,-0.1110301;0.3597431;0.002458576,-0.1670364;0.2051763;-0.1114377,-0.2119547;0.1051085;-0.3360904,0.07226048;0.006634419;-0.03368096,0.08251108;-0.2911831;0.0009552576,0.07036635;-0.584056;0.06481411,0.08160685;-0.6113839;0.002411827,-0.07003133;0.001603197;-0.0386399,-0.1029371;-0.2946395;-0.004618336,-0.1015139;-0.5882897;0.05676226,-0.1016569;-0.6148091;-0.0076175,-0.002207352;0.3984128;0.03505112,0;0;0,-0.0009466694;0.1990349;0.0196008,-0.002174654;0.4985051;0.03654401,0.1098511;0.3810457;-0.006872501,0.1607378;0.2354604;-0.1342125,0.1939726;0.1769778;-0.374993,-0.1101146;0.36446;-0.005406439,-0.1625585;0.2378857;-0.1511068,-0.2143185;0.1411722;-0.3757563,0.07249258;0.007557867;-0.03298036,0.08372943;-0.2904243;-0.0001114868,0.07085643;-0.5833774;0.06323472,0.08326063;-0.6149309;0.006708939,-0.06908151;0.0006236563;-0.04034049,-0.1041616;-0.2948843;-0.002334528,-0.104147;-0.5889466;0.05705754,-0.1060634;-0.6157959;-0.006899621,-0.001813505;0.3985542;0.03343226,97.78938
-0;0;0,-0.001161871;0.1989515;0.02041957,-0.002660613;0.4983482;0.03861689,0.1092905;0.3745532;-0.002351522,0.1596916;0.1971314;-0.07968983,0.1797772;0.1363456;-0.3213542,-0.1110301;0.3597431;0.002458576,-0.1670364;0.2051763;-0.1114377,-0.2119547;0.1051085;-0.3360904,0.07226048;0.006634419;-0.03368096,0.08251108;-0.2911831;0.0009552576,0.07036635;-0.584056;0.06481411,0.08160685;-0.6113839;0.002411827,-0.07003133;0.001603197;-0.0386399,-0.1029371;-0.2946395;-0.004618336,-0.1015139;-0.5882897;0.05676226,-0.1016569;-0.6148091;-0.0076175,-0.002207352;0.3984128;0.03505112,0;0;0,-0.0009466694;0.1990349;0.0196008,-0.002174654;0.4985051;0.03654401,0.1098511;0.3810457;-0.006872501,0.1607378;0.2354604;-0.1342125,0.1939726;0.1769778;-0.374993,-0.1101146;0.36446;-0.005406439,-0.1625585;0.2378857;-0.1511068,-0.2143185;0.1411722;-0.3757563,0.07249258;0.007557867;-0.03298036,0.08372943;-0.2904243;-0.0001114868,0.07085643;-0.5833774;0.06323472,0.08326063;-0.6149309;0.006708939,-0.06908151;0.0006236563;-0.04034049,-0.1041616;-0.2948843;-0.002334528,-0.104147;-0.5889466;0.05705754,-0.1060634;-0.6157959;-0.006899621,-0.001813505;0.3985542;0.03343226,97.81206
-0;0;0,-0.001161871;0.1989515;0.02041957,-0.002660613;0.4983482;0.03861689,0.1092905;0.3745532;-0.002351522,0.1596916;0.1971314;-0.07968983,0.1797772;0.1363456;-0.3213542,-0.1110301;0.3597431;0.002458576,-0.1670364;0.2051763;-0.1114377,-0.2119547;0.1051085;-0.3360904,0.07226048;0.006634419;-0.03368096,0.08251108;-0.2911831;0.0009552576,0.07036635;-0.584056;0.06481411,0.08160685;-0.6113839;0.002411827,-0.07003133;0.001603197;-0.0386399,-0.1029371;-0.2946395;-0.004618336,-0.1015139;-0.5882897;0.05676226,-0.1016569;-0.6148091;-0.0076175,-0.002207352;0.3984128;0.03505112,0;0;0,-0.001123406;0.1990121;0.01982277,-0.002726965;0.4984576;0.03717082,0.1095112;0.3816211;-0.006454796,0.1600471;0.2369327;-0.1349515,0.1946238;0.1842246;-0.3768736,-0.1105026;0.3644129;-0.004983548,-0.1627681;0.238592;-0.1513988,-0.2158631;0.1502171;-0.3791504,0.07272591;0.007681924;-0.03243348,0.08367816;-0.2904139;-0.0005123541,0.07074116;-0.5833375;0.06295706,0.0832333;-0.614769;0.006274939,-0.06891294;0.0005266285;-0.04062917,-0.1041224;-0.2949823;-0.002750997,-0.1041479;-0.5890722;0.0565041,-0.1067403;-0.6151115;-0.008390523,-0.002224692;0.3985119;0.03391579,97.82318
-0;0;0,-0.001133271;0.1989419;0.02051384,-0.002585924;0.4983292;0.03887106,0.1092884;0.3745622;-0.002351061,0.1784446;0.1953584;-0.05805939,0.2072459;0.1155242;-0.2932125,-0.1108322;0.3600911;0.001775134,-0.163593;0.2049053;-0.1128271,-0.1950367;0.1365216;-0.3512279,0.07225105;0.006621385;-0.03370375,0.08245632;-0.2912081;0.0008423254,0.07026117;-0.5840484;0.06484149,0.08151006;-0.6112218;0.002249718,-0.07002749;0.001611168;-0.03864652,-0.1028889;-0.2946368;-0.004627407,-0.1016443;-0.5883143;0.05662588,-0.1014395;-0.6151016;-0.007433947,-0.002148302;0.3983957;0.03524988,0;0;0,-0.001123406;0.1990121;0.01982277,-0.002726965;0.4984576;0.03717082,0.1095112;0.3816211;-0.006454796,0.1600471;0.2369327;-0.1349515,0.1946238;0.1842246;-0.3768736,-0.1105026;0.3644129;-0.004983548,-0.1627681;0.238592;-0.1513988,-0.2158631;0.1502171;-0.3791504,0.07272591;0.007681924;-0.03243348,0.08367816;-0.2904139;-0.0005123541,0.07074116;-0.5833375;0.06295706,0.0832333;-0.614769;0.006274939,-0.06891294;0.0005266285;-0.04062917,-0.1041224;-0.2949823;-0.002750997,-0.1041479;-0.5890722;0.0565041,-0.1067403;-0.6151115;-0.008390523,-0.002224692;0.3985119;0.03391579,97.83436
-0;0;0,-0.001133271;0.1989419;0.02051384,-0.002585924;0.4983292;0.03887106,0.1092884;0.3745622;-0.002351061,0.1784446;0.1953584;-0.05805939,0.2072459;0.1155242;-0.2932125,-0.1108322;0.3600911;0.001775134,-0.163593;0.2049053;-0.1128271,-0.1950367;0.1365216;-0.3512279,0.07225105;0.006621385;-0.03370375,0.08245632;-0.2912081;0.0008423254,0.07026117;-0.5840484;0.06484149,0.08151006;-0.6112218;0.002249718,-0.07002749;0.001611168;-0.03864652,-0.1028889;-0.2946368;-0.004627407,-0.1016443;-0.5883143;0.05662588,-0.1014395;-0.6151016;-0.007433947,-0.002148302;0.3983957;0.03524988,0;0;0,-0.001123406;0.1990121;0.01982277,-0.002726965;0.4984576;0.03717082,0.1095112;0.3816211;-0.006454796,0.1600471;0.2369327;-0.1349515,0.1946238;0.1842246;-0.3768736,-0.1105026;0.3644129;-0.004983548,-0.1627681;0.238592;-0.1513988,-0.2158631;0.1502171;-0.3791504,0.07272591;0.007681924;-0.03243348,0.08367816;-0.2904139;-0.0005123541,0.07074116;-0.5833375;0.06295706,0.0832333;-0.614769;0.006274939,-0.06891294;0.0005266285;-0.04062917,-0.1041224;-0.2949823;-0.002750997,-0.1041479;-0.5890722;0.0565041,-0.1067403;-0.6151115;-0.008390523,-0.002224692;0.3985119;0.03391579,97.84617
-0;0;0,-0.001121416;0.1989339;0.02059255,-0.002554374;0.4983138;0.03907092,0.1091441;0.3745997;-0.002721135,0.1694659;0.2040521;-0.08801351,0.1803729;0.1475202;-0.3312936,-0.1107829;0.360117;0.001809791,-0.1621112;0.2108075;-0.1209586,-0.2042636;0.1133013;-0.3472674,0.07228567;0.006651525;-0.03362348,0.08247679;-0.2911976;0.0007570386,0.07043341;-0.58408;0.06459174,0.08146941;-0.6118637;0.002721798,-0.0699978;0.001596753;-0.03870086,-0.1028672;-0.2946563;-0.004734334,-0.1016131;-0.5883796;0.05629869,-0.1025235;-0.6144562;-0.008597612,-0.002123445;0.3983817;0.03540955,0;0;0,-0.001122194;0.1990009;0.01993436,-0.002718334;0.498438;0.03742648,0.1094314;0.3815854;-0.006471977,0.1594519;0.2375687;-0.1359213,0.1939119;0.191601;-0.3792307,-0.1104673;0.3642732;-0.004748683,-0.1626509;0.2395903;-0.1521632,-0.2159023;0.1503233;-0.3795301,0.07276779;0.007619293;-0.03235422,0.0837291;-0.2904755;-0.0004270859,0.07071807;-0.5834335;0.06286861,0.08319058;-0.6148298;0.006131701,-0.06887268;0.0005621293;-0.04069691,-0.1040354;-0.2949419;-0.002737168,-0.104279;-0.5890902;0.05622646,-0.1067935;-0.6150302;-0.008787379,-0.002219191;0.3984937;0.03412681,97.86762
-0;0;0,-0.001121416;0.1989339;0.02059255,-0.002554374;0.4983138;0.03907092,0.1091441;0.3745997;-0.002721135,0.1694659;0.2040521;-0.08801351,0.1803729;0.1475202;-0.3312936,-0.1107829;0.360117;0.001809791,-0.1621112;0.2108075;-0.1209586,-0.2042636;0.1133013;-0.3472674,0.07228567;0.006651525;-0.03362348,0.08247679;-0.2911976;0.0007570386,0.07043341;-0.58408;0.06459174,0.08146941;-0.6118637;0.002721798,-0.0699978;0.001596753;-0.03870086,-0.1028672;-0.2946563;-0.004734334,-0.1016131;-0.5883796;0.05629869,-0.1025235;-0.6144562;-0.008597612,-0.002123445;0.3983817;0.03540955,0;0;0,-0.001122194;0.1990009;0.01993436,-0.002718334;0.498438;0.03742648,0.1094314;0.3815854;-0.006471977,0.1594519;0.2375687;-0.1359213,0.1939119;0.191601;-0.3792307,-0.1104673;0.3642732;-0.004748683,-0.1626509;0.2395903;-0.1521632,-0.2159023;0.1503233;-0.3795301,0.07276779;0.007619293;-0.03235422,0.0837291;-0.2904755;-0.0004270859,0.07071807;-0.5834335;0.06286861,0.08319058;-0.6148298;0.006131701,-0.06887268;0.0005621293;-0.04069691,-0.1040354;-0.2949419;-0.002737168,-0.104279;-0.5890902;0.05622646,-0.1067935;-0.6150302;-0.008787379,-0.002219191;0.3984937;0.03412681,97.87955
-0;0;0,-0.001224024;0.1989252;0.02067041,-0.002851314;0.4982949;0.03929935,0.1087188;0.3745289;-0.003090777,0.1750582;0.1949538;-0.06098609,0.2053438;0.1309715;-0.3007548,-0.1108773;0.3600304;0.001640901,-0.161988;0.2120725;-0.1228427,-0.2003129;0.1071074;-0.3464797,0.07234181;0.006673796;-0.03349812,0.08236195;-0.2912367;0.0003979728,0.0703437;-0.5841308;0.06418373,0.08178864;-0.6123277;0.002911769,-0.0699375;0.001574385;-0.03881064,-0.1029842;-0.2946862;-0.005082328,-0.1017584;-0.5884037;0.05597913,-0.1027888;-0.6145172;-0.008872017,-0.002349286;0.3983653;0.03558357,0;0;0,-0.001122194;0.1990009;0.01993436,-0.002718334;0.498438;0.03742648,0.1094314;0.3815854;-0.006471977,0.1594519;0.2375687;-0.1359213,0.1939119;0.191601;-0.3792307,-0.1104673;0.3642732;-0.004748683,-0.1626509;0.2395903;-0.1521632,-0.2159023;0.1503233;-0.3795301,0.07276779;0.007619293;-0.03235422,0.0837291;-0.2904755;-0.0004270859,0.07071807;-0.5834335;0.06286861,0.08319058;-0.6148298;0.006131701,-0.06887268;0.0005621293;-0.04069691,-0.1040354;-0.2949419;-0.002737168,-0.104279;-0.5890902;0.05622646,-0.1067935;-0.6150302;-0.008787379,-0.002219191;0.3984937;0.03412681,97.90105
-0;0;0,-0.001224024;0.1989252;0.02067041,-0.002851314;0.4982949;0.03929935,0.1087188;0.3745289;-0.003090777,0.1750582;0.1949538;-0.06098609,0.2053438;0.1309715;-0.3007548,-0.1108773;0.3600304;0.001640901,-0.161988;0.2120725;-0.1228427,-0.2003129;0.1071074;-0.3464797,0.07234181;0.006673796;-0.03349812,0.08236195;-0.2912367;0.0003979728,0.0703437;-0.5841308;0.06418373,0.08178864;-0.6123277;0.002911769,-0.0699375;0.001574385;-0.03881064,-0.1029842;-0.2946862;-0.005082328,-0.1017584;-0.5884037;0.05597913,-0.1027888;-0.6145172;-0.008872017,-0.002349286;0.3983653;0.03558357,0;0;0,-0.001122194;0.1990009;0.01993436,-0.002718334;0.498438;0.03742648,0.1094314;0.3815854;-0.006471977,0.1594519;0.2375687;-0.1359213,0.1939119;0.191601;-0.3792307,-0.1104673;0.3642732;-0.004748683,-0.1626509;0.2395903;-0.1521632,-0.2159023;0.1503233;-0.3795301,0.07276779;0.007619293;-0.03235422,0.0837291;-0.2904755;-0.0004270859,0.07071807;-0.5834335;0.06286861,0.08319058;-0.6148298;0.006131701,-0.06887268;0.0005621293;-0.04069691,-0.1040354;-0.2949419;-0.002737168,-0.104279;-0.5890902;0.05622646,-0.1067935;-0.6150302;-0.008787379,-0.002219191;0.3984937;0.03412681,97.91244
-0;0;0,-0.001276273;0.1989224;0.02069475,-0.002996664;0.4982894;0.03935811,0.1085244;0.374577;-0.003311075,0.1378013;0.1842667;-0.05739313,0.1933256;0.1686327;-0.3006474,-0.1109733;0.3601485;0.001499675,-0.1611952;0.2145936;-0.1261385,-0.1942716;0.1292391;-0.3587768,0.07236874;0.006693337;-0.03343599,0.08230016;-0.2912447;0.0002429113,0.07029351;-0.5841678;0.06389759,0.08179151;-0.612887;0.003308129,-0.06990555;0.001564014;-0.0388686,-0.1030107;-0.29469;-0.005139749,-0.1019629;-0.5885056;0.05545143,-0.1027935;-0.6154055;-0.008468136,-0.002461278;0.3983603;0.03563171,0;0;0,-0.001161497;0.1989913;0.02002814,-0.002859952;0.4984177;0.03769363,0.1092768;0.381616;-0.006426014,0.1587862;0.2388317;-0.1374278,0.1948056;0.2038595;-0.382335,-0.1105407;0.3641936;-0.004569601,-0.1621198;0.241021;-0.1534592,-0.2173221;0.1610489;-0.3838006,0.07272961;0.007597229;-0.03244511,0.08364892;-0.2904836;-0.0003731288,0.07067008;-0.5834754;0.06277217,0.08300339;-0.6149552;0.006124761,-0.06892274;0.0005866371;-0.04061171,-0.1041625;-0.2949337;-0.002850991,-0.104534;-0.5891343;0.05585052,-0.1071022;-0.614626;-0.009681217,-0.002322264;0.3984756;0.03433432,97.92364
-0;0;0,-0.001276273;0.1989224;0.02069475,-0.002996664;0.4982894;0.03935811,0.1085244;0.374577;-0.003311075,0.1378013;0.1842667;-0.05739313,0.1933256;0.1686327;-0.3006474,-0.1109733;0.3601485;0.001499675,-0.1611952;0.2145936;-0.1261385,-0.1942716;0.1292391;-0.3587768,0.07236874;0.006693337;-0.03343599,0.08230016;-0.2912447;0.0002429113,0.07029351;-0.5841678;0.06389759,0.08179151;-0.612887;0.003308129,-0.06990555;0.001564014;-0.0388686,-0.1030107;-0.29469;-0.005139749,-0.1019629;-0.5885056;0.05545143,-0.1027935;-0.6154055;-0.008468136,-0.002461278;0.3983603;0.03563171,0;0;0,-0.001161497;0.1989913;0.02002814,-0.002859952;0.4984177;0.03769363,0.1092768;0.381616;-0.006426014,0.1587862;0.2388317;-0.1374278,0.1948056;0.2038595;-0.382335,-0.1105407;0.3641936;-0.004569601,-0.1621198;0.241021;-0.1534592,-0.2173221;0.1610489;-0.3838006,0.07272961;0.007597229;-0.03244511,0.08364892;-0.2904836;-0.0003731288,0.07067008;-0.5834754;0.06277217,0.08300339;-0.6149552;0.006124761,-0.06892274;0.0005866371;-0.04061171,-0.1041625;-0.2949337;-0.002850991,-0.104534;-0.5891343;0.05585052,-0.1071022;-0.614626;-0.009681217,-0.002322264;0.3984756;0.03433432,97.94594
-0;0;0,-0.001276273;0.1989224;0.02069475,-0.002996664;0.4982894;0.03935811,0.1085244;0.374577;-0.003311075,0.1378013;0.1842667;-0.05739313,0.1933256;0.1686327;-0.3006474,-0.1109733;0.3601485;0.001499675,-0.1611952;0.2145936;-0.1261385,-0.1942716;0.1292391;-0.3587768,0.07236874;0.006693337;-0.03343599,0.08230016;-0.2912447;0.0002429113,0.07029351;-0.5841678;0.06389759,0.08179151;-0.612887;0.003308129,-0.06990555;0.001564014;-0.0388686,-0.1030107;-0.29469;-0.005139749,-0.1019629;-0.5885056;0.05545143,-0.1027935;-0.6154055;-0.008468136,-0.002461278;0.3983603;0.03563171,0;0;0,-0.001161497;0.1989913;0.02002814,-0.002859952;0.4984177;0.03769363,0.1092768;0.381616;-0.006426014,0.1587862;0.2388317;-0.1374278,0.1948056;0.2038595;-0.382335,-0.1105407;0.3641936;-0.004569601,-0.1621198;0.241021;-0.1534592,-0.2173221;0.1610489;-0.3838006,0.07272961;0.007597229;-0.03244511,0.08364892;-0.2904836;-0.0003731288,0.07067008;-0.5834754;0.06277217,0.08300339;-0.6149552;0.006124761,-0.06892274;0.0005866371;-0.04061171,-0.1041625;-0.2949337;-0.002850991,-0.104534;-0.5891343;0.05585052,-0.1071022;-0.614626;-0.009681217,-0.002322264;0.3984756;0.03433432,97.95762
-0;0;0,-0.001236734;0.1989104;0.02081148,-0.002855115;0.4982599;0.03977157,0.1086353;0.3747346;-0.003098823,0.1374784;0.1844029;-0.05733817,0.2012043;0.169774;-0.2986367,-0.1107702;0.3600554;0.001557216,-0.1606409;0.2154992;-0.1273474,-0.1941892;0.1338656;-0.3612501,0.0724106;0.006741582;-0.0333355,0.08240099;-0.2911885;0.0003969707,0.07030147;-0.5841659;0.06378324,0.0813886;-0.6119973;0.001982309,-0.06986434;0.001547647;-0.03894326,-0.102925;-0.2946959;-0.005078636,-0.1019742;-0.5885508;0.05532303,-0.1030572;-0.6150393;-0.009084489,-0.002358587;0.3983349;0.03593181,0;0;0,-0.001174613;0.1989823;0.02011604,-0.002891923;0.4984003;0.03792224,0.1092903;0.3818311;-0.006229818,0.1589319;0.2405296;-0.1387801,0.1955514;0.2092114;-0.3840926,-0.1105045;0.3641445;-0.004531365,-0.1618088;0.2412202;-0.1537208,-0.2028836;0.1149107;-0.3655196,0.07270706;0.007594905;-0.03249616,0.08361036;-0.2904854;-0.0004143417,0.07064172;-0.5834957;0.06264732,0.08289403;-0.6144576;0.005244732,-0.06897436;0.0005777062;-0.0405241,-0.1043187;-0.294942;-0.002855498,-0.105237;-0.5892061;0.05552072,-0.1070213;-0.6160246;-0.008477144,-0.002348524;0.3984598;0.03451658,97.97919
-0;0;0,-0.001272466;0.1988798;0.0210999,-0.002979216;0.4981844;0.0407626,0.1082534;0.3749536;-0.003350444,0.1375549;0.1846774;-0.0575387,0.2019792;0.1767654;-0.2989655,-0.1106593;0.3606447;0.0009542182,-0.159424;0.2189109;-0.13146,-0.191167;0.1440344;-0.367862,0.0724256;0.006880617;-0.03327444,0.08249768;-0.2910811;0.0001529232,0.07037856;-0.5840751;0.06345889,0.08158775;-0.6120029;0.001801729,-0.06983076;0.001438475;-0.03900763,-0.1027861;-0.294817;-0.005145755,-0.101925;-0.5886947;0.05514664,-0.1033445;-0.6155704;-0.008791678,-0.002450137;0.3982699;0.03666295,0;0;0,-0.001174613;0.1989823;0.02011604,-0.002891923;0.4984003;0.03792224,0.1092903;0.3818311;-0.006229818,0.1589319;0.2405296;-0.1387801,0.1955514;0.2092114;-0.3840926,-0.1105045;0.3641445;-0.004531365,-0.1618088;0.2412202;-0.1537208,-0.2028836;0.1149107;-0.3655196,0.07270706;0.007594905;-0.03249616,0.08361036;-0.2904854;-0.0004143417,0.07064172;-0.5834957;0.06264732,0.08289403;-0.6144576;0.005244732,-0.06897436;0.0005777062;-0.0405241,-0.1043187;-0.294942;-0.002855498,-0.105237;-0.5892061;0.05552072,-0.1070213;-0.6160246;-0.008477144,-0.002348524;0.3984598;0.03451658,97.99065
-0;0;0,-0.001272466;0.1988798;0.0210999,-0.002979216;0.4981844;0.0407626,0.1082534;0.3749536;-0.003350444,0.1375549;0.1846774;-0.0575387,0.2019792;0.1767654;-0.2989655,-0.1106593;0.3606447;0.0009542182,-0.159424;0.2189109;-0.13146,-0.191167;0.1440344;-0.367862,0.0724256;0.006880617;-0.03327444,0.08249768;-0.2910811;0.0001529232,0.07037856;-0.5840751;0.06345889,0.08158775;-0.6120029;0.001801729,-0.06983076;0.001438475;-0.03900763,-0.1027861;-0.294817;-0.005145755,-0.101925;-0.5886947;0.05514664,-0.1033445;-0.6155704;-0.008791678,-0.002450137;0.3982699;0.03666295,0;0;0,-0.001146458;0.1989889;0.02005231,-0.002843112;0.4984095;0.03781858,0.1093075;0.3819172;-0.006411381,0.1584884;0.2373859;-0.1356087,0.2060366;0.1689188;-0.3713022,-0.1104756;0.3641618;-0.004608255,-0.1614456;0.2416607;-0.1542597,-0.2071065;0.1719065;-0.3899489,0.07270397;0.007504827;-0.032524,0.08364412;-0.2905841;-0.000534378,0.07069091;-0.5836503;0.06227006,0.08325718;-0.6147003;0.005060136,-0.06898431;0.0006974307;-0.0405053,-0.1042647;-0.294849;-0.002987526,-0.1051604;-0.5891439;0.05523415,-0.1073746;-0.6156524;-0.009120699,-0.002310748;0.3984686;0.0344227,98.00238
-0;0;0,-0.001272466;0.1988798;0.0210999,-0.002979216;0.4981844;0.0407626,0.1082534;0.3749536;-0.003350444,0.1375549;0.1846774;-0.0575387,0.2019792;0.1767654;-0.2989655,-0.1106593;0.3606447;0.0009542182,-0.159424;0.2189109;-0.13146,-0.191167;0.1440344;-0.367862,0.0724256;0.006880617;-0.03327444,0.08249768;-0.2910811;0.0001529232,0.07037856;-0.5840751;0.06345889,0.08158775;-0.6120029;0.001801729,-0.06983076;0.001438475;-0.03900763,-0.1027861;-0.294817;-0.005145755,-0.101925;-0.5886947;0.05514664,-0.1033445;-0.6155704;-0.008791678,-0.002450137;0.3982699;0.03666295,0;0;0,-0.001146458;0.1989889;0.02005231,-0.002843112;0.4984095;0.03781858,0.1093075;0.3819172;-0.006411381,0.1584884;0.2373859;-0.1356087,0.2060366;0.1689188;-0.3713022,-0.1104756;0.3641618;-0.004608255,-0.1614456;0.2416607;-0.1542597,-0.2071065;0.1719065;-0.3899489,0.07270397;0.007504827;-0.032524,0.08364412;-0.2905841;-0.000534378,0.07069091;-0.5836503;0.06227006,0.08325718;-0.6147003;0.005060136,-0.06898431;0.0006974307;-0.0405053,-0.1042647;-0.294849;-0.002987526,-0.1051604;-0.5891439;0.05523415,-0.1073746;-0.6156524;-0.009120699,-0.002310748;0.3984686;0.0344227,98.02381
-0;0;0,-0.00118996;0.1988774;0.02112749,-0.002762468;0.4981831;0.04078258,0.1086779;0.3758622;-0.003137302,0.1381498;0.1864324;-0.0601263,0.2013898;0.1790686;-0.3018834,-0.1105047;0.3606501;0.001018852,-0.1593337;0.2126759;-0.1243581,-0.1895585;0.1504679;-0.364601,0.07248973;0.00697149;-0.03311551,0.08255689;-0.2910343;-8.24146E-05,0.07075845;-0.5840651;0.06311376,0.08127238;-0.612933;0.002538912,-0.06976413;0.001339814;-0.03913017,-0.1025586;-0.2949341;-0.005273089,-0.1017183;-0.5887672;0.05523669,-0.1030258;-0.6156802;-0.008659143,-0.002280574;0.398268;0.03668989,0;0;0,-0.001146458;0.1989889;0.02005231,-0.002843112;0.4984095;0.03781858,0.1093075;0.3819172;-0.006411381,0.1584884;0.2373859;-0.1356087,0.2060366;0.1689188;-0.3713022,-0.1104756;0.3641618;-0.004608255,-0.1614456;0.2416607;-0.1542597,-0.2071065;0.1719065;-0.3899489,0.07270397;0.007504827;-0.032524,0.08364412;-0.2905841;-0.000534378,0.07069091;-0.5836503;0.06227006,0.08325718;-0.6147003;0.005060136,-0.06898431;0.0006974307;-0.0405053,-0.1042647;-0.294849;-0.002987526,-0.1051604;-0.5891439;0.05523415,-0.1073746;-0.6156524;-0.009120699,-0.002310748;0.3984686;0.0344227,98.03535
-0;0;0,-0.00101175;0.1988625;0.02127673,-0.001953416;0.4981471;0.04129681,0.1090009;0.3755513;-0.003251139,0.1348443;0.1858093;-0.06095817,0.1997468;0.1856713;-0.3023865,-0.1098156;0.3610276;0.0005819425,-0.157489;0.2158399;-0.1284444,-0.1925707;0.158787;-0.3693058,0.07248855;0.006976733;-0.03311699,0.08258299;-0.2910402;-0.000192605,0.07076119;-0.5840687;0.06301023,0.08135127;-0.6129418;0.002455454,-0.06975074;0.001325332;-0.03915453,-0.1023106;-0.2949417;-0.005012371,-0.1016072;-0.5887892;0.05542925,-0.10389;-0.6158335;-0.008280788,-0.001722376;0.3982367;0.03706931,0;0;0,-0.001156836;0.1989862;0.02007863,-0.002861352;0.498406;0.03785636,0.109343;0.3820086;-0.006271463,0.1603655;0.2415741;-0.1392182,0.21099;0.1982253;-0.3801706,-0.1104396;0.36398;-0.004558492,-0.1608984;0.2423255;-0.1550712,-0.2064229;0.1743138;-0.3912956,0.07268876;0.007502076;-0.03255861,0.08362443;-0.2905693;-0.000404641,0.07081959;-0.5837171;0.0620486,0.08319009;-0.6147153;0.004722644,-0.06901355;0.0007064882;-0.04045529,-0.1042341;-0.2948246;-0.002760466,-0.1052297;-0.5891954;0.055074,-0.1077249;-0.6151097;-0.009970527,-0.00232686;0.3984651;0.03445963,98.05752
-0;0;0,-0.00101175;0.1988625;0.02127673,-0.001953416;0.4981471;0.04129681,0.1090009;0.3755513;-0.003251139,0.1348443;0.1858093;-0.06095817,0.1997468;0.1856713;-0.3023865,-0.1098156;0.3610276;0.0005819425,-0.157489;0.2158399;-0.1284444,-0.1925707;0.158787;-0.3693058,0.07248855;0.006976733;-0.03311699,0.08258299;-0.2910402;-0.000192605,0.07076119;-0.5840687;0.06301023,0.08135127;-0.6129418;0.002455454,-0.06975074;0.001325332;-0.03915453,-0.1023106;-0.2949417;-0.005012371,-0.1016072;-0.5887892;0.05542925,-0.10389;-0.6158335;-0.008280788,-0.001722376;0.3982367;0.03706931,0;0;0,-0.001156836;0.1989862;0.02007863,-0.002861352;0.498406;0.03785636,0.109343;0.3820086;-0.006271463,0.1603655;0.2415741;-0.1392182,0.21099;0.1982253;-0.3801706,-0.1104396;0.36398;-0.004558492,-0.1608984;0.2423255;-0.1550712,-0.2064229;0.1743138;-0.3912956,0.07268876;0.007502076;-0.03255861,0.08362443;-0.2905693;-0.000404641,0.07081959;-0.5837171;0.0620486,0.08319009;-0.6147153;0.004722644,-0.06901355;0.0007064882;-0.04045529,-0.1042341;-0.2948246;-0.002760466,-0.1052297;-0.5891954;0.055074,-0.1077249;-0.6151097;-0.009970527,-0.00232686;0.3984651;0.03445963,98.06895
-0;0;0,-0.00101175;0.1988625;0.02127673,-0.001953416;0.4981471;0.04129681,0.1090009;0.3755513;-0.003251139,0.1348443;0.1858093;-0.06095817,0.1997468;0.1856713;-0.3023865,-0.1098156;0.3610276;0.0005819425,-0.157489;0.2158399;-0.1284444,-0.1925707;0.158787;-0.3693058,0.07248855;0.006976733;-0.03311699,0.08258299;-0.2910402;-0.000192605,0.07076119;-0.5840687;0.06301023,0.08135127;-0.6129418;0.002455454,-0.06975074;0.001325332;-0.03915453,-0.1023106;-0.2949417;-0.005012371,-0.1016072;-0.5887892;0.05542925,-0.10389;-0.6158335;-0.008280788,-0.001722376;0.3982367;0.03706931,0;0;0,-0.001156836;0.1989862;0.02007863,-0.002861352;0.498406;0.03785636,0.109343;0.3820086;-0.006271463,0.1603655;0.2415741;-0.1392182,0.21099;0.1982253;-0.3801706,-0.1104396;0.36398;-0.004558492,-0.1608984;0.2423255;-0.1550712,-0.2064229;0.1743138;-0.3912956,0.07268876;0.007502076;-0.03255861,0.08362443;-0.2905693;-0.000404641,0.07081959;-0.5837171;0.0620486,0.08319009;-0.6147153;0.004722644,-0.06901355;0.0007064882;-0.04045529,-0.1042341;-0.2948246;-0.002760466,-0.1052297;-0.5891954;0.055074,-0.1077249;-0.6151097;-0.009970527,-0.00232686;0.3984651;0.03445963,98.08004
-0;0;0,-0.001022025;0.1988679;0.02122547,-0.00198026;0.4981559;0.0411965,0.1090408;0.375789;-0.003291927,0.1349352;0.1874111;-0.06528585,0.199627;0.1717429;-0.306262,-0.1097412;0.3612279;5.729496E-06,-0.1577087;0.2169885;-0.1299717,-0.1923116;0.1579695;-0.3704283,0.07248925;0.007042316;-0.03310156,0.08257027;-0.2909946;-0.0003539994,0.07081348;-0.5840358;0.06280176,0.08125181;-0.6129822;0.002316181,-0.06973876;0.001267084;-0.03917779,-0.1022415;-0.2950099;-0.005067177,-0.1019005;-0.5889406;0.0549716,-0.1043511;-0.6150179;-0.00988397,-0.001747186;0.3982452;0.03697897,0;0;0,-0.001201401;0.198981;0.02012741,-0.002970161;0.4983985;0.03793565,0.1094261;0.3826086;-0.005971052,0.1613128;0.2420073;-0.1384061,0.2135486;0.2014365;-0.3794983,-0.1103887;0.364259;-0.005115602,-0.1594871;0.2414647;-0.1551519,-0.2070563;0.1794278;-0.3926148,0.07267581;0.00755752;-0.03257469,0.08359133;-0.2905288;-0.0005527064,0.07075599;-0.58369;0.06183122,0.08319943;-0.6146094;0.004409805,-0.06900639;0.0006445626;-0.04046855,-0.1042491;-0.2948931;-0.002846058,-0.1046382;-0.5893389;0.05461301,-0.1080044;-0.6176634;-0.007467132,-0.002414257;0.3984579;0.03453236,98.10224
-0;0;0,-0.001022025;0.1988679;0.02122547,-0.00198026;0.4981559;0.0411965,0.1090408;0.375789;-0.003291927,0.1349352;0.1874111;-0.06528585,0.199627;0.1717429;-0.306262,-0.1097412;0.3612279;5.729496E-06,-0.1577087;0.2169885;-0.1299717,-0.1923116;0.1579695;-0.3704283,0.07248925;0.007042316;-0.03310156,0.08257027;-0.2909946;-0.0003539994,0.07081348;-0.5840358;0.06280176,0.08125181;-0.6129822;0.002316181,-0.06973876;0.001267084;-0.03917779,-0.1022415;-0.2950099;-0.005067177,-0.1019005;-0.5889406;0.0549716,-0.1043511;-0.6150179;-0.00988397,-0.001747186;0.3982452;0.03697897,0;0;0,-0.001201401;0.198981;0.02012741,-0.002970161;0.4983985;0.03793565,0.1094261;0.3826086;-0.005971052,0.1613128;0.2420073;-0.1384061,0.2135486;0.2014365;-0.3794983,-0.1103887;0.364259;-0.005115602,-0.1594871;0.2414647;-0.1551519,-0.2070563;0.1794278;-0.3926148,0.07267581;0.00755752;-0.03257469,0.08359133;-0.2905288;-0.0005527064,0.07075599;-0.58369;0.06183122,0.08319943;-0.6146094;0.004409805,-0.06900639;0.0006445626;-0.04046855,-0.1042491;-0.2948931;-0.002846058,-0.1046382;-0.5893389;0.05461301,-0.1080044;-0.6176634;-0.007467132,-0.002414257;0.3984579;0.03453236,98.11393
-0;0;0,-0.0009887627;0.1988678;0.02122805,-0.001904442;0.4981566;0.04118706,0.1088644;0.375466;-0.003753603,0.1450941;0.1976082;-0.0877417,0.202288;0.1931553;-0.3310707,-0.109609;0.3613699;-0.0003531277,-0.157391;0.2171986;-0.1304742,-0.1933764;0.1527125;-0.3693185,0.07249306;0.007035529;-0.03309467,0.08260476;-0.291003;-0.000372272,0.07089914;-0.5840538;0.06274891,0.08087248;-0.6136109;0.002989423,-0.06973921;0.001269565;-0.0391769,-0.1021485;-0.2950128;-0.00502409,-0.1018786;-0.5890136;0.05467101,-0.1043046;-0.6155891;-0.009596411,-0.001689302;0.3982455;0.03697695,0;0;0,-0.001201401;0.198981;0.02012741,-0.002970161;0.4983985;0.03793565,0.1094261;0.3826086;-0.005971052,0.1613128;0.2420073;-0.1384061,0.2135486;0.2014365;-0.3794983,-0.1103887;0.364259;-0.005115602,-0.1594871;0.2414647;-0.1551519,-0.2070563;0.1794278;-0.3926148,0.07267581;0.00755752;-0.03257469,0.08359133;-0.2905288;-0.0005527064,0.07075599;-0.58369;0.06183122,0.08319943;-0.6146094;0.004409805,-0.06900639;0.0006445626;-0.04046855,-0.1042491;-0.2948931;-0.002846058,-0.1046382;-0.5893389;0.05461301,-0.1080044;-0.6176634;-0.007467132,-0.002414257;0.3984579;0.03453236,98.13587
-0;0;0,-0.0009887627;0.1988678;0.02122805,-0.001904442;0.4981566;0.04118706,0.1088644;0.375466;-0.003753603,0.1450941;0.1976082;-0.0877417,0.202288;0.1931553;-0.3310707,-0.109609;0.3613699;-0.0003531277,-0.157391;0.2171986;-0.1304742,-0.1933764;0.1527125;-0.3693185,0.07249306;0.007035529;-0.03309467,0.08260476;-0.291003;-0.000372272,0.07089914;-0.5840538;0.06274891,0.08087248;-0.6136109;0.002989423,-0.06973921;0.001269565;-0.0391769,-0.1021485;-0.2950128;-0.00502409,-0.1018786;-0.5890136;0.05467101,-0.1043046;-0.6155891;-0.009596411,-0.001689302;0.3982455;0.03697695,0;0;0,-0.00115154;0.1989744;0.02019548,-0.002761229;0.4983851;0.03813414,0.1096244;0.3828242;-0.005765885,0.1613728;0.2446464;-0.1407806,0.2163945;0.2082117;-0.3819137,-0.1102103;0.3641953;-0.005005803,-0.1592087;0.244995;-0.1579452,-0.2088896;0.1726241;-0.392027,0.07269255;0.007573423;-0.03253361,0.08358513;-0.2905222;-0.0005909614,0.07080577;-0.5836728;0.06185452,0.08315342;-0.6147339;0.004612546,-0.0689884;0.0006258364;-0.04049949,-0.1042598;-0.2949043;-0.002844866,-0.1046546;-0.5893407;0.05466224,-0.1080006;-0.6156949;-0.009826791,-0.002267517;0.3984458;0.03468369,98.14701
-0;0;0,-0.0009788257;0.1988585;0.02131534,-0.001912886;0.4981427;0.04133745,0.1089419;0.3760663;-0.003751904,0.1331646;0.1890117;-0.0702638,0.1980264;0.1806147;-0.3115571,-0.1094388;0.3613015;-0.000642091,-0.157244;0.2250221;-0.1389989,-0.1906131;0.1807661;-0.3827773,0.0724908;0.007062321;-0.03309391,0.08262599;-0.2909922;-0.0005245283,0.07084583;-0.5839653;0.06294212,0.08174369;-0.6139658;0.003940776,-0.06972427;0.001221376;-0.03920503,-0.1021024;-0.2950615;-0.005027644,-0.1017341;-0.5890329;0.05481148,-0.1036374;-0.6162837;-0.008660488,-0.001686425;0.3982322;0.03711417,0;0;0,-0.00115154;0.1989744;0.02019548,-0.002761229;0.4983851;0.03813414,0.1096244;0.3828242;-0.005765885,0.1613728;0.2446464;-0.1407806,0.2163945;0.2082117;-0.3819137,-0.1102103;0.3641953;-0.005005803,-0.1592087;0.244995;-0.1579452,-0.2088896;0.1726241;-0.392027,0.07269255;0.007573423;-0.03253361,0.08358513;-0.2905222;-0.0005909614,0.07080577;-0.5836728;0.06185452,0.08315342;-0.6147339;0.004612546,-0.0689884;0.0006258364;-0.04049949,-0.1042598;-0.2949043;-0.002844866,-0.1046546;-0.5893407;0.05466224,-0.1080006;-0.6156949;-0.009826791,-0.002267517;0.3984458;0.03468369,98.15823
-0;0;0,-0.0009788257;0.1988585;0.02131534,-0.001912886;0.4981427;0.04133745,0.1089419;0.3760663;-0.003751904,0.1331646;0.1890117;-0.0702638,0.1980264;0.1806147;-0.3115571,-0.1094388;0.3613015;-0.000642091,-0.157244;0.2250221;-0.1389989,-0.1906131;0.1807661;-0.3827773,0.0724908;0.007062321;-0.03309391,0.08262599;-0.2909922;-0.0005245283,0.07084583;-0.5839653;0.06294212,0.08174369;-0.6139658;0.003940776,-0.06972427;0.001221376;-0.03920503,-0.1021024;-0.2950615;-0.005027644,-0.1017341;-0.5890329;0.05481148,-0.1036374;-0.6162837;-0.008660488,-0.001686425;0.3982322;0.03711417,0;0;0,-0.00115154;0.1989744;0.02019548,-0.002761229;0.4983851;0.03813414,0.1096244;0.3828242;-0.005765885,0.1613728;0.2446464;-0.1407806,0.2163945;0.2082117;-0.3819137,-0.1102103;0.3641953;-0.005005803,-0.1592087;0.244995;-0.1579452,-0.2088896;0.1726241;-0.392027,0.07269255;0.007573423;-0.03253361,0.08358513;-0.2905222;-0.0005909614,0.07080577;-0.5836728;0.06185452,0.08315342;-0.6147339;0.004612546,-0.0689884;0.0006258364;-0.04049949,-0.1042598;-0.2949043;-0.002844866,-0.1046546;-0.5893407;0.05466224,-0.1080006;-0.6156949;-0.009826791,-0.002267517;0.3984458;0.03468369,98.18044
-0;0;0,-0.000939191;0.1988559;0.0213409,-0.001771029;0.4981375;0.04140682,0.1092458;0.3770614;-0.003687724,0.1331807;0.189865;-0.06990413,0.197757;0.1856288;-0.3113828,-0.109191;0.3608854;-0.0005870685,-0.159855;0.2143959;-0.1269754,-0.1914058;0.1904084;-0.3738137,0.07248308;0.007097427;-0.03310331,0.08257351;-0.290978;-0.0007108785,0.07086563;-0.5839254;0.06288743,0.08145274;-0.614073;0.004029382,-0.06972153;0.001194218;-0.03921074,-0.1021172;-0.2950902;-0.005063262,-0.1016725;-0.5891141;0.05451653,-0.1039872;-0.6160161;-0.009363953,-0.001581007;0.3982275;0.0371707,0;0;0,-0.001199866;0.1989745;0.02019189,-0.002859469;0.4983867;0.03809997,0.1095623;0.3831069;-0.005836777,0.1622633;0.2455497;-0.1411166,0.2185411;0.2121591;-0.3824004,-0.1102855;0.3641211;-0.004986107,-0.1590014;0.2448657;-0.1579727,-0.2027362;0.1815492;-0.3958347,0.07265877;0.007588501;-0.03260547,0.08334378;-0.2905284;-0.0007911921,0.07062874;-0.5836681;0.06171839,0.08297625;-0.614777;0.004544299,-0.06902149;0.0006075572;-0.04044336,-0.1044096;-0.2949416;-0.003048651,-0.1050538;-0.5894392;0.0541424,-0.1079834;-0.6152276;-0.01103066,-0.002351122;0.3984471;0.03466092,98.1917
-0;0;0,-0.000939191;0.1988559;0.0213409,-0.001771029;0.4981375;0.04140682,0.1092458;0.3770614;-0.003687724,0.1331807;0.189865;-0.06990413,0.197757;0.1856288;-0.3113828,-0.109191;0.3608854;-0.0005870685,-0.159855;0.2143959;-0.1269754,-0.1914058;0.1904084;-0.3738137,0.07248308;0.007097427;-0.03310331,0.08257351;-0.290978;-0.0007108785,0.07086563;-0.5839254;0.06288743,0.08145274;-0.614073;0.004029382,-0.06972153;0.001194218;-0.03921074,-0.1021172;-0.2950902;-0.005063262,-0.1016725;-0.5891141;0.05451653,-0.1039872;-0.6160161;-0.009363953,-0.001581007;0.3982275;0.0371707,0;0;0,-0.001199866;0.1989745;0.02019189,-0.002859469;0.4983867;0.03809997,0.1095623;0.3831069;-0.005836777,0.1622633;0.2455497;-0.1411166,0.2185411;0.2121591;-0.3824004,-0.1102855;0.3641211;-0.004986107,-0.1590014;0.2448657;-0.1579727,-0.2027362;0.1815492;-0.3958347,0.07265877;0.007588501;-0.03260547,0.08334378;-0.2905284;-0.0007911921,0.07062874;-0.5836681;0.06171839,0.08297625;-0.614777;0.004544299,-0.06902149;0.0006075572;-0.04044336,-0.1044096;-0.2949416;-0.003048651,-0.1050538;-0.5894392;0.0541424,-0.1079834;-0.6152276;-0.01103066,-0.002351122;0.3984471;0.03466092,98.20304
-0;0;0,-0.0008666849;0.1988526;0.02137536,-0.001629784;0.4981332;0.04145608,0.1095121;0.3780673;-0.003754992,0.1334582;0.190596;-0.06918506,0.1961856;0.194901;-0.3111494,-0.109022;0.3610379;-0.0008336641,-0.1572712;0.2293679;-0.1434346,-0.1977264;0.1850734;-0.3861306,0.07248195;0.007050596;-0.03311579,0.08268993;-0.2910267;-0.0007782169,0.07094962;-0.5839591;0.06288339,0.081445;-0.6140301;0.003904749,-0.06970641;0.001233038;-0.03923642,-0.1020525;-0.2950399;-0.00494206,-0.1018007;-0.5891097;0.05441188,-0.1041658;-0.6160317;-0.009442706,-0.001460937;0.3982233;0.0372171,0;0;0,-0.001199866;0.1989745;0.02019189,-0.002859469;0.4983867;0.03809997,0.1095623;0.3831069;-0.005836777,0.1622633;0.2455497;-0.1411166,0.2185411;0.2121591;-0.3824004,-0.1102855;0.3641211;-0.004986107,-0.1590014;0.2448657;-0.1579727,-0.2027362;0.1815492;-0.3958347,0.07265877;0.007588501;-0.03260547,0.08334378;-0.2905284;-0.0007911921,0.07062874;-0.5836681;0.06171839,0.08297625;-0.614777;0.004544299,-0.06902149;0.0006075572;-0.04044336,-0.1044096;-0.2949416;-0.003048651,-0.1050538;-0.5894392;0.0541424,-0.1079834;-0.6152276;-0.01103066,-0.002351122;0.3984471;0.03466092,98.22503
-0;0;0,-0.0008666849;0.1988526;0.02137536,-0.001629784;0.4981332;0.04145608,0.1095121;0.3780673;-0.003754992,0.1334582;0.190596;-0.06918506,0.1961856;0.194901;-0.3111494,-0.109022;0.3610379;-0.0008336641,-0.1572712;0.2293679;-0.1434346,-0.1977264;0.1850734;-0.3861306,0.07248195;0.007050596;-0.03311579,0.08268993;-0.2910267;-0.0007782169,0.07094962;-0.5839591;0.06288339,0.081445;-0.6140301;0.003904749,-0.06970641;0.001233038;-0.03923642,-0.1020525;-0.2950399;-0.00494206,-0.1018007;-0.5891097;0.05441188,-0.1041658;-0.6160317;-0.009442706,-0.001460937;0.3982233;0.0372171,0;0;0,-0.001193718;0.1989751;0.0201867,-0.002837443;0.4983894;0.03805812,0.1095568;0.3830982;-0.005921602,0.1625798;0.2453267;-0.1408571,0.2272376;0.2315628;-0.3819586,-0.1102267;0.3639526;-0.004980903,-0.1585408;0.2448507;-0.1582143,-0.2177882;0.1894858;-0.3946979,0.07263687;0.007540104;-0.03266544,0.0833074;-0.2905688;-0.0007711947,0.07058834;-0.5836978;0.06178742,0.08285645;-0.6146954;0.004438583,-0.06907009;0.0006493782;-0.04035965,-0.1044312;-0.294918;-0.003083196,-0.1050932;-0.5894256;0.05405541,-0.1074274;-0.6161062;-0.01009003,-0.002334533;0.3984494;0.03463291,98.2368
-0;0;0,-0.0008240744;0.19885;0.02140135,-0.001422527;0.4981266;0.04154713,0.1094593;0.3777504;-0.004064675,0.1361883;0.1917691;-0.0725958,0.1970038;0.197807;-0.3150108,-0.1088684;0.3609336;-0.0006910786,-0.1620668;0.2141846;-0.1257297,-0.2039512;0.1588926;-0.365914,0.07248375;0.007047811;-0.03311245,0.08271624;-0.2910298;-0.0007848293,0.07102953;-0.5839615;0.06288969,0.08140492;-0.6139442;0.003770221,-0.0697076;0.001231127;-0.03923435,-0.1020513;-0.2950389;-0.004912972,-0.1018587;-0.5891516;0.05422808,-0.10403;-0.615693;-0.01008916,-0.001315812;0.3982174;0.03728729,0;0;0,-0.001193718;0.1989751;0.0201867,-0.002837443;0.4983894;0.03805812,0.1095568;0.3830982;-0.005921602,0.1625798;0.2453267;-0.1408571,0.2272376;0.2315628;-0.3819586,-0.1102267;0.3639526;-0.004980903,-0.1585408;0.2448507;-0.1582143,-0.2177882;0.1894858;-0.3946979,0.07263687;0.007540104;-0.03266544,0.0833074;-0.2905688;-0.0007711947,0.07058834;-0.5836978;0.06178742,0.08285645;-0.6146954;0.004438583,-0.06907009;0.0006493782;-0.04035965,-0.1044312;-0.294918;-0.003083196,-0.1050932;-0.5894256;0.05405541,-0.1074274;-0.6161062;-0.01009003,-0.002334533;0.3984494;0.03463291,98.25844
-0;0;0,-0.0008240744;0.19885;0.02140135,-0.001422527;0.4981266;0.04154713,0.1094593;0.3777504;-0.004064675,0.1361883;0.1917691;-0.0725958,0.1970038;0.197807;-0.3150108,-0.1088684;0.3609336;-0.0006910786,-0.1620668;0.2141846;-0.1257297,-0.2039512;0.1588926;-0.365914,0.07248375;0.007047811;-0.03311245,0.08271624;-0.2910298;-0.0007848293,0.07102953;-0.5839615;0.06288969,0.08140492;-0.6139442;0.003770221,-0.0697076;0.001231127;-0.03923435,-0.1020513;-0.2950389;-0.004912972,-0.1018587;-0.5891516;0.05422808,-0.10403;-0.615693;-0.01008916,-0.001315812;0.3982174;0.03728729,0;0;0,-0.001193718;0.1989751;0.0201867,-0.002837443;0.4983894;0.03805812,0.1095568;0.3830982;-0.005921602,0.1625798;0.2453267;-0.1408571,0.2272376;0.2315628;-0.3819586,-0.1102267;0.3639526;-0.004980903,-0.1585408;0.2448507;-0.1582143,-0.2177882;0.1894858;-0.3946979,0.07263687;0.007540104;-0.03266544,0.0833074;-0.2905688;-0.0007711947,0.07058834;-0.5836978;0.06178742,0.08285645;-0.6146954;0.004438583,-0.06907009;0.0006493782;-0.04035965,-0.1044312;-0.294918;-0.003083196,-0.1050932;-0.5894256;0.05405541,-0.1074274;-0.6161062;-0.01009003,-0.002334533;0.3984494;0.03463291,98.27025
-0;0;0,-0.0006997329;0.1988466;0.02143721,-0.0009457541;0.4981194;0.04164584,0.1098339;0.3781959;-0.004098922,0.1367982;0.1923366;-0.07286849,0.1966139;0.2014892;-0.3154346,-0.1085436;0.3612214;-0.0008729137,-0.1654165;0.2040744;-0.1107378,-0.2134394;0.1367245;-0.3466568,0.07246291;0.006987347;-0.03317082,0.08278605;-0.2910865;-0.0008376688,0.07113548;-0.5840379;0.0627526,0.08146688;-0.613983;0.003574558,-0.06972719;0.001300726;-0.03919728,-0.1021616;-0.294976;-0.005019512,-0.1020704;-0.5890937;0.05409678,-0.1039755;-0.6150769;-0.01088721,-0.0009816224;0.3982111;0.03736565,0;0;0,-0.001271772;0.1989762;0.02017101,-0.003004534;0.498392;0.03800989,0.1093885;0.3831761;-0.006072372,0.16318;0.2478285;-0.1431399,0.2184838;0.2347237;-0.3865937,-0.110306;0.3639184;-0.005146831,-0.1571396;0.2593716;-0.1690876,-0.2101296;0.2023709;-0.406665,0.07258812;0.007539254;-0.03277383,0.08314355;-0.2905858;-0.0009926632,0.0703015;-0.5837569;0.06134371,0.08284501;-0.6146038;0.003842089,-0.06911425;0.000629526;-0.0402843,-0.1046243;-0.294955;-0.003286719,-0.1053816;-0.5894767;0.05377848,-0.1076341;-0.6164342;-0.01003747,-0.002472423;0.3984518;0.03459444,98.29205
-0;0;0,-0.0006997329;0.1988466;0.02143721,-0.0009457541;0.4981194;0.04164584,0.1098339;0.3781959;-0.004098922,0.1367982;0.1923366;-0.07286849,0.1966139;0.2014892;-0.3154346,-0.1085436;0.3612214;-0.0008729137,-0.1654165;0.2040744;-0.1107378,-0.2134394;0.1367245;-0.3466568,0.07246291;0.006987347;-0.03317082,0.08278605;-0.2910865;-0.0008376688,0.07113548;-0.5840379;0.0627526,0.08146688;-0.613983;0.003574558,-0.06972719;0.001300726;-0.03919728,-0.1021616;-0.294976;-0.005019512,-0.1020704;-0.5890937;0.05409678,-0.1039755;-0.6150769;-0.01088721,-0.0009816224;0.3982111;0.03736565,0;0;0,-0.001271772;0.1989762;0.02017101,-0.003004534;0.498392;0.03800989,0.1093885;0.3831761;-0.006072372,0.16318;0.2478285;-0.1431399,0.2184838;0.2347237;-0.3865937,-0.110306;0.3639184;-0.005146831,-0.1571396;0.2593716;-0.1690876,-0.2101296;0.2023709;-0.406665,0.07258812;0.007539254;-0.03277383,0.08314355;-0.2905858;-0.0009926632,0.0703015;-0.5837569;0.06134371,0.08284501;-0.6146038;0.003842089,-0.06911425;0.000629526;-0.0402843,-0.1046243;-0.294955;-0.003286719,-0.1053816;-0.5894767;0.05377848,-0.1076341;-0.6164342;-0.01003747,-0.002472423;0.3984518;0.03459444,98.30381
-0;0;0,-0.0007058004;0.1988351;0.02154282,-0.0009890059;0.498084;0.04211366,0.1095883;0.3779873;-0.00427442,0.1429523;0.1957139;-0.07952906,0.1977241;0.200118;-0.3234156,-0.1084126;0.3612203;-0.001004729,-0.1623718;0.2156673;-0.1271107,-0.2021252;0.2197605;-0.3738959,0.07247958;0.006976253;-0.03313672,0.08286864;-0.2911005;-0.0008515827,0.07119998;-0.5840501;0.06274423,0.08148944;-0.6140658;0.003654361,-0.06971406;0.001300846;-0.03922061,-0.1020941;-0.2949753;-0.004986156,-0.1020921;-0.5891365;0.05391356,-0.1042116;-0.6147682;-0.01147262,-0.001005273;0.3981818;0.03769284,0;0;0,-0.001271772;0.1989762;0.02017101,-0.003004534;0.498392;0.03800989,0.1093885;0.3831761;-0.006072372,0.16318;0.2478285;-0.1431399,0.2184838;0.2347237;-0.3865937,-0.110306;0.3639184;-0.005146831,-0.1571396;0.2593716;-0.1690876,-0.2101296;0.2023709;-0.406665,0.07258812;0.007539254;-0.03277383,0.08314355;-0.2905858;-0.0009926632,0.0703015;-0.5837569;0.06134371,0.08284501;-0.6146038;0.003842089,-0.06911425;0.000629526;-0.0402843,-0.1046243;-0.294955;-0.003286719,-0.1053816;-0.5894767;0.05377848,-0.1076341;-0.6164342;-0.01003747,-0.002472423;0.3984518;0.03459444,98.32594
-0;0;0,-0.0007058004;0.1988351;0.02154282,-0.0009890059;0.498084;0.04211366,0.1095883;0.3779873;-0.00427442,0.1429523;0.1957139;-0.07952906,0.1977241;0.200118;-0.3234156,-0.1084126;0.3612203;-0.001004729,-0.1623718;0.2156673;-0.1271107,-0.2021252;0.2197605;-0.3738959,0.07247958;0.006976253;-0.03313672,0.08286864;-0.2911005;-0.0008515827,0.07119998;-0.5840501;0.06274423,0.08148944;-0.6140658;0.003654361,-0.06971406;0.001300846;-0.03922061,-0.1020941;-0.2949753;-0.004986156,-0.1020921;-0.5891365;0.05391356,-0.1042116;-0.6147682;-0.01147262,-0.001005273;0.3981818;0.03769284,0;0;0,-0.001309453;0.1989745;0.02018457,-0.003092658;0.498389;0.03804228,0.109267;0.3831361;-0.006173559,0.1633143;0.2504438;-0.1457144,0.2141363;0.238503;-0.3902027,-0.1103244;0.3638826;-0.00523315,-0.157142;0.2565205;-0.1673488,-0.2107493;0.2092219;-0.406909,0.07264572;0.007513555;-0.03265187,0.08305144;-0.2906347;-0.001039512,0.07040973;-0.5838708;0.06103132,0.08265447;-0.614243;0.002804469,-0.06909082;0.0006516952;-0.04032411,-0.1046562;-0.2949221;-0.003294036,-0.1053738;-0.5894421;0.05378026,-0.1074231;-0.6164911;-0.009931877,-0.002542745;0.3984491;0.03461983,98.348
-0;0;0,-0.0006449603;0.1988277;0.0216132,-0.0009073947;0.4980727;0.04224177,0.1096042;0.3781125;-0.004381429,0.1431978;0.1959078;-0.07970034,0.1969954;0.2034791;-0.3237259,-0.1083137;0.3613948;-0.001150835,-0.1633245;0.2177581;-0.1289879,-0.2022058;0.2185668;-0.3759446,0.07251188;0.006949564;-0.03307158,0.08303123;-0.2911313;-0.0008668378,0.07132202;-0.5840589;0.06282254,0.08154287;-0.6141669;0.003845915,-0.06966553;0.001335728;-0.03930559,-0.1020084;-0.2949467;-0.005090665,-0.1020254;-0.5891069;0.05381437,-0.1040553;-0.6146216;-0.01170973,-0.0009335208;0.3981716;0.03779732,0;0;0,-0.001309453;0.1989745;0.02018457,-0.003092658;0.498389;0.03804228,0.109267;0.3831361;-0.006173559,0.1633143;0.2504438;-0.1457144,0.2141363;0.238503;-0.3902027,-0.1103244;0.3638826;-0.00523315,-0.157142;0.2565205;-0.1673488,-0.2107493;0.2092219;-0.406909,0.07264572;0.007513555;-0.03265187,0.08305144;-0.2906347;-0.001039512,0.07040973;-0.5838708;0.06103132,0.08265447;-0.614243;0.002804469,-0.06909082;0.0006516952;-0.04032411,-0.1046562;-0.2949221;-0.003294036,-0.1053738;-0.5894421;0.05378026,-0.1074231;-0.6164911;-0.009931877,-0.002542745;0.3984491;0.03461983,98.36075
-0;0;0,-0.0006449603;0.1988277;0.0216132,-0.0009073947;0.4980727;0.04224177,0.1096042;0.3781125;-0.004381429,0.1431978;0.1959078;-0.07970034,0.1969954;0.2034791;-0.3237259,-0.1083137;0.3613948;-0.001150835,-0.1633245;0.2177581;-0.1289879,-0.2022058;0.2185668;-0.3759446,0.07251188;0.006949564;-0.03307158,0.08303123;-0.2911313;-0.0008668378,0.07132202;-0.5840589;0.06282254,0.08154287;-0.6141669;0.003845915,-0.06966553;0.001335728;-0.03930559,-0.1020084;-0.2949467;-0.005090665,-0.1020254;-0.5891069;0.05381437,-0.1040553;-0.6146216;-0.01170973,-0.0009335208;0.3981716;0.03779732,0;0;0,-0.001309453;0.1989745;0.02018457,-0.003092658;0.498389;0.03804228,0.109267;0.3831361;-0.006173559,0.1633143;0.2504438;-0.1457144,0.2141363;0.238503;-0.3902027,-0.1103244;0.3638826;-0.00523315,-0.157142;0.2565205;-0.1673488,-0.2107493;0.2092219;-0.406909,0.07264572;0.007513555;-0.03265187,0.08305144;-0.2906347;-0.001039512,0.07040973;-0.5838708;0.06103132,0.08265447;-0.614243;0.002804469,-0.06909082;0.0006516952;-0.04032411,-0.1046562;-0.2949221;-0.003294036,-0.1053738;-0.5894421;0.05378026,-0.1074231;-0.6164911;-0.009931877,-0.002542745;0.3984491;0.03461983,98.38178
-0;0;0,-0.000615817;0.1988264;0.02162646,-0.0008125376;0.4980744;0.04220949,0.109323;0.3774097;-0.00497311,0.1418522;0.1944839;-0.07900035,0.193953;0.2123281;-0.3228591,-0.1082237;0.361478;-0.001290444,-0.163948;0.2161164;-0.1268484,-0.2035185;0.2125883;-0.3736717,0.07247438;0.006956377;-0.03315227,0.08297574;-0.2911096;-0.0008039474,0.07143242;-0.5840673;0.06277679,0.08152792;-0.6140776;0.00364618,-0.06968548;0.001332736;-0.0392703,-0.1021198;-0.29496;-0.005231578,-0.102076;-0.5890159;0.05419184,-0.1037168;-0.6145341;-0.0113391,-0.0008615668;0.3981724;0.03778517,0;0;0,-0.001306941;0.1989775;0.02015572,-0.003090268;0.4983969;0.03792889,0.1092241;0.3832996;-0.006440908,0.1641089;0.251793;-0.1467751,0.2112387;0.2437651;-0.3921612,-0.1102543;0.3637558;-0.005381033,-0.157133;0.2593606;-0.1694055,-0.2264874;0.1876811;-0.3986478,0.07264006;0.007474283;-0.03267347,0.0829905;-0.2907037;-0.001323938,0.07038758;-0.5839696;0.06061381,0.08318004;-0.6141552;0.002247527,-0.06908108;0.0006632653;-0.04034061,-0.1046796;-0.2949331;-0.003522787,-0.1053726;-0.5894626;0.0535023,-0.1071183;-0.6148618;-0.01216287,-0.002539531;0.398456;0.03453676,98.4043
-0;0;0,-0.000615817;0.1988264;0.02162646,-0.0008125376;0.4980744;0.04220949,0.109323;0.3774097;-0.00497311,0.1418522;0.1944839;-0.07900035,0.193953;0.2123281;-0.3228591,-0.1082237;0.361478;-0.001290444,-0.163948;0.2161164;-0.1268484,-0.2035185;0.2125883;-0.3736717,0.07247438;0.006956377;-0.03315227,0.08297574;-0.2911096;-0.0008039474,0.07143242;-0.5840673;0.06277679,0.08152792;-0.6140776;0.00364618,-0.06968548;0.001332736;-0.0392703,-0.1021198;-0.29496;-0.005231578,-0.102076;-0.5890159;0.05419184,-0.1037168;-0.6145341;-0.0113391,-0.0008615668;0.3981724;0.03778517,0;0;0,-0.001306941;0.1989775;0.02015572,-0.003090268;0.4983969;0.03792889,0.1092241;0.3832996;-0.006440908,0.1641089;0.251793;-0.1467751,0.2112387;0.2437651;-0.3921612,-0.1102543;0.3637558;-0.005381033,-0.157133;0.2593606;-0.1694055,-0.2264874;0.1876811;-0.3986478,0.07264006;0.007474283;-0.03267347,0.0829905;-0.2907037;-0.001323938,0.07038758;-0.5839696;0.06061381,0.08318004;-0.6141552;0.002247527,-0.06908108;0.0006632653;-0.04034061,-0.1046796;-0.2949331;-0.003522787,-0.1053726;-0.5894626;0.0535023,-0.1071183;-0.6148618;-0.01216287,-0.002539531;0.398456;0.03453676,98.4155
-0;0;0,-0.000582281;0.1988237;0.02165196,-0.0007557203;0.4980728;0.04221787,0.1092579;0.3773504;-0.005222049,0.1419446;0.194366;-0.07903473,0.194415;0.2138563;-0.3226881,-0.1081268;0.3615637;-0.001483217,-0.1643553;0.2151834;-0.1256249,-0.2019609;0.2195465;-0.3727419,0.0724466;0.006923783;-0.03321974,0.08302179;-0.2911236;-0.0007251054,0.07145189;-0.5840936;0.0627948,0.08134963;-0.6138154;0.003242668,-0.06970197;0.001349598;-0.03924046,-0.1021954;-0.2949339;-0.005177435,-0.1019896;-0.5889683;0.05435181,-0.1027855;-0.6146808;-0.0109703,-0.0008117735;0.3981703;0.03780342,0;0;0,-0.001306941;0.1989775;0.02015572,-0.003090268;0.4983969;0.03792889,0.1092241;0.3832996;-0.006440908,0.1641089;0.251793;-0.1467751,0.2112387;0.2437651;-0.3921612,-0.1102543;0.3637558;-0.005381033,-0.157133;0.2593606;-0.1694055,-0.2264874;0.1876811;-0.3986478,0.07264006;0.007474283;-0.03267347,0.0829905;-0.2907037;-0.001323938,0.07038758;-0.5839696;0.06061381,0.08318004;-0.6141552;0.002247527,-0.06908108;0.0006632653;-0.04034061,-0.1046796;-0.2949331;-0.003522787,-0.1053726;-0.5894626;0.0535023,-0.1071183;-0.6148618;-0.01216287,-0.002539531;0.398456;0.03453676,98.43806
-0;0;0,-0.0005763692;0.1988236;0.02165307,-0.000744212;0.4980744;0.04219244,0.1090925;0.3770901;-0.005555861,0.1537651;0.2043516;-0.0959205,0.201884;0.1967962;-0.3411296,-0.1080761;0.3616359;-0.001670729,-0.1645912;0.2153661;-0.1258126,-0.2018189;0.223923;-0.3728771,0.07244498;0.006943305;-0.03321922,0.08300706;-0.2911146;-0.0008162148,0.07137149;-0.5840358;0.06291574,0.0814803;-0.6136795;0.003294412,-0.06970125;0.001323883;-0.03924261,-0.1022766;-0.2949622;-0.00528067,-0.1020267;-0.5890367;0.05405004,-0.103494;-0.613731;-0.01242255,-0.0008011133;0.3981713;0.0377913,0;0;0,-0.001329588;0.1989752;0.02017682,-0.003146049;0.4983935;0.03796333,0.1090857;0.3833722;-0.006692439,0.1652795;0.2547492;-0.1491648,0.2105041;0.2508426;-0.3950092,-0.1101718;0.3636793;-0.005626746,-0.1576762;0.2600561;-0.1699604,-0.2169799;0.2129003;-0.4082028,0.07263645;0.007459419;-0.03268491,0.08291827;-0.290732;-0.001441611,0.07048682;-0.5839863;0.06058586,0.08233995;-0.6154643;0.003833387,-0.06907322;0.000674352;-0.04035388,-0.1048205;-0.2949272;-0.003722258,-0.1055488;-0.5894319;0.05343066,-0.1069918;-0.6140271;-0.01315367,-0.002583951;0.3984528;0.03456853,98.45961
-0;0;0,-0.0005763692;0.1988236;0.02165307,-0.000744212;0.4980744;0.04219244,0.1090925;0.3770901;-0.005555861,0.1537651;0.2043516;-0.0959205,0.201884;0.1967962;-0.3411296,-0.1080761;0.3616359;-0.001670729,-0.1645912;0.2153661;-0.1258126,-0.2018189;0.223923;-0.3728771,0.07244498;0.006943305;-0.03321922,0.08300706;-0.2911146;-0.0008162148,0.07137149;-0.5840358;0.06291574,0.0814803;-0.6136795;0.003294412,-0.06970125;0.001323883;-0.03924261,-0.1022766;-0.2949622;-0.00528067,-0.1020267;-0.5890367;0.05405004,-0.103494;-0.613731;-0.01242255,-0.0008011133;0.3981713;0.0377913,0;0;0,-0.001329588;0.1989752;0.02017682,-0.003146049;0.4983935;0.03796333,0.1090857;0.3833722;-0.006692439,0.1652795;0.2547492;-0.1491648,0.2105041;0.2508426;-0.3950092,-0.1101718;0.3636793;-0.005626746,-0.1576762;0.2600561;-0.1699604,-0.2169799;0.2129003;-0.4082028,0.07263645;0.007459419;-0.03268491,0.08291827;-0.290732;-0.001441611,0.07048682;-0.5839863;0.06058586,0.08233995;-0.6154643;0.003833387,-0.06907322;0.000674352;-0.04035388,-0.1048205;-0.2949272;-0.003722258,-0.1055488;-0.5894319;0.05343066,-0.1069918;-0.6140271;-0.01315367,-0.002583951;0.3984528;0.03456853,98.47148
-0;0;0,-0.0005763692;0.1988236;0.02165307,-0.000744212;0.4980744;0.04219244,0.1090925;0.3770901;-0.005555861,0.1537651;0.2043516;-0.0959205,0.201884;0.1967962;-0.3411296,-0.1080761;0.3616359;-0.001670729,-0.1645912;0.2153661;-0.1258126,-0.2018189;0.223923;-0.3728771,0.07244498;0.006943305;-0.03321922,0.08300706;-0.2911146;-0.0008162148,0.07137149;-0.5840358;0.06291574,0.0814803;-0.6136795;0.003294412,-0.06970125;0.001323883;-0.03924261,-0.1022766;-0.2949622;-0.00528067,-0.1020267;-0.5890367;0.05405004,-0.103494;-0.613731;-0.01242255,-0.0008011133;0.3981713;0.0377913,0;0;0,-0.001329588;0.1989752;0.02017682,-0.003146049;0.4983935;0.03796333,0.1090857;0.3833722;-0.006692439,0.1652795;0.2547492;-0.1491648,0.2105041;0.2508426;-0.3950092,-0.1101718;0.3636793;-0.005626746,-0.1576762;0.2600561;-0.1699604,-0.2169799;0.2129003;-0.4082028,0.07263645;0.007459419;-0.03268491,0.08291827;-0.290732;-0.001441611,0.07048682;-0.5839863;0.06058586,0.08233995;-0.6154643;0.003833387,-0.06907322;0.000674352;-0.04035388,-0.1048205;-0.2949272;-0.003722258,-0.1055488;-0.5894319;0.05343066,-0.1069918;-0.6140271;-0.01315367,-0.002583951;0.3984528;0.03456853,98.48603
-0;0;0,-0.000475327;0.1988221;0.021669,-0.0004500163;0.4980753;0.04217004,0.109341;0.3776072;-0.005752645,0.1363932;0.1922938;-0.07594619,0.1916912;0.2350903;-0.3159682,-0.1078601;0.3616426;-0.001651183,-0.1645424;0.2151959;-0.1255079,-0.201087;0.2382576;-0.3717449,0.07241834;0.006937514;-0.03327844,0.08300245;-0.291107;-0.0007599853,0.07129895;-0.584075;0.06274407,0.08182696;-0.6138768;0.003407422,-0.06972372;0.001322695;-0.03920273,-0.1022773;-0.2949747;-0.005318914,-0.1019047;-0.5890023;0.05424378,-0.1035833;-0.6142377;-0.01161071,-0.0005743424;0.3981715;0.03778733,0;0;0,-0.001288381;0.1989715;0.0202157,-0.00302805;0.4983873;0.03805219,0.10904;0.3832168;-0.006933525,0.1659982;0.2725899;-0.1635141,0.2092363;0.2615021;-0.4094968,-0.1098801;0.364035;-0.006390445,-0.1564444;0.2660418;-0.1744056,-0.1951644;0.2695599;-0.4213639,0.07266852;0.00746441;-0.03261239,0.08283861;-0.2907349;-0.001406826,0.07052726;-0.5839619;0.06077298,0.08218049;-0.6153671;0.003874931,-0.06904314;0.0006729843;-0.04040535,-0.104887;-0.2949117;-0.003731839,-0.106224;-0.5892945;0.05403462,-0.105673;-0.556263;-0.04451368,-0.00249241;0.3984469;0.03464248,98.50419
-0;0;0,-0.0004571817;0.198818;0.02170692,-0.0004595662;0.4980692;0.04224061,0.1090252;0.3769505;-0.006190494,0.1692784;0.2480799;-0.1467676,0.1975034;0.2467969;-0.3951659,-0.1078381;0.3617029;-0.001703084,-0.1667964;0.2136034;-0.1224941,-0.20199;0.2387094;-0.368728,0.07243215;0.006809697;-0.03327479,0.08303481;-0.2912268;-0.000689324,0.07137911;-0.584199;0.06280462,0.08200193;-0.6139154;0.003370244,-0.06970301;0.001416966;-0.03923623,-0.1021886;-0.294876;-0.00524839,-0.1017707;-0.5888835;0.0544124,-0.1038607;-0.6152472;-0.01011833,-0.000569463;0.398166;0.03784271,0;0;0,-0.001288381;0.1989715;0.0202157,-0.00302805;0.4983873;0.03805219,0.10904;0.3832168;-0.006933525,0.1659982;0.2725899;-0.1635141,0.2092363;0.2615021;-0.4094968,-0.1098801;0.364035;-0.006390445,-0.1564444;0.2660418;-0.1744056,-0.1951644;0.2695599;-0.4213639,0.07266852;0.00746441;-0.03261239,0.08283861;-0.2907349;-0.001406826,0.07052726;-0.5839619;0.06077298,0.08218049;-0.6153671;0.003874931,-0.06904314;0.0006729843;-0.04040535,-0.104887;-0.2949117;-0.003731839,-0.106224;-0.5892945;0.05403462,-0.105673;-0.556263;-0.04451368,-0.00249241;0.3984469;0.03464248,98.52485
-0;0;0,-0.0004571817;0.198818;0.02170692,-0.0004595662;0.4980692;0.04224061,0.1090252;0.3769505;-0.006190494,0.1692784;0.2480799;-0.1467676,0.1975034;0.2467969;-0.3951659,-0.1078381;0.3617029;-0.001703084,-0.1667964;0.2136034;-0.1224941,-0.20199;0.2387094;-0.368728,0.07243215;0.006809697;-0.03327479,0.08303481;-0.2912268;-0.000689324,0.07137911;-0.584199;0.06280462,0.08200193;-0.6139154;0.003370244,-0.06970301;0.001416966;-0.03923623,-0.1021886;-0.294876;-0.00524839,-0.1017707;-0.5888835;0.0544124,-0.1038607;-0.6152472;-0.01011833,-0.000569463;0.398166;0.03784271,0;0;0,-0.001288381;0.1989715;0.0202157,-0.00302805;0.4983873;0.03805219,0.10904;0.3832168;-0.006933525,0.1659982;0.2725899;-0.1635141,0.2092363;0.2615021;-0.4094968,-0.1098801;0.364035;-0.006390445,-0.1564444;0.2660418;-0.1744056,-0.1951644;0.2695599;-0.4213639,0.07266852;0.00746441;-0.03261239,0.08283861;-0.2907349;-0.001406826,0.07052726;-0.5839619;0.06077298,0.08218049;-0.6153671;0.003874931,-0.06904314;0.0006729843;-0.04040535,-0.104887;-0.2949117;-0.003731839,-0.106224;-0.5892945;0.05403462,-0.105673;-0.556263;-0.04451368,-0.00249241;0.3984469;0.03464248,98.54767
-0;0;0,-0.000462015;0.198811;0.02177062,-0.0006014868;0.4980503;0.04248467,0.1088139;0.3767252;-0.006240886,0.168701;0.2329335;-0.1316901,0.1960581;0.2518068;-0.379471,-0.1078367;0.361644;-0.001722556,-0.1668175;0.2132978;-0.1221994,-0.2032601;0.2415108;-0.3679146,0.07246303;0.006796139;-0.03321026,0.08311646;-0.2912461;-0.0006937832,0.07133567;-0.5842744;0.06251754,0.08225756;-0.6132605;0.002169404,-0.06966157;0.001439023;-0.03930895,-0.1021061;-0.2948513;-0.005258918,-0.1017549;-0.5887731;0.0548231,-0.103232;-0.6145767;-0.01038145,-0.0006519556;0.3981505;0.03801046,0;0;0,-0.001299454;0.1989712;0.02021828,-0.003038885;0.4983872;0.03805044,0.1089253;0.3833679;-0.007260434,0.1659119;0.271473;-0.1629269,0.1917492;0.2952585;-0.410448,-0.1098426;0.3642944;-0.006737303,-0.1563088;0.2669559;-0.1751597,-0.1965406;0.2678063;-0.4218998,0.07262968;0.007488446;-0.0326933,0.08275396;-0.290704;-0.001408104,0.07066005;-0.5840618;0.06019491,0.08196726;-0.6152931;0.002979349,-0.06908118;0.0006821503;-0.0403401,-0.1049773;-0.2949081;-0.003763083,-0.1063779;-0.589234;0.05429146,-0.1056987;-0.5562111;-0.04425455,-0.002505212;0.3984467;0.03464258,98.56967
-0;0;0,-0.000462015;0.198811;0.02177062,-0.0006014868;0.4980503;0.04248467,0.1088139;0.3767252;-0.006240886,0.168701;0.2329335;-0.1316901,0.1960581;0.2518068;-0.379471,-0.1078367;0.361644;-0.001722556,-0.1668175;0.2132978;-0.1221994,-0.2032601;0.2415108;-0.3679146,0.07246303;0.006796139;-0.03321026,0.08311646;-0.2912461;-0.0006937832,0.07133567;-0.5842744;0.06251754,0.08225756;-0.6132605;0.002169404,-0.06966157;0.001439023;-0.03930895,-0.1021061;-0.2948513;-0.005258918,-0.1017549;-0.5887731;0.0548231,-0.103232;-0.6145767;-0.01038145,-0.0006519556;0.3981505;0.03801046,0;0;0,-0.001299454;0.1989712;0.02021828,-0.003038885;0.4983872;0.03805044,0.1089253;0.3833679;-0.007260434,0.1659119;0.271473;-0.1629269,0.1917492;0.2952585;-0.410448,-0.1098426;0.3642944;-0.006737303,-0.1563088;0.2669559;-0.1751597,-0.1965406;0.2678063;-0.4218998,0.07262968;0.007488446;-0.0326933,0.08275396;-0.290704;-0.001408104,0.07066005;-0.5840618;0.06019491,0.08196726;-0.6152931;0.002979349,-0.06908118;0.0006821503;-0.0403401,-0.1049773;-0.2949081;-0.003763083,-0.1063779;-0.589234;0.05429146,-0.1056987;-0.5562111;-0.04425455,-0.002505212;0.3984467;0.03464258,98.58131
-0;0;0,-0.0002738779;0.1987895;0.02196993,-0.0002988966;0.498024;0.04274707,0.1089002;0.3764113;-0.006273232,0.1688683;0.2261856;-0.1239,0.1926335;0.2619878;-0.3701791,-0.1075666;0.3616503;-0.001525406,-0.1687559;0.2379328;-0.146266,-0.199706;0.2793778;-0.3908563,0.07249298;0.006821186;-0.03313969,0.08336876;-0.2911796;-0.0003184304,0.07159697;-0.5842025;0.06291933,0.08216486;-0.6128219;0.002031591,-0.06966856;0.001408981;-0.03929766,-0.1017986;-0.2948642;-0.004803155,-0.101541;-0.5888587;0.05492268,-0.1024582;-0.6149293;-0.009980582,-0.0003923213;0.3981245;0.03826542,0;0;0,-0.001299454;0.1989712;0.02021828,-0.003038885;0.4983872;0.03805044,0.1089253;0.3833679;-0.007260434,0.1659119;0.271473;-0.1629269,0.1917492;0.2952585;-0.410448,-0.1098426;0.3642944;-0.006737303,-0.1563088;0.2669559;-0.1751597,-0.1965406;0.2678063;-0.4218998,0.07262968;0.007488446;-0.0326933,0.08275396;-0.290704;-0.001408104,0.07066005;-0.5840618;0.06019491,0.08196726;-0.6152931;0.002979349,-0.06908118;0.0006821503;-0.0403401,-0.1049773;-0.2949081;-0.003763083,-0.1063779;-0.589234;0.05429146,-0.1056987;-0.5562111;-0.04425455,-0.002505212;0.3984467;0.03464258,98.60358
-0;0;0,-0.0002431773;0.1987842;0.02201802,-0.0001938822;0.4980161;0.04283411,0.1087629;0.3761334;-0.006587263,0.1712881;0.246265;-0.1452409,0.1924541;0.2620828;-0.3938406,-0.1074434;0.361607;-0.001553901,-0.168877;0.2321693;-0.1410953,-0.2012824;0.2755494;-0.385161,0.0724637;0.00683611;-0.0332006,0.08339123;-0.291155;-0.000308536,0.07161909;-0.5841726;0.06295396,0.08214744;-0.6130166;0.002350546,-0.0696937;0.001395874;-0.03925354,-0.1018538;-0.2948684;-0.004711084,-0.1016119;-0.5888826;0.0549181,-0.1024432;-0.6152122;-0.009681419,-0.0003180942;0.3981174;0.03833525,0;0;0,-0.001302821;0.1989711;0.02021895,-0.003045271;0.4983872;0.038049,0.108775;0.3832599;-0.007605486,0.1673799;0.2738943;-0.1644642,0.1894502;0.3023976;-0.4118515,-0.1098118;0.3644966;-0.006998241,-0.1562028;0.2668617;-0.1752697,-0.1959982;0.2691441;-0.4220715,0.07263193;0.007492315;-0.03268742,0.08277678;-0.2907058;-0.001463331,0.07065906;-0.5840471;0.06021406,0.08189566;-0.6150535;0.002666689,-0.06908125;0.000677508;-0.04034007,-0.1049633;-0.2949151;-0.003768008,-0.1063877;-0.5892446;0.05426767,-0.107215;-0.6167022;-0.008974984,-0.002510802;0.3984467;0.03464175,98.6256
-0;0;0,-0.0002431773;0.1987842;0.02201802,-0.0001938822;0.4980161;0.04283411,0.1087629;0.3761334;-0.006587263,0.1712881;0.246265;-0.1452409,0.1924541;0.2620828;-0.3938406,-0.1074434;0.361607;-0.001553901,-0.168877;0.2321693;-0.1410953,-0.2012824;0.2755494;-0.385161,0.0724637;0.00683611;-0.0332006,0.08339123;-0.291155;-0.000308536,0.07161909;-0.5841726;0.06295396,0.08214744;-0.6130166;0.002350546,-0.0696937;0.001395874;-0.03925354,-0.1018538;-0.2948684;-0.004711084,-0.1016119;-0.5888826;0.0549181,-0.1024432;-0.6152122;-0.009681419,-0.0003180942;0.3981174;0.03833525,0;0;0,-0.001302821;0.1989711;0.02021895,-0.003045271;0.4983872;0.038049,0.108775;0.3832599;-0.007605486,0.1673799;0.2738943;-0.1644642,0.1894502;0.3023976;-0.4118515,-0.1098118;0.3644966;-0.006998241,-0.1562028;0.2668617;-0.1752697,-0.1959982;0.2691441;-0.4220715,0.07263193;0.007492315;-0.03268742,0.08277678;-0.2907058;-0.001463331,0.07065906;-0.5840471;0.06021406,0.08189566;-0.6150535;0.002666689,-0.06908125;0.000677508;-0.04034007,-0.1049633;-0.2949151;-0.003768008,-0.1063877;-0.5892446;0.05426767,-0.107215;-0.6167022;-0.008974984,-0.002510802;0.3984467;0.03464175,98.6371
-0;0;0,-0.0001744571;0.1987788;0.02206746,0.0001312038;0.4980068;0.04294162,0.1087944;0.3759959;-0.006893065,0.1566934;0.2186386;-0.1206664,0.1945689;0.2713075;-0.3621026,-0.1071794;0.361595;-0.00159828,-0.1687862;0.2320085;-0.140925,-0.2015956;0.2785931;-0.3843453,0.0724781;0.006778418;-0.03318098,0.08347175;-0.2912112;-0.0002975836,0.07160813;-0.5842366;0.06291135,0.08237689;-0.6130193;0.002270482,-0.06968124;0.001458989;-0.03927334,-0.1018198;-0.2948066;-0.004721958,-0.101505;-0.5888184;0.05491832,-0.1023691;-0.6148162;-0.01007087,-0.0001013185;0.3981096;0.03841384,0;0;0,-0.001302821;0.1989711;0.02021895,-0.003045271;0.4983872;0.038049,0.108775;0.3832599;-0.007605486,0.1673799;0.2738943;-0.1644642,0.1894502;0.3023976;-0.4118515,-0.1098118;0.3644966;-0.006998241,-0.1562028;0.2668617;-0.1752697,-0.1959982;0.2691441;-0.4220715,0.07263193;0.007492315;-0.03268742,0.08277678;-0.2907058;-0.001463331,0.07065906;-0.5840471;0.06021406,0.08189566;-0.6150535;0.002666689,-0.06908125;0.000677508;-0.04034007,-0.1049633;-0.2949151;-0.003768008,-0.1063877;-0.5892446;0.05426767,-0.107215;-0.6167022;-0.008974984,-0.002510802;0.3984467;0.03464175,98.659
-0;0;0,-0.0001744571;0.1987788;0.02206746,0.0001312038;0.4980068;0.04294162,0.1087944;0.3759959;-0.006893065,0.1566934;0.2186386;-0.1206664,0.1945689;0.2713075;-0.3621026,-0.1071794;0.361595;-0.00159828,-0.1687862;0.2320085;-0.140925,-0.2015956;0.2785931;-0.3843453,0.0724781;0.006778418;-0.03318098,0.08347175;-0.2912112;-0.0002975836,0.07160813;-0.5842366;0.06291135,0.08237689;-0.6130193;0.002270482,-0.06968124;0.001458989;-0.03927334,-0.1018198;-0.2948066;-0.004721958,-0.101505;-0.5888184;0.05491832,-0.1023691;-0.6148162;-0.01007087,-0.0001013185;0.3981096;0.03841384,0;0;0,-0.001284034;0.1989715;0.02021612,-0.002960228;0.4983909;0.03799448,0.1086545;0.382983;-0.00800515,0.1677498;0.2753019;-0.1658422,0.1879769;0.3096699;-0.4126411,-0.1096796;0.3644834;-0.007205665,-0.1560591;0.2665952;-0.1753332,-0.1959483;0.2738778;-0.4220228,0.07263303;0.00750705;-0.03268161,0.08280046;-0.2906996;-0.001546122,0.07077565;-0.583997;0.06035749,0.08200171;-0.614844;0.00258429,-0.06907741;0.0006605163;-0.04034694,-0.1049642;-0.294935;-0.003803726,-0.1063336;-0.5892868;0.05412019,-0.107948;-0.6158787;-0.01015323,-0.002452187;0.3984494;0.03461044,98.6707
-0;0;0,-0.0001744571;0.1987788;0.02206746,0.0001312038;0.4980068;0.04294162,0.1087944;0.3759959;-0.006893065,0.1566934;0.2186386;-0.1206664,0.1945689;0.2713075;-0.3621026,-0.1071794;0.361595;-0.00159828,-0.1687862;0.2320085;-0.140925,-0.2015956;0.2785931;-0.3843453,0.0724781;0.006778418;-0.03318098,0.08347175;-0.2912112;-0.0002975836,0.07160813;-0.5842366;0.06291135,0.08237689;-0.6130193;0.002270482,-0.06968124;0.001458989;-0.03927334,-0.1018198;-0.2948066;-0.004721958,-0.101505;-0.5888184;0.05491832,-0.1023691;-0.6148162;-0.01007087,-0.0001013185;0.3981096;0.03841384,0;0;0,-0.001284034;0.1989715;0.02021612,-0.002960228;0.4983909;0.03799448,0.1086545;0.382983;-0.00800515,0.1677498;0.2753019;-0.1658422,0.1879769;0.3096699;-0.4126411,-0.1096796;0.3644834;-0.007205665,-0.1560591;0.2665952;-0.1753332,-0.1959483;0.2738778;-0.4220228,0.07263303;0.00750705;-0.03268161,0.08280046;-0.2906996;-0.001546122,0.07077565;-0.583997;0.06035749,0.08200171;-0.614844;0.00258429,-0.06907741;0.0006605163;-0.04034694,-0.1049642;-0.294935;-0.003803726,-0.1063336;-0.5892868;0.05412019,-0.107948;-0.6158787;-0.01015323,-0.002452187;0.3984494;0.03461044,98.68159
-0;0;0,-0.0001111059;0.1987762;0.02209066,0.0003392999;0.4980041;0.0429629,0.10853;0.3769842;-0.008333888,0.1666706;0.2322443;-0.1335139,0.1931143;0.2723217;-0.3788596,-0.1069986;0.3615656;-0.001607407,-0.1689336;0.2319889;-0.1407977,-0.2020886;0.2808452;-0.3837253,0.07248584;0.006757823;-0.03316825,0.08349717;-0.2912473;-0.0004314221,0.07122757;-0.5841215;0.06339793,0.08238907;-0.6128787;0.002795041,-0.06966066;0.001485232;-0.03930885,-0.1018115;-0.2947728;-0.004704218,-0.1012924;-0.5887517;0.05509681,-0.1025428;-0.6149375;-0.009665519,5.78685E-05;0.3981069;0.0384381,0;0;0,-0.001284034;0.1989715;0.02021612,-0.002960228;0.4983909;0.03799448,0.1086545;0.382983;-0.00800515,0.1677498;0.2753019;-0.1658422,0.1879769;0.3096699;-0.4126411,-0.1096796;0.3644834;-0.007205665,-0.1560591;0.2665952;-0.1753332,-0.1959483;0.2738778;-0.4220228,0.07263303;0.00750705;-0.03268161,0.08280046;-0.2906996;-0.001546122,0.07077565;-0.583997;0.06035749,0.08200171;-0.614844;0.00258429,-0.06907741;0.0006605163;-0.04034694,-0.1049642;-0.294935;-0.003803726,-0.1063336;-0.5892868;0.05412019,-0.107948;-0.6158787;-0.01015323,-0.002452187;0.3984494;0.03461044,98.70397
-0;0;0,-0.0001003711;0.1987728;0.02212119,0.0003227358;0.4979987;0.04302341,0.1084121;0.3779419;-0.008977849,0.1737246;0.2535052;-0.1512797,0.1910239;0.2701629;-0.4001235,-0.1069012;0.3614992;-0.001760833,-0.1696221;0.2322418;-0.140896,-0.2049526;0.285864;-0.3825081,0.07246102;0.006835626;-0.03320654,0.08352288;-0.2911842;-0.0006216727,0.07135732;-0.5840425;0.06330037,0.08282483;-0.6132053;0.003285728,-0.06966294;0.001444458;-0.03930634,-0.1017872;-0.2948121;-0.004664019,-0.1014738;-0.5888073;0.05505798,-0.1025504;-0.6152054;-0.009456921,5.811891E-05;0.398102;0.03848767,0;0;0,-0.001355874;0.1989737;0.02018961,-0.003072828;0.4983943;0.03794613,0.1084854;0.3830786;-0.008248784,0.168009;0.2760432;-0.1663638,0.1943453;0.3098623;-0.4126617,-0.1097677;0.3646191;-0.007400367,-0.1562203;0.2667379;-0.1755118,-0.1946166;0.2899795;-0.4214499,0.07262754;0.007529569;-0.03268861,0.08270407;-0.290687;-0.001618681,0.07052964;-0.5840575;0.05990856,0.08184849;-0.6138866;0.0007546395,-0.06906653;0.0006318796;-0.04036601,-0.1052666;-0.2949542;-0.004055217,-0.106594;-0.5892896;0.05395235,-0.1082195;-0.6159115;-0.01028505,-0.002557298;0.3984527;0.03456654,98.7258
-0;0;0,-0.0001003711;0.1987728;0.02212119,0.0003227358;0.4979987;0.04302341,0.1084121;0.3779419;-0.008977849,0.1737246;0.2535052;-0.1512797,0.1910239;0.2701629;-0.4001235,-0.1069012;0.3614992;-0.001760833,-0.1696221;0.2322418;-0.140896,-0.2049526;0.285864;-0.3825081,0.07246102;0.006835626;-0.03320654,0.08352288;-0.2911842;-0.0006216727,0.07135732;-0.5840425;0.06330037,0.08282483;-0.6132053;0.003285728,-0.06966294;0.001444458;-0.03930634,-0.1017872;-0.2948121;-0.004664019,-0.1014738;-0.5888073;0.05505798,-0.1025504;-0.6152054;-0.009456921,5.811891E-05;0.398102;0.03848767,0;0;0,-0.001355874;0.1989737;0.02018961,-0.003072828;0.4983943;0.03794613,0.1084854;0.3830786;-0.008248784,0.168009;0.2760432;-0.1663638,0.1943453;0.3098623;-0.4126617,-0.1097677;0.3646191;-0.007400367,-0.1562203;0.2667379;-0.1755118,-0.1946166;0.2899795;-0.4214499,0.07262754;0.007529569;-0.03268861,0.08270407;-0.290687;-0.001618681,0.07052964;-0.5840575;0.05990856,0.08184849;-0.6138866;0.0007546395,-0.06906653;0.0006318796;-0.04036601,-0.1052666;-0.2949542;-0.004055217,-0.106594;-0.5892896;0.05395235,-0.1082195;-0.6159115;-0.01028505,-0.002557298;0.3984527;0.03456654,98.73751
-0;0;0,-2.188105E-05;0.1987603;0.02223416,0.0004421584;0.4979801;0.04321768,0.1083285;0.3773993;-0.009023208,0.1678883;0.219571;-0.1164609,0.1892776;0.2801788;-0.358058,-0.1067267;0.361438;-0.001707643,-0.1699993;0.2322349;-0.1406434,-0.2059796;0.2875572;-0.3817759,0.0724836;0.006891458;-0.03314568,0.08374687;-0.2911551;-0.0008746982,0.07165975;-0.5839354;0.06341822,0.08293847;-0.6132728;0.003598839,-0.06966668;0.001378524;-0.03930208,-0.1016002;-0.2948599;-0.004330199,-0.1013007;-0.5889025;0.05515805,-0.1028829;-0.6159183;-0.008607682,0.0001711308;0.3980841;0.03866461,0;0;0,-0.001355874;0.1989737;0.02018961,-0.003072828;0.4983943;0.03794613,0.1084854;0.3830786;-0.008248784,0.168009;0.2760432;-0.1663638,0.1943453;0.3098623;-0.4126617,-0.1097677;0.3646191;-0.007400367,-0.1562203;0.2667379;-0.1755118,-0.1946166;0.2899795;-0.4214499,0.07262754;0.007529569;-0.03268861,0.08270407;-0.290687;-0.001618681,0.07052964;-0.5840575;0.05990856,0.08184849;-0.6138866;0.0007546395,-0.06906653;0.0006318796;-0.04036601,-0.1052666;-0.2949542;-0.004055217,-0.106594;-0.5892896;0.05395235,-0.1082195;-0.6159115;-0.01028505,-0.002557298;0.3984527;0.03456654,98.7596
-0;0;0,-2.188105E-05;0.1987603;0.02223416,0.0004421584;0.4979801;0.04321768,0.1083285;0.3773993;-0.009023208,0.1678883;0.219571;-0.1164609,0.1892776;0.2801788;-0.358058,-0.1067267;0.361438;-0.001707643,-0.1699993;0.2322349;-0.1406434,-0.2059796;0.2875572;-0.3817759,0.0724836;0.006891458;-0.03314568,0.08374687;-0.2911551;-0.0008746982,0.07165975;-0.5839354;0.06341822,0.08293847;-0.6132728;0.003598839,-0.06966668;0.001378524;-0.03930208,-0.1016002;-0.2948599;-0.004330199,-0.1013007;-0.5889025;0.05515805,-0.1028829;-0.6159183;-0.008607682,0.0001711308;0.3980841;0.03866461,0;0;0,-0.001328369;0.198971;0.02021828,-0.003003805;0.4983898;0.03800786,0.1083999;0.3830725;-0.008561052,0.1687159;0.2767433;-0.1668522,0.1942689;0.3113527;-0.4131229,-0.1096328;0.3646505;-0.007577699,-0.156542;0.2672631;-0.175849,-0.2037296;0.2814278;-0.4209463,0.07265569;0.00756552;-0.0326177,0.0827675;-0.2906843;-0.001879472,0.0705668;-0.5839992;0.0599063,0.08163533;-0.6138947;0.0007946193,-0.06905407;0.0006134594;-0.0403876,-0.1052612;-0.2949805;-0.004148636,-0.1065636;-0.5892992;0.05394454,-0.1076714;-0.6169629;-0.009040516,-0.002501302;0.3984485;0.03461875,98.77094
-0;0;0,-2.188105E-05;0.1987603;0.02223416,0.0004421584;0.4979801;0.04321768,0.1083285;0.3773993;-0.009023208,0.1678883;0.219571;-0.1164609,0.1892776;0.2801788;-0.358058,-0.1067267;0.361438;-0.001707643,-0.1699993;0.2322349;-0.1406434,-0.2059796;0.2875572;-0.3817759,0.0724836;0.006891458;-0.03314568,0.08374687;-0.2911551;-0.0008746982,0.07165975;-0.5839354;0.06341822,0.08293847;-0.6132728;0.003598839,-0.06966668;0.001378524;-0.03930208,-0.1016002;-0.2948599;-0.004330199,-0.1013007;-0.5889025;0.05515805,-0.1028829;-0.6159183;-0.008607682,0.0001711308;0.3980841;0.03866461,0;0;0,-0.001328369;0.198971;0.02021828,-0.003003805;0.4983898;0.03800786,0.1083999;0.3830725;-0.008561052,0.1687159;0.2767433;-0.1668522,0.1942689;0.3113527;-0.4131229,-0.1096328;0.3646505;-0.007577699,-0.156542;0.2672631;-0.175849,-0.2037296;0.2814278;-0.4209463,0.07265569;0.00756552;-0.0326177,0.0827675;-0.2906843;-0.001879472,0.0705668;-0.5839992;0.0599063,0.08163533;-0.6138947;0.0007946193,-0.06905407;0.0006134594;-0.0403876,-0.1052612;-0.2949805;-0.004148636,-0.1065636;-0.5892992;0.05394454,-0.1076714;-0.6169629;-0.009040516,-0.002501302;0.3984485;0.03461875,98.78201
-0;0;0,2.931194E-06;0.198752;0.02230843,0.0004791641;0.4979679;0.04334319,0.1080635;0.3782431;-0.009939596,0.1751658;0.2530969;-0.150779,0.1887622;0.2816983;-0.3987651,-0.106636;0.361365;-0.001684736,-0.170833;0.2324306;-0.1404459,-0.205095;0.2926548;-0.3806524,0.07249255;0.006874422;-0.03312965,0.08375764;-0.2911654;-0.000796888,0.0717402;-0.5839106;0.06366847,0.08295169;-0.6129894;0.003495026,-0.06965442;0.001392556;-0.0393233,-0.1016406;-0.2948278;-0.004246045,-0.1013183;-0.5888633;0.05527706,-0.1030178;-0.6158521;-0.008518212,0.0002059917;0.3980725;0.03877939,0;0;0,-0.001328369;0.198971;0.02021828,-0.003003805;0.4983898;0.03800786,0.1083999;0.3830725;-0.008561052,0.1687159;0.2767433;-0.1668522,0.1942689;0.3113527;-0.4131229,-0.1096328;0.3646505;-0.007577699,-0.156542;0.2672631;-0.175849,-0.2037296;0.2814278;-0.4209463,0.07265569;0.00756552;-0.0326177,0.0827675;-0.2906843;-0.001879472,0.0705668;-0.5839992;0.0599063,0.08163533;-0.6138947;0.0007946193,-0.06905407;0.0006134594;-0.0403876,-0.1052612;-0.2949805;-0.004148636,-0.1065636;-0.5892992;0.05394454,-0.1076714;-0.6169629;-0.009040516,-0.002501302;0.3984485;0.03461875,98.80439
-0;0;0,-0.0001256467;0.1987541;0.02228888,-4.821093E-06;0.4979752;0.04324896,0.1077426;0.3778823;-0.009810172,0.175652;0.252363;-0.1499287,0.1873174;0.2893071;-0.3969086,-0.1069445;0.3614771;-0.001911163,-0.1715271;0.232606;-0.1405523,-0.2068742;0.2940766;-0.3802853,0.07247595;0.006776989;-0.03318599,0.08397713;-0.2912605;-0.0009155124,0.071908;-0.583968;0.06371159,0.08324806;-0.6123417;0.002646327,-0.06966651;0.001464711;-0.03929924,-0.1015215;-0.2947716;-0.004237376,-0.1012014;-0.5888122;0.05526078,-0.1024657;-0.6162896;-0.007950388,-0.0001305918;0.3980777;0.03872346,0;0;0,-0.001307274;0.1989724;0.02020563,-0.002917377;0.4983951;0.03793162,0.1083879;0.3830053;-0.008770507,0.1695593;0.2767785;-0.166802,0.1770273;0.3399358;-0.4085774,-0.1095524;0.3647014;-0.007714231,-0.1596573;0.2647204;-0.1735253,-0.1907652;0.3056351;-0.4181848,0.07267668;0.007572491;-0.03256928,0.08284628;-0.2906839;-0.001914395,0.07073698;-0.5840636;0.0595813,0.08151951;-0.6152679;0.002226245,-0.0689843;0.000649225;-0.04050609,-0.105191;-0.2949404;-0.004230868,-0.1064057;-0.5892365;0.05397821,-0.1083078;-0.6162328;-0.009802233,-0.002440729;0.3984527;0.03456978,98.82642
-0;0;0,-0.0001256467;0.1987541;0.02228888,-4.821093E-06;0.4979752;0.04324896,0.1077426;0.3778823;-0.009810172,0.175652;0.252363;-0.1499287,0.1873174;0.2893071;-0.3969086,-0.1069445;0.3614771;-0.001911163,-0.1715271;0.232606;-0.1405523,-0.2068742;0.2940766;-0.3802853,0.07247595;0.006776989;-0.03318599,0.08397713;-0.2912605;-0.0009155124,0.071908;-0.583968;0.06371159,0.08324806;-0.6123417;0.002646327,-0.06966651;0.001464711;-0.03929924,-0.1015215;-0.2947716;-0.004237376,-0.1012014;-0.5888122;0.05526078,-0.1024657;-0.6162896;-0.007950388,-0.0001305918;0.3980777;0.03872346,0;0;0,-0.001307274;0.1989724;0.02020563,-0.002917377;0.4983951;0.03793162,0.1083879;0.3830053;-0.008770507,0.1695593;0.2767785;-0.166802,0.1770273;0.3399358;-0.4085774,-0.1095524;0.3647014;-0.007714231,-0.1596573;0.2647204;-0.1735253,-0.1907652;0.3056351;-0.4181848,0.07267668;0.007572491;-0.03256928,0.08284628;-0.2906839;-0.001914395,0.07073698;-0.5840636;0.0595813,0.08151951;-0.6152679;0.002226245,-0.0689843;0.000649225;-0.04050609,-0.105191;-0.2949404;-0.004230868,-0.1064057;-0.5892365;0.05397821,-0.1083078;-0.6162328;-0.009802233,-0.002440729;0.3984527;0.03456978,98.83846
-0;0;0,-9.624238E-05;0.1987517;0.02230994,4.765934E-05;0.4979727;0.04327017,0.1075892;0.3770897;-0.009893648,0.1765592;0.2540382;-0.1516733,0.1863025;0.2948417;-0.3981284,-0.1068385;0.3613551;-0.00193597,-0.1716498;0.2317812;-0.1398131,-0.2084785;0.2950791;-0.3788466,0.07238284;0.006737155;-0.03339664,0.08394852;-0.2912781;-0.0009444021,0.07249722;-0.5842133;0.06275691,0.08314814;-0.6135563;0.002829835,-0.06969574;0.001480514;-0.03924681,-0.1016324;-0.2947584;-0.00428145,-0.1012912;-0.588702;0.05569366,-0.1020339;-0.6164207;-0.007228866,-8.432449E-05;0.398075;0.03874809,0;0;0,-0.001307274;0.1989724;0.02020563,-0.002917377;0.4983951;0.03793162,0.1083879;0.3830053;-0.008770507,0.1695593;0.2767785;-0.166802,0.1770273;0.3399358;-0.4085774,-0.1095524;0.3647014;-0.007714231,-0.1596573;0.2647204;-0.1735253,-0.1907652;0.3056351;-0.4181848,0.07267668;0.007572491;-0.03256928,0.08284628;-0.2906839;-0.001914395,0.07073698;-0.5840636;0.0595813,0.08151951;-0.6152679;0.002226245,-0.0689843;0.000649225;-0.04050609,-0.105191;-0.2949404;-0.004230868,-0.1064057;-0.5892365;0.05397821,-0.1083078;-0.6162328;-0.009802233,-0.002440729;0.3984527;0.03456978,98.86078
-0;0;0,-9.624238E-05;0.1987517;0.02230994,4.765934E-05;0.4979727;0.04327017,0.1075892;0.3770897;-0.009893648,0.1765592;0.2540382;-0.1516733,0.1863025;0.2948417;-0.3981284,-0.1068385;0.3613551;-0.00193597,-0.1716498;0.2317812;-0.1398131,-0.2084785;0.2950791;-0.3788466,0.07238284;0.006737155;-0.03339664,0.08394852;-0.2912781;-0.0009444021,0.07249722;-0.5842133;0.06275691,0.08314814;-0.6135563;0.002829835,-0.06969574;0.001480514;-0.03924681,-0.1016324;-0.2947584;-0.00428145,-0.1012912;-0.588702;0.05569366,-0.1020339;-0.6164207;-0.007228866,-8.432449E-05;0.398075;0.03874809,0;0;0,-0.0013402;0.1989721;0.02020694,-0.003079214;0.4983939;0.03793383,0.1080623;0.3829689;-0.009327892,0.1636548;0.2692225;-0.1641544,0.1870364;0.3408957;-0.4025159,-0.1096003;0.3647172;-0.007855393,-0.1621974;0.2640134;-0.1724527,-0.1888948;0.3082848;-0.4170489,0.07262934;0.007638187;-0.0326594,0.08275782;-0.2906282;-0.002088003,0.07062036;-0.5839609;0.05962577,0.08254792;-0.6164076;0.004306033,-0.06902137;0.0006310085;-0.0404432,-0.1052745;-0.294963;-0.004250612,-0.106475;-0.5892761;0.05387337,-0.1088615;-0.6160507;-0.01015757,-0.002540499;0.3984518;0.03457322,98.87216
-0;0;0,-9.624238E-05;0.1987517;0.02230994,4.765934E-05;0.4979727;0.04327017,0.1075892;0.3770897;-0.009893648,0.1765592;0.2540382;-0.1516733,0.1863025;0.2948417;-0.3981284,-0.1068385;0.3613551;-0.00193597,-0.1716498;0.2317812;-0.1398131,-0.2084785;0.2950791;-0.3788466,0.07238284;0.006737155;-0.03339664,0.08394852;-0.2912781;-0.0009444021,0.07249722;-0.5842133;0.06275691,0.08314814;-0.6135563;0.002829835,-0.06969574;0.001480514;-0.03924681,-0.1016324;-0.2947584;-0.00428145,-0.1012912;-0.588702;0.05569366,-0.1020339;-0.6164207;-0.007228866,-8.432449E-05;0.398075;0.03874809,0;0;0,-0.0013402;0.1989721;0.02020694,-0.003079214;0.4983939;0.03793383,0.1080623;0.3829689;-0.009327892,0.1636548;0.2692225;-0.1641544,0.1870364;0.3408957;-0.4025159,-0.1096003;0.3647172;-0.007855393,-0.1621974;0.2640134;-0.1724527,-0.1888948;0.3082848;-0.4170489,0.07262934;0.007638187;-0.0326594,0.08275782;-0.2906282;-0.002088003,0.07062036;-0.5839609;0.05962577,0.08254792;-0.6164076;0.004306033,-0.06902137;0.0006310085;-0.0404432,-0.1052745;-0.294963;-0.004250612,-0.106475;-0.5892761;0.05387337,-0.1088615;-0.6160507;-0.01015757,-0.002540499;0.3984518;0.03457322,98.88348
-0;0;0,-5.553353E-05;0.1987554;0.02227721,0.000221407;0.4979846;0.0431123,0.1075517;0.3761268;-0.009918973,0.1771238;0.2534088;-0.1516936,0.1878519;0.3064165;-0.3957737,-0.1066992;0.3613276;-0.002057418,-0.174423;0.2343342;-0.140932,-0.2091104;0.3035969;-0.3786282,0.07237425;0.006734105;-0.03341586,0.08395875;-0.2912828;-0.0009852424,0.07247023;-0.5842016;0.06278452,0.08319387;-0.6135496;0.00287715,-0.06970704;0.001483811;-0.03922662,-0.1016527;-0.2947586;-0.004299115,-0.1012859;-0.5887017;0.05567858,-0.1022229;-0.6156895;-0.008133665,3.604918E-05;0.3980847;0.03864263,0;0;0,-0.0013402;0.1989721;0.02020694,-0.003079214;0.4983939;0.03793383,0.1080623;0.3829689;-0.009327892,0.1636548;0.2692225;-0.1641544,0.1870364;0.3408957;-0.4025159,-0.1096003;0.3647172;-0.007855393,-0.1621974;0.2640134;-0.1724527,-0.1888948;0.3082848;-0.4170489,0.07262934;0.007638187;-0.0326594,0.08275782;-0.2906282;-0.002088003,0.07062036;-0.5839609;0.05962577,0.08254792;-0.6164076;0.004306033,-0.06902137;0.0006310085;-0.0404432,-0.1052745;-0.294963;-0.004250612,-0.106475;-0.5892761;0.05387337,-0.1088615;-0.6160507;-0.01015757,-0.002540499;0.3984518;0.03457322,98.90564
-0;0;0,-3.763468E-05;0.1987521;0.02230683,0.0002294048;0.4979799;0.04315982,0.1074046;0.3750909;-0.009763855,0.1780562;0.2543464;-0.1526943,0.1892906;0.3100391;-0.396153,-0.1066319;0.3612367;-0.002059612,-0.176623;0.236486;-0.1418398,-0.2108406;0.3070914;-0.3792087,0.0723616;0.006667784;-0.03345652,0.08399647;-0.2913137;-0.0007205941,0.07227695;-0.5842304;0.06301714,0.08349142;-0.6134942;0.003088102,-0.06972794;0.001538109;-0.03918735,-0.1016085;-0.2947083;-0.004234228,-0.1012852;-0.5886531;0.05573513,-0.1021352;-0.6157946;-0.007892441,5.531458E-05;0.3980801;0.03868847,0;0;0,-0.001302842;0.1989695;0.02023499,-0.002861636;0.498385;0.03809441,0.1078063;0.382212;-0.009941291,0.1643971;0.2701698;-0.1656463,0.1882411;0.3401466;-0.4044657,-0.1094099;0.3647128;-0.007887557,-0.1629003;0.2638288;-0.1720862,-0.1870862;0.3113856;-0.4163266,0.07263954;0.007646638;-0.03263474,0.0828729;-0.290666;-0.002554061,0.07070261;-0.5839113;0.05956748,0.08211955;-0.6164173;0.00422854,-0.06899891;0.0006106679;-0.04048182,-0.105166;-0.294993;-0.004282672,-0.1064111;-0.5892982;0.0538804,-0.1089244;-0.6164546;-0.009685043,-0.002402295;0.3984445;0.03467457,98.92809
-0;0;0,-3.763468E-05;0.1987521;0.02230683,0.0002294048;0.4979799;0.04315982,0.1074046;0.3750909;-0.009763855,0.1780562;0.2543464;-0.1526943,0.1892906;0.3100391;-0.396153,-0.1066319;0.3612367;-0.002059612,-0.176623;0.236486;-0.1418398,-0.2108406;0.3070914;-0.3792087,0.0723616;0.006667784;-0.03345652,0.08399647;-0.2913137;-0.0007205941,0.07227695;-0.5842304;0.06301714,0.08349142;-0.6134942;0.003088102,-0.06972794;0.001538109;-0.03918735,-0.1016085;-0.2947083;-0.004234228,-0.1012852;-0.5886531;0.05573513,-0.1021352;-0.6157946;-0.007892441,5.531458E-05;0.3980801;0.03868847,0;0;0,-0.001302842;0.1989695;0.02023499,-0.002861636;0.498385;0.03809441,0.1078063;0.382212;-0.009941291,0.1643971;0.2701698;-0.1656463,0.1882411;0.3401466;-0.4044657,-0.1094099;0.3647128;-0.007887557,-0.1629003;0.2638288;-0.1720862,-0.1870862;0.3113856;-0.4163266,0.07263954;0.007646638;-0.03263474,0.0828729;-0.290666;-0.002554061,0.07070261;-0.5839113;0.05956748,0.08211955;-0.6164173;0.00422854,-0.06899891;0.0006106679;-0.04048182,-0.105166;-0.294993;-0.004282672,-0.1064111;-0.5892982;0.0538804,-0.1089244;-0.6164546;-0.009685043,-0.002402295;0.3984445;0.03467457,98.93985
-0;0;0,-9.214538E-05;0.1987462;0.02235922,7.820214E-06;0.4979602;0.04341945,0.1073042;0.3751986;-0.009531163,0.1783299;0.2543629;-0.1521989,0.1913301;0.3150055;-0.3943837,-0.1066473;0.3610145;-0.002057079,-0.1786987;0.2405361;-0.1445125,-0.2132363;0.31222;-0.3815116,0.07235729;0.006654141;-0.03346855,0.08401612;-0.2913253;-0.0007224493,0.07235363;-0.5842488;0.06299435,0.08346094;-0.6135846;0.003140721,-0.06974027;0.001555256;-0.03916471,-0.101662;-0.2946881;-0.004224069,-0.1012073;-0.5886459;0.0556811,-0.1030534;-0.6155311;-0.008234899,-9.756198E-05;0.3980641;0.03886332,0;0;0,-0.001302842;0.1989695;0.02023499,-0.002861636;0.498385;0.03809441,0.1078063;0.382212;-0.009941291,0.1643971;0.2701698;-0.1656463,0.1882411;0.3401466;-0.4044657,-0.1094099;0.3647128;-0.007887557,-0.1629003;0.2638288;-0.1720862,-0.1870862;0.3113856;-0.4163266,0.07263954;0.007646638;-0.03263474,0.0828729;-0.290666;-0.002554061,0.07070261;-0.5839113;0.05956748,0.08211955;-0.6164173;0.00422854,-0.06899891;0.0006106679;-0.04048182,-0.105166;-0.294993;-0.004282672,-0.1064111;-0.5892982;0.0538804,-0.1089244;-0.6164546;-0.009685043,-0.002402295;0.3984445;0.03467457,98.96217
-0;0;0,-9.214538E-05;0.1987462;0.02235922,7.820214E-06;0.4979602;0.04341945,0.1073042;0.3751986;-0.009531163,0.1783299;0.2543629;-0.1521989,0.1913301;0.3150055;-0.3943837,-0.1066473;0.3610145;-0.002057079,-0.1786987;0.2405361;-0.1445125,-0.2132363;0.31222;-0.3815116,0.07235729;0.006654141;-0.03346855,0.08401612;-0.2913253;-0.0007224493,0.07235363;-0.5842488;0.06299435,0.08346094;-0.6135846;0.003140721,-0.06974027;0.001555256;-0.03916471,-0.101662;-0.2946881;-0.004224069,-0.1012073;-0.5886459;0.0556811,-0.1030534;-0.6155311;-0.008234899,-9.756198E-05;0.3980641;0.03886332,0;0;0,-0.001290917;0.1989658;0.02027198,-0.002857094;0.4983792;0.0381653,0.1077433;0.3822446;-0.01007244,0.16521;0.2703496;-0.1655623,0.1897661;0.342946;-0.4035261,-0.1092721;0.3646193;-0.008080356,-0.1632638;0.2639129;-0.1722239,-0.1855627;0.3162732;-0.41566,0.07265218;0.007691622;-0.032596,0.08298942;-0.2906286;-0.002625698,0.07075923;-0.5838462;0.05961465,0.08225277;-0.6163895;0.004347179,-0.06897067;0.0005624829;-0.04053061,-0.1049918;-0.2950494;-0.004252471,-0.1060394;-0.5892864;0.05425792,-0.1087221;-0.6166835;-0.009007279,-0.002393219;0.3984391;0.03473466,98.97361
-0;0;0,-9.214538E-05;0.1987462;0.02235922,7.820214E-06;0.4979602;0.04341945,0.1073042;0.3751986;-0.009531163,0.1783299;0.2543629;-0.1521989,0.1913301;0.3150055;-0.3943837,-0.1066473;0.3610145;-0.002057079,-0.1786987;0.2405361;-0.1445125,-0.2132363;0.31222;-0.3815116,0.07235729;0.006654141;-0.03346855,0.08401612;-0.2913253;-0.0007224493,0.07235363;-0.5842488;0.06299435,0.08346094;-0.6135846;0.003140721,-0.06974027;0.001555256;-0.03916471,-0.101662;-0.2946881;-0.004224069,-0.1012073;-0.5886459;0.0556811,-0.1030534;-0.6155311;-0.008234899,-9.756198E-05;0.3980641;0.03886332,0;0;0,-0.001290917;0.1989658;0.02027198,-0.002857094;0.4983792;0.0381653,0.1077433;0.3822446;-0.01007244,0.16521;0.2703496;-0.1655623,0.1897661;0.342946;-0.4035261,-0.1092721;0.3646193;-0.008080356,-0.1632638;0.2639129;-0.1722239,-0.1855627;0.3162732;-0.41566,0.07265218;0.007691622;-0.032596,0.08298942;-0.2906286;-0.002625698,0.07075923;-0.5838462;0.05961465,0.08225277;-0.6163895;0.004347179,-0.06897067;0.0005624829;-0.04053061,-0.1049918;-0.2950494;-0.004252471,-0.1060394;-0.5892864;0.05425792,-0.1087221;-0.6166835;-0.009007279,-0.002393219;0.3984391;0.03473466,98.98472
-0;0;0,-1.919543E-05;0.1987415;0.0224018,0.0001698357;0.4979554;0.04345901,0.1075184;0.3752445;-0.009302389,0.1803081;0.2545047;-0.1511599,0.1958745;0.3179655;-0.3924697,-0.1065343;0.3610425;-0.002020888,-0.1836391;0.2356851;-0.1374475,-0.2199903;0.2995309;-0.3764084,0.0723448;0.006639185;-0.03349851,0.08400617;-0.2913377;-0.0007297061,0.07242051;-0.584269;0.0629649,0.0833004;-0.6136617;0.003144916,-0.06975821;0.001563497;-0.03913243,-0.1015862;-0.2946893;-0.004185889,-0.1012022;-0.5886571;0.0556707,-0.1027314;-0.615659;-0.008113097,2.335371E-05;0.3980591;0.03890873,0;0;0,-0.001290917;0.1989658;0.02027198,-0.002857094;0.4983792;0.0381653,0.1077433;0.3822446;-0.01007244,0.16521;0.2703496;-0.1655623,0.1897661;0.342946;-0.4035261,-0.1092721;0.3646193;-0.008080356,-0.1632638;0.2639129;-0.1722239,-0.1855627;0.3162732;-0.41566,0.07265218;0.007691622;-0.032596,0.08298942;-0.2906286;-0.002625698,0.07075923;-0.5838462;0.05961465,0.08225277;-0.6163895;0.004347179,-0.06897067;0.0005624829;-0.04053061,-0.1049918;-0.2950494;-0.004252471,-0.1060394;-0.5892864;0.05425792,-0.1087221;-0.6166835;-0.009007279,-0.002393219;0.3984391;0.03473466,99.00739
-0;0;0,-3.463683E-05;0.1987462;0.02235942,0.000126873;0.4979673;0.04330941,0.1075922;0.375082;-0.009092819,0.1824649;0.2527723;-0.1485002,0.1976672;0.3232629;-0.3878744,-0.1065422;0.3609982;-0.00213407,-0.1850831;0.234445;-0.1356092,-0.2248925;0.2980811;-0.3740745,0.07233684;0.00662446;-0.03351863,0.08400133;-0.2913483;-0.0007132739,0.07228294;-0.5842232;0.06321653,0.08360118;-0.6130077;0.002678141,-0.06976286;0.001574162;-0.03912371,-0.1016742;-0.2947011;-0.0044448,-0.101277;-0.5886634;0.05543866,-0.1027067;-0.6152964;-0.008790065,-6.563969E-06;0.398069;0.03880393,0;0;0,-0.001337356;0.198961;0.02031609,-0.003054289;0.4983707;0.038257,0.1076406;0.3823399;-0.009954084,0.1660584;0.2708211;-0.1653598,0.1909625;0.3461507;-0.4024363,-0.1093199;0.3645338;-0.008160744,-0.1635412;0.2642409;-0.1724817,-0.1837499;0.3242701;-0.4143249,0.07264769;0.007825216;-0.03257421,0.08311868;-0.2904857;-0.002557846,0.07092353;-0.583692;0.05974273,0.08301228;-0.6160395;0.004310463,-0.06894886;0.00046544;-0.04056892,-0.1048552;-0.2951568;-0.004261453,-0.1058706;-0.5893686;0.05437661,-0.1085487;-0.616783;-0.008867621,-0.002528382;0.3984315;0.03481037,99.02946
-0;0;0,-3.463683E-05;0.1987462;0.02235942,0.000126873;0.4979673;0.04330941,0.1075922;0.375082;-0.009092819,0.1824649;0.2527723;-0.1485002,0.1976672;0.3232629;-0.3878744,-0.1065422;0.3609982;-0.00213407,-0.1850831;0.234445;-0.1356092,-0.2248925;0.2980811;-0.3740745,0.07233684;0.00662446;-0.03351863,0.08400133;-0.2913483;-0.0007132739,0.07228294;-0.5842232;0.06321653,0.08360118;-0.6130077;0.002678141,-0.06976286;0.001574162;-0.03912371,-0.1016742;-0.2947011;-0.0044448,-0.101277;-0.5886634;0.05543866,-0.1027067;-0.6152964;-0.008790065,-6.563969E-06;0.398069;0.03880393,0;0;0,-0.001337356;0.198961;0.02031609,-0.003054289;0.4983707;0.038257,0.1076406;0.3823399;-0.009954084,0.1660584;0.2708211;-0.1653598,0.1909625;0.3461507;-0.4024363,-0.1093199;0.3645338;-0.008160744,-0.1635412;0.2642409;-0.1724817,-0.1837499;0.3242701;-0.4143249,0.07264769;0.007825216;-0.03257421,0.08311868;-0.2904857;-0.002557846,0.07092353;-0.583692;0.05974273,0.08301228;-0.6160395;0.004310463,-0.06894886;0.00046544;-0.04056892,-0.1048552;-0.2951568;-0.004261453,-0.1058706;-0.5893686;0.05437661,-0.1085487;-0.616783;-0.008867621,-0.002528382;0.3984315;0.03481037,99.0523
-0;0;0,-4.869022E-05;0.1987524;0.02230412,8.726821E-05;0.4979837;0.04310451,0.1076343;0.3749169;-0.008995038,0.1834907;0.2511688;-0.1465895,0.2017964;0.3273962;-0.3839801,-0.1065668;0.3609002;-0.002186537,-0.193526;0.2550701;-0.1479195,-0.219622;0.3237167;-0.3868895,0.07233666;0.006631919;-0.03351755,0.08401447;-0.2913508;-0.000807967,0.07230449;-0.5842147;0.06317368,0.08384426;-0.613522;0.00336412,-0.06975295;0.001575581;-0.03914133,-0.1016999;-0.2946966;-0.004468393,-0.1012902;-0.5886837;0.05529271,-0.1025948;-0.6147769;-0.009577375,-3.427444E-05;0.3980827;0.038658,0;0;0,-0.001337356;0.198961;0.02031609,-0.003054289;0.4983707;0.038257,0.1076406;0.3823399;-0.009954084,0.1660584;0.2708211;-0.1653598,0.1909625;0.3461507;-0.4024363,-0.1093199;0.3645338;-0.008160744,-0.1635412;0.2642409;-0.1724817,-0.1837499;0.3242701;-0.4143249,0.07264769;0.007825216;-0.03257421,0.08311868;-0.2904857;-0.002557846,0.07092353;-0.583692;0.05974273,0.08301228;-0.6160395;0.004310463,-0.06894886;0.00046544;-0.04056892,-0.1048552;-0.2951568;-0.004261453,-0.1058706;-0.5893686;0.05437661,-0.1085487;-0.616783;-0.008867621,-0.002528382;0.3984315;0.03481037,99.06307
-0;0;0,-4.869022E-05;0.1987524;0.02230412,8.726821E-05;0.4979837;0.04310451,0.1076343;0.3749169;-0.008995038,0.1834907;0.2511688;-0.1465895,0.2017964;0.3273962;-0.3839801,-0.1065668;0.3609002;-0.002186537,-0.193526;0.2550701;-0.1479195,-0.219622;0.3237167;-0.3868895,0.07233666;0.006631919;-0.03351755,0.08401447;-0.2913508;-0.000807967,0.07230449;-0.5842147;0.06317368,0.08384426;-0.613522;0.00336412,-0.06975295;0.001575581;-0.03914133,-0.1016999;-0.2946966;-0.004468393,-0.1012902;-0.5886837;0.05529271,-0.1025948;-0.6147769;-0.009577375,-3.427444E-05;0.3980827;0.038658,0;0;0,-0.001365451;0.198949;0.02043128,-0.003272011;0.4983577;0.03836629,0.1075858;0.3828625;-0.009834193,0.1680738;0.273714;-0.1661282,0.1924251;0.3474252;-0.4037701,-0.1094139;0.3645609;-0.008168228,-0.1642532;0.2644822;-0.1724147,-0.1829183;0.3280323;-0.4134811,0.07267371;0.007887607;-0.03250103,0.08318843;-0.290413;-0.002397561,0.0710363;-0.583595;0.06002503,0.08247412;-0.6153852;0.003637664,-0.06891108;0.000386261;-0.04063388,-0.104698;-0.2952308;-0.004166879,-0.1056961;-0.5894256;0.05455664,-0.1080716;-0.6160825;-0.009615537,-0.002660542;0.3984186;0.03492913,99.07419
-0;0;0,-4.869022E-05;0.1987524;0.02230412,8.726821E-05;0.4979837;0.04310451,0.1076343;0.3749169;-0.008995038,0.1834907;0.2511688;-0.1465895,0.2017964;0.3273962;-0.3839801,-0.1065668;0.3609002;-0.002186537,-0.193526;0.2550701;-0.1479195,-0.219622;0.3237167;-0.3868895,0.07233666;0.006631919;-0.03351755,0.08401447;-0.2913508;-0.000807967,0.07230449;-0.5842147;0.06317368,0.08384426;-0.613522;0.00336412,-0.06975295;0.001575581;-0.03914133,-0.1016999;-0.2946966;-0.004468393,-0.1012902;-0.5886837;0.05529271,-0.1025948;-0.6147769;-0.009577375,-3.427444E-05;0.3980827;0.038658,0;0;0,-0.001365451;0.198949;0.02043128,-0.003272011;0.4983577;0.03836629,0.1075858;0.3828625;-0.009834193,0.1680738;0.273714;-0.1661282,0.1924251;0.3474252;-0.4037701,-0.1094139;0.3645609;-0.008168228,-0.1642532;0.2644822;-0.1724147,-0.1829183;0.3280323;-0.4134811,0.07267371;0.007887607;-0.03250103,0.08318843;-0.290413;-0.002397561,0.0710363;-0.583595;0.06002503,0.08247412;-0.6153852;0.003637664,-0.06891108;0.000386261;-0.04063388,-0.104698;-0.2952308;-0.004166879,-0.1056961;-0.5894256;0.05455664,-0.1080716;-0.6160825;-0.009615537,-0.002660542;0.3984186;0.03492913,99.08525
-0;0;0,-2.856564E-05;0.1987428;0.02238969,8.040598E-05;0.4979661;0.04331195,0.107682;0.3747413;-0.008675583,0.1854627;0.2517164;-0.1458435,0.2071023;0.3327306;-0.3813609,-0.106435;0.3604168;-0.001924392,-0.1937347;0.2548885;-0.1476726,-0.2244159;0.3266469;-0.3851792,0.07235657;0.006615508;-0.03347779,0.0840188;-0.2913664;-0.0007546619,0.07268436;-0.5842655;0.06313297,0.0833796;-0.6132478;0.002739202,-0.06973169;0.00159565;-0.03917837,-0.1017544;-0.2946702;-0.004521083,-0.1011466;-0.5886796;0.05512869,-0.1026531;-0.6146735;-0.009853303,-2.536113E-05;0.3980675;0.03881141,0;0;0,-0.001365451;0.198949;0.02043128,-0.003272011;0.4983577;0.03836629,0.1075858;0.3828625;-0.009834193,0.1680738;0.273714;-0.1661282,0.1924251;0.3474252;-0.4037701,-0.1094139;0.3645609;-0.008168228,-0.1642532;0.2644822;-0.1724147,-0.1829183;0.3280323;-0.4134811,0.07267371;0.007887607;-0.03250103,0.08318843;-0.290413;-0.002397561,0.0710363;-0.583595;0.06002503,0.08247412;-0.6153852;0.003637664,-0.06891108;0.000386261;-0.04063388,-0.104698;-0.2952308;-0.004166879,-0.1056961;-0.5894256;0.05455664,-0.1080716;-0.6160825;-0.009615537,-0.002660542;0.3984186;0.03492913,99.09686
-0;0;0,-2.856564E-05;0.1987428;0.02238969,8.040598E-05;0.4979661;0.04331195,0.107682;0.3747413;-0.008675583,0.1854627;0.2517164;-0.1458435,0.2071023;0.3327306;-0.3813609,-0.106435;0.3604168;-0.001924392,-0.1937347;0.2548885;-0.1476726,-0.2244159;0.3266469;-0.3851792,0.07235657;0.006615508;-0.03347779,0.0840188;-0.2913664;-0.0007546619,0.07268436;-0.5842655;0.06313297,0.0833796;-0.6132478;0.002739202,-0.06973169;0.00159565;-0.03917837,-0.1017544;-0.2946702;-0.004521083,-0.1011466;-0.5886796;0.05512869,-0.1026531;-0.6146735;-0.009853303,-2.536113E-05;0.3980675;0.03881141,0;0;0,-0.001384701;0.1989375;0.02054136,-0.003367361;0.4983385;0.03859738,0.1074916;0.3827147;-0.009675235,0.1684725;0.273741;-0.1658996,0.1936763;0.3496713;-0.4027527,-0.1093542;0.3643166;-0.008102719,-0.1643147;0.2725304;-0.1770839,-0.1820541;0.3328928;-0.4190378,0.07262729;0.008012939;-0.03257407,0.08324746;-0.2902623;-0.002256973,0.07115683;-0.5834458;0.06017069,0.08269675;-0.6162812;0.005351733,-0.06894001;0.0002758702;-0.0405857,-0.1046001;-0.295392;-0.004407667,-0.105595;-0.5895039;0.0547296,-0.1077392;-0.6157655;-0.009920001,-0.002723583;0.398401;0.03511941,99.11863
-0;0;0,3.487309E-05;0.1987401;0.02241336,0.0001804888;0.4979615;0.04336106,0.107829;0.3748368;-0.008560061,0.1866436;0.2524994;-0.1457527,0.2158619;0.3383076;-0.3787403,-0.1063794;0.3603679;-0.001736153,-0.1971744;0.2497382;-0.1414406,-0.2331366;0.3137136;-0.3804258,0.07232913;0.006556024;-0.03354868,0.08405424;-0.2914083;-0.0006883107,0.07273682;-0.584275;0.06335066,0.08326827;-0.6137668;0.003600106,-0.06978808;0.001687259;-0.03907399,-0.1018247;-0.2945872;-0.004503205,-0.1010693;-0.5885978;0.0551387,-0.1027742;-0.6154829;-0.00878137,6.917745E-05;0.398063;0.0388567,0;0;0,-0.001384701;0.1989375;0.02054136,-0.003367361;0.4983385;0.03859738,0.1074916;0.3827147;-0.009675235,0.1684725;0.273741;-0.1658996,0.1936763;0.3496713;-0.4027527,-0.1093542;0.3643166;-0.008102719,-0.1643147;0.2725304;-0.1770839,-0.1820541;0.3328928;-0.4190378,0.07262729;0.008012939;-0.03257407,0.08324746;-0.2902623;-0.002256973,0.07115683;-0.5834458;0.06017069,0.08269675;-0.6162812;0.005351733,-0.06894001;0.0002758702;-0.0405857,-0.1046001;-0.295392;-0.004407667,-0.105595;-0.5895039;0.0547296,-0.1077392;-0.6157655;-0.009920001,-0.002723583;0.398401;0.03511941,99.13011
-0;0;0,3.487309E-05;0.1987401;0.02241336,0.0001804888;0.4979615;0.04336106,0.107829;0.3748368;-0.008560061,0.1866436;0.2524994;-0.1457527,0.2158619;0.3383076;-0.3787403,-0.1063794;0.3603679;-0.001736153,-0.1971744;0.2497382;-0.1414406,-0.2331366;0.3137136;-0.3804258,0.07232913;0.006556024;-0.03354868,0.08405424;-0.2914083;-0.0006883107,0.07273682;-0.584275;0.06335066,0.08326827;-0.6137668;0.003600106,-0.06978808;0.001687259;-0.03907399,-0.1018247;-0.2945872;-0.004503205,-0.1010693;-0.5885978;0.0551387,-0.1027742;-0.6154829;-0.00878137,6.917745E-05;0.398063;0.0388567,0;0;0,-0.001384701;0.1989375;0.02054136,-0.003367361;0.4983385;0.03859738,0.1074916;0.3827147;-0.009675235,0.1684725;0.273741;-0.1658996,0.1936763;0.3496713;-0.4027527,-0.1093542;0.3643166;-0.008102719,-0.1643147;0.2725304;-0.1770839,-0.1820541;0.3328928;-0.4190378,0.07262729;0.008012939;-0.03257407,0.08324746;-0.2902623;-0.002256973,0.07115683;-0.5834458;0.06017069,0.08269675;-0.6162812;0.005351733,-0.06894001;0.0002758702;-0.0405857,-0.1046001;-0.295392;-0.004407667,-0.105595;-0.5895039;0.0547296,-0.1077392;-0.6157655;-0.009920001,-0.002723583;0.398401;0.03511941,99.15235
-0;0;0,1.180724E-05;0.1987444;0.02237534,0.0001225584;0.4979712;0.0432416,0.1078854;0.3748534;-0.008422583,0.1892847;0.2501369;-0.141914,0.2194679;0.3409993;-0.3728534,-0.1064553;0.3600644;-0.001444653,-0.1978394;0.2503043;-0.1414506,-0.2366787;0.3165841;-0.379355,0.07229934;0.006527315;-0.03361844,0.08403159;-0.2914262;-0.0006626807,0.07267211;-0.5842775;0.06343937,0.08325662;-0.6137305;0.003646564,-0.06980658;0.001697584;-0.0390405,-0.101827;-0.2945808;-0.004489157,-0.1008803;-0.5885515;0.05534702,-0.1022406;-0.6163555;-0.007459722,2.566731E-05;0.3980713;0.03877074,0;0;0,-0.00140025;0.1989218;0.02069204,-0.003477918;0.4983135;0.03888971,0.1074442;0.3829466;-0.009471517,0.169457;0.2747025;-0.1657969,0.1947362;0.3528592;-0.4019166,-0.109346;0.364258;-0.008016217,-0.1651977;0.2690937;-0.1748225,-0.1814591;0.3297009;-0.4168191,0.07258002;0.008118718;-0.03265315,0.08331051;-0.290188;-0.002687402,0.0713397;-0.5832741;0.06021948,0.08242912;-0.6158988;0.004991017,-0.06896363;0.0001741429;-0.04054611,-0.1044629;-0.2955684;-0.004822794,-0.1053919;-0.5895832;0.05479648,-0.107901;-0.6158847;-0.009792838,-0.002790621;0.3983781;0.03536307,99.16369
-0;0;0,1.180724E-05;0.1987444;0.02237534,0.0001225584;0.4979712;0.0432416,0.1078854;0.3748534;-0.008422583,0.1892847;0.2501369;-0.141914,0.2194679;0.3409993;-0.3728534,-0.1064553;0.3600644;-0.001444653,-0.1978394;0.2503043;-0.1414506,-0.2366787;0.3165841;-0.379355,0.07229934;0.006527315;-0.03361844,0.08403159;-0.2914262;-0.0006626807,0.07267211;-0.5842775;0.06343937,0.08325662;-0.6137305;0.003646564,-0.06980658;0.001697584;-0.0390405,-0.101827;-0.2945808;-0.004489157,-0.1008803;-0.5885515;0.05534702,-0.1022406;-0.6163555;-0.007459722,2.566731E-05;0.3980713;0.03877074,0;0;0,-0.00140025;0.1989218;0.02069204,-0.003477918;0.4983135;0.03888971,0.1074442;0.3829466;-0.009471517,0.169457;0.2747025;-0.1657969,0.1947362;0.3528592;-0.4019166,-0.109346;0.364258;-0.008016217,-0.1651977;0.2690937;-0.1748225,-0.1814591;0.3297009;-0.4168191,0.07258002;0.008118718;-0.03265315,0.08331051;-0.290188;-0.002687402,0.0713397;-0.5832741;0.06021948,0.08242912;-0.6158988;0.004991017,-0.06896363;0.0001741429;-0.04054611,-0.1044629;-0.2955684;-0.004822794,-0.1053919;-0.5895832;0.05479648,-0.107901;-0.6158847;-0.009792838,-0.002790621;0.3983781;0.03536307,99.17459
-0;0;0,-4.965706E-05;0.198825;0.0216474,0.000184799;0.49826;0.03908846,0.108748;0.3747332;-0.008937169,0.1939908;0.2512484;-0.1411687,0.22547;0.3445041;-0.3709782,-0.1070547;0.3598001;-0.002070799,-0.1998894;0.251045;-0.1419066,-0.2430125;0.3188619;-0.378637,0.07228082;0.006508146;-0.03366195,0.08406255;-0.2914391;-0.0006676242,0.07268274;-0.584291;0.06342803,0.08330242;-0.6137418;0.003638376,-0.06984158;0.001724768;-0.03897664,-0.1018776;-0.2945618;-0.004510105,-0.1009167;-0.5885441;0.05526854,-0.1023908;-0.6150419;-0.009120278,2.045786E-05;0.3983067;0.03603636,0;0;0,-0.00140025;0.1989218;0.02069204,-0.003477918;0.4983135;0.03888971,0.1074442;0.3829466;-0.009471517,0.169457;0.2747025;-0.1657969,0.1947362;0.3528592;-0.4019166,-0.109346;0.364258;-0.008016217,-0.1651977;0.2690937;-0.1748225,-0.1814591;0.3297009;-0.4168191,0.07258002;0.008118718;-0.03265315,0.08331051;-0.290188;-0.002687402,0.0713397;-0.5832741;0.06021948,0.08242912;-0.6158988;0.004991017,-0.06896363;0.0001741429;-0.04054611,-0.1044629;-0.2955684;-0.004822794,-0.1053919;-0.5895832;0.05479648,-0.107901;-0.6158847;-0.009792838,-0.002790621;0.3983781;0.03536307,99.19697
-0;0;0,-4.965706E-05;0.198825;0.0216474,0.000184799;0.49826;0.03908846,0.108748;0.3747332;-0.008937169,0.1939908;0.2512484;-0.1411687,0.22547;0.3445041;-0.3709782,-0.1070547;0.3598001;-0.002070799,-0.1998894;0.251045;-0.1419066,-0.2430125;0.3188619;-0.378637,0.07228082;0.006508146;-0.03366195,0.08406255;-0.2914391;-0.0006676242,0.07268274;-0.584291;0.06342803,0.08330242;-0.6137418;0.003638376,-0.06984158;0.001724768;-0.03897664,-0.1018776;-0.2945618;-0.004510105,-0.1009167;-0.5885441;0.05526854,-0.1023908;-0.6150419;-0.009120278,2.045786E-05;0.3983067;0.03603636,0;0;0,-0.001451901;0.198916;0.02074443,-0.003747551;0.498296;0.03911911,0.1072172;0.3827857;-0.009374388,0.170946;0.2762451;-0.1661791,0.1962318;0.3543768;-0.4023063,-0.1094538;0.3642116;-0.008024316,-0.1652188;0.2728667;-0.176981,-0.1818956;0.3329484;-0.4190804,0.0726044;0.008106261;-0.03260201,0.08327332;-0.2901967;-0.002576364,0.07124577;-0.583285;0.06030916,0.08257799;-0.6154572;0.004458442,-0.06893535;0.0001730063;-0.04059419,-0.1043843;-0.2955664;-0.004794825,-0.1053157;-0.5895734;0.05486239,-0.1077181;-0.6154932;-0.01017919,-0.002974364;0.3983639;0.03551585,99.20805
-0;0;0,-4.965706E-05;0.198825;0.0216474,0.000184799;0.49826;0.03908846,0.108748;0.3747332;-0.008937169,0.1939908;0.2512484;-0.1411687,0.22547;0.3445041;-0.3709782,-0.1070547;0.3598001;-0.002070799,-0.1998894;0.251045;-0.1419066,-0.2430125;0.3188619;-0.378637,0.07228082;0.006508146;-0.03366195,0.08406255;-0.2914391;-0.0006676242,0.07268274;-0.584291;0.06342803,0.08330242;-0.6137418;0.003638376,-0.06984158;0.001724768;-0.03897664,-0.1018776;-0.2945618;-0.004510105,-0.1009167;-0.5885441;0.05526854,-0.1023908;-0.6150419;-0.009120278,2.045786E-05;0.3983067;0.03603636,0;0;0,-0.001451901;0.198916;0.02074443,-0.003747551;0.498296;0.03911911,0.1072172;0.3827857;-0.009374388,0.170946;0.2762451;-0.1661791,0.1962318;0.3543768;-0.4023063,-0.1094538;0.3642116;-0.008024316,-0.1652188;0.2728667;-0.176981,-0.1818956;0.3329484;-0.4190804,0.0726044;0.008106261;-0.03260201,0.08327332;-0.2901967;-0.002576364,0.07124577;-0.583285;0.06030916,0.08257799;-0.6154572;0.004458442,-0.06893535;0.0001730063;-0.04059419,-0.1043843;-0.2955664;-0.004794825,-0.1053157;-0.5895734;0.05486239,-0.1077181;-0.6154932;-0.01017919,-0.002974364;0.3983639;0.03551585,99.21921
-0;0;0,-5.341338E-05;0.1988227;0.02166908,8.458755E-05;0.4982376;0.03951914,0.1086907;0.3748178;-0.008808713,0.1954107;0.2520308;-0.1407292,0.229418;0.3496533;-0.3683547,-0.107155;0.3600766;-0.002027545,-0.2011246;0.2458694;-0.1366619,-0.2527469;0.3089808;-0.3729924,0.07229483;0.006480192;-0.03363726,0.08382355;-0.2914591;-0.0004822016,0.07247244;-0.584223;0.06401914,0.0833495;-0.6130042;0.003395583,-0.0698247;0.001760555;-0.03900528,-0.1019463;-0.294516;-0.004531834,-0.1008743;-0.588517;0.05515288,-0.1025547;-0.6152645;-0.008933049,-3.011212E-05;0.3982917;0.0362329,0;0;0,-0.001451901;0.198916;0.02074443,-0.003747551;0.498296;0.03911911,0.1072172;0.3827857;-0.009374388,0.170946;0.2762451;-0.1661791,0.1962318;0.3543768;-0.4023063,-0.1094538;0.3642116;-0.008024316,-0.1652188;0.2728667;-0.176981,-0.1818956;0.3329484;-0.4190804,0.0726044;0.008106261;-0.03260201,0.08327332;-0.2901967;-0.002576364,0.07124577;-0.583285;0.06030916,0.08257799;-0.6154572;0.004458442,-0.06893535;0.0001730063;-0.04059419,-0.1043843;-0.2955664;-0.004794825,-0.1053157;-0.5895734;0.05486239,-0.1077181;-0.6154932;-0.01017919,-0.002974364;0.3983639;0.03551585,99.23193
-0;0;0,-5.341338E-05;0.1988227;0.02166908,8.458755E-05;0.4982376;0.03951914,0.1086907;0.3748178;-0.008808713,0.1954107;0.2520308;-0.1407292,0.229418;0.3496533;-0.3683547,-0.107155;0.3600766;-0.002027545,-0.2011246;0.2458694;-0.1366619,-0.2527469;0.3089808;-0.3729924,0.07229483;0.006480192;-0.03363726,0.08382355;-0.2914591;-0.0004822016,0.07247244;-0.584223;0.06401914,0.0833495;-0.6130042;0.003395583,-0.0698247;0.001760555;-0.03900528,-0.1019463;-0.294516;-0.004531834,-0.1008743;-0.588517;0.05515288,-0.1025547;-0.6152645;-0.008933049,-3.011212E-05;0.3982917;0.0362329,0;0;0,-0.001487587;0.1989044;0.02085266,-0.003896442;0.4982762;0.0393483,0.107109;0.3826877;-0.009167135,0.1729348;0.2776856;-0.1661434,0.1982923;0.3530697;-0.4031544,-0.1095315;0.3642114;-0.007918946,-0.1645792;0.2765252;-0.1790355,-0.1827603;0.3342977;-0.4215881,0.07269173;0.008105717;-0.03240695,0.08339877;-0.2902054;-0.002476972,0.07124768;-0.5832405;0.06063259,0.08293483;-0.615163;0.004488844,-0.06883399;0.000126489;-0.04076598,-0.1040323;-0.29565;-0.005025886,-0.1048484;-0.5895895;0.05496497,-0.107543;-0.6159622;-0.009532675,-0.00307961;0.398346;0.03570251,99.25295
-0;0;0,-0.0002337263;0.1988191;0.0217009,-0.00107663;0.4981988;0.04017687,0.1080345;0.3750498;-0.008398168,0.1964356;0.2525764;-0.1394917,0.2330295;0.3542601;-0.3649275,-0.1078251;0.3598856;-0.001700301,-0.2021752;0.2461164;-0.1364394,-0.2577591;0.3119076;-0.3711348,0.07229346;0.006478264;-0.03364056,0.08381341;-0.2914701;-0.0005636737,0.07240469;-0.5842118;0.06402872,0.0838293;-0.6134747;0.004138261,-0.06982904;0.001759259;-0.03899756,-0.1020329;-0.2945092;-0.004530929,-0.1010646;-0.5885404;0.05500628,-0.102716;-0.6151385;-0.009258848,-0.0007669426;0.3982639;0.0365836,0;0;0,-0.001487587;0.1989044;0.02085266,-0.003896442;0.4982762;0.0393483,0.107109;0.3826877;-0.009167135,0.1729348;0.2776856;-0.1661434,0.1982923;0.3530697;-0.4031544,-0.1095315;0.3642114;-0.007918946,-0.1645792;0.2765252;-0.1790355,-0.1827603;0.3342977;-0.4215881,0.07269173;0.008105717;-0.03240695,0.08339877;-0.2902054;-0.002476972,0.07124768;-0.5832405;0.06063259,0.08293483;-0.615163;0.004488844,-0.06883399;0.000126489;-0.04076598,-0.1040323;-0.29565;-0.005025886,-0.1048484;-0.5895895;0.05496497,-0.107543;-0.6159622;-0.009532675,-0.00307961;0.398346;0.03570251,99.26437
-0;0;0,-0.0002337263;0.1988191;0.0217009,-0.00107663;0.4981988;0.04017687,0.1080345;0.3750498;-0.008398168,0.1964356;0.2525764;-0.1394917,0.2330295;0.3542601;-0.3649275,-0.1078251;0.3598856;-0.001700301,-0.2021752;0.2461164;-0.1364394,-0.2577591;0.3119076;-0.3711348,0.07229346;0.006478264;-0.03364056,0.08381341;-0.2914701;-0.0005636737,0.07240469;-0.5842118;0.06402872,0.0838293;-0.6134747;0.004138261,-0.06982904;0.001759259;-0.03899756,-0.1020329;-0.2945092;-0.004530929,-0.1010646;-0.5885404;0.05500628,-0.102716;-0.6151385;-0.009258848,-0.0007669426;0.3982639;0.0365836,0;0;0,-0.001487587;0.1989044;0.02085266,-0.003896442;0.4982762;0.0393483,0.107109;0.3826877;-0.009167135,0.1729348;0.2776856;-0.1661434,0.1982923;0.3530697;-0.4031544,-0.1095315;0.3642114;-0.007918946,-0.1645792;0.2765252;-0.1790355,-0.1827603;0.3342977;-0.4215881,0.07269173;0.008105717;-0.03240695,0.08339877;-0.2902054;-0.002476972,0.07124768;-0.5832405;0.06063259,0.08293483;-0.615163;0.004488844,-0.06883399;0.000126489;-0.04076598,-0.1040323;-0.29565;-0.005025886,-0.1048484;-0.5895895;0.05496497,-0.107543;-0.6159622;-0.009532675,-0.00307961;0.398346;0.03570251,99.27632
-0;0;0,-0.0002337263;0.1988191;0.0217009,-0.00107663;0.4981988;0.04017687,0.1080345;0.3750498;-0.008398168,0.1964356;0.2525764;-0.1394917,0.2330295;0.3542601;-0.3649275,-0.1078251;0.3598856;-0.001700301,-0.2021752;0.2461164;-0.1364394,-0.2577591;0.3119076;-0.3711348,0.07229346;0.006478264;-0.03364056,0.08381341;-0.2914701;-0.0005636737,0.07240469;-0.5842118;0.06402872,0.0838293;-0.6134747;0.004138261,-0.06982904;0.001759259;-0.03899756,-0.1020329;-0.2945092;-0.004530929,-0.1010646;-0.5885404;0.05500628,-0.102716;-0.6151385;-0.009258848,-0.0007669426;0.3982639;0.0365836,0;0;0,-0.001498098;0.198897;0.02092199,-0.00398794;0.4982604;0.03955038,0.1070507;0.3827886;-0.009055234,0.1740264;0.278026;-0.1657048,0.2002103;0.3538359;-0.40249,-0.1095686;0.3642167;-0.007847514,-0.1644177;0.2782073;-0.1798765,-0.183905;0.3359046;-0.4223456,0.07270364;0.008123922;-0.03237563,0.08340059;-0.2901998;-0.002567645,0.07106681;-0.5832099;0.06062262,0.08357269;-0.6149666;0.004413739,-0.06881707;9.820011E-05;-0.04079461,-0.1040025;-0.2956863;-0.005108189,-0.1048795;-0.5896174;0.05492319,-0.1076382;-0.6157761;-0.009824332,-0.003140728;0.3983326;0.03584714,99.28759
-0;0;0,-0.0002519098;0.1988178;0.0217121,-0.00118383;0.4981843;0.04042272,0.1079491;0.3749399;-0.008249309,0.1987466;0.2519901;-0.1372421,0.2393556;0.356465;-0.3607056,-0.1078328;0.3595534;-0.001433022,-0.2029717;0.2460491;-0.1358405,-0.2623359;0.3143171;-0.3688971,0.07229689;0.006488848;-0.03363115,0.08377232;-0.2914703;-0.0006364249,0.0723158;-0.5841694;0.06413984,0.08393928;-0.6131015;0.003851946,-0.06981741;0.001730589;-0.03901966,-0.1020858;-0.2945398;-0.004630506,-0.1011485;-0.5885749;0.05488814,-0.1032286;-0.614045;-0.01068577,-0.0008403017;0.3982538;0.03670996,0;0;0,-0.001498098;0.198897;0.02092199,-0.00398794;0.4982604;0.03955038,0.1070507;0.3827886;-0.009055234,0.1740264;0.278026;-0.1657048,0.2002103;0.3538359;-0.40249,-0.1095686;0.3642167;-0.007847514,-0.1644177;0.2782073;-0.1798765,-0.183905;0.3359046;-0.4223456,0.07270364;0.008123922;-0.03237563,0.08340059;-0.2901998;-0.002567645,0.07106681;-0.5832099;0.06062262,0.08357269;-0.6149666;0.004413739,-0.06881707;9.820011E-05;-0.04079461,-0.1040025;-0.2956863;-0.005108189,-0.1048795;-0.5896174;0.05492319,-0.1076382;-0.6157761;-0.009824332,-0.003140728;0.3983326;0.03584714,99.30846
-0;0;0,-0.0002684846;0.1988135;0.02175166,-0.00127472;0.4981683;0.04066554,0.1079132;0.3750084;-0.008089487,0.1997592;0.25221;-0.1364829,0.2471932;0.3583782;-0.3577934,-0.1079537;0.3595189;-0.001106456,-0.2040467;0.2463343;-0.1351042,-0.2680447;0.316054;-0.3664987,0.07229181;0.006492775;-0.03364133,0.08367616;-0.2914624;-0.0005787387,0.07211211;-0.5840057;0.06487872,0.08449057;-0.611487;0.002883341,-0.06983131;0.001721664;-0.03899517,-0.1021458;-0.294541;-0.004582677,-0.1011789;-0.5885617;0.05500678,-0.1004405;-0.6164775;-0.007671595,-0.0009023799;0.3982419;0.03684785,0;0;0,-0.001498098;0.198897;0.02092199,-0.00398794;0.4982604;0.03955038,0.1070507;0.3827886;-0.009055234,0.1740264;0.278026;-0.1657048,0.2002103;0.3538359;-0.40249,-0.1095686;0.3642167;-0.007847514,-0.1644177;0.2782073;-0.1798765,-0.183905;0.3359046;-0.4223456,0.07270364;0.008123922;-0.03237563,0.08340059;-0.2901998;-0.002567645,0.07106681;-0.5832099;0.06062262,0.08357269;-0.6149666;0.004413739,-0.06881707;9.820011E-05;-0.04079461,-0.1040025;-0.2956863;-0.005108189,-0.1048795;-0.5896174;0.05492319,-0.1076382;-0.6157761;-0.009824332,-0.003140728;0.3983326;0.03584714,99.33096
-0;0;0,-0.0002684846;0.1988135;0.02175166,-0.00127472;0.4981683;0.04066554,0.1079132;0.3750084;-0.008089487,0.1997592;0.25221;-0.1364829,0.2471932;0.3583782;-0.3577934,-0.1079537;0.3595189;-0.001106456,-0.2040467;0.2463343;-0.1351042,-0.2680447;0.316054;-0.3664987,0.07229181;0.006492775;-0.03364133,0.08367616;-0.2914624;-0.0005787387,0.07211211;-0.5840057;0.06487872,0.08449057;-0.611487;0.002883341,-0.06983131;0.001721664;-0.03899517,-0.1021458;-0.294541;-0.004582677,-0.1011789;-0.5885617;0.05500678,-0.1004405;-0.6164775;-0.007671595,-0.0009023799;0.3982419;0.03684785,0;0;0,-0.001596657;0.1988819;0.02105823,-0.004518653;0.4982141;0.04014812,0.1066495;0.3826578;-0.008723605,0.1744986;0.2780473;-0.1650986,0.2021611;0.3544653;-0.40152,-0.1097618;0.3640091;-0.007728718,-0.1663248;0.2763937;-0.1783868,-0.184066;0.3383944;-0.4199259,0.07272945;0.008134896;-0.03231487,0.08340356;-0.2901939;-0.002549451,0.07113916;-0.5831986;0.06067899,0.08378506;-0.6151657;0.004808836,-0.06879991;7.220302E-05;-0.04082361,-0.1039321;-0.2957074;-0.005044509,-0.1046937;-0.5896262;0.05504887,-0.1076937;-0.6156897;-0.009799723,-0.00350278;0.3982956;0.03624223,99.34219
-0;0;0,-0.0002926956;0.1988055;0.02182421,-0.001354208;0.4981422;0.04104031,0.1078444;0.3748562;-0.007800885,0.2018245;0.2524207;-0.1349908,0.2535066;0.3601905;-0.3545692,-0.107995;0.3593257;-0.0007492937,-0.2050157;0.2467172;-0.1345637,-0.2736947;0.3183471;-0.3640247,0.07229911;0.006456761;-0.03363255,0.08365725;-0.2914794;-0.0003903322,0.07204655;-0.5840197;0.06507222,0.08464319;-0.6109558;0.002445064,-0.06984556;0.001751577;-0.03896831,-0.1022561;-0.294503;-0.004576705,-0.1010709;-0.5884858;0.05519539,-0.1025217;-0.5555299;-0.04333072,-0.0009639497;0.3982212;0.03708594,0;0;0,-0.001596657;0.1988819;0.02105823,-0.004518653;0.4982141;0.04014812,0.1066495;0.3826578;-0.008723605,0.1744986;0.2780473;-0.1650986,0.2021611;0.3544653;-0.40152,-0.1097618;0.3640091;-0.007728718,-0.1663248;0.2763937;-0.1783868,-0.184066;0.3383944;-0.4199259,0.07272945;0.008134896;-0.03231487,0.08340356;-0.2901939;-0.002549451,0.07113916;-0.5831986;0.06067899,0.08378506;-0.6151657;0.004808836,-0.06879991;7.220302E-05;-0.04082361,-0.1039321;-0.2957074;-0.005044509,-0.1046937;-0.5896262;0.05504887,-0.1076937;-0.6156897;-0.009799723,-0.00350278;0.3982956;0.03624223,99.36448
-0;0;0,-0.0002926956;0.1988055;0.02182421,-0.001354208;0.4981422;0.04104031,0.1078444;0.3748562;-0.007800885,0.2018245;0.2524207;-0.1349908,0.2535066;0.3601905;-0.3545692,-0.107995;0.3593257;-0.0007492937,-0.2050157;0.2467172;-0.1345637,-0.2736947;0.3183471;-0.3640247,0.07229911;0.006456761;-0.03363255,0.08365725;-0.2914794;-0.0003903322,0.07204655;-0.5840197;0.06507222,0.08464319;-0.6109558;0.002445064,-0.06984556;0.001751577;-0.03896831,-0.1022561;-0.294503;-0.004576705,-0.1010709;-0.5884858;0.05519539,-0.1025217;-0.5555299;-0.04333072,-0.0009639497;0.3982212;0.03708594,0;0;0,-0.001596657;0.1988819;0.02105823,-0.004518653;0.4982141;0.04014812,0.1066495;0.3826578;-0.008723605,0.1744986;0.2780473;-0.1650986,0.2021611;0.3544653;-0.40152,-0.1097618;0.3640091;-0.007728718,-0.1663248;0.2763937;-0.1783868,-0.184066;0.3383944;-0.4199259,0.07272945;0.008134896;-0.03231487,0.08340356;-0.2901939;-0.002549451,0.07113916;-0.5831986;0.06067899,0.08378506;-0.6151657;0.004808836,-0.06879991;7.220302E-05;-0.04082361,-0.1039321;-0.2957074;-0.005044509,-0.1046937;-0.5896262;0.05504887,-0.1076937;-0.6156897;-0.009799723,-0.00350278;0.3982956;0.03624223,99.38659
-0;0;0,-0.0003710465;0.1988025;0.02184965,-0.001769725;0.4981225;0.04131874,0.1076252;0.3749042;-0.007500481,0.2040499;0.2521285;-0.1325142,0.2600965;0.362356;-0.3497897,-0.1083227;0.359336;-0.0004874021,-0.2070868;0.2470268;-0.1332741,-0.2796087;0.3205559;-0.360945,0.0722921;0.006472903;-0.0336445,0.08354417;-0.2914627;-0.0003616251,0.07197746;-0.5840071;0.06509081,0.08456977;-0.6107752;0.002256915,-0.06985093;0.001738332;-0.03895928,-0.1023285;-0.2945062;-0.004544612,-0.1012764;-0.5885155;0.05509945,-0.1001016;-0.6170785;-0.006759062,-0.001250218;0.3982064;0.03725609,0;0;0,-0.001575106;0.1988703;0.02116923,-0.00448766;0.4981962;0.04035955,0.1067107;0.3823668;-0.008368265,0.1830249;0.2998889;-0.1738178,0.1948406;0.368929;-0.4138049,-0.1097145;0.3640327;-0.00762897,-0.1664283;0.2775086;-0.178793,-0.1850502;0.3389979;-0.4203966,0.07271149;0.008139222;-0.03235417,0.08334662;-0.2902035;-0.002714036,0.07121183;-0.5831313;0.06089471,0.08410387;-0.6160319;0.006477196,-0.06882622;5.674171E-05;-0.04077926,-0.1039148;-0.2957342;-0.005051102,-0.1046293;-0.5896631;0.05499297,-0.1075494;-0.6158029;-0.009769734,-0.003474715;0.398279;0.03642,99.39804
-0;0;0,-0.0003710465;0.1988025;0.02184965,-0.001769725;0.4981225;0.04131874,0.1076252;0.3749042;-0.007500481,0.2040499;0.2521285;-0.1325142,0.2600965;0.362356;-0.3497897,-0.1083227;0.359336;-0.0004874021,-0.2070868;0.2470268;-0.1332741,-0.2796087;0.3205559;-0.360945,0.0722921;0.006472903;-0.0336445,0.08354417;-0.2914627;-0.0003616251,0.07197746;-0.5840071;0.06509081,0.08456977;-0.6107752;0.002256915,-0.06985093;0.001738332;-0.03895928,-0.1023285;-0.2945062;-0.004544612,-0.1012764;-0.5885155;0.05509945,-0.1001016;-0.6170785;-0.006759062,-0.001250218;0.3982064;0.03725609,0;0;0,-0.001575106;0.1988703;0.02116923,-0.00448766;0.4981962;0.04035955,0.1067107;0.3823668;-0.008368265,0.1830249;0.2998889;-0.1738178,0.1948406;0.368929;-0.4138049,-0.1097145;0.3640327;-0.00762897,-0.1664283;0.2775086;-0.178793,-0.1850502;0.3389979;-0.4203966,0.07271149;0.008139222;-0.03235417,0.08334662;-0.2902035;-0.002714036,0.07121183;-0.5831313;0.06089471,0.08410387;-0.6160319;0.006477196,-0.06882622;5.674171E-05;-0.04077926,-0.1039148;-0.2957342;-0.005051102,-0.1046293;-0.5896631;0.05499297,-0.1075494;-0.6158029;-0.009769734,-0.003474715;0.398279;0.03642,99.40947
-0;0;0,-0.0006109668;0.1988046;0.02182603,-0.002476137;0.4981139;0.04142046,0.1071399;0.3747407;-0.007207755,0.2058131;0.2523026;-0.1307898,0.2661037;0.3638017;-0.3462729,-0.1088024;0.3590611;-0.0003472902,-0.2162428;0.2581262;-0.135509,-0.2779952;0.3384715;-0.3640506,0.07218388;0.006577135;-0.03385599,0.08340806;-0.2913372;-0.0003733896,0.07180618;-0.5839515;0.06475934,0.08441621;-0.6113952;0.002763793,-0.06990744;0.001692329;-0.03885981,-0.1023804;-0.2945693;-0.004588161,-0.1014676;-0.588585;0.05502722,-0.09992635;-0.6162465;-0.007951431,-0.001798449;0.3982006;0.03731259,0;0;0,-0.001575106;0.1988703;0.02116923,-0.00448766;0.4981962;0.04035955,0.1067107;0.3823668;-0.008368265,0.1830249;0.2998889;-0.1738178,0.1948406;0.368929;-0.4138049,-0.1097145;0.3640327;-0.00762897,-0.1664283;0.2775086;-0.178793,-0.1850502;0.3389979;-0.4203966,0.07271149;0.008139222;-0.03235417,0.08334662;-0.2902035;-0.002714036,0.07121183;-0.5831313;0.06089471,0.08410387;-0.6160319;0.006477196,-0.06882622;5.674171E-05;-0.04077926,-0.1039148;-0.2957342;-0.005051102,-0.1046293;-0.5896631;0.05499297,-0.1075494;-0.6158029;-0.009769734,-0.003474715;0.398279;0.03642,99.43126
-0;0;0,-0.0006109668;0.1988046;0.02182603,-0.002476137;0.4981139;0.04142046,0.1071399;0.3747407;-0.007207755,0.2058131;0.2523026;-0.1307898,0.2661037;0.3638017;-0.3462729,-0.1088024;0.3590611;-0.0003472902,-0.2162428;0.2581262;-0.135509,-0.2779952;0.3384715;-0.3640506,0.07218388;0.006577135;-0.03385599,0.08340806;-0.2913372;-0.0003733896,0.07180618;-0.5839515;0.06475934,0.08441621;-0.6113952;0.002763793,-0.06990744;0.001692329;-0.03885981,-0.1023804;-0.2945693;-0.004588161,-0.1014676;-0.588585;0.05502722,-0.09992635;-0.6162465;-0.007951431,-0.001798449;0.3982006;0.03731259,0;0;0,-0.001658281;0.1988664;0.02119947,-0.004658798;0.4981878;0.04044252,0.1066102;0.3823557;-0.008176234,0.1832261;0.2993787;-0.1732363,0.1990321;0.3702539;-0.4124577,-0.1098288;0.3639855;-0.007610973,-0.1668121;0.2780156;-0.1789646,-0.1867565;0.3405728;-0.4201882,0.07274038;0.008127875;-0.032292,0.08339255;-0.2902146;-0.002656063,0.07132176;-0.5831234;0.0610523,0.08417564;-0.6149376;0.005005799,-0.06880882;6.448964E-05;-0.0408086,-0.10378;-0.2957542;-0.005195335,-0.104566;-0.5896129;0.05519057,-0.1072887;-0.615775;-0.009554502,-0.003623795;0.3982713;0.03649089,99.45387
-0;0;0,-0.0006583725;0.198799;0.02187509,-0.002605946;0.4980977;0.0416296,0.1070813;0.3747203;-0.006951332,0.2086271;0.2512726;-0.1271557,0.2697484;0.3658539;-0.3407799,-0.1089196;0.3589699;-8.140877E-05,-0.2178415;0.2549603;-0.1316793,-0.2870711;0.3305905;-0.3596866,0.07218892;0.006566134;-0.03384739,0.08340847;-0.2913467;-0.0003501177,0.07182292;-0.5839584;0.06479746,0.08486515;-0.6120366;0.003693517,-0.06991443;0.001695858;-0.0388471,-0.1024072;-0.2945641;-0.004579525,-0.1010053;-0.5886284;0.0547857,-0.1004057;-0.615741;-0.008879773,-0.001901391;0.3981872;0.0374567,0;0;0,-0.001658281;0.1988664;0.02119947,-0.004658798;0.4981878;0.04044252,0.1066102;0.3823557;-0.008176234,0.1832261;0.2993787;-0.1732363,0.1990321;0.3702539;-0.4124577,-0.1098288;0.3639855;-0.007610973,-0.1668121;0.2780156;-0.1789646,-0.1867565;0.3405728;-0.4201882,0.07274038;0.008127875;-0.032292,0.08339255;-0.2902146;-0.002656063,0.07132176;-0.5831234;0.0610523,0.08417564;-0.6149376;0.005005799,-0.06880882;6.448964E-05;-0.0408086,-0.10378;-0.2957542;-0.005195335,-0.104566;-0.5896129;0.05519057,-0.1072887;-0.615775;-0.009554502,-0.003623795;0.3982713;0.03649089,99.46501
-0;0;0,-0.0006583725;0.198799;0.02187509,-0.002605946;0.4980977;0.0416296,0.1070813;0.3747203;-0.006951332,0.2086271;0.2512726;-0.1271557,0.2697484;0.3658539;-0.3407799,-0.1089196;0.3589699;-8.140877E-05,-0.2178415;0.2549603;-0.1316793,-0.2870711;0.3305905;-0.3596866,0.07218892;0.006566134;-0.03384739,0.08340847;-0.2913467;-0.0003501177,0.07182292;-0.5839584;0.06479746,0.08486515;-0.6120366;0.003693517,-0.06991443;0.001695858;-0.0388471,-0.1024072;-0.2945641;-0.004579525,-0.1010053;-0.5886284;0.0547857,-0.1004057;-0.615741;-0.008879773,-0.001901391;0.3981872;0.0374567,0;0;0,-0.001658281;0.1988664;0.02119947,-0.004658798;0.4981878;0.04044252,0.1066102;0.3823557;-0.008176234,0.1832261;0.2993787;-0.1732363,0.1990321;0.3702539;-0.4124577,-0.1098288;0.3639855;-0.007610973,-0.1668121;0.2780156;-0.1789646,-0.1867565;0.3405728;-0.4201882,0.07274038;0.008127875;-0.032292,0.08339255;-0.2902146;-0.002656063,0.07132176;-0.5831234;0.0610523,0.08417564;-0.6149376;0.005005799,-0.06880882;6.448964E-05;-0.0408086,-0.10378;-0.2957542;-0.005195335,-0.104566;-0.5896129;0.05519057,-0.1072887;-0.615775;-0.009554502,-0.003623795;0.3982713;0.03649089,99.48709
-0;0;0,-0.0007901693;0.1987807;0.02203691,-0.003171269;0.4980438;0.04230186,0.1068388;0.3749959;-0.006276093,0.2102938;0.2519615;-0.1252701,0.2767904;0.3677279;-0.3366379,-0.1093118;0.3588027;0.000479646,-0.2188058;0.2539709;-0.1299863,-0.2923127;0.3304951;-0.3563505,0.07216725;0.006634548;-0.03388024,0.08342485;-0.2912612;-0.000243973,0.0718605;-0.5838628;0.06495233,0.08499753;-0.6121172;0.004094664,-0.06993909;0.001616611;-0.03880605,-0.1024737;-0.294632;-0.004480414,-0.1012835;-0.5887436;0.05465502,-0.1028877;-0.5557495;-0.04387531,-0.002301747;0.398144;0.03791119,0;0;0,-0.002511723;0.1988631;0.02114568,-0.008546195;0.4981372;0.04041622,0.1044314;0.3823452;-0.006931741,0.1813;0.2993693;-0.1718749,0.2016169;0.3715922;-0.4103515,-0.1120979;0.3631899;-0.008089047,-0.1704508;0.2762508;-0.1784902,-0.1925903;0.3405247;-0.4190701,0.07278447;0.008106289;-0.03219796,0.08341512;-0.2902094;-0.002286233,0.07136676;-0.5830611;0.06168826,0.08418953;-0.6146962;0.0053741,-0.06878375;7.101511E-05;-0.04085083,-0.1036548;-0.2957085;-0.004816424,-0.1044863;-0.5895544;0.0556313,-0.1071145;-0.6153062;-0.009597175,-0.006321645;0.3982411;0.03643966,99.4984
-0;0;0,-0.0007901693;0.1987807;0.02203691,-0.003171269;0.4980438;0.04230186,0.1068388;0.3749959;-0.006276093,0.2102938;0.2519615;-0.1252701,0.2767904;0.3677279;-0.3366379,-0.1093118;0.3588027;0.000479646,-0.2188058;0.2539709;-0.1299863,-0.2923127;0.3304951;-0.3563505,0.07216725;0.006634548;-0.03388024,0.08342485;-0.2912612;-0.000243973,0.0718605;-0.5838628;0.06495233,0.08499753;-0.6121172;0.004094664,-0.06993909;0.001616611;-0.03880605,-0.1024737;-0.294632;-0.004480414,-0.1012835;-0.5887436;0.05465502,-0.1028877;-0.5557495;-0.04387531,-0.002301747;0.398144;0.03791119,0;0;0,-0.002511723;0.1988631;0.02114568,-0.008546195;0.4981372;0.04041622,0.1044314;0.3823452;-0.006931741,0.1813;0.2993693;-0.1718749,0.2016169;0.3715922;-0.4103515,-0.1120979;0.3631899;-0.008089047,-0.1704508;0.2762508;-0.1784902,-0.1925903;0.3405247;-0.4190701,0.07278447;0.008106289;-0.03219796,0.08341512;-0.2902094;-0.002286233,0.07136676;-0.5830611;0.06168826,0.08418953;-0.6146962;0.0053741,-0.06878375;7.101511E-05;-0.04085083,-0.1036548;-0.2957085;-0.004816424,-0.1044863;-0.5895544;0.0556313,-0.1071145;-0.6153062;-0.009597175,-0.006321645;0.3982411;0.03643966,99.52073
-0;0;0,-0.00087322;0.1987744;0.02209017,-0.003439554;0.4980176;0.04262744,0.1066318;0.3749507;-0.006015733,0.2124574;0.2519465;-0.1229383,0.2805987;0.3691254;-0.3329999,-0.1095263;0.3586552;0.0008385852,-0.2198533;0.2535483;-0.1287009,-0.2977327;0.3313958;-0.3531437,0.07218391;0.006619386;-0.0338477,0.08340217;-0.2912831;-0.0002581328,0.07206029;-0.583946;0.06470197,0.08492214;-0.6126348;0.004347757,-0.06991749;0.001630021;-0.03884439,-0.1024835;-0.2946139;-0.004507534,-0.1012572;-0.5886764;0.05487058,-0.1029342;-0.5556782;-0.04365924,-0.002516896;0.3981227;0.03813883,0;0;0,-0.002511723;0.1988631;0.02114568,-0.008546195;0.4981372;0.04041622,0.1044314;0.3823452;-0.006931741,0.1813;0.2993693;-0.1718749,0.2016169;0.3715922;-0.4103515,-0.1120979;0.3631899;-0.008089047,-0.1704508;0.2762508;-0.1784902,-0.1925903;0.3405247;-0.4190701,0.07278447;0.008106289;-0.03219796,0.08341512;-0.2902094;-0.002286233,0.07136676;-0.5830611;0.06168826,0.08418953;-0.6146962;0.0053741,-0.06878375;7.101511E-05;-0.04085083,-0.1036548;-0.2957085;-0.004816424,-0.1044863;-0.5895544;0.0556313,-0.1071145;-0.6153062;-0.009597175,-0.006321645;0.3982411;0.03643966,99.53201
-0;0;0,-0.00087322;0.1987744;0.02209017,-0.003439554;0.4980176;0.04262744,0.1066318;0.3749507;-0.006015733,0.2124574;0.2519465;-0.1229383,0.2805987;0.3691254;-0.3329999,-0.1095263;0.3586552;0.0008385852,-0.2198533;0.2535483;-0.1287009,-0.2977327;0.3313958;-0.3531437,0.07218391;0.006619386;-0.0338477,0.08340217;-0.2912831;-0.0002581328,0.07206029;-0.583946;0.06470197,0.08492214;-0.6126348;0.004347757,-0.06991749;0.001630021;-0.03884439,-0.1024835;-0.2946139;-0.004507534,-0.1012572;-0.5886764;0.05487058,-0.1029342;-0.5556782;-0.04365924,-0.002516896;0.3981227;0.03813883,0;0;0,-0.002542649;0.1988531;0.02123681,-0.00841851;0.4981125;0.04080086,0.1043794;0.3818553;-0.006725162,0.1817066;0.2991161;-0.1715728,0.2076551;0.3724253;-0.40917,-0.1120285;0.3632329;-0.007963583,-0.1720616;0.275593;-0.1774194,-0.1938801;0.3416937;-0.4175333,0.0728265;0.008163398;-0.03208831,0.08342184;-0.2901546;-0.002186257,0.07100996;-0.582935;0.06204478,0.08359453;-0.6145796;0.005690638,-0.06863681;-3.311126E-05;-0.04109729,-0.1034698;-0.2957934;-0.004868533,-0.1043875;-0.5896099;0.05572068,-0.1064223;-0.6157464;-0.009079605,-0.006286017;0.3982196;0.03669573,99.55421
-0;0;0,-0.0009396815;0.198752;0.02228832,-0.003657341;0.4979743;0.04312219,0.1064897;0.3749904;-0.005641308,0.2172113;0.2568442;-0.123039,0.2859773;0.3729495;-0.3334928,-0.1097081;0.3586473;0.00123572,-0.220765;0.2531389;-0.1273503,-0.3040656;0.3303152;-0.3500717,0.07218671;0.006625174;-0.03384061,0.08337621;-0.2912509;-7.88644E-06,0.07206886;-0.5839182;0.06493829,0.08494239;-0.6126623;0.004658658,-0.06993707;0.001607743;-0.03881008,-0.1026117;-0.2946273;-0.004499979,-0.1013207;-0.5886458;0.05509423,-0.1011826;-0.6166073;-0.007531449,-0.002677831;0.3980857;0.03850681,0;0;0,-0.002542649;0.1988531;0.02123681,-0.00841851;0.4981125;0.04080086,0.1043794;0.3818553;-0.006725162,0.1817066;0.2991161;-0.1715728,0.2076551;0.3724253;-0.40917,-0.1120285;0.3632329;-0.007963583,-0.1720616;0.275593;-0.1774194,-0.1938801;0.3416937;-0.4175333,0.0728265;0.008163398;-0.03208831,0.08342184;-0.2901546;-0.002186257,0.07100996;-0.582935;0.06204478,0.08359453;-0.6145796;0.005690638,-0.06863681;-3.311126E-05;-0.04109729,-0.1034698;-0.2957934;-0.004868533,-0.1043875;-0.5896099;0.05572068,-0.1064223;-0.6157464;-0.009079605,-0.006286017;0.3982196;0.03669573,99.56551
-0;0;0,-0.0009396815;0.198752;0.02228832,-0.003657341;0.4979743;0.04312219,0.1064897;0.3749904;-0.005641308,0.2172113;0.2568442;-0.123039,0.2859773;0.3729495;-0.3334928,-0.1097081;0.3586473;0.00123572,-0.220765;0.2531389;-0.1273503,-0.3040656;0.3303152;-0.3500717,0.07218671;0.006625174;-0.03384061,0.08337621;-0.2912509;-7.88644E-06,0.07206886;-0.5839182;0.06493829,0.08494239;-0.6126623;0.004658658,-0.06993707;0.001607743;-0.03881008,-0.1026117;-0.2946273;-0.004499979,-0.1013207;-0.5886458;0.05509423,-0.1011826;-0.6166073;-0.007531449,-0.002677831;0.3980857;0.03850681,0;0;0,-0.002542649;0.1988531;0.02123681,-0.00841851;0.4981125;0.04080086,0.1043794;0.3818553;-0.006725162,0.1817066;0.2991161;-0.1715728,0.2076551;0.3724253;-0.40917,-0.1120285;0.3632329;-0.007963583,-0.1720616;0.275593;-0.1774194,-0.1938801;0.3416937;-0.4175333,0.0728265;0.008163398;-0.03208831,0.08342184;-0.2901546;-0.002186257,0.07100996;-0.582935;0.06204478,0.08359453;-0.6145796;0.005690638,-0.06863681;-3.311126E-05;-0.04109729,-0.1034698;-0.2957934;-0.004868533,-0.1043875;-0.5896099;0.05572068,-0.1064223;-0.6157464;-0.009079605,-0.006286017;0.3982196;0.03669573,99.58779
-0;0;0,-0.0009140394;0.1987304;0.02248103,-0.003589411;0.4979391;0.04352097,0.1066401;0.3748334;-0.005016025,0.2189282;0.2580378;-0.1222772,0.2907143;0.3756356;-0.3308858,-0.1096437;0.3588128;0.001318578,-0.2221289;0.251839;-0.1247913,-0.3121871;0.3366514;-0.3420385,0.07220621;0.006586876;-0.03380644,0.08345684;-0.2912628;0.0002380796,0.07209287;-0.5838931;0.06534107,0.08487672;-0.612789;0.0052411,-0.06994709;0.00162627;-0.03879123,-0.1025338;-0.2946129;-0.004433017,-0.101211;-0.5885782;0.05542233,-0.1021321;-0.6155918;-0.008358948,-0.002623776;0.398054;0.03882687,0;0;0,-0.002550193;0.1988465;0.02129758,-0.00834481;0.4981035;0.04092908,0.1043393;0.3813955;-0.006620143,0.1832875;0.298358;-0.1705468,0.2118628;0.3731802;-0.4073697,-0.1119922;0.3632254;-0.00789775,-0.1733633;0.2753299;-0.1767408,-0.1970135;0.3428231;-0.4162931,0.07285547;0.008184199;-0.03201717,0.08340143;-0.2901348;-0.00210806,0.07101768;-0.5829085;0.06215881,0.08368716;-0.6144777;0.005714558,-0.06858946;-4.943649E-05;-0.04117625,-0.1035082;-0.2958049;-0.004990555,-0.1042691;-0.5895504;0.05594395,-0.1064218;-0.6158115;-0.00870588,-0.006262031;0.3982108;0.03679171,99.59895
-0;0;0,-0.0009140394;0.1987304;0.02248103,-0.003589411;0.4979391;0.04352097,0.1066401;0.3748334;-0.005016025,0.2189282;0.2580378;-0.1222772,0.2907143;0.3756356;-0.3308858,-0.1096437;0.3588128;0.001318578,-0.2221289;0.251839;-0.1247913,-0.3121871;0.3366514;-0.3420385,0.07220621;0.006586876;-0.03380644,0.08345684;-0.2912628;0.0002380796,0.07209287;-0.5838931;0.06534107,0.08487672;-0.612789;0.0052411,-0.06994709;0.00162627;-0.03879123,-0.1025338;-0.2946129;-0.004433017,-0.101211;-0.5885782;0.05542233,-0.1021321;-0.6155918;-0.008358948,-0.002623776;0.398054;0.03882687,0;0;0,-0.002550193;0.1988465;0.02129758,-0.00834481;0.4981035;0.04092908,0.1043393;0.3813955;-0.006620143,0.1832875;0.298358;-0.1705468,0.2118628;0.3731802;-0.4073697,-0.1119922;0.3632254;-0.00789775,-0.1733633;0.2753299;-0.1767408,-0.1970135;0.3428231;-0.4162931,0.07285547;0.008184199;-0.03201717,0.08340143;-0.2901348;-0.00210806,0.07101768;-0.5829085;0.06215881,0.08368716;-0.6144777;0.005714558,-0.06858946;-4.943649E-05;-0.04117625,-0.1035082;-0.2958049;-0.004990555,-0.1042691;-0.5895504;0.05594395,-0.1064218;-0.6158115;-0.00870588,-0.006262031;0.3982108;0.03679171,99.61066
-0;0;0,-0.0009205811;0.1987188;0.02258323,-0.003552875;0.4979214;0.04370995,0.1067018;0.3746449;-0.004663136,0.2199325;0.2584109;-0.1215753,0.2952923;0.3780228;-0.3277642,-0.109683;0.3586905;0.001781508,-0.2226254;0.2519465;-0.1241142,-0.3183657;0.3331459;-0.3403096,0.07221748;0.006563948;-0.03378684,0.08348357;-0.2912833;0.0002735741,0.07211588;-0.5839232;0.06533262,0.08473519;-0.6123744;0.004618973,-0.06995685;0.001644381;-0.03877287,-0.10265;-0.2946177;-0.004714958,-0.1013861;-0.5885533;0.05528759,-0.1029696;-0.6156707;-0.008355092,-0.00259921;0.3980371;0.03899574,0;0;0,-0.002550193;0.1988465;0.02129758,-0.00834481;0.4981035;0.04092908,0.1043393;0.3813955;-0.006620143,0.1832875;0.298358;-0.1705468,0.2118628;0.3731802;-0.4073697,-0.1119922;0.3632254;-0.00789775,-0.1733633;0.2753299;-0.1767408,-0.1970135;0.3428231;-0.4162931,0.07285547;0.008184199;-0.03201717,0.08340143;-0.2901348;-0.00210806,0.07101768;-0.5829085;0.06215881,0.08368716;-0.6144777;0.005714558,-0.06858946;-4.943649E-05;-0.04117625,-0.1035082;-0.2958049;-0.004990555,-0.1042691;-0.5895504;0.05594395,-0.1064218;-0.6158115;-0.00870588,-0.006262031;0.3982108;0.03679171,99.63258
-0;0;0,-0.0009205811;0.1987188;0.02258323,-0.003552875;0.4979214;0.04370995,0.1067018;0.3746449;-0.004663136,0.2199325;0.2584109;-0.1215753,0.2952923;0.3780228;-0.3277642,-0.109683;0.3586905;0.001781508,-0.2226254;0.2519465;-0.1241142,-0.3183657;0.3331459;-0.3403096,0.07221748;0.006563948;-0.03378684,0.08348357;-0.2912833;0.0002735741,0.07211588;-0.5839232;0.06533262,0.08473519;-0.6123744;0.004618973,-0.06995685;0.001644381;-0.03877287,-0.10265;-0.2946177;-0.004714958,-0.1013861;-0.5885533;0.05528759,-0.1029696;-0.6156707;-0.008355092,-0.00259921;0.3980371;0.03899574,0;0;0,-0.002538263;0.1988397;0.02136212,-0.0080415;0.4981016;0.0410022,0.1044723;0.3813562;-0.006559227,0.1851941;0.2978344;-0.1693723,0.2175583;0.374232;-0.4052027,-0.1118784;0.3632346;-0.00776111,-0.1753436;0.2752086;-0.1757599,-0.2010122;0.3421074;-0.4152712,0.07286078;0.008190819;-0.0320034,0.08334716;-0.2901269;-0.002060462,0.07109681;-0.5828812;0.06232044,0.08368526;-0.6142646;0.005590696,-0.06858838;-5.387878E-05;-0.04117804,-0.1034948;-0.2958061;-0.004953731,-0.1042768;-0.5895339;0.05606557,-0.1067374;-0.615809;-0.00855688,-0.006117859;0.3982056;0.03686793,99.64371
-0;0;0,-0.0009205811;0.1987188;0.02258323,-0.003552875;0.4979214;0.04370995,0.1067018;0.3746449;-0.004663136,0.2199325;0.2584109;-0.1215753,0.2952923;0.3780228;-0.3277642,-0.109683;0.3586905;0.001781508,-0.2226254;0.2519465;-0.1241142,-0.3183657;0.3331459;-0.3403096,0.07221748;0.006563948;-0.03378684,0.08348357;-0.2912833;0.0002735741,0.07211588;-0.5839232;0.06533262,0.08473519;-0.6123744;0.004618973,-0.06995685;0.001644381;-0.03877287,-0.10265;-0.2946177;-0.004714958,-0.1013861;-0.5885533;0.05528759,-0.1029696;-0.6156707;-0.008355092,-0.00259921;0.3980371;0.03899574,0;0;0,-0.002538263;0.1988397;0.02136212,-0.0080415;0.4981016;0.0410022,0.1044723;0.3813562;-0.006559227,0.1851941;0.2978344;-0.1693723,0.2175583;0.374232;-0.4052027,-0.1118784;0.3632346;-0.00776111,-0.1753436;0.2752086;-0.1757599,-0.2010122;0.3421074;-0.4152712,0.07286078;0.008190819;-0.0320034,0.08334716;-0.2901269;-0.002060462,0.07109681;-0.5828812;0.06232044,0.08368526;-0.6142646;0.005590696,-0.06858838;-5.387878E-05;-0.04117804,-0.1034948;-0.2958061;-0.004953731,-0.1042768;-0.5895339;0.05606557,-0.1067374;-0.615809;-0.00855688,-0.006117859;0.3982056;0.03686793,99.65502
-0;0;0,-0.0009123488;0.1987033;0.02271953,-0.003522191;0.4978956;0.04400329,0.1068379;0.3746244;-0.004145041,0.2212121;0.2536718;-0.1150009,0.296574;0.3770211;-0.3189753,-0.109719;0.3585657;0.002271857,-0.2239939;0.252299;-0.1228227,-0.3248578;0.3299696;-0.3379825,0.07221809;0.006569288;-0.03378449,0.08346758;-0.2912602;0.0004359744,0.07211036;-0.5838236;0.0658403,0.08506446;-0.6117553;0.004530884,-0.06997397;0.00162589;-0.03874272,-0.10262;-0.2946232;-0.004527159,-0.1012956;-0.5885791;0.05537468,-0.1027026;-0.6161203;-0.007755063,-0.002580537;0.3980145;0.0392197,0;0;0,-0.002538263;0.1988397;0.02136212,-0.0080415;0.4981016;0.0410022,0.1044723;0.3813562;-0.006559227,0.1851941;0.2978344;-0.1693723,0.2175583;0.374232;-0.4052027,-0.1118784;0.3632346;-0.00776111,-0.1753436;0.2752086;-0.1757599,-0.2010122;0.3421074;-0.4152712,0.07286078;0.008190819;-0.0320034,0.08334716;-0.2901269;-0.002060462,0.07109681;-0.5828812;0.06232044,0.08368526;-0.6142646;0.005590696,-0.06858838;-5.387878E-05;-0.04117804,-0.1034948;-0.2958061;-0.004953731,-0.1042768;-0.5895339;0.05606557,-0.1067374;-0.615809;-0.00855688,-0.006117859;0.3982056;0.03686793,99.67699
-0;0;0,-0.0009123488;0.1987033;0.02271953,-0.003522191;0.4978956;0.04400329,0.1068379;0.3746244;-0.004145041,0.2212121;0.2536718;-0.1150009,0.296574;0.3770211;-0.3189753,-0.109719;0.3585657;0.002271857,-0.2239939;0.252299;-0.1228227,-0.3248578;0.3299696;-0.3379825,0.07221809;0.006569288;-0.03378449,0.08346758;-0.2912602;0.0004359744,0.07211036;-0.5838236;0.0658403,0.08506446;-0.6117553;0.004530884,-0.06997397;0.00162589;-0.03874272,-0.10262;-0.2946232;-0.004527159,-0.1012956;-0.5885791;0.05537468,-0.1027026;-0.6161203;-0.007755063,-0.002580537;0.3980145;0.0392197,0;0;0,-0.002571181;0.1988254;0.02149102,-0.008017718;0.4980841;0.04118808,0.104429;0.3811137;-0.006377045,0.1878692;0.2966526;-0.1673244,0.2222238;0.3740035;-0.4025618,-0.1119136;0.3632602;-0.007555105,-0.1778212;0.2756652;-0.1748372,-0.2060617;0.3415177;-0.414349,0.0728211;0.008133211;-0.03210823,0.08322963;-0.290157;-0.001865754,0.07109335;-0.5829375;0.06241739,0.08364099;-0.6140809;0.00533589,-0.06865033;-2.533659E-06;-0.04107472,-0.1035753;-0.2957342;-0.00470126,-0.1041416;-0.5893286;0.05695882,-0.1061413;-0.6163696;-0.006764732,-0.006127686;0.3981877;0.03704762,99.68865
-0;0;0,-0.0008979367;0.1986895;0.02284035,-0.00344536;0.497859;0.0444584,0.106935;0.3744958;-0.003618173,0.2224891;0.2550218;-0.1148531,0.3027848;0.3780789;-0.3171141,-0.1096872;0.3589219;0.002206743,-0.2250917;0.2524124;-0.121638,-0.3325842;0.3238601;-0.3357422,0.07228679;0.006477661;-0.03365501,0.08361173;-0.2913538;0.000523854,0.07222153;-0.5839629;0.06571719,0.08419721;-0.6114572;0.003659047,-0.06987769;0.001773655;-0.03890966,-0.1023311;-0.2944735;-0.004494432,-0.1010535;-0.5884286;0.05541204,-0.1051517;-0.6156563;-0.007984143,-0.002542275;0.3979839;0.03954479,0;0;0,-0.002571181;0.1988254;0.02149102,-0.008017718;0.4980841;0.04118808,0.104429;0.3811137;-0.006377045,0.1878692;0.2966526;-0.1673244,0.2222238;0.3740035;-0.4025618,-0.1119136;0.3632602;-0.007555105,-0.1778212;0.2756652;-0.1748372,-0.2060617;0.3415177;-0.414349,0.0728211;0.008133211;-0.03210823,0.08322963;-0.290157;-0.001865754,0.07109335;-0.5829375;0.06241739,0.08364099;-0.6140809;0.00533589,-0.06865033;-2.533659E-06;-0.04107472,-0.1035753;-0.2957342;-0.00470126,-0.1041416;-0.5893286;0.05695882,-0.1061413;-0.6163696;-0.006764732,-0.006127686;0.3981877;0.03704762,99.71054
-0;0;0,-0.0008979367;0.1986895;0.02284035,-0.00344536;0.497859;0.0444584,0.106935;0.3744958;-0.003618173,0.2224891;0.2550218;-0.1148531,0.3027848;0.3780789;-0.3171141,-0.1096872;0.3589219;0.002206743,-0.2250917;0.2524124;-0.121638,-0.3325842;0.3238601;-0.3357422,0.07228679;0.006477661;-0.03365501,0.08361173;-0.2913538;0.000523854,0.07222153;-0.5839629;0.06571719,0.08419721;-0.6114572;0.003659047,-0.06987769;0.001773655;-0.03890966,-0.1023311;-0.2944735;-0.004494432,-0.1010535;-0.5884286;0.05541204,-0.1051517;-0.6156563;-0.007984143,-0.002542275;0.3979839;0.03954479,0;0;0,-0.002571181;0.1988254;0.02149102,-0.008017718;0.4980841;0.04118808,0.104429;0.3811137;-0.006377045,0.1878692;0.2966526;-0.1673244,0.2222238;0.3740035;-0.4025618,-0.1119136;0.3632602;-0.007555105,-0.1778212;0.2756652;-0.1748372,-0.2060617;0.3415177;-0.414349,0.0728211;0.008133211;-0.03210823,0.08322963;-0.290157;-0.001865754,0.07109335;-0.5829375;0.06241739,0.08364099;-0.6140809;0.00533589,-0.06865033;-2.533659E-06;-0.04107472,-0.1035753;-0.2957342;-0.00470126,-0.1041416;-0.5893286;0.05695882,-0.1061413;-0.6163696;-0.006764732,-0.006127686;0.3981877;0.03704762,99.72237
-0;0;0,-0.0009824778;0.1986776;0.02294047,-0.00358154;0.4978395;0.04466337,0.1068537;0.3743308;-0.003289834,0.2238599;0.2561152;-0.1143512,0.3081005;0.3787204;-0.3152778,-0.1098581;0.3588548;0.002574701,-0.2267911;0.2509785;-0.1186251,-0.3257714;0.3378733;-0.3311155,0.07228505;0.006463505;-0.03366147,0.08345297;-0.2913771;0.0004890896,0.07208415;-0.5839646;0.0657832,0.08453159;-0.6115798;0.003969543,-0.06988537;0.001785182;-0.03889536,-0.1027148;-0.2944468;-0.00470667,-0.101256;-0.5883366;0.05551486,-0.1052216;-0.6155385;-0.007921282,-0.002658593;0.3979668;0.03970301,0;0;0,-0.002688014;0.1988054;0.02166062,-0.008137617;0.4980571;0.04145539,0.1042688;0.3808828;-0.006145354,0.1915872;0.2862565;-0.1591858,0.2243683;0.3743244;-0.3908525,-0.1120637;0.3633163;-0.007304348,-0.1795584;0.2756631;-0.1739218,-0.211651;0.3414946;-0.4129538,0.07284652;0.008115295;-0.03205507,0.08314459;-0.2902046;-0.002068115,0.07101332;-0.5828791;0.06269676,0.08349918;-0.6138551;0.005364548,-0.06865361;2.225048E-05;-0.04106921,-0.1036495;-0.2956649;-0.004403587,-0.1040222;-0.5893323;0.05691005,-0.1068737;-0.6156572;-0.00763746,-0.006249554;0.3981615;0.03729592,99.73338
-0;0;0,-0.0009824778;0.1986776;0.02294047,-0.00358154;0.4978395;0.04466337,0.1068537;0.3743308;-0.003289834,0.2238599;0.2561152;-0.1143512,0.3081005;0.3787204;-0.3152778,-0.1098581;0.3588548;0.002574701,-0.2267911;0.2509785;-0.1186251,-0.3257714;0.3378733;-0.3311155,0.07228505;0.006463505;-0.03366147,0.08345297;-0.2913771;0.0004890896,0.07208415;-0.5839646;0.0657832,0.08453159;-0.6115798;0.003969543,-0.06988537;0.001785182;-0.03889536,-0.1027148;-0.2944468;-0.00470667,-0.101256;-0.5883366;0.05551486,-0.1052216;-0.6155385;-0.007921282,-0.002658593;0.3979668;0.03970301,0;0;0,-0.002688014;0.1988054;0.02166062,-0.008137617;0.4980571;0.04145539,0.1042688;0.3808828;-0.006145354,0.1915872;0.2862565;-0.1591858,0.2243683;0.3743244;-0.3908525,-0.1120637;0.3633163;-0.007304348,-0.1795584;0.2756631;-0.1739218,-0.211651;0.3414946;-0.4129538,0.07284652;0.008115295;-0.03205507,0.08314459;-0.2902046;-0.002068115,0.07101332;-0.5828791;0.06269676,0.08349918;-0.6138551;0.005364548,-0.06865361;2.225048E-05;-0.04106921,-0.1036495;-0.2956649;-0.004403587,-0.1040222;-0.5893323;0.05691005,-0.1068737;-0.6156572;-0.00763746,-0.006249554;0.3981615;0.03729592,99.75528
-0;0;0,-0.001024477;0.1986728;0.02297991,-0.003637617;0.4978263;0.04481254,0.1068857;0.3742004;-0.002866253,0.2251353;0.2571311;-0.1138248,0.3119617;0.3800076;-0.3134809,-0.1098827;0.3589836;0.002443586,-0.227502;0.2505134;-0.117556,-0.3263807;0.3414324;-0.3284037,0.07224826;0.006446078;-0.0337437,0.08346152;-0.2913944;0.0003927648,0.07210726;-0.5839573;0.06579953,0.08453473;-0.6115434;0.003945239,-0.0699043;0.001791339;-0.03886104,-0.1026979;-0.2944504;-0.004722685,-0.1012422;-0.588335;0.05552463,-0.1046799;-0.6145123;-0.009168409,-0.002719436;0.3979551;0.03982357,0;0;0,-0.002688014;0.1988054;0.02166062,-0.008137617;0.4980571;0.04145539,0.1042688;0.3808828;-0.006145354,0.1915872;0.2862565;-0.1591858,0.2243683;0.3743244;-0.3908525,-0.1120637;0.3633163;-0.007304348,-0.1795584;0.2756631;-0.1739218,-0.211651;0.3414946;-0.4129538,0.07284652;0.008115295;-0.03205507,0.08314459;-0.2902046;-0.002068115,0.07101332;-0.5828791;0.06269676,0.08349918;-0.6138551;0.005364548,-0.06865361;2.225048E-05;-0.04106921,-0.1036495;-0.2956649;-0.004403587,-0.1040222;-0.5893323;0.05691005,-0.1068737;-0.6156572;-0.00763746,-0.006249554;0.3981615;0.03729592,99.77728
-0;0;0,-0.001024477;0.1986728;0.02297991,-0.003637617;0.4978263;0.04481254,0.1068857;0.3742004;-0.002866253,0.2251353;0.2571311;-0.1138248,0.3119617;0.3800076;-0.3134809,-0.1098827;0.3589836;0.002443586,-0.227502;0.2505134;-0.117556,-0.3263807;0.3414324;-0.3284037,0.07224826;0.006446078;-0.0337437,0.08346152;-0.2913944;0.0003927648,0.07210726;-0.5839573;0.06579953,0.08453473;-0.6115434;0.003945239,-0.0699043;0.001791339;-0.03886104,-0.1026979;-0.2944504;-0.004722685,-0.1012422;-0.588335;0.05552463,-0.1046799;-0.6145123;-0.009168409,-0.002719436;0.3979551;0.03982357,0;0;0,-0.002772647;0.1987967;0.02172978,-0.008331995;0.4980405;0.04161717,0.1041237;0.3807404;-0.00594474,0.192135;0.2855472;-0.1582348,0.2299453;0.3747125;-0.3887124,-0.1122241;0.3633113;-0.007175691,-0.1843761;0.2721961;-0.1699397,-0.2172589;0.3353153;-0.409595,0.0728545;0.008118501;-0.0320361,0.08305241;-0.2901995;-0.0019965,0.0710509;-0.5828531;0.0628866,0.0832954;-0.6138392;0.005516555,-0.06865343;1.480197E-05;-0.04106952,-0.103736;-0.2956549;-0.00434548,-0.1043034;-0.5892137;0.05748409,-0.107511;-0.6165044;-0.005886782,-0.006404826;0.3981473;0.03741948,99.78916
-0;0;0,-0.001035606;0.1986709;0.02299586,-0.003637696;0.4978192;0.04489908,0.1070781;0.3744062;-0.002389256,0.2258793;0.2575988;-0.1130343,0.3155679;0.3805299;-0.3113872,-0.1098919;0.3591425;0.002332725,-0.2287783;0.2515743;-0.1172295,-0.3279966;0.3458697;-0.3264282,0.07224925;0.006436157;-0.03374349,0.08339059;-0.2914221;0.0002613142,0.07200009;-0.5839844;0.06566475,0.08494651;-0.612953;0.005695172,-0.06990556;0.001798237;-0.03885844,-0.1027053;-0.2944436;-0.004727334,-0.1010888;-0.5882087;0.056096,-0.103316;-0.614256;-0.008802779,-0.002731237;0.3979487;0.03989138,0;0;0,-0.002772647;0.1987967;0.02172978,-0.008331995;0.4980405;0.04161717,0.1041237;0.3807404;-0.00594474,0.192135;0.2855472;-0.1582348,0.2299453;0.3747125;-0.3887124,-0.1122241;0.3633113;-0.007175691,-0.1843761;0.2721961;-0.1699397,-0.2172589;0.3353153;-0.409595,0.0728545;0.008118501;-0.0320361,0.08305241;-0.2901995;-0.0019965,0.0710509;-0.5828531;0.0628866,0.0832954;-0.6138392;0.005516555,-0.06865343;1.480197E-05;-0.04106952,-0.103736;-0.2956549;-0.00434548,-0.1043034;-0.5892137;0.05748409,-0.107511;-0.6165044;-0.005886782,-0.006404826;0.3981473;0.03741948,99.81107
-0;0;0,-0.001016537;0.1986635;0.02306018,-0.00355979;0.4978066;0.0450464,0.1071527;0.3739869;-0.001969907,0.2271283;0.2574575;-0.1116366,0.3210434;0.3802547;-0.3081074,-0.1098569;0.3593092;0.00228411,-0.2299319;0.2524148;-0.1166931,-0.333572;0.346976;-0.3236155,0.07227882;0.006430791;-0.03368111,0.08334719;-0.2914315;0.0003121495,0.07204369;-0.5839813;0.06578618,0.08493529;-0.612938;0.005789187,-0.0698761;0.001798425;-0.0389114,-0.1026305;-0.2944311;-0.004630022,-0.1009933;-0.5882028;0.05616049,-0.1028368;-0.6133993;-0.009734016,-0.002687335;0.3979378;0.04000043,0;0;0,-0.002772647;0.1987967;0.02172978,-0.008331995;0.4980405;0.04161717,0.1041237;0.3807404;-0.00594474,0.192135;0.2855472;-0.1582348,0.2299453;0.3747125;-0.3887124,-0.1122241;0.3633113;-0.007175691,-0.1843761;0.2721961;-0.1699397,-0.2172589;0.3353153;-0.409595,0.0728545;0.008118501;-0.0320361,0.08305241;-0.2901995;-0.0019965,0.0710509;-0.5828531;0.0628866,0.0832954;-0.6138392;0.005516555,-0.06865343;1.480197E-05;-0.04106952,-0.103736;-0.2956549;-0.00434548,-0.1043034;-0.5892137;0.05748409,-0.107511;-0.6165044;-0.005886782,-0.006404826;0.3981473;0.03741948,99.83336
-0;0;0,-0.001016537;0.1986635;0.02306018,-0.00355979;0.4978066;0.0450464,0.1071527;0.3739869;-0.001969907,0.2271283;0.2574575;-0.1116366,0.3210434;0.3802547;-0.3081074,-0.1098569;0.3593092;0.00228411,-0.2299319;0.2524148;-0.1166931,-0.333572;0.346976;-0.3236155,0.07227882;0.006430791;-0.03368111,0.08334719;-0.2914315;0.0003121495,0.07204369;-0.5839813;0.06578618,0.08493529;-0.612938;0.005789187,-0.0698761;0.001798425;-0.0389114,-0.1026305;-0.2944311;-0.004630022,-0.1009933;-0.5882028;0.05616049,-0.1028368;-0.6133993;-0.009734016,-0.002687335;0.3979378;0.04000043,0;0;0,-0.002797534;0.1987925;0.02176547,-0.008328685;0.4980353;0.0416727,0.1041157;0.3803392;-0.005717594,0.1946451;0.2883204;-0.158482,0.2364666;0.3744524;-0.3894197,-0.112308;0.3632048;-0.006872725,-0.1877527;0.274868;-0.1696754,-0.2213533;0.3364326;-0.4096354,0.07284243;0.008056534;-0.03207918,0.08298668;-0.2902683;-0.002088897,0.07111326;-0.5829289;0.06278642,0.08318989;-0.6140092;0.005513947,-0.06867681;4.982241E-05;-0.04103039,-0.1041488;-0.2956058;-0.004568487,-0.1046047;-0.5891678;0.05724714,-0.107757;-0.6158363;-0.006877858,-0.006417518;0.3981418;0.03747366,99.8447
-0;0;0,-0.001016537;0.1986635;0.02306018,-0.00355979;0.4978066;0.0450464,0.1071527;0.3739869;-0.001969907,0.2271283;0.2574575;-0.1116366,0.3210434;0.3802547;-0.3081074,-0.1098569;0.3593092;0.00228411,-0.2299319;0.2524148;-0.1166931,-0.333572;0.346976;-0.3236155,0.07227882;0.006430791;-0.03368111,0.08334719;-0.2914315;0.0003121495,0.07204369;-0.5839813;0.06578618,0.08493529;-0.612938;0.005789187,-0.0698761;0.001798425;-0.0389114,-0.1026305;-0.2944311;-0.004630022,-0.1009933;-0.5882028;0.05616049,-0.1028368;-0.6133993;-0.009734016,-0.002687335;0.3979378;0.04000043,0;0;0,-0.002797534;0.1987925;0.02176547,-0.008328685;0.4980353;0.0416727,0.1041157;0.3803392;-0.005717594,0.1946451;0.2883204;-0.158482,0.2364666;0.3744524;-0.3894197,-0.112308;0.3632048;-0.006872725,-0.1877527;0.274868;-0.1696754,-0.2213533;0.3364326;-0.4096354,0.07284243;0.008056534;-0.03207918,0.08298668;-0.2902683;-0.002088897,0.07111326;-0.5829289;0.06278642,0.08318989;-0.6140092;0.005513947,-0.06867681;4.982241E-05;-0.04103039,-0.1041488;-0.2956058;-0.004568487,-0.1046047;-0.5891678;0.05724714,-0.107757;-0.6158363;-0.006877858,-0.006417518;0.3981418;0.03747366,99.85596
-0;0;0,-0.0009870883;0.1986521;0.02315985,-0.003268648;0.4977743;0.04547304,0.1073625;0.3737938;-0.001468834,0.2289423;0.257904;-0.110041,0.3245453;0.3812234;-0.3053674,-0.1098155;0.3592032;0.002994917,-0.2314476;0.2531306;-0.1151332,-0.3367722;0.347691;-0.3212037,0.07231436;0.006413779;-0.03360797,0.08340567;-0.2914529;0.0003394224,0.07208037;-0.5839534;0.0660294,0.08540706;-0.6122499;0.005267084,-0.06985038;0.001803638;-0.03895731,-0.1025669;-0.2944151;-0.004546698,-0.100915;-0.5881671;0.05633916,-0.102614;-0.6138338;-0.009018805,-0.002524739;0.3979119;0.04028188,0;0;0,-0.002797534;0.1987925;0.02176547,-0.008328685;0.4980353;0.0416727,0.1041157;0.3803392;-0.005717594,0.1946451;0.2883204;-0.158482,0.2364666;0.3744524;-0.3894197,-0.112308;0.3632048;-0.006872725,-0.1877527;0.274868;-0.1696754,-0.2213533;0.3364326;-0.4096354,0.07284243;0.008056534;-0.03207918,0.08298668;-0.2902683;-0.002088897,0.07111326;-0.5829289;0.06278642,0.08318989;-0.6140092;0.005513947,-0.06867681;4.982241E-05;-0.04103039,-0.1041488;-0.2956058;-0.004568487,-0.1046047;-0.5891678;0.05724714,-0.107757;-0.6158363;-0.006877858,-0.006417518;0.3981418;0.03747366,99.87807
-0;0;0,-0.0009870883;0.1986521;0.02315985,-0.003268648;0.4977743;0.04547304,0.1073625;0.3737938;-0.001468834,0.2289423;0.257904;-0.110041,0.3245453;0.3812234;-0.3053674,-0.1098155;0.3592032;0.002994917,-0.2314476;0.2531306;-0.1151332,-0.3367722;0.347691;-0.3212037,0.07231436;0.006413779;-0.03360797,0.08340567;-0.2914529;0.0003394224,0.07208037;-0.5839534;0.0660294,0.08540706;-0.6122499;0.005267084,-0.06985038;0.001803638;-0.03895731,-0.1025669;-0.2944151;-0.004546698,-0.100915;-0.5881671;0.05633916,-0.102614;-0.6138338;-0.009018805,-0.002524739;0.3979119;0.04028188,0;0;0,-0.002842076;0.1987879;0.02180137,-0.008364357;0.4980288;0.04173788,0.1040962;0.3802486;-0.005563714,0.1957986;0.2886638;-0.1578887,0.2424425;0.3754961;-0.3876375,-0.1123932;0.3632532;-0.00675359,-0.1901021;0.2740797;-0.1680279,-0.2302765;0.3324575;-0.4077737,0.07278576;0.008016407;-0.03221756,0.08281937;-0.2902876;-0.001984362,0.07092889;-0.5829501;0.06287947,0.08250704;-0.6139287;0.005360708,-0.06873124;7.444061E-05;-0.0409391,-0.1042563;-0.2955757;-0.004484236,-0.1046588;-0.5891521;0.05726337,-0.1080887;-0.6154419;-0.007297456,-0.006459909;0.3981353;0.03753392,99.8896
-0;0;0,-0.001011345;0.1986436;0.02323111,-0.003275531;0.4977611;0.04560694,0.1074146;0.3737727;-0.001168996,0.2302831;0.257008;-0.107326,0.33053;0.3790916;-0.3010943,-0.1099805;0.3591527;0.003587916,-0.2332725;0.2546121;-0.1141845,-0.3415871;0.3479804;-0.3192462,0.07233792;0.006381832;-0.03356333,0.08333981;-0.2914748;0.0005013272,0.07212131;-0.5839928;0.06613187,0.0855764;-0.6129445;0.006252035,-0.06981467;0.00182796;-0.03902012,-0.1026473;-0.2943703;-0.004543819,-0.1012429;-0.5881162;0.05637737,-0.102339;-0.6135021;-0.009317003,-0.002539561;0.3978994;0.04040013,0;0;0,-0.002842076;0.1987879;0.02180137,-0.008364357;0.4980288;0.04173788,0.1040962;0.3802486;-0.005563714,0.1957986;0.2886638;-0.1578887,0.2424425;0.3754961;-0.3876375,-0.1123932;0.3632532;-0.00675359,-0.1901021;0.2740797;-0.1680279,-0.2302765;0.3324575;-0.4077737,0.07278576;0.008016407;-0.03221756,0.08281937;-0.2902876;-0.001984362,0.07092889;-0.5829501;0.06287947,0.08250704;-0.6139287;0.005360708,-0.06873124;7.444061E-05;-0.0409391,-0.1042563;-0.2955757;-0.004484236,-0.1046588;-0.5891521;0.05726337,-0.1080887;-0.6154419;-0.007297456,-0.006459909;0.3981353;0.03753392,99.90075
-0;0;0,-0.001011345;0.1986436;0.02323111,-0.003275531;0.4977611;0.04560694,0.1074146;0.3737727;-0.001168996,0.2302831;0.257008;-0.107326,0.33053;0.3790916;-0.3010943,-0.1099805;0.3591527;0.003587916,-0.2332725;0.2546121;-0.1141845,-0.3415871;0.3479804;-0.3192462,0.07233792;0.006381832;-0.03356333,0.08333981;-0.2914748;0.0005013272,0.07212131;-0.5839928;0.06613187,0.0855764;-0.6129445;0.006252035,-0.06981467;0.00182796;-0.03902012,-0.1026473;-0.2943703;-0.004543819,-0.1012429;-0.5881162;0.05637737,-0.102339;-0.6135021;-0.009317003,-0.002539561;0.3978994;0.04040013,0;0;0,-0.002842076;0.1987879;0.02180137,-0.008364357;0.4980288;0.04173788,0.1040962;0.3802486;-0.005563714,0.1957986;0.2886638;-0.1578887,0.2424425;0.3754961;-0.3876375,-0.1123932;0.3632532;-0.00675359,-0.1901021;0.2740797;-0.1680279,-0.2302765;0.3324575;-0.4077737,0.07278576;0.008016407;-0.03221756,0.08281937;-0.2902876;-0.001984362,0.07092889;-0.5829501;0.06287947,0.08250704;-0.6139287;0.005360708,-0.06873124;7.444061E-05;-0.0409391,-0.1042563;-0.2955757;-0.004484236,-0.1046588;-0.5891521;0.05726337,-0.1080887;-0.6154419;-0.007297456,-0.006459909;0.3981353;0.03753392,99.91203
-0;0;0,-0.001023663;0.1986408;0.02325432,-0.003263315;0.4977556;0.04566395,0.1074677;0.3736681;-0.0009333603,0.2320954;0.2555854;-0.1035219,0.3347779;0.3778296;-0.2959086,-0.11;0.3590981;0.003773898,-0.2356156;0.2558327;-0.1126605,-0.3460885;0.3478276;-0.3171909,0.07237499;0.006381457;-0.03348338,0.08336909;-0.2914907;0.0004475266,0.07218908;-0.5839977;0.06613392,0.08563532;-0.6129801;0.006292574,-0.06974886;0.00184046;-0.03913706,-0.102542;-0.2943418;-0.004486345,-0.1010966;-0.5880909;0.05641836,-0.1022718;-0.613022;-0.009792969,-0.00253237;0.397894;0.04045615,0;0;0,-0.002848487;0.1987808;0.02186511,-0.008291982;0.4980178;0.0418847,0.1042062;0.3802473;-0.005250327,0.1984534;0.289471;-0.1565022,0.250686;0.3760548;-0.3851395,-0.1124034;0.3633053;-0.006592751,-0.1922806;0.2746338;-0.1670827,-0.2379835;0.3304811;-0.4064408,0.07279085;0.00795346;-0.03222164,0.08280642;-0.2903544;-0.002020005,0.07091058;-0.5829531;0.06312951,0.08236086;-0.6136808;0.005233623,-0.06874719;0.0001491147;-0.04091211,-0.1042716;-0.295498;-0.004431695,-0.104754;-0.5890561;0.05740196,-0.1073121;-0.6161651;-0.00621929,-0.006429433;0.398125;0.03764646,99.9339
-0;0;0,-0.001023663;0.1986408;0.02325432,-0.003263315;0.4977556;0.04566395,0.1074677;0.3736681;-0.0009333603,0.2320954;0.2555854;-0.1035219,0.3347779;0.3778296;-0.2959086,-0.11;0.3590981;0.003773898,-0.2356156;0.2558327;-0.1126605,-0.3460885;0.3478276;-0.3171909,0.07237499;0.006381457;-0.03348338,0.08336909;-0.2914907;0.0004475266,0.07218908;-0.5839977;0.06613392,0.08563532;-0.6129801;0.006292574,-0.06974886;0.00184046;-0.03913706,-0.102542;-0.2943418;-0.004486345,-0.1010966;-0.5880909;0.05641836,-0.1022718;-0.613022;-0.009792969,-0.00253237;0.397894;0.04045615,0;0;0,-0.002848487;0.1987808;0.02186511,-0.008291982;0.4980178;0.0418847,0.1042062;0.3802473;-0.005250327,0.1984534;0.289471;-0.1565022,0.250686;0.3760548;-0.3851395,-0.1124034;0.3633053;-0.006592751,-0.1922806;0.2746338;-0.1670827,-0.2379835;0.3304811;-0.4064408,0.07279085;0.00795346;-0.03222164,0.08280642;-0.2903544;-0.002020005,0.07091058;-0.5829531;0.06312951,0.08236086;-0.6136808;0.005233623,-0.06874719;0.0001491147;-0.04091211,-0.1042716;-0.295498;-0.004431695,-0.104754;-0.5890561;0.05740196,-0.1073121;-0.6161651;-0.00621929,-0.006429433;0.398125;0.03764646,99.9561
-0;0;0,-0.001026486;0.1986402;0.02325974,-0.00320967;0.4977553;0.04566745,0.1076258;0.3734122;-0.000415545,0.2336172;0.2557724;-0.1018405,0.3376956;0.3788213;-0.29296,-0.1100867;0.3591299;0.004084524,-0.2372242;0.2569321;-0.1116379,-0.3515;0.3485011;-0.3142611,0.07239866;0.006364675;-0.03343537,0.08334181;-0.2915109;0.000482142,0.07210733;-0.5840349;0.06608333,0.08557662;-0.6129887;0.006209403,-0.06969944;0.001869959;-0.03922361,-0.102583;-0.2942955;-0.004515175,-0.1008007;-0.5879566;0.05680363,-0.1020709;-0.6147301;-0.007260516,-0.002506335;0.3978929;0.04046983,0;0;0,-0.002848487;0.1987808;0.02186511,-0.008291982;0.4980178;0.0418847,0.1042062;0.3802473;-0.005250327,0.1984534;0.289471;-0.1565022,0.250686;0.3760548;-0.3851395,-0.1124034;0.3633053;-0.006592751,-0.1922806;0.2746338;-0.1670827,-0.2379835;0.3304811;-0.4064408,0.07279085;0.00795346;-0.03222164,0.08280642;-0.2903544;-0.002020005,0.07091058;-0.5829531;0.06312951,0.08236086;-0.6136808;0.005233623,-0.06874719;0.0001491147;-0.04091211,-0.1042716;-0.295498;-0.004431695,-0.104754;-0.5890561;0.05740196,-0.1073121;-0.6161651;-0.00621929,-0.006429433;0.398125;0.03764646,99.96761
-0;0;0,-0.001026486;0.1986402;0.02325974,-0.00320967;0.4977553;0.04566745,0.1076258;0.3734122;-0.000415545,0.2336172;0.2557724;-0.1018405,0.3376956;0.3788213;-0.29296,-0.1100867;0.3591299;0.004084524,-0.2372242;0.2569321;-0.1116379,-0.3515;0.3485011;-0.3142611,0.07239866;0.006364675;-0.03343537,0.08334181;-0.2915109;0.000482142,0.07210733;-0.5840349;0.06608333,0.08557662;-0.6129887;0.006209403,-0.06969944;0.001869959;-0.03922361,-0.102583;-0.2942955;-0.004515175,-0.1008007;-0.5879566;0.05680363,-0.1020709;-0.6147301;-0.007260516,-0.002506335;0.3978929;0.04046983,0;0;0,-0.002834719;0.1987752;0.02191746,-0.008200792;0.4980078;0.0420253,0.1043725;0.3802267;-0.004853964,0.2024769;0.2901351;-0.1540486,0.2568837;0.3765476;-0.3822432,-0.1124394;0.3629631;-0.00599657,-0.1950166;0.2752737;-0.1656574,-0.2459462;0.3280692;-0.4046528,0.07279957;0.007880608;-0.03221986,0.08287465;-0.2904304;-0.002069155,0.07115257;-0.582975;0.06335448,0.08268663;-0.6131201;0.004671313,-0.06876831;0.0002453729;-0.04087615,-0.1042338;-0.2954047;-0.004362468,-0.1046757;-0.5889649;0.05746152,-0.1072725;-0.616163;-0.006049998,-0.00637272;0.3981158;0.03775439,99.97922
-0;0;0,-0.001022693;0.1986393;0.02326781,-0.003143107;0.4977545;0.04567401,0.1078074;0.3733333;4.533306E-05,0.23501;0.2554494;-0.09956837,0.3428313;0.3789344;-0.2883169,-0.1101547;0.3591651;0.004368376,-0.2391689;0.2588671;-0.1109384,-0.3559017;0.3532196;-0.310866,0.0724212;0.006331757;-0.03339278,0.08332502;-0.2915595;0.0003989488,0.07211804;-0.584071;0.06606071,0.08522823;-0.6132298;0.006378237,-0.06965341;0.001932223;-0.03930228,-0.1025562;-0.2942246;-0.004538249,-0.1007292;-0.5878521;0.0569398,-0.101999;-0.6155064;-0.00605382,-0.002471207;0.3978914;0.04048691,0;0;0,-0.002834719;0.1987752;0.02191746,-0.008200792;0.4980078;0.0420253,0.1043725;0.3802267;-0.004853964,0.2024769;0.2901351;-0.1540486,0.2568837;0.3765476;-0.3822432,-0.1124394;0.3629631;-0.00599657,-0.1950166;0.2752737;-0.1656574,-0.2459462;0.3280692;-0.4046528,0.07279957;0.007880608;-0.03221986,0.08287465;-0.2904304;-0.002069155,0.07115257;-0.582975;0.06335448,0.08268663;-0.6131201;0.004671313,-0.06876831;0.0002453729;-0.04087615,-0.1042338;-0.2954047;-0.004362468,-0.1046757;-0.5889649;0.05746152,-0.1072725;-0.616163;-0.006049998,-0.00637272;0.3981158;0.03775439,100.003
-0;0;0,-0.001031466;0.1986311;0.02333739,-0.003134029;0.497741;0.04580958,0.1078859;0.3733228;0.0003782958,0.2373154;0.2568377;-0.09800472,0.348457;0.3791765;-0.2855701,-0.1101887;0.3591777;0.00458087,-0.2408282;0.2597783;-0.1096692,-0.3613167;0.3513465;-0.3086611,0.0724844;0.00623722;-0.03327323,0.08336478;-0.2916592;0.0004812181,0.07146639;-0.5842059;0.06586364,0.08595873;-0.6132284;0.006320223,-0.06957132;0.002035972;-0.03944219,-0.1024268;-0.2940975;-0.004435275,-0.1006891;-0.5877367;0.05698942,-0.1026476;-0.6151962;-0.006225955,-0.002467986;0.3978782;0.04061578,0;0;0,-0.002834719;0.1987752;0.02191746,-0.008200792;0.4980078;0.0420253,0.1043725;0.3802267;-0.004853964,0.2024769;0.2901351;-0.1540486,0.2568837;0.3765476;-0.3822432,-0.1124394;0.3629631;-0.00599657,-0.1950166;0.2752737;-0.1656574,-0.2459462;0.3280692;-0.4046528,0.07279957;0.007880608;-0.03221986,0.08287465;-0.2904304;-0.002069155,0.07115257;-0.582975;0.06335448,0.08268663;-0.6131201;0.004671313,-0.06876831;0.0002453729;-0.04087615,-0.1042338;-0.2954047;-0.004362468,-0.1046757;-0.5889649;0.05746152,-0.1072725;-0.616163;-0.006049998,-0.00637272;0.3981158;0.03775439,100.023
-0;0;0,-0.001031466;0.1986311;0.02333739,-0.003134029;0.497741;0.04580958,0.1078859;0.3733228;0.0003782958,0.2373154;0.2568377;-0.09800472,0.348457;0.3791765;-0.2855701,-0.1101887;0.3591777;0.00458087,-0.2408282;0.2597783;-0.1096692,-0.3613167;0.3513465;-0.3086611,0.0724844;0.00623722;-0.03327323,0.08336478;-0.2916592;0.0004812181,0.07146639;-0.5842059;0.06586364,0.08595873;-0.6132284;0.006320223,-0.06957132;0.002035972;-0.03944219,-0.1024268;-0.2940975;-0.004435275,-0.1006891;-0.5877367;0.05698942,-0.1026476;-0.6151962;-0.006225955,-0.002467986;0.3978782;0.04061578,0;0;0,-0.002823452;0.1987691;0.02197444,-0.008050486;0.4980015;0.0421188,0.1045275;0.3801272;-0.00452885,0.205753;0.2893356;-0.1511927,0.2647592;0.3773371;-0.3776304,-0.112415;0.3628916;-0.005723156,-0.1984924;0.2768084;-0.1644064,-0.2518367;0.3265609;-0.4035279,0.07283194;0.007828639;-0.0321593,0.08287564;-0.2904839;-0.002013549,0.07107887;-0.5830026;0.06351224,0.08255833;-0.6134939;0.005293973,-0.06874198;0.000316484;-0.04091991,-0.1043604;-0.2953145;-0.004400197,-0.1046807;-0.5888661;0.0574653,-0.1072496;-0.6156868;-0.00650334,-0.006293569;0.3981084;0.03784298,100.0347
-0;0;0,-0.001031466;0.1986311;0.02333739,-0.003134029;0.497741;0.04580958,0.1078859;0.3733228;0.0003782958,0.2373154;0.2568377;-0.09800472,0.348457;0.3791765;-0.2855701,-0.1101887;0.3591777;0.00458087,-0.2408282;0.2597783;-0.1096692,-0.3613167;0.3513465;-0.3086611,0.0724844;0.00623722;-0.03327323,0.08336478;-0.2916592;0.0004812181,0.07146639;-0.5842059;0.06586364,0.08595873;-0.6132284;0.006320223,-0.06957132;0.002035972;-0.03944219,-0.1024268;-0.2940975;-0.004435275,-0.1006891;-0.5877367;0.05698942,-0.1026476;-0.6151962;-0.006225955,-0.002467986;0.3978782;0.04061578,0;0;0,-0.002823452;0.1987691;0.02197444,-0.008050486;0.4980015;0.0421188,0.1045275;0.3801272;-0.00452885,0.205753;0.2893356;-0.1511927,0.2647592;0.3773371;-0.3776304,-0.112415;0.3628916;-0.005723156,-0.1984924;0.2768084;-0.1644064,-0.2518367;0.3265609;-0.4035279,0.07283194;0.007828639;-0.0321593,0.08287564;-0.2904839;-0.002013549,0.07107887;-0.5830026;0.06351224,0.08255833;-0.6134939;0.005293973,-0.06874198;0.000316484;-0.04091991,-0.1043604;-0.2953145;-0.004400197,-0.1046807;-0.5888661;0.0574653,-0.1072496;-0.6156868;-0.00650334,-0.006293569;0.3981084;0.03784298,100.046
-0;0;0,-0.001038975;0.1986323;0.02332655,-0.003094703;0.4977438;0.0457773,0.1078426;0.3731624;0.0002897643,0.2397382;0.2575837;-0.09586175,0.3552515;0.3801242;-0.2806332,-0.1102693;0.3592446;0.004795469,-0.2435917;0.2615137;-0.1077826,-0.3662577;0.3533731;-0.3053045,0.07249109;0.006245323;-0.03325715,0.08330929;-0.2916557;0.0004765503,0.0714911;-0.5842037;0.06586757,0.08595589;-0.6128824;0.005863938,-0.06957225;0.002023965;-0.03944118,-0.1024651;-0.2941043;-0.004425,-0.1007225;-0.587745;0.05699252,-0.1028624;-0.6154436;-0.005922839,-0.002448502;0.39788;0.04060003,0;0;0,-0.002823452;0.1987691;0.02197444,-0.008050486;0.4980015;0.0421188,0.1045275;0.3801272;-0.00452885,0.205753;0.2893356;-0.1511927,0.2647592;0.3773371;-0.3776304,-0.112415;0.3628916;-0.005723156,-0.1984924;0.2768084;-0.1644064,-0.2518367;0.3265609;-0.4035279,0.07283194;0.007828639;-0.0321593,0.08287564;-0.2904839;-0.002013549,0.07107887;-0.5830026;0.06351224,0.08255833;-0.6134939;0.005293973,-0.06874198;0.000316484;-0.04091991,-0.1043604;-0.2953145;-0.004400197,-0.1046807;-0.5888661;0.0574653,-0.1072496;-0.6156868;-0.00650334,-0.006293569;0.3981084;0.03784298,100.0584
-0;0;0,-0.001038975;0.1986323;0.02332655,-0.003094703;0.4977438;0.0457773,0.1078426;0.3731624;0.0002897643,0.2397382;0.2575837;-0.09586175,0.3552515;0.3801242;-0.2806332,-0.1102693;0.3592446;0.004795469,-0.2435917;0.2615137;-0.1077826,-0.3662577;0.3533731;-0.3053045,0.07249109;0.006245323;-0.03325715,0.08330929;-0.2916557;0.0004765503,0.0714911;-0.5842037;0.06586757,0.08595589;-0.6128824;0.005863938,-0.06957225;0.002023965;-0.03944118,-0.1024651;-0.2941043;-0.004425,-0.1007225;-0.587745;0.05699252,-0.1028624;-0.6154436;-0.005922839,-0.002448502;0.39788;0.04060003,0;0;0,-0.002786868;0.1987651;0.02201503,-0.007805476;0.4979975;0.04220882,0.1047065;0.3797431;-0.004213504,0.2095405;0.288868;-0.1482674,0.2738288;0.3761771;-0.373532,-0.1122975;0.3628891;-0.005563557,-0.203581;0.275972;-0.1608463,-0.2591053;0.3227457;-0.4000728,0.07283477;0.007753806;-0.03217104,0.08287027;-0.2905516;-0.001952,0.07100768;-0.5830586;0.06361414,0.08254552;-0.6136088;0.005489007,-0.06875584;0.0003886383;-0.04089601,-0.1043991;-0.295242;-0.004398592,-0.1046364;-0.5887971;0.05745113,-0.1072271;-0.615076;-0.007161688,-0.006142358;0.3981032;0.03792251,100.0794
-0;0;0,-0.001025323;0.1986352;0.02330277,-0.002997157;0.4977505;0.04570053,0.1081034;0.3734003;0.0006619655,0.2407292;0.2577267;-0.0943644,0.3605371;0.3809899;-0.2758919,-0.1102538;0.3592053;0.004936334,-0.2448391;0.262689;-0.107186,-0.3714041;0.3545876;-0.3022141,0.07251885;0.006212237;-0.03320277,0.08332064;-0.2916973;0.0004610978,0.07148129;-0.5841979;0.0660598,0.08625887;-0.612049;0.00506125,-0.06952583;0.002086457;-0.03951969,-0.1024261;-0.2940307;-0.004416782,-0.100585;-0.5876766;0.05697286,-0.1029406;-0.6155383;-0.005732898,-0.002389089;0.3978845;0.04056099,0;0;0,-0.002786868;0.1987651;0.02201503,-0.007805476;0.4979975;0.04220882,0.1047065;0.3797431;-0.004213504,0.2095405;0.288868;-0.1482674,0.2738288;0.3761771;-0.373532,-0.1122975;0.3628891;-0.005563557,-0.203581;0.275972;-0.1608463,-0.2591053;0.3227457;-0.4000728,0.07283477;0.007753806;-0.03217104,0.08287027;-0.2905516;-0.001952,0.07100768;-0.5830586;0.06361414,0.08254552;-0.6136088;0.005489007,-0.06875584;0.0003886383;-0.04089601,-0.1043991;-0.295242;-0.004398592,-0.1046364;-0.5887971;0.05745113,-0.1072271;-0.615076;-0.007161688,-0.006142358;0.3981032;0.03792251,100.1017
-0;0;0,-0.001025323;0.1986352;0.02330277,-0.002997157;0.4977505;0.04570053,0.1081034;0.3734003;0.0006619655,0.2407292;0.2577267;-0.0943644,0.3605371;0.3809899;-0.2758919,-0.1102538;0.3592053;0.004936334,-0.2448391;0.262689;-0.107186,-0.3714041;0.3545876;-0.3022141,0.07251885;0.006212237;-0.03320277,0.08332064;-0.2916973;0.0004610978,0.07148129;-0.5841979;0.0660598,0.08625887;-0.612049;0.00506125,-0.06952583;0.002086457;-0.03951969,-0.1024261;-0.2940307;-0.004416782,-0.100585;-0.5876766;0.05697286,-0.1029406;-0.6155383;-0.005732898,-0.002389089;0.3978845;0.04056099,0;0;0,-0.002786868;0.1987651;0.02201503,-0.007805476;0.4979975;0.04220882,0.1047065;0.3797431;-0.004213504,0.2095405;0.288868;-0.1482674,0.2738288;0.3761771;-0.373532,-0.1122975;0.3628891;-0.005563557,-0.203581;0.275972;-0.1608463,-0.2591053;0.3227457;-0.4000728,0.07283477;0.007753806;-0.03217104,0.08287027;-0.2905516;-0.001952,0.07100768;-0.5830586;0.06361414,0.08254552;-0.6136088;0.005489007,-0.06875584;0.0003886383;-0.04089601,-0.1043991;-0.295242;-0.004398592,-0.1046364;-0.5887971;0.05745113,-0.1072271;-0.615076;-0.007161688,-0.006142358;0.3981032;0.03792251,100.1132
-0;0;0,-0.00100777;0.1986383;0.02327701,-0.002844304;0.4977623;0.04555769,0.1083616;0.3731907;0.001188416,0.2426043;0.2577701;-0.09185448,0.3655747;0.3824411;-0.2702793,-0.1102724;0.3592983;0.005093422,-0.2471851;0.2637488;-0.1050211,-0.3761458;0.3563572;-0.2981347,0.07254229;0.00620337;-0.03315319,0.08331273;-0.2917196;0.0004015267,0.07150984;-0.5842199;0.06600814,0.085528;-0.6113358;0.00390631,-0.06951304;0.002113847;-0.03954073,-0.1023918;-0.2940022;-0.004408486,-0.1004888;-0.5875787;0.05731058,-0.1023423;-0.6160692;-0.004623238,-0.002299459;0.3978927;0.04048143,0;0;0,-0.002801788;0.1987632;0.02203013,-0.007782428;0.4979935;0.04226113,0.1048696;0.3795315;-0.003674481,0.2141303;0.2908981;-0.1458231,0.2824879;0.377636;-0.3701081,-0.1123792;0.3626255;-0.005076744,-0.2096864;0.2746739;-0.1560596,-0.2721393;0.317154;-0.3943768,0.07279778;0.007706703;-0.03226592,0.08286531;-0.2905893;-0.001965262,0.07095838;-0.5830452;0.06382046,0.0822784;-0.6127664;0.004521329,-0.0687938;0.0004429932;-0.04083157,-0.1045095;-0.2951969;-0.00447939,-0.1045861;-0.5887493;0.05738335,-0.10729;-0.6151325;-0.007101562,-0.006130828;0.3980993;0.03796838,100.135
-0;0;0,-0.00100777;0.1986383;0.02327701,-0.002844304;0.4977623;0.04555769,0.1083616;0.3731907;0.001188416,0.2426043;0.2577701;-0.09185448,0.3655747;0.3824411;-0.2702793,-0.1102724;0.3592983;0.005093422,-0.2471851;0.2637488;-0.1050211,-0.3761458;0.3563572;-0.2981347,0.07254229;0.00620337;-0.03315319,0.08331273;-0.2917196;0.0004015267,0.07150984;-0.5842199;0.06600814,0.085528;-0.6113358;0.00390631,-0.06951304;0.002113847;-0.03954073,-0.1023918;-0.2940022;-0.004408486,-0.1004888;-0.5875787;0.05731058,-0.1023423;-0.6160692;-0.004623238,-0.002299459;0.3978927;0.04048143,0;0;0,-0.002801788;0.1987632;0.02203013,-0.007782428;0.4979935;0.04226113,0.1048696;0.3795315;-0.003674481,0.2141303;0.2908981;-0.1458231,0.2824879;0.377636;-0.3701081,-0.1123792;0.3626255;-0.005076744,-0.2096864;0.2746739;-0.1560596,-0.2721393;0.317154;-0.3943768,0.07279778;0.007706703;-0.03226592,0.08286531;-0.2905893;-0.001965262,0.07095838;-0.5830452;0.06382046,0.0822784;-0.6127664;0.004521329,-0.0687938;0.0004429932;-0.04083157,-0.1045095;-0.2951969;-0.00447939,-0.1045861;-0.5887493;0.05738335,-0.10729;-0.6151325;-0.007101562,-0.006130828;0.3980993;0.03796838,100.1468
-0;0;0,-0.000962818;0.1986412;0.02325436,-0.002627309;0.49777;0.04547664,0.108559;0.3730282;0.001399025,0.24454;0.2581478;-0.08976935,0.3700325;0.3843122;-0.265366,-0.1101876;0.3592135;0.005329989,-0.2484518;0.2641166;-0.1034799,-0.3798425;0.3572549;-0.2946912,0.07257415;0.006144027;-0.03309447,0.0833236;-0.291786;0.000404153,0.07165929;-0.5842921;0.06601019,0.08549681;-0.6116031;0.004110955,-0.06947299;0.002182946;-0.03960729,-0.1023552;-0.2939118;-0.004299194,-0.1004274;-0.587482;0.05744906,-0.1018616;-0.6154198;-0.005189911,-0.002154988;0.3978982;0.04043625,0;0;0,-0.002801788;0.1987632;0.02203013,-0.007782428;0.4979935;0.04226113,0.1048696;0.3795315;-0.003674481,0.2141303;0.2908981;-0.1458231,0.2824879;0.377636;-0.3701081,-0.1123792;0.3626255;-0.005076744,-0.2096864;0.2746739;-0.1560596,-0.2721393;0.317154;-0.3943768,0.07279778;0.007706703;-0.03226592,0.08286531;-0.2905893;-0.001965262,0.07095838;-0.5830452;0.06382046,0.0822784;-0.6127664;0.004521329,-0.0687938;0.0004429932;-0.04083157,-0.1045095;-0.2951969;-0.00447939,-0.1045861;-0.5887493;0.05738335,-0.10729;-0.6151325;-0.007101562,-0.006130828;0.3980993;0.03796838,100.1686
-0;0;0,-0.000962818;0.1986412;0.02325436,-0.002627309;0.49777;0.04547664,0.108559;0.3730282;0.001399025,0.24454;0.2581478;-0.08976935,0.3700325;0.3843122;-0.265366,-0.1101876;0.3592135;0.005329989,-0.2484518;0.2641166;-0.1034799,-0.3798425;0.3572549;-0.2946912,0.07257415;0.006144027;-0.03309447,0.0833236;-0.291786;0.000404153,0.07165929;-0.5842921;0.06601019,0.08549681;-0.6116031;0.004110955,-0.06947299;0.002182946;-0.03960729,-0.1023552;-0.2939118;-0.004299194,-0.1004274;-0.587482;0.05744906,-0.1018616;-0.6154198;-0.005189911,-0.002154988;0.3978982;0.04043625,0;0;0,-0.002794717;0.1987605;0.02205605,-0.007649914;0.4979876;0.04236844,0.1050409;0.3795308;-0.003346305,0.2173009;0.2919384;-0.1437931,0.2919166;0.3782715;-0.366232,-0.1123864;0.362609;-0.004793052,-0.2134411;0.2728252;-0.1521932,-0.2798924;0.3160244;-0.3892967,0.07281157;0.007682469;-0.03224057,0.08287029;-0.2906416;-0.002214864,0.07100413;-0.5830836;0.06364017,0.08232367;-0.6130559;0.004680097,-0.068776;0.0004883105;-0.04086102,-0.1045706;-0.2951474;-0.004552685,-0.1045098;-0.5887038;0.05729125,-0.1072031;-0.6151675;-0.007098526,-0.006056151;0.398094;0.03804022,100.1802
-0;0;0,-0.0009386464;0.1986479;0.02319743,-0.002447583;0.4977962;0.04514792,0.1087928;0.3729917;0.001576681,0.2462421;0.258526;-0.08789577,0.3754207;0.3859833;-0.2598479,-0.1102256;0.3592182;0.005617436,-0.2499924;0.2637145;-0.1008921,-0.3828706;0.3572565;-0.2908744,0.07259043;0.006145512;-0.03305848,0.08331574;-0.2917963;0.0003433451,0.07172804;-0.5842521;0.0661865,0.08567075;-0.612281;0.005218595,-0.06946731;0.002188408;-0.03961696,-0.1023425;-0.2939055;-0.004295085,-0.1005803;-0.5875013;0.05733598,-0.1021626;-0.6148901;-0.00597648,-0.002041056;0.3979177;0.04023595,0;0;0,-0.002794717;0.1987605;0.02205605,-0.007649914;0.4979876;0.04236844,0.1050409;0.3795308;-0.003346305,0.2173009;0.2919384;-0.1437931,0.2919166;0.3782715;-0.366232,-0.1123864;0.362609;-0.004793052,-0.2134411;0.2728252;-0.1521932,-0.2798924;0.3160244;-0.3892967,0.07281157;0.007682469;-0.03224057,0.08287029;-0.2906416;-0.002214864,0.07100413;-0.5830836;0.06364017,0.08232367;-0.6130559;0.004680097,-0.068776;0.0004883105;-0.04086102,-0.1045706;-0.2951474;-0.004552685,-0.1045098;-0.5887038;0.05729125,-0.1072031;-0.6151675;-0.007098526,-0.006056151;0.398094;0.03804022,100.2023
-0;0;0,-0.0007874136;0.1986693;0.02301891,-0.001735795;0.4978532;0.04448904,0.1093969;0.3727363;0.001641687,0.2480795;0.2588132;-0.0866116,0.378998;0.3874276;-0.2563723,-0.1099356;0.3594425;0.005597163,-0.2509068;0.2639854;-0.09935564,-0.3861705;0.3561464;-0.2883267,0.07261278;0.00612554;-0.03301307,0.08333032;-0.2918203;0.0003542826,0.07204464;-0.5844662;0.06540062,0.08554489;-0.6134209;0.005534932,-0.06944757;0.002195781;-0.03965115,-0.1023068;-0.2938924;-0.004266366,-0.100518;-0.5875391;0.0571211,-0.1017176;-0.616034;-0.004823271,-0.001549211;0.3979644;0.03977971,0;0;0,-0.002794717;0.1987605;0.02205605,-0.007649914;0.4979876;0.04236844,0.1050409;0.3795308;-0.003346305,0.2173009;0.2919384;-0.1437931,0.2919166;0.3782715;-0.366232,-0.1123864;0.362609;-0.004793052,-0.2134411;0.2728252;-0.1521932,-0.2798924;0.3160244;-0.3892967,0.07281157;0.007682469;-0.03224057,0.08287029;-0.2906416;-0.002214864,0.07100413;-0.5830836;0.06364017,0.08232367;-0.6130559;0.004680097,-0.068776;0.0004883105;-0.04086102,-0.1045706;-0.2951474;-0.004552685,-0.1045098;-0.5887038;0.05729125,-0.1072031;-0.6151675;-0.007098526,-0.006056151;0.398094;0.03804022,100.2244
-0;0;0,-0.0007874136;0.1986693;0.02301891,-0.001735795;0.4978532;0.04448904,0.1093969;0.3727363;0.001641687,0.2480795;0.2588132;-0.0866116,0.378998;0.3874276;-0.2563723,-0.1099356;0.3594425;0.005597163,-0.2509068;0.2639854;-0.09935564,-0.3861705;0.3561464;-0.2883267,0.07261278;0.00612554;-0.03301307,0.08333032;-0.2918203;0.0003542826,0.07204464;-0.5844662;0.06540062,0.08554489;-0.6134209;0.005534932,-0.06944757;0.002195781;-0.03965115,-0.1023068;-0.2938924;-0.004266366,-0.100518;-0.5875391;0.0571211,-0.1017176;-0.616034;-0.004823271,-0.001549211;0.3979644;0.03977971,0;0;0,-0.002708184;0.1987439;0.02221545,-0.007277225;0.4979646;0.04269763,0.1052745;0.3793907;-0.003038038,0.2217938;0.2924818;-0.1404066,0.3018568;0.3779286;-0.3612884,-0.1121709;0.3626403;-0.0045362,-0.2154877;0.2720053;-0.1498322,-0.2894071;0.3171218;-0.3843539,0.07287447;0.007567783;-0.03212539,0.08293891;-0.2907459;-0.001998408,0.07089417;-0.5831795;0.06386147,0.08241808;-0.6133103;0.005156606,-0.06874813;0.0006040295;-0.04090635,-0.1043961;-0.2950142;-0.00431291,-0.1043355;-0.5886097;0.05734503,-0.1073213;-0.6141479;-0.008115351,-0.005822394;0.3980721;0.03829564,100.2359
-0;0;0,-0.0007874136;0.1986693;0.02301891,-0.001735795;0.4978532;0.04448904,0.1093969;0.3727363;0.001641687,0.2480795;0.2588132;-0.0866116,0.378998;0.3874276;-0.2563723,-0.1099356;0.3594425;0.005597163,-0.2509068;0.2639854;-0.09935564,-0.3861705;0.3561464;-0.2883267,0.07261278;0.00612554;-0.03301307,0.08333032;-0.2918203;0.0003542826,0.07204464;-0.5844662;0.06540062,0.08554489;-0.6134209;0.005534932,-0.06944757;0.002195781;-0.03965115,-0.1023068;-0.2938924;-0.004266366,-0.100518;-0.5875391;0.0571211,-0.1017176;-0.616034;-0.004823271,-0.001549211;0.3979644;0.03977971,0;0;0,-0.002708184;0.1987439;0.02221545,-0.007277225;0.4979646;0.04269763,0.1052745;0.3793907;-0.003038038,0.2217938;0.2924818;-0.1404066,0.3018568;0.3779286;-0.3612884,-0.1121709;0.3626403;-0.0045362,-0.2154877;0.2720053;-0.1498322,-0.2894071;0.3171218;-0.3843539,0.07287447;0.007567783;-0.03212539,0.08293891;-0.2907459;-0.001998408,0.07089417;-0.5831795;0.06386147,0.08241808;-0.6133103;0.005156606,-0.06874813;0.0006040295;-0.04090635,-0.1043961;-0.2950142;-0.00431291,-0.1043355;-0.5886097;0.05734503,-0.1073213;-0.6141479;-0.008115351,-0.005822394;0.3980721;0.03829564,100.247
-0;0;0,-0.0007663174;0.1986735;0.02298382,-0.001617357;0.4978667;0.04432111,0.1095399;0.3725342;0.001845613,0.2502446;0.2599465;-0.08490801,0.3845978;0.3892342;-0.251443,-0.1099336;0.3595281;0.005660772,-0.2558899;0.2619375;-0.09011418,-0.3994443;0.3356233;-0.2810658,0.07264454;0.006068489;-0.03295367,0.08338413;-0.2918883;0.0003095828,0.07219495;-0.5845187;0.06544225,0.08499423;-0.6129441;0.00473284,-0.06944201;0.002236919;-0.03965857,-0.1022971;-0.2938495;-0.004255656,-0.1004487;-0.5874784;0.05721509,-0.1016443;-0.6158845;-0.004841775,-0.001465514;0.3979751;0.03966821,0;0;0,-0.002708184;0.1987439;0.02221545,-0.007277225;0.4979646;0.04269763,0.1052745;0.3793907;-0.003038038,0.2217938;0.2924818;-0.1404066,0.3018568;0.3779286;-0.3612884,-0.1121709;0.3626403;-0.0045362,-0.2154877;0.2720053;-0.1498322,-0.2894071;0.3171218;-0.3843539,0.07287447;0.007567783;-0.03212539,0.08293891;-0.2907459;-0.001998408,0.07089417;-0.5831795;0.06386147,0.08241808;-0.6133103;0.005156606,-0.06874813;0.0006040295;-0.04090635,-0.1043961;-0.2950142;-0.00431291,-0.1043355;-0.5886097;0.05734503,-0.1073213;-0.6141479;-0.008115351,-0.005822394;0.3980721;0.03829564,100.2691
-0;0;0,-0.0007663174;0.1986735;0.02298382,-0.001617357;0.4978667;0.04432111,0.1095399;0.3725342;0.001845613,0.2502446;0.2599465;-0.08490801,0.3845978;0.3892342;-0.251443,-0.1099336;0.3595281;0.005660772,-0.2558899;0.2619375;-0.09011418,-0.3994443;0.3356233;-0.2810658,0.07264454;0.006068489;-0.03295367,0.08338413;-0.2918883;0.0003095828,0.07219495;-0.5845187;0.06544225,0.08499423;-0.6129441;0.00473284,-0.06944201;0.002236919;-0.03965857,-0.1022971;-0.2938495;-0.004255656,-0.1004487;-0.5874784;0.05721509,-0.1016443;-0.6158845;-0.004841775,-0.001465514;0.3979751;0.03966821,0;0;0,-0.002675547;0.1987275;0.02236606,-0.006950153;0.4979386;0.04305707,0.1055606;0.3791915;-0.002454735,0.2263955;0.2878833;-0.1330753,0.3178144;0.3657537;-0.352344,-0.1119574;0.3625748;-0.004255071,-0.2186002;0.272193;-0.1472881,-0.2970318;0.3180138;-0.3802021,0.07277603;0.007521178;-0.03235862,0.08266328;-0.2907725;-0.001975305,0.07055922;-0.5831697;0.06403489,0.08306304;-0.6127535;0.004789002,-0.06884324;0.0006109456;-0.04074598,-0.104909;-0.2949969;-0.004479572,-0.1046931;-0.5885136;0.05755223,-0.1074296;-0.6146843;-0.007182047,-0.005620596;0.3980481;0.03857171,100.2807
-0;0;0,-0.0006921301;0.1986841;0.0228946,-0.001327001;0.4978927;0.04401179,0.1098423;0.3724579;0.001966584,0.2524819;0.2615283;-0.08375713,0.3888297;0.3929434;-0.2469728,-0.1099585;0.3598653;0.005843334,-0.2560802;0.2617492;-0.08913935,-0.4015726;0.3362614;-0.278295,0.07268817;0.005967495;-0.03287581,0.08342196;-0.2919873;0.0004066154,0.07224155;-0.5846201;0.06552973,0.08499417;-0.6131664;0.004966971,-0.0694036;0.002345369;-0.0397195,-0.1022355;-0.2937372;-0.004262712,-0.1000616;-0.5872138;0.05792074,-0.1009938;-0.5542378;-0.04061511,-0.001255019;0.3979967;0.03945195,0;0;0,-0.002675547;0.1987275;0.02236606,-0.006950153;0.4979386;0.04305707,0.1055606;0.3791915;-0.002454735,0.2263955;0.2878833;-0.1330753,0.3178144;0.3657537;-0.352344,-0.1119574;0.3625748;-0.004255071,-0.2186002;0.272193;-0.1472881,-0.2970318;0.3180138;-0.3802021,0.07277603;0.007521178;-0.03235862,0.08266328;-0.2907725;-0.001975305,0.07055922;-0.5831697;0.06403489,0.08306304;-0.6127535;0.004789002,-0.06884324;0.0006109456;-0.04074598,-0.104909;-0.2949969;-0.004479572,-0.1046931;-0.5885136;0.05755223,-0.1074296;-0.6146843;-0.007182047,-0.005620596;0.3980481;0.03857171,100.3027
-0;0;0,-0.0006921301;0.1986841;0.0228946,-0.001327001;0.4978927;0.04401179,0.1098423;0.3724579;0.001966584,0.2524819;0.2615283;-0.08375713,0.3888297;0.3929434;-0.2469728,-0.1099585;0.3598653;0.005843334,-0.2560802;0.2617492;-0.08913935,-0.4015726;0.3362614;-0.278295,0.07268817;0.005967495;-0.03287581,0.08342196;-0.2919873;0.0004066154,0.07224155;-0.5846201;0.06552973,0.08499417;-0.6131664;0.004966971,-0.0694036;0.002345369;-0.0397195,-0.1022355;-0.2937372;-0.004262712,-0.1000616;-0.5872138;0.05792074,-0.1009938;-0.5542378;-0.04061511,-0.001255019;0.3979967;0.03945195,0;0;0,-0.002675547;0.1987275;0.02236606,-0.006950153;0.4979386;0.04305707,0.1055606;0.3791915;-0.002454735,0.2263955;0.2878833;-0.1330753,0.3178144;0.3657537;-0.352344,-0.1119574;0.3625748;-0.004255071,-0.2186002;0.272193;-0.1472881,-0.2970318;0.3180138;-0.3802021,0.07277603;0.007521178;-0.03235862,0.08266328;-0.2907725;-0.001975305,0.07055922;-0.5831697;0.06403489,0.08306304;-0.6127535;0.004789002,-0.06884324;0.0006109456;-0.04074598,-0.104909;-0.2949969;-0.004479572,-0.1046931;-0.5885136;0.05755223,-0.1074296;-0.6146843;-0.007182047,-0.005620596;0.3980481;0.03857171,100.3139
-0;0;0,-0.000671624;0.198687;0.02286967,-0.001281134;0.4978955;0.04398747,0.109935;0.372579;0.002010603,0.2536974;0.2620716;-0.08237243,0.3928677;0.3932726;-0.2433629,-0.1099817;0.3599742;0.005914804,-0.2563586;0.2612888;-0.0880798,-0.404132;0.3350653;-0.2757499,0.07273235;0.005882543;-0.03279329,0.08339375;-0.292082;0.0004248284,0.07226759;-0.5847138;0.06556186,0.08504263;-0.6132768;0.005025528,-0.0693034;0.002515176;-0.03988373,-0.1022065;-0.2935378;-0.004245885,-0.1000245;-0.5869606;0.05819065,-0.1009232;-0.6169285;-0.00184533,-0.001211964;0.3979995;0.03942923,0;0;0,-0.002675876;0.198714;0.02248511,-0.006876752;0.4979182;0.04329406,0.1056216;0.3789873;-0.002122857,0.2290035;0.2908046;-0.1325097,0.3199514;0.3794364;-0.3478533,-0.1118961;0.362452;-0.00402382,-0.2217518;0.2724947;-0.1448762,-0.3065288;0.3181483;-0.3755895,0.07276519;0.007481795;-0.03239211,0.08266537;-0.2907924;-0.00182257,0.07054398;-0.5831834;0.06421228,0.08310814;-0.6128964;0.005153112,-0.06885274;0.0006427148;-0.04072944,-0.1050265;-0.2949537;-0.00447743,-0.1046712;-0.5884171;0.05780559,-0.1076053;-0.6154024;-0.00594895,-0.005578877;0.3980292;0.03876549,100.3364
-0;0;0,-0.000671624;0.198687;0.02286967,-0.001281134;0.4978955;0.04398747,0.109935;0.372579;0.002010603,0.2536974;0.2620716;-0.08237243,0.3928677;0.3932726;-0.2433629,-0.1099817;0.3599742;0.005914804,-0.2563586;0.2612888;-0.0880798,-0.404132;0.3350653;-0.2757499,0.07273235;0.005882543;-0.03279329,0.08339375;-0.292082;0.0004248284,0.07226759;-0.5847138;0.06556186,0.08504263;-0.6132768;0.005025528,-0.0693034;0.002515176;-0.03988373,-0.1022065;-0.2935378;-0.004245885,-0.1000245;-0.5869606;0.05819065,-0.1009232;-0.6169285;-0.00184533,-0.001211964;0.3979995;0.03942923,0;0;0,-0.002675876;0.198714;0.02248511,-0.006876752;0.4979182;0.04329406,0.1056216;0.3789873;-0.002122857,0.2290035;0.2908046;-0.1325097,0.3199514;0.3794364;-0.3478533,-0.1118961;0.362452;-0.00402382,-0.2217518;0.2724947;-0.1448762,-0.3065288;0.3181483;-0.3755895,0.07276519;0.007481795;-0.03239211,0.08266537;-0.2907924;-0.00182257,0.07054398;-0.5831834;0.06421228,0.08310814;-0.6128964;0.005153112,-0.06885274;0.0006427148;-0.04072944,-0.1050265;-0.2949537;-0.00447743,-0.1046712;-0.5884171;0.05780559,-0.1076053;-0.6154024;-0.00594895,-0.005578877;0.3980292;0.03876549,100.348
-0;0;0,-0.0006283116;0.1986982;0.0227736,-0.001147148;0.4979156;0.04376639,0.1100943;0.3724211;0.002111327,0.2553081;0.2629649;-0.08114921,0.3977645;0.3962075;-0.2375225,-0.1099572;0.360062;0.005930323,-0.2567547;0.2612237;-0.08724403,-0.4057405;0.3351539;-0.2738923,0.0727566;0.005842943;-0.03274656,0.08345311;-0.2921174;0.0004985332,0.07231805;-0.5847536;0.06561425,0.08495525;-0.6134526;0.005225737,-0.06927965;0.002587846;-0.03992033,-0.1021618;-0.2934588;-0.004210979,-0.09996479;-0.5868798;0.05823323,-0.1009102;-0.616872;-0.001769848,-0.001104604;0.3980174;0.03925461,0;0;0,-0.002666283;0.1987073;0.0225457,-0.006794381;0.4979082;0.04341834,0.1056543;0.3782852;-0.001745258,0.232681;0.2915609;-0.1295854,0.3305288;0.3801377;-0.3419058,-0.1118741;0.3624678;-0.003876444,-0.2254296;0.2727256;-0.1419036,-0.3159353;0.3169098;-0.370719,0.07275625;0.007446277;-0.03242038,0.08265452;-0.2908181;-0.001755103,0.07075626;-0.5833176;0.06383799,0.08305469;-0.6136554;0.005574968,-0.06886995;0.0006720815;-0.04069985,-0.1050181;-0.2949191;-0.004379429,-0.1046496;-0.5884001;0.05781992,-0.1075921;-0.6152728;-0.006070141,-0.005528246;0.3980201;0.03886233,100.3696
-0;0;0,-0.0006283116;0.1986982;0.0227736,-0.001147148;0.4979156;0.04376639,0.1100943;0.3724211;0.002111327,0.2553081;0.2629649;-0.08114921,0.3977645;0.3962075;-0.2375225,-0.1099572;0.360062;0.005930323,-0.2567547;0.2612237;-0.08724403,-0.4057405;0.3351539;-0.2738923,0.0727566;0.005842943;-0.03274656,0.08345311;-0.2921174;0.0004985332,0.07231805;-0.5847536;0.06561425,0.08495525;-0.6134526;0.005225737,-0.06927965;0.002587846;-0.03992033,-0.1021618;-0.2934588;-0.004210979,-0.09996479;-0.5868798;0.05823323,-0.1009102;-0.616872;-0.001769848,-0.001104604;0.3980174;0.03925461,0;0;0,-0.002666283;0.1987073;0.0225457,-0.006794381;0.4979082;0.04341834,0.1056543;0.3782852;-0.001745258,0.232681;0.2915609;-0.1295854,0.3305288;0.3801377;-0.3419058,-0.1118741;0.3624678;-0.003876444,-0.2254296;0.2727256;-0.1419036,-0.3159353;0.3169098;-0.370719,0.07275625;0.007446277;-0.03242038,0.08265452;-0.2908181;-0.001755103,0.07075626;-0.5833176;0.06383799,0.08305469;-0.6136554;0.005574968,-0.06886995;0.0006720815;-0.04069985,-0.1050181;-0.2949191;-0.004379429,-0.1046496;-0.5884001;0.05781992,-0.1075921;-0.6152728;-0.006070141,-0.005528246;0.3980201;0.03886233,100.3811
-0;0;0,-0.0006370493;0.1987064;0.02270134,-0.001206422;0.4979329;0.04355896,0.1101368;0.372214;0.00234044,0.2573257;0.2644383;-0.07963406,0.4012674;0.3977181;-0.2346091,-0.1100393;0.360069;0.005946893,-0.2572061;0.2609005;-0.08628947,-0.4130049;0.3309171;-0.2688392,0.07276196;0.005809143;-0.03274066,0.0834447;-0.2921385;0.0006221011,0.07231849;-0.5848005;0.06562363,0.08501168;-0.6134925;0.005237836,-0.06928847;0.002630201;-0.03990225,-0.1021921;-0.2934112;-0.004169609,-0.1000975;-0.5868452;0.05821741,-0.10152;-0.6162983;-0.002488278,-0.001137749;0.3980322;0.03910178,0;0;0,-0.002666283;0.1987073;0.0225457,-0.006794381;0.4979082;0.04341834,0.1056543;0.3782852;-0.001745258,0.232681;0.2915609;-0.1295854,0.3305288;0.3801377;-0.3419058,-0.1118741;0.3624678;-0.003876444,-0.2254296;0.2727256;-0.1419036,-0.3159353;0.3169098;-0.370719,0.07275625;0.007446277;-0.03242038,0.08265452;-0.2908181;-0.001755103,0.07075626;-0.5833176;0.06383799,0.08305469;-0.6136554;0.005574968,-0.06886995;0.0006720815;-0.04069985,-0.1050181;-0.2949191;-0.004379429,-0.1046496;-0.5884001;0.05781992,-0.1075921;-0.6152728;-0.006070141,-0.005528246;0.3980201;0.03886233,100.4033
-0;0;0,-0.0006370493;0.1987064;0.02270134,-0.001206422;0.4979329;0.04355896,0.1101368;0.372214;0.00234044,0.2573257;0.2644383;-0.07963406,0.4012674;0.3977181;-0.2346091,-0.1100393;0.360069;0.005946893,-0.2572061;0.2609005;-0.08628947,-0.4130049;0.3309171;-0.2688392,0.07276196;0.005809143;-0.03274066,0.0834447;-0.2921385;0.0006221011,0.07231849;-0.5848005;0.06562363,0.08501168;-0.6134925;0.005237836,-0.06928847;0.002630201;-0.03990225,-0.1021921;-0.2934112;-0.004169609,-0.1000975;-0.5868452;0.05821741,-0.10152;-0.6162983;-0.002488278,-0.001137749;0.3980322;0.03910178,0;0;0,-0.002666283;0.1987073;0.0225457,-0.006794381;0.4979082;0.04341834,0.1056543;0.3782852;-0.001745258,0.232681;0.2915609;-0.1295854,0.3305288;0.3801377;-0.3419058,-0.1118741;0.3624678;-0.003876444,-0.2254296;0.2727256;-0.1419036,-0.3159353;0.3169098;-0.370719,0.07275625;0.007446277;-0.03242038,0.08265452;-0.2908181;-0.001755103,0.07075626;-0.5833176;0.06383799,0.08305469;-0.6136554;0.005574968,-0.06886995;0.0006720815;-0.04069985,-0.1050181;-0.2949191;-0.004379429,-0.1046496;-0.5884001;0.05781992,-0.1075921;-0.6152728;-0.006070141,-0.005528246;0.3980201;0.03886233,100.4145
-0;0;0,-0.0006481868;0.1987131;0.02264283,-0.001257781;0.4979426;0.04345221,0.1100753;0.3720101;0.002314862,0.2584025;0.2653159;-0.07902023,0.4048013;0.4002513;-0.2302149,-0.1101059;0.3601724;0.005862959,-0.2575375;0.2604395;-0.08533601,-0.414492;0.3309748;-0.2666922,0.07278682;0.005741809;-0.03269724,0.08344047;-0.2922127;0.0006141178,0.07225617;-0.5848507;0.06571338,0.08498157;-0.6134185;0.005172826,-0.06926205;0.00270453;-0.03994313,-0.1022763;-0.2933346;-0.004292984,-0.1000085;-0.5867354;0.05824381,-0.1015218;-0.6161705;-0.002483144,-0.001170248;0.3980412;0.03901387,0;0;0,-0.00256462;0.1987121;0.02251492,-0.006413518;0.497918;0.04336442,0.1059623;0.3782252;-0.001691204,0.236034;0.2910349;-0.1261067,0.3404071;0.3776187;-0.3361292,-0.1117559;0.3618291;-0.002936967,-0.2267447;0.2743208;-0.1412116,-0.3312434;0.3143724;-0.3647645,0.07272222;0.007447878;-0.03249627,0.08253065;-0.2908263;-0.001896437,0.07064818;-0.5833566;0.06356187,0.08273845;-0.6139762;0.005645528,-0.0688948;0.0006687667;-0.04065783,-0.105178;-0.2949103;-0.004373364,-0.104819;-0.5884001;0.05778462,-0.107621;-0.6145303;-0.006994616,-0.005240904;0.3980278;0.03882676,100.4366
-0;0;0,-0.0006481868;0.1987131;0.02264283,-0.001257781;0.4979426;0.04345221,0.1100753;0.3720101;0.002314862,0.2584025;0.2653159;-0.07902023,0.4048013;0.4002513;-0.2302149,-0.1101059;0.3601724;0.005862959,-0.2575375;0.2604395;-0.08533601,-0.414492;0.3309748;-0.2666922,0.07278682;0.005741809;-0.03269724,0.08344047;-0.2922127;0.0006141178,0.07225617;-0.5848507;0.06571338,0.08498157;-0.6134185;0.005172826,-0.06926205;0.00270453;-0.03994313,-0.1022763;-0.2933346;-0.004292984,-0.1000085;-0.5867354;0.05824381,-0.1015218;-0.6161705;-0.002483144,-0.001170248;0.3980412;0.03901387,0;0;0,-0.00256462;0.1987121;0.02251492,-0.006413518;0.497918;0.04336442,0.1059623;0.3782252;-0.001691204,0.236034;0.2910349;-0.1261067,0.3404071;0.3776187;-0.3361292,-0.1117559;0.3618291;-0.002936967,-0.2267447;0.2743208;-0.1412116,-0.3312434;0.3143724;-0.3647645,0.07272222;0.007447878;-0.03249627,0.08253065;-0.2908263;-0.001896437,0.07064818;-0.5833566;0.06356187,0.08273845;-0.6139762;0.005645528,-0.0688948;0.0006687667;-0.04065783,-0.105178;-0.2949103;-0.004373364,-0.104819;-0.5884001;0.05778462,-0.107621;-0.6145303;-0.006994616,-0.005240904;0.3980278;0.03882676,100.4479
-0;0;0,-0.000639557;0.1987196;0.02258557,-0.001256175;0.4979548;0.04331247,0.1101428;0.3720551;0.002357479,0.259348;0.2658352;-0.07798633,0.4071601;0.4018834;-0.2267898,-0.1102043;0.3604091;0.005853303,-0.2580383;0.2594002;-0.08326638,-0.4161445;0.3300234;-0.263585,0.07278894;0.005685033;-0.03270244,0.08342993;-0.2922709;0.0005995519,0.07226896;-0.5848742;0.06585892,0.08461852;-0.6133794;0.005159464,-0.0692635;0.002748888;-0.0399376,-0.1022612;-0.2932867;-0.004243068,-0.0999505;-0.5866809;0.05832284,-0.1011908;-0.6159617;-0.002611745,-0.001160466;0.398052;0.03890544,0;0;0,-0.00256462;0.1987121;0.02251492,-0.006413518;0.497918;0.04336442,0.1059623;0.3782252;-0.001691204,0.236034;0.2910349;-0.1261067,0.3404071;0.3776187;-0.3361292,-0.1117559;0.3618291;-0.002936967,-0.2267447;0.2743208;-0.1412116,-0.3312434;0.3143724;-0.3647645,0.07272222;0.007447878;-0.03249627,0.08253065;-0.2908263;-0.001896437,0.07064818;-0.5833566;0.06356187,0.08273845;-0.6139762;0.005645528,-0.0688948;0.0006687667;-0.04065783,-0.105178;-0.2949103;-0.004373364,-0.104819;-0.5884001;0.05778462,-0.107621;-0.6145303;-0.006994616,-0.005240904;0.3980278;0.03882676,100.4702
-0;0;0,-0.0006284158;0.1987335;0.02246321,-0.001227021;0.4979795;0.04303131,0.110246;0.3720389;0.002390373,0.2608401;0.2667435;-0.07656723,0.410315;0.4042093;-0.2223767,-0.1103065;0.3605071;0.005975138,-0.2581485;0.2590393;-0.08260833,-0.4180328;0.329831;-0.2612855,0.07282928;0.005652283;-0.03261823,0.0834711;-0.2923015;0.0007031448,0.07234699;-0.5849319;0.06584689,0.08425166;-0.6134036;0.00501553,-0.06918683;0.00283235;-0.04006446,-0.1021186;-0.2931879;-0.004182898,-0.0998659;-0.5865787;0.05840156,-0.1016525;-0.6136121;-0.005337372,-0.00113229;0.3980742;0.0386815,0;0;0,-0.002506518;0.1987082;0.02255581,-0.006055234;0.4979083;0.04354449,0.10626;0.378178;-0.001391951,0.2392854;0.2916411;-0.1231113,0.3503923;0.3758395;-0.3306345,-0.1115977;0.362023;-0.002773345,-0.2305992;0.2759054;-0.1385025,-0.3415699;0.3179494;-0.3585429,0.07274655;0.007419907;-0.03244819,0.08253483;-0.2908552;-0.001851361,0.070793;-0.5834422;0.06337887,0.08291963;-0.6139383;0.005298484,-0.06884917;0.0007178757;-0.04073422,-0.1051425;-0.2948411;-0.004296463,-0.104743;-0.5883476;0.05778265,-0.1074956;-0.6145286;-0.006938841,-0.004999351;0.3980194;0.03895265,100.4924
-0;0;0,-0.0006284158;0.1987335;0.02246321,-0.001227021;0.4979795;0.04303131,0.110246;0.3720389;0.002390373,0.2608401;0.2667435;-0.07656723,0.410315;0.4042093;-0.2223767,-0.1103065;0.3605071;0.005975138,-0.2581485;0.2590393;-0.08260833,-0.4180328;0.329831;-0.2612855,0.07282928;0.005652283;-0.03261823,0.0834711;-0.2923015;0.0007031448,0.07234699;-0.5849319;0.06584689,0.08425166;-0.6134036;0.00501553,-0.06918683;0.00283235;-0.04006446,-0.1021186;-0.2931879;-0.004182898,-0.0998659;-0.5865787;0.05840156,-0.1016525;-0.6136121;-0.005337372,-0.00113229;0.3980742;0.0386815,0;0;0,-0.002506518;0.1987082;0.02255581,-0.006055234;0.4979083;0.04354449,0.10626;0.378178;-0.001391951,0.2392854;0.2916411;-0.1231113,0.3503923;0.3758395;-0.3306345,-0.1115977;0.362023;-0.002773345,-0.2305992;0.2759054;-0.1385025,-0.3415699;0.3179494;-0.3585429,0.07274655;0.007419907;-0.03244819,0.08253483;-0.2908552;-0.001851361,0.070793;-0.5834422;0.06337887,0.08291963;-0.6139383;0.005298484,-0.06884917;0.0007178757;-0.04073422,-0.1051425;-0.2948411;-0.004296463,-0.104743;-0.5883476;0.05778265,-0.1074956;-0.6145286;-0.006938841,-0.004999351;0.3980194;0.03895265,100.5042
-0;0;0,-0.0006272413;0.1987443;0.02236771,-0.001263486;0.4980018;0.04276202,0.1102821;0.3719431;0.002431009,0.2624183;0.2678291;-0.0751245,0.4136919;0.4058177;-0.2185659,-0.1103381;0.3603746;0.005998127,-0.2607084;0.2626186;-0.08250353,-0.412625;0.3490739;-0.2612403,0.07284191;0.005618557;-0.03259582,0.08348651;-0.292333;0.0007443205,0.07237145;-0.584963;0.06589167,0.08423288;-0.6134579;0.005081765,-0.06917022;0.002873408;-0.04009019,-0.1021014;-0.293146;-0.004200701,-0.09986927;-0.586533;0.05840212,-0.1015889;-0.6139837;-0.004830983,-0.001148562;0.3980937;0.0384776,0;0;0,-0.002506518;0.1987082;0.02255581,-0.006055234;0.4979083;0.04354449,0.10626;0.378178;-0.001391951,0.2392854;0.2916411;-0.1231113,0.3503923;0.3758395;-0.3306345,-0.1115977;0.362023;-0.002773345,-0.2305992;0.2759054;-0.1385025,-0.3415699;0.3179494;-0.3585429,0.07274655;0.007419907;-0.03244819,0.08253483;-0.2908552;-0.001851361,0.070793;-0.5834422;0.06337887,0.08291963;-0.6139383;0.005298484,-0.06884917;0.0007178757;-0.04073422,-0.1051425;-0.2948411;-0.004296463,-0.104743;-0.5883476;0.05778265,-0.1074956;-0.6145286;-0.006938841,-0.004999351;0.3980194;0.03895265,100.5259
-0;0;0,-0.0006272413;0.1987443;0.02236771,-0.001263486;0.4980018;0.04276202,0.1102821;0.3719431;0.002431009,0.2624183;0.2678291;-0.0751245,0.4136919;0.4058177;-0.2185659,-0.1103381;0.3603746;0.005998127,-0.2607084;0.2626186;-0.08250353,-0.412625;0.3490739;-0.2612403,0.07284191;0.005618557;-0.03259582,0.08348651;-0.292333;0.0007443205,0.07237145;-0.584963;0.06589167,0.08423288;-0.6134579;0.005081765,-0.06917022;0.002873408;-0.04009019,-0.1021014;-0.293146;-0.004200701,-0.09986927;-0.586533;0.05840212,-0.1015889;-0.6139837;-0.004830983,-0.001148562;0.3980937;0.0384776,0;0;0,-0.002505427;0.1987059;0.02257643,-0.006052174;0.4979036;0.04359468,0.1063901;0.3780781;-0.0009463653,0.2434229;0.2927958;-0.119052,0.3588278;0.3771153;-0.3241665,-0.1119218;0.3620714;-0.00192517,-0.235652;0.2823266;-0.1373195,-0.3426375;0.3237053;-0.3594498,0.07274514;0.007397084;-0.03245654,0.08248905;-0.290873;-0.001796618,0.070827;-0.5834666;0.06341775,0.08253241;-0.6154332;0.007342171,-0.06885692;0.0007342929;-0.04072082,-0.1050287;-0.2948329;-0.004229471,-0.1046751;-0.58839;0.05761037,-0.1072805;-0.6145248;-0.007171627,-0.004995749;0.3980148;0.03900018,100.5376
-0;0;0,-0.0006445146;0.1987539;0.02228157,-0.00132412;0.4980194;0.04255652,0.1103056;0.3719722;0.002455298,0.2637281;0.2689905;-0.07407129,0.4162632;0.4082179;-0.214957,-0.1104395;0.3603889;0.006044492,-0.259578;0.2578577;-0.07907341,-0.4184871;0.3364975;-0.2553224,0.07287046;0.005576495;-0.03253919,0.08333258;-0.2923868;0.0007537566,0.07207312;-0.5848827;0.06647542,0.08412836;-0.6125913;0.004701219,-0.06917726;0.002882632;-0.04007741,-0.1020948;-0.2931254;-0.004081585,-0.1000345;-0.5865082;0.05854695,-0.1016726;-0.6136135;-0.005108982,-0.001188473;0.3981095;0.03831492,0;0;0,-0.002505427;0.1987059;0.02257643,-0.006052174;0.4979036;0.04359468,0.1063901;0.3780781;-0.0009463653,0.2434229;0.2927958;-0.119052,0.3588278;0.3771153;-0.3241665,-0.1119218;0.3620714;-0.00192517,-0.235652;0.2823266;-0.1373195,-0.3426375;0.3237053;-0.3594498,0.07274514;0.007397084;-0.03245654,0.08248905;-0.290873;-0.001796618,0.070827;-0.5834666;0.06341775,0.08253241;-0.6154332;0.007342171,-0.06885692;0.0007342929;-0.04072082,-0.1050287;-0.2948329;-0.004229471,-0.1046751;-0.58839;0.05761037,-0.1072805;-0.6145248;-0.007171627,-0.004995749;0.3980148;0.03900018,100.5609
-0;0;0,-0.0006445146;0.1987539;0.02228157,-0.00132412;0.4980194;0.04255652,0.1103056;0.3719722;0.002455298,0.2637281;0.2689905;-0.07407129,0.4162632;0.4082179;-0.214957,-0.1104395;0.3603889;0.006044492,-0.259578;0.2578577;-0.07907341,-0.4184871;0.3364975;-0.2553224,0.07287046;0.005576495;-0.03253919,0.08333258;-0.2923868;0.0007537566,0.07207312;-0.5848827;0.06647542,0.08412836;-0.6125913;0.004701219,-0.06917726;0.002882632;-0.04007741,-0.1020948;-0.2931254;-0.004081585,-0.1000345;-0.5865082;0.05854695,-0.1016726;-0.6136135;-0.005108982,-0.001188473;0.3981095;0.03831492,0;0;0,-0.002505427;0.1987059;0.02257643,-0.006052174;0.4979036;0.04359468,0.1063901;0.3780781;-0.0009463653,0.2434229;0.2927958;-0.119052,0.3588278;0.3771153;-0.3241665,-0.1119218;0.3620714;-0.00192517,-0.235652;0.2823266;-0.1373195,-0.3426375;0.3237053;-0.3594498,0.07274514;0.007397084;-0.03245654,0.08248905;-0.290873;-0.001796618,0.070827;-0.5834666;0.06341775,0.08253241;-0.6154332;0.007342171,-0.06885692;0.0007342929;-0.04072082,-0.1050287;-0.2948329;-0.004229471,-0.1046751;-0.58839;0.05761037,-0.1072805;-0.6145248;-0.007171627,-0.004995749;0.3980148;0.03900018,100.5724
-0;0;0,-0.0006981465;0.198762;0.02220805,-0.001522523;0.4980332;0.04239075,0.1102811;0.3720812;0.002611056,0.2646856;0.2699308;-0.07304961,0.4184485;0.4097586;-0.2119927,-0.1105478;0.3602247;0.006015982,-0.2603752;0.2590648;-0.07953188,-0.4203163;0.3399465;-0.2538218,0.07291272;0.005539025;-0.03245082,0.08335181;-0.2924264;0.000830017,0.07253914;-0.5849772;0.06638259,0.08386523;-0.6133781;0.005349692,-0.06912741;0.002892758;-0.04016258,-0.1018605;-0.2931068;-0.003930144,-0.0999103;-0.5864793;0.05875013,-0.1015661;-0.613553;-0.004943646,-0.001327595;0.3981219;0.03818334,0;0;0,-0.002464724;0.1987054;0.02258486,-0.005914159;0.4979026;0.04362432,0.1065572;0.3780591;-0.0007415451,0.246898;0.2945428;-0.1161949,0.3694775;0.3793013;-0.3169193,-0.1118766;0.3616493;-0.001357328,-0.2363525;0.2810535;-0.135559,-0.3506832;0.3234768;-0.3537991,0.07276175;0.007383656;-0.03242237,0.08249114;-0.2909002;-0.001892228,0.07100934;-0.583478;0.06342548,0.08239068;-0.6157106;0.00767377,-0.06882092;0.0007561454;-0.04078124,-0.1050777;-0.2947873;-0.004181843,-0.1047657;-0.5883404;0.05767701,-0.1075682;-0.6142455;-0.007365715,-0.004888154;0.3980135;0.03902967,100.5927
-0;0;0,-0.0006981465;0.198762;0.02220805,-0.001522523;0.4980332;0.04239075,0.1102811;0.3720812;0.002611056,0.2646856;0.2699308;-0.07304961,0.4184485;0.4097586;-0.2119927,-0.1105478;0.3602247;0.006015982,-0.2603752;0.2590648;-0.07953188,-0.4203163;0.3399465;-0.2538218,0.07291272;0.005539025;-0.03245082,0.08335181;-0.2924264;0.000830017,0.07253914;-0.5849772;0.06638259,0.08386523;-0.6133781;0.005349692,-0.06912741;0.002892758;-0.04016258,-0.1018605;-0.2931068;-0.003930144,-0.0999103;-0.5864793;0.05875013,-0.1015661;-0.613553;-0.004943646,-0.001327595;0.3981219;0.03818334,0;0;0,-0.002464724;0.1987054;0.02258486,-0.005914159;0.4979026;0.04362432,0.1065572;0.3780591;-0.0007415451,0.246898;0.2945428;-0.1161949,0.3694775;0.3793013;-0.3169193,-0.1118766;0.3616493;-0.001357328,-0.2363525;0.2810535;-0.135559,-0.3506832;0.3234768;-0.3537991,0.07276175;0.007383656;-0.03242237,0.08249114;-0.2909002;-0.001892228,0.07100934;-0.583478;0.06342548,0.08239068;-0.6157106;0.00767377,-0.06882092;0.0007561454;-0.04078124,-0.1050777;-0.2947873;-0.004181843,-0.1047657;-0.5883404;0.05767701,-0.1075682;-0.6142455;-0.007365715,-0.004888154;0.3980135;0.03902967,100.6046
-0;0;0,-0.0006981465;0.198762;0.02220805,-0.001522523;0.4980332;0.04239075,0.1102811;0.3720812;0.002611056,0.2646856;0.2699308;-0.07304961,0.4184485;0.4097586;-0.2119927,-0.1105478;0.3602247;0.006015982,-0.2603752;0.2590648;-0.07953188,-0.4203163;0.3399465;-0.2538218,0.07291272;0.005539025;-0.03245082,0.08335181;-0.2924264;0.000830017,0.07253914;-0.5849772;0.06638259,0.08386523;-0.6133781;0.005349692,-0.06912741;0.002892758;-0.04016258,-0.1018605;-0.2931068;-0.003930144,-0.0999103;-0.5864793;0.05875013,-0.1015661;-0.613553;-0.004943646,-0.001327595;0.3981219;0.03818334,0;0;0,-0.002464724;0.1987054;0.02258486,-0.005914159;0.4979026;0.04362432,0.1065572;0.3780591;-0.0007415451,0.246898;0.2945428;-0.1161949,0.3694775;0.3793013;-0.3169193,-0.1118766;0.3616493;-0.001357328,-0.2363525;0.2810535;-0.135559,-0.3506832;0.3234768;-0.3537991,0.07276175;0.007383656;-0.03242237,0.08249114;-0.2909002;-0.001892228,0.07100934;-0.583478;0.06342548,0.08239068;-0.6157106;0.00767377,-0.06882092;0.0007561454;-0.04078124,-0.1050777;-0.2947873;-0.004181843,-0.1047657;-0.5883404;0.05767701,-0.1075682;-0.6142455;-0.007365715,-0.004888154;0.3980135;0.03902967,100.616
-0;0;0,-0.000706366;0.1987765;0.02207756,-0.001571379;0.4980609;0.0420585,0.1103354;0.3719011;0.002767596,0.265707;0.2705992;-0.07204942,0.4215698;0.4111684;-0.2078695,-0.1106056;0.3601435;0.005977325,-0.261142;0.2585208;-0.07775792,-0.4234208;0.3364876;-0.2512133,0.07295944;0.005476349;-0.0323563,0.08344113;-0.2925074;0.0007468276,0.07247325;-0.5849734;0.06665093,0.08386427;-0.6141454;0.006633956,-0.06908447;0.00292037;-0.04023441,-0.1018574;-0.293053;-0.003823794,-0.1002645;-0.5864614;0.05869789,-0.1016465;-0.6129422;-0.00571318,-0.001357209;0.3981467;0.03792335,0;0;0,-0.002476298;0.1987109;0.02253574,-0.005901983;0.4979194;0.04340584,0.1065362;0.3776285;-0.0007443167,0.2509839;0.2954325;-0.1120038,0.3776489;0.382015;-0.3093853,-0.1119341;0.3610203;-0.0007261112,-0.2392127;0.2815706;-0.132968,-0.3576962;0.3250616;-0.3487692,0.07276015;0.007340314;-0.03243579,0.08238537;-0.2909403;-0.001841096,0.07094666;-0.5835201;0.06347544,0.0825937;-0.6155288;0.007449415,-0.06883278;0.0007897526;-0.04076057,-0.1052076;-0.2947344;-0.004122861,-0.1048275;-0.5882918;0.05771546,-0.1074981;-0.6130059;-0.00869732,-0.004877624;0.3980266;0.03888999,100.6378
-0;0;0,-0.0007486466;0.1987992;0.02187059,-0.00174723;0.4981067;0.04149083,0.1103991;0.3720395;0.002848174,0.2668636;0.2715385;-0.07076176,0.4241344;0.4120442;-0.2050154,-0.1108606;0.3602354;0.005941056,-0.2620127;0.2579148;-0.07581189,-0.4258319;0.333705;-0.2487833,0.07300869;0.005415325;-0.03225533,0.08351592;-0.292565;0.0008708164,0.07236979;-0.5850244;0.06677423,0.08383624;-0.6139553;0.006454792,-0.06902855;0.002977602;-0.04032607,-0.1018467;-0.2929598;-0.003665313,-0.1001931;-0.5864456;0.05849117,-0.1016615;-0.6142038;-0.00436987,-0.001478053;0.3981873;0.03748623,0;0;0,-0.002476298;0.1987109;0.02253574,-0.005901983;0.4979194;0.04340584,0.1065362;0.3776285;-0.0007443167,0.2509839;0.2954325;-0.1120038,0.3776489;0.382015;-0.3093853,-0.1119341;0.3610203;-0.0007261112,-0.2392127;0.2815706;-0.132968,-0.3576962;0.3250616;-0.3487692,0.07276015;0.007340314;-0.03243579,0.08238537;-0.2909403;-0.001841096,0.07094666;-0.5835201;0.06347544,0.0825937;-0.6155288;0.007449415,-0.06883278;0.0007897526;-0.04076057,-0.1052076;-0.2947344;-0.004122861,-0.1048275;-0.5882918;0.05771546,-0.1074981;-0.6130059;-0.00869732,-0.004877624;0.3980266;0.03888999,100.6598
-0;0;0,-0.0007486466;0.1987992;0.02187059,-0.00174723;0.4981067;0.04149083,0.1103991;0.3720395;0.002848174,0.2668636;0.2715385;-0.07076176,0.4241344;0.4120442;-0.2050154,-0.1108606;0.3602354;0.005941056,-0.2620127;0.2579148;-0.07581189,-0.4258319;0.333705;-0.2487833,0.07300869;0.005415325;-0.03225533,0.08351592;-0.292565;0.0008708164,0.07236979;-0.5850244;0.06677423,0.08383624;-0.6139553;0.006454792,-0.06902855;0.002977602;-0.04032607,-0.1018467;-0.2929598;-0.003665313,-0.1001931;-0.5864456;0.05849117,-0.1016615;-0.6142038;-0.00436987,-0.001478053;0.3981873;0.03748623,0;0;0,-0.002426702;0.198713;0.0225224,-0.005729346;0.4979227;0.04339249,0.106669;0.3770486;-0.0004502498,0.2539691;0.2968269;-0.1093868,0.3881668;0.3846489;-0.3011634,-0.1119202;0.3609148;-0.0003087297,-0.2418582;0.2816314;-0.1300401,-0.3660169;0.3284132;-0.3419271,0.07276158;0.007282394;-0.03244563,0.08235967;-0.291001;-0.001869215,0.07085734;-0.5834919;0.06383263,0.08271223;-0.61514;0.007325482,-0.06883545;0.000825198;-0.04075536,-0.105225;-0.2946943;-0.00409434,-0.1049696;-0.5882048;0.05796629,-0.1074322;-0.6140363;-0.007176019,-0.004744115;0.3980294;0.03888059,100.672
-0;0;0,-0.0007486466;0.1987992;0.02187059,-0.00174723;0.4981067;0.04149083,0.1103991;0.3720395;0.002848174,0.2668636;0.2715385;-0.07076176,0.4241344;0.4120442;-0.2050154,-0.1108606;0.3602354;0.005941056,-0.2620127;0.2579148;-0.07581189,-0.4258319;0.333705;-0.2487833,0.07300869;0.005415325;-0.03225533,0.08351592;-0.292565;0.0008708164,0.07236979;-0.5850244;0.06677423,0.08383624;-0.6139553;0.006454792,-0.06902855;0.002977602;-0.04032607,-0.1018467;-0.2929598;-0.003665313,-0.1001931;-0.5864456;0.05849117,-0.1016615;-0.6142038;-0.00436987,-0.001478053;0.3981873;0.03748623,0;0;0,-0.002426702;0.198713;0.0225224,-0.005729346;0.4979227;0.04339249,0.106669;0.3770486;-0.0004502498,0.2539691;0.2968269;-0.1093868,0.3881668;0.3846489;-0.3011634,-0.1119202;0.3609148;-0.0003087297,-0.2418582;0.2816314;-0.1300401,-0.3660169;0.3284132;-0.3419271,0.07276158;0.007282394;-0.03244563,0.08235967;-0.291001;-0.001869215,0.07085734;-0.5834919;0.06383263,0.08271223;-0.61514;0.007325482,-0.06883545;0.000825198;-0.04075536,-0.105225;-0.2946943;-0.00409434,-0.1049696;-0.5882048;0.05796629,-0.1074322;-0.6140363;-0.007176019,-0.004744115;0.3980294;0.03888059,100.6868
-0;0;0,-0.0007898016;0.1988159;0.02171695,-0.001919014;0.4981447;0.04099464,0.1103923;0.3720383;0.002867822,0.2677169;0.2722359;-0.06985393,0.4275448;0.4126091;-0.2011948,-0.1110386;0.3602161;0.005843792,-0.2625183;0.2575388;-0.07484873,-0.428993;0.3329761;-0.2454224,0.07301981;0.005346106;-0.03224168,0.08360456;-0.2926443;0.0007689819,0.07256009;-0.5850561;0.06690029,0.08309989;-0.614123;0.006590035,-0.06903706;0.003017688;-0.04030852,-0.1017495;-0.292932;-0.003652077,-0.1003025;-0.5864531;0.05834197,-0.1017884;-0.6143846;-0.004303582,-0.001596288;0.3982204;0.03711764,0;0;0,-0.002426702;0.198713;0.0225224,-0.005729346;0.4979227;0.04339249,0.106669;0.3770486;-0.0004502498,0.2539691;0.2968269;-0.1093868,0.3881668;0.3846489;-0.3011634,-0.1119202;0.3609148;-0.0003087297,-0.2418582;0.2816314;-0.1300401,-0.3660169;0.3284132;-0.3419271,0.07276158;0.007282394;-0.03244563,0.08235967;-0.291001;-0.001869215,0.07085734;-0.5834919;0.06383263,0.08271223;-0.61514;0.007325482,-0.06883545;0.000825198;-0.04075536,-0.105225;-0.2946943;-0.00409434,-0.1049696;-0.5882048;0.05796629,-0.1074322;-0.6140363;-0.007176019,-0.004744115;0.3980294;0.03888059,100.7051
-0;0;0,-0.0007898016;0.1988159;0.02171695,-0.001919014;0.4981447;0.04099464,0.1103923;0.3720383;0.002867822,0.2677169;0.2722359;-0.06985393,0.4275448;0.4126091;-0.2011948,-0.1110386;0.3602161;0.005843792,-0.2625183;0.2575388;-0.07484873,-0.428993;0.3329761;-0.2454224,0.07301981;0.005346106;-0.03224168,0.08360456;-0.2926443;0.0007689819,0.07256009;-0.5850561;0.06690029,0.08309989;-0.614123;0.006590035,-0.06903706;0.003017688;-0.04030852,-0.1017495;-0.292932;-0.003652077,-0.1003025;-0.5864531;0.05834197,-0.1017884;-0.6143846;-0.004303582,-0.001596288;0.3982204;0.03711764,0;0;0,-0.002426702;0.198713;0.0225224,-0.005729346;0.4979227;0.04339249,0.106669;0.3770486;-0.0004502498,0.2539691;0.2968269;-0.1093868,0.3881668;0.3846489;-0.3011634,-0.1119202;0.3609148;-0.0003087297,-0.2418582;0.2816314;-0.1300401,-0.3660169;0.3284132;-0.3419271,0.07276158;0.007282394;-0.03244563,0.08235967;-0.291001;-0.001869215,0.07085734;-0.5834919;0.06383263,0.08271223;-0.61514;0.007325482,-0.06883545;0.000825198;-0.04075536,-0.105225;-0.2946943;-0.00409434,-0.1049696;-0.5882048;0.05796629,-0.1074322;-0.6140363;-0.007176019,-0.004744115;0.3980294;0.03888059,100.7162
-0;0;0,-0.0009030314;0.1988292;0.02158974,-0.002327685;0.4981712;0.0406388,0.1102461;0.3722615;0.002922721,0.2685103;0.27313;-0.0686691,0.4299045;0.4136072;-0.1979676,-0.1114051;0.3602558;0.005812246,-0.2629192;0.2571059;-0.07421008,-0.4352676;0.3298083;-0.2400727,0.07300197;0.005275175;-0.03229372,0.08346577;-0.2926955;0.0009330846,0.07239825;-0.5851319;0.06695175,0.08304437;-0.6142539;0.006732464,-0.06909075;0.003061726;-0.04021309,-0.1016843;-0.2929006;-0.003553074,-0.100225;-0.5863783;0.05864567,-0.1004022;-0.6152846;-0.002785359,-0.001888618;0.3982442;0.03684474,0;0;0,-0.002354349;0.198724;0.02243259,-0.005425369;0.4979595;0.04294614,0.1069759;0.37684;-0.0003608353,0.2577631;0.29667;-0.1044569,0.3961021;0.3860779;-0.2925222,-0.1119414;0.3607122;0.0002877228,-0.2445555;0.2820008;-0.1270623,-0.3741171;0.3308761;-0.3352088,0.07275147;0.007239543;-0.03247787,0.08201928;-0.2910147;-0.001518011,0.07065028;-0.5835711;0.06391542,0.0825091;-0.61567;0.008066311,-0.06885135;0.0008433495;-0.04072811,-0.1051931;-0.2946872;-0.004108541,-0.1049667;-0.5881901;0.05798799,-0.1077145;-0.6141793;-0.006958947,-0.004525575;0.3980584;0.03859045,100.739
-0;0;0,-0.001002198;0.1988285;0.02159269,-0.002577086;0.4981704;0.0406322,0.1100805;0.3722271;0.002967715,0.2692254;0.273226;-0.06682982,0.4323356;0.4137511;-0.1939038,-0.1114937;0.3600359;0.005777478,-0.2654841;0.2614899;-0.07531285,-0.4341872;0.3445033;-0.2400795,0.0731376;0.005176985;-0.03200142,0.08340016;-0.2928214;0.00103863,0.0723506;-0.5852661;0.06702378,0.08357751;-0.6149223;0.00761985,-0.06895555;0.00305049;-0.04044537,-0.1016885;-0.2928692;-0.003565345,-0.1003133;-0.5863374;0.05868008,-0.1005212;-0.6145242;-0.00366402,-0.002061717;0.3982437;0.0368388,0;0;0,-0.002354349;0.198724;0.02243259,-0.005425369;0.4979595;0.04294614,0.1069759;0.37684;-0.0003608353,0.2577631;0.29667;-0.1044569,0.3961021;0.3860779;-0.2925222,-0.1119414;0.3607122;0.0002877228,-0.2445555;0.2820008;-0.1270623,-0.3741171;0.3308761;-0.3352088,0.07275147;0.007239543;-0.03247787,0.08201928;-0.2910147;-0.001518011,0.07065028;-0.5835711;0.06391542,0.0825091;-0.61567;0.008066311,-0.06885135;0.0008433495;-0.04072811,-0.1051931;-0.2946872;-0.004108541,-0.1049667;-0.5881901;0.05798799,-0.1077145;-0.6141793;-0.006958947,-0.004525575;0.3980584;0.03859045,100.7605
-0;0;0,-0.001002198;0.1988285;0.02159269,-0.002577086;0.4981704;0.0406322,0.1100805;0.3722271;0.002967715,0.2692254;0.273226;-0.06682982,0.4323356;0.4137511;-0.1939038,-0.1114937;0.3600359;0.005777478,-0.2654841;0.2614899;-0.07531285,-0.4341872;0.3445033;-0.2400795,0.0731376;0.005176985;-0.03200142,0.08340016;-0.2928214;0.00103863,0.0723506;-0.5852661;0.06702378,0.08357751;-0.6149223;0.00761985,-0.06895555;0.00305049;-0.04044537,-0.1016885;-0.2928692;-0.003565345,-0.1003133;-0.5863374;0.05868008,-0.1005212;-0.6145242;-0.00366402,-0.002061717;0.3982437;0.0368388,0;0;0,-0.002312363;0.1987351;0.02233813,-0.005246038;0.4979863;0.0426326,0.1069754;0.3766164;-0.0008263551,0.2607294;0.2965457;-0.100568,0.4053418;0.3867793;-0.2834482,-0.111967;0.3605058;0.0007333755,-0.2475441;0.2805751;-0.1226762,-0.3813764;0.3298442;-0.3280088,0.07275069;0.007185945;-0.03249153,0.08207433;-0.2910809;-0.001670133,0.07062173;-0.5835789;0.06400903,0.08241812;-0.6155459;0.007953227,-0.06885209;0.0008821854;-0.04072604,-0.1051758;-0.2946545;-0.004137792,-0.1050043;-0.5881927;0.05779184,-0.1081602;-0.6150581;-0.006096795,-0.004394334;0.398081;0.03836605,100.7726
-0;0;0,-0.001031743;0.198839;0.02149396,-0.002668429;0.4981945;0.04030882,0.1100853;0.3723561;0.002895508,0.2697783;0.2733572;-0.06564167,0.4359715;0.4135262;-0.1890616,-0.1116179;0.3600831;0.005691249,-0.2662471;0.2601932;-0.07248685,-0.4368327;0.3401906;-0.2368065,0.07316278;0.005131323;-0.03195116,0.08341731;-0.2928718;0.001048636,0.07224054;-0.5852674;0.06722961,0.08386306;-0.6144431;0.007261895,-0.06894735;0.003065428;-0.04045821,-0.101665;-0.2928566;-0.003583778,-0.1002071;-0.5862905;0.05882187,-0.1005012;-0.6144793;-0.003519271,-0.002132884;0.3982649;0.03659734,0;0;0,-0.002312363;0.1987351;0.02233813,-0.005246038;0.4979863;0.0426326,0.1069754;0.3766164;-0.0008263551,0.2607294;0.2965457;-0.100568,0.4053418;0.3867793;-0.2834482,-0.111967;0.3605058;0.0007333755,-0.2475441;0.2805751;-0.1226762,-0.3813764;0.3298442;-0.3280088,0.07275069;0.007185945;-0.03249153,0.08207433;-0.2910809;-0.001670133,0.07062173;-0.5835789;0.06400903,0.08241812;-0.6155459;0.007953227,-0.06885209;0.0008821854;-0.04072604,-0.1051758;-0.2946545;-0.004137792,-0.1050043;-0.5881927;0.05779184,-0.1081602;-0.6150581;-0.006096795,-0.004394334;0.398081;0.03836605,100.7938
-0;0;0,-0.001031743;0.198839;0.02149396,-0.002668429;0.4981945;0.04030882,0.1100853;0.3723561;0.002895508,0.2697783;0.2733572;-0.06564167,0.4359715;0.4135262;-0.1890616,-0.1116179;0.3600831;0.005691249,-0.2662471;0.2601932;-0.07248685,-0.4368327;0.3401906;-0.2368065,0.07316278;0.005131323;-0.03195116,0.08341731;-0.2928718;0.001048636,0.07224054;-0.5852674;0.06722961,0.08386306;-0.6144431;0.007261895,-0.06894735;0.003065428;-0.04045821,-0.101665;-0.2928566;-0.003583778,-0.1002071;-0.5862905;0.05882187,-0.1005012;-0.6144793;-0.003519271,-0.002132884;0.3982649;0.03659734,0;0;0,-0.002312363;0.1987351;0.02233813,-0.005246038;0.4979863;0.0426326,0.1069754;0.3766164;-0.0008263551,0.2607294;0.2965457;-0.100568,0.4053418;0.3867793;-0.2834482,-0.111967;0.3605058;0.0007333755,-0.2475441;0.2805751;-0.1226762,-0.3813764;0.3298442;-0.3280088,0.07275069;0.007185945;-0.03249153,0.08207433;-0.2910809;-0.001670133,0.07062173;-0.5835789;0.06400903,0.08241812;-0.6155459;0.007953227,-0.06885209;0.0008821854;-0.04072604,-0.1051758;-0.2946545;-0.004137792,-0.1050043;-0.5881927;0.05779184,-0.1081602;-0.6150581;-0.006096795,-0.004394334;0.398081;0.03836605,100.8057
-0;0;0,-0.001031743;0.198839;0.02149396,-0.002668429;0.4981945;0.04030882,0.1100853;0.3723561;0.002895508,0.2697783;0.2733572;-0.06564167,0.4359715;0.4135262;-0.1890616,-0.1116179;0.3600831;0.005691249,-0.2662471;0.2601932;-0.07248685,-0.4368327;0.3401906;-0.2368065,0.07316278;0.005131323;-0.03195116,0.08341731;-0.2928718;0.001048636,0.07224054;-0.5852674;0.06722961,0.08386306;-0.6144431;0.007261895,-0.06894735;0.003065428;-0.04045821,-0.101665;-0.2928566;-0.003583778,-0.1002071;-0.5862905;0.05882187,-0.1005012;-0.6144793;-0.003519271,-0.002132884;0.3982649;0.03659734,0;0;0,-0.002312363;0.1987351;0.02233813,-0.005246038;0.4979863;0.0426326,0.1069754;0.3766164;-0.0008263551,0.2607294;0.2965457;-0.100568,0.4053418;0.3867793;-0.2834482,-0.111967;0.3605058;0.0007333755,-0.2475441;0.2805751;-0.1226762,-0.3813764;0.3298442;-0.3280088,0.07275069;0.007185945;-0.03249153,0.08207433;-0.2910809;-0.001670133,0.07062173;-0.5835789;0.06400903,0.08241812;-0.6155459;0.007953227,-0.06885209;0.0008821854;-0.04072604,-0.1051758;-0.2946545;-0.004137792,-0.1050043;-0.5881927;0.05779184,-0.1081602;-0.6150581;-0.006096795,-0.004394334;0.398081;0.03836605,100.8168
-0;0;0,-0.00107357;0.1988392;0.02148972,-0.002747569;0.4981916;0.0403516,0.1100305;0.3723232;0.002996705,0.2703782;0.2735652;-0.06434919,0.4386081;0.4129183;-0.1859198,-0.11167;0.3599994;0.005755946,-0.2663816;0.2590785;-0.07092061,-0.4386266;0.3365133;-0.2347361,0.07321155;0.005110886;-0.03184252,0.08337982;-0.2928998;0.001115423,0.0727295;-0.5854015;0.06691323,0.08353116;-0.6159099;0.008588839,-0.06884675;0.003102318;-0.04062635,-0.1016687;-0.2927768;-0.003501445,-0.1004694;-0.5863155;0.05841456,-0.1001974;-0.6138234;-0.004771326,-0.002202841;0.3982626;0.03662461,0;0;0,-0.002373495;0.198743;0.0222615,-0.005391616;0.4980024;0.04241369,0.1070127;0.3766793;-0.0005875938,0.2639795;0.2972411;-0.09572433,0.4175436;0.3874367;-0.2711746,-0.1121655;0.3603217;0.001034394,-0.2500234;0.2804832;-0.119883,-0.3908642;0.3297477;-0.3204742,0.07278483;0.007142019;-0.03242467,0.0819109;-0.291138;-0.001671512,0.07050358;-0.5835651;0.0643304,0.08225955;-0.6156307;0.008410584,-0.06883411;0.000918977;-0.04075562,-0.1053107;-0.2945963;-0.004147004,-0.105032;-0.5881161;0.05786937,-0.1091182;-0.6152574;-0.005632773,-0.004503884;0.3980946;0.03821222,100.8388
-0;0;0,-0.00107357;0.1988392;0.02148972,-0.002747569;0.4981916;0.0403516,0.1100305;0.3723232;0.002996705,0.2703782;0.2735652;-0.06434919,0.4386081;0.4129183;-0.1859198,-0.11167;0.3599994;0.005755946,-0.2663816;0.2590785;-0.07092061,-0.4386266;0.3365133;-0.2347361,0.07321155;0.005110886;-0.03184252,0.08337982;-0.2928998;0.001115423,0.0727295;-0.5854015;0.06691323,0.08353116;-0.6159099;0.008588839,-0.06884675;0.003102318;-0.04062635,-0.1016687;-0.2927768;-0.003501445,-0.1004694;-0.5863155;0.05841456,-0.1001974;-0.6138234;-0.004771326,-0.002202841;0.3982626;0.03662461,0;0;0,-0.002373495;0.198743;0.0222615,-0.005391616;0.4980024;0.04241369,0.1070127;0.3766793;-0.0005875938,0.2639795;0.2972411;-0.09572433,0.4175436;0.3874367;-0.2711746,-0.1121655;0.3603217;0.001034394,-0.2500234;0.2804832;-0.119883,-0.3908642;0.3297477;-0.3204742,0.07278483;0.007142019;-0.03242467,0.0819109;-0.291138;-0.001671512,0.07050358;-0.5835651;0.0643304,0.08225955;-0.6156307;0.008410584,-0.06883411;0.000918977;-0.04075562,-0.1053107;-0.2945963;-0.004147004,-0.105032;-0.5881161;0.05786937,-0.1091182;-0.6152574;-0.005632773,-0.004503884;0.3980946;0.03821222,100.8506
-0;0;0,-0.001085557;0.1988426;0.02145836,-0.002769202;0.4981964;0.04029841,0.1100305;0.3723291;0.003014013,0.2709214;0.2735707;-0.06302324,0.4420701;0.4120762;-0.1814477,-0.111666;0.3599958;0.005632535,-0.2666199;0.258485;-0.06976524,-0.4397962;0.3351386;-0.2329651,0.07321812;0.005035585;-0.03183943,0.08337614;-0.2929752;0.001121741,0.07279111;-0.5854604;0.06700282,0.08340272;-0.6152751;0.007698398,-0.06885169;0.003140965;-0.040615,-0.101652;-0.2927432;-0.003510915,-0.1004577;-0.5862896;0.0583686,-0.1009038;-0.6129218;-0.005875614,-0.002222813;0.3982671;0.03657602,0;0;0,-0.002373495;0.198743;0.0222615,-0.005391616;0.4980024;0.04241369,0.1070127;0.3766793;-0.0005875938,0.2639795;0.2972411;-0.09572433,0.4175436;0.3874367;-0.2711746,-0.1121655;0.3603217;0.001034394,-0.2500234;0.2804832;-0.119883,-0.3908642;0.3297477;-0.3204742,0.07278483;0.007142019;-0.03242467,0.0819109;-0.291138;-0.001671512,0.07050358;-0.5835651;0.0643304,0.08225955;-0.6156307;0.008410584,-0.06883411;0.000918977;-0.04075562,-0.1053107;-0.2945963;-0.004147004,-0.105032;-0.5881161;0.05786937,-0.1091182;-0.6152574;-0.005632773,-0.004503884;0.3980946;0.03821222,100.8725
-0;0;0,-0.001085557;0.1988426;0.02145836,-0.002769202;0.4981964;0.04029841,0.1100305;0.3723291;0.003014013,0.2709214;0.2735707;-0.06302324,0.4420701;0.4120762;-0.1814477,-0.111666;0.3599958;0.005632535,-0.2666199;0.258485;-0.06976524,-0.4397962;0.3351386;-0.2329651,0.07321812;0.005035585;-0.03183943,0.08337614;-0.2929752;0.001121741,0.07279111;-0.5854604;0.06700282,0.08340272;-0.6152751;0.007698398,-0.06885169;0.003140965;-0.040615,-0.101652;-0.2927432;-0.003510915,-0.1004577;-0.5862896;0.0583686,-0.1009038;-0.6129218;-0.005875614,-0.002222813;0.3982671;0.03657602,0;0;0,-0.002270869;0.1987742;0.02199202,-0.005122463;0.4980671;0.04165226,0.1073557;0.3759459;-0.0003543831,0.2665009;0.2978585;-0.09295647,0.4307671;0.3894134;-0.2576814,-0.1121684;0.36034;0.001148786,-0.252664;0.2785429;-0.1153425,-0.398897;0.3290277;-0.3117278,0.07273627;0.007013206;-0.03256146,0.08182973;-0.2912308;-0.001451168,0.07050208;-0.5837286;0.06425093,0.08179516;-0.6164091;0.009147502,-0.06889631;0.0009817367;-0.04064891,-0.1053943;-0.294523;-0.003977019,-0.1051428;-0.5878918;0.05875021,-0.107376;-0.6170194;-0.002354953,-0.004284634;0.3981512;0.03763717,100.8838
-0;0;0,-0.001110549;0.1988459;0.02142594,-0.002824181;0.4981999;0.04026112,0.1100046;0.3722957;0.003074598,0.2712453;0.2734901;-0.06203229,0.4452859;0.4112539;-0.1770583,-0.1117169;0.3599879;0.005622262,-0.266818;0.2581356;-0.06900852,-0.4406829;0.3345764;-0.2315748,0.07322957;0.005006033;-0.03181775,0.08339152;-0.2930051;0.001138415,0.07283563;-0.5853813;0.06750639,0.08339877;-0.6147549;0.007604316,-0.06883385;0.003175967;-0.04064251,-0.1016023;-0.2927068;-0.003499612,-0.1004718;-0.58625;0.0583966,-0.1008574;-0.6129166;-0.005806897,-0.002269769;0.3982708;0.03653725,0;0;0,-0.002270869;0.1987742;0.02199202,-0.005122463;0.4980671;0.04165226,0.1073557;0.3759459;-0.0003543831,0.2665009;0.2978585;-0.09295647,0.4307671;0.3894134;-0.2576814,-0.1121684;0.36034;0.001148786,-0.252664;0.2785429;-0.1153425,-0.398897;0.3290277;-0.3117278,0.07273627;0.007013206;-0.03256146,0.08182973;-0.2912308;-0.001451168,0.07050208;-0.5837286;0.06425093,0.08179516;-0.6164091;0.009147502,-0.06889631;0.0009817367;-0.04064891,-0.1053943;-0.294523;-0.003977019,-0.1051428;-0.5878918;0.05875021,-0.107376;-0.6170194;-0.002354953,-0.004284634;0.3981512;0.03763717,100.9056
-0;0;0,-0.001110549;0.1988459;0.02142594,-0.002824181;0.4981999;0.04026112,0.1100046;0.3722957;0.003074598,0.2712453;0.2734901;-0.06203229,0.4452859;0.4112539;-0.1770583,-0.1117169;0.3599879;0.005622262,-0.266818;0.2581356;-0.06900852,-0.4406829;0.3345764;-0.2315748,0.07322957;0.005006033;-0.03181775,0.08339152;-0.2930051;0.001138415,0.07283563;-0.5853813;0.06750639,0.08339877;-0.6147549;0.007604316,-0.06883385;0.003175967;-0.04064251,-0.1016023;-0.2927068;-0.003499612,-0.1004718;-0.58625;0.0583966,-0.1008574;-0.6129166;-0.005806897,-0.002269769;0.3982708;0.03653725,0;0;0,-0.002270869;0.1987742;0.02199202,-0.005122463;0.4980671;0.04165226,0.1073557;0.3759459;-0.0003543831,0.2665009;0.2978585;-0.09295647,0.4307671;0.3894134;-0.2576814,-0.1121684;0.36034;0.001148786,-0.252664;0.2785429;-0.1153425,-0.398897;0.3290277;-0.3117278,0.07273627;0.007013206;-0.03256146,0.08182973;-0.2912308;-0.001451168,0.07050208;-0.5837286;0.06425093,0.08179516;-0.6164091;0.009147502,-0.06889631;0.0009817367;-0.04064891,-0.1053943;-0.294523;-0.003977019,-0.1051428;-0.5878918;0.05875021,-0.107376;-0.6170194;-0.002354953,-0.004284634;0.3981512;0.03763717,100.9172
-0;0;0,-0.001111752;0.1988489;0.02139789,-0.002811848;0.4982092;0.04013321,0.1100025;0.372186;0.003053591,0.2716152;0.2734657;-0.06125519,0.4483126;0.4100766;-0.1735739,-0.1116842;0.359867;0.005587347,-0.2668534;0.257715;-0.06849023,-0.4418679;0.334198;-0.2297982,0.07323418;0.004934662;-0.03181829,0.08335652;-0.2930714;0.00119558,0.07279509;-0.5854508;0.06754891,0.08347421;-0.6147742;0.007600967,-0.06883775;0.00321247;-0.04063305,-0.1016056;-0.2926718;-0.003501322,-0.1002854;-0.5861413;0.05873907,-0.1002642;-0.6132899;-0.004885644,-0.002265933;0.3982788;0.03644481,0;0;0,-0.002249641;0.1987957;0.0217998,-0.005157324;0.4981094;0.04112232,0.1074705;0.3758442;-0.0003268607,0.2697804;0.2981098;-0.08757859,0.436606;0.3907799;-0.2490762,-0.112305;0.3602871;0.00123895,-0.25496;0.2768746;-0.1114194,-0.4072868;0.3280522;-0.3029329,0.07275268;0.006927805;-0.03254308,0.08187345;-0.2913297;-0.001570195,0.07036418;-0.5838394;0.06404662,0.08206555;-0.6162242;0.008586451,-0.06889882;0.001072353;-0.04064238,-0.1054957;-0.294407;-0.003864203,-0.1053801;-0.5878519;0.05850649,-0.1058462;-0.554773;-0.04005039,-0.004287507;0.3981888;0.03723454,100.9398
-0;0;0,-0.001111752;0.1988489;0.02139789,-0.002811848;0.4982092;0.04013321,0.1100025;0.372186;0.003053591,0.2716152;0.2734657;-0.06125519,0.4483126;0.4100766;-0.1735739,-0.1116842;0.359867;0.005587347,-0.2668534;0.257715;-0.06849023,-0.4418679;0.334198;-0.2297982,0.07323418;0.004934662;-0.03181829,0.08335652;-0.2930714;0.00119558,0.07279509;-0.5854508;0.06754891,0.08347421;-0.6147742;0.007600967,-0.06883775;0.00321247;-0.04063305,-0.1016056;-0.2926718;-0.003501322,-0.1002854;-0.5861413;0.05873907,-0.1002642;-0.6132899;-0.004885644,-0.002265933;0.3982788;0.03644481,0;0;0,-0.002249641;0.1987957;0.0217998,-0.005157324;0.4981094;0.04112232,0.1074705;0.3758442;-0.0003268607,0.2697804;0.2981098;-0.08757859,0.436606;0.3907799;-0.2490762,-0.112305;0.3602871;0.00123895,-0.25496;0.2768746;-0.1114194,-0.4072868;0.3280522;-0.3029329,0.07275268;0.006927805;-0.03254308,0.08187345;-0.2913297;-0.001570195,0.07036418;-0.5838394;0.06404662,0.08206555;-0.6162242;0.008586451,-0.06889882;0.001072353;-0.04064238,-0.1054957;-0.294407;-0.003864203,-0.1053801;-0.5878519;0.05850649,-0.1058462;-0.554773;-0.04005039,-0.004287507;0.3981888;0.03723454,100.9534
-0;0;0,-0.001183853;0.1988516;0.02136885,-0.003016657;0.4982151;0.04003718,0.1098717;0.3721252;0.003081121,0.2719641;0.2735085;-0.06017059,0.4503242;0.4093573;-0.1707725,-0.1118154;0.3598276;0.005528269,-0.2670929;0.2575311;-0.06812169,-0.4429535;0.333975;-0.2285255,0.07322784;0.004933859;-0.03183301,0.08326851;-0.2930928;0.00101969,0.07269484;-0.5854321;0.06754741,0.08340397;-0.6149193;0.007822227,-0.06883897;0.003216258;-0.04063068,-0.1017105;-0.2926728;-0.003628697,-0.1003759;-0.5861745;0.0584595,-0.1004621;-0.613431;-0.005033974,-0.002410014;0.398284;0.0363758,0;0;0,-0.002180614;0.1988347;0.02144765,-0.004821032;0.498221;0.03960644,0.1079167;0.3755176;-0.0005010292,0.2727842;0.2988248;-0.0837892,0.4455069;0.3918146;-0.2387723,-0.1123558;0.3602763;0.001176313,-0.2588825;0.2762276;-0.105902,-0.414502;0.3280749;-0.2945669,0.07275798;0.006774215;-0.03256356,0.08217546;-0.2914884;-0.00172969,0.07036254;-0.5839547;0.064027,0.08246785;-0.6160323;0.00819939,-0.06890011;0.001126272;-0.04063872,-0.1054677;-0.2943617;-0.003901262,-0.1053954;-0.5877941;0.05852827,-0.1058795;-0.5547404;-0.0400242,-0.004049136;0.3982827;0.0361788,100.9723
-0;0;0,-0.001254607;0.1988527;0.02135484,-0.0031452;0.4982141;0.04005178,0.1097654;0.3721138;0.00312094,0.2722886;0.2733986;-0.05885894,0.4543706;0.4067102;-0.1664422,-0.1118758;0.3596447;0.005568953,-0.2675692;0.2572319;-0.06703389,-0.4436722;0.3338061;-0.2271092,0.07324919;0.004928521;-0.03178468,0.08311964;-0.2931031;0.001074743,0.07237476;-0.5854343;0.06761064,0.08278865;-0.6154374;0.00852558,-0.06880984;0.003232059;-0.04067872,-0.1019578;-0.292628;-0.003691625,-0.1005781;-0.586208;0.0580246,-0.1021946;-0.6145045;-0.004160896,-0.002524368;0.3982835;0.03637982,0;0;0,-0.002180614;0.1988347;0.02144765,-0.004821032;0.498221;0.03960644,0.1079167;0.3755176;-0.0005010292,0.2727842;0.2988248;-0.0837892,0.4455069;0.3918146;-0.2387723,-0.1123558;0.3602763;0.001176313,-0.2588825;0.2762276;-0.105902,-0.414502;0.3280749;-0.2945669,0.07275798;0.006774215;-0.03256356,0.08217546;-0.2914884;-0.00172969,0.07036254;-0.5839547;0.064027,0.08246785;-0.6160323;0.00819939,-0.06890011;0.001126272;-0.04063872,-0.1054677;-0.2943617;-0.003901262,-0.1053954;-0.5877941;0.05852827,-0.1058795;-0.5547404;-0.0400242,-0.004049136;0.3982827;0.0361788,100.9937
-0;0;0,-0.001254607;0.1988527;0.02135484,-0.0031452;0.4982141;0.04005178,0.1097654;0.3721138;0.00312094,0.2722886;0.2733986;-0.05885894,0.4543706;0.4067102;-0.1664422,-0.1118758;0.3596447;0.005568953,-0.2675692;0.2572319;-0.06703389,-0.4436722;0.3338061;-0.2271092,0.07324919;0.004928521;-0.03178468,0.08311964;-0.2931031;0.001074743,0.07237476;-0.5854343;0.06761064,0.08278865;-0.6154374;0.00852558,-0.06880984;0.003232059;-0.04067872,-0.1019578;-0.292628;-0.003691625,-0.1005781;-0.586208;0.0580246,-0.1021946;-0.6145045;-0.004160896,-0.002524368;0.3982835;0.03637982,0;0;0,-0.002180614;0.1988347;0.02144765,-0.004821032;0.498221;0.03960644,0.1079167;0.3755176;-0.0005010292,0.2727842;0.2988248;-0.0837892,0.4455069;0.3918146;-0.2387723,-0.1123558;0.3602763;0.001176313,-0.2588825;0.2762276;-0.105902,-0.414502;0.3280749;-0.2945669,0.07275798;0.006774215;-0.03256356,0.08217546;-0.2914884;-0.00172969,0.07036254;-0.5839547;0.064027,0.08246785;-0.6160323;0.00819939,-0.06890011;0.001126272;-0.04063872,-0.1054677;-0.2943617;-0.003901262,-0.1053954;-0.5877941;0.05852827,-0.1058795;-0.5547404;-0.0400242,-0.004049136;0.3982827;0.0361788,101.0056
-0;0;0,-0.001254607;0.1988527;0.02135484,-0.0031452;0.4982141;0.04005178,0.1097654;0.3721138;0.00312094,0.2722886;0.2733986;-0.05885894,0.4543706;0.4067102;-0.1664422,-0.1118758;0.3596447;0.005568953,-0.2675692;0.2572319;-0.06703389,-0.4436722;0.3338061;-0.2271092,0.07324919;0.004928521;-0.03178468,0.08311964;-0.2931031;0.001074743,0.07237476;-0.5854343;0.06761064,0.08278865;-0.6154374;0.00852558,-0.06880984;0.003232059;-0.04067872,-0.1019578;-0.292628;-0.003691625,-0.1005781;-0.586208;0.0580246,-0.1021946;-0.6145045;-0.004160896,-0.002524368;0.3982835;0.03637982,0;0;0,-0.002180614;0.1988347;0.02144765,-0.004821032;0.498221;0.03960644,0.1079167;0.3755176;-0.0005010292,0.2727842;0.2988248;-0.0837892,0.4455069;0.3918146;-0.2387723,-0.1123558;0.3602763;0.001176313,-0.2588825;0.2762276;-0.105902,-0.414502;0.3280749;-0.2945669,0.07275798;0.006774215;-0.03256356,0.08217546;-0.2914884;-0.00172969,0.07036254;-0.5839547;0.064027,0.08246785;-0.6160323;0.00819939,-0.06890011;0.001126272;-0.04063872,-0.1054677;-0.2943617;-0.003901262,-0.1053954;-0.5877941;0.05852827,-0.1058795;-0.5547404;-0.0400242,-0.004049136;0.3982827;0.0361788,101.0164
-0;0;0,-0.001287719;0.1988551;0.02133011,-0.003244796;0.4982183;0.03999292,0.1097062;0.3721229;0.003119729,0.2727255;0.2732517;-0.05728874,0.4561519;0.4057391;-0.1635988,-0.1119614;0.3596758;0.005528007,-0.2677486;0.2571337;-0.06669013,-0.4443932;0.3334762;-0.2262788,0.07326254;0.00491643;-0.03175576,0.0831043;-0.2931202;0.00106683,0.07287825;-0.5855969;0.06704284,0.08269785;-0.6159093;0.008276418,-0.06880113;0.003235782;-0.04069317,-0.1018429;-0.2926448;-0.003775109,-0.1004017;-0.5861665;0.0582163,-0.1015111;-0.6151367;-0.003122687,-0.00259852;0.3982874;0.03633234,0;0;0,-0.002116158;0.198864;0.02118104,-0.004708756;0.4982936;0.03859777,0.108251;0.3754506;-0.0004673079,0.2753989;0.2990668;-0.07937944,0.4548708;0.3935479;-0.2255408,-0.1124967;0.3603655;0.001213133,-0.2616012;0.2754265;-0.1015158,-0.4235436;0.3315684;-0.2835123,0.07278495;0.006639334;-0.03253108,0.08215452;-0.2916264;-0.001712475,0.0705098;-0.5842047;0.06357387,0.08300388;-0.6161361;0.00761728,-0.06890177;0.001208671;-0.04063355,-0.1055223;-0.2942805;-0.003958177,-0.105486;-0.5876993;0.05853553,-0.1059509;-0.5546649;-0.04001372,-0.003935841;0.3983462;0.03544781,101.0277
-0;0;0,-0.001287719;0.1988551;0.02133011,-0.003244796;0.4982183;0.03999292,0.1097062;0.3721229;0.003119729,0.2727255;0.2732517;-0.05728874,0.4561519;0.4057391;-0.1635988,-0.1119614;0.3596758;0.005528007,-0.2677486;0.2571337;-0.06669013,-0.4443932;0.3334762;-0.2262788,0.07326254;0.00491643;-0.03175576,0.0831043;-0.2931202;0.00106683,0.07287825;-0.5855969;0.06704284,0.08269785;-0.6159093;0.008276418,-0.06880113;0.003235782;-0.04069317,-0.1018429;-0.2926448;-0.003775109,-0.1004017;-0.5861665;0.0582163,-0.1015111;-0.6151367;-0.003122687,-0.00259852;0.3982874;0.03633234,0;0;0,-0.002116158;0.198864;0.02118104,-0.004708756;0.4982936;0.03859777,0.108251;0.3754506;-0.0004673079,0.2753989;0.2990668;-0.07937944,0.4548708;0.3935479;-0.2255408,-0.1124967;0.3603655;0.001213133,-0.2616012;0.2754265;-0.1015158,-0.4235436;0.3315684;-0.2835123,0.07278495;0.006639334;-0.03253108,0.08215452;-0.2916264;-0.001712475,0.0705098;-0.5842047;0.06357387,0.08300388;-0.6161361;0.00761728,-0.06890177;0.001208671;-0.04063355,-0.1055223;-0.2942805;-0.003958177,-0.105486;-0.5876993;0.05853553,-0.1059509;-0.5546649;-0.04001372,-0.003935841;0.3983462;0.03544781,101.0392
-0;0;0,-0.00131444;0.1988568;0.0213132,-0.00330588;0.4982194;0.03998067,0.1096077;0.3717318;0.003255237,0.2727275;0.2726849;-0.05659173,0.4571722;0.4053072;-0.1609539,-0.1120276;0.3597037;0.005533664,-0.2678946;0.2571864;-0.06654746,-0.4450718;0.3337378;-0.2254442,0.07327938;0.00487255;-0.03172368,0.08309837;-0.2931601;0.00114172,0.07276511;-0.5856421;0.0670775,0.0827226;-0.6164752;0.009052847,-0.06878942;0.003265822;-0.04071056,-0.1019037;-0.2926144;-0.003854908,-0.1003918;-0.5861067;0.05827407,-0.1008052;-0.6157143;-0.002244156,-0.002649397;0.3982887;0.03631683,0;0;0,-0.002116158;0.198864;0.02118104,-0.004708756;0.4982936;0.03859777,0.108251;0.3754506;-0.0004673079,0.2753989;0.2990668;-0.07937944,0.4548708;0.3935479;-0.2255408,-0.1124967;0.3603655;0.001213133,-0.2616012;0.2754265;-0.1015158,-0.4235436;0.3315684;-0.2835123,0.07278495;0.006639334;-0.03253108,0.08215452;-0.2916264;-0.001712475,0.0705098;-0.5842047;0.06357387,0.08300388;-0.6161361;0.00761728,-0.06890177;0.001208671;-0.04063355,-0.1055223;-0.2942805;-0.003958177,-0.105486;-0.5876993;0.05853553,-0.1059509;-0.5546649;-0.04001372,-0.003935841;0.3983462;0.03544781,101.061
-0;0;0,-0.00131444;0.1988568;0.0213132,-0.00330588;0.4982194;0.03998067,0.1096077;0.3717318;0.003255237,0.2727275;0.2726849;-0.05659173,0.4571722;0.4053072;-0.1609539,-0.1120276;0.3597037;0.005533664,-0.2678946;0.2571864;-0.06654746,-0.4450718;0.3337378;-0.2254442,0.07327938;0.00487255;-0.03172368,0.08309837;-0.2931601;0.00114172,0.07276511;-0.5856421;0.0670775,0.0827226;-0.6164752;0.009052847,-0.06878942;0.003265822;-0.04071056,-0.1019037;-0.2926144;-0.003854908,-0.1003918;-0.5861067;0.05827407,-0.1008052;-0.6157143;-0.002244156,-0.002649397;0.3982887;0.03631683,0;0;0,-0.002117227;0.1988817;0.02101409,-0.004793232;0.4983431;0.0378456,0.108381;0.375434;-0.0004266724,0.2786065;0.3001348;-0.073593,0.462862;0.3936954;-0.2142925,-0.1127874;0.3607168;0.001142811,-0.2649886;0.2751354;-0.09637955,-0.4310838;0.3307347;-0.2747642,0.07281214;0.006505678;-0.03249721,0.08237348;-0.2917769;-0.00190175,0.07056906;-0.5843167;0.06352851,0.08288211;-0.6154477;0.006378215,-0.0688963;0.001412671;-0.04063625,-0.1055739;-0.2940863;-0.004096758,-0.1056286;-0.5875053;0.05839546,-0.1060623;-0.5544868;-0.04015118,-0.003975106;0.3983893;0.03491677,101.0722
-0;0;0,-0.00134671;0.1988557;0.02132175,-0.003359861;0.4982155;0.04003142,0.1095567;0.3716603;0.003343292,0.2727188;0.2721108;-0.0555463,0.4577309;0.4044432;-0.1592703,-0.1120798;0.359691;0.005592125,-0.268012;0.2571799;-0.06635668,-0.4455687;0.3340131;-0.2246926,0.07331485;0.004894555;-0.03163819,0.08307182;-0.2931522;0.001117367,0.07246286;-0.5856005;0.06715888,0.08269224;-0.6165804;0.009386767,-0.06873092;0.003237054;-0.04081153,-0.1019577;-0.2926172;-0.003848746,-0.1004679;-0.5861017;0.05831747,-0.1007784;-0.6156706;-0.00225224,-0.002699106;0.3982853;0.03635473,0;0;0,-0.002117227;0.1988817;0.02101409,-0.004793232;0.4983431;0.0378456,0.108381;0.375434;-0.0004266724,0.2786065;0.3001348;-0.073593,0.462862;0.3936954;-0.2142925,-0.1127874;0.3607168;0.001142811,-0.2649886;0.2751354;-0.09637955,-0.4310838;0.3307347;-0.2747642,0.07281214;0.006505678;-0.03249721,0.08237348;-0.2917769;-0.00190175,0.07056906;-0.5843167;0.06352851,0.08288211;-0.6154477;0.006378215,-0.0688963;0.001412671;-0.04063625,-0.1055739;-0.2940863;-0.004096758,-0.1056286;-0.5875053;0.05839546,-0.1060623;-0.5544868;-0.04015118,-0.003975106;0.3983893;0.03491677,101.0942
-0;0;0,-0.0005738141;0.1991735;0.01815397,-0.001553196;0.498735;0.03345678,0.1127254;0.3746407;0.001765672,0.2776977;0.2762317;-0.05391028,0.4512406;0.3985395;-0.185909,-0.1119992;0.3620689;0.00308682,-0.2684985;0.2642102;-0.07393051,-0.4308648;0.3377603;-0.2492233,0.07369253;0.004255677;-0.03084315,0.08551717;-0.2948425;-0.01083237,0.07398713;-0.5893632;0.04506647,0.08512125;-0.6169648;-0.01701432,-0.06867558;0.0036091;-0.04087345,-0.09941559;-0.2936483;-0.01454689,-0.09911963;-0.5892778;0.03647397,-0.09936759;-0.5566143;-0.0620115,-0.001171413;0.3987699;0.0308397,0;0;0,-0.002039784;0.1989158;0.02069699,-0.004542033;0.4984131;0.03690193,0.1087841;0.3752096;-0.0002947822,0.2817472;0.301975;-0.06900039,0.4745327;0.3914505;-0.2006359,-0.1129147;0.3610804;0.001117121,-0.2678418;0.2759581;-0.09243383,-0.4394281;0.3313346;-0.2656146,0.07283069;0.006418041;-0.03247304,0.08262166;-0.2918443;-0.00175285,0.07064947;-0.5843847;0.06364422,0.08297114;-0.6155766;0.006582413,-0.06884441;0.001559275;-0.04071873,-0.1052438;-0.2939636;-0.004094578,-0.1055963;-0.5873864;0.0583791,-0.1059708;-0.5543879;-0.04016433,-0.003781765;0.398453;0.03418222,110.5785
-0;0;0,-0.0005738141;0.1991735;0.01815397,-0.001553196;0.498735;0.03345678,0.1127254;0.3746407;0.001765672,0.2776977;0.2762317;-0.05391028,0.4512406;0.3985395;-0.185909,-0.1119992;0.3620689;0.00308682,-0.2684985;0.2642102;-0.07393051,-0.4308648;0.3377603;-0.2492233,0.07369253;0.004255677;-0.03084315,0.08551717;-0.2948425;-0.01083237,0.07398713;-0.5893632;0.04506647,0.08512125;-0.6169648;-0.01701432,-0.06867558;0.0036091;-0.04087345,-0.09941559;-0.2936483;-0.01454689,-0.09911963;-0.5892778;0.03647397,-0.09936759;-0.5566143;-0.0620115,-0.001171413;0.3987699;0.0308397,0;0;0,-0.002039784;0.1989158;0.02069699,-0.004542033;0.4984131;0.03690193,0.1087841;0.3752096;-0.0002947822,0.2817472;0.301975;-0.06900039,0.4745327;0.3914505;-0.2006359,-0.1129147;0.3610804;0.001117121,-0.2678418;0.2759581;-0.09243383,-0.4394281;0.3313346;-0.2656146,0.07283069;0.006418041;-0.03247304,0.08262166;-0.2918443;-0.00175285,0.07064947;-0.5843847;0.06364422,0.08297114;-0.6155766;0.006582413,-0.06884441;0.001559275;-0.04071873,-0.1052438;-0.2939636;-0.004094578,-0.1055963;-0.5873864;0.0583791,-0.1059708;-0.5543879;-0.04016433,-0.003781765;0.398453;0.03418222,110.5965
-0;0;0,-0.0006955905;0.1991703;0.01818563,-0.001888106;0.4987313;0.0334731,0.1124616;0.3746634;0.001794163,0.2780329;0.2769192;-0.05327124,0.4524113;0.3985429;-0.1848001,-0.1122806;0.3621472;0.00305918,-0.2684802;0.2634943;-0.07355203,-0.4318483;0.3380093;-0.2475013,0.07374368;0.00435305;-0.030707,0.08566973;-0.2947397;-0.0106741,0.07408004;-0.5893205;0.04489384,0.08537396;-0.616891;-0.01719699,-0.06862425;0.003537038;-0.04096586,-0.09937317;-0.2937008;-0.01442995,-0.09851513;-0.5891904;0.03738932,-0.09875378;-0.5565275;-0.06109604,-0.001440261;0.3987662;0.03087043,0;0;0,-0.002039784;0.1989158;0.02069699,-0.004542033;0.4984131;0.03690193,0.1087841;0.3752096;-0.0002947822,0.2817472;0.301975;-0.06900039,0.4745327;0.3914505;-0.2006359,-0.1129147;0.3610804;0.001117121,-0.2678418;0.2759581;-0.09243383,-0.4394281;0.3313346;-0.2656146,0.07283069;0.006418041;-0.03247304,0.08262166;-0.2918443;-0.00175285,0.07064947;-0.5843847;0.06364422,0.08297114;-0.6155766;0.006582413,-0.06884441;0.001559275;-0.04071873,-0.1052438;-0.2939636;-0.004094578,-0.1055963;-0.5873864;0.0583791,-0.1059708;-0.5543879;-0.04016433,-0.003781765;0.398453;0.03418222,110.6138
-0;0;0,-0.0007217731;0.1991728;0.01815709,-0.001927108;0.4987366;0.03338971,0.1124408;0.3746332;0.001820968,0.2783705;0.2773983;-0.05306739,0.4543346;0.3980722;-0.1833535,-0.1123324;0.3622146;0.002968781,-0.2708742;0.2718383;-0.07886406,-0.4287753;0.357669;-0.2526466,0.07375669;0.004414335;-0.03066698,0.08583198;-0.2946399;-0.01015454,0.07423013;-0.5893339;0.04480787,0.08555029;-0.6166798;-0.0175577,-0.06861099;0.003474963;-0.04099338,-0.09936427;-0.2937389;-0.01419469,-0.0985456;-0.5893208;0.03709517,-0.09873251;-0.5566572;-0.06139044,-0.001477371;0.3987711;0.03080371,0;0;0,-0.002058736;0.198932;0.02053872,-0.004623924;0.4984409;0.03652134,0.108812;0.3751407;-0.0002774112,0.2834;0.3019762;-0.06482205,0.4809185;0.3902118;-0.1901253,-0.1131613;0.3614087;0.00111169,-0.2707304;0.276154;-0.08779055,-0.4469266;0.3307707;-0.2565267,0.07283208;0.006296462;-0.03249373,0.08263671;-0.2919714;-0.001831794,0.07067861;-0.5845255;0.06350682,0.08256008;-0.6154567;0.005983204,-0.06883424;0.001798649;-0.04072606,-0.1053014;-0.2937296;-0.004212786,-0.1056908;-0.5871793;0.05813392,-0.1060466;-0.5541861;-0.04040867,-0.003833794;0.3984791;0.03387287,110.6303
-0;0;0,-0.0007217731;0.1991728;0.01815709,-0.001927108;0.4987366;0.03338971,0.1124408;0.3746332;0.001820968,0.2783705;0.2773983;-0.05306739,0.4543346;0.3980722;-0.1833535,-0.1123324;0.3622146;0.002968781,-0.2708742;0.2718383;-0.07886406,-0.4287753;0.357669;-0.2526466,0.07375669;0.004414335;-0.03066698,0.08583198;-0.2946399;-0.01015454,0.07423013;-0.5893339;0.04480787,0.08555029;-0.6166798;-0.0175577,-0.06861099;0.003474963;-0.04099338,-0.09936427;-0.2937389;-0.01419469,-0.0985456;-0.5893208;0.03709517,-0.09873251;-0.5566572;-0.06139044,-0.001477371;0.3987711;0.03080371,0;0;0,-0.002058736;0.198932;0.02053872,-0.004623924;0.4984409;0.03652134,0.108812;0.3751407;-0.0002774112,0.2834;0.3019762;-0.06482205,0.4809185;0.3902118;-0.1901253,-0.1131613;0.3614087;0.00111169,-0.2707304;0.276154;-0.08779055,-0.4469266;0.3307707;-0.2565267,0.07283208;0.006296462;-0.03249373,0.08263671;-0.2919714;-0.001831794,0.07067861;-0.5845255;0.06350682,0.08256008;-0.6154567;0.005983204,-0.06883424;0.001798649;-0.04072606,-0.1053014;-0.2937296;-0.004212786,-0.1056908;-0.5871793;0.05813392,-0.1060466;-0.5541861;-0.04040867,-0.003833794;0.3984791;0.03387287,110.652
-0;0;0,-0.0008001025;0.1991726;0.01815565,-0.002101432;0.4987402;0.03330288,0.112289;0.3746372;0.001759956,0.2786036;0.277838;-0.05273169,0.4553719;0.3973362;-0.1830129,-0.1123995;0.362116;0.00272009,-0.2693078;0.2622211;-0.07077019,-0.4329087;0.3384331;-0.243763,0.07373901;0.00442521;-0.03070792,0.08594248;-0.2946261;-0.01022848,0.07440057;-0.5893227;0.04473213,0.08542096;-0.6160764;-0.01841383,-0.06863438;0.003456165;-0.0409558,-0.09930848;-0.2937846;-0.01436518,-0.09867935;-0.589419;0.0366239,-0.0988179;-0.5567583;-0.06186128,-0.001627407;0.3987739;0.03075098,0;0;0,-0.002058736;0.198932;0.02053872,-0.004623924;0.4984409;0.03652134,0.108812;0.3751407;-0.0002774112,0.2834;0.3019762;-0.06482205,0.4809185;0.3902118;-0.1901253,-0.1131613;0.3614087;0.00111169,-0.2707304;0.276154;-0.08779055,-0.4469266;0.3307707;-0.2565267,0.07283208;0.006296462;-0.03249373,0.08263671;-0.2919714;-0.001831794,0.07067861;-0.5845255;0.06350682,0.08256008;-0.6154567;0.005983204,-0.06883424;0.001798649;-0.04072606,-0.1053014;-0.2937296;-0.004212786,-0.1056908;-0.5871793;0.05813392,-0.1060466;-0.5541861;-0.04040867,-0.003833794;0.3984791;0.03387287,110.6635
-0;0;0,-0.0008001025;0.1991726;0.01815565,-0.002101432;0.4987402;0.03330288,0.112289;0.3746372;0.001759956,0.2786036;0.277838;-0.05273169,0.4553719;0.3973362;-0.1830129,-0.1123995;0.362116;0.00272009,-0.2693078;0.2622211;-0.07077019,-0.4329087;0.3384331;-0.243763,0.07373901;0.00442521;-0.03070792,0.08594248;-0.2946261;-0.01022848,0.07440057;-0.5893227;0.04473213,0.08542096;-0.6160764;-0.01841383,-0.06863438;0.003456165;-0.0409558,-0.09930848;-0.2937846;-0.01436518,-0.09867935;-0.589419;0.0366239,-0.0988179;-0.5567583;-0.06186128,-0.001627407;0.3987739;0.03075098,0;0;0,-0.002094915;0.1989586;0.02027506,-0.004938508;0.4985095;0.03537346,0.1088514;0.3752156;-0.0003221594,0.2850845;0.302184;-0.06039113,0.4859309;0.3894382;-0.181004,-0.1135552;0.3615165;0.000912983,-0.2735737;0.2760707;-0.08330759,-0.4641094;0.3277194;-0.2366977,0.07289097;0.006185484;-0.03238282,0.08290117;-0.2920844;-0.001806689,0.07074342;-0.5846875;0.06327508,0.08300322;-0.6156998;0.00594528,-0.06882255;0.001833169;-0.04074427,-0.1051591;-0.2937096;-0.004218571,-0.1057975;-0.5871258;0.05828392,-0.1061281;-0.5541496;-0.04025582,-0.00402858;0.3985405;0.03305547,110.6868
-0;0;0,-0.0008595602;0.199179;0.01808299,-0.002186758;0.4987542;0.03307687,0.1122043;0.3746787;0.001567775,0.2788021;0.2782339;-0.0526869,0.4564441;0.3968291;-0.182604,-0.1124263;0.3620155;0.002455724,-0.2694004;0.2620846;-0.07084478,-0.4342197;0.3382787;-0.242685,0.07378834;0.004476226;-0.03058178,0.08594865;-0.294598;-0.01041312,0.07437704;-0.5892977;0.04452514,0.08561119;-0.6152996;-0.0194866,-0.06858551;0.00342434;-0.04104025,-0.09932227;-0.2938257;-0.01462635,-0.09884331;-0.5894637;0.03634362,-0.09895089;-0.5568078;-0.06214076,-0.0017141;0.3987867;0.0305748,0;0;0,-0.002094915;0.1989586;0.02027506,-0.004938508;0.4985095;0.03537346,0.1088514;0.3752156;-0.0003221594,0.2850845;0.302184;-0.06039113,0.4859309;0.3894382;-0.181004,-0.1135552;0.3615165;0.000912983,-0.2735737;0.2760707;-0.08330759,-0.4641094;0.3277194;-0.2366977,0.07289097;0.006185484;-0.03238282,0.08290117;-0.2920844;-0.001806689,0.07074342;-0.5846875;0.06327508,0.08300322;-0.6156998;0.00594528,-0.06882255;0.001833169;-0.04074427,-0.1051591;-0.2937096;-0.004218571,-0.1057975;-0.5871258;0.05828392,-0.1061281;-0.5541496;-0.04025582,-0.00402858;0.3985405;0.03305547,110.698
-0;0;0,-0.0008595602;0.199179;0.01808299,-0.002186758;0.4987542;0.03307687,0.1122043;0.3746787;0.001567775,0.2788021;0.2782339;-0.0526869,0.4564441;0.3968291;-0.182604,-0.1124263;0.3620155;0.002455724,-0.2694004;0.2620846;-0.07084478,-0.4342197;0.3382787;-0.242685,0.07378834;0.004476226;-0.03058178,0.08594865;-0.294598;-0.01041312,0.07437704;-0.5892977;0.04452514,0.08561119;-0.6152996;-0.0194866,-0.06858551;0.00342434;-0.04104025,-0.09932227;-0.2938257;-0.01462635,-0.09884331;-0.5894637;0.03634362,-0.09895089;-0.5568078;-0.06214076,-0.0017141;0.3987867;0.0305748,0;0;0,-0.002094915;0.1989586;0.02027506,-0.004938508;0.4985095;0.03537346,0.1088514;0.3752156;-0.0003221594,0.2850845;0.302184;-0.06039113,0.4859309;0.3894382;-0.181004,-0.1135552;0.3615165;0.000912983,-0.2735737;0.2760707;-0.08330759,-0.4641094;0.3277194;-0.2366977,0.07289097;0.006185484;-0.03238282,0.08290117;-0.2920844;-0.001806689,0.07074342;-0.5846875;0.06327508,0.08300322;-0.6156998;0.00594528,-0.06882255;0.001833169;-0.04074427,-0.1051591;-0.2937096;-0.004218571,-0.1057975;-0.5871258;0.05828392,-0.1061281;-0.5541496;-0.04025582,-0.00402858;0.3985405;0.03305547,110.7194
-0;0;0,-0.0009477136;0.1991827;0.01803748,-0.002417359;0.4987615;0.03294144,0.1120721;0.3747706;0.001602888,0.2788023;0.2785566;-0.05265509,0.4573069;0.3965267;-0.1819577,-0.1126701;0.3622404;0.00230531,-0.2695455;0.2618865;-0.0706275,-0.4357559;0.3380676;-0.2411283,0.07382883;0.004498122;-0.03048064,0.08604112;-0.2945513;-0.009980114,0.07472983;-0.589405;0.04418055,0.0854543;-0.6156404;-0.01964067,-0.06853847;0.00339547;-0.04112115,-0.09921105;-0.2938703;-0.01481056,-0.09898145;-0.5895522;0.035906,-0.09902848;-0.5568966;-0.06257837,-0.001898489;0.3987933;0.03047523,0;0;0,-0.002122537;0.198972;0.02014045,-0.005101535;0.498535;0.03497657,0.1089045;0.3753084;-0.000130333,0.2868717;0.3025063;-0.05515319,0.4919869;0.3886239;-0.1692213,-0.1137732;0.3616217;0.0008719899,-0.2757253;0.2766932;-0.0801135,-0.4649082;0.3286484;-0.2350666,0.07299732;0.006017521;-0.03217419,0.08310651;-0.2922608;-0.001713863,0.07098153;-0.5848452;0.06345777,0.08252411;-0.6154999;0.005478512,-0.0687867;0.00190695;-0.04080139,-0.1050876;-0.2936441;-0.004307471,-0.1057984;-0.5870454;0.05826419,-0.1092494;-0.617195;-0.001436103,-0.004138709;0.3985646;0.03273898,110.7414
-0;0;0,-0.0009477136;0.1991827;0.01803748,-0.002417359;0.4987615;0.03294144,0.1120721;0.3747706;0.001602888,0.2788023;0.2785566;-0.05265509,0.4573069;0.3965267;-0.1819577,-0.1126701;0.3622404;0.00230531,-0.2695455;0.2618865;-0.0706275,-0.4357559;0.3380676;-0.2411283,0.07382883;0.004498122;-0.03048064,0.08604112;-0.2945513;-0.009980114,0.07472983;-0.589405;0.04418055,0.0854543;-0.6156404;-0.01964067,-0.06853847;0.00339547;-0.04112115,-0.09921105;-0.2938703;-0.01481056,-0.09898145;-0.5895522;0.035906,-0.09902848;-0.5568966;-0.06257837,-0.001898489;0.3987933;0.03047523,0;0;0,-0.002122537;0.198972;0.02014045,-0.005101535;0.498535;0.03497657,0.1089045;0.3753084;-0.000130333,0.2868717;0.3025063;-0.05515319,0.4919869;0.3886239;-0.1692213,-0.1137732;0.3616217;0.0008719899,-0.2757253;0.2766932;-0.0801135,-0.4649082;0.3286484;-0.2350666,0.07299732;0.006017521;-0.03217419,0.08310651;-0.2922608;-0.001713863,0.07098153;-0.5848452;0.06345777,0.08252411;-0.6154999;0.005478512,-0.0687867;0.00190695;-0.04080139,-0.1050876;-0.2936441;-0.004307471,-0.1057984;-0.5870454;0.05826419,-0.1092494;-0.617195;-0.001436103,-0.004138709;0.3985646;0.03273898,110.7533
-0;0;0,-0.0009206983;0.1991935;0.01791985,-0.002356875;0.4987788;0.03270124,0.1121729;0.3747948;0.001582211,0.279176;0.2789811;-0.05254464,0.4585361;0.3957994;-0.181709,-0.1127;0.3625349;0.002065476,-0.2692198;0.261332;-0.07045716,-0.4363851;0.3367336;-0.2403699,0.07385603;0.004500488;-0.03041436,0.08616383;-0.2945521;-0.01001623,0.07495009;-0.5894616;0.04386004,0.0854547;-0.6159305;-0.0197179,-0.0684955;0.00338767;-0.04119333,-0.09906415;-0.2939027;-0.01503937,-0.09893014;-0.5896213;0.03546291,-0.09887809;-0.5569743;-0.06301994,-0.00184587;0.3988096;0.03027018,0;0;0,-0.002122537;0.198972;0.02014045,-0.005101535;0.498535;0.03497657,0.1089045;0.3753084;-0.000130333,0.2868717;0.3025063;-0.05515319,0.4919869;0.3886239;-0.1692213,-0.1137732;0.3616217;0.0008719899,-0.2757253;0.2766932;-0.0801135,-0.4649082;0.3286484;-0.2350666,0.07299732;0.006017521;-0.03217419,0.08310651;-0.2922608;-0.001713863,0.07098153;-0.5848452;0.06345777,0.08252411;-0.6154999;0.005478512,-0.0687867;0.00190695;-0.04080139,-0.1050876;-0.2936441;-0.004307471,-0.1057984;-0.5870454;0.05826419,-0.1092494;-0.617195;-0.001436103,-0.004138709;0.3985646;0.03273898,110.7748
-0;0;0,-0.0009206983;0.1991935;0.01791985,-0.002356875;0.4987788;0.03270124,0.1121729;0.3747948;0.001582211,0.279176;0.2789811;-0.05254464,0.4585361;0.3957994;-0.181709,-0.1127;0.3625349;0.002065476,-0.2692198;0.261332;-0.07045716,-0.4363851;0.3367336;-0.2403699,0.07385603;0.004500488;-0.03041436,0.08616383;-0.2945521;-0.01001623,0.07495009;-0.5894616;0.04386004,0.0854547;-0.6159305;-0.0197179,-0.0684955;0.00338767;-0.04119333,-0.09906415;-0.2939027;-0.01503937,-0.09893014;-0.5896213;0.03546291,-0.09887809;-0.5569743;-0.06301994,-0.00184587;0.3988096;0.03027018,0;0;0,-0.002237045;0.1990064;0.01978507,-0.005566406;0.4986138;0.03355977,0.1087488;0.3755308;-0.0007005334,0.2879255;0.3024352;-0.05122527,0.4963084;0.3885393;-0.159219,-0.1143152;0.361835;0.0005117394,-0.279176;0.2784683;-0.07611017,-0.468299;0.3313359;-0.2308276,0.07308425;0.005800341;-0.03201637,0.08347684;-0.2925003;-0.001871297,0.07121055;-0.5851203;0.06311419,0.08242048;-0.615554;0.004763894,-0.06873266;0.002048621;-0.04088551,-0.1050244;-0.2935143;-0.004478134,-0.1059755;-0.5869288;0.05802771,-0.1090394;-0.6159784;-0.003142413,-0.004449328;0.3986366;0.0317388,110.7862
-0;0;0,-0.0009663692;0.1992047;0.0177923,-0.002484195;0.4987969;0.03242114,0.112117;0.3747621;0.001550818,0.2793769;0.2791804;-0.05219166,0.4590181;0.3954667;-0.1814455,-0.1128464;0.3627129;0.001841102,-0.2693195;0.2610131;-0.07008466,-0.4371089;0.3361283;-0.2395085,0.07382822;0.004483783;-0.03048424,0.0861626;-0.2945449;-0.009755498,0.07491145;-0.5895407;0.04363853,0.08557168;-0.6161142;-0.01978752,-0.06853443;0.003400075;-0.04112748,-0.09901166;-0.2938999;-0.01497616,-0.09890807;-0.5896521;0.03532906,-0.09879407;-0.5570286;-0.06314959,-0.001939736;0.3988266;0.03004576,0;0;0,-0.002237045;0.1990064;0.01978507,-0.005566406;0.4986138;0.03355977,0.1087488;0.3755308;-0.0007005334,0.2879255;0.3024352;-0.05122527,0.4963084;0.3885393;-0.159219,-0.1143152;0.361835;0.0005117394,-0.279176;0.2784683;-0.07611017,-0.468299;0.3313359;-0.2308276,0.07308425;0.005800341;-0.03201637,0.08347684;-0.2925003;-0.001871297,0.07121055;-0.5851203;0.06311419,0.08242048;-0.615554;0.004763894,-0.06873266;0.002048621;-0.04088551,-0.1050244;-0.2935143;-0.004478134,-0.1059755;-0.5869288;0.05802771,-0.1090394;-0.6159784;-0.003142413,-0.004449328;0.3986366;0.0317388,110.7974
-0;0;0,-0.0009663692;0.1992047;0.0177923,-0.002484195;0.4987969;0.03242114,0.112117;0.3747621;0.001550818,0.2793769;0.2791804;-0.05219166,0.4590181;0.3954667;-0.1814455,-0.1128464;0.3627129;0.001841102,-0.2693195;0.2610131;-0.07008466,-0.4371089;0.3361283;-0.2395085,0.07382822;0.004483783;-0.03048424,0.0861626;-0.2945449;-0.009755498,0.07491145;-0.5895407;0.04363853,0.08557168;-0.6161142;-0.01978752,-0.06853443;0.003400075;-0.04112748,-0.09901166;-0.2938999;-0.01497616,-0.09890807;-0.5896521;0.03532906,-0.09879407;-0.5570286;-0.06314959,-0.001939736;0.3988266;0.03004576,0;0;0,-0.002237045;0.1990064;0.01978507,-0.005566406;0.4986138;0.03355977,0.1087488;0.3755308;-0.0007005334,0.2879255;0.3024352;-0.05122527,0.4963084;0.3885393;-0.159219,-0.1143152;0.361835;0.0005117394,-0.279176;0.2784683;-0.07611017,-0.468299;0.3313359;-0.2308276,0.07308425;0.005800341;-0.03201637,0.08347684;-0.2925003;-0.001871297,0.07121055;-0.5851203;0.06311419,0.08242048;-0.615554;0.004763894,-0.06873266;0.002048621;-0.04088551,-0.1050244;-0.2935143;-0.004478134,-0.1059755;-0.5869288;0.05802771,-0.1090394;-0.6159784;-0.003142413,-0.004449328;0.3986366;0.0317388,110.8196
-0;0;0,-0.001113719;0.1992006;0.01782901,-0.002924296;0.4987925;0.03242213,0.1118121;0.3748719;0.001640571,0.2791255;0.2793495;-0.05204096,0.4594589;0.3953068;-0.1806246,-0.1131431;0.3627338;0.001643006,-0.2697027;0.2609128;-0.0699223,-0.4383903;0.3359976;-0.2384654,0.07385034;0.004497693;-0.03042855,0.08617696;-0.2945185;-0.009515554,0.07496252;-0.5895609;0.04362777,0.0855983;-0.6159553;-0.02001795,-0.06851099;0.003388154;-0.04116752,-0.09901085;-0.2939049;-0.01496478,-0.09892162;-0.5896938;0.03512476,-0.09875018;-0.5570706;-0.06335376,-0.002284989;0.3988222;0.03007013,0;0;0,-0.002343468;0.1990497;0.0193325,-0.006104885;0.4986903;0.03226146,0.1085744;0.3757971;-0.001129676,0.289223;0.3037894;-0.04783081,0.5013472;0.3885666;-0.1493993,-0.1149272;0.3619244;0.0002714526,-0.2806512;0.2767605;-0.07241054,-0.474921;0.3308192;-0.2201837,0.07310142;0.00574437;-0.03198727,0.08347709;-0.2925584;-0.001857588,0.07157732;-0.5852356;0.06293797,0.08225092;-0.6162844;0.005343091,-0.06871819;0.002085906;-0.04090793,-0.1048739;-0.2935003;-0.004554432,-0.1060046;-0.5869588;0.05774205,-0.1096015;-0.6153861;-0.004195105,-0.004833965;0.3987105;0.03070613,110.8309
-0;0;0,-0.001113719;0.1992006;0.01782901,-0.002924296;0.4987925;0.03242213,0.1118121;0.3748719;0.001640571,0.2791255;0.2793495;-0.05204096,0.4594589;0.3953068;-0.1806246,-0.1131431;0.3627338;0.001643006,-0.2697027;0.2609128;-0.0699223,-0.4383903;0.3359976;-0.2384654,0.07385034;0.004497693;-0.03042855,0.08617696;-0.2945185;-0.009515554,0.07496252;-0.5895609;0.04362777,0.0855983;-0.6159553;-0.02001795,-0.06851099;0.003388154;-0.04116752,-0.09901085;-0.2939049;-0.01496478,-0.09892162;-0.5896938;0.03512476,-0.09875018;-0.5570706;-0.06335376,-0.002284989;0.3988222;0.03007013,0;0;0,-0.002343468;0.1990497;0.0193325,-0.006104885;0.4986903;0.03226146,0.1085744;0.3757971;-0.001129676,0.289223;0.3037894;-0.04783081,0.5013472;0.3885666;-0.1493993,-0.1149272;0.3619244;0.0002714526,-0.2806512;0.2767605;-0.07241054,-0.474921;0.3308192;-0.2201837,0.07310142;0.00574437;-0.03198727,0.08347709;-0.2925584;-0.001857588,0.07157732;-0.5852356;0.06293797,0.08225092;-0.6162844;0.005343091,-0.06871819;0.002085906;-0.04090793,-0.1048739;-0.2935003;-0.004554432,-0.1060046;-0.5869588;0.05774205,-0.1096015;-0.6153861;-0.004195105,-0.004833965;0.3987105;0.03070613,110.8419
-0;0;0,-0.001273447;0.1991963;0.01786618,-0.003502129;0.4987851;0.03245534,0.111432;0.3750318;0.001742642,0.2788053;0.2795869;-0.0518899,0.4596386;0.3951422;-0.1801329,-0.1135546;0.3628676;0.001446461,-0.2699604;0.2604772;-0.06964097,-0.4392343;0.3350359;-0.2378295,0.07383445;0.004479964;-0.03046972,0.08617897;-0.2945319;-0.009504927,0.07500594;-0.5895874;0.04357462,0.08513224;-0.6149215;-0.02140411,-0.06853516;0.003405224;-0.04112587,-0.09899549;-0.2938883;-0.01488152,-0.09905352;-0.5897869;0.03455535,-0.09882495;-0.5571582;-0.06392401,-0.002713579;0.3988156;0.03011737,0;0;0,-0.002343468;0.1990497;0.0193325,-0.006104885;0.4986903;0.03226146,0.1085744;0.3757971;-0.001129676,0.289223;0.3037894;-0.04783081,0.5013472;0.3885666;-0.1493993,-0.1149272;0.3619244;0.0002714526,-0.2806512;0.2767605;-0.07241054,-0.474921;0.3308192;-0.2201837,0.07310142;0.00574437;-0.03198727,0.08347709;-0.2925584;-0.001857588,0.07157732;-0.5852356;0.06293797,0.08225092;-0.6162844;0.005343091,-0.06871819;0.002085906;-0.04090793,-0.1048739;-0.2935003;-0.004554432,-0.1060046;-0.5869588;0.05774205,-0.1096015;-0.6153861;-0.004195105,-0.004833965;0.3987105;0.03070613,110.8643
-0;0;0,-0.001273447;0.1991963;0.01786618,-0.003502129;0.4987851;0.03245534,0.111432;0.3750318;0.001742642,0.2788053;0.2795869;-0.0518899,0.4596386;0.3951422;-0.1801329,-0.1135546;0.3628676;0.001446461,-0.2699604;0.2604772;-0.06964097,-0.4392343;0.3350359;-0.2378295,0.07383445;0.004479964;-0.03046972,0.08617897;-0.2945319;-0.009504927,0.07500594;-0.5895874;0.04357462,0.08513224;-0.6149215;-0.02140411,-0.06853516;0.003405224;-0.04112587,-0.09899549;-0.2938883;-0.01488152,-0.09905352;-0.5897869;0.03455535,-0.09882495;-0.5571582;-0.06392401,-0.002713579;0.3988156;0.03011737,0;0;0,-0.002477618;0.1990692;0.01911357,-0.006532394;0.4987213;0.03168647,0.1083208;0.3759044;-0.001432497,0.2896605;0.3030586;-0.04396934,0.5035512;0.3877411;-0.1418449,-0.1153245;0.3619765;9.149499E-05,-0.2815802;0.2751163;-0.06929391,-0.47917;0.3292485;-0.2125699,0.07315273;0.005611997;-0.03189331,0.08341485;-0.2927019;-0.001834488,0.07144254;-0.5853889;0.06290335,0.08207136;-0.6166273;0.005567975,-0.06869545;0.002183417;-0.04094103,-0.1047149;-0.293423;-0.004616603,-0.1061136;-0.58687;0.05772869,-0.1094691;-0.6151601;-0.004395314,-0.00514709;0.3987412;0.0302459,110.8864
-0;0;0,-0.001328319;0.1992044;0.01777183,-0.003562275;0.4988016;0.03218839,0.111379;0.3750676;0.001573622,0.2789334;0.2797872;-0.05178504,0.4604152;0.3946211;-0.1797598,-0.1136089;0.362947;0.001102867,-0.2690088;0.2575819;-0.06781035,-0.4382621;0.3326671;-0.2357851,0.07388056;0.004427335;-0.03036547,0.08637745;-0.2946055;-0.009793907,0.07523542;-0.5897173;0.04297851,0.08570866;-0.6151965;-0.02177639,-0.06848384;0.003444644;-0.04120799,-0.09876062;-0.2938842;-0.01515267,-0.09878567;-0.5898075;0.03413634,-0.09851041;-0.557183;-0.06434217,-0.002781356;0.3988307;0.02990618,0;0;0,-0.002477618;0.1990692;0.01911357,-0.006532394;0.4987213;0.03168647,0.1083208;0.3759044;-0.001432497,0.2896605;0.3030586;-0.04396934,0.5035512;0.3877411;-0.1418449,-0.1153245;0.3619765;9.149499E-05,-0.2815802;0.2751163;-0.06929391,-0.47917;0.3292485;-0.2125699,0.07315273;0.005611997;-0.03189331,0.08341485;-0.2927019;-0.001834488,0.07144254;-0.5853889;0.06290335,0.08207136;-0.6166273;0.005567975,-0.06869545;0.002183417;-0.04094103,-0.1047149;-0.293423;-0.004616603,-0.1061136;-0.58687;0.05772869,-0.1094691;-0.6151601;-0.004395314,-0.00514709;0.3987412;0.0302459,110.8976
-0;0;0,-0.001328319;0.1992044;0.01777183,-0.003562275;0.4988016;0.03218839,0.111379;0.3750676;0.001573622,0.2789334;0.2797872;-0.05178504,0.4604152;0.3946211;-0.1797598,-0.1136089;0.362947;0.001102867,-0.2690088;0.2575819;-0.06781035,-0.4382621;0.3326671;-0.2357851,0.07388056;0.004427335;-0.03036547,0.08637745;-0.2946055;-0.009793907,0.07523542;-0.5897173;0.04297851,0.08570866;-0.6151965;-0.02177639,-0.06848384;0.003444644;-0.04120799,-0.09876062;-0.2938842;-0.01515267,-0.09878567;-0.5898075;0.03413634,-0.09851041;-0.557183;-0.06434217,-0.002781356;0.3988307;0.02990618,0;0;0,-0.002477618;0.1990692;0.01911357,-0.006532394;0.4987213;0.03168647,0.1083208;0.3759044;-0.001432497,0.2896605;0.3030586;-0.04396934,0.5035512;0.3877411;-0.1418449,-0.1153245;0.3619765;9.149499E-05,-0.2815802;0.2751163;-0.06929391,-0.47917;0.3292485;-0.2125699,0.07315273;0.005611997;-0.03189331,0.08341485;-0.2927019;-0.001834488,0.07144254;-0.5853889;0.06290335,0.08207136;-0.6166273;0.005567975,-0.06869545;0.002183417;-0.04094103,-0.1047149;-0.293423;-0.004616603,-0.1061136;-0.58687;0.05772869,-0.1094691;-0.6151601;-0.004395314,-0.00514709;0.3987412;0.0302459,110.9089
-0;0;0,-0.001398923;0.1992175;0.01761865,-0.003732231;0.4988206;0.03189175,0.111257;0.3750861;0.001340235,0.2790139;0.2799712;-0.0516765,0.4612309;0.3937397;-0.1795581,-0.1137641;0.3630255;0.0009037536,-0.2690832;0.2575476;-0.0680193,-0.4388464;0.3322824;-0.2356354,0.07390762;0.004477929;-0.03029209,0.08643939;-0.294571;-0.009977467,0.07523411;-0.5897151;0.04260073,0.08566746;-0.6151385;-0.0222256,-0.06844834;0.003406983;-0.04127004,-0.0987601;-0.2939287;-0.01533413,-0.09875063;-0.589889;0.0337326,-0.09847716;-0.5572708;-0.0647448,-0.002905719;0.3988488;0.02966327,0;0;0,-0.002544948;0.1990856;0.01893311,-0.006769881;0.4987437;0.03132708,0.1082025;0.3761051;-0.00163902,0.290087;0.3022521;-0.03989792,0.5061733;0.387881;-0.1319544,-0.1156095;0.3619496;0.0001957789,-0.2845358;0.2777328;-0.06592117,-0.4835137;0.3348402;-0.2060873,0.07319836;0.005564161;-0.03179684,0.08349985;-0.2927576;-0.001829468,0.07142909;-0.5854407;0.06290757,0.08214579;-0.6167723;0.005720846,-0.06867707;0.002200289;-0.04097096,-0.1044359;-0.2934556;-0.00479193,-0.1060164;-0.5868569;0.05776352,-0.109224;-0.6148733;-0.004711691,-0.005333034;0.3987638;0.02992477,110.9311
-0;0;0,-0.001398923;0.1992175;0.01761865,-0.003732231;0.4988206;0.03189175,0.111257;0.3750861;0.001340235,0.2790139;0.2799712;-0.0516765,0.4612309;0.3937397;-0.1795581,-0.1137641;0.3630255;0.0009037536,-0.2690832;0.2575476;-0.0680193,-0.4388464;0.3322824;-0.2356354,0.07390762;0.004477929;-0.03029209,0.08643939;-0.294571;-0.009977467,0.07523411;-0.5897151;0.04260073,0.08566746;-0.6151385;-0.0222256,-0.06844834;0.003406983;-0.04127004,-0.0987601;-0.2939287;-0.01533413,-0.09875063;-0.589889;0.0337326,-0.09847716;-0.5572708;-0.0647448,-0.002905719;0.3988488;0.02966327,0;0;0,-0.002544948;0.1990856;0.01893311,-0.006769881;0.4987437;0.03132708,0.1082025;0.3761051;-0.00163902,0.290087;0.3022521;-0.03989792,0.5061733;0.387881;-0.1319544,-0.1156095;0.3619496;0.0001957789,-0.2845358;0.2777328;-0.06592117,-0.4835137;0.3348402;-0.2060873,0.07319836;0.005564161;-0.03179684,0.08349985;-0.2927576;-0.001829468,0.07142909;-0.5854407;0.06290757,0.08214579;-0.6167723;0.005720846,-0.06867707;0.002200289;-0.04097096,-0.1044359;-0.2934556;-0.00479193,-0.1060164;-0.5868569;0.05776352,-0.109224;-0.6148733;-0.004711691,-0.005333034;0.3987638;0.02992477,110.9428
-0;0;0,-0.001464265;0.1992267;0.01751005,-0.00382945;0.4988375;0.03161696,0.1112028;0.3750479;0.001320075,0.2792036;0.2802305;-0.0514569,0.462445;0.3925814;-0.1791277,-0.1138723;0.3631008;0.0006624199,-0.2694432;0.2579296;-0.06816144,-0.4399377;0.3319001;-0.2353738,0.07393683;0.004513525;-0.03021546,0.0865483;-0.2945386;-0.009996952,0.07535988;-0.5897287;0.04232541,0.08552788;-0.6147845;-0.02296802,-0.06842326;0.003372347;-0.04131446,-0.09865401;-0.2939809;-0.01548543,-0.09860499;-0.589978;0.03335833,-0.0982501;-0.557367;-0.06511755,-0.002999153;0.3988647;0.02943898,0;0;0,-0.002544948;0.1990856;0.01893311,-0.006769881;0.4987437;0.03132708,0.1082025;0.3761051;-0.00163902,0.290087;0.3022521;-0.03989792,0.5061733;0.387881;-0.1319544,-0.1156095;0.3619496;0.0001957789,-0.2845358;0.2777328;-0.06592117,-0.4835137;0.3348402;-0.2060873,0.07319836;0.005564161;-0.03179684,0.08349985;-0.2927576;-0.001829468,0.07142909;-0.5854407;0.06290757,0.08214579;-0.6167723;0.005720846,-0.06867707;0.002200289;-0.04097096,-0.1044359;-0.2934556;-0.00479193,-0.1060164;-0.5868569;0.05776352,-0.109224;-0.6148733;-0.004711691,-0.005333034;0.3987638;0.02992477,110.9652
-0;0;0,-0.001464265;0.1992267;0.01751005,-0.00382945;0.4988375;0.03161696,0.1112028;0.3750479;0.001320075,0.2792036;0.2802305;-0.0514569,0.462445;0.3925814;-0.1791277,-0.1138723;0.3631008;0.0006624199,-0.2694432;0.2579296;-0.06816144,-0.4399377;0.3319001;-0.2353738,0.07393683;0.004513525;-0.03021546,0.0865483;-0.2945386;-0.009996952,0.07535988;-0.5897287;0.04232541,0.08552788;-0.6147845;-0.02296802,-0.06842326;0.003372347;-0.04131446,-0.09865401;-0.2939809;-0.01548543,-0.09860499;-0.589978;0.03335833,-0.0982501;-0.557367;-0.06511755,-0.002999153;0.3988647;0.02943898,0;0;0,-0.002615883;0.1991212;0.01854508,-0.006959156;0.4988087;0.03014266,0.1082402;0.3762826;-0.0019692,0.2910197;0.3032616;-0.03746005,0.5093099;0.3878955;-0.1251327,-0.1159611;0.3621405;-8.153357E-05,-0.2858284;0.278313;-0.06425361,-0.4874992;0.3358021;-0.2003561,0.07327146;0.005488595;-0.03164125,0.08334257;-0.2928654;-0.001917977,0.07132988;-0.5855289;0.06291881,0.08178769;-0.6165482;0.0052431,-0.06862287;0.002270667;-0.04105782,-0.1044523;-0.2933857;-0.004952919,-0.1061422;-0.5867788;0.05763828,-0.1094751;-0.6142613;-0.005491365,-0.005475452;0.398826;0.02902332,110.9767
-0;0;0,-0.001464265;0.1992267;0.01751005,-0.00382945;0.4988375;0.03161696,0.1112028;0.3750479;0.001320075,0.2792036;0.2802305;-0.0514569,0.462445;0.3925814;-0.1791277,-0.1138723;0.3631008;0.0006624199,-0.2694432;0.2579296;-0.06816144,-0.4399377;0.3319001;-0.2353738,0.07393683;0.004513525;-0.03021546,0.0865483;-0.2945386;-0.009996952,0.07535988;-0.5897287;0.04232541,0.08552788;-0.6147845;-0.02296802,-0.06842326;0.003372347;-0.04131446,-0.09865401;-0.2939809;-0.01548543,-0.09860499;-0.589978;0.03335833,-0.0982501;-0.557367;-0.06511755,-0.002999153;0.3988647;0.02943898,0;0;0,-0.002615883;0.1991212;0.01854508,-0.006959156;0.4988087;0.03014266,0.1082402;0.3762826;-0.0019692,0.2910197;0.3032616;-0.03746005,0.5093099;0.3878955;-0.1251327,-0.1159611;0.3621405;-8.153357E-05,-0.2858284;0.278313;-0.06425361,-0.4874992;0.3358021;-0.2003561,0.07327146;0.005488595;-0.03164125,0.08334257;-0.2928654;-0.001917977,0.07132988;-0.5855289;0.06291881,0.08178769;-0.6165482;0.0052431,-0.06862287;0.002270667;-0.04105782,-0.1044523;-0.2933857;-0.004952919,-0.1061422;-0.5867788;0.05763828,-0.1094751;-0.6142613;-0.005491365,-0.005475452;0.398826;0.02902332,110.9882
-0;0;0,-0.001517873;0.1992411;0.01733997,-0.003879269;0.4988621;0.0312418,0.1111767;0.3750455;0.001152428,0.2793468;0.2803749;-0.05134796,0.4635527;0.391711;-0.178519,-0.1139695;0.363232;0.0003570486,-0.2694707;0.2579451;-0.06844722,-0.4413959;0.3312187;-0.2344975,0.07388435;0.004557457;-0.03033699,0.08645817;-0.2945066;-0.01027309,0.07522617;-0.5897048;0.04199455,0.08542445;-0.6149759;-0.02304577,-0.06848802;0.003316475;-0.04121153,-0.09882735;-0.2940591;-0.01576889,-0.09882258;-0.5899864;0.03349542,-0.09840541;-0.5573908;-0.06497748,-0.003057518;0.3988881;0.02911795,0;0;0,-0.002615883;0.1991212;0.01854508,-0.006959156;0.4988087;0.03014266,0.1082402;0.3762826;-0.0019692,0.2910197;0.3032616;-0.03746005,0.5093099;0.3878955;-0.1251327,-0.1159611;0.3621405;-8.153357E-05,-0.2858284;0.278313;-0.06425361,-0.4874992;0.3358021;-0.2003561,0.07327146;0.005488595;-0.03164125,0.08334257;-0.2928654;-0.001917977,0.07132988;-0.5855289;0.06291881,0.08178769;-0.6165482;0.0052431,-0.06862287;0.002270667;-0.04105782,-0.1044523;-0.2933857;-0.004952919,-0.1061422;-0.5867788;0.05763828,-0.1094751;-0.6142613;-0.005491365,-0.005475452;0.398826;0.02902332,111.0107
-0;0;0,-0.001517873;0.1992411;0.01733997,-0.003879269;0.4988621;0.0312418,0.1111767;0.3750455;0.001152428,0.2793468;0.2803749;-0.05134796,0.4635527;0.391711;-0.178519,-0.1139695;0.363232;0.0003570486,-0.2694707;0.2579451;-0.06844722,-0.4413959;0.3312187;-0.2344975,0.07388435;0.004557457;-0.03033699,0.08645817;-0.2945066;-0.01027309,0.07522617;-0.5897048;0.04199455,0.08542445;-0.6149759;-0.02304577,-0.06848802;0.003316475;-0.04121153,-0.09882735;-0.2940591;-0.01576889,-0.09882258;-0.5899864;0.03349542,-0.09840541;-0.5573908;-0.06497748,-0.003057518;0.3988881;0.02911795,0;0;0,-0.002702959;0.1991479;0.01824283,-0.007167092;0.4988564;0.02922321,0.1084372;0.3763401;-0.001334039,0.2917771;0.3034839;-0.03417419,0.5118228;0.3881851;-0.1172742,-0.1163039;0.362348;-0.0002889931,-0.2877051;0.2796701;-0.06181949,-0.4924709;0.3381118;-0.1927986,0.07333813;0.005387267;-0.0315039,0.08326793;-0.2930014;-0.00208324,0.07132021;-0.5856576;0.06279843,0.08155613;-0.6166187;0.005001184,-0.06855751;0.002365375;-0.04116155,-0.1044343;-0.293316;-0.005309433,-0.106307;-0.5866755;0.05743393,-0.1096483;-0.614018;-0.005866624,-0.005636234;0.3988722;0.02832317,111.0224
-0;0;0,-0.001544944;0.1992592;0.01712838,-0.003915905;0.4988876;0.03087654,0.1111717;0.3751066;0.0008741934,0.2793862;0.2804505;-0.05151011,0.4657988;0.390081;-0.1769354,-0.1140195;0.3633142;6.434135E-05,-0.2695296;0.2579649;-0.06862456,-0.4430397;0.3304426;-0.2333705,0.07384427;0.004589409;-0.03042961,0.08642042;-0.2944944;-0.01066319,0.07521527;-0.5896841;0.041658,0.08550383;-0.6151831;-0.02310351,-0.06852738;0.003279468;-0.04114904,-0.09894575;-0.2941253;-0.01614738,-0.09945413;-0.5901514;0.03251832,-0.09901877;-0.5575514;-0.06595528,-0.003081177;0.3989128;0.02879469,0;0;0,-0.002702959;0.1991479;0.01824283,-0.007167092;0.4988564;0.02922321,0.1084372;0.3763401;-0.001334039,0.2917771;0.3034839;-0.03417419,0.5118228;0.3881851;-0.1172742,-0.1163039;0.362348;-0.0002889931,-0.2877051;0.2796701;-0.06181949,-0.4924709;0.3381118;-0.1927986,0.07333813;0.005387267;-0.0315039,0.08326793;-0.2930014;-0.00208324,0.07132021;-0.5856576;0.06279843,0.08155613;-0.6166187;0.005001184,-0.06855751;0.002365375;-0.04116155,-0.1044343;-0.293316;-0.005309433,-0.106307;-0.5866755;0.05743393,-0.1096483;-0.614018;-0.005866624,-0.005636234;0.3988722;0.02832317,111.0335
-0;0;0,-0.001544944;0.1992592;0.01712838,-0.003915905;0.4988876;0.03087654,0.1111717;0.3751066;0.0008741934,0.2793862;0.2804505;-0.05151011,0.4657988;0.390081;-0.1769354,-0.1140195;0.3633142;6.434135E-05,-0.2695296;0.2579649;-0.06862456,-0.4430397;0.3304426;-0.2333705,0.07384427;0.004589409;-0.03042961,0.08642042;-0.2944944;-0.01066319,0.07521527;-0.5896841;0.041658,0.08550383;-0.6151831;-0.02310351,-0.06852738;0.003279468;-0.04114904,-0.09894575;-0.2941253;-0.01614738,-0.09945413;-0.5901514;0.03251832,-0.09901877;-0.5575514;-0.06595528,-0.003081177;0.3989128;0.02879469,0;0;0,-0.002702959;0.1991479;0.01824283,-0.007167092;0.4988564;0.02922321,0.1084372;0.3763401;-0.001334039,0.2917771;0.3034839;-0.03417419,0.5118228;0.3881851;-0.1172742,-0.1163039;0.362348;-0.0002889931,-0.2877051;0.2796701;-0.06181949,-0.4924709;0.3381118;-0.1927986,0.07333813;0.005387267;-0.0315039,0.08326793;-0.2930014;-0.00208324,0.07132021;-0.5856576;0.06279843,0.08155613;-0.6166187;0.005001184,-0.06855751;0.002365375;-0.04116155,-0.1044343;-0.293316;-0.005309433,-0.106307;-0.5866755;0.05743393,-0.1096483;-0.614018;-0.005866624,-0.005636234;0.3988722;0.02832317,111.0562
-0;0;0,-0.001583692;0.1992611;0.01710269,-0.004030156;0.4988935;0.03074262,0.1110977;0.3750923;0.0008717291,0.2794621;0.2804197;-0.05099867,0.4674677;0.3890242;-0.1749298,-0.1141034;0.3633232;-5.56428E-05,-0.2698041;0.2580662;-0.06845333,-0.4439853;0.3304062;-0.2325504,0.07386752;0.004560861;-0.03037743,0.0862079;-0.2945203;-0.01042343,0.07522645;-0.5897588;0.04166942,0.08553306;-0.615243;-0.02310634,-0.0685135;0.003300807;-0.04117044,-0.09900661;-0.2940832;-0.01601287,-0.0994339;-0.5901316;0.03251732,-0.09896491;-0.5575369;-0.06595519,-0.003172023;0.3989179;0.02870638,0;0;0,-0.002776377;0.1991761;0.01792178,-0.007469255;0.4989091;0.02809217,0.1085599;0.3765896;-0.000972705,0.2924237;0.3044811;-0.03250783,0.5137516;0.3885285;-0.1128197,-0.1167139;0.3625417;-0.0005936082,-0.2900948;0.2818398;-0.05912776,-0.495526;0.3419544;-0.1882954,0.07345274;0.005316851;-0.03124782,0.08333662;-0.2931067;-0.002166983,0.0714341;-0.5857892;0.0626041,0.08149868;-0.6166933;0.00469704,-0.0685064;0.002402678;-0.04124439,-0.1043153;-0.2933065;-0.005553678,-0.1063828;-0.5866336;0.0573347,-0.1094711;-0.6137905;-0.006204858,-0.005860197;0.398924;0.02747409,111.0678
-0;0;0,-0.001583692;0.1992611;0.01710269,-0.004030156;0.4988935;0.03074262,0.1110977;0.3750923;0.0008717291,0.2794621;0.2804197;-0.05099867,0.4674677;0.3890242;-0.1749298,-0.1141034;0.3633232;-5.56428E-05,-0.2698041;0.2580662;-0.06845333,-0.4439853;0.3304062;-0.2325504,0.07386752;0.004560861;-0.03037743,0.0862079;-0.2945203;-0.01042343,0.07522645;-0.5897588;0.04166942,0.08553306;-0.615243;-0.02310634,-0.0685135;0.003300807;-0.04117044,-0.09900661;-0.2940832;-0.01601287,-0.0994339;-0.5901316;0.03251732,-0.09896491;-0.5575369;-0.06595519,-0.003172023;0.3989179;0.02870638,0;0;0,-0.002776377;0.1991761;0.01792178,-0.007469255;0.4989091;0.02809217,0.1085599;0.3765896;-0.000972705,0.2924237;0.3044811;-0.03250783,0.5137516;0.3885285;-0.1128197,-0.1167139;0.3625417;-0.0005936082,-0.2900948;0.2818398;-0.05912776,-0.495526;0.3419544;-0.1882954,0.07345274;0.005316851;-0.03124782,0.08333662;-0.2931067;-0.002166983,0.0714341;-0.5857892;0.0626041,0.08149868;-0.6166933;0.00469704,-0.0685064;0.002402678;-0.04124439,-0.1043153;-0.2933065;-0.005553678,-0.1063828;-0.5866336;0.0573347,-0.1094711;-0.6137905;-0.006204858,-0.005860197;0.398924;0.02747409,111.0797
-0;0;0,-0.001612831;0.1992684;0.01701488,-0.004082585;0.4989047;0.03056372,0.1110845;0.3751868;0.000765739,0.2795395;0.2804456;-0.05068344,0.4688655;0.3881338;-0.173398,-0.1142448;0.3635723;-0.0001099464,-0.2698551;0.2579576;-0.068161,-0.4468994;0.3281403;-0.2301169,0.07384656;0.004579013;-0.03042563,0.08617061;-0.2945002;-0.01043131,0.07521471;-0.589783;0.04141535,0.08551223;-0.6153854;-0.02322387,-0.06853486;0.003282007;-0.04113636,-0.09918007;-0.2940734;-0.01582525,-0.09929121;-0.5901376;0.0326102,-0.09881372;-0.5575479;-0.06586139,-0.003212944;0.3989286;0.02855814,0;0;0,-0.002776377;0.1991761;0.01792178,-0.007469255;0.4989091;0.02809217,0.1085599;0.3765896;-0.000972705,0.2924237;0.3044811;-0.03250783,0.5137516;0.3885285;-0.1128197,-0.1167139;0.3625417;-0.0005936082,-0.2900948;0.2818398;-0.05912776,-0.495526;0.3419544;-0.1882954,0.07345274;0.005316851;-0.03124782,0.08333662;-0.2931067;-0.002166983,0.0714341;-0.5857892;0.0626041,0.08149868;-0.6166933;0.00469704,-0.0685064;0.002402678;-0.04124439,-0.1043153;-0.2933065;-0.005553678,-0.1063828;-0.5866336;0.0573347,-0.1094711;-0.6137905;-0.006204858,-0.005860197;0.398924;0.02747409,111.1024
-0;0;0,-0.001612831;0.1992684;0.01701488,-0.004082585;0.4989047;0.03056372,0.1110845;0.3751868;0.000765739,0.2795395;0.2804456;-0.05068344,0.4688655;0.3881338;-0.173398,-0.1142448;0.3635723;-0.0001099464,-0.2698551;0.2579576;-0.068161,-0.4468994;0.3281403;-0.2301169,0.07384656;0.004579013;-0.03042563,0.08617061;-0.2945002;-0.01043131,0.07521471;-0.589783;0.04141535,0.08551223;-0.6153854;-0.02322387,-0.06853486;0.003282007;-0.04113636,-0.09918007;-0.2940734;-0.01582525,-0.09929121;-0.5901376;0.0326102,-0.09881372;-0.5575479;-0.06586139,-0.003212944;0.3989286;0.02855814,0;0;0,-0.002877269;0.1991929;0.01771775,-0.007739311;0.4989321;0.02763741,0.1085282;0.3768324;-0.0008017458,0.2929723;0.3048025;-0.02894532,0.515862;0.3891189;-0.1045158,-0.1170391;0.362655;-0.0006348677,-0.2910221;0.2817737;-0.05709841,-0.4998276;0.3426566;-0.1803604,0.07353844;0.005292934;-0.03104968,0.08331178;-0.2931642;-0.002277831,0.07145171;-0.5858498;0.06248737,0.08141688;-0.6168814;0.004741617,-0.06844254;0.002436226;-0.04134831,-0.1042808;-0.2932865;-0.005799808,-0.1063881;-0.5864668;0.05776807,-0.1106774;-0.6152611;-0.003657129,-0.006070378;0.3989475;0.02709251,111.1138
-0;0;0,-0.001654944;0.1992771;0.01690835,-0.004206353;0.4989202;0.03028304,0.1110391;0.3753898;0.0005871225,0.2797897;0.2802508;-0.04913023,0.4704252;0.386666;-0.1709248,-0.1143725;0.3636776;-0.0003010277,-0.270583;0.2583159;-0.06736204,-0.4481221;0.3278416;-0.2290595,0.07382926;0.004589038;-0.03046606,0.08612578;-0.2944966;-0.01055156,0.07521407;-0.5897605;0.04141127,0.08566865;-0.6152027;-0.02338983,-0.06857244;0.003272256;-0.04107448,-0.09926702;-0.2940789;-0.01577349,-0.09915245;-0.5901084;0.03287327,-0.09866211;-0.5575294;-0.06559634,-0.003305904;0.3989431;0.02834447,0;0;0,-0.002877269;0.1991929;0.01771775,-0.007739311;0.4989321;0.02763741,0.1085282;0.3768324;-0.0008017458,0.2929723;0.3048025;-0.02894532,0.515862;0.3891189;-0.1045158,-0.1170391;0.362655;-0.0006348677,-0.2910221;0.2817737;-0.05709841,-0.4998276;0.3426566;-0.1803604,0.07353844;0.005292934;-0.03104968,0.08331178;-0.2931642;-0.002277831,0.07145171;-0.5858498;0.06248737,0.08141688;-0.6168814;0.004741617,-0.06844254;0.002436226;-0.04134831,-0.1042808;-0.2932865;-0.005799808,-0.1063881;-0.5864668;0.05776807,-0.1106774;-0.6152611;-0.003657129,-0.006070378;0.3989475;0.02709251,111.1252
-0;0;0,-0.001654944;0.1992771;0.01690835,-0.004206353;0.4989202;0.03028304,0.1110391;0.3753898;0.0005871225,0.2797897;0.2802508;-0.04913023,0.4704252;0.386666;-0.1709248,-0.1143725;0.3636776;-0.0003010277,-0.270583;0.2583159;-0.06736204,-0.4481221;0.3278416;-0.2290595,0.07382926;0.004589038;-0.03046606,0.08612578;-0.2944966;-0.01055156,0.07521407;-0.5897605;0.04141127,0.08566865;-0.6152027;-0.02338983,-0.06857244;0.003272256;-0.04107448,-0.09926702;-0.2940789;-0.01577349,-0.09915245;-0.5901084;0.03287327,-0.09866211;-0.5575294;-0.06559634,-0.003305904;0.3989431;0.02834447,0;0;0,-0.002877269;0.1991929;0.01771775,-0.007739311;0.4989321;0.02763741,0.1085282;0.3768324;-0.0008017458,0.2929723;0.3048025;-0.02894532,0.515862;0.3891189;-0.1045158,-0.1170391;0.362655;-0.0006348677,-0.2910221;0.2817737;-0.05709841,-0.4998276;0.3426566;-0.1803604,0.07353844;0.005292934;-0.03104968,0.08331178;-0.2931642;-0.002277831,0.07145171;-0.5858498;0.06248737,0.08141688;-0.6168814;0.004741617,-0.06844254;0.002436226;-0.04134831,-0.1042808;-0.2932865;-0.005799808,-0.1063881;-0.5864668;0.05776807,-0.1106774;-0.6152611;-0.003657129,-0.006070378;0.3989475;0.02709251,111.1365
-0;0;0,-0.001678306;0.1992786;0.01688874,-0.004238719;0.4989256;0.03017065,0.1110135;0.3753755;0.0005732141,0.2799065;0.2799957;-0.04818999,0.4716744;0.3860698;-0.1684953,-0.1144211;0.3636813;-0.0003334656,-0.2707177;0.2579879;-0.06666822,-0.4497577;0.3264658;-0.2271533,0.07385213;0.004535062;-0.03041867,0.08625323;-0.2945534;-0.01061093,0.07534729;-0.5898186;0.04134575,0.08567546;-0.6148745;-0.02392247,-0.06856977;0.003335684;-0.04107384,-0.09912026;-0.2940148;-0.01559063,-0.09890039;-0.5901057;0.03268103,-0.09841171;-0.5575243;-0.06578901,-0.003343119;0.3989477;0.02826637,0;0;0,-0.002915756;0.1992151;0.01745946,-0.007803523;0.4989696;0.02689339,0.1087407;0.3770012;-0.0003308672,0.2937406;0.305769;-0.02680796,0.5178924;0.389761;-0.09892802,-0.1171901;0.362715;-0.0008935668,-0.2923498;0.2824724;-0.05456109,-0.5027162;0.3434639;-0.1750851,0.07357682;0.005223136;-0.03097049,0.0833319;-0.2932523;-0.002382258,0.07139194;-0.5859342;0.06238463,0.08140525;-0.616582;0.004112288,-0.06839649;0.002490781;-0.04142118,-0.1041323;-0.293268;-0.006069757,-0.106333;-0.586434;0.05756081,-0.1104569;-0.614387;-0.00493975,-0.006133962;0.3989843;0.0265121,111.159
-0;0;0,-0.001678306;0.1992786;0.01688874,-0.004238719;0.4989256;0.03017065,0.1110135;0.3753755;0.0005732141,0.2799065;0.2799957;-0.04818999,0.4716744;0.3860698;-0.1684953,-0.1144211;0.3636813;-0.0003334656,-0.2707177;0.2579879;-0.06666822,-0.4497577;0.3264658;-0.2271533,0.07385213;0.004535062;-0.03041867,0.08625323;-0.2945534;-0.01061093,0.07534729;-0.5898186;0.04134575,0.08567546;-0.6148745;-0.02392247,-0.06856977;0.003335684;-0.04107384,-0.09912026;-0.2940148;-0.01559063,-0.09890039;-0.5901057;0.03268103,-0.09841171;-0.5575243;-0.06578901,-0.003343119;0.3989477;0.02826637,0;0;0,-0.002915756;0.1992151;0.01745946,-0.007803523;0.4989696;0.02689339,0.1087407;0.3770012;-0.0003308672,0.2937406;0.305769;-0.02680796,0.5178924;0.389761;-0.09892802,-0.1171901;0.362715;-0.0008935668,-0.2923498;0.2824724;-0.05456109,-0.5027162;0.3434639;-0.1750851,0.07357682;0.005223136;-0.03097049,0.0833319;-0.2932523;-0.002382258,0.07139194;-0.5859342;0.06238463,0.08140525;-0.616582;0.004112288,-0.06839649;0.002490781;-0.04142118,-0.1041323;-0.293268;-0.006069757,-0.106333;-0.586434;0.05756081,-0.1104569;-0.614387;-0.00493975,-0.006133962;0.3989843;0.0265121,111.1708
-0;0;0,-0.001716956;0.1992842;0.01681862,-0.004416778;0.4989375;0.0298973,0.1109289;0.3754913;0.0004606172,0.2798634;0.2797875;-0.0475177,0.4731236;0.3857882;-0.1654769,-0.1145859;0.3638117;-0.0004731119,-0.2781258;0.2736965;-0.07212482,-0.4527813;0.3448217;-0.2362487,0.07384479;0.004526693;-0.03043773,0.08614318;-0.2945626;-0.01057994,0.07428393;-0.5899296;0.04058341,0.08598968;-0.6149296;-0.02451627,-0.06858075;0.003343881;-0.04105483,-0.09917228;-0.2940074;-0.01563045,-0.0985525;-0.589799;0.03443833,-0.09576305;-0.6165668;-0.02958447,-0.003462675;0.3989582;0.02809865,0;0;0,-0.002915756;0.1992151;0.01745946,-0.007803523;0.4989696;0.02689339,0.1087407;0.3770012;-0.0003308672,0.2937406;0.305769;-0.02680796,0.5178924;0.389761;-0.09892802,-0.1171901;0.362715;-0.0008935668,-0.2923498;0.2824724;-0.05456109,-0.5027162;0.3434639;-0.1750851,0.07357682;0.005223136;-0.03097049,0.0833319;-0.2932523;-0.002382258,0.07139194;-0.5859342;0.06238463,0.08140525;-0.616582;0.004112288,-0.06839649;0.002490781;-0.04142118,-0.1041323;-0.293268;-0.006069757,-0.106333;-0.586434;0.05756081,-0.1104569;-0.614387;-0.00493975,-0.006133962;0.3989843;0.0265121,111.1929
-0;0;0,-0.001716956;0.1992842;0.01681862,-0.004416778;0.4989375;0.0298973,0.1109289;0.3754913;0.0004606172,0.2798634;0.2797875;-0.0475177,0.4731236;0.3857882;-0.1654769,-0.1145859;0.3638117;-0.0004731119,-0.2781258;0.2736965;-0.07212482,-0.4527813;0.3448217;-0.2362487,0.07384479;0.004526693;-0.03043773,0.08614318;-0.2945626;-0.01057994,0.07428393;-0.5899296;0.04058341,0.08598968;-0.6149296;-0.02451627,-0.06858075;0.003343881;-0.04105483,-0.09917228;-0.2940074;-0.01563045,-0.0985525;-0.589799;0.03443833,-0.09576305;-0.6165668;-0.02958447,-0.003462675;0.3989582;0.02809865,0;0;0,-0.003122594;0.1992521;0.01699586,-0.008376377;0.4990256;0.0255137,0.1085393;0.3770534;-0.0003831442,0.2939201;0.3059871;-0.02453974,0.5195299;0.3898312;-0.09214446,-0.1177993;0.3629116;-0.001338087,-0.2937629;0.2826551;-0.05228601,-0.5075657;0.3442076;-0.1663021,0.0736924;0.005211198;-0.03069646,0.08326676;-0.293334;-0.002784707,0.07132877;-0.5860364;0.06188971,0.08131526;-0.6168061;0.003781755,-0.06827085;0.002513348;-0.04162661,-0.1040785;-0.2932799;-0.006638091,-0.1058815;-0.5862728;0.05779669,-0.1104612;-0.61556;-0.002969809,-0.006556829;0.3990422;0.02548912,111.2049
-0;0;0,-0.001759442;0.199286;0.01679301,-0.00452155;0.4989429;0.02977179,0.1108538;0.3755516;0.000388477,0.2799271;0.279585;-0.04656472,0.4743695;0.3859764;-0.1622066,-0.1147087;0.3639756;-0.0006300695,-0.2732553;0.2577828;-0.06051386,-0.4532351;0.3237638;-0.2209937,0.07383531;0.004530609;-0.03046016,0.08604839;-0.2945577;-0.01053479,0.07449008;-0.5899707;0.04043154,0.08593319;-0.6149352;-0.02475578,-0.0686085;0.003335394;-0.04100912,-0.09915926;-0.2940139;-0.01551257,-0.09877201;-0.5898958;0.03402234,-0.09547678;-0.6161504;-0.03058705,-0.003553;0.3989631;0.0280107,0;0;0,-0.003122594;0.1992521;0.01699586,-0.008376377;0.4990256;0.0255137,0.1085393;0.3770534;-0.0003831442,0.2939201;0.3059871;-0.02453974,0.5195299;0.3898312;-0.09214446,-0.1177993;0.3629116;-0.001338087,-0.2937629;0.2826551;-0.05228601,-0.5075657;0.3442076;-0.1663021,0.0736924;0.005211198;-0.03069646,0.08326676;-0.293334;-0.002784707,0.07132877;-0.5860364;0.06188971,0.08131526;-0.6168061;0.003781755,-0.06827085;0.002513348;-0.04162661,-0.1040785;-0.2932799;-0.006638091,-0.1058815;-0.5862728;0.05779669,-0.1104612;-0.61556;-0.002969809,-0.006556829;0.3990422;0.02548912,111.2263
-0;0;0,-0.001759442;0.199286;0.01679301,-0.00452155;0.4989429;0.02977179,0.1108538;0.3755516;0.000388477,0.2799271;0.279585;-0.04656472,0.4743695;0.3859764;-0.1622066,-0.1147087;0.3639756;-0.0006300695,-0.2732553;0.2577828;-0.06051386,-0.4532351;0.3237638;-0.2209937,0.07383531;0.004530609;-0.03046016,0.08604839;-0.2945577;-0.01053479,0.07449008;-0.5899707;0.04043154,0.08593319;-0.6149352;-0.02475578,-0.0686085;0.003335394;-0.04100912,-0.09915926;-0.2940139;-0.01551257,-0.09877201;-0.5898958;0.03402234,-0.09547678;-0.6161504;-0.03058705,-0.003553;0.3989631;0.0280107,0;0;0,-0.003122594;0.1992521;0.01699586,-0.008376377;0.4990256;0.0255137,0.1085393;0.3770534;-0.0003831442,0.2939201;0.3059871;-0.02453974,0.5195299;0.3898312;-0.09214446,-0.1177993;0.3629116;-0.001338087,-0.2937629;0.2826551;-0.05228601,-0.5075657;0.3442076;-0.1663021,0.0736924;0.005211198;-0.03069646,0.08326676;-0.293334;-0.002784707,0.07132877;-0.5860364;0.06188971,0.08131526;-0.6168061;0.003781755,-0.06827085;0.002513348;-0.04162661,-0.1040785;-0.2932799;-0.006638091,-0.1058815;-0.5862728;0.05779669,-0.1104612;-0.61556;-0.002969809,-0.006556829;0.3990422;0.02548912,111.2382
-0;0;0,-0.001815018;0.1992904;0.01673482,-0.004835322;0.4989531;0.02949272,0.1106524;0.3753904;0.0003983919,0.2803101;0.2798308;-0.04525908,0.4761845;0.3865685;-0.1581319,-0.1149265;0.3639736;-0.0007630084,-0.2734259;0.2576389;-0.06051975,-0.4568553;0.3234356;-0.2171226,0.07387003;0.004498291;-0.03038065,0.08603065;-0.2945978;-0.01053979,0.07449045;-0.5900292;0.04032402,0.08632171;-0.6154667;-0.0242453,-0.06858269;0.003350831;-0.04105101,-0.09913113;-0.2939987;-0.0155544,-0.09891489;-0.5899239;0.03372275,-0.09611782;-0.6147279;-0.03258356,-0.003763724;0.3989725;0.02783624,0;0;0,-0.003227454;0.1992837;0.01660077,-0.008837958;0.4990617;0.02471072,0.1083598;0.3772934;-0.0004892722,0.2942171;0.3065852;-0.02187653,0.5213081;0.3910386;-0.08349879,-0.1183212;0.3631795;-0.001545316,-0.2950862;0.2830157;-0.04979371,-0.5105229;0.3449242;-0.160493,0.0737877;0.005197558;-0.030469,0.08343066;-0.2933923;-0.003062136,0.07142434;-0.586158;0.06131215,0.08170992;-0.6169056;0.003225781,-0.06813537;0.002534657;-0.0418467,-0.1039126;-0.2932785;-0.006996159,-0.1051656;-0.5865452;0.05619461,-0.1101915;-0.6148131;-0.005844645,-0.006897056;0.3990806;0.02483208,111.2597
-0;0;0,-0.001815018;0.1992904;0.01673482,-0.004835322;0.4989531;0.02949272,0.1106524;0.3753904;0.0003983919,0.2803101;0.2798308;-0.04525908,0.4761845;0.3865685;-0.1581319,-0.1149265;0.3639736;-0.0007630084,-0.2734259;0.2576389;-0.06051975,-0.4568553;0.3234356;-0.2171226,0.07387003;0.004498291;-0.03038065,0.08603065;-0.2945978;-0.01053979,0.07449045;-0.5900292;0.04032402,0.08632171;-0.6154667;-0.0242453,-0.06858269;0.003350831;-0.04105101,-0.09913113;-0.2939987;-0.0155544,-0.09891489;-0.5899239;0.03372275,-0.09611782;-0.6147279;-0.03258356,-0.003763724;0.3989725;0.02783624,0;0;0,-0.003227454;0.1992837;0.01660077,-0.008837958;0.4990617;0.02471072,0.1083598;0.3772934;-0.0004892722,0.2942171;0.3065852;-0.02187653,0.5213081;0.3910386;-0.08349879,-0.1183212;0.3631795;-0.001545316,-0.2950862;0.2830157;-0.04979371,-0.5105229;0.3449242;-0.160493,0.0737877;0.005197558;-0.030469,0.08343066;-0.2933923;-0.003062136,0.07142434;-0.586158;0.06131215,0.08170992;-0.6169056;0.003225781,-0.06813537;0.002534657;-0.0418467,-0.1039126;-0.2932785;-0.006996159,-0.1051656;-0.5865452;0.05619461,-0.1101915;-0.6148131;-0.005844645,-0.006897056;0.3990806;0.02483208,111.2715
-0;0;0,-0.001882414;0.1992954;0.0166678,-0.005165866;0.4989697;0.02905299,0.1104741;0.375466;0.0003265273,0.2805755;0.2801058;-0.04408007,0.4771188;0.3873986;-0.155251,-0.1152464;0.3641324;-0.0009163059,-0.2786897;0.268066;-0.06461503,-0.4574736;0.3419908;-0.2229546,0.07388333;0.004497236;-0.03034844,0.0861125;-0.2946004;-0.0105737,0.07445951;-0.5899186;0.04091812,0.08663039;-0.6151811;-0.02379207,-0.06856718;0.003354137;-0.04107665,-0.09913029;-0.2939981;-0.01562924,-0.09905527;-0.5899885;0.03325518,-0.09653635;-0.6144606;-0.03343482,-0.004005041;0.3989877;0.0275526,0;0;0,-0.003227454;0.1992837;0.01660077,-0.008837958;0.4990617;0.02471072,0.1083598;0.3772934;-0.0004892722,0.2942171;0.3065852;-0.02187653,0.5213081;0.3910386;-0.08349879,-0.1183212;0.3631795;-0.001545316,-0.2950862;0.2830157;-0.04979371,-0.5105229;0.3449242;-0.160493,0.0737877;0.005197558;-0.030469,0.08343066;-0.2933923;-0.003062136,0.07142434;-0.586158;0.06131215,0.08170992;-0.6169056;0.003225781,-0.06813537;0.002534657;-0.0418467,-0.1039126;-0.2932785;-0.006996159,-0.1051656;-0.5865452;0.05619461,-0.1101915;-0.6148131;-0.005844645,-0.006897056;0.3990806;0.02483208,111.2932
-0;0;0,-0.001882414;0.1992954;0.0166678,-0.005165866;0.4989697;0.02905299,0.1104741;0.375466;0.0003265273,0.2805755;0.2801058;-0.04408007,0.4771188;0.3873986;-0.155251,-0.1152464;0.3641324;-0.0009163059,-0.2786897;0.268066;-0.06461503,-0.4574736;0.3419908;-0.2229546,0.07388333;0.004497236;-0.03034844,0.0861125;-0.2946004;-0.0105737,0.07445951;-0.5899186;0.04091812,0.08663039;-0.6151811;-0.02379207,-0.06856718;0.003354137;-0.04107665,-0.09913029;-0.2939981;-0.01562924,-0.09905527;-0.5899885;0.03325518,-0.09653635;-0.6144606;-0.03343482,-0.004005041;0.3989877;0.0275526,0;0;0,-0.003292922;0.1993024;0.01636172,-0.0090204;0.4990902;0.02403811,0.1083549;0.3774466;-0.0004370585,0.2951219;0.3084112;-0.01920397,0.5232708;0.3911265;-0.07925603,-0.1185863;0.3633473;-0.001818707,-0.2962694;0.2836644;-0.0474188,-0.5147496;0.3442481;-0.1527562,0.07382885;0.005175024;-0.03037302,0.08350924;-0.2934162;-0.002994329,0.07146654;-0.5861248;0.0616325,0.08126088;-0.6165405;0.003003303,-0.06808691;0.002550329;-0.04192456,-0.1038451;-0.2932815;-0.00721316,-0.1050813;-0.5864488;0.0564374,-0.1101299;-0.6160912;-0.003825374,-0.007054326;0.3991098;0.02428991,111.3051
-0;0;0,-0.001916299;0.1993021;0.01658351,-0.005328423;0.4989938;0.02847623,0.1104309;0.3755274;0.000249384,0.2808266;0.2803029;-0.04331209,0.4784126;0.387513;-0.1527004,-0.1153926;0.3642359;-0.001312939,-0.2788251;0.268112;-0.06495268,-0.4606481;0.3421771;-0.2197258,0.07388872;0.004494762;-0.03033569,0.08608101;-0.2946104;-0.01065075,0.07437436;-0.5899016;0.04098318,0.08672523;-0.6140401;-0.02497844,-0.06856124;0.003353264;-0.04108663,-0.09911647;-0.2940009;-0.0156527,-0.09881686;-0.589905;0.03375054,-0.09626894;-0.6140379;-0.03331532,-0.004128901;0.3990095;0.02716844,0;0;0,-0.003292922;0.1993024;0.01636172,-0.0090204;0.4990902;0.02403811,0.1083549;0.3774466;-0.0004370585,0.2951219;0.3084112;-0.01920397,0.5232708;0.3911265;-0.07925603,-0.1185863;0.3633473;-0.001818707,-0.2962694;0.2836644;-0.0474188,-0.5147496;0.3442481;-0.1527562,0.07382885;0.005175024;-0.03037302,0.08350924;-0.2934162;-0.002994329,0.07146654;-0.5861248;0.0616325,0.08126088;-0.6165405;0.003003303,-0.06808691;0.002550329;-0.04192456,-0.1038451;-0.2932815;-0.00721316,-0.1050813;-0.5864488;0.0564374,-0.1101299;-0.6160912;-0.003825374,-0.007054326;0.3991098;0.02428991,111.327
-0;0;0,-0.001916299;0.1993021;0.01658351,-0.005328423;0.4989938;0.02847623,0.1104309;0.3755274;0.000249384,0.2808266;0.2803029;-0.04331209,0.4784126;0.387513;-0.1527004,-0.1153926;0.3642359;-0.001312939,-0.2788251;0.268112;-0.06495268,-0.4606481;0.3421771;-0.2197258,0.07388872;0.004494762;-0.03033569,0.08608101;-0.2946104;-0.01065075,0.07437436;-0.5899016;0.04098318,0.08672523;-0.6140401;-0.02497844,-0.06856124;0.003353264;-0.04108663,-0.09911647;-0.2940009;-0.0156527,-0.09881686;-0.589905;0.03375054,-0.09626894;-0.6140379;-0.03331532,-0.004128901;0.3990095;0.02716844,0;0;0,-0.003292922;0.1993024;0.01636172,-0.0090204;0.4990902;0.02403811,0.1083549;0.3774466;-0.0004370585,0.2951219;0.3084112;-0.01920397,0.5232708;0.3911265;-0.07925603,-0.1185863;0.3633473;-0.001818707,-0.2962694;0.2836644;-0.0474188,-0.5147496;0.3442481;-0.1527562,0.07382885;0.005175024;-0.03037302,0.08350924;-0.2934162;-0.002994329,0.07146654;-0.5861248;0.0616325,0.08126088;-0.6165405;0.003003303,-0.06808691;0.002550329;-0.04192456,-0.1038451;-0.2932815;-0.00721316,-0.1050813;-0.5864488;0.0564374,-0.1101299;-0.6160912;-0.003825374,-0.007054326;0.3991098;0.02428991,111.3386
-0;0;0,-0.001916299;0.1993021;0.01658351,-0.005328423;0.4989938;0.02847623,0.1104309;0.3755274;0.000249384,0.2808266;0.2803029;-0.04331209,0.4784126;0.387513;-0.1527004,-0.1153926;0.3642359;-0.001312939,-0.2788251;0.268112;-0.06495268,-0.4606481;0.3421771;-0.2197258,0.07388872;0.004494762;-0.03033569,0.08608101;-0.2946104;-0.01065075,0.07437436;-0.5899016;0.04098318,0.08672523;-0.6140401;-0.02497844,-0.06856124;0.003353264;-0.04108663,-0.09911647;-0.2940009;-0.0156527,-0.09881686;-0.589905;0.03375054,-0.09626894;-0.6140379;-0.03331532,-0.004128901;0.3990095;0.02716844,0;0;0,-0.003385032;0.1993278;0.01603006,-0.009244108;0.4991298;0.02300541,0.1083142;0.3775465;-0.000607606,0.2955613;0.3092721;-0.01725461,0.5248668;0.3916983;-0.07315572,-0.1189659;0.3636052;-0.002056072,-0.2970574;0.2833925;-0.0450599,-0.5178124;0.3442299;-0.1453896,0.07381299;0.005157365;-0.03041452,0.08345501;-0.2934407;-0.003097244,0.07144085;-0.5861577;0.06149739,0.08111714;-0.6166639;0.002972919,-0.06806088;0.002582876;-0.04196481,-0.1039263;-0.29326;-0.007458866,-0.1052015;-0.5864484;0.05609404,-0.1098268;-0.6148792;-0.005770534,-0.0072369;0.3991511;0.02350021,111.3496
-0;0;0,-0.001937324;0.1993124;0.0164558,-0.005324238;0.4990106;0.0281636,0.1104603;0.3755403;0.0002123676,0.2814081;0.2803323;-0.04116738,0.4796092;0.3887136;-0.1482646,-0.1154226;0.3642479;-0.001465805,-0.278903;0.2683279;-0.06528977,-0.4651821;0.3426087;-0.2145629,0.07391253;0.004501712;-0.03027659,0.08615252;-0.2946073;-0.01068082,0.07436629;-0.5898499;0.0412121,0.08620945;-0.6145523;-0.0242042,-0.06853486;0.003353605;-0.04113059,-0.09906462;-0.2940098;-0.01577365,-0.09870005;-0.5899223;0.03357887,-0.09646517;-0.6146166;-0.03287242,-0.004142317;0.399025;0.0269464,0;0;0,-0.003385032;0.1993278;0.01603006,-0.009244108;0.4991298;0.02300541,0.1083142;0.3775465;-0.000607606,0.2955613;0.3092721;-0.01725461,0.5248668;0.3916983;-0.07315572,-0.1189659;0.3636052;-0.002056072,-0.2970574;0.2833925;-0.0450599,-0.5178124;0.3442299;-0.1453896,0.07381299;0.005157365;-0.03041452,0.08345501;-0.2934407;-0.003097244,0.07144085;-0.5861577;0.06149739,0.08111714;-0.6166639;0.002972919,-0.06806088;0.002582876;-0.04196481,-0.1039263;-0.29326;-0.007458866,-0.1052015;-0.5864484;0.05609404,-0.1098268;-0.6148792;-0.005770534,-0.0072369;0.3991511;0.02350021,111.3606
-0;0;0,-0.001937324;0.1993124;0.0164558,-0.005324238;0.4990106;0.0281636,0.1104603;0.3755403;0.0002123676,0.2814081;0.2803323;-0.04116738,0.4796092;0.3887136;-0.1482646,-0.1154226;0.3642479;-0.001465805,-0.278903;0.2683279;-0.06528977,-0.4651821;0.3426087;-0.2145629,0.07391253;0.004501712;-0.03027659,0.08615252;-0.2946073;-0.01068082,0.07436629;-0.5898499;0.0412121,0.08620945;-0.6145523;-0.0242042,-0.06853486;0.003353605;-0.04113059,-0.09906462;-0.2940098;-0.01577365,-0.09870005;-0.5899223;0.03357887,-0.09646517;-0.6146166;-0.03287242,-0.004142317;0.399025;0.0269464,0;0;0,-0.003385032;0.1993278;0.01603006,-0.009244108;0.4991298;0.02300541,0.1083142;0.3775465;-0.000607606,0.2955613;0.3092721;-0.01725461,0.5248668;0.3916983;-0.07315572,-0.1189659;0.3636052;-0.002056072,-0.2970574;0.2833925;-0.0450599,-0.5178124;0.3442299;-0.1453896,0.07381299;0.005157365;-0.03041452,0.08345501;-0.2934407;-0.003097244,0.07144085;-0.5861577;0.06149739,0.08111714;-0.6166639;0.002972919,-0.06806088;0.002582876;-0.04196481,-0.1039263;-0.29326;-0.007458866,-0.1052015;-0.5864484;0.05609404,-0.1098268;-0.6148792;-0.005770534,-0.0072369;0.3991511;0.02350021,111.3832
-0;0;0,-0.001957002;0.1993244;0.01630843,-0.005274029;0.4990498;0.02726702,0.1105309;0.3753655;2.114661E-05,0.2818704;0.2803152;-0.04008147,0.4821293;0.389593;-0.1423299,-0.115481;0.3642412;-0.001710773,-0.281279;0.273959;-0.06774216,-0.4739001;0.3455429;-0.2101249,0.07391205;0.004466587;-0.03028295,0.08608206;-0.2946456;-0.010692,0.07429442;-0.5898175;0.04160139,0.08641649;-0.614279;-0.02403812,-0.06854317;0.003380162;-0.04111458,-0.09914503;-0.2939821;-0.01583115,-0.09880279;-0.5898952;0.0335172,-0.09676833;-0.613566;-0.03407337,-0.004123461;0.3990607;0.02634469,0;0;0,-0.003342617;0.1993573;0.01566775,-0.009110294;0.4991727;0.022107,0.1084995;0.3775584;-0.0007590465,0.2961902;0.309973;-0.01505663,0.5260798;0.3931041;-0.06740177,-0.1190129;0.363771;-0.002396282,-0.2979359;0.2837718;-0.04222987,-0.520556;0.3442822;-0.1385562,0.07387421;0.005064494;-0.03028122,0.08377338;-0.2935537;-0.003277058,0.0716366;-0.5862684;0.06130477,0.0813454;-0.6172231;0.003407806,-0.06797154;0.002663088;-0.04210437,-0.1037204;-0.2932106;-0.007741746,-0.1051862;-0.5864072;0.05576906,-0.1094148;-0.6150104;-0.005904663,-0.00716096;0.399194;0.02278983,111.4057
-0;0;0,-0.001957002;0.1993244;0.01630843,-0.005274029;0.4990498;0.02726702,0.1105309;0.3753655;2.114661E-05,0.2818704;0.2803152;-0.04008147,0.4821293;0.389593;-0.1423299,-0.115481;0.3642412;-0.001710773,-0.281279;0.273959;-0.06774216,-0.4739001;0.3455429;-0.2101249,0.07391205;0.004466587;-0.03028295,0.08608206;-0.2946456;-0.010692,0.07429442;-0.5898175;0.04160139,0.08641649;-0.614279;-0.02403812,-0.06854317;0.003380162;-0.04111458,-0.09914503;-0.2939821;-0.01583115,-0.09880279;-0.5898952;0.0335172,-0.09676833;-0.613566;-0.03407337,-0.004123461;0.3990607;0.02634469,0;0;0,-0.003342617;0.1993573;0.01566775,-0.009110294;0.4991727;0.022107,0.1084995;0.3775584;-0.0007590465,0.2961902;0.309973;-0.01505663,0.5260798;0.3931041;-0.06740177,-0.1190129;0.363771;-0.002396282,-0.2979359;0.2837718;-0.04222987,-0.520556;0.3442822;-0.1385562,0.07387421;0.005064494;-0.03028122,0.08377338;-0.2935537;-0.003277058,0.0716366;-0.5862684;0.06130477,0.0813454;-0.6172231;0.003407806,-0.06797154;0.002663088;-0.04210437,-0.1037204;-0.2932106;-0.007741746,-0.1051862;-0.5864072;0.05576906,-0.1094148;-0.6150104;-0.005904663,-0.00716096;0.399194;0.02278983,111.4167
-0;0;0,-0.001988909;0.1993327;0.01620233,-0.005345839;0.4990608;0.02706707,0.1104959;0.3754082;-6.511062E-05,0.282389;0.2803474;-0.03769745,0.4836389;0.3903076;-0.1372325,-0.1155401;0.3642208;-0.001833266,-0.2814702;0.2739944;-0.06760846,-0.4776988;0.3468894;-0.2042858,0.07393424;0.004493103;-0.03022482,0.08606808;-0.2946298;-0.01077647,0.07422405;-0.5898089;0.04146342,0.08647669;-0.6144094;-0.02399369,-0.06851711;0.003359165;-0.0411597,-0.09911488;-0.2939974;-0.01580551,-0.09863075;-0.5899023;0.03359195,-0.09740964;-0.615894;-0.03139863,-0.004182367;0.3990715;0.02618264,0;0;0,-0.003342617;0.1993573;0.01566775,-0.009110294;0.4991727;0.022107,0.1084995;0.3775584;-0.0007590465,0.2961902;0.309973;-0.01505663,0.5260798;0.3931041;-0.06740177,-0.1190129;0.363771;-0.002396282,-0.2979359;0.2837718;-0.04222987,-0.520556;0.3442822;-0.1385562,0.07387421;0.005064494;-0.03028122,0.08377338;-0.2935537;-0.003277058,0.0716366;-0.5862684;0.06130477,0.0813454;-0.6172231;0.003407806,-0.06797154;0.002663088;-0.04210437,-0.1037204;-0.2932106;-0.007741746,-0.1051862;-0.5864072;0.05576906,-0.1094148;-0.6150104;-0.005904663,-0.00716096;0.399194;0.02278983,111.439
-0;0;0,-0.001988909;0.1993327;0.01620233,-0.005345839;0.4990608;0.02706707,0.1104959;0.3754082;-6.511062E-05,0.282389;0.2803474;-0.03769745,0.4836389;0.3903076;-0.1372325,-0.1155401;0.3642208;-0.001833266,-0.2814702;0.2739944;-0.06760846,-0.4776988;0.3468894;-0.2042858,0.07393424;0.004493103;-0.03022482,0.08606808;-0.2946298;-0.01077647,0.07422405;-0.5898089;0.04146342,0.08647669;-0.6144094;-0.02399369,-0.06851711;0.003359165;-0.0411597,-0.09911488;-0.2939974;-0.01580551,-0.09863075;-0.5899023;0.03359195,-0.09740964;-0.615894;-0.03139863,-0.004182367;0.3990715;0.02618264,0;0;0,-0.003293829;0.1993928;0.01522125,-0.008992759;0.4992134;0.02145043,0.1086649;0.3776215;-0.0009330157,0.2972944;0.312079;-0.0120276,0.5284422;0.3947017;-0.05940028,-0.1191585;0.3642823;-0.002623575,-0.2988703;0.2846416;-0.03951573,-0.5240364;0.3445195;-0.1301516,0.07385193;0.004974961;-0.03035033,0.08385937;-0.293679;-0.003786374,0.07159261;-0.5863954;0.06076309,0.08154478;-0.6173834;0.002953816,-0.06795431;0.002767525;-0.04212544,-0.1036285;-0.2931765;-0.008295253,-0.1050801;-0.5863843;0.05516391,-0.1092778;-0.6147824;-0.006772511,-0.007080814;0.3992346;0.02221432,111.4503
-0;0;0,-0.001955258;0.1993499;0.01599301,-0.005093241;0.4991103;0.02596454,0.1107336;0.3752365;-0.0002720673,0.2830102;0.280262;-0.03633615,0.4848218;0.3906508;-0.1342464,-0.1155028;0.3642282;-0.002089128,-0.2823501;0.2748795;-0.06673244,-0.4807776;0.347586;-0.2003,0.07391266;0.004488348;-0.03027825,0.0860362;-0.2946395;-0.01089907,0.07417931;-0.5898105;0.04138413,0.08641316;-0.6147855;-0.02364729,-0.06855176;0.003396218;-0.04109893,-0.09893192;-0.293965;-0.01553735,-0.09838416;-0.5899389;0.03344319,-0.09746033;-0.6154645;-0.03209331,-0.004027964;0.3991175;0.02540834,0;0;0,-0.003293829;0.1993928;0.01522125,-0.008992759;0.4992134;0.02145043,0.1086649;0.3776215;-0.0009330157,0.2972944;0.312079;-0.0120276,0.5284422;0.3947017;-0.05940028,-0.1191585;0.3642823;-0.002623575,-0.2988703;0.2846416;-0.03951573,-0.5240364;0.3445195;-0.1301516,0.07385193;0.004974961;-0.03035033,0.08385937;-0.293679;-0.003786374,0.07159261;-0.5863954;0.06076309,0.08154478;-0.6173834;0.002953816,-0.06795431;0.002767525;-0.04212544,-0.1036285;-0.2931765;-0.008295253,-0.1050801;-0.5863843;0.05516391,-0.1092778;-0.6147824;-0.006772511,-0.007080814;0.3992346;0.02221432,111.4612
-0;0;0,-0.001955258;0.1993499;0.01599301,-0.005093241;0.4991103;0.02596454,0.1107336;0.3752365;-0.0002720673,0.2830102;0.280262;-0.03633615,0.4848218;0.3906508;-0.1342464,-0.1155028;0.3642282;-0.002089128,-0.2823501;0.2748795;-0.06673244,-0.4807776;0.347586;-0.2003,0.07391266;0.004488348;-0.03027825,0.0860362;-0.2946395;-0.01089907,0.07417931;-0.5898105;0.04138413,0.08641316;-0.6147855;-0.02364729,-0.06855176;0.003396218;-0.04109893,-0.09893192;-0.293965;-0.01553735,-0.09838416;-0.5899389;0.03344319,-0.09746033;-0.6154645;-0.03209331,-0.004027964;0.3991175;0.02540834,0;0;0,-0.003293829;0.1993928;0.01522125,-0.008992759;0.4992134;0.02145043,0.1086649;0.3776215;-0.0009330157,0.2972944;0.312079;-0.0120276,0.5284422;0.3947017;-0.05940028,-0.1191585;0.3642823;-0.002623575,-0.2988703;0.2846416;-0.03951573,-0.5240364;0.3445195;-0.1301516,0.07385193;0.004974961;-0.03035033,0.08385937;-0.293679;-0.003786374,0.07159261;-0.5863954;0.06076309,0.08154478;-0.6173834;0.002953816,-0.06795431;0.002767525;-0.04212544,-0.1036285;-0.2931765;-0.008295253,-0.1050801;-0.5863843;0.05516391,-0.1092778;-0.6147824;-0.006772511,-0.007080814;0.3992346;0.02221432,111.4837
-0;0;0,-0.001891473;0.1993706;0.01574165,-0.004704009;0.4991521;0.02517835,0.1110063;0.3749304;-0.0004837625,0.283605;0.2797639;-0.03443981,0.4862523;0.3905395;-0.1301627,-0.1153235;0.3641291;-0.002230953,-0.2823334;0.2746713;-0.0663012,-0.4840549;0.3484417;-0.1942322,0.0739039;0.004477226;-0.03030129,0.08608944;-0.2946489;-0.01093527,0.07420344;-0.5898446;0.0412017,0.08637074;-0.6154588;-0.02309795,-0.06855776;0.003409093;-0.04108784,-0.09888095;-0.2939613;-0.01556571,-0.0983978;-0.5899918;0.03307252,-0.09743077;-0.6157728;-0.03216786,-0.003774322;0.3991572;0.02478416,0;0;0,-0.003294804;0.1994282;0.01474932,-0.008976799;0.4992702;0.01974851,0.1087914;0.3776225;-0.001374928,0.2980364;0.3134508;-0.009640625,0.5299467;0.3955219;-0.05415946,-0.1193939;0.3644911;-0.003093252,-0.3000295;0.285223;-0.03606818,-0.5272071;0.3434634;-0.1226615,0.07384013;0.004949243;-0.0303832,0.08401067;-0.2937172;-0.004022015,0.07159282;-0.5863761;0.06075926,0.08187746;-0.6170565;0.002579544,-0.06793341;0.002807031;-0.04215652,-0.1034894;-0.2931854;-0.008626182,-0.105028;-0.5863773;0.05490448,-0.1095074;-0.6135383;-0.008547168,-0.007101005;0.3992952;0.02096862,111.5057
-0;0;0,-0.001891473;0.1993706;0.01574165,-0.004704009;0.4991521;0.02517835,0.1110063;0.3749304;-0.0004837625,0.283605;0.2797639;-0.03443981,0.4862523;0.3905395;-0.1301627,-0.1153235;0.3641291;-0.002230953,-0.2823334;0.2746713;-0.0663012,-0.4840549;0.3484417;-0.1942322,0.0739039;0.004477226;-0.03030129,0.08608944;-0.2946489;-0.01093527,0.07420344;-0.5898446;0.0412017,0.08637074;-0.6154588;-0.02309795,-0.06855776;0.003409093;-0.04108784,-0.09888095;-0.2939613;-0.01556571,-0.0983978;-0.5899918;0.03307252,-0.09743077;-0.6157728;-0.03216786,-0.003774322;0.3991572;0.02478416,0;0;0,-0.003294804;0.1994282;0.01474932,-0.008976799;0.4992702;0.01974851,0.1087914;0.3776225;-0.001374928,0.2980364;0.3134508;-0.009640625,0.5299467;0.3955219;-0.05415946,-0.1193939;0.3644911;-0.003093252,-0.3000295;0.285223;-0.03606818,-0.5272071;0.3434634;-0.1226615,0.07384013;0.004949243;-0.0303832,0.08401067;-0.2937172;-0.004022015,0.07159282;-0.5863761;0.06075926,0.08187746;-0.6170565;0.002579544,-0.06793341;0.002807031;-0.04215652,-0.1034894;-0.2931854;-0.008626182,-0.105028;-0.5863773;0.05490448,-0.1095074;-0.6135383;-0.008547168,-0.007101005;0.3992952;0.02096862,111.5172
-0;0;0,-0.001821925;0.1993836;0.01558414,-0.004397387;0.49918;0.02462091,0.1112194;0.3747191;-0.0006964449,0.2842486;0.2798003;-0.03312024,0.4880584;0.3927047;-0.1237523,-0.1152016;0.3642099;-0.002349094,-0.2820151;0.271625;-0.06235972,-0.4854683;0.3477894;-0.1860763,0.0739011;0.004476224;-0.03030825,0.08607925;-0.2946495;-0.01093041,0.07430641;-0.589781;0.04159396,0.08650106;-0.6153682;-0.02273237,-0.06856024;0.003407313;-0.04108385,-0.09881826;-0.2939681;-0.01554363,-0.09844033;-0.5900037;0.03306507,-0.09717587;-0.6158321;-0.03211506,-0.003559348;0.3991838;0.02434995,0;0;0,-0.003294804;0.1994282;0.01474932,-0.008976799;0.4992702;0.01974851,0.1087914;0.3776225;-0.001374928,0.2980364;0.3134508;-0.009640625,0.5299467;0.3955219;-0.05415946,-0.1193939;0.3644911;-0.003093252,-0.3000295;0.285223;-0.03606818,-0.5272071;0.3434634;-0.1226615,0.07384013;0.004949243;-0.0303832,0.08401067;-0.2937172;-0.004022015,0.07159282;-0.5863761;0.06075926,0.08187746;-0.6170565;0.002579544,-0.06793341;0.002807031;-0.04215652,-0.1034894;-0.2931854;-0.008626182,-0.105028;-0.5863773;0.05490448,-0.1095074;-0.6135383;-0.008547168,-0.007101005;0.3992952;0.02096862,111.5396
-0;0;0,-0.001821925;0.1993836;0.01558414,-0.004397387;0.49918;0.02462091,0.1112194;0.3747191;-0.0006964449,0.2842486;0.2798003;-0.03312024,0.4880584;0.3927047;-0.1237523,-0.1152016;0.3642099;-0.002349094,-0.2820151;0.271625;-0.06235972,-0.4854683;0.3477894;-0.1860763,0.0739011;0.004476224;-0.03030825,0.08607925;-0.2946495;-0.01093041,0.07430641;-0.589781;0.04159396,0.08650106;-0.6153682;-0.02273237,-0.06856024;0.003407313;-0.04108385,-0.09881826;-0.2939681;-0.01554363,-0.09844033;-0.5900037;0.03306507,-0.09717587;-0.6158321;-0.03211506,-0.003559348;0.3991838;0.02434995,0;0;0,-0.003274369;0.1994622;0.01428622,-0.008657703;0.4993177;0.01871182,0.1091235;0.3777514;-0.001545962,0.298899;0.3148428;-0.00681584,0.5317192;0.3970234;-0.04607263,-0.1193925;0.3649302;-0.003577914,-0.3006155;0.285723;-0.03331701,-0.5301198;0.3430503;-0.1141956,0.07401228;0.004932422;-0.0299642,0.08416691;-0.293788;-0.004215602,0.0713909;-0.5864257;0.06059141,0.08273983;-0.6163039;0.00150945,-0.06775565;0.002814382;-0.04244116,-0.103319;-0.2931923;-0.009044889,-0.1051307;-0.586488;0.05399734,-0.1087391;-0.612606;-0.01075621,-0.006907533;0.3993433;0.02014697,111.5508
-0;0;0,-0.001711885;0.1994034;0.01534137,-0.004019425;0.4992193;0.0237879,0.1114853;0.3744619;-0.001115683,0.2851266;0.2800771;-0.03177825,0.4904351;0.3931019;-0.1188062,-0.115051;0.3644017;-0.002640888,-0.281687;0.2702175;-0.06062176,-0.4871364;0.3477501;-0.1801176,0.07387405;0.004505794;-0.03036975,0.08597859;-0.2946184;-0.01092206,0.0742574;-0.589764;0.04153441,0.0864344;-0.6154966;-0.02262393,-0.06859306;0.003342968;-0.04103434,-0.09891319;-0.2940298;-0.01553634,-0.09859405;-0.5900912;0.03291465,-0.09887528;-0.6144754;-0.03392034,-0.003278083;0.3992221;0.02370975,0;0;0,-0.003274369;0.1994622;0.01428622,-0.008657703;0.4993177;0.01871182,0.1091235;0.3777514;-0.001545962,0.298899;0.3148428;-0.00681584,0.5317192;0.3970234;-0.04607263,-0.1193925;0.3649302;-0.003577914,-0.3006155;0.285723;-0.03331701,-0.5301198;0.3430503;-0.1141956,0.07401228;0.004932422;-0.0299642,0.08416691;-0.293788;-0.004215602,0.0713909;-0.5864257;0.06059141,0.08273983;-0.6163039;0.00150945,-0.06775565;0.002814382;-0.04244116,-0.103319;-0.2931923;-0.009044889,-0.1051307;-0.586488;0.05399734,-0.1087391;-0.612606;-0.01075621,-0.006907533;0.3993433;0.02014697,111.563
-0;0;0,-0.001711885;0.1994034;0.01534137,-0.004019425;0.4992193;0.0237879,0.1114853;0.3744619;-0.001115683,0.2851266;0.2800771;-0.03177825,0.4904351;0.3931019;-0.1188062,-0.115051;0.3644017;-0.002640888,-0.281687;0.2702175;-0.06062176,-0.4871364;0.3477501;-0.1801176,0.07387405;0.004505794;-0.03036975,0.08597859;-0.2946184;-0.01092206,0.0742574;-0.589764;0.04153441,0.0864344;-0.6154966;-0.02262393,-0.06859306;0.003342968;-0.04103434,-0.09891319;-0.2940298;-0.01553634,-0.09859405;-0.5900912;0.03291465,-0.09887528;-0.6144754;-0.03392034,-0.003278083;0.3992221;0.02370975,0;0;0,-0.003274369;0.1994622;0.01428622,-0.008657703;0.4993177;0.01871182,0.1091235;0.3777514;-0.001545962,0.298899;0.3148428;-0.00681584,0.5317192;0.3970234;-0.04607263,-0.1193925;0.3649302;-0.003577914,-0.3006155;0.285723;-0.03331701,-0.5301198;0.3430503;-0.1141956,0.07401228;0.004932422;-0.0299642,0.08416691;-0.293788;-0.004215602,0.0713909;-0.5864257;0.06059141,0.08273983;-0.6163039;0.00150945,-0.06775565;0.002814382;-0.04244116,-0.103319;-0.2931923;-0.009044889,-0.1051307;-0.586488;0.05399734,-0.1087391;-0.612606;-0.01075621,-0.006907533;0.3993433;0.02014697,111.5839
-0;0;0,-0.00166036;0.1994285;0.01501698,-0.003912849;0.4992617;0.02286706,0.1116176;0.3742909;-0.001429349,0.2859028;0.2805059;-0.03022263,0.492789;0.3933259;-0.1137077,-0.1150698;0.3644251;-0.002896849,-0.2823989;0.2708268;-0.05982076,-0.4907131;0.3480187;-0.1744794,0.07388354;0.004487339;-0.03034939,0.08596344;-0.294637;-0.01088916,0.07428099;-0.589819;0.04137126,0.08661589;-0.616125;-0.02207346,-0.0685663;0.003377602;-0.04107619,-0.0988976;-0.2939952;-0.01559239,-0.09856051;-0.5900052;0.03317194,-0.09795546;-0.6153994;-0.03251944,-0.003190415;0.3992644;0.02297252,0;0;0,-0.003293261;0.1994902;0.01388612,-0.008875582;0.4993481;0.01787905,0.1090591;0.3777614;-0.001734847,0.2993124;0.3161355;-0.004170626,0.533025;0.3976084;-0.03939226,-0.1196206;0.3649408;-0.00387032,-0.3013629;0.2856702;-0.03006003,-0.5345794;0.3399951;-0.1018854,0.07403627;0.004902809;-0.02990974,0.08424234;-0.2938363;-0.004399342,0.07146253;-0.5863061;0.06116083,0.08224472;-0.6168215;0.002842605,-0.06767288;0.002861356;-0.04256987,-0.1031784;-0.29319;-0.009510279,-0.1050811;-0.5864606;0.05364649,-0.1085996;-0.6128737;-0.0107636,-0.007059846;0.399377;0.01945821,111.595
-0;0;0,-0.00166036;0.1994285;0.01501698,-0.003912849;0.4992617;0.02286706,0.1116176;0.3742909;-0.001429349,0.2859028;0.2805059;-0.03022263,0.492789;0.3933259;-0.1137077,-0.1150698;0.3644251;-0.002896849,-0.2823989;0.2708268;-0.05982076,-0.4907131;0.3480187;-0.1744794,0.07388354;0.004487339;-0.03034939,0.08596344;-0.294637;-0.01088916,0.07428099;-0.589819;0.04137126,0.08661589;-0.616125;-0.02207346,-0.0685663;0.003377602;-0.04107619,-0.0988976;-0.2939952;-0.01559239,-0.09856051;-0.5900052;0.03317194,-0.09795546;-0.6153994;-0.03251944,-0.003190415;0.3992644;0.02297252,0;0;0,-0.003293261;0.1994902;0.01388612,-0.008875582;0.4993481;0.01787905,0.1090591;0.3777614;-0.001734847,0.2993124;0.3161355;-0.004170626,0.533025;0.3976084;-0.03939226,-0.1196206;0.3649408;-0.00387032,-0.3013629;0.2856702;-0.03006003,-0.5345794;0.3399951;-0.1018854,0.07403627;0.004902809;-0.02990974,0.08424234;-0.2938363;-0.004399342,0.07146253;-0.5863061;0.06116083,0.08224472;-0.6168215;0.002842605,-0.06767288;0.002861356;-0.04256987,-0.1031784;-0.29319;-0.009510279,-0.1050811;-0.5864606;0.05364649,-0.1085996;-0.6128737;-0.0107636,-0.007059846;0.399377;0.01945821,111.6065
-0;0;0,-0.001559773;0.1994413;0.01485659,-0.003607146;0.4992829;0.02244969,0.1118744;0.3743417;-0.001687603,0.2864922;0.2805171;-0.02825039,0.4943385;0.3945602;-0.1075856,-0.1149456;0.3646314;-0.003014533,-0.2826188;0.2692267;-0.05577487,-0.4915431;0.3479671;-0.1682497,0.07387584;0.004460927;-0.03037204,0.08589602;-0.2946652;-0.01090259,0.07425228;-0.5898539;0.04132817,0.08642949;-0.61625;-0.02203867,-0.06856436;0.003412571;-0.04107655,-0.09898414;-0.2939568;-0.01565846,-0.09885495;-0.5900205;0.03278019,-0.09815053;-0.6147507;-0.03366454,-0.002957443;0.3992852;0.02263243,0;0;0,-0.003293261;0.1994902;0.01388612,-0.008875582;0.4993481;0.01787905,0.1090591;0.3777614;-0.001734847,0.2993124;0.3161355;-0.004170626,0.533025;0.3976084;-0.03939226,-0.1196206;0.3649408;-0.00387032,-0.3013629;0.2856702;-0.03006003,-0.5345794;0.3399951;-0.1018854,0.07403627;0.004902809;-0.02990974,0.08424234;-0.2938363;-0.004399342,0.07146253;-0.5863061;0.06116083,0.08224472;-0.6168215;0.002842605,-0.06767288;0.002861356;-0.04256987,-0.1031784;-0.29319;-0.009510279,-0.1050811;-0.5864606;0.05364649,-0.1085996;-0.6128737;-0.0107636,-0.007059846;0.399377;0.01945821,111.6296
-0;0;0,-0.001559773;0.1994413;0.01485659,-0.003607146;0.4992829;0.02244969,0.1118744;0.3743417;-0.001687603,0.2864922;0.2805171;-0.02825039,0.4943385;0.3945602;-0.1075856,-0.1149456;0.3646314;-0.003014533,-0.2826188;0.2692267;-0.05577487,-0.4915431;0.3479671;-0.1682497,0.07387584;0.004460927;-0.03037204,0.08589602;-0.2946652;-0.01090259,0.07425228;-0.5898539;0.04132817,0.08642949;-0.61625;-0.02203867,-0.06856436;0.003412571;-0.04107655,-0.09898414;-0.2939568;-0.01565846,-0.09885495;-0.5900205;0.03278019,-0.09815053;-0.6147507;-0.03366454,-0.002957443;0.3992852;0.02263243,0;0;0,-0.003329152;0.1995147;0.01352115,-0.009083942;0.4993768;0.01688159,0.1090428;0.3779677;-0.001924267,0.2996776;0.3174835;-0.00166767,0.5348082;0.3979207;-0.028934,-0.1198889;0.3650204;-0.004166296,-0.3021016;0.2858499;-0.02720017,-0.5366649;0.3384298;-0.09586911,0.0740515;0.004892855;-0.02987365,0.08420931;-0.2938619;-0.004527656,0.07150626;-0.586381;0.06082727,0.08219228;-0.6166961;0.0022159,-0.06761832;0.002882494;-0.04265507,-0.1030908;-0.2931972;-0.009813756,-0.1050155;-0.5864598;0.05337948,-0.1084762;-0.6123753;-0.0116194,-0.007214602;0.3994104;0.01867719,111.6411
-0;0;0,-0.001511399;0.1994696;0.01447751,-0.003427009;0.4993234;0.02165037,0.1121162;0.3743374;-0.001790615,0.2871717;0.2807782;-0.02633196,0.495834;0.3960062;-0.1017147,-0.1148813;0.3646907;-0.003433153,-0.2818174;0.2632616;-0.04638065,-0.4887773;0.3441466;-0.160946,0.07390331;0.004433643;-0.0303091,0.08593475;-0.2947029;-0.01100575,0.07451226;-0.5898273;0.04163537,0.08641779;-0.6157864;-0.02230579,-0.06852817;0.003448091;-0.04113394,-0.09891038;-0.2939481;-0.01598578,-0.09879994;-0.5899333;0.0329298,-0.09780882;-0.6155583;-0.03249097,-0.002827193;0.3993256;0.02194968,0;0;0,-0.003329152;0.1995147;0.01352115,-0.009083942;0.4993768;0.01688159,0.1090428;0.3779677;-0.001924267,0.2996776;0.3174835;-0.00166767,0.5348082;0.3979207;-0.028934,-0.1198889;0.3650204;-0.004166296,-0.3021016;0.2858499;-0.02720017,-0.5366649;0.3384298;-0.09586911,0.0740515;0.004892855;-0.02987365,0.08420931;-0.2938619;-0.004527656,0.07150626;-0.586381;0.06082727,0.08219228;-0.6166961;0.0022159,-0.06761832;0.002882494;-0.04265507,-0.1030908;-0.2931972;-0.009813756,-0.1050155;-0.5864598;0.05337948,-0.1084762;-0.6123753;-0.0116194,-0.007214602;0.3994104;0.01867719,111.6622
-0;0;0,-0.001511399;0.1994696;0.01447751,-0.003427009;0.4993234;0.02165037,0.1121162;0.3743374;-0.001790615,0.2871717;0.2807782;-0.02633196,0.495834;0.3960062;-0.1017147,-0.1148813;0.3646907;-0.003433153,-0.2818174;0.2632616;-0.04638065,-0.4887773;0.3441466;-0.160946,0.07390331;0.004433643;-0.0303091,0.08593475;-0.2947029;-0.01100575,0.07451226;-0.5898273;0.04163537,0.08641779;-0.6157864;-0.02230579,-0.06852817;0.003448091;-0.04113394,-0.09891038;-0.2939481;-0.01598578,-0.09879994;-0.5899333;0.0329298,-0.09780882;-0.6155583;-0.03249097,-0.002827193;0.3993256;0.02194968,0;0;0,-0.003329152;0.1995147;0.01352115,-0.009083942;0.4993768;0.01688159,0.1090428;0.3779677;-0.001924267,0.2996776;0.3174835;-0.00166767,0.5348082;0.3979207;-0.028934,-0.1198889;0.3650204;-0.004166296,-0.3021016;0.2858499;-0.02720017,-0.5366649;0.3384298;-0.09586911,0.0740515;0.004892855;-0.02987365,0.08420931;-0.2938619;-0.004527656,0.07150626;-0.586381;0.06082727,0.08219228;-0.6166961;0.0022159,-0.06761832;0.002882494;-0.04265507,-0.1030908;-0.2931972;-0.009813756,-0.1050155;-0.5864598;0.05337948,-0.1084762;-0.6123753;-0.0116194,-0.007214602;0.3994104;0.01867719,111.6737
-0;0;0,-0.001429607;0.1995007;0.01405164,-0.003298931;0.4993666;0.0207467,0.1123046;0.3741828;-0.001983603,0.2880233;0.2813075;-0.02427975,0.497435;0.3963132;-0.09790339,-0.1148825;0.3646697;-0.003586749,-0.2819279;0.262706;-0.04480828,-0.4916452;0.3438152;-0.1540784,0.07387976;0.004397078;-0.03037182,0.08574884;-0.294725;-0.01074758,0.07449234;-0.589859;0.04187576,0.08603596;-0.6158887;-0.02204791,-0.06855443;0.003477108;-0.04108771,-0.09906739;-0.2938962;-0.01582791,-0.0987713;-0.5897912;0.03363014,-0.09673426;-0.6159189;-0.03118047,-0.002711885;0.3993692;0.02118625,0;0;0,-0.003378426;0.1995339;0.01322195,-0.009242517;0.4993989;0.01613137,0.1090183;0.378192;-0.00217242,0.2998827;0.3185546;0.001589656,0.535646;0.3978345;-0.02351833,-0.120105;0.3650091;-0.004257537,-0.3025992;0.2854905;-0.02356205,-0.5378692;0.33802;-0.08980923,0.07406125;0.004943814;-0.02984107,0.08421819;-0.2938422;-0.004866425,0.07153986;-0.586402;0.06031058,0.0817764;-0.6175044;0.002711922,-0.06757724;0.002851679;-0.04272219,-0.1031233;-0.2932439;-0.01010488,-0.1050335;-0.5865092;0.05307626,-0.1088712;-0.6122988;-0.01204836,-0.007338597;0.3994359;0.01807023,111.6954
-0;0;0,-0.001429607;0.1995007;0.01405164,-0.003298931;0.4993666;0.0207467,0.1123046;0.3741828;-0.001983603,0.2880233;0.2813075;-0.02427975,0.497435;0.3963132;-0.09790339,-0.1148825;0.3646697;-0.003586749,-0.2819279;0.262706;-0.04480828,-0.4916452;0.3438152;-0.1540784,0.07387976;0.004397078;-0.03037182,0.08574884;-0.294725;-0.01074758,0.07449234;-0.589859;0.04187576,0.08603596;-0.6158887;-0.02204791,-0.06855443;0.003477108;-0.04108771,-0.09906739;-0.2938962;-0.01582791,-0.0987713;-0.5897912;0.03363014,-0.09673426;-0.6159189;-0.03118047,-0.002711885;0.3993692;0.02118625,0;0;0,-0.003378426;0.1995339;0.01322195,-0.009242517;0.4993989;0.01613137,0.1090183;0.378192;-0.00217242,0.2998827;0.3185546;0.001589656,0.535646;0.3978345;-0.02351833,-0.120105;0.3650091;-0.004257537,-0.3025992;0.2854905;-0.02356205,-0.5378692;0.33802;-0.08980923,0.07406125;0.004943814;-0.02984107,0.08421819;-0.2938422;-0.004866425,0.07153986;-0.586402;0.06031058,0.0817764;-0.6175044;0.002711922,-0.06757724;0.002851679;-0.04272219,-0.1031233;-0.2932439;-0.01010488,-0.1050335;-0.5865092;0.05307626,-0.1088712;-0.6122988;-0.01204836,-0.007338597;0.3994359;0.01807023,111.7068
-0;0;0,-0.001492022;0.1995289;0.01363717,-0.003628473;0.499407;0.01967222,0.1121756;0.3742684;-0.002395369,0.2881451;0.2813211;-0.02228398,0.4994828;0.3957824;-0.09109492,-0.1151999;0.3645187;-0.003743574,-0.2822979;0.2617267;-0.04262873,-0.495823;0.3416167;-0.1452182,0.07390055;0.004432818;-0.03031599,0.0855052;-0.2946894;-0.01053692,0.07425342;-0.5898207;0.04210289,0.08583013;-0.6158573;-0.02180657,-0.06851131;0.003438864;-0.04116277,-0.09929468;-0.2938868;-0.01567087,-0.09919535;-0.5897894;0.03374227,-0.09673275;-0.6168126;-0.02998643,-0.002938068;0.3994116;0.02033484,0;0;0,-0.003378426;0.1995339;0.01322195,-0.009242517;0.4993989;0.01613137,0.1090183;0.378192;-0.00217242,0.2998827;0.3185546;0.001589656,0.535646;0.3978345;-0.02351833,-0.120105;0.3650091;-0.004257537,-0.3025992;0.2854905;-0.02356205,-0.5378692;0.33802;-0.08980923,0.07406125;0.004943814;-0.02984107,0.08421819;-0.2938422;-0.004866425,0.07153986;-0.586402;0.06031058,0.0817764;-0.6175044;0.002711922,-0.06757724;0.002851679;-0.04272219,-0.1031233;-0.2932439;-0.01010488,-0.1050335;-0.5865092;0.05307626,-0.1088712;-0.6122988;-0.01204836,-0.007338597;0.3994359;0.01807023,111.7291
-0;0;0,-0.001492022;0.1995289;0.01363717,-0.003628473;0.499407;0.01967222,0.1121756;0.3742684;-0.002395369,0.2881451;0.2813211;-0.02228398,0.4994828;0.3957824;-0.09109492,-0.1151999;0.3645187;-0.003743574,-0.2822979;0.2617267;-0.04262873,-0.495823;0.3416167;-0.1452182,0.07390055;0.004432818;-0.03031599,0.0855052;-0.2946894;-0.01053692,0.07425342;-0.5898207;0.04210289,0.08583013;-0.6158573;-0.02180657,-0.06851131;0.003438864;-0.04116277,-0.09929468;-0.2938868;-0.01567087,-0.09919535;-0.5897894;0.03374227,-0.09673275;-0.6168126;-0.02998643,-0.002938068;0.3994116;0.02033484,0;0;0,-0.003251058;0.1995654;0.01277041,-0.009015529;0.4994359;0.01533016,0.1092922;0.3782912;-0.002415739,0.3001312;0.3189101;0.004956222,0.5367238;0.3980135;-0.01137112,-0.1200046;0.3650613;-0.00453621,-0.302527;0.2847807;-0.02004702,-0.5429054;0.3329045;-0.0690607,0.07401831;0.004903981;-0.02995398,0.08443908;-0.2938845;-0.00511709,0.07177064;-0.5864778;0.0599115,0.08165199;-0.618826;0.004044551,-0.06766744;0.00288803;-0.04257671,-0.1027954;-0.2932877;-0.01023475,-0.104559;-0.5865439;0.05299272,-0.1085038;-0.611385;-0.01321327,-0.007152976;0.3994742;0.01737848,111.7513
-0;0;0,-0.001421731;0.1995409;0.01346972,-0.003474944;0.4994204;0.01948685,0.1122877;0.374171;-0.00252937,0.2885583;0.281311;-0.02001294,0.5014033;0.3957887;-0.08398058,-0.1151031;0.3644342;-0.003666725,-0.282649;0.2616466;-0.04058654,-0.4976867;0.3400696;-0.1411284,0.07386667;0.004510066;-0.03038706,0.08530506;-0.2946062;-0.01042124,0.0740274;-0.5897063;0.04238743,0.08549798;-0.6158407;-0.02142464,-0.06855814;0.003374749;-0.04109005,-0.09946861;-0.2939436;-0.01566726,-0.09949456;-0.5898098;0.03396333,-0.09791903;-0.6145799;-0.03242151,-0.002813757;0.3994247;0.02014012,0;0;0,-0.003251058;0.1995654;0.01277041,-0.009015529;0.4994359;0.01533016,0.1092922;0.3782912;-0.002415739,0.3001312;0.3189101;0.004956222,0.5367238;0.3980135;-0.01137112,-0.1200046;0.3650613;-0.00453621,-0.302527;0.2847807;-0.02004702,-0.5429054;0.3329045;-0.0690607,0.07401831;0.004903981;-0.02995398,0.08443908;-0.2938845;-0.00511709,0.07177064;-0.5864778;0.0599115,0.08165199;-0.618826;0.004044551,-0.06766744;0.00288803;-0.04257671,-0.1027954;-0.2932877;-0.01023475,-0.104559;-0.5865439;0.05299272,-0.1085038;-0.611385;-0.01321327,-0.007152976;0.3994742;0.01737848,111.7629
-0;0;0,-0.001421731;0.1995409;0.01346972,-0.003474944;0.4994204;0.01948685,0.1122877;0.374171;-0.00252937,0.2885583;0.281311;-0.02001294,0.5014033;0.3957887;-0.08398058,-0.1151031;0.3644342;-0.003666725,-0.282649;0.2616466;-0.04058654,-0.4976867;0.3400696;-0.1411284,0.07386667;0.004510066;-0.03038706,0.08530506;-0.2946062;-0.01042124,0.0740274;-0.5897063;0.04238743,0.08549798;-0.6158407;-0.02142464,-0.06855814;0.003374749;-0.04109005,-0.09946861;-0.2939436;-0.01566726,-0.09949456;-0.5898098;0.03396333,-0.09791903;-0.6145799;-0.03242151,-0.002813757;0.3994247;0.02014012,0;0;0,-0.003251058;0.1995654;0.01277041,-0.009015529;0.4994359;0.01533016,0.1092922;0.3782912;-0.002415739,0.3001312;0.3189101;0.004956222,0.5367238;0.3980135;-0.01137112,-0.1200046;0.3650613;-0.00453621,-0.302527;0.2847807;-0.02004702,-0.5429054;0.3329045;-0.0690607,0.07401831;0.004903981;-0.02995398,0.08443908;-0.2938845;-0.00511709,0.07177064;-0.5864778;0.0599115,0.08165199;-0.618826;0.004044551,-0.06766744;0.00288803;-0.04257671,-0.1027954;-0.2932877;-0.01023475,-0.104559;-0.5865439;0.05299272,-0.1085038;-0.611385;-0.01321327,-0.007152976;0.3994742;0.01737848,111.785
-0;0;0,-0.001354144;0.1995564;0.01324473,-0.003290788;0.4994405;0.01909619,0.1123609;0.3738544;-0.002843758,0.2889805;0.2811136;-0.01714948,0.5032784;0.3946074;-0.07794087,-0.1149995;0.3642672;-0.003557594,-0.2829598;0.2614425;-0.03843492,-0.5003951;0.3387437;-0.1345932,0.0737628;0.004529311;-0.03063549,0.08515742;-0.2945569;-0.0102003,0.07239766;-0.5896419;0.04235487,0.08563031;-0.6152923;-0.02169132,-0.06866292;0.003371365;-0.04091499,-0.09965695;-0.2939698;-0.01586254,-0.09975857;-0.5897527;0.03426203,-0.09779179;-0.6147755;-0.03182655,-0.002672712;0.3994448;0.01979226,0;0;0,-0.003246761;0.1995871;0.01242788,-0.009041081;0.4994602;0.0146554,0.1093189;0.3781895;-0.002567679,0.3003196;0.3198134;0.007964334,0.5378377;0.3968803;-0.004112733,-0.120072;0.3649747;-0.004691461,-0.3022096;0.2832212;-0.01661912,-0.5432452;0.3313628;-0.06227266,0.07403874;0.004904476;-0.02990335,0.08471331;-0.2938995;-0.005362684,0.07196884;-0.5864906;0.05966032,0.08210579;-0.6185457;0.003409058,-0.06760798;0.002899393;-0.04267031,-0.1025733;-0.2933014;-0.0103816,-0.1041709;-0.5866322;0.05250303,-0.1087533;-0.613056;-0.01182738,-0.0071741;0.3995007;0.01680307,111.8071
-0;0;0,-0.001354144;0.1995564;0.01324473,-0.003290788;0.4994405;0.01909619,0.1123609;0.3738544;-0.002843758,0.2889805;0.2811136;-0.01714948,0.5032784;0.3946074;-0.07794087,-0.1149995;0.3642672;-0.003557594,-0.2829598;0.2614425;-0.03843492,-0.5003951;0.3387437;-0.1345932,0.0737628;0.004529311;-0.03063549,0.08515742;-0.2945569;-0.0102003,0.07239766;-0.5896419;0.04235487,0.08563031;-0.6152923;-0.02169132,-0.06866292;0.003371365;-0.04091499,-0.09965695;-0.2939698;-0.01586254,-0.09975857;-0.5897527;0.03426203,-0.09779179;-0.6147755;-0.03182655,-0.002672712;0.3994448;0.01979226,0;0;0,-0.003246761;0.1995871;0.01242788,-0.009041081;0.4994602;0.0146554,0.1093189;0.3781895;-0.002567679,0.3003196;0.3198134;0.007964334,0.5378377;0.3968803;-0.004112733,-0.120072;0.3649747;-0.004691461,-0.3022096;0.2832212;-0.01661912,-0.5432452;0.3313628;-0.06227266,0.07403874;0.004904476;-0.02990335,0.08471331;-0.2938995;-0.005362684,0.07196884;-0.5864906;0.05966032,0.08210579;-0.6185457;0.003409058,-0.06760798;0.002899393;-0.04267031,-0.1025733;-0.2933014;-0.0103816,-0.1041709;-0.5866322;0.05250303,-0.1087533;-0.613056;-0.01182738,-0.0071741;0.3995007;0.01680307,111.8187
-0;0;0,-0.001392758;0.1995619;0.01315723,-0.003398441;0.4994447;0.01907188,0.112258;0.373776;-0.002890242,0.2864746;0.2764647;-0.01627243,0.5010782;0.3931504;-0.0694678,-0.1151138;0.364179;-0.003339868,-0.2830457;0.2602512;-0.03492892,-0.501409;0.3376897;-0.1288478,0.07375174;0.004539291;-0.03066064,0.08512041;-0.2945422;-0.01014168,0.07225624;-0.5895799;0.042653,0.08552675;-0.6152877;-0.02131756,-0.06865455;0.00336666;-0.04092943,-0.0998546;-0.2939215;-0.0155063,-0.09991142;-0.5897269;0.03448483,-0.09869567;-0.614293;-0.03213663,-0.00275923;0.399449;0.0197357,0;0;0,-0.003246761;0.1995871;0.01242788,-0.009041081;0.4994602;0.0146554,0.1093189;0.3781895;-0.002567679,0.3003196;0.3198134;0.007964334,0.5378377;0.3968803;-0.004112733,-0.120072;0.3649747;-0.004691461,-0.3022096;0.2832212;-0.01661912,-0.5432452;0.3313628;-0.06227266,0.07403874;0.004904476;-0.02990335,0.08471331;-0.2938995;-0.005362684,0.07196884;-0.5864906;0.05966032,0.08210579;-0.6185457;0.003409058,-0.06760798;0.002899393;-0.04267031,-0.1025733;-0.2933014;-0.0103816,-0.1041709;-0.5866322;0.05250303,-0.1087533;-0.613056;-0.01182738,-0.0071741;0.3995007;0.01680307,111.8297
-0;0;0,-0.001392758;0.1995619;0.01315723,-0.003398441;0.4994447;0.01907188,0.112258;0.373776;-0.002890242,0.2864746;0.2764647;-0.01627243,0.5010782;0.3931504;-0.0694678,-0.1151138;0.364179;-0.003339868,-0.2830457;0.2602512;-0.03492892,-0.501409;0.3376897;-0.1288478,0.07375174;0.004539291;-0.03066064,0.08512041;-0.2945422;-0.01014168,0.07225624;-0.5895799;0.042653,0.08552675;-0.6152877;-0.02131756,-0.06865455;0.00336666;-0.04092943,-0.0998546;-0.2939215;-0.0155063,-0.09991142;-0.5897269;0.03448483,-0.09869567;-0.614293;-0.03213663,-0.00275923;0.399449;0.0197357,0;0;0,-0.00330993;0.1996061;0.01210163,-0.009241777;0.49948;0.01379817,0.1090715;0.3783238;-0.00389603,0.3001872;0.3214558;0.01162228,0.5392679;0.3943778;0.006847408,-0.1203498;0.364988;-0.004717471,-0.302049;0.2817107;-0.0118112,-0.5432179;0.330249;-0.05632612,0.07401133;0.004885933;-0.02997414,0.08476318;-0.2939289;-0.005599763,0.07207385;-0.5865095;0.05948172,0.0824037;-0.6184716;0.00313006,-0.0676391;0.002921494;-0.04261945,-0.1024671;-0.2933227;-0.01058212,-0.1040319;-0.5866915;0.05212593,-0.1084143;-0.61231;-0.01316297,-0.007332305;0.3995252;0.01612048,111.8411
-0;0;0,-0.001672702;0.1995516;0.01327999,-0.003958574;0.4994271;0.01945577,0.1117614;0.3739091;-0.002832737,0.2851716;0.2749856;-0.01479252,0.5011289;0.3912269;-0.06327344,-0.1156202;0.3640713;-0.002783218,-0.2834143;0.2592173;-0.03195122,-0.5100706;0.3313488;-0.1089185,0.07363909;0.004659195;-0.03091237,0.08448003;-0.2943748;-0.009437911,0.07218589;-0.5894979;0.04301384,0.08452873;-0.6163769;-0.01973389,-0.06873234;0.0032698;-0.04080654,-0.1005568;-0.2939371;-0.01520826,-0.1007093;-0.5896758;0.03517655,-0.09914719;-0.614996;-0.03058384,-0.003241473;0.3994313;0.02003552,0;0;0,-0.00330993;0.1996061;0.01210163,-0.009241777;0.49948;0.01379817,0.1090715;0.3783238;-0.00389603,0.3001872;0.3214558;0.01162228,0.5392679;0.3943778;0.006847408,-0.1203498;0.364988;-0.004717471,-0.302049;0.2817107;-0.0118112,-0.5432179;0.330249;-0.05632612,0.07401133;0.004885933;-0.02997414,0.08476318;-0.2939289;-0.005599763,0.07207385;-0.5865095;0.05948172,0.0824037;-0.6184716;0.00313006,-0.0676391;0.002921494;-0.04261945,-0.1024671;-0.2933227;-0.01058212,-0.1040319;-0.5866915;0.05212593,-0.1084143;-0.61231;-0.01316297,-0.007332305;0.3995252;0.01612048,111.8632
-0;0;0,-0.001672702;0.1995516;0.01327999,-0.003958574;0.4994271;0.01945577,0.1117614;0.3739091;-0.002832737,0.2851716;0.2749856;-0.01479252,0.5011289;0.3912269;-0.06327344,-0.1156202;0.3640713;-0.002783218,-0.2834143;0.2592173;-0.03195122,-0.5100706;0.3313488;-0.1089185,0.07363909;0.004659195;-0.03091237,0.08448003;-0.2943748;-0.009437911,0.07218589;-0.5894979;0.04301384,0.08452873;-0.6163769;-0.01973389,-0.06873234;0.0032698;-0.04080654,-0.1005568;-0.2939371;-0.01520826,-0.1007093;-0.5896758;0.03517655,-0.09914719;-0.614996;-0.03058384,-0.003241473;0.3994313;0.02003552,0;0;0,-0.00330993;0.1996061;0.01210163,-0.009241777;0.49948;0.01379817,0.1090715;0.3783238;-0.00389603,0.3001872;0.3214558;0.01162228,0.5392679;0.3943778;0.006847408,-0.1203498;0.364988;-0.004717471,-0.302049;0.2817107;-0.0118112,-0.5432179;0.330249;-0.05632612,0.07401133;0.004885933;-0.02997414,0.08476318;-0.2939289;-0.005599763,0.07207385;-0.5865095;0.05948172,0.0824037;-0.6184716;0.00313006,-0.0676391;0.002921494;-0.04261945,-0.1024671;-0.2933227;-0.01058212,-0.1040319;-0.5866915;0.05212593,-0.1084143;-0.61231;-0.01316297,-0.007332305;0.3995252;0.01612048,111.8775
-0;0;0,-0.001608713;0.1995613;0.01314187,-0.003795988;0.4994386;0.01928996,0.1119084;0.3735837;-0.002532208,0.2876884;0.2784011;-0.008986399,0.505734;0.3898491;-0.05933951,-0.115488;0.3636998;-0.002363516,-0.2833616;0.2580844;-0.02812825,-0.5083462;0.3317158;-0.1085045,0.07342768;0.004562324;-0.03142547,0.08420103;-0.2943754;-0.008618318,0.07194187;-0.589468;0.0440134,0.0839873;-0.6173043;-0.01760162,-0.06897967;0.003341191;-0.0403812,-0.1007423;-0.2938207;-0.01419122,-0.1009021;-0.5895538;0.03622603,-0.09894942;-0.6154811;-0.02882196,-0.003112026;0.3994426;0.01986459,0;0;0,-0.003430851;0.1996309;0.01165015,-0.009635713;0.4995014;0.01300375,0.1088949;0.3785917;-0.004195888,0.2995632;0.3209595;0.01380758,0.5390515;0.3926902;0.01405445,-0.1206995;0.3650005;-0.005033709,-0.3020624;0.2807783;-0.008793582,-0.5453675;0.326469;-0.0436505,0.0739176;0.004849796;-0.03021038,0.0847357;-0.2939775;-0.006019136,0.0721188;-0.5866097;0.05884386,0.08259235;-0.6191568;0.00337968,-0.06781199;0.002943321;-0.0423423,-0.1023321;-0.2934249;-0.01112898,-0.1038608;-0.5868003;0.05154879,-0.1079071;-0.612596;-0.0135561,-0.007618521;0.3995513;0.01543398,111.8965
-0;0;0,-0.001608713;0.1995613;0.01314187,-0.003795988;0.4994386;0.01928996,0.1119084;0.3735837;-0.002532208,0.2876884;0.2784011;-0.008986399,0.505734;0.3898491;-0.05933951,-0.115488;0.3636998;-0.002363516,-0.2833616;0.2580844;-0.02812825,-0.5083462;0.3317158;-0.1085045,0.07342768;0.004562324;-0.03142547,0.08420103;-0.2943754;-0.008618318,0.07194187;-0.589468;0.0440134,0.0839873;-0.6173043;-0.01760162,-0.06897967;0.003341191;-0.0403812,-0.1007423;-0.2938207;-0.01419122,-0.1009021;-0.5895538;0.03622603,-0.09894942;-0.6154811;-0.02882196,-0.003112026;0.3994426;0.01986459,0;0;0,-0.003430851;0.1996309;0.01165015,-0.009635713;0.4995014;0.01300375,0.1088949;0.3785917;-0.004195888,0.2995632;0.3209595;0.01380758,0.5390515;0.3926902;0.01405445,-0.1206995;0.3650005;-0.005033709,-0.3020624;0.2807783;-0.008793582,-0.5453675;0.326469;-0.0436505,0.0739176;0.004849796;-0.03021038,0.0847357;-0.2939775;-0.006019136,0.0721188;-0.5866097;0.05884386,0.08259235;-0.6191568;0.00337968,-0.06781199;0.002943321;-0.0423423,-0.1023321;-0.2934249;-0.01112898,-0.1038608;-0.5868003;0.05154879,-0.1079071;-0.612596;-0.0135561,-0.007618521;0.3995513;0.01543398,111.9079
-0;0;0,-0.001629362;0.1995705;0.01299798,-0.003859673;0.4994504;0.01902071,0.1118352;0.3735023;-0.002784017,0.2887403;0.2802463;-0.005591812,0.5088673;0.3885331;-0.05373809,-0.1155747;0.3636273;-0.002268657,-0.2834408;0.2573154;-0.02504543,-0.509065;0.3291979;-0.1052115,0.07332303;0.004597115;-0.03166385,0.08421335;-0.2943276;-0.008741215,0.07200753;-0.5893662;0.04420414,0.08381258;-0.6174149;-0.01718838,-0.06910247;0.003326777;-0.04017189,-0.1007701;-0.2938509;-0.01404473,-0.1009466;-0.5895637;0.03649133,-0.09920938;-0.6158472;-0.02814472,-0.003160907;0.3994547;0.0196294,0;0;0,-0.003430851;0.1996309;0.01165015,-0.009635713;0.4995014;0.01300375,0.1088949;0.3785917;-0.004195888,0.2995632;0.3209595;0.01380758,0.5390515;0.3926902;0.01405445,-0.1206995;0.3650005;-0.005033709,-0.3020624;0.2807783;-0.008793582,-0.5453675;0.326469;-0.0436505,0.0739176;0.004849796;-0.03021038,0.0847357;-0.2939775;-0.006019136,0.0721188;-0.5866097;0.05884386,0.08259235;-0.6191568;0.00337968,-0.06781199;0.002943321;-0.0423423,-0.1023321;-0.2934249;-0.01112898,-0.1038608;-0.5868003;0.05154879,-0.1079071;-0.612596;-0.0135561,-0.007618521;0.3995513;0.01543398,111.9303
-0;0;0,-0.001629362;0.1995705;0.01299798,-0.003859673;0.4994504;0.01902071,0.1118352;0.3735023;-0.002784017,0.2887403;0.2802463;-0.005591812,0.5088673;0.3885331;-0.05373809,-0.1155747;0.3636273;-0.002268657,-0.2834408;0.2573154;-0.02504543,-0.509065;0.3291979;-0.1052115,0.07332303;0.004597115;-0.03166385,0.08421335;-0.2943276;-0.008741215,0.07200753;-0.5893662;0.04420414,0.08381258;-0.6174149;-0.01718838,-0.06910247;0.003326777;-0.04017189,-0.1007701;-0.2938509;-0.01404473,-0.1009466;-0.5895637;0.03649133,-0.09920938;-0.6158472;-0.02814472,-0.003160907;0.3994547;0.0196294,0;0;0,-0.003507843;0.1996514;0.01127008,-0.009913208;0.4995191;0.01214588,0.1087727;0.378647;-0.004417135,0.2991635;0.3207275;0.01549938,0.5390632;0.3908271;0.0213461,-0.1209064;0.3648522;-0.005426648,-0.3017641;0.2794696;-0.004889002,-0.5460907;0.3241914;-0.03325186,0.07383996;0.004840616;-0.03040115,0.08476812;-0.2940014;-0.006442146,0.07201675;-0.5866317;0.05840316,0.08258683;-0.6189987;0.002690028,-0.06790486;0.002948951;-0.04219282,-0.1023043;-0.2934873;-0.01149726,-0.1038476;-0.5869026;0.05099348,-0.107928;-0.6128148;-0.01397336,-0.007824453;0.3995746;0.01474349,111.9413
-0;0;0,-0.001629362;0.1995705;0.01299798,-0.003859673;0.4994504;0.01902071,0.1118352;0.3735023;-0.002784017,0.2887403;0.2802463;-0.005591812,0.5088673;0.3885331;-0.05373809,-0.1155747;0.3636273;-0.002268657,-0.2834408;0.2573154;-0.02504543,-0.509065;0.3291979;-0.1052115,0.07332303;0.004597115;-0.03166385,0.08421335;-0.2943276;-0.008741215,0.07200753;-0.5893662;0.04420414,0.08381258;-0.6174149;-0.01718838,-0.06910247;0.003326777;-0.04017189,-0.1007701;-0.2938509;-0.01404473,-0.1009466;-0.5895637;0.03649133,-0.09920938;-0.6158472;-0.02814472,-0.003160907;0.3994547;0.0196294,0;0;0,-0.003507843;0.1996514;0.01127008,-0.009913208;0.4995191;0.01214588,0.1087727;0.378647;-0.004417135,0.2991635;0.3207275;0.01549938,0.5390632;0.3908271;0.0213461,-0.1209064;0.3648522;-0.005426648,-0.3017641;0.2794696;-0.004889002,-0.5460907;0.3241914;-0.03325186,0.07383996;0.004840616;-0.03040115,0.08476812;-0.2940014;-0.006442146,0.07201675;-0.5866317;0.05840316,0.08258683;-0.6189987;0.002690028,-0.06790486;0.002948951;-0.04219282,-0.1023043;-0.2934873;-0.01149726,-0.1038476;-0.5869026;0.05099348,-0.107928;-0.6128148;-0.01397336,-0.007824453;0.3995746;0.01474349,111.9525
-0;0;0,-0.001646245;0.1995842;0.0127839,-0.003923572;0.4994694;0.0185208,0.1118423;0.3735254;-0.002916887,0.2897599;0.2821762;-0.002123273,0.5121529;0.3868938;-0.04768193,-0.1157436;0.36363;-0.002009718,-0.2837544;0.2569613;-0.02186321,-0.510721;0.3273019;-0.09956991,0.07331707;0.004623089;-0.03167389,0.0843187;-0.2943259;-0.009124998,0.07200191;-0.5892549;0.04440244,0.0833507;-0.6159495;-0.01875726,-0.0691068;0.00328946;-0.04016752,-0.1009287;-0.2938337;-0.01361223,-0.1011447;-0.5896038;0.03658744,-0.101041;-0.6167894;-0.02699225,-0.003207618;0.3994744;0.01922285,0;0;0,-0.003507843;0.1996514;0.01127008,-0.009913208;0.4995191;0.01214588,0.1087727;0.378647;-0.004417135,0.2991635;0.3207275;0.01549938,0.5390632;0.3908271;0.0213461,-0.1209064;0.3648522;-0.005426648,-0.3017641;0.2794696;-0.004889002,-0.5460907;0.3241914;-0.03325186,0.07383996;0.004840616;-0.03040115,0.08476812;-0.2940014;-0.006442146,0.07201675;-0.5866317;0.05840316,0.08258683;-0.6189987;0.002690028,-0.06790486;0.002948951;-0.04219282,-0.1023043;-0.2934873;-0.01149726,-0.1038476;-0.5869026;0.05099348,-0.107928;-0.6128148;-0.01397336,-0.007824453;0.3995746;0.01474349,111.964
-0;0;0,-0.001646245;0.1995842;0.0127839,-0.003923572;0.4994694;0.0185208,0.1118423;0.3735254;-0.002916887,0.2897599;0.2821762;-0.002123273,0.5121529;0.3868938;-0.04768193,-0.1157436;0.36363;-0.002009718,-0.2837544;0.2569613;-0.02186321,-0.510721;0.3273019;-0.09956991,0.07331707;0.004623089;-0.03167389,0.0843187;-0.2943259;-0.009124998,0.07200191;-0.5892549;0.04440244,0.0833507;-0.6159495;-0.01875726,-0.0691068;0.00328946;-0.04016752,-0.1009287;-0.2938337;-0.01361223,-0.1011447;-0.5896038;0.03658744,-0.101041;-0.6167894;-0.02699225,-0.003207618;0.3994744;0.01922285,0;0;0,-0.003701135;0.1996675;0.01091768,-0.01027293;0.4995335;0.01141201,0.1084957;0.37846;-0.004624223,0.298294;0.3198402;0.0186208,0.5385377;0.3882097;0.02904181,-0.1211593;0.3645891;-0.005882595,-0.3012967;0.2777566;-0.002621867,-0.5457335;0.3225729;-0.02986389,0.07380511;0.004755763;-0.03049899,0.08499736;-0.2940875;-0.00667768,0.07223542;-0.5867289;0.0581152,0.08268009;-0.619171;0.002489466,-0.06799978;0.003043942;-0.04203289,-0.1020497;-0.2934797;-0.01179432,-0.1035511;-0.5869268;0.05054746,-0.1079169;-0.6129319;-0.01429209,-0.008133181;0.3995929;0.01411329,111.9857
-0;0;0,-0.001596603;0.1995971;0.01258805,-0.003777071;0.4994879;0.01806812,0.1118099;0.3734282;-0.003890865,0.2900221;0.2827506;0.0003514444,0.5141709;0.3858137;-0.04008744,-0.114726;0.3635141;-0.006528363,-0.2835517;0.25687;-0.01770518,-0.5123148;0.3250673;-0.09197878,0.07331517;0.004708634;-0.03166566,0.08457243;-0.2942488;-0.009356115,0.07223893;-0.5890818;0.04469381,0.08405443;-0.6164768;-0.01751876,-0.06912936;0.003215503;-0.04013468,-0.1007035;-0.2939088;-0.01329786,-0.1004159;-0.5896128;0.03728915,-0.1004704;-0.6167826;-0.02630978,-0.003095888;0.3994933;0.01885282,0;0;0,-0.003701135;0.1996675;0.01091768,-0.01027293;0.4995335;0.01141201,0.1084957;0.37846;-0.004624223,0.298294;0.3198402;0.0186208,0.5385377;0.3882097;0.02904181,-0.1211593;0.3645891;-0.005882595,-0.3012967;0.2777566;-0.002621867,-0.5457335;0.3225729;-0.02986389,0.07380511;0.004755763;-0.03049899,0.08499736;-0.2940875;-0.00667768,0.07223542;-0.5867289;0.0581152,0.08268009;-0.619171;0.002489466,-0.06799978;0.003043942;-0.04203289,-0.1020497;-0.2934797;-0.01179432,-0.1035511;-0.5869268;0.05054746,-0.1079169;-0.6129319;-0.01429209,-0.008133181;0.3995929;0.01411329,111.9972
-0;0;0,-0.001596603;0.1995971;0.01258805,-0.003777071;0.4994879;0.01806812,0.1118099;0.3734282;-0.003890865,0.2900221;0.2827506;0.0003514444,0.5141709;0.3858137;-0.04008744,-0.114726;0.3635141;-0.006528363,-0.2835517;0.25687;-0.01770518,-0.5123148;0.3250673;-0.09197878,0.07331517;0.004708634;-0.03166566,0.08457243;-0.2942488;-0.009356115,0.07223893;-0.5890818;0.04469381,0.08405443;-0.6164768;-0.01751876,-0.06912936;0.003215503;-0.04013468,-0.1007035;-0.2939088;-0.01329786,-0.1004159;-0.5896128;0.03728915,-0.1004704;-0.6167826;-0.02630978,-0.003095888;0.3994933;0.01885282,0;0;0,-0.003701135;0.1996675;0.01091768,-0.01027293;0.4995335;0.01141201,0.1084957;0.37846;-0.004624223,0.298294;0.3198402;0.0186208,0.5385377;0.3882097;0.02904181,-0.1211593;0.3645891;-0.005882595,-0.3012967;0.2777566;-0.002621867,-0.5457335;0.3225729;-0.02986389,0.07380511;0.004755763;-0.03049899,0.08499736;-0.2940875;-0.00667768,0.07223542;-0.5867289;0.0581152,0.08268009;-0.619171;0.002489466,-0.06799978;0.003043942;-0.04203289,-0.1020497;-0.2934797;-0.01179432,-0.1035511;-0.5869268;0.05054746,-0.1079169;-0.6129319;-0.01429209,-0.008133181;0.3995929;0.01411329,112.0088
-0;0;0,-0.001582347;0.199601;0.01252743,-0.003733436;0.4994934;0.01794247,0.1118088;0.373459;-0.004198015,0.2901954;0.2833686;0.003670845,0.5164589;0.3838329;-0.03113953,-0.11473;0.3631587;-0.005949987,-0.283564;0.2563109;-0.01481736,-0.5130916;0.3239244;-0.0872433,0.07330909;0.004767055;-0.03167099,0.08444747;-0.2941694;-0.009022687,0.07221939;-0.5889885;0.04512681,0.08388096;-0.6163005;-0.01721793,-0.06913695;0.003159889;-0.04012602,-0.1007709;-0.2939382;-0.01307016,-0.1005756;-0.5896348;0.03756072,-0.1009953;-0.616915;-0.02590264,-0.003062981;0.3994989;0.01874556,0;0;0,-0.003867918;0.1996801;0.01062615,-0.01058539;0.4995439;0.0109479,0.1083057;0.3786165;-0.004786084,0.2977137;0.3199173;0.02127208,0.5387616;0.3848248;0.03479718,-0.121426;0.3645906;-0.006243245,-0.3011877;0.2771308;-0.0002001156,-0.5462888;0.3201529;-0.02416961,0.07376081;0.004725366;-0.03061066,0.08533012;-0.2941151;-0.006934628,0.0724793;-0.5867881;0.05769823,0.08288697;-0.6193721;0.002276663,-0.06806391;0.003062305;-0.04192762,-0.1017575;-0.2935573;-0.01223687,-0.103297;-0.5869969;0.05013974,-0.1075301;-0.6127459;-0.01500754,-0.008391513;0.3996055;0.0136858,112.0305
-0;0;0,-0.001582347;0.199601;0.01252743,-0.003733436;0.4994934;0.01794247,0.1118088;0.373459;-0.004198015,0.2901954;0.2833686;0.003670845,0.5164589;0.3838329;-0.03113953,-0.11473;0.3631587;-0.005949987,-0.283564;0.2563109;-0.01481736,-0.5130916;0.3239244;-0.0872433,0.07330909;0.004767055;-0.03167099,0.08444747;-0.2941694;-0.009022687,0.07221939;-0.5889885;0.04512681,0.08388096;-0.6163005;-0.01721793,-0.06913695;0.003159889;-0.04012602,-0.1007709;-0.2939382;-0.01307016,-0.1005756;-0.5896348;0.03756072,-0.1009953;-0.616915;-0.02590264,-0.003062981;0.3994989;0.01874556,0;0;0,-0.003867918;0.1996801;0.01062615,-0.01058539;0.4995439;0.0109479,0.1083057;0.3786165;-0.004786084,0.2977137;0.3199173;0.02127208,0.5387616;0.3848248;0.03479718,-0.121426;0.3645906;-0.006243245,-0.3011877;0.2771308;-0.0002001156,-0.5462888;0.3201529;-0.02416961,0.07376081;0.004725366;-0.03061066,0.08533012;-0.2941151;-0.006934628,0.0724793;-0.5867881;0.05769823,0.08288697;-0.6193721;0.002276663,-0.06806391;0.003062305;-0.04192762,-0.1017575;-0.2935573;-0.01223687,-0.103297;-0.5869969;0.05013974,-0.1075301;-0.6127459;-0.01500754,-0.008391513;0.3996055;0.0136858,112.0418
-0;0;0,-0.001544307;0.199621;0.01221044,-0.003630419;0.4995244;0.01695785,0.1119951;0.3734807;-0.004391773,0.2909177;0.2847325;0.006117673,0.5184591;0.3834351;-0.02523024,-0.1148009;0.3630123;-0.005725089,-0.2839088;0.2564134;-0.011985,-0.515466;0.3224164;-0.07925202,0.07331464;0.004740495;-0.03166215,0.08439999;-0.2942086;-0.009154921,0.07227267;-0.5889649;0.04535756,0.08298372;-0.6163775;-0.01703294,-0.06913419;0.003187027;-0.04012862,-0.1008021;-0.2939429;-0.01346467,-0.1008837;-0.5895795;0.03751617,-0.1008582;-0.6170303;-0.02574013,-0.002982539;0.3995319;0.01800215,0;0;0,-0.003867918;0.1996801;0.01062615,-0.01058539;0.4995439;0.0109479,0.1083057;0.3786165;-0.004786084,0.2977137;0.3199173;0.02127208,0.5387616;0.3848248;0.03479718,-0.121426;0.3645906;-0.006243245,-0.3011877;0.2771308;-0.0002001156,-0.5462888;0.3201529;-0.02416961,0.07376081;0.004725366;-0.03061066,0.08533012;-0.2941151;-0.006934628,0.0724793;-0.5867881;0.05769823,0.08288697;-0.6193721;0.002276663,-0.06806391;0.003062305;-0.04192762,-0.1017575;-0.2935573;-0.01223687,-0.103297;-0.5869969;0.05013974,-0.1075301;-0.6127459;-0.01500754,-0.008391513;0.3996055;0.0136858,112.0641
-0;0;0,-0.001544307;0.199621;0.01221044,-0.003630419;0.4995244;0.01695785,0.1119951;0.3734807;-0.004391773,0.2909177;0.2847325;0.006117673,0.5184591;0.3834351;-0.02523024,-0.1148009;0.3630123;-0.005725089,-0.2839088;0.2564134;-0.011985,-0.515466;0.3224164;-0.07925202,0.07331464;0.004740495;-0.03166215,0.08439999;-0.2942086;-0.009154921,0.07227267;-0.5889649;0.04535756,0.08298372;-0.6163775;-0.01703294,-0.06913419;0.003187027;-0.04012862,-0.1008021;-0.2939429;-0.01346467,-0.1008837;-0.5895795;0.03751617,-0.1008582;-0.6170303;-0.02574013,-0.002982539;0.3995319;0.01800215,0;0;0,-0.004017683;0.1996848;0.01048136,-0.0109545;0.4995442;0.01061204,0.1080836;0.378772;-0.004783364,0.2967533;0.3195097;0.02507846,0.538211;0.3826894;0.03944723,-0.121793;0.3646579;-0.006223567,-0.3004155;0.2751485;0.002836047,-0.54618;0.3171701;-0.0154395,0.07374913;0.004717879;-0.03063994,0.08529967;-0.2941242;-0.006975455,0.0725545;-0.5868142;0.05760122,0.08294477;-0.6194161;0.002203025,-0.06808947;0.00306982;-0.04188555,-0.1017205;-0.2935631;-0.01225671,-0.103238;-0.5869938;0.05016232,-0.1070125;-0.6159996;-0.01102462,-0.008685797;0.3996089;0.01340255,112.0864
-0;0;0,-0.001664445;0.1996274;0.01208824,-0.003958164;0.4995315;0.01670006,0.1117727;0.3734289;-0.00436504,0.2907965;0.2852332;0.008749603,0.5195358;0.382579;-0.01774846,-0.1151384;0.3628702;-0.00531533,-0.2843419;0.2562927;-0.008690186,-0.5171738;0.320501;-0.07323949,0.07330765;0.004796239;-0.03166991,0.0841068;-0.2941464;-0.008938946,0.07206804;-0.5888567;0.04584133,0.08270635;-0.6164193;-0.01637493,-0.06913729;0.003123721;-0.04012826,-0.1009696;-0.2939746;-0.01330824,-0.1011838;-0.5895769;0.03787014,-0.1006987;-0.5573803;-0.06053109,-0.003238236;0.39954;0.01778643,0;0;0,-0.004017683;0.1996848;0.01048136,-0.0109545;0.4995442;0.01061204,0.1080836;0.378772;-0.004783364,0.2967533;0.3195097;0.02507846,0.538211;0.3826894;0.03944723,-0.121793;0.3646579;-0.006223567,-0.3004155;0.2751485;0.002836047,-0.54618;0.3171701;-0.0154395,0.07374913;0.004717879;-0.03063994,0.08529967;-0.2941242;-0.006975455,0.0725545;-0.5868142;0.05760122,0.08294477;-0.6194161;0.002203025,-0.06808947;0.00306982;-0.04188555,-0.1017205;-0.2935631;-0.01225671,-0.103238;-0.5869938;0.05016232,-0.1070125;-0.6159996;-0.01102462,-0.008685797;0.3996089;0.01340255,112.0978
-0;0;0,-0.001664445;0.1996274;0.01208824,-0.003958164;0.4995315;0.01670006,0.1117727;0.3734289;-0.00436504,0.2907965;0.2852332;0.008749603,0.5195358;0.382579;-0.01774846,-0.1151384;0.3628702;-0.00531533,-0.2843419;0.2562927;-0.008690186,-0.5171738;0.320501;-0.07323949,0.07330765;0.004796239;-0.03166991,0.0841068;-0.2941464;-0.008938946,0.07206804;-0.5888567;0.04584133,0.08270635;-0.6164193;-0.01637493,-0.06913729;0.003123721;-0.04012826,-0.1009696;-0.2939746;-0.01330824,-0.1011838;-0.5895769;0.03787014,-0.1006987;-0.5573803;-0.06053109,-0.003238236;0.39954;0.01778643,0;0;0,-0.004017683;0.1996848;0.01048136,-0.0109545;0.4995442;0.01061204,0.1080836;0.378772;-0.004783364,0.2967533;0.3195097;0.02507846,0.538211;0.3826894;0.03944723,-0.121793;0.3646579;-0.006223567,-0.3004155;0.2751485;0.002836047,-0.54618;0.3171701;-0.0154395,0.07374913;0.004717879;-0.03063994,0.08529967;-0.2941242;-0.006975455,0.0725545;-0.5868142;0.05760122,0.08294477;-0.6194161;0.002203025,-0.06808947;0.00306982;-0.04188555,-0.1017205;-0.2935631;-0.01225671,-0.103238;-0.5869938;0.05016232,-0.1070125;-0.6159996;-0.01102462,-0.008685797;0.3996089;0.01340255,112.1198
-0;0;0,-0.001661588;0.1996418;0.01184823,-0.00393256;0.4995514;0.01610477,0.1118582;0.3733841;-0.004400318,0.290921;0.2857321;0.0115256,0.521255;0.3801475;-0.01153975,-0.1152787;0.3627647;-0.004811319,-0.2847433;0.2565498;-0.005231171,-0.5182962;0.3211338;-0.06672844,0.07324459;0.004808091;-0.03181373,0.08411349;-0.2941074;-0.008761982,0.07237157;-0.5888146;0.04610009,0.08267749;-0.6168397;-0.01559161,-0.06920884;0.00309591;-0.04000691,-0.1009298;-0.2939939;-0.01296215,-0.1012674;-0.5895771;0.03832598,-0.1009447;-0.5574006;-0.06007227,-0.00322204;0.3995612;0.01730914,0;0;0,-0.004110877;0.1996983;0.01018258,-0.01107274;0.4995576;0.009954769,0.1080288;0.3786711;-0.004801013,0.2962282;0.3186813;0.02653939,0.537795;0.3808001;0.04347204,-0.1216912;0.3646327;-0.00791462,-0.2998958;0.2746804;0.00440211,-0.5467556;0.3123648;-0.007436108,0.07373891;0.004629959;-0.03067793,0.08548267;-0.2942103;-0.007086426,0.07240146;-0.5869051;0.05740084,0.08338188;-0.6190555;0.001447778,-0.06816693;0.003157809;-0.04175282,-0.1014203;-0.2935328;-0.01227548,-0.1028796;-0.5869903;0.05001893,-0.1066861;-0.6159424;-0.0112353,-0.008801075;0.3996255;0.0128538,112.1423
-0;0;0,-0.001661588;0.1996418;0.01184823,-0.00393256;0.4995514;0.01610477,0.1118582;0.3733841;-0.004400318,0.290921;0.2857321;0.0115256,0.521255;0.3801475;-0.01153975,-0.1152787;0.3627647;-0.004811319,-0.2847433;0.2565498;-0.005231171,-0.5182962;0.3211338;-0.06672844,0.07324459;0.004808091;-0.03181373,0.08411349;-0.2941074;-0.008761982,0.07237157;-0.5888146;0.04610009,0.08267749;-0.6168397;-0.01559161,-0.06920884;0.00309591;-0.04000691,-0.1009298;-0.2939939;-0.01296215,-0.1012674;-0.5895771;0.03832598,-0.1009447;-0.5574006;-0.06007227,-0.00322204;0.3995612;0.01730914,0;0;0,-0.004110877;0.1996983;0.01018258,-0.01107274;0.4995576;0.009954769,0.1080288;0.3786711;-0.004801013,0.2962282;0.3186813;0.02653939,0.537795;0.3808001;0.04347204,-0.1216912;0.3646327;-0.00791462,-0.2998958;0.2746804;0.00440211,-0.5467556;0.3123648;-0.007436108,0.07373891;0.004629959;-0.03067793,0.08548267;-0.2942103;-0.007086426,0.07240146;-0.5869051;0.05740084,0.08338188;-0.6190555;0.001447778,-0.06816693;0.003157809;-0.04175282,-0.1014203;-0.2935328;-0.01227548,-0.1028796;-0.5869903;0.05001893,-0.1066861;-0.6159424;-0.0112353,-0.008801075;0.3996255;0.0128538,112.1535
-0;0;0,-0.001644855;0.1996487;0.01173407,-0.00387415;0.4995605;0.01585822,0.1119535;0.373613;-0.004591348,0.2911884;0.2868035;0.01381977,0.5223753;0.3797093;-0.006700888,-0.1153692;0.3628475;-0.004453449,-0.2846226;0.2563088;-0.002779654,-0.5193632;0.3204842;-0.06003658,0.07317135;0.004835126;-0.03197771,0.08417764;-0.294042;-0.008497134,0.07247929;-0.5887202;0.04652954,0.08298139;-0.6169924;-0.01481512,-0.06926977;0.00306755;-0.03990349,-0.1007901;-0.2940419;-0.0128396,-0.1012206;-0.5896208;0.03847265,-0.1010742;-0.5574471;-0.05992551,-0.003178974;0.3995707;0.01710476,0;0;0,-0.004110877;0.1996983;0.01018258,-0.01107274;0.4995576;0.009954769,0.1080288;0.3786711;-0.004801013,0.2962282;0.3186813;0.02653939,0.537795;0.3808001;0.04347204,-0.1216912;0.3646327;-0.00791462,-0.2998958;0.2746804;0.00440211,-0.5467556;0.3123648;-0.007436108,0.07373891;0.004629959;-0.03067793,0.08548267;-0.2942103;-0.007086426,0.07240146;-0.5869051;0.05740084,0.08338188;-0.6190555;0.001447778,-0.06816693;0.003157809;-0.04175282,-0.1014203;-0.2935328;-0.01227548,-0.1028796;-0.5869903;0.05001893,-0.1066861;-0.6159424;-0.0112353,-0.008801075;0.3996255;0.0128538,112.1647
-0;0;0,-0.001644855;0.1996487;0.01173407,-0.00387415;0.4995605;0.01585822,0.1119535;0.373613;-0.004591348,0.2911884;0.2868035;0.01381977,0.5223753;0.3797093;-0.006700888,-0.1153692;0.3628475;-0.004453449,-0.2846226;0.2563088;-0.002779654,-0.5193632;0.3204842;-0.06003658,0.07317135;0.004835126;-0.03197771,0.08417764;-0.294042;-0.008497134,0.07247929;-0.5887202;0.04652954,0.08298139;-0.6169924;-0.01481512,-0.06926977;0.00306755;-0.03990349,-0.1007901;-0.2940419;-0.0128396,-0.1012206;-0.5896208;0.03847265,-0.1010742;-0.5574471;-0.05992551,-0.003178974;0.3995707;0.01710476,0;0;0,-0.00428652;0.1997003;0.01007011,-0.01168218;0.4995501;0.009915462,0.1076495;0.3787442;-0.004619939,0.2951014;0.3177598;0.02918375,0.5371457;0.3772764;0.04848047,-0.1221368;0.3645814;-0.007848388,-0.2995155;0.2733303;0.00664406,-0.5466615;0.310229;-0.0009271628,0.0737673;0.004657483;-0.03060543,0.08540975;-0.2941877;-0.007024998,0.07237061;-0.5868639;0.05755569,0.08348842;-0.6184691;0.0008371584,-0.06813101;0.003131815;-0.04181335,-0.1013964;-0.2935624;-0.01238639,-0.1030096;-0.5870118;0.04994246,-0.1068129;-0.6159545;-0.01132397,-0.009233839;0.3996209;0.01277088,112.1874
-0;0;0,-0.001607586;0.1996496;0.01172346,-0.003777009;0.4995613;0.01590667,0.1120424;0.3736173;-0.004511405,0.2911224;0.2870438;0.01635429,0.5232185;0.3781672;-0.001754908,-0.1153587;0.362777;-0.003956836,-0.2846758;0.2564114;0.0002919864,-0.5201417;0.3200236;-0.05456533,0.07323037;0.004763512;-0.03185312,0.08435524;-0.2940929;-0.008165961,0.07261059;-0.5887144;0.04715355,0.08341958;-0.6170942;-0.01400019,-0.06923662;0.003127563;-0.03995633,-0.1006484;-0.2940499;-0.01352042,-0.1012315;-0.5894544;0.03878502,-0.1010999;-0.6173432;-0.02393119,-0.003101649;0.399571;0.01712788,0;0;0,-0.00428652;0.1997003;0.01007011,-0.01168218;0.4995501;0.009915462,0.1076495;0.3787442;-0.004619939,0.2951014;0.3177598;0.02918375,0.5371457;0.3772764;0.04848047,-0.1221368;0.3645814;-0.007848388,-0.2995155;0.2733303;0.00664406,-0.5466615;0.310229;-0.0009271628,0.0737673;0.004657483;-0.03060543,0.08540975;-0.2941877;-0.007024998,0.07237061;-0.5868639;0.05755569,0.08348842;-0.6184691;0.0008371584,-0.06813101;0.003131815;-0.04181335,-0.1013964;-0.2935624;-0.01238639,-0.1030096;-0.5870118;0.04994246,-0.1068129;-0.6159545;-0.01132397,-0.009233839;0.3996209;0.01277088,112.2094
-0;0;0,-0.001607586;0.1996496;0.01172346,-0.003777009;0.4995613;0.01590667,0.1120424;0.3736173;-0.004511405,0.2911224;0.2870438;0.01635429,0.5232185;0.3781672;-0.001754908,-0.1153587;0.362777;-0.003956836,-0.2846758;0.2564114;0.0002919864,-0.5201417;0.3200236;-0.05456533,0.07323037;0.004763512;-0.03185312,0.08435524;-0.2940929;-0.008165961,0.07261059;-0.5887144;0.04715355,0.08341958;-0.6170942;-0.01400019,-0.06923662;0.003127563;-0.03995633,-0.1006484;-0.2940499;-0.01352042,-0.1012315;-0.5894544;0.03878502,-0.1010999;-0.6173432;-0.02393119,-0.003101649;0.399571;0.01712788,0;0;0,-0.00428652;0.1997003;0.01007011,-0.01168218;0.4995501;0.009915462,0.1076495;0.3787442;-0.004619939,0.2951014;0.3177598;0.02918375,0.5371457;0.3772764;0.04848047,-0.1221368;0.3645814;-0.007848388,-0.2995155;0.2733303;0.00664406,-0.5466615;0.310229;-0.0009271628,0.0737673;0.004657483;-0.03060543,0.08540975;-0.2941877;-0.007024998,0.07237061;-0.5868639;0.05755569,0.08348842;-0.6184691;0.0008371584,-0.06813101;0.003131815;-0.04181335,-0.1013964;-0.2935624;-0.01238639,-0.1030096;-0.5870118;0.04994246,-0.1068129;-0.6159545;-0.01132397,-0.009233839;0.3996209;0.01277088,112.2206
-0;0;0,-0.001716289;0.1996696;0.0113627,-0.004099601;0.4995884;0.01477949,0.1118966;0.373844;-0.00505556,0.2909179;0.2879485;0.01888969,0.5242419;0.3761542;0.002166519,-0.1157428;0.3628498;-0.004132826,-0.2849114;0.2564077;0.003083287,-0.5208787;0.3193706;-0.05034961,0.0730166;0.004710184;-0.03234796,0.08438767;-0.2941468;-0.008785417,0.07262262;-0.5886486;0.04716389,0.08334941;-0.6166978;-0.01442546,-0.06933543;0.003161303;-0.03978196,-0.1007626;-0.2940393;-0.01362587,-0.1013205;-0.5894459;0.038668,-0.1004303;-0.6171359;-0.02428805,-0.003348;0.3996025;0.01627919,0;0;0,-0.004378639;0.1997042;0.009953344,-0.01203079;0.4995472;0.009612634,0.1074667;0.3788238;-0.00446534,0.2945428;0.3172646;0.03036273,0.5368241;0.3751764;0.05148149,-0.1222926;0.3646554;-0.008736677,-0.2993368;0.2731709;0.008173233,-0.5469182;0.3075327;0.003406552,0.07374126;0.004672604;-0.03066581,0.08536092;-0.2941744;-0.007098254,0.07238221;-0.5868796;0.05736321,0.08354993;-0.6186394;0.0008777194,-0.06815115;0.003110844;-0.04178208,-0.101478;-0.2935863;-0.01245371,-0.1029445;-0.587069;0.04972099,-0.1067219;-0.6165721;-0.01081818,-0.009488136;0.3996223;0.01253457,112.2428
-0;0;0,-0.001716289;0.1996696;0.0113627,-0.004099601;0.4995884;0.01477949,0.1118966;0.373844;-0.00505556,0.2909179;0.2879485;0.01888969,0.5242419;0.3761542;0.002166519,-0.1157428;0.3628498;-0.004132826,-0.2849114;0.2564077;0.003083287,-0.5208787;0.3193706;-0.05034961,0.0730166;0.004710184;-0.03234796,0.08438767;-0.2941468;-0.008785417,0.07262262;-0.5886486;0.04716389,0.08334941;-0.6166978;-0.01442546,-0.06933543;0.003161303;-0.03978196,-0.1007626;-0.2940393;-0.01362587,-0.1013205;-0.5894459;0.038668,-0.1004303;-0.6171359;-0.02428805,-0.003348;0.3996025;0.01627919,0;0;0,-0.004378639;0.1997042;0.009953344,-0.01203079;0.4995472;0.009612634,0.1074667;0.3788238;-0.00446534,0.2945428;0.3172646;0.03036273,0.5368241;0.3751764;0.05148149,-0.1222926;0.3646554;-0.008736677,-0.2993368;0.2731709;0.008173233,-0.5469182;0.3075327;0.003406552,0.07374126;0.004672604;-0.03066581,0.08536092;-0.2941744;-0.007098254,0.07238221;-0.5868796;0.05736321,0.08354993;-0.6186394;0.0008777194,-0.06815115;0.003110844;-0.04178208,-0.101478;-0.2935863;-0.01245371,-0.1029445;-0.587069;0.04972099,-0.1067219;-0.6165721;-0.01081818,-0.009488136;0.3996223;0.01253457,112.2541
-0;0;0,-0.001736605;0.1996826;0.01112816,-0.004116328;0.4996057;0.01414333,0.1119323;0.3737786;-0.005138481,0.2907689;0.2880673;0.02076656,0.5258284;0.3725327;0.01015478,-0.1158649;0.3629272;-0.004177701,-0.2849581;0.2565419;0.005293281,-0.5225469;0.3184097;-0.04186502,0.07302076;0.004665736;-0.032345,0.08450028;-0.294172;-0.00859094,0.07267764;-0.5886431;0.04750735,0.08380052;-0.616925;-0.01371533,-0.06935556;0.003200387;-0.03974371,-0.1006684;-0.2939989;-0.01343552,-0.100986;-0.5892664;0.0396395,-0.1000361;-0.6166502;-0.02369175,-0.003369639;0.3996218;0.01577996,0;0;0,-0.004378639;0.1997042;0.009953344,-0.01203079;0.4995472;0.009612634,0.1074667;0.3788238;-0.00446534,0.2945428;0.3172646;0.03036273,0.5368241;0.3751764;0.05148149,-0.1222926;0.3646554;-0.008736677,-0.2993368;0.2731709;0.008173233,-0.5469182;0.3075327;0.003406552,0.07374126;0.004672604;-0.03066581,0.08536092;-0.2941744;-0.007098254,0.07238221;-0.5868796;0.05736321,0.08354993;-0.6186394;0.0008777194,-0.06815115;0.003110844;-0.04178208,-0.101478;-0.2935863;-0.01245371,-0.1029445;-0.587069;0.04972099,-0.1067219;-0.6165721;-0.01081818,-0.009488136;0.3996223;0.01253457,112.2761
-0;0;0,-0.001736605;0.1996826;0.01112816,-0.004116328;0.4996057;0.01414333,0.1119323;0.3737786;-0.005138481,0.2907689;0.2880673;0.02076656,0.5258284;0.3725327;0.01015478,-0.1158649;0.3629272;-0.004177701,-0.2849581;0.2565419;0.005293281,-0.5225469;0.3184097;-0.04186502,0.07302076;0.004665736;-0.032345,0.08450028;-0.294172;-0.00859094,0.07267764;-0.5886431;0.04750735,0.08380052;-0.616925;-0.01371533,-0.06935556;0.003200387;-0.03974371,-0.1006684;-0.2939989;-0.01343552,-0.100986;-0.5892664;0.0396395,-0.1000361;-0.6166502;-0.02369175,-0.003369639;0.3996218;0.01577996,0;0;0,-0.004334418;0.1997163;0.009727341,-0.01189765;0.499562;0.009315384,0.1075957;0.3787773;-0.004538065,0.2941799;0.317023;0.03251258,0.5370956;0.3718961;0.05444169,-0.1223816;0.3648652;-0.008278493,-0.2988709;0.2727321;0.01077371,-0.5467993;0.3047138;0.007828673,0.07366838;0.004642997;-0.03084497,0.08531059;-0.294194;-0.007160772,0.07242984;-0.5869702;0.05699675,0.08433742;-0.6177173;-0.0007796697,-0.06831492;0.003132966;-0.04151212,-0.1014911;-0.2936245;-0.0126267,-0.1027682;-0.5871177;0.04950285,-0.1066895;-0.6164873;-0.01120209,-0.00937905;0.3996367;0.01224889,112.2881
-0;0;0,-0.001741959;0.1996989;0.01083087,-0.004101611;0.4996266;0.01334794,0.1119774;0.3736435;-0.005344377,0.2905252;0.2879386;0.0225003,0.5261622;0.371091;0.0146963,-0.1159299;0.3628103;-0.004138506,-0.2851498;0.256781;0.006926258,-0.5236369;0.3176364;-0.03689738,0.07293353;0.004684309;-0.03253855,0.08450316;-0.2941266;-0.008493247,0.07275005;-0.5885819;0.04770236,0.08367594;-0.6167628;-0.01368469,-0.06943665;0.003198528;-0.03960202,-0.1007987;-0.2940231;-0.01360731,-0.1012847;-0.5892808;0.03952139,-0.09979487;-0.6165137;-0.02398334,-0.003364445;0.3996456;0.01515341,0;0;0,-0.004334418;0.1997163;0.009727341,-0.01189765;0.499562;0.009315384,0.1075957;0.3787773;-0.004538065,0.2941799;0.317023;0.03251258,0.5370956;0.3718961;0.05444169,-0.1223816;0.3648652;-0.008278493,-0.2988709;0.2727321;0.01077371,-0.5467993;0.3047138;0.007828673,0.07366838;0.004642997;-0.03084497,0.08531059;-0.294194;-0.007160772,0.07242984;-0.5869702;0.05699675,0.08433742;-0.6177173;-0.0007796697,-0.06831492;0.003132966;-0.04151212,-0.1014911;-0.2936245;-0.0126267,-0.1027682;-0.5871177;0.04950285,-0.1066895;-0.6164873;-0.01120209,-0.00937905;0.3996367;0.01224889,112.3004
-0;0;0,-0.001741959;0.1996989;0.01083087,-0.004101611;0.4996266;0.01334794,0.1119774;0.3736435;-0.005344377,0.2905252;0.2879386;0.0225003,0.5261622;0.371091;0.0146963,-0.1159299;0.3628103;-0.004138506,-0.2851498;0.256781;0.006926258,-0.5236369;0.3176364;-0.03689738,0.07293353;0.004684309;-0.03253855,0.08450316;-0.2941266;-0.008493247,0.07275005;-0.5885819;0.04770236,0.08367594;-0.6167628;-0.01368469,-0.06943665;0.003198528;-0.03960202,-0.1007987;-0.2940231;-0.01360731,-0.1012847;-0.5892808;0.03952139,-0.09979487;-0.6165137;-0.02398334,-0.003364445;0.3996456;0.01515341,0;0;0,-0.004334418;0.1997163;0.009727341,-0.01189765;0.499562;0.009315384,0.1075957;0.3787773;-0.004538065,0.2941799;0.317023;0.03251258,0.5370956;0.3718961;0.05444169,-0.1223816;0.3648652;-0.008278493,-0.2988709;0.2727321;0.01077371,-0.5467993;0.3047138;0.007828673,0.07366838;0.004642997;-0.03084497,0.08531059;-0.294194;-0.007160772,0.07242984;-0.5869702;0.05699675,0.08433742;-0.6177173;-0.0007796697,-0.06831492;0.003132966;-0.04151212,-0.1014911;-0.2936245;-0.0126267,-0.1027682;-0.5871177;0.04950285,-0.1066895;-0.6164873;-0.01120209,-0.00937905;0.3996367;0.01224889,112.3207
-0;0;0,-0.001811657;0.1997102;0.01060903,-0.004343857;0.4996395;0.01268768,0.1118042;0.3736721;-0.005835757,0.2898062;0.2877368;0.02466673,0.5259001;0.3698318;0.02018442,-0.1161987;0.3628932;-0.004235728,-0.2854013;0.2571355;0.009394432,-0.5251517;0.315941;-0.03012394,0.07294261;0.004663397;-0.0325212,0.08449803;-0.2941409;-0.00838656,0.07272086;-0.588293;0.04936998,0.08390728;-0.6146226;-0.01425907,-0.06944329;0.003211736;-0.03958931,-0.1008092;-0.2940087;-0.01358578,-0.1011799;-0.5891964;0.03993157,-0.09861638;-0.6176282;-0.02205143,-0.003542552;0.3996619;0.01464973,0;0;0,-0.004352311;0.1997209;0.009624318,-0.01188054;0.4995677;0.009172174,0.1076063;0.3787697;-0.004612098,0.293948;0.3167859;0.03326651,0.5373033;0.3691067;0.05651969,-0.1223593;0.364768;-0.008341329,-0.2983792;0.2719699;0.0117962,-0.5465946;0.3017876;0.01168837,0.07362924;0.004619206;-0.03094183,0.08521769;-0.294219;-0.007247465,0.07237371;-0.5870221;0.0567947,0.08427878;-0.6178159;-0.0009169132,-0.0683973;0.003153139;-0.04137472,-0.1014849;-0.2936392;-0.01274783,-0.1027465;-0.587153;0.04928545,-0.1075244;-0.6162149;-0.01175866,-0.009375053;0.3996423;0.01211195,112.3432
-0;0;0,-0.001811657;0.1997102;0.01060903,-0.004343857;0.4996395;0.01268768,0.1118042;0.3736721;-0.005835757,0.2898062;0.2877368;0.02466673,0.5259001;0.3698318;0.02018442,-0.1161987;0.3628932;-0.004235728,-0.2854013;0.2571355;0.009394432,-0.5251517;0.315941;-0.03012394,0.07294261;0.004663397;-0.0325212,0.08449803;-0.2941409;-0.00838656,0.07272086;-0.588293;0.04936998,0.08390728;-0.6146226;-0.01425907,-0.06944329;0.003211736;-0.03958931,-0.1008092;-0.2940087;-0.01358578,-0.1011799;-0.5891964;0.03993157,-0.09861638;-0.6176282;-0.02205143,-0.003542552;0.3996619;0.01464973,0;0;0,-0.004352311;0.1997209;0.009624318,-0.01188054;0.4995677;0.009172174,0.1076063;0.3787697;-0.004612098,0.293948;0.3167859;0.03326651,0.5373033;0.3691067;0.05651969,-0.1223593;0.364768;-0.008341329,-0.2983792;0.2719699;0.0117962,-0.5465946;0.3017876;0.01168837,0.07362924;0.004619206;-0.03094183,0.08521769;-0.294219;-0.007247465,0.07237371;-0.5870221;0.0567947,0.08427878;-0.6178159;-0.0009169132,-0.0683973;0.003153139;-0.04137472,-0.1014849;-0.2936392;-0.01274783,-0.1027465;-0.587153;0.04928545,-0.1075244;-0.6162149;-0.01175866,-0.009375053;0.3996423;0.01211195,112.3545
-0;0;0,-0.001820532;0.199713;0.01055478,-0.004364745;0.4996425;0.01261284,0.1118029;0.3737518;-0.005915755,0.2889439;0.2870364;0.02727374,0.5258784;0.3667741;0.02528588,-0.1162375;0.3629889;-0.004360462,-0.285053;0.2568378;0.01091231,-0.5257085;0.3147483;-0.02417804,0.07290021;0.004676981;-0.03261419,0.08439387;-0.2941134;-0.008278105,0.07262896;-0.5882602;0.04950783,0.08364469;-0.6145208;-0.01423357,-0.06949247;0.003186707;-0.03950496,-0.1009569;-0.2940291;-0.01356769,-0.1016357;-0.5892636;0.03968823,-0.1019633;-0.5572079;-0.05868805,-0.003559839;0.399665;0.01457657,0;0;0,-0.004352311;0.1997209;0.009624318,-0.01188054;0.4995677;0.009172174,0.1076063;0.3787697;-0.004612098,0.293948;0.3167859;0.03326651,0.5373033;0.3691067;0.05651969,-0.1223593;0.364768;-0.008341329,-0.2983792;0.2719699;0.0117962,-0.5465946;0.3017876;0.01168837,0.07362924;0.004619206;-0.03094183,0.08521769;-0.294219;-0.007247465,0.07237371;-0.5870221;0.0567947,0.08427878;-0.6178159;-0.0009169132,-0.0683973;0.003153139;-0.04137472,-0.1014849;-0.2936392;-0.01274783,-0.1027465;-0.587153;0.04928545,-0.1075244;-0.6162149;-0.01175866,-0.009375053;0.3996423;0.01211195,112.3771
-0;0;0,-0.001822249;0.1997196;0.01042841,-0.004363899;0.4996504;0.01226755,0.1118596;0.3737761;-0.005877802,0.2882187;0.286305;0.02942508,0.5278299;0.3575337;0.03302223,-0.1163085;0.3630671;-0.004342567,-0.2849918;0.2570199;0.0129764,-0.5269096;0.3122917;-0.01736812,0.07295012;0.004616015;-0.0325111,0.08441463;-0.2941736;-0.008152839,0.07280751;-0.5883362;0.0495847,0.08359772;-0.6151129;-0.01357314,-0.06944343;0.003247907;-0.03958614,-0.1009485;-0.2939573;-0.01357625,-0.1015774;-0.5891776;0.03975827,-0.09922339;-0.6170557;-0.02292712,-0.003560631;0.3996745;0.01430712,0;0;0,-0.004362481;0.1997375;0.009269328,-0.0118539;0.4995854;0.008611819,0.1077128;0.379075;-0.004870215,0.2935643;0.3163305;0.03414728,0.537403;0.3657073;0.05873641,-0.1225189;0.3648782;-0.007988542,-0.2979489;0.2713079;0.0136655,-0.5464023;0.2990398;0.01502443,0.07354392;0.004670778;-0.0311364,0.08530004;-0.2941924;-0.00784296,0.07255191;-0.5869953;0.05621935,0.08408123;-0.6187236;-0.0002390891,-0.06852022;0.003066162;-0.0411774,-0.1013055;-0.2938282;-0.01326909,-0.1025546;-0.587376;0.04860275,-0.1072334;-0.6161375;-0.01283611,-0.009354414;0.3996615;0.0116057,112.3993
-0;0;0,-0.001822249;0.1997196;0.01042841,-0.004363899;0.4996504;0.01226755,0.1118596;0.3737761;-0.005877802,0.2882187;0.286305;0.02942508,0.5278299;0.3575337;0.03302223,-0.1163085;0.3630671;-0.004342567,-0.2849918;0.2570199;0.0129764,-0.5269096;0.3122917;-0.01736812,0.07295012;0.004616015;-0.0325111,0.08441463;-0.2941736;-0.008152839,0.07280751;-0.5883362;0.0495847,0.08359772;-0.6151129;-0.01357314,-0.06944343;0.003247907;-0.03958614,-0.1009485;-0.2939573;-0.01357625,-0.1015774;-0.5891776;0.03975827,-0.09922339;-0.6170557;-0.02292712,-0.003560631;0.3996745;0.01430712,0;0;0,-0.004362481;0.1997375;0.009269328,-0.0118539;0.4995854;0.008611819,0.1077128;0.379075;-0.004870215,0.2935643;0.3163305;0.03414728,0.537403;0.3657073;0.05873641,-0.1225189;0.3648782;-0.007988542,-0.2979489;0.2713079;0.0136655,-0.5464023;0.2990398;0.01502443,0.07354392;0.004670778;-0.0311364,0.08530004;-0.2941924;-0.00784296,0.07255191;-0.5869953;0.05621935,0.08408123;-0.6187236;-0.0002390891,-0.06852022;0.003066162;-0.0411774,-0.1013055;-0.2938282;-0.01326909,-0.1025546;-0.587376;0.04860275,-0.1072334;-0.6161375;-0.01283611,-0.009354414;0.3996615;0.0116057,112.4119
-0;0;0,-0.001797252;0.1997256;0.01031858,-0.004260699;0.499658;0.01199283,0.1119537;0.3736986;-0.005866738,0.2869684;0.2845003;0.03172977,0.525998;0.3576554;0.03536069,-0.1163631;0.363381;-0.00438715,-0.2841737;0.2564074;0.01551883,-0.5269191;0.3100378;-0.01090979,0.07299362;0.004566079;-0.0324204,0.0844146;-0.2942296;-0.00811567,0.07286902;-0.5883843;0.04967472,0.0836648;-0.6152018;-0.0134325,-0.06940155;0.003311675;-0.03965421,-0.1007998;-0.2938941;-0.01352126,-0.1014265;-0.5891112;0.03983084,-0.09893586;-0.6169431;-0.02290668,-0.003487594;0.3996829;0.01408651,0;0;0,-0.004362481;0.1997375;0.009269328,-0.0118539;0.4995854;0.008611819,0.1077128;0.379075;-0.004870215,0.2935643;0.3163305;0.03414728,0.537403;0.3657073;0.05873641,-0.1225189;0.3648782;-0.007988542,-0.2979489;0.2713079;0.0136655,-0.5464023;0.2990398;0.01502443,0.07354392;0.004670778;-0.0311364,0.08530004;-0.2941924;-0.00784296,0.07255191;-0.5869953;0.05621935,0.08408123;-0.6187236;-0.0002390891,-0.06852022;0.003066162;-0.0411774,-0.1013055;-0.2938282;-0.01326909,-0.1025546;-0.587376;0.04860275,-0.1072334;-0.6161375;-0.01283611,-0.009354414;0.3996615;0.0116057,112.4325
-0;0;0,-0.001797252;0.1997256;0.01031858,-0.004260699;0.499658;0.01199283,0.1119537;0.3736986;-0.005866738,0.2869684;0.2845003;0.03172977,0.525998;0.3576554;0.03536069,-0.1163631;0.363381;-0.00438715,-0.2841737;0.2564074;0.01551883,-0.5269191;0.3100378;-0.01090979,0.07299362;0.004566079;-0.0324204,0.0844146;-0.2942296;-0.00811567,0.07286902;-0.5883843;0.04967472,0.0836648;-0.6152018;-0.0134325,-0.06940155;0.003311675;-0.03965421,-0.1007998;-0.2938941;-0.01352126,-0.1014265;-0.5891112;0.03983084,-0.09893586;-0.6169431;-0.02290668,-0.003487594;0.3996829;0.01408651,0;0;0,-0.004288328;0.1997583;0.008845081,-0.01174079;0.4996064;0.007999325,0.1078569;0.3791203;-0.005240722,0.2932982;0.3156149;0.03449047,0.5375216;0.3622387;0.06058973,-0.1224749;0.364768;-0.007863909,-0.2968619;0.2698094;0.01605359,-0.5453459;0.2971921;0.01847962,0.07354254;0.004697418;-0.03113565,0.08535803;-0.294196;-0.0082641,0.07258533;-0.5869689;0.05593032,0.08420236;-0.6185658;-0.0006999895,-0.06848776;0.003043727;-0.04123301,-0.1011558;-0.2938553;-0.01323741,-0.1023382;-0.5875248;0.04805555,-0.1069396;-0.6167887;-0.01273967,-0.009238213;0.3996847;0.01106418,112.4442
-0;0;0,-0.001856259;0.1997297;0.01022769,-0.004407735;0.499662;0.0118324,0.1119057;0.3737756;-0.005695639,0.2860453;0.2835766;0.03354161,0.5252476;0.3560562;0.03892371,-0.1165001;0.3633404;-0.004324473,-0.2838067;0.2561142;0.01828214,-0.5273148;0.3072723;-0.005938571,0.07305037;0.004565834;-0.03229236,0.08445515;-0.2942189;-0.007846326,0.07284478;-0.5883921;0.04983691,0.08371692;-0.6153759;-0.01305413,-0.06937224;0.003308001;-0.03970578,-0.1007689;-0.2938996;-0.01359276,-0.1012571;-0.5891112;0.03979138,-0.1015153;-0.5570787;-0.05858088,-0.00360565;0.3996875;0.01394358,0;0;0,-0.004288328;0.1997583;0.008845081,-0.01174079;0.4996064;0.007999325,0.1078569;0.3791203;-0.005240722,0.2932982;0.3156149;0.03449047,0.5375216;0.3622387;0.06058973,-0.1224749;0.364768;-0.007863909,-0.2968619;0.2698094;0.01605359,-0.5453459;0.2971921;0.01847962,0.07354254;0.004697418;-0.03113565,0.08535803;-0.294196;-0.0082641,0.07258533;-0.5869689;0.05593032,0.08420236;-0.6185658;-0.0006999895,-0.06848776;0.003043727;-0.04123301,-0.1011558;-0.2938553;-0.01323741,-0.1023382;-0.5875248;0.04805555,-0.1069396;-0.6167887;-0.01273967,-0.009238213;0.3996847;0.01106418,112.466
-0;0;0,-0.001856259;0.1997297;0.01022769,-0.004407735;0.499662;0.0118324,0.1119057;0.3737756;-0.005695639,0.2860453;0.2835766;0.03354161,0.5252476;0.3560562;0.03892371,-0.1165001;0.3633404;-0.004324473,-0.2838067;0.2561142;0.01828214,-0.5273148;0.3072723;-0.005938571,0.07305037;0.004565834;-0.03229236,0.08445515;-0.2942189;-0.007846326,0.07284478;-0.5883921;0.04983691,0.08371692;-0.6153759;-0.01305413,-0.06937224;0.003308001;-0.03970578,-0.1007689;-0.2938996;-0.01359276,-0.1012571;-0.5891112;0.03979138,-0.1015153;-0.5570787;-0.05858088,-0.00360565;0.3996875;0.01394358,0;0;0,-0.004288328;0.1997583;0.008845081,-0.01174079;0.4996064;0.007999325,0.1078569;0.3791203;-0.005240722,0.2932982;0.3156149;0.03449047,0.5375216;0.3622387;0.06058973,-0.1224749;0.364768;-0.007863909,-0.2968619;0.2698094;0.01605359,-0.5453459;0.2971921;0.01847962,0.07354254;0.004697418;-0.03113565,0.08535803;-0.294196;-0.0082641,0.07258533;-0.5869689;0.05593032,0.08420236;-0.6185658;-0.0006999895,-0.06848776;0.003043727;-0.04123301,-0.1011558;-0.2938553;-0.01323741,-0.1023382;-0.5875248;0.04805555,-0.1069396;-0.6167887;-0.01273967,-0.009238213;0.3996847;0.01106418,112.4775
-0;0;0,-0.001856259;0.1997297;0.01022769,-0.004407735;0.499662;0.0118324,0.1119057;0.3737756;-0.005695639,0.2860453;0.2835766;0.03354161,0.5252476;0.3560562;0.03892371,-0.1165001;0.3633404;-0.004324473,-0.2838067;0.2561142;0.01828214,-0.5273148;0.3072723;-0.005938571,0.07305037;0.004565834;-0.03229236,0.08445515;-0.2942189;-0.007846326,0.07284478;-0.5883921;0.04983691,0.08371692;-0.6153759;-0.01305413,-0.06937224;0.003308001;-0.03970578,-0.1007689;-0.2938996;-0.01359276,-0.1012571;-0.5891112;0.03979138,-0.1015153;-0.5570787;-0.05858088,-0.00360565;0.3996875;0.01394358,0;0;0,-0.004357427;0.1997574;0.008830832,-0.0117323;0.4996081;0.007989183,0.1078454;0.3792402;-0.005341664,0.2927964;0.3150868;0.03561535,0.5375774;0.3587557;0.061602,-0.1225092;0.3648727;-0.008006873,-0.2962679;0.2690546;0.01702918,-0.5449421;0.2944033;0.02133907,0.07360819;0.004690695;-0.03098114,0.08533774;-0.2941987;-0.008012401,0.07289854;-0.5870748;0.0557752,0.08430517;-0.6189318;-0.0005215928,-0.06841365;0.003050671;-0.04135536,-0.1007978;-0.2938548;-0.01309885,-0.1018241;-0.5876209;0.0477321,-0.1061777;-0.6158104;-0.0144567,-0.009260049;0.3996851;0.01103847,112.4889
-0;0;0,-0.001816523;0.1997372;0.0100867,-0.004283631;0.4996713;0.01152382,0.112032;0.3736372;-0.005559621,0.2848768;0.2818929;0.03576458,0.5251727;0.3503901;0.04388988,-0.1164179;0.3632339;-0.004275283,-0.2832742;0.2556498;0.01990353,-0.5279341;0.3032794;0.000590492,0.07314076;0.004595569;-0.03208285,0.08453094;-0.2941992;-0.007752625,0.07259447;-0.5883636;0.04990883,0.0843919;-0.6153122;-0.01285851,-0.06924976;0.003255909;-0.03992328,-0.1006744;-0.2939302;-0.01359953,-0.1013278;-0.5890898;0.04006949,-0.1015444;-0.5570685;-0.05830082,-0.003511961;0.3996977;0.01368714,0;0;0,-0.004357427;0.1997574;0.008830832,-0.0117323;0.4996081;0.007989183,0.1078454;0.3792402;-0.005341664,0.2927964;0.3150868;0.03561535,0.5375774;0.3587557;0.061602,-0.1225092;0.3648727;-0.008006873,-0.2962679;0.2690546;0.01702918,-0.5449421;0.2944033;0.02133907,0.07360819;0.004690695;-0.03098114,0.08533774;-0.2941987;-0.008012401,0.07289854;-0.5870748;0.0557752,0.08430517;-0.6189318;-0.0005215928,-0.06841365;0.003050671;-0.04135536,-0.1007978;-0.2938548;-0.01309885,-0.1018241;-0.5876209;0.0477321,-0.1061777;-0.6158104;-0.0144567,-0.009260049;0.3996851;0.01103847,112.4998
-0;0;0,-0.001816523;0.1997372;0.0100867,-0.004283631;0.4996713;0.01152382,0.112032;0.3736372;-0.005559621,0.2848768;0.2818929;0.03576458,0.5251727;0.3503901;0.04388988,-0.1164179;0.3632339;-0.004275283,-0.2832742;0.2556498;0.01990353,-0.5279341;0.3032794;0.000590492,0.07314076;0.004595569;-0.03208285,0.08453094;-0.2941992;-0.007752625,0.07259447;-0.5883636;0.04990883,0.0843919;-0.6153122;-0.01285851,-0.06924976;0.003255909;-0.03992328,-0.1006744;-0.2939302;-0.01359953,-0.1013278;-0.5890898;0.04006949,-0.1015444;-0.5570685;-0.05830082,-0.003511961;0.3996977;0.01368714,0;0;0,-0.004357427;0.1997574;0.008830832,-0.0117323;0.4996081;0.007989183,0.1078454;0.3792402;-0.005341664,0.2927964;0.3150868;0.03561535,0.5375774;0.3587557;0.061602,-0.1225092;0.3648727;-0.008006873,-0.2962679;0.2690546;0.01702918,-0.5449421;0.2944033;0.02133907,0.07360819;0.004690695;-0.03098114,0.08533774;-0.2941987;-0.008012401,0.07289854;-0.5870748;0.0557752,0.08430517;-0.6189318;-0.0005215928,-0.06841365;0.003050671;-0.04135536,-0.1007978;-0.2938548;-0.01309885,-0.1018241;-0.5876209;0.0477321,-0.1061777;-0.6158104;-0.0144567,-0.009260049;0.3996851;0.01103847,112.5112
-0;0;0,-0.001796577;0.1997389;0.01005706,-0.004224645;0.4996734;0.01149604,0.1120726;0.3733841;-0.005272548,0.2837951;0.2805075;0.03814796,0.5247483;0.3465565;0.04704008,-0.1163342;0.3631018;-0.00427336,-0.2825478;0.2548948;0.02150018,-0.5281596;0.2989017;0.006064543,0.07320881;0.004554592;-0.03193314,0.08474168;-0.2942422;-0.007695494,0.07282641;-0.5883895;0.05005731,0.08471747;-0.6155843;-0.01238922,-0.06918198;0.003315077;-0.04003578,-0.1004503;-0.2938727;-0.01354572,-0.101187;-0.5890167;0.04020829,-0.09810564;-0.6172859;-0.02195624,-0.003466274;0.3996996;0.01365519,0;0;0,-0.004490219;0.1997572;0.008770172,-0.01202989;0.4996038;0.007876045,0.1076391;0.3793981;-0.005372907,0.2919534;0.3138322;0.03621257,0.5370768;0.3550218;0.06300645,-0.1227474;0.3648584;-0.00812156,-0.2958908;0.2682648;0.01816553,-0.5446815;0.292356;0.02294177,0.07360486;0.004678626;-0.03099088,0.08523261;-0.2942066;-0.00791724,0.07287182;-0.5871011;0.05580129,0.08413377;-0.61863;-0.0009983927,-0.06841025;0.003063832;-0.04136002,-0.1007293;-0.2938689;-0.01331664,-0.1017737;-0.587647;0.04745664,-0.1054781;-0.616253;-0.01424727,-0.009504093;0.3996826;0.01093694,112.5334
-0;0;0,-0.001796577;0.1997389;0.01005706,-0.004224645;0.4996734;0.01149604,0.1120726;0.3733841;-0.005272548,0.2837951;0.2805075;0.03814796,0.5247483;0.3465565;0.04704008,-0.1163342;0.3631018;-0.00427336,-0.2825478;0.2548948;0.02150018,-0.5281596;0.2989017;0.006064543,0.07320881;0.004554592;-0.03193314,0.08474168;-0.2942422;-0.007695494,0.07282641;-0.5883895;0.05005731,0.08471747;-0.6155843;-0.01238922,-0.06918198;0.003315077;-0.04003578,-0.1004503;-0.2938727;-0.01354572,-0.101187;-0.5890167;0.04020829,-0.09810564;-0.6172859;-0.02195624,-0.003466274;0.3996996;0.01365519,0;0;0,-0.004490219;0.1997572;0.008770172,-0.01202989;0.4996038;0.007876045,0.1076391;0.3793981;-0.005372907,0.2919534;0.3138322;0.03621257,0.5370768;0.3550218;0.06300645,-0.1227474;0.3648584;-0.00812156,-0.2958908;0.2682648;0.01816553,-0.5446815;0.292356;0.02294177,0.07360486;0.004678626;-0.03099088,0.08523261;-0.2942066;-0.00791724,0.07287182;-0.5871011;0.05580129,0.08413377;-0.61863;-0.0009983927,-0.06841025;0.003063832;-0.04136002,-0.1007293;-0.2938689;-0.01331664,-0.1017737;-0.587647;0.04745664,-0.1054781;-0.616253;-0.01424727,-0.009504093;0.3996826;0.01093694,112.5446
-0;0;0,-0.001752658;0.1997381;0.01007989,-0.004128068;0.4996728;0.01159498,0.1121296;0.3732416;-0.005151157,0.2823212;0.2784097;0.04003459,0.5240002;0.3416933;0.04933164,-0.1162528;0.3630923;-0.00418664,-0.2812842;0.2536513;0.02387275,-0.5276727;0.2939433;0.01086339,0.07324501;0.004576772;-0.03184684,0.08468021;-0.2942424;-0.007839216,0.07279878;-0.5884253;0.04973922,0.08441763;-0.6163478;-0.01184878,-0.06918097;0.003303839;-0.04003845,-0.1003336;-0.2938846;-0.01341938,-0.1007742;-0.5889236;0.04091126,-0.09810898;-0.6170534;-0.02144758,-0.003385166;0.3996983;0.01372694,0;0;0,-0.004490219;0.1997572;0.008770172,-0.01202989;0.4996038;0.007876045,0.1076391;0.3793981;-0.005372907,0.2919534;0.3138322;0.03621257,0.5370768;0.3550218;0.06300645,-0.1227474;0.3648584;-0.00812156,-0.2958908;0.2682648;0.01816553,-0.5446815;0.292356;0.02294177,0.07360486;0.004678626;-0.03099088,0.08523261;-0.2942066;-0.00791724,0.07287182;-0.5871011;0.05580129,0.08413377;-0.61863;-0.0009983927,-0.06841025;0.003063832;-0.04136002,-0.1007293;-0.2938689;-0.01331664,-0.1017737;-0.587647;0.04745664,-0.1054781;-0.616253;-0.01424727,-0.009504093;0.3996826;0.01093694,112.5666
-0;0;0,-0.001752658;0.1997381;0.01007989,-0.004128068;0.4996728;0.01159498,0.1121296;0.3732416;-0.005151157,0.2823212;0.2784097;0.04003459,0.5240002;0.3416933;0.04933164,-0.1162528;0.3630923;-0.00418664,-0.2812842;0.2536513;0.02387275,-0.5276727;0.2939433;0.01086339,0.07324501;0.004576772;-0.03184684,0.08468021;-0.2942424;-0.007839216,0.07279878;-0.5884253;0.04973922,0.08441763;-0.6163478;-0.01184878,-0.06918097;0.003303839;-0.04003845,-0.1003336;-0.2938846;-0.01341938,-0.1007742;-0.5889236;0.04091126,-0.09810898;-0.6170534;-0.02144758,-0.003385166;0.3996983;0.01372694,0;0;0,-0.004548434;0.1997593;0.008691266,-0.01212106;0.4996052;0.0077518,0.107567;0.3793949;-0.005416217,0.2914388;0.3129872;0.03678784,0.5371525;0.3496222;0.06476305,-0.1228795;0.3648953;-0.007998048,-0.2964737;0.2696184;0.02006155,-0.5457894;0.2872599;0.02558401,0.07365239;0.004710109;-0.03087297,0.0852093;-0.2942025;-0.00812003,0.07292326;-0.5870943;0.05562497,0.08376057;-0.6186278;-0.001250673,-0.06836036;0.003053525;-0.04144318,-0.1007958;-0.2938335;-0.01305236,-0.1013125;-0.5877308;0.04714853,-0.1052828;-0.6158639;-0.01513667,-0.009585415;0.3996845;0.01082116,112.589
-0;0;0,-0.00173505;0.1997339;0.01016656,-0.004081809;0.499668;0.01178153,0.1121478;0.3731696;-0.005021026,0.2803267;0.275826;0.04230882,0.5228577;0.3354697;0.05332531,-0.1162075;0.3630565;-0.004010078,-0.2803345;0.2526996;0.02571644,-0.527719;0.2876681;0.01687784,0.07328649;0.004530079;-0.03175797,0.08477253;-0.2942803;-0.007665563,0.0728829;-0.5884699;0.0498771,0.08452367;-0.6166939;-0.0113233,-0.06917803;0.003340291;-0.0400405,-0.1002061;-0.2938509;-0.01330761,-0.1006436;-0.5888715;0.04112305,-0.09790312;-0.6168146;-0.02146581,-0.003346905;0.3996928;0.01388616,0;0;0,-0.004548434;0.1997593;0.008691266,-0.01212106;0.4996052;0.0077518,0.107567;0.3793949;-0.005416217,0.2914388;0.3129872;0.03678784,0.5371525;0.3496222;0.06476305,-0.1228795;0.3648953;-0.007998048,-0.2964737;0.2696184;0.02006155,-0.5457894;0.2872599;0.02558401,0.07365239;0.004710109;-0.03087297,0.0852093;-0.2942025;-0.00812003,0.07292326;-0.5870943;0.05562497,0.08376057;-0.6186278;-0.001250673,-0.06836036;0.003053525;-0.04144318,-0.1007958;-0.2938335;-0.01305236,-0.1013125;-0.5877308;0.04714853,-0.1052828;-0.6158639;-0.01513667,-0.009585415;0.3996845;0.01082116,112.6003
-0;0;0,-0.00173505;0.1997339;0.01016656,-0.004081809;0.499668;0.01178153,0.1121478;0.3731696;-0.005021026,0.2803267;0.275826;0.04230882,0.5228577;0.3354697;0.05332531,-0.1162075;0.3630565;-0.004010078,-0.2803345;0.2526996;0.02571644,-0.527719;0.2876681;0.01687784,0.07328649;0.004530079;-0.03175797,0.08477253;-0.2942803;-0.007665563,0.0728829;-0.5884699;0.0498771,0.08452367;-0.6166939;-0.0113233,-0.06917803;0.003340291;-0.0400405,-0.1002061;-0.2938509;-0.01330761,-0.1006436;-0.5888715;0.04112305,-0.09790312;-0.6168146;-0.02146581,-0.003346905;0.3996928;0.01388616,0;0;0,-0.004548434;0.1997593;0.008691266,-0.01212106;0.4996052;0.0077518,0.107567;0.3793949;-0.005416217,0.2914388;0.3129872;0.03678784,0.5371525;0.3496222;0.06476305,-0.1228795;0.3648953;-0.007998048,-0.2964737;0.2696184;0.02006155,-0.5457894;0.2872599;0.02558401,0.07365239;0.004710109;-0.03087297,0.0852093;-0.2942025;-0.00812003,0.07292326;-0.5870943;0.05562497,0.08376057;-0.6186278;-0.001250673,-0.06836036;0.003053525;-0.04144318,-0.1007958;-0.2938335;-0.01305236,-0.1013125;-0.5877308;0.04714853,-0.1052828;-0.6158639;-0.01513667,-0.009585415;0.3996845;0.01082116,112.612
-0;0;0,-0.001784689;0.1997394;0.01005003,-0.004202011;0.4996738;0.01147372,0.1119922;0.3729691;-0.005324683,0.278059;0.2729737;0.04389659,0.5211145;0.3302446;0.05589904,-0.1163245;0.3630008;-0.004002334,-0.2794381;0.2514765;0.02692183,-0.527607;0.2810932;0.02100308,0.07330006;0.004526934;-0.03172708,0.08477688;-0.2943029;-0.00787246,0.07302222;-0.5884471;0.04992889,0.08464225;-0.616641;-0.01131396,-0.06917559;0.003343933;-0.04004441,-0.1001369;-0.2938749;-0.01354176,-0.1007591;-0.5889362;0.04066564,-0.09764865;-0.6169713;-0.02179109,-0.00344483;0.3997002;0.01364211,0;0;0,-0.004416781;0.1997729;0.008443796,-0.01185798;0.4996225;0.007332632,0.107805;0.3792426;-0.005586756,0.2905189;0.3104836;0.03786258,0.5365179;0.3446086;0.06649824,-0.1227933;0.3652588;-0.008105006,-0.295032;0.2678284;0.02089728,-0.5444222;0.2841268;0.02713211,0.07370611;0.004756572;-0.03073733,0.08554912;-0.2941885;-0.008565316,0.07311208;-0.5870594;0.05524644,0.08378362;-0.6189746;-0.001109712,-0.06828293;0.00301259;-0.04157361,-0.1004588;-0.2939304;-0.01347459,-0.1009961;-0.5878245;0.04674185,-0.1052849;-0.6160966;-0.01534738,-0.009347513;0.3997022;0.01043454,112.6337
-0;0;0,-0.001784689;0.1997394;0.01005003,-0.004202011;0.4996738;0.01147372,0.1119922;0.3729691;-0.005324683,0.278059;0.2729737;0.04389659,0.5211145;0.3302446;0.05589904,-0.1163245;0.3630008;-0.004002334,-0.2794381;0.2514765;0.02692183,-0.527607;0.2810932;0.02100308,0.07330006;0.004526934;-0.03172708,0.08477688;-0.2943029;-0.00787246,0.07302222;-0.5884471;0.04992889,0.08464225;-0.616641;-0.01131396,-0.06917559;0.003343933;-0.04004441,-0.1001369;-0.2938749;-0.01354176,-0.1007591;-0.5889362;0.04066564,-0.09764865;-0.6169713;-0.02179109,-0.00344483;0.3997002;0.01364211,0;0;0,-0.004416781;0.1997729;0.008443796,-0.01185798;0.4996225;0.007332632,0.107805;0.3792426;-0.005586756,0.2905189;0.3104836;0.03786258,0.5365179;0.3446086;0.06649824,-0.1227933;0.3652588;-0.008105006,-0.295032;0.2678284;0.02089728,-0.5444222;0.2841268;0.02713211,0.07370611;0.004756572;-0.03073733,0.08554912;-0.2941885;-0.008565316,0.07311208;-0.5870594;0.05524644,0.08378362;-0.6189746;-0.001109712,-0.06828293;0.00301259;-0.04157361,-0.1004588;-0.2939304;-0.01347459,-0.1009961;-0.5878245;0.04674185,-0.1052849;-0.6160966;-0.01534738,-0.009347513;0.3997022;0.01043454,112.6451
-0;0;0,-0.001640422;0.19974;0.01006129,-0.003891032;0.4996756;0.01153102,0.1122319;0.3728014;-0.005164744,0.2769232;0.2711458;0.04526252,0.5213094;0.32181;0.05970253,-0.1160485;0.3628813;-0.003814783,-0.2778959;0.2498757;0.02835877,-0.5267855;0.2731312;0.02473094,0.07334681;0.004497467;-0.03162306,0.08512585;-0.2943114;-0.007653793,0.07346381;-0.5884717;0.05008487,0.08505265;-0.6165702;-0.01128551,-0.06918686;0.003373086;-0.04002249,-0.0997217;-0.2938603;-0.01319096,-0.1001557;-0.5889111;0.04107579,-0.1003771;-0.5568786;-0.05729655,-0.003185327;0.3997013;0.01368371,0;0;0,-0.004416781;0.1997729;0.008443796,-0.01185798;0.4996225;0.007332632,0.107805;0.3792426;-0.005586756,0.2905189;0.3104836;0.03786258,0.5365179;0.3446086;0.06649824,-0.1227933;0.3652588;-0.008105006,-0.295032;0.2678284;0.02089728,-0.5444222;0.2841268;0.02713211,0.07370611;0.004756572;-0.03073733,0.08554912;-0.2941885;-0.008565316,0.07311208;-0.5870594;0.05524644,0.08378362;-0.6189746;-0.001109712,-0.06828293;0.00301259;-0.04157361,-0.1004588;-0.2939304;-0.01347459,-0.1009961;-0.5878245;0.04674185,-0.1052849;-0.6160966;-0.01534738,-0.009347513;0.3997022;0.01043454,112.6673
-0;0;0,-0.001640422;0.19974;0.01006129,-0.003891032;0.4996756;0.01153102,0.1122319;0.3728014;-0.005164744,0.2769232;0.2711458;0.04526252,0.5213094;0.32181;0.05970253,-0.1160485;0.3628813;-0.003814783,-0.2778959;0.2498757;0.02835877,-0.5267855;0.2731312;0.02473094,0.07334681;0.004497467;-0.03162306,0.08512585;-0.2943114;-0.007653793,0.07346381;-0.5884717;0.05008487,0.08505265;-0.6165702;-0.01128551,-0.06918686;0.003373086;-0.04002249,-0.0997217;-0.2938603;-0.01319096,-0.1001557;-0.5889111;0.04107579,-0.1003771;-0.5568786;-0.05729655,-0.003185327;0.3997013;0.01368371,0;0;0,-0.004432617;0.1997734;0.00842303,-0.0118115;0.4996247;0.007284449,0.1078212;0.3791505;-0.005551249,0.2897291;0.3087681;0.03867364,0.5362123;0.3378634;0.06866549,-0.1228314;0.36543;-0.008097628,-0.293611;0.2658344;0.02215216,-0.5431657;0.2787557;0.02960342,0.07373503;0.004768968;-0.03066597,0.08566674;-0.2941779;-0.008565722,0.07325678;-0.5870953;0.05503774,0.08404107;-0.6189053;-0.001449574,-0.06822652;0.00300942;-0.04166636,-0.1003783;-0.2939248;-0.01344657,-0.1009246;-0.5878744;0.04649789,-0.1048377;-0.6154892;-0.0164356,-0.00932586;0.3997038;0.01038988,112.6789
-0;0;0,-0.001567904;0.1997388;0.01009642,-0.003745777;0.4996746;0.01160858,0.1123354;0.3727281;-0.005134515,0.275227;0.2690847;0.04706081,0.5207334;0.3135393;0.06288432,-0.1159311;0.3629753;-0.003892053,-0.2765047;0.2485315;0.02955528,-0.525962;0.2649702;0.02865286,0.07337654;0.004512421;-0.03155187,0.0853181;-0.2942997;-0.007704508,0.07366711;-0.5884519;0.05007794,0.08494218;-0.6164902;-0.0114272,-0.06915477;0.003357346;-0.04007924,-0.09948182;-0.2938938;-0.01320907,-0.09976169;-0.5888987;0.04130767,-0.09503692;-0.6166767;-0.02136807,-0.003059185;0.3996999;0.01374981,0;0;0,-0.004432617;0.1997734;0.00842303,-0.0118115;0.4996247;0.007284449,0.1078212;0.3791505;-0.005551249,0.2897291;0.3087681;0.03867364,0.5362123;0.3378634;0.06866549,-0.1228314;0.36543;-0.008097628,-0.293611;0.2658344;0.02215216,-0.5431657;0.2787557;0.02960342,0.07373503;0.004768968;-0.03066597,0.08566674;-0.2941779;-0.008565722,0.07325678;-0.5870953;0.05503774,0.08404107;-0.6189053;-0.001449574,-0.06822652;0.00300942;-0.04166636,-0.1003783;-0.2939248;-0.01344657,-0.1009246;-0.5878744;0.04649789,-0.1048377;-0.6154892;-0.0164356,-0.00932586;0.3997038;0.01038988,112.7007
-0;0;0,-0.001567904;0.1997388;0.01009642,-0.003745777;0.4996746;0.01160858,0.1123354;0.3727281;-0.005134515,0.275227;0.2690847;0.04706081,0.5207334;0.3135393;0.06288432,-0.1159311;0.3629753;-0.003892053,-0.2765047;0.2485315;0.02955528,-0.525962;0.2649702;0.02865286,0.07337654;0.004512421;-0.03155187,0.0853181;-0.2942997;-0.007704508,0.07366711;-0.5884519;0.05007794,0.08494218;-0.6164902;-0.0114272,-0.06915477;0.003357346;-0.04007924,-0.09948182;-0.2938938;-0.01320907,-0.09976169;-0.5888987;0.04130767,-0.09503692;-0.6166767;-0.02136807,-0.003059185;0.3996999;0.01374981,0;0;0,-0.004432617;0.1997734;0.00842303,-0.0118115;0.4996247;0.007284449,0.1078212;0.3791505;-0.005551249,0.2897291;0.3087681;0.03867364,0.5362123;0.3378634;0.06866549,-0.1228314;0.36543;-0.008097628,-0.293611;0.2658344;0.02215216,-0.5431657;0.2787557;0.02960342,0.07373503;0.004768968;-0.03066597,0.08566674;-0.2941779;-0.008565722,0.07325678;-0.5870953;0.05503774,0.08404107;-0.6189053;-0.001449574,-0.06822652;0.00300942;-0.04166636,-0.1003783;-0.2939248;-0.01344657,-0.1009246;-0.5878744;0.04649789,-0.1048377;-0.6154892;-0.0164356,-0.00932586;0.3997038;0.01038988,112.7122
-0;0;0,-0.001536437;0.1997384;0.01010906,-0.003657253;0.4996744;0.01167521,0.1123133;0.3724957;-0.005311642,0.2733436;0.2666506;0.04822399,0.5196202;0.3060506;0.06541418,-0.1158732;0.3629826;-0.003790956,-0.2753647;0.2472487;0.03038724,-0.5253121;0.2518856;0.03258356,0.07333362;0.004544405;-0.03164693,0.08547471;-0.2942452;-0.00761814,0.07386733;-0.5884044;0.05013691,0.08524559;-0.6165505;-0.01121224,-0.06918742;0.003337502;-0.04002452,-0.09937428;-0.2939274;-0.01314825,-0.0996367;-0.5889637;0.04119806,-0.09627705;-0.6157734;-0.02274708,-0.002990096;0.3996992;0.01379572,0;0;0,-0.004306164;0.1997867;0.008168499,-0.01158318;0.4996411;0.006876899,0.1080352;0.3789661;-0.005584762,0.2894134;0.3073951;0.03890734,0.5363681;0.3300356;0.0705428,-0.1227956;0.3657845;-0.008080173,-0.292611;0.2646631;0.02253345,-0.5422962;0.273748;0.03118001,0.07370522;0.004741622;-0.03074178,0.08571267;-0.294214;-0.008801209,0.07336387;-0.5871727;0.05462316,0.08405592;-0.6191628;-0.001620181,-0.06828149;0.003022047;-0.0415753,-0.1002067;-0.2939687;-0.01369577,-0.1007007;-0.5879469;0.04610913,-0.1047331;-0.614942;-0.01757362,-0.009123748;0.3997203;0.01000485,112.7343
-0;0;0,-0.001536437;0.1997384;0.01010906,-0.003657253;0.4996744;0.01167521,0.1123133;0.3724957;-0.005311642,0.2733436;0.2666506;0.04822399,0.5196202;0.3060506;0.06541418,-0.1158732;0.3629826;-0.003790956,-0.2753647;0.2472487;0.03038724,-0.5253121;0.2518856;0.03258356,0.07333362;0.004544405;-0.03164693,0.08547471;-0.2942452;-0.00761814,0.07386733;-0.5884044;0.05013691,0.08524559;-0.6165505;-0.01121224,-0.06918742;0.003337502;-0.04002452,-0.09937428;-0.2939274;-0.01314825,-0.0996367;-0.5889637;0.04119806,-0.09627705;-0.6157734;-0.02274708,-0.002990096;0.3996992;0.01379572,0;0;0,-0.004306164;0.1997867;0.008168499,-0.01158318;0.4996411;0.006876899,0.1080352;0.3789661;-0.005584762,0.2894134;0.3073951;0.03890734,0.5363681;0.3300356;0.0705428,-0.1227956;0.3657845;-0.008080173,-0.292611;0.2646631;0.02253345,-0.5422962;0.273748;0.03118001,0.07370522;0.004741622;-0.03074178,0.08571267;-0.294214;-0.008801209,0.07336387;-0.5871727;0.05462316,0.08405592;-0.6191628;-0.001620181,-0.06828149;0.003022047;-0.0415753,-0.1002067;-0.2939687;-0.01369577,-0.1007007;-0.5879469;0.04610913,-0.1047331;-0.614942;-0.01757362,-0.009123748;0.3997203;0.01000485,112.7564
-0;0;0,-0.001397626;0.1997378;0.01014277,-0.003426098;0.4996745;0.01177016,0.1125031;0.3724906;-0.005344952,0.2698943;0.2621804;0.04996936,0.5164257;0.2990861;0.06894974,-0.1156603;0.3629614;-0.003720888,-0.2728637;0.2446469;0.03217827,-0.5228455;0.2447521;0.03519343,0.07333256;0.004532244;-0.03165111,0.08583032;-0.2942422;-0.007617269,0.07418696;-0.5884119;0.05007739,0.08485311;-0.6167334;-0.01117598,-0.06917225;0.00335005;-0.04004968,-0.09921161;-0.2939165;-0.01302624,-0.09929854;-0.5889684;0.04123557,-0.09552096;-0.6165766;-0.02171434,-0.002782973;0.3996984;0.01386051,0;0;0,-0.004263235;0.1997875;0.008172959,-0.01139107;0.4996454;0.00685322,0.1081884;0.3789957;-0.005563878,0.2884601;0.304927;0.03933544,0.5358253;0.321629;0.07145232,-0.122694;0.3658353;-0.00792218,-0.2914705;0.263291;0.0236876,-0.5412507;0.2681901;0.03295173,0.07370015;0.004701851;-0.03076004,0.0858337;-0.2942457;-0.008780211,0.07332879;-0.587279;0.05426874,0.08459695;-0.6189768;-0.002286423,-0.06833346;0.003054025;-0.04148749,-0.09991853;-0.2939903;-0.01379155,-0.1004917;-0.5879934;0.04588964,-0.1047895;-0.614942;-0.01783198,-0.008980269;0.3997236;0.00998795,112.7678
-0;0;0,-0.001397626;0.1997378;0.01014277,-0.003426098;0.4996745;0.01177016,0.1125031;0.3724906;-0.005344952,0.2698943;0.2621804;0.04996936,0.5164257;0.2990861;0.06894974,-0.1156603;0.3629614;-0.003720888,-0.2728637;0.2446469;0.03217827,-0.5228455;0.2447521;0.03519343,0.07333256;0.004532244;-0.03165111,0.08583032;-0.2942422;-0.007617269,0.07418696;-0.5884119;0.05007739,0.08485311;-0.6167334;-0.01117598,-0.06917225;0.00335005;-0.04004968,-0.09921161;-0.2939165;-0.01302624,-0.09929854;-0.5889684;0.04123557,-0.09552096;-0.6165766;-0.02171434,-0.002782973;0.3996984;0.01386051,0;0;0,-0.004263235;0.1997875;0.008172959,-0.01139107;0.4996454;0.00685322,0.1081884;0.3789957;-0.005563878,0.2884601;0.304927;0.03933544,0.5358253;0.321629;0.07145232,-0.122694;0.3658353;-0.00792218,-0.2914705;0.263291;0.0236876,-0.5412507;0.2681901;0.03295173,0.07370015;0.004701851;-0.03076004,0.0858337;-0.2942457;-0.008780211,0.07332879;-0.587279;0.05426874,0.08459695;-0.6189768;-0.002286423,-0.06833346;0.003054025;-0.04148749,-0.09991853;-0.2939903;-0.01379155,-0.1004917;-0.5879934;0.04588964,-0.1047895;-0.614942;-0.01783198,-0.008980269;0.3997236;0.00998795,112.7796
-0;0;0,-0.001398406;0.1997351;0.01019507,-0.003429104;0.4996713;0.01194603,0.1124631;0.3726325;-0.005649164,0.2688797;0.2612363;0.05025001,0.5160561;0.2918172;0.0718987,-0.1156248;0.3628849;-0.003676083,-0.2720124;0.2437635;0.03310767,-0.5217176;0.2333183;0.03928669,0.07333228;0.004571173;-0.03164617,0.08621652;-0.2941904;-0.007656535,0.0745571;-0.5883318;0.05017892,0.08601808;-0.6168959;-0.01061847,-0.06916812;0.003313315;-0.04005987,-0.09891989;-0.2939731;-0.01293737,-0.0990448;-0.589058;0.04114514,-0.0966555;-0.6143774;-0.02459125,-0.002784309;0.3996943;0.01398988,0;0;0,-0.004263235;0.1997875;0.008172959,-0.01139107;0.4996454;0.00685322,0.1081884;0.3789957;-0.005563878,0.2884601;0.304927;0.03933544,0.5358253;0.321629;0.07145232,-0.122694;0.3658353;-0.00792218,-0.2914705;0.263291;0.0236876,-0.5412507;0.2681901;0.03295173,0.07370015;0.004701851;-0.03076004,0.0858337;-0.2942457;-0.008780211,0.07332879;-0.587279;0.05426874,0.08459695;-0.6189768;-0.002286423,-0.06833346;0.003054025;-0.04148749,-0.09991853;-0.2939903;-0.01379155,-0.1004917;-0.5879934;0.04588964,-0.1047895;-0.614942;-0.01783198,-0.008980269;0.3997236;0.00998795,112.8014
-0;0;0,-0.001398406;0.1997351;0.01019507,-0.003429104;0.4996713;0.01194603,0.1124631;0.3726325;-0.005649164,0.2688797;0.2612363;0.05025001,0.5160561;0.2918172;0.0718987,-0.1156248;0.3628849;-0.003676083,-0.2720124;0.2437635;0.03310767,-0.5217176;0.2333183;0.03928669,0.07333228;0.004571173;-0.03164617,0.08621652;-0.2941904;-0.007656535,0.0745571;-0.5883318;0.05017892,0.08601808;-0.6168959;-0.01061847,-0.06916812;0.003313315;-0.04005987,-0.09891989;-0.2939731;-0.01293737,-0.0990448;-0.589058;0.04114514,-0.0966555;-0.6143774;-0.02459125,-0.002784309;0.3996943;0.01398988,0;0;0,-0.004263235;0.1997875;0.008172959,-0.01139107;0.4996454;0.00685322,0.1081884;0.3789957;-0.005563878,0.2884601;0.304927;0.03933544,0.5358253;0.321629;0.07145232,-0.122694;0.3658353;-0.00792218,-0.2914705;0.263291;0.0236876,-0.5412507;0.2681901;0.03295173,0.07370015;0.004701851;-0.03076004,0.0858337;-0.2942457;-0.008780211,0.07332879;-0.587279;0.05426874,0.08459695;-0.6189768;-0.002286423,-0.06833346;0.003054025;-0.04148749,-0.09991853;-0.2939903;-0.01379155,-0.1004917;-0.5879934;0.04588964,-0.1047895;-0.614942;-0.01783198,-0.008980269;0.3997236;0.00998795,112.8126
-0;0;0,-0.001386433;0.1997371;0.01015812,-0.003361297;0.4996739;0.01188882,0.1125242;0.3730152;-0.006126633,0.2679607;0.2605864;0.05043532,0.5155978;0.285135;0.07437752,-0.1155676;0.3627652;-0.003547559,-0.2710133;0.242626;0.03391195,-0.5202793;0.2245382;0.04018297,0.07330931;0.004551995;-0.03170212,0.08658449;-0.2941857;-0.007627515,0.07490356;-0.5883331;0.05017265,0.08643473;-0.6171409;-0.01029509,-0.06920984;0.00332712;-0.0399866,-0.09859166;-0.2940012;-0.0129205,-0.09889599;-0.5891098;0.04103187,-0.09626532;-0.614544;-0.0245635,-0.002738765;0.3996968;0.01393686,0;0;0,-0.004357223;0.1997857;0.008167475,-0.0115588;0.4996417;0.006833377,0.1080089;0.3789278;-0.005702474,0.2864898;0.3010716;0.03993684,0.5341666;0.3115365;0.07228939,-0.1225774;0.3657284;-0.009380779,-0.2899054;0.2613424;0.02385936,-0.5396237;0.2595283;0.03558432,0.07368504;0.004697163;-0.03079696,0.08576722;-0.2942536;-0.008832185,0.07335963;-0.587324;0.05406316,0.08435474;-0.6191016;-0.002430465,-0.06833137;0.003066967;-0.04148997,-0.09991102;-0.2939801;-0.01381744,-0.1005467;-0.5880055;0.04575328,-0.1046826;-0.6157769;-0.0169724,-0.009131675;0.3997205;0.00997413,112.8345
-0;0;0,-0.001386433;0.1997371;0.01015812,-0.003361297;0.4996739;0.01188882,0.1125242;0.3730152;-0.006126633,0.2679607;0.2605864;0.05043532,0.5155978;0.285135;0.07437752,-0.1155676;0.3627652;-0.003547559,-0.2710133;0.242626;0.03391195,-0.5202793;0.2245382;0.04018297,0.07330931;0.004551995;-0.03170212,0.08658449;-0.2941857;-0.007627515,0.07490356;-0.5883331;0.05017265,0.08643473;-0.6171409;-0.01029509,-0.06920984;0.00332712;-0.0399866,-0.09859166;-0.2940012;-0.0129205,-0.09889599;-0.5891098;0.04103187,-0.09626532;-0.614544;-0.0245635,-0.002738765;0.3996968;0.01393686,0;0;0,-0.004357223;0.1997857;0.008167475,-0.0115588;0.4996417;0.006833377,0.1080089;0.3789278;-0.005702474,0.2864898;0.3010716;0.03993684,0.5341666;0.3115365;0.07228939,-0.1225774;0.3657284;-0.009380779,-0.2899054;0.2613424;0.02385936,-0.5396237;0.2595283;0.03558432,0.07368504;0.004697163;-0.03079696,0.08576722;-0.2942536;-0.008832185,0.07335963;-0.587324;0.05406316,0.08435474;-0.6191016;-0.002430465,-0.06833137;0.003066967;-0.04148997,-0.09991102;-0.2939801;-0.01381744,-0.1005467;-0.5880055;0.04575328,-0.1046826;-0.6157769;-0.0169724,-0.009131675;0.3997205;0.00997413,112.8464
-0;0;0,-0.001386433;0.1997371;0.01015812,-0.003361297;0.4996739;0.01188882,0.1125242;0.3730152;-0.006126633,0.2679607;0.2605864;0.05043532,0.5155978;0.285135;0.07437752,-0.1155676;0.3627652;-0.003547559,-0.2710133;0.242626;0.03391195,-0.5202793;0.2245382;0.04018297,0.07330931;0.004551995;-0.03170212,0.08658449;-0.2941857;-0.007627515,0.07490356;-0.5883331;0.05017265,0.08643473;-0.6171409;-0.01029509,-0.06920984;0.00332712;-0.0399866,-0.09859166;-0.2940012;-0.0129205,-0.09889599;-0.5891098;0.04103187,-0.09626532;-0.614544;-0.0245635,-0.002738765;0.3996968;0.01393686,0;0;0,-0.004357223;0.1997857;0.008167475,-0.0115588;0.4996417;0.006833377,0.1080089;0.3789278;-0.005702474,0.2864898;0.3010716;0.03993684,0.5341666;0.3115365;0.07228939,-0.1225774;0.3657284;-0.009380779,-0.2899054;0.2613424;0.02385936,-0.5396237;0.2595283;0.03558432,0.07368504;0.004697163;-0.03079696,0.08576722;-0.2942536;-0.008832185,0.07335963;-0.587324;0.05406316,0.08435474;-0.6191016;-0.002430465,-0.06833137;0.003066967;-0.04148997,-0.09991102;-0.2939801;-0.01381744,-0.1005467;-0.5880055;0.04575328,-0.1046826;-0.6157769;-0.0169724,-0.009131675;0.3997205;0.00997413,112.8585
-0;0;0,-0.001399847;0.1997381;0.01013551,-0.003392209;0.4996749;0.01185012,0.1125022;0.373013;-0.006132807,0.2669698;0.2595831;0.05108116,0.5150803;0.2764871;0.07668249,-0.1155895;0.3627566;-0.003588264,-0.2688502;0.2401462;0.03485483,-0.5173887;0.2142426;0.04244461,0.07324928;0.004607272;-0.03183262,0.08681238;-0.2941156;-0.007734291,0.07519246;-0.5882379;0.05020576,0.08682073;-0.6171243;-0.01014085,-0.06929971;0.003286789;-0.03983397,-0.09845101;-0.2940758;-0.01289456,-0.09874516;-0.5891994;0.04097496,-0.09638127;-0.6151007;-0.0240896,-0.002764842;0.399698;0.0139027,0;0;0,-0.004438358;0.1997781;0.008306771,-0.01167985;0.4996346;0.007226568,0.1078746;0.3790733;-0.005734107,0.2848203;0.298344;0.04088153,0.5326768;0.301375;0.07340769,-0.1228126;0.3659415;-0.008775348,-0.2891246;0.2598781;0.02425325,-0.5386009;0.2484714;0.03571932,0.07362127;0.004695824;-0.03094927,0.08570004;-0.2942393;-0.008770507,0.07330653;-0.5873919;0.05374344,0.08421592;-0.6192139;-0.002702411,-0.06843037;0.003045944;-0.04132804,-0.1000261;-0.2939987;-0.0136483,-0.1006244;-0.5881293;0.04540157,-0.1053376;-0.6154158;-0.01788016,-0.009248616;0.3997106;0.01027367,112.8699
-0;0;0,-0.001399847;0.1997381;0.01013551,-0.003392209;0.4996749;0.01185012,0.1125022;0.373013;-0.006132807,0.2669698;0.2595831;0.05108116,0.5150803;0.2764871;0.07668249,-0.1155895;0.3627566;-0.003588264,-0.2688502;0.2401462;0.03485483,-0.5173887;0.2142426;0.04244461,0.07324928;0.004607272;-0.03183262,0.08681238;-0.2941156;-0.007734291,0.07519246;-0.5882379;0.05020576,0.08682073;-0.6171243;-0.01014085,-0.06929971;0.003286789;-0.03983397,-0.09845101;-0.2940758;-0.01289456,-0.09874516;-0.5891994;0.04097496,-0.09638127;-0.6151007;-0.0240896,-0.002764842;0.399698;0.0139027,0;0;0,-0.004438358;0.1997781;0.008306771,-0.01167985;0.4996346;0.007226568,0.1078746;0.3790733;-0.005734107,0.2848203;0.298344;0.04088153,0.5326768;0.301375;0.07340769,-0.1228126;0.3659415;-0.008775348,-0.2891246;0.2598781;0.02425325,-0.5386009;0.2484714;0.03571932,0.07362127;0.004695824;-0.03094927,0.08570004;-0.2942393;-0.008770507,0.07330653;-0.5873919;0.05374344,0.08421592;-0.6192139;-0.002702411,-0.06843037;0.003045944;-0.04132804,-0.1000261;-0.2939987;-0.0136483,-0.1006244;-0.5881293;0.04540157,-0.1053376;-0.6154158;-0.01788016,-0.009248616;0.3997106;0.01027367,112.8814
-0;0;0,-0.001407691;0.1997407;0.0100832,-0.003403177;0.4996779;0.01174028,0.1125065;0.3733354;-0.006552292,0.2649916;0.2577761;0.05170886,0.513161;0.2676602;0.08024359,-0.1155612;0.3625739;-0.003543153,-0.2671298;0.2379115;0.03500871,-0.5148753;0.2057309;0.04431341,0.07322171;0.004713801;-0.03188042,0.08704743;-0.2940078;-0.00791705,0.0755114;-0.5881261;0.05006036,0.0873397;-0.6157991;-0.01180226,-0.06935067;0.003168625;-0.03975479,-0.09824273;-0.2942297;-0.01293115,-0.09848454;-0.5893564;0.04092184,-0.09340892;-0.6170726;-0.02180314,-0.002776508;0.3997013;0.01381089,0;0;0,-0.004438358;0.1997781;0.008306771,-0.01167985;0.4996346;0.007226568,0.1078746;0.3790733;-0.005734107,0.2848203;0.298344;0.04088153,0.5326768;0.301375;0.07340769,-0.1228126;0.3659415;-0.008775348,-0.2891246;0.2598781;0.02425325,-0.5386009;0.2484714;0.03571932,0.07362127;0.004695824;-0.03094927,0.08570004;-0.2942393;-0.008770507,0.07330653;-0.5873919;0.05374344,0.08421592;-0.6192139;-0.002702411,-0.06843037;0.003045944;-0.04132804,-0.1000261;-0.2939987;-0.0136483,-0.1006244;-0.5881293;0.04540157,-0.1053376;-0.6154158;-0.01788016,-0.009248616;0.3997106;0.01027367,112.9021
-0;0;0,-0.001407691;0.1997407;0.0100832,-0.003403177;0.4996779;0.01174028,0.1125065;0.3733354;-0.006552292,0.2649916;0.2577761;0.05170886,0.513161;0.2676602;0.08024359,-0.1155612;0.3625739;-0.003543153,-0.2671298;0.2379115;0.03500871,-0.5148753;0.2057309;0.04431341,0.07322171;0.004713801;-0.03188042,0.08704743;-0.2940078;-0.00791705,0.0755114;-0.5881261;0.05006036,0.0873397;-0.6157991;-0.01180226,-0.06935067;0.003168625;-0.03975479,-0.09824273;-0.2942297;-0.01293115,-0.09848454;-0.5893564;0.04092184,-0.09340892;-0.6170726;-0.02180314,-0.002776508;0.3997013;0.01381089,0;0;0,-0.00443393;0.1997761;0.008357399,-0.01158715;0.4996356;0.007416818,0.1078689;0.3789023;-0.005799254,0.2809815;0.2903844;0.0410689,0.5286225;0.2773854;0.07276979,-0.1227457;0.3659074;-0.008679386,-0.2868954;0.2565491;0.02442112,-0.5359333;0.2378971;0.03592137,0.07361779;0.004701856;-0.03095663,0.08562002;-0.2942308;-0.008703869,0.07328281;-0.58737;0.05388385,0.08467761;-0.6188385;-0.002976019,-0.06843511;0.003041015;-0.04132054,-0.09996022;-0.2940066;-0.01359203,-0.1007987;-0.5881767;0.04525746,-0.1052026;-0.6146882;-0.01898123,-0.009197311;0.3997089;0.01040547,112.9167
-0;0;0,-0.001363859;0.199743;0.01004357,-0.003314862;0.4996807;0.01168166,0.1126017;0.373473;-0.006667335,0.2639953;0.2568464;0.05230894,0.511964;0.2551967;0.08407136,-0.115467;0.3625394;-0.003643587,-0.2649131;0.2356076;0.03577962,-0.5118102;0.1974256;0.04494371,0.07316799;0.004784894;-0.03199296,0.08716021;-0.2939368;-0.008126793,0.07559825;-0.588035;0.04994678,0.08741369;-0.6156112;-0.01203981,-0.06946206;0.003076879;-0.03956709,-0.09819879;-0.2943448;-0.01283529,-0.09837238;-0.5895289;0.04070223,-0.09343693;-0.6172696;-0.0220036,-0.002701524;0.3997041;0.0137555,0;0;0,-0.00443393;0.1997761;0.008357399,-0.01158715;0.4996356;0.007416818,0.1078689;0.3789023;-0.005799254,0.2809815;0.2903844;0.0410689,0.5286225;0.2773854;0.07276979,-0.1227457;0.3659074;-0.008679386,-0.2868954;0.2565491;0.02442112,-0.5359333;0.2378971;0.03592137,0.07361779;0.004701856;-0.03095663,0.08562002;-0.2942308;-0.008703869,0.07328281;-0.58737;0.05388385,0.08467761;-0.6188385;-0.002976019,-0.06843511;0.003041015;-0.04132054,-0.09996022;-0.2940066;-0.01359203,-0.1007987;-0.5881767;0.04525746,-0.1052026;-0.6146882;-0.01898123,-0.009197311;0.3997089;0.01040547,112.9334
-0;0;0,-0.001363859;0.199743;0.01004357,-0.003314862;0.4996807;0.01168166,0.1126017;0.373473;-0.006667335,0.2639953;0.2568464;0.05230894,0.511964;0.2551967;0.08407136,-0.115467;0.3625394;-0.003643587,-0.2649131;0.2356076;0.03577962,-0.5118102;0.1974256;0.04494371,0.07316799;0.004784894;-0.03199296,0.08716021;-0.2939368;-0.008126793,0.07559825;-0.588035;0.04994678,0.08741369;-0.6156112;-0.01203981,-0.06946206;0.003076879;-0.03956709,-0.09819879;-0.2943448;-0.01283529,-0.09837238;-0.5895289;0.04070223,-0.09343693;-0.6172696;-0.0220036,-0.002701524;0.3997041;0.0137555,0;0;0,-0.00443393;0.1997761;0.008357399,-0.01158715;0.4996356;0.007416818,0.1078689;0.3789023;-0.005799254,0.2809815;0.2903844;0.0410689,0.5286225;0.2773854;0.07276979,-0.1227457;0.3659074;-0.008679386,-0.2868954;0.2565491;0.02442112,-0.5359333;0.2378971;0.03592137,0.07361779;0.004701856;-0.03095663,0.08562002;-0.2942308;-0.008703869,0.07328281;-0.58737;0.05388385,0.08467761;-0.6188385;-0.002976019,-0.06843511;0.003041015;-0.04132054,-0.09996022;-0.2940066;-0.01359203,-0.1007987;-0.5881767;0.04525746,-0.1052026;-0.6146882;-0.01898123,-0.009197311;0.3997089;0.01040547,112.9447
-0;0;0,-0.001419527;0.1997498;0.009900959,-0.003430762;0.4996874;0.01147188,0.112551;0.3738436;-0.007118883,0.2623864;0.2554818;0.05237781,0.5094327;0.2414767;0.08804242,-0.1155751;0.3625665;-0.003728507,-0.2620535;0.2325872;0.03688554,-0.5077005;0.1868603;0.04504518,0.07313266;0.004865947;-0.03206145,0.08705251;-0.2938603;-0.008210564,0.07425853;-0.5877798;0.05050629,0.0878923;-0.6132815;-0.01363114,-0.06949507;0.002971443;-0.03951715,-0.09850122;-0.2944209;-0.0127507,-0.09857682;-0.5897582;0.03993634,-0.09361851;-0.6169533;-0.02343814,-0.002787286;0.3997115;0.01356752,0;0;0,-0.004310759;0.1997772;0.008396704,-0.01122198;0.4996432;0.007557862,0.1080608;0.3787121;-0.006068626,0.2795497;0.2871251;0.04087161,0.5269896;0.2714921;0.072951,-0.1225256;0.3658201;-0.008074204,-0.284307;0.2529697;0.02496471,-0.5327108;0.2270805;0.03615833,0.07361082;0.004714885;-0.03097122,0.08586466;-0.2942062;-0.008699039,0.07370663;-0.587365;0.05383163,0.08518081;-0.6187487;-0.003133684,-0.06843465;0.003031881;-0.04132199,-0.09957355;-0.2940561;-0.01358927,-0.1004595;-0.5882897;0.04494146,-0.1051105;-0.6159219;-0.01792037,-0.008919762;0.399713;0.01049937,112.9668
-0;0;0,-0.001419527;0.1997498;0.009900959,-0.003430762;0.4996874;0.01147188,0.112551;0.3738436;-0.007118883,0.2623864;0.2554818;0.05237781,0.5094327;0.2414767;0.08804242,-0.1155751;0.3625665;-0.003728507,-0.2620535;0.2325872;0.03688554,-0.5077005;0.1868603;0.04504518,0.07313266;0.004865947;-0.03206145,0.08705251;-0.2938603;-0.008210564,0.07425853;-0.5877798;0.05050629,0.0878923;-0.6132815;-0.01363114,-0.06949507;0.002971443;-0.03951715,-0.09850122;-0.2944209;-0.0127507,-0.09857682;-0.5897582;0.03993634,-0.09361851;-0.6169533;-0.02343814,-0.002787286;0.3997115;0.01356752,0;0;0,-0.004310759;0.1997772;0.008396704,-0.01122198;0.4996432;0.007557862,0.1080608;0.3787121;-0.006068626,0.2795497;0.2871251;0.04087161,0.5269896;0.2714921;0.072951,-0.1225256;0.3658201;-0.008074204,-0.284307;0.2529697;0.02496471,-0.5327108;0.2270805;0.03615833,0.07361082;0.004714885;-0.03097122,0.08586466;-0.2942062;-0.008699039,0.07370663;-0.587365;0.05383163,0.08518081;-0.6187487;-0.003133684,-0.06843465;0.003031881;-0.04132199,-0.09957355;-0.2940561;-0.01358927,-0.1004595;-0.5882897;0.04494146,-0.1051105;-0.6159219;-0.01792037,-0.008919762;0.399713;0.01049937,112.9781
-0;0;0,-0.001541556;0.1997546;0.009783063,-0.003832526;0.4996904;0.01126635,0.112495;0.3755994;-0.008153516,0.2601327;0.254875;0.05208545,0.505717;0.2288595;0.09096427,-0.1153037;0.3623444;-0.006734272,-0.2595635;0.2307487;0.03652876,-0.5040349;0.1797727;0.04815504,0.07307974;0.004943839;-0.03217002,0.08688501;-0.2937886;-0.008329406,0.07422242;-0.5877463;0.05022401,0.0877501;-0.6137809;-0.01330347,-0.06958339;0.002879972;-0.03936822,-0.09875426;-0.294518;-0.01284426,-0.09888413;-0.5899051;0.03956177,-0.09455867;-0.6161364;-0.02501441,-0.003063382;0.3997161;0.01340205,0;0;0,-0.004310759;0.1997772;0.008396704,-0.01122198;0.4996432;0.007557862,0.1080608;0.3787121;-0.006068626,0.2795497;0.2871251;0.04087161,0.5269896;0.2714921;0.072951,-0.1225256;0.3658201;-0.008074204,-0.284307;0.2529697;0.02496471,-0.5327108;0.2270805;0.03615833,0.07361082;0.004714885;-0.03097122,0.08586466;-0.2942062;-0.008699039,0.07370663;-0.587365;0.05383163,0.08518081;-0.6187487;-0.003133684,-0.06843465;0.003031881;-0.04132199,-0.09957355;-0.2940561;-0.01358927,-0.1004595;-0.5882897;0.04494146,-0.1051105;-0.6159219;-0.01792037,-0.008919762;0.399713;0.01049937,113.0003
-0;0;0,-0.001541556;0.1997546;0.009783063,-0.003832526;0.4996904;0.01126635,0.112495;0.3755994;-0.008153516,0.2601327;0.254875;0.05208545,0.505717;0.2288595;0.09096427,-0.1153037;0.3623444;-0.006734272,-0.2595635;0.2307487;0.03652876,-0.5040349;0.1797727;0.04815504,0.07307974;0.004943839;-0.03217002,0.08688501;-0.2937886;-0.008329406,0.07422242;-0.5877463;0.05022401,0.0877501;-0.6137809;-0.01330347,-0.06958339;0.002879972;-0.03936822,-0.09875426;-0.294518;-0.01284426,-0.09888413;-0.5899051;0.03956177,-0.09455867;-0.6161364;-0.02501441,-0.003063382;0.3997161;0.01340205,0;0;0,-0.004306314;0.1997785;0.008367024,-0.01114506;0.4996462;0.007505215,0.1080475;0.3786298;-0.006401913,0.2774802;0.2833033;0.04056003,0.5242649;0.258793;0.07212847,-0.1224615;0.3656827;-0.007991824,-0.2816914;0.2491676;0.02472002,-0.5290259;0.2146447;0.0362879,0.07365107;0.00476172;-0.03086819,0.08587828;-0.2941661;-0.008672701,0.07368013;-0.587257;0.05416787,0.08499995;-0.617862;-0.00392418,-0.06841313;0.003009466;-0.04135923,-0.09963945;-0.2940627;-0.01355593,-0.1005285;-0.5883322;0.04479373,-0.1047671;-0.6158118;-0.01828523,-0.008876704;0.3997154;0.01045441,113.0119
-0;0;0,-0.001691939;0.199762;0.009606512,-0.004204573;0.4996968;0.0109715,0.1123204;0.3767647;-0.009077808,0.2575728;0.2537969;0.05240926,0.4998577;0.2088675;0.09459201,-0.1156535;0.3622928;-0.006519811,-0.256707;0.2272456;0.03667928,-0.4986825;0.166114;0.05119799,0.07306223;0.005188793;-0.03217121,0.0868212;-0.2935788;-0.008748166,0.07369947;-0.5876144;0.049311,0.08812248;-0.6139203;-0.01369204,-0.06956917;0.002686509;-0.03940702,-0.09894107;-0.2947305;-0.01332129,-0.09900784;-0.5901389;0.03896502,-0.09577726;-0.616142;-0.02594334,-0.003348403;0.3997239;0.01313942,0;0;0,-0.004306314;0.1997785;0.008367024,-0.01114506;0.4996462;0.007505215,0.1080475;0.3786298;-0.006401913,0.2774802;0.2833033;0.04056003,0.5242649;0.258793;0.07212847,-0.1224615;0.3656827;-0.007991824,-0.2816914;0.2491676;0.02472002,-0.5290259;0.2146447;0.0362879,0.07365107;0.00476172;-0.03086819,0.08587828;-0.2941661;-0.008672701,0.07368013;-0.587257;0.05416787,0.08499995;-0.617862;-0.00392418,-0.06841313;0.003009466;-0.04135923,-0.09963945;-0.2940627;-0.01355593,-0.1005285;-0.5883322;0.04479373,-0.1047671;-0.6158118;-0.01828523,-0.008876704;0.3997154;0.01045441,113.034
-0;0;0,-0.001691939;0.199762;0.009606512,-0.004204573;0.4996968;0.0109715,0.1123204;0.3767647;-0.009077808,0.2575728;0.2537969;0.05240926,0.4998577;0.2088675;0.09459201,-0.1156535;0.3622928;-0.006519811,-0.256707;0.2272456;0.03667928,-0.4986825;0.166114;0.05119799,0.07306223;0.005188793;-0.03217121,0.0868212;-0.2935788;-0.008748166,0.07369947;-0.5876144;0.049311,0.08812248;-0.6139203;-0.01369204,-0.06956917;0.002686509;-0.03940702,-0.09894107;-0.2947305;-0.01332129,-0.09900784;-0.5901389;0.03896502,-0.09577726;-0.616142;-0.02594334,-0.003348403;0.3997239;0.01313942,0;0;0,-0.004306314;0.1997785;0.008367024,-0.01114506;0.4996462;0.007505215,0.1080475;0.3786298;-0.006401913,0.2774802;0.2833033;0.04056003,0.5242649;0.258793;0.07212847,-0.1224615;0.3656827;-0.007991824,-0.2816914;0.2491676;0.02472002,-0.5290259;0.2146447;0.0362879,0.07365107;0.00476172;-0.03086819,0.08587828;-0.2941661;-0.008672701,0.07368013;-0.587257;0.05416787,0.08499995;-0.617862;-0.00392418,-0.06841313;0.003009466;-0.04135923,-0.09963945;-0.2940627;-0.01355593,-0.1005285;-0.5883322;0.04479373,-0.1047671;-0.6158118;-0.01828523,-0.008876704;0.3997154;0.01045441,113.056
-0;0;0,-0.001662475;0.1997714;0.009414556,-0.004080412;0.4997084;0.010501,0.1124134;0.3771438;-0.009787567,0.2526894;0.2495669;0.05382671,0.4941918;0.2019877;0.09756238,-0.1156429;0.3624294;-0.006719735,-0.254656;0.22548;0.03710059,-0.4948756;0.1579839;0.05255381,0.07303429;0.005327246;-0.032212,0.08721998;-0.2934591;-0.009289321,0.07405483;-0.587535;0.04855604,0.08850284;-0.6139504;-0.01430844,-0.06957851;0.002533497;-0.03940065,-0.09863618;-0.2949524;-0.01375327,-0.09859832;-0.5903983;0.038321,-0.0961372;-0.6161669;-0.02689456,-0.003264557;0.3997371;0.01275459,0;0;0,-0.004272415;0.1997765;0.008432462,-0.01097745;0.4996478;0.007710703,0.1081064;0.3784442;-0.006396896,0.2745096;0.2780156;0.04076314,0.51997;0.2412613;0.07073537,-0.1222818;0.3654206;-0.007765233,-0.2792457;0.2458099;0.0247243,-0.5258349;0.2060415;0.0353202,0.07363866;0.004814897;-0.03088955,0.08594741;-0.294103;-0.008605011,0.07398026;-0.5873543;0.05352765,0.08532287;-0.6191143;-0.002922717,-0.06844418;0.002941106;-0.04131277,-0.09955771;-0.2941374;-0.01345064,-0.1004683;-0.5884627;0.0446169,-0.1044776;-0.6154202;-0.01911265,-0.00876317;0.3997142;0.01060544,113.0675
-0;0;0,-0.001662475;0.1997714;0.009414556,-0.004080412;0.4997084;0.010501,0.1124134;0.3771438;-0.009787567,0.2526894;0.2495669;0.05382671,0.4941918;0.2019877;0.09756238,-0.1156429;0.3624294;-0.006719735,-0.254656;0.22548;0.03710059,-0.4948756;0.1579839;0.05255381,0.07303429;0.005327246;-0.032212,0.08721998;-0.2934591;-0.009289321,0.07405483;-0.587535;0.04855604,0.08850284;-0.6139504;-0.01430844,-0.06957851;0.002533497;-0.03940065,-0.09863618;-0.2949524;-0.01375327,-0.09859832;-0.5903983;0.038321,-0.0961372;-0.6161669;-0.02689456,-0.003264557;0.3997371;0.01275459,0;0;0,-0.004272415;0.1997765;0.008432462,-0.01097745;0.4996478;0.007710703,0.1081064;0.3784442;-0.006396896,0.2745096;0.2780156;0.04076314,0.51997;0.2412613;0.07073537,-0.1222818;0.3654206;-0.007765233,-0.2792457;0.2458099;0.0247243,-0.5258349;0.2060415;0.0353202,0.07363866;0.004814897;-0.03088955,0.08594741;-0.294103;-0.008605011,0.07398026;-0.5873543;0.05352765,0.08532287;-0.6191143;-0.002922717,-0.06844418;0.002941106;-0.04131277,-0.09955771;-0.2941374;-0.01345064,-0.1004683;-0.5884627;0.0446169,-0.1044776;-0.6154202;-0.01911265,-0.00876317;0.3997142;0.01060544,113.0787
-0;0;0,-0.001773301;0.1997792;0.009226598,-0.004495509;0.4997135;0.01011219,0.1121873;0.3778193;-0.01044773,0.2489922;0.2469958;0.05412501,0.4882012;0.1904266;0.09972107,-0.1159723;0.3624295;-0.006745821,-0.2527002;0.2231998;0.03707878,-0.4913972;0.1505205;0.05261755,0.07301717;0.005450423;-0.03223021,0.08721585;-0.2933545;-0.009558119,0.07454155;-0.5874376;0.04835958,0.08839266;-0.6141382;-0.01429152,-0.06958527;0.002415133;-0.03939616,-0.09870521;-0.2950892;-0.01403416,-0.09860037;-0.5905541;0.03793181,-0.09635739;-0.6172363;-0.02621495,-0.003548973;0.3997453;0.0124511,0;0;0,-0.004272415;0.1997765;0.008432462,-0.01097745;0.4996478;0.007710703,0.1081064;0.3784442;-0.006396896,0.2745096;0.2780156;0.04076314,0.51997;0.2412613;0.07073537,-0.1222818;0.3654206;-0.007765233,-0.2792457;0.2458099;0.0247243,-0.5258349;0.2060415;0.0353202,0.07363866;0.004814897;-0.03088955,0.08594741;-0.294103;-0.008605011,0.07398026;-0.5873543;0.05352765,0.08532287;-0.6191143;-0.002922717,-0.06844418;0.002941106;-0.04131277,-0.09955771;-0.2941374;-0.01345064,-0.1004683;-0.5884627;0.0446169,-0.1044776;-0.6154202;-0.01911265,-0.00876317;0.3997142;0.01060544,113.1012
-0;0;0,-0.001773301;0.1997792;0.009226598,-0.004495509;0.4997135;0.01011219,0.1121873;0.3778193;-0.01044773,0.2489922;0.2469958;0.05412501,0.4882012;0.1904266;0.09972107,-0.1159723;0.3624295;-0.006745821,-0.2527002;0.2231998;0.03707878,-0.4913972;0.1505205;0.05261755,0.07301717;0.005450423;-0.03223021,0.08721585;-0.2933545;-0.009558119,0.07454155;-0.5874376;0.04835958,0.08839266;-0.6141382;-0.01429152,-0.06958527;0.002415133;-0.03939616,-0.09870521;-0.2950892;-0.01403416,-0.09860037;-0.5905541;0.03793181,-0.09635739;-0.6172363;-0.02621495,-0.003548973;0.3997453;0.0124511,0;0;0,-0.004225955;0.1997754;0.008480757,-0.01078476;0.4996504;0.007858429,0.1082127;0.3783978;-0.006424963,0.2700072;0.2708914;0.04116601,0.5145319;0.2265455;0.06839016,-0.1220722;0.3652405;-0.007778438,-0.2756647;0.2413708;0.02486541,-0.519363;0.1868077;0.03644134,0.073625;0.004856963;-0.0309155,0.0859607;-0.2940571;-0.008595221,0.0740337;-0.587308;0.05354735,0.08532913;-0.6190337;-0.002962161,-0.06845786;0.002894776;-0.04129336,-0.09942731;-0.2941965;-0.01340638,-0.1006946;-0.5885618;0.04445099,-0.104221;-0.6152756;-0.01960012,-0.008628255;0.3997145;0.01071537,113.1124
-0;0;0,-0.001945716;0.1997897;0.008959538,-0.004801184;0.499724;0.009640791,0.1119402;0.378019;-0.01098567,0.2467323;0.2453312;0.05401446,0.4836593;0.1806587;0.1007381,-0.1162446;0.3622491;-0.006709386,-0.2496858;0.2199926;0.03752343,-0.486047;0.1400286;0.05298839,0.07299247;0.005595876;-0.03226123,0.08708425;-0.2932183;-0.009643801,0.07434221;-0.5874001;0.04775572,0.0882754;-0.6138983;-0.01512414,-0.06959199;0.00226651;-0.03939312,-0.09891201;-0.2952459;-0.01435876,-0.09887004;-0.5907553;0.03735365,-0.09701996;-0.6182415;-0.02583227,-0.003808239;0.3997575;0.01203038,0;0;0,-0.004225955;0.1997754;0.008480757,-0.01078476;0.4996504;0.007858429,0.1082127;0.3783978;-0.006424963,0.2700072;0.2708914;0.04116601,0.5145319;0.2265455;0.06839016,-0.1220722;0.3652405;-0.007778438,-0.2756647;0.2413708;0.02486541,-0.519363;0.1868077;0.03644134,0.073625;0.004856963;-0.0309155,0.0859607;-0.2940571;-0.008595221,0.0740337;-0.587308;0.05354735,0.08532913;-0.6190337;-0.002962161,-0.06845786;0.002894776;-0.04129336,-0.09942731;-0.2941965;-0.01340638,-0.1006946;-0.5885618;0.04445099,-0.104221;-0.6152756;-0.01960012,-0.008628255;0.3997145;0.01071537,113.1343
-0;0;0,-0.001945716;0.1997897;0.008959538,-0.004801184;0.499724;0.009640791,0.1119402;0.378019;-0.01098567,0.2467323;0.2453312;0.05401446,0.4836593;0.1806587;0.1007381,-0.1162446;0.3622491;-0.006709386,-0.2496858;0.2199926;0.03752343,-0.486047;0.1400286;0.05298839,0.07299247;0.005595876;-0.03226123,0.08708425;-0.2932183;-0.009643801,0.07434221;-0.5874001;0.04775572,0.0882754;-0.6138983;-0.01512414,-0.06959199;0.00226651;-0.03939312,-0.09891201;-0.2952459;-0.01435876,-0.09887004;-0.5907553;0.03735365,-0.09701996;-0.6182415;-0.02583227,-0.003808239;0.3997575;0.01203038,0;0;0,-0.004149648;0.1997711;0.008619339,-0.01040381;0.4996538;0.008353818,0.1083657;0.3781083;-0.006402969,0.2673551;0.2667184;0.04170784,0.5101971;0.214554;0.0701097,-0.1218337;0.3652486;-0.007333113,-0.2722931;0.2375254;0.02505116,-0.5145153;0.176508;0.03531218,0.07365626;0.004887037;-0.03083622,0.08585723;-0.294029;-0.008467728,0.07418033;-0.5873004;0.05362546,0.08513416;-0.618853;-0.003200386,-0.06841199;0.002883882;-0.04137006,-0.09939341;-0.2941935;-0.01334925,-0.100837;-0.5885768;0.04441243,-0.1041598;-0.6146601;-0.02039719,-0.008372526;0.3997114;0.01107556,113.1457
-0;0;0,-0.002085437;0.1997855;0.009023207,-0.005165339;0.4997175;0.009732503,0.1115995;0.3779055;-0.01102149,0.2443224;0.2432939;0.05428045,0.4757203;0.1625674;0.103659,-0.1163738;0.3618623;-0.006867658,-0.2478615;0.2178911;0.03766643,-0.4815083;0.130313;0.05313417,0.07305116;0.005773136;-0.0320967,0.0870078;-0.2930533;-0.009558547,0.07438011;-0.5873606;0.04721981,0.08815899;-0.6141245;-0.01536978,-0.06952369;0.002135755;-0.03952081,-0.0988965;-0.2953514;-0.01425004,-0.09893177;-0.5909331;0.03704838,-0.1000037;-0.5589448;-0.06131028,-0.004105376;0.3997514;0.01211155,0;0;0,-0.004149648;0.1997711;0.008619339,-0.01040381;0.4996538;0.008353818,0.1083657;0.3781083;-0.006402969,0.2673551;0.2667184;0.04170784,0.5101971;0.214554;0.0701097,-0.1218337;0.3652486;-0.007333113,-0.2722931;0.2375254;0.02505116,-0.5145153;0.176508;0.03531218,0.07365626;0.004887037;-0.03083622,0.08585723;-0.294029;-0.008467728,0.07418033;-0.5873004;0.05362546,0.08513416;-0.618853;-0.003200386,-0.06841199;0.002883882;-0.04137006,-0.09939341;-0.2941935;-0.01334925,-0.100837;-0.5885768;0.04441243,-0.1041598;-0.6146601;-0.02039719,-0.008372526;0.3997114;0.01107556,113.1681
-0;0;0,-0.002085437;0.1997855;0.009023207,-0.005165339;0.4997175;0.009732503,0.1115995;0.3779055;-0.01102149,0.2443224;0.2432939;0.05428045,0.4757203;0.1625674;0.103659,-0.1163738;0.3618623;-0.006867658,-0.2478615;0.2178911;0.03766643,-0.4815083;0.130313;0.05313417,0.07305116;0.005773136;-0.0320967,0.0870078;-0.2930533;-0.009558547,0.07438011;-0.5873606;0.04721981,0.08815899;-0.6141245;-0.01536978,-0.06952369;0.002135755;-0.03952081,-0.0988965;-0.2953514;-0.01425004,-0.09893177;-0.5909331;0.03704838,-0.1000037;-0.5589448;-0.06131028,-0.004105376;0.3997514;0.01211155,0;0;0,-0.004149648;0.1997711;0.008619339,-0.01040381;0.4996538;0.008353818,0.1083657;0.3781083;-0.006402969,0.2673551;0.2667184;0.04170784,0.5101971;0.214554;0.0701097,-0.1218337;0.3652486;-0.007333113,-0.2722931;0.2375254;0.02505116,-0.5145153;0.176508;0.03531218,0.07365626;0.004887037;-0.03083622,0.08585723;-0.294029;-0.008467728,0.07418033;-0.5873004;0.05362546,0.08513416;-0.618853;-0.003200386,-0.06841199;0.002883882;-0.04137006,-0.09939341;-0.2941935;-0.01334925,-0.100837;-0.5885768;0.04441243,-0.1041598;-0.6146601;-0.02039719,-0.008372526;0.3997114;0.01107556,113.19
-0;0;0,-0.002257964;0.1997889;0.008905048,-0.005512121;0.4997197;0.009507161,0.1113255;0.37829;-0.01149352,0.2410364;0.2406578;0.05356389,0.4682841;0.1496912;0.1043923,-0.1166014;0.3615377;-0.006780294,-0.2453091;0.2149919;0.03747648,-0.475795;0.1194204;0.05304317,0.07290059;0.005851741;-0.03242315,0.08683597;-0.2929481;-0.009521712,0.07414252;-0.5873954;0.04651105,0.08756837;-0.6142625;-0.01602848,-0.0697351;0.001952093;-0.03915615,-0.09938778;-0.295543;-0.01430816,-0.09945724;-0.5911978;0.03656647,-0.1006947;-0.5592157;-0.06178914,-0.004395938;0.3997549;0.01191169,0;0;0,-0.004149648;0.1997711;0.008619339,-0.01040381;0.4996538;0.008353818,0.1083657;0.3781083;-0.006402969,0.2673551;0.2667184;0.04170784,0.5101971;0.214554;0.0701097,-0.1218337;0.3652486;-0.007333113,-0.2722931;0.2375254;0.02505116,-0.5145153;0.176508;0.03531218,0.07365626;0.004887037;-0.03083622,0.08585723;-0.294029;-0.008467728,0.07418033;-0.5873004;0.05362546,0.08513416;-0.618853;-0.003200386,-0.06841199;0.002883882;-0.04137006,-0.09939341;-0.2941935;-0.01334925,-0.100837;-0.5885768;0.04441243,-0.1041598;-0.6146601;-0.02039719,-0.008372526;0.3997114;0.01107556,113.2018
-0;0;0,-0.002257964;0.1997889;0.008905048,-0.005512121;0.4997197;0.009507161,0.1113255;0.37829;-0.01149352,0.2410364;0.2406578;0.05356389,0.4682841;0.1496912;0.1043923,-0.1166014;0.3615377;-0.006780294,-0.2453091;0.2149919;0.03747648,-0.475795;0.1194204;0.05304317,0.07290059;0.005851741;-0.03242315,0.08683597;-0.2929481;-0.009521712,0.07414252;-0.5873954;0.04651105,0.08756837;-0.6142625;-0.01602848,-0.0697351;0.001952093;-0.03915615,-0.09938778;-0.295543;-0.01430816,-0.09945724;-0.5911978;0.03656647,-0.1006947;-0.5592157;-0.06178914,-0.004395938;0.3997549;0.01191169,0;0;0,-0.004140198;0.1997676;0.008705281,-0.01028397;0.4996535;0.008831628,0.1083427;0.3780314;-0.006613725,0.263394;0.2615181;0.04220981,0.504308;0.2006652;0.06973007,-0.1217613;0.3651876;-0.006914324,-0.2701676;0.2348662;0.02457967,-0.5103733;0.1662114;0.03394785,0.07362931;0.004907689;-0.03089723,0.08586971;-0.2939939;-0.008357527,0.07393038;-0.5872788;0.05362126,0.08589296;-0.6184137;-0.003597882,-0.06842146;0.00288025;-0.04135466,-0.09930974;-0.294192;-0.01317601,-0.1008337;-0.5886081;0.0444155,-0.1035403;-0.6157206;-0.01919543,-0.008301304;0.3997061;0.01139722,113.2235
-0;0;0,-0.002496871;0.1997967;0.008663607,-0.005959231;0.4997263;0.008942429,0.1109846;0.3792546;-0.01253947,0.2374673;0.2382981;0.0517522,0.4599003;0.1362561;0.10285,-0.1169689;0.3611453;-0.006592812,-0.2429471;0.2120286;0.03692406,-0.4711113;0.1108148;0.05095414,0.07275029;0.006060224;-0.03272108,0.08652569;-0.2927615;-0.01000897,0.07374539;-0.5871298;0.04641771,0.0869045;-0.6126159;-0.01783714,-0.06982603;0.001693663;-0.03900587,-0.09991653;-0.2958003;-0.0146767,-0.09999575;-0.5915111;0.03587117,-0.1016016;-0.5595489;-0.06247545,-0.00479289;0.3997642;0.01143815,0;0;0,-0.004140198;0.1997676;0.008705281,-0.01028397;0.4996535;0.008831628,0.1083427;0.3780314;-0.006613725,0.263394;0.2615181;0.04220981,0.504308;0.2006652;0.06973007,-0.1217613;0.3651876;-0.006914324,-0.2701676;0.2348662;0.02457967,-0.5103733;0.1662114;0.03394785,0.07362931;0.004907689;-0.03089723,0.08586971;-0.2939939;-0.008357527,0.07393038;-0.5872788;0.05362126,0.08589296;-0.6184137;-0.003597882,-0.06842146;0.00288025;-0.04135466,-0.09930974;-0.294192;-0.01317601,-0.1008337;-0.5886081;0.0444155,-0.1035403;-0.6157206;-0.01919543,-0.008301304;0.3997061;0.01139722,113.235
-0;0;0,-0.002496871;0.1997967;0.008663607,-0.005959231;0.4997263;0.008942429,0.1109846;0.3792546;-0.01253947,0.2374673;0.2382981;0.0517522,0.4599003;0.1362561;0.10285,-0.1169689;0.3611453;-0.006592812,-0.2429471;0.2120286;0.03692406,-0.4711113;0.1108148;0.05095414,0.07275029;0.006060224;-0.03272108,0.08652569;-0.2927615;-0.01000897,0.07374539;-0.5871298;0.04641771,0.0869045;-0.6126159;-0.01783714,-0.06982603;0.001693663;-0.03900587,-0.09991653;-0.2958003;-0.0146767,-0.09999575;-0.5915111;0.03587117,-0.1016016;-0.5595489;-0.06247545,-0.00479289;0.3997642;0.01143815,0;0;0,-0.004140198;0.1997676;0.008705281,-0.01028397;0.4996535;0.008831628,0.1083427;0.3780314;-0.006613725,0.263394;0.2615181;0.04220981,0.504308;0.2006652;0.06973007,-0.1217613;0.3651876;-0.006914324,-0.2701676;0.2348662;0.02457967,-0.5103733;0.1662114;0.03394785,0.07362931;0.004907689;-0.03089723,0.08586971;-0.2939939;-0.008357527,0.07393038;-0.5872788;0.05362126,0.08589296;-0.6184137;-0.003597882,-0.06842146;0.00288025;-0.04135466,-0.09930974;-0.294192;-0.01317601,-0.1008337;-0.5886081;0.0444155,-0.1035403;-0.6157206;-0.01919543,-0.008301304;0.3997061;0.01139722,113.2571
-0;0;0,-0.002572788;0.1997973;0.008627482,-0.006133961;0.4997258;0.008793479,0.1108247;0.3793952;-0.01282229,0.232504;0.2339612;0.05076289,0.4510135;0.1230207;0.1002179,-0.1171097;0.361185;-0.006836519,-0.2408598;0.2101372;0.0364124,-0.4650406;0.1000705;0.04774122,0.07276627;0.006206089;-0.03265813,0.08630297;-0.2925908;-0.009481529,0.07369862;-0.5871899;0.04576819,0.08651449;-0.6125478;-0.01870617,-0.06979488;0.001573953;-0.03906658,-0.09991283;-0.2959297;-0.01489045,-0.1002254;-0.5915909;0.03594631,-0.1018358;-0.5596447;-0.0623973,-0.004941731;0.399765;0.01132724,0;0;0,-0.00400776;0.199765;0.008824931,-0.00968952;0.49966;0.009212122,0.1086703;0.3778393;-0.006632192,0.2598879;0.2564692;0.04238366,0.4987823;0.1881993;0.0701089,-0.1212956;0.3651179;-0.006824363,-0.2679982;0.2325791;0.02337197,-0.5048715;0.1532358;0.03315169,0.07359318;0.004909469;-0.03098291,0.08584406;-0.2939679;-0.008129684,0.07393592;-0.5873247;0.05351391,0.08620716;-0.6181315;-0.004102763,-0.0684809;0.002869971;-0.04125687,-0.09935715;-0.2941867;-0.01290133,-0.1007489;-0.5886405;0.04450098,-0.1033895;-0.6164731;-0.01822937,-0.007889568;0.3997068;0.01168714,113.2689
-0;0;0,-0.002611074;0.1998001;0.008551626,-0.006223961;0.4997281;0.008580367,0.1107216;0.37965;-0.01331738,0.229342;0.2314814;0.04973247,0.4416348;0.1083694;0.09743117,-0.1172421;0.3613288;-0.006972638,-0.2378629;0.2073227;0.03465367,-0.4569591;0.08724499;0.04349597,0.07277238;0.006369653;-0.03261301,0.08611789;-0.2924318;-0.009384437,0.07355915;-0.5871426;0.04527676,0.08631972;-0.6126752;-0.01900376,-0.0697807;0.001427558;-0.03909753,-0.09979458;-0.2961064;-0.01516642,-0.1006189;-0.5918537;0.03516083,-0.1023291;-0.5599093;-0.06318077,-0.005020486;0.3997686;0.01115726,0;0;0,-0.00400776;0.199765;0.008824931,-0.00968952;0.49966;0.009212122,0.1086703;0.3778393;-0.006632192,0.2598879;0.2564692;0.04238366,0.4987823;0.1881993;0.0701089,-0.1212956;0.3651179;-0.006824363,-0.2679982;0.2325791;0.02337197,-0.5048715;0.1532358;0.03315169,0.07359318;0.004909469;-0.03098291,0.08584406;-0.2939679;-0.008129684,0.07393592;-0.5873247;0.05351391,0.08620716;-0.6181315;-0.004102763,-0.0684809;0.002869971;-0.04125687,-0.09935715;-0.2941867;-0.01290133,-0.1007489;-0.5886405;0.04450098,-0.1033895;-0.6164731;-0.01822937,-0.007889568;0.3997068;0.01168714,113.2912
-0;0;0,-0.002611074;0.1998001;0.008551626,-0.006223961;0.4997281;0.008580367,0.1107216;0.37965;-0.01331738,0.229342;0.2314814;0.04973247,0.4416348;0.1083694;0.09743117,-0.1172421;0.3613288;-0.006972638,-0.2378629;0.2073227;0.03465367,-0.4569591;0.08724499;0.04349597,0.07277238;0.006369653;-0.03261301,0.08611789;-0.2924318;-0.009384437,0.07355915;-0.5871426;0.04527676,0.08631972;-0.6126752;-0.01900376,-0.0697807;0.001427558;-0.03909753,-0.09979458;-0.2961064;-0.01516642,-0.1006189;-0.5918537;0.03516083,-0.1023291;-0.5599093;-0.06318077,-0.005020486;0.3997686;0.01115726,0;0;0,-0.00400776;0.199765;0.008824931,-0.00968952;0.49966;0.009212122,0.1086703;0.3778393;-0.006632192,0.2598879;0.2564692;0.04238366,0.4987823;0.1881993;0.0701089,-0.1212956;0.3651179;-0.006824363,-0.2679982;0.2325791;0.02337197,-0.5048715;0.1532358;0.03315169,0.07359318;0.004909469;-0.03098291,0.08584406;-0.2939679;-0.008129684,0.07393592;-0.5873247;0.05351391,0.08620716;-0.6181315;-0.004102763,-0.0684809;0.002869971;-0.04125687,-0.09935715;-0.2941867;-0.01290133,-0.1007489;-0.5886405;0.04450098,-0.1033895;-0.6164731;-0.01822937,-0.007889568;0.3997068;0.01168714,113.3041
-0;0;0,-0.002750963;0.1997976;0.0085632,-0.006586237;0.4997227;0.008518334,0.1103675;0.3799913;-0.01390162,0.2256762;0.228852;0.04823382,0.4334515;0.09846333;0.09648559,-0.1175507;0.3613329;-0.006937791,-0.2349885;0.2045153;0.03326945,-0.4508706;0.07861035;0.0398143,0.07277881;0.006432314;-0.03258635,0.08616599;-0.2924177;-0.01001493,0.07368392;-0.5871822;0.04437339,0.08599796;-0.6128259;-0.01986361,-0.06972816;0.001373383;-0.03919308,-0.09996051;-0.2961763;-0.0157372,-0.1003422;-0.5919088;0.03468266,-0.1022783;-0.5599671;-0.06365426,-0.005315769;0.3997648;0.01112619,0;0;0,-0.003923271;0.199764;0.008885393,-0.009416924;0.4996624;0.009431402,0.1087791;0.3778116;-0.007005309,0.2570865;0.2528451;0.04186487,0.4923078;0.1734909;0.0714262,-0.1210812;0.3650215;-0.006574239,-0.2647299;0.2290425;0.02300204,-0.4996422;0.1439326;0.03151839,0.07356591;0.004918779;-0.03104614,0.08592655;-0.2939486;-0.008122558,0.07399472;-0.5873223;0.05343659,0.08604583;-0.6187082;-0.003406215,-0.06851669;0.00285533;-0.04119842,-0.09927084;-0.2942171;-0.01287582,-0.100722;-0.5886369;0.04469918,-0.1034345;-0.6167435;-0.01768663,-0.00769026;0.3997065;0.01184956,113.3247
-0;0;0,-0.002750963;0.1997976;0.0085632,-0.006586237;0.4997227;0.008518334,0.1103675;0.3799913;-0.01390162,0.2256762;0.228852;0.04823382,0.4334515;0.09846333;0.09648559,-0.1175507;0.3613329;-0.006937791,-0.2349885;0.2045153;0.03326945,-0.4508706;0.07861035;0.0398143,0.07277881;0.006432314;-0.03258635,0.08616599;-0.2924177;-0.01001493,0.07368392;-0.5871822;0.04437339,0.08599796;-0.6128259;-0.01986361,-0.06972816;0.001373383;-0.03919308,-0.09996051;-0.2961763;-0.0157372,-0.1003422;-0.5919088;0.03468266,-0.1022783;-0.5599671;-0.06365426,-0.005315769;0.3997648;0.01112619,0;0;0,-0.003923271;0.199764;0.008885393,-0.009416924;0.4996624;0.009431402,0.1087791;0.3778116;-0.007005309,0.2570865;0.2528451;0.04186487,0.4923078;0.1734909;0.0714262,-0.1210812;0.3650215;-0.006574239,-0.2647299;0.2290425;0.02300204,-0.4996422;0.1439326;0.03151839,0.07356591;0.004918779;-0.03104614,0.08592655;-0.2939486;-0.008122558,0.07399472;-0.5873223;0.05343659,0.08604583;-0.6187082;-0.003406215,-0.06851669;0.00285533;-0.04119842,-0.09927084;-0.2942171;-0.01287582,-0.100722;-0.5886369;0.04469918,-0.1034345;-0.6167435;-0.01768663,-0.00769026;0.3997065;0.01184956,113.3369
-0;0;0,-0.002750963;0.1997976;0.0085632,-0.006586237;0.4997227;0.008518334,0.1103675;0.3799913;-0.01390162,0.2256762;0.228852;0.04823382,0.4334515;0.09846333;0.09648559,-0.1175507;0.3613329;-0.006937791,-0.2349885;0.2045153;0.03326945,-0.4508706;0.07861035;0.0398143,0.07277881;0.006432314;-0.03258635,0.08616599;-0.2924177;-0.01001493,0.07368392;-0.5871822;0.04437339,0.08599796;-0.6128259;-0.01986361,-0.06972816;0.001373383;-0.03919308,-0.09996051;-0.2961763;-0.0157372,-0.1003422;-0.5919088;0.03468266,-0.1022783;-0.5599671;-0.06365426,-0.005315769;0.3997648;0.01112619,0;0;0,-0.003772376;0.1997661;0.008903089,-0.008573456;0.4996757;0.009541473,0.1092337;0.3776538;-0.007322162,0.2529275;0.2475218;0.0418486,0.4842055;0.1574239;0.0717292,-0.1206227;0.3652586;-0.006336357,-0.2599995;0.2247571;0.02253316,-0.4918664;0.1315182;0.02918387,0.07354677;0.00490992;-0.03109283,0.08597215;-0.2939353;-0.00791711,0.0740831;-0.5873318;0.05354176,0.08649705;-0.6186919;-0.003259864,-0.06855001;0.002864071;-0.04114236,-0.09923109;-0.2942183;-0.01284489,-0.1006332;-0.5886686;0.04457528,-0.103374;-0.6164294;-0.01823992,-0.007137882;0.3997148;0.01193851,113.3495
-0;0;0,-0.002828958;0.199798;0.008528984,-0.006769323;0.4997214;0.008339869,0.1101885;0.3802759;-0.01435221,0.222185;0.2262759;0.04680971,0.4228738;0.08516204;0.09488136,-0.1175181;0.3606092;-0.006677071,-0.2324333;0.2016071;0.0322179,-0.4444497;0.0692212;0.03701932,0.07273811;0.006600063;-0.03264362,0.08603684;-0.2922852;-0.01049095,0.07350965;-0.5870838;0.04370201,0.08614898;-0.613397;-0.01967417,-0.06972288;0.001212319;-0.03920779,-0.1003157;-0.2962953;-0.01568569,-0.100502;-0.592151;0.03400686,-0.102676;-0.560212;-0.06432459,-0.00547218;0.3997653;0.01100089,0;0;0,-0.003772376;0.1997661;0.008903089,-0.008573456;0.4996757;0.009541473,0.1092337;0.3776538;-0.007322162,0.2529275;0.2475218;0.0418486,0.4842055;0.1574239;0.0717292,-0.1206227;0.3652586;-0.006336357,-0.2599995;0.2247571;0.02253316,-0.4918664;0.1315182;0.02918387,0.07354677;0.00490992;-0.03109283,0.08597215;-0.2939353;-0.00791711,0.0740831;-0.5873318;0.05354176,0.08649705;-0.6186919;-0.003259864,-0.06855001;0.002864071;-0.04114236,-0.09923109;-0.2942183;-0.01284489,-0.1006332;-0.5886686;0.04457528,-0.103374;-0.6164294;-0.01823992,-0.007137882;0.3997148;0.01193851,113.37
-0;0;0,-0.002828958;0.199798;0.008528984,-0.006769323;0.4997214;0.008339869,0.1101885;0.3802759;-0.01435221,0.222185;0.2262759;0.04680971,0.4228738;0.08516204;0.09488136,-0.1175181;0.3606092;-0.006677071,-0.2324333;0.2016071;0.0322179,-0.4444497;0.0692212;0.03701932,0.07273811;0.006600063;-0.03264362,0.08603684;-0.2922852;-0.01049095,0.07350965;-0.5870838;0.04370201,0.08614898;-0.613397;-0.01967417,-0.06972288;0.001212319;-0.03920779,-0.1003157;-0.2962953;-0.01568569,-0.100502;-0.592151;0.03400686,-0.102676;-0.560212;-0.06432459,-0.00547218;0.3997653;0.01100089,0;0;0,-0.003772376;0.1997661;0.008903089,-0.008573456;0.4996757;0.009541473,0.1092337;0.3776538;-0.007322162,0.2529275;0.2475218;0.0418486,0.4842055;0.1574239;0.0717292,-0.1206227;0.3652586;-0.006336357,-0.2599995;0.2247571;0.02253316,-0.4918664;0.1315182;0.02918387,0.07354677;0.00490992;-0.03109283,0.08597215;-0.2939353;-0.00791711,0.0740831;-0.5873318;0.05354176,0.08649705;-0.6186919;-0.003259864,-0.06855001;0.002864071;-0.04114236,-0.09923109;-0.2942183;-0.01284489,-0.1006332;-0.5886686;0.04457528,-0.103374;-0.6164294;-0.01823992,-0.007137882;0.3997148;0.01193851,113.3821
-0;0;0,-0.002770213;0.199797;0.008572743,-0.006623096;0.4997216;0.008415889,0.1101741;0.380325;-0.01488652,0.2186635;0.2235883;0.04564169,0.4127529;0.07321116;0.09271631,-0.1175356;0.3610403;-0.006751197,-0.2294585;0.199632;0.03093954,-0.4374842;0.06101647;0.03426584,0.07265374;0.006530939;-0.0328448,0.0859344;-0.2923583;-0.01073537,0.07272869;-0.5872313;0.0428891,0.08639681;-0.6134294;-0.02041199,-0.0698098;0.001259867;-0.03905131,-0.1004473;-0.2962838;-0.01604871,-0.1005707;-0.5922242;0.03313705,-0.1028925;-0.5602783;-0.0651923,-0.005361802;0.3997647;0.01106657,0;0;0,-0.003772376;0.1997661;0.008903089,-0.008573456;0.4996757;0.009541473,0.1092337;0.3776538;-0.007322162,0.2529275;0.2475218;0.0418486,0.4842055;0.1574239;0.0717292,-0.1206227;0.3652586;-0.006336357,-0.2599995;0.2247571;0.02253316,-0.4918664;0.1315182;0.02918387,0.07354677;0.00490992;-0.03109283,0.08597215;-0.2939353;-0.00791711,0.0740831;-0.5873318;0.05354176,0.08649705;-0.6186919;-0.003259864,-0.06855001;0.002864071;-0.04114236,-0.09923109;-0.2942183;-0.01284489,-0.1006332;-0.5886686;0.04457528,-0.103374;-0.6164294;-0.01823992,-0.007137882;0.3997148;0.01193851,113.4045
-0;0;0,-0.002770213;0.199797;0.008572743,-0.006623096;0.4997216;0.008415889,0.1101741;0.380325;-0.01488652,0.2186635;0.2235883;0.04564169,0.4127529;0.07321116;0.09271631,-0.1175356;0.3610403;-0.006751197,-0.2294585;0.199632;0.03093954,-0.4374842;0.06101647;0.03426584,0.07265374;0.006530939;-0.0328448,0.0859344;-0.2923583;-0.01073537,0.07272869;-0.5872313;0.0428891,0.08639681;-0.6134294;-0.02041199,-0.0698098;0.001259867;-0.03905131,-0.1004473;-0.2962838;-0.01604871,-0.1005707;-0.5922242;0.03313705,-0.1028925;-0.5602783;-0.0651923,-0.005361802;0.3997647;0.01106657,0;0;0,-0.003677221;0.1997638;0.008993967,-0.008290107;0.4996759;0.009758987,0.1094196;0.3775389;-0.007264705,0.2504637;0.2444288;0.04160528,0.4782552;0.1458689;0.07155448,-0.1204355;0.3656555;-0.006641136,-0.2563469;0.2216492;0.02147118,-0.4852126;0.1212645;0.02805685,0.07352564;0.00495005;-0.03113641,0.085761;-0.2938763;-0.007618275,0.07396804;-0.5873318;0.05357661,0.08644995;-0.6182396;-0.003852591,-0.06858321;0.002815291;-0.04109035,-0.09930083;-0.2942466;-0.01261749,-0.1009012;-0.5887131;0.04471388,-0.1036087;-0.6164793;-0.01809598,-0.006909794;0.3997133;0.01212,113.4162
-0;0;0,-0.002859347;0.1997932;0.008631195,-0.006857636;0.4997156;0.008475864,0.1099054;0.3806535;-0.0154046,0.2140829;0.2205949;0.04399477,0.404649;0.06530543;0.08948902,-0.1176858;0.3610751;-0.007025106,-0.2268392;0.1974476;0.02919071,-0.4288141;0.05011769;0.02922169,0.07252757;0.006677457;-0.03309326,0.08574921;-0.2922622;-0.01163903,0.07267302;-0.5871795;0.04177249,0.08617781;-0.6132948;-0.02166311,-0.06988392;0.001104054;-0.03892323,-0.1010035;-0.2964237;-0.0163666,-0.1009907;-0.5924827;0.03210045,-0.1033946;-0.5605351;-0.06622722,-0.005553023;0.3997594;0.01113443,0;0;0,-0.003677221;0.1997638;0.008993967,-0.008290107;0.4996759;0.009758987,0.1094196;0.3775389;-0.007264705,0.2504637;0.2444288;0.04160528,0.4782552;0.1458689;0.07155448,-0.1204355;0.3656555;-0.006641136,-0.2563469;0.2216492;0.02147118,-0.4852126;0.1212645;0.02805685,0.07352564;0.00495005;-0.03113641,0.085761;-0.2938763;-0.007618275,0.07396804;-0.5873318;0.05357661,0.08644995;-0.6182396;-0.003852591,-0.06858321;0.002815291;-0.04109035,-0.09930083;-0.2942466;-0.01261749,-0.1009012;-0.5887131;0.04471388,-0.1036087;-0.6164793;-0.01809598,-0.006909794;0.3997133;0.01212,113.4382
-0;0;0,-0.002997803;0.1997885;0.008693207,-0.0072214;0.4997076;0.008587422,0.1096621;0.3811354;-0.0154414,0.2106759;0.2187643;0.04314052,0.3953417;0.0561849;0.08748551,-0.1179141;0.3610155;-0.007204418,-0.2259184;0.196364;0.02779498,-0.4226566;0.0421281;0.02548325,0.07258512;0.006763427;-0.03294929,0.08532424;-0.2921909;-0.01140784,0.0725935;-0.5872937;0.04105448,0.08601236;-0.6129881;-0.02290094,-0.06981054;0.001041141;-0.03905643,-0.1011583;-0.296497;-0.01695741,-0.1010706;-0.5925941;0.03127628,-0.1034708;-0.5606414;-0.06705242,-0.00584485;0.3997521;0.01123391,0;0;0,-0.003677221;0.1997638;0.008993967,-0.008290107;0.4996759;0.009758987,0.1094196;0.3775389;-0.007264705,0.2504637;0.2444288;0.04160528,0.4782552;0.1458689;0.07155448,-0.1204355;0.3656555;-0.006641136,-0.2563469;0.2216492;0.02147118,-0.4852126;0.1212645;0.02805685,0.07352564;0.00495005;-0.03113641,0.085761;-0.2938763;-0.007618275,0.07396804;-0.5873318;0.05357661,0.08644995;-0.6182396;-0.003852591,-0.06858321;0.002815291;-0.04109035,-0.09930083;-0.2942466;-0.01261749,-0.1009012;-0.5887131;0.04471388,-0.1036087;-0.6164793;-0.01809598,-0.006909794;0.3997133;0.01212,113.4601
-0;0;0,-0.002997803;0.1997885;0.008693207,-0.0072214;0.4997076;0.008587422,0.1096621;0.3811354;-0.0154414,0.2106759;0.2187643;0.04314052,0.3953417;0.0561849;0.08748551,-0.1179141;0.3610155;-0.007204418,-0.2259184;0.196364;0.02779498,-0.4226566;0.0421281;0.02548325,0.07258512;0.006763427;-0.03294929,0.08532424;-0.2921909;-0.01140784,0.0725935;-0.5872937;0.04105448,0.08601236;-0.6129881;-0.02290094,-0.06981054;0.001041141;-0.03905643,-0.1011583;-0.296497;-0.01695741,-0.1010706;-0.5925941;0.03127628,-0.1034708;-0.5606414;-0.06705242,-0.00584485;0.3997521;0.01123391,0;0;0,-0.003622053;0.1997617;0.009062693,-0.008152285;0.4996746;0.009895243,0.1095101;0.3775456;-0.007318236,0.2475578;0.241283;0.04141889,0.4691191;0.1298019;0.07276487,-0.1204034;0.3662119;-0.007000772,-0.2526181;0.2186141;0.02009461,-0.4773992;0.1093309;0.02562863,0.07351239;0.004950496;-0.03116762,0.08564957;-0.2938631;-0.007437918,0.07382084;-0.5873585;0.05355876,0.08650509;-0.6181045;-0.004053704,-0.06860752;0.002811711;-0.04105001,-0.09933405;-0.2942521;-0.0126071,-0.1010361;-0.5887256;0.04468583,-0.1040404;-0.6154941;-0.01932634,-0.006791921;0.3997114;0.01224008,113.4719
-0;0;0,-0.002922606;0.1997923;0.008632049,-0.007029064;0.4997132;0.008460855,0.1097451;0.3808685;-0.01564038,0.2077678;0.216268;0.04178996,0.3895211;0.05001748;0.08452719,-0.1177166;0.3609027;-0.007365972,-0.2216211;0.1930619;0.02477936,-0.4141059;0.03358173;0.02081681,0.07260541;0.006839774;-0.03288877,0.08485349;-0.2920736;-0.01051087,0.07253226;-0.587382;0.04088131,0.08546536;-0.6117131;-0.02475126,-0.06978877;0.0009797313;-0.03909691,-0.1012461;-0.2965378;-0.01687638,-0.100702;-0.5926263;0.03140722,-0.1031256;-0.5606813;-0.06691951,-0.005696889;0.3997575;0.01112429,0;0;0,-0.003622053;0.1997617;0.009062693,-0.008152285;0.4996746;0.009895243,0.1095101;0.3775456;-0.007318236,0.2475578;0.241283;0.04141889,0.4691191;0.1298019;0.07276487,-0.1204034;0.3662119;-0.007000772,-0.2526181;0.2186141;0.02009461,-0.4773992;0.1093309;0.02562863,0.07351239;0.004950496;-0.03116762,0.08564957;-0.2938631;-0.007437918,0.07382084;-0.5873585;0.05355876,0.08650509;-0.6181045;-0.004053704,-0.06860752;0.002811711;-0.04105001,-0.09933405;-0.2942521;-0.0126071,-0.1010361;-0.5887256;0.04468583,-0.1040404;-0.6154941;-0.01932634,-0.006791921;0.3997114;0.01224008,113.4936
-0;0;0,-0.002922606;0.1997923;0.008632049,-0.007029064;0.4997132;0.008460855,0.1097451;0.3808685;-0.01564038,0.2077678;0.216268;0.04178996,0.3895211;0.05001748;0.08452719,-0.1177166;0.3609027;-0.007365972,-0.2216211;0.1930619;0.02477936,-0.4141059;0.03358173;0.02081681,0.07260541;0.006839774;-0.03288877,0.08485349;-0.2920736;-0.01051087,0.07253226;-0.587382;0.04088131,0.08546536;-0.6117131;-0.02475126,-0.06978877;0.0009797313;-0.03909691,-0.1012461;-0.2965378;-0.01687638,-0.100702;-0.5926263;0.03140722,-0.1031256;-0.5606813;-0.06691951,-0.005696889;0.3997575;0.01112429,0;0;0,-0.003432923;0.1997582;0.009212867,-0.00731429;0.4996791;0.01047004,0.1099828;0.3771816;-0.007219215,0.2455244;0.2383308;0.04124657,0.4641801;0.1215952;0.07384232,-0.1197822;0.3664362;-0.007108265,-0.2485674;0.2158378;0.01999309,-0.4692017;0.09832527;0.02335908,0.07350317;0.004903864;-0.03119672,0.0856944;-0.2938924;-0.007275959,0.0738784;-0.5874075;0.05362758,0.08651892;-0.6180455;-0.004145477,-0.06862962;0.002842194;-0.04101092,-0.09939962;-0.2941999;-0.01238902,-0.1011226;-0.5887212;0.04465716,-0.1045246;-0.6144331;-0.02058185,-0.006194898;0.3997094;0.01266115,113.5056
-0;0;0,-0.002782685;0.1997966;0.008578762,-0.006684321;0.4997202;0.008335738,0.1099707;0.3808276;-0.01590945,0.2055801;0.214326;0.04009126,0.3815667;0.04123054;0.07967222,-0.1176466;0.3613729;-0.00721023,-0.218954;0.1916153;0.02310762,-0.407857;0.02799034;0.01658766,0.07253496;0.006815599;-0.03304885,0.0848193;-0.2921403;-0.01126633,0.07234301;-0.5873943;0.04040012,0.08573201;-0.611156;-0.02578095,-0.06986652;0.000980973;-0.03895774,-0.1011656;-0.2965537;-0.0167428,-0.1009148;-0.5927622;0.03080173,-0.1034484;-0.5608299;-0.06751988,-0.005424866;0.3997642;0.01102125,0;0;0,-0.003432923;0.1997582;0.009212867,-0.00731429;0.4996791;0.01047004,0.1099828;0.3771816;-0.007219215,0.2455244;0.2383308;0.04124657,0.4641801;0.1215952;0.07384232,-0.1197822;0.3664362;-0.007108265,-0.2485674;0.2158378;0.01999309,-0.4692017;0.09832527;0.02335908,0.07350317;0.004903864;-0.03119672,0.0856944;-0.2938924;-0.007275959,0.0738784;-0.5874075;0.05362758,0.08651892;-0.6180455;-0.004145477,-0.06862962;0.002842194;-0.04101092,-0.09939962;-0.2941999;-0.01238902,-0.1011226;-0.5887212;0.04465716,-0.1045246;-0.6144331;-0.02058185,-0.006194898;0.3997094;0.01266115,113.5273
-0;0;0,-0.002782685;0.1997966;0.008578762,-0.006684321;0.4997202;0.008335738,0.1099707;0.3808276;-0.01590945,0.2055801;0.214326;0.04009126,0.3815667;0.04123054;0.07967222,-0.1176466;0.3613729;-0.00721023,-0.218954;0.1916153;0.02310762,-0.407857;0.02799034;0.01658766,0.07253496;0.006815599;-0.03304885,0.0848193;-0.2921403;-0.01126633,0.07234301;-0.5873943;0.04040012,0.08573201;-0.611156;-0.02578095,-0.06986652;0.000980973;-0.03895774,-0.1011656;-0.2965537;-0.0167428,-0.1009148;-0.5927622;0.03080173,-0.1034484;-0.5608299;-0.06751988,-0.005424866;0.3997642;0.01102125,0;0;0,-0.003432923;0.1997582;0.009212867,-0.00731429;0.4996791;0.01047004,0.1099828;0.3771816;-0.007219215,0.2455244;0.2383308;0.04124657,0.4641801;0.1215952;0.07384232,-0.1197822;0.3664362;-0.007108265,-0.2485674;0.2158378;0.01999309,-0.4692017;0.09832527;0.02335908,0.07350317;0.004903864;-0.03119672,0.0856944;-0.2938924;-0.007275959,0.0738784;-0.5874075;0.05362758,0.08651892;-0.6180455;-0.004145477,-0.06862962;0.002842194;-0.04101092,-0.09939962;-0.2941999;-0.01238902,-0.1011226;-0.5887212;0.04465716,-0.1045246;-0.6144331;-0.02058185,-0.006194898;0.3997094;0.01266115,113.5389
-0;0;0,-0.002782685;0.1997966;0.008578762,-0.006684321;0.4997202;0.008335738,0.1099707;0.3808276;-0.01590945,0.2055801;0.214326;0.04009126,0.3815667;0.04123054;0.07967222,-0.1176466;0.3613729;-0.00721023,-0.218954;0.1916153;0.02310762,-0.407857;0.02799034;0.01658766,0.07253496;0.006815599;-0.03304885,0.0848193;-0.2921403;-0.01126633,0.07234301;-0.5873943;0.04040012,0.08573201;-0.611156;-0.02578095,-0.06986652;0.000980973;-0.03895774,-0.1011656;-0.2965537;-0.0167428,-0.1009148;-0.5927622;0.03080173,-0.1034484;-0.5608299;-0.06751988,-0.005424866;0.3997642;0.01102125,0;0;0,-0.003432923;0.1997582;0.009212867,-0.00731429;0.4996791;0.01047004,0.1099828;0.3771816;-0.007219215,0.2455244;0.2383308;0.04124657,0.4641801;0.1215952;0.07384232,-0.1197822;0.3664362;-0.007108265,-0.2485674;0.2158378;0.01999309,-0.4692017;0.09832527;0.02335908,0.07350317;0.004903864;-0.03119672,0.0856944;-0.2938924;-0.007275959,0.0738784;-0.5874075;0.05362758,0.08651892;-0.6180455;-0.004145477,-0.06862962;0.002842194;-0.04101092,-0.09939962;-0.2941999;-0.01238902,-0.1011226;-0.5887212;0.04465716,-0.1045246;-0.6144331;-0.02058185,-0.006194898;0.3997094;0.01266115,113.5501
-0;0;0,-0.002665562;0.1998001;0.008534306,-0.006412521;0.4997255;0.008209208,0.1102065;0.3805169;-0.01571533,0.2031573;0.2118451;0.03822897,0.3750101;0.03427826;0.07613198,-0.1175768;0.3619692;-0.007613931,-0.2156872;0.1899155;0.02016879,-0.400291;0.02146749;0.01333449,0.07249324;0.006769969;-0.03314963,0.08486637;-0.292189;-0.01145925,0.07254191;-0.5875136;0.0398388,0.08641043;-0.6119552;-0.02547669,-0.06992322;0.001014301;-0.03885502,-0.1010041;-0.2965352;-0.01653289,-0.1006472;-0.5928676;0.03023283,-0.1030058;-0.5609372;-0.06809277,-0.005204616;0.3997697;0.01092303,0;0;0,-0.003273091;0.1997543;0.009355446,-0.006914083;0.4996772;0.01075573,0.1102081;0.3768634;-0.007246589,0.2430085;0.2353424;0.04108413,0.4573359;0.1107997;0.07353256,-0.1194472;0.366577;-0.007106356,-0.2458614;0.213925;0.01966701,-0.4603471;0.08548874;0.01983129,0.07350711;0.004907701;-0.03118684,0.08565085;-0.2938891;-0.007250013,0.07389561;-0.5874195;0.05359207,0.08655555;-0.6179279;-0.004357256,-0.06862118;0.002831444;-0.0410258,-0.09942557;-0.2941973;-0.01230279,-0.1013533;-0.5887439;0.04460567,-0.1037865;-0.6133558;-0.02193113,-0.005860749;0.3997059;0.01290862,113.5723
-0;0;0,-0.002665562;0.1998001;0.008534306,-0.006412521;0.4997255;0.008209208,0.1102065;0.3805169;-0.01571533,0.2031573;0.2118451;0.03822897,0.3750101;0.03427826;0.07613198,-0.1175768;0.3619692;-0.007613931,-0.2156872;0.1899155;0.02016879,-0.400291;0.02146749;0.01333449,0.07249324;0.006769969;-0.03314963,0.08486637;-0.292189;-0.01145925,0.07254191;-0.5875136;0.0398388,0.08641043;-0.6119552;-0.02547669,-0.06992322;0.001014301;-0.03885502,-0.1010041;-0.2965352;-0.01653289,-0.1006472;-0.5928676;0.03023283,-0.1030058;-0.5609372;-0.06809277,-0.005204616;0.3997697;0.01092303,0;0;0,-0.003273091;0.1997543;0.009355446,-0.006914083;0.4996772;0.01075573,0.1102081;0.3768634;-0.007246589,0.2430085;0.2353424;0.04108413,0.4573359;0.1107997;0.07353256,-0.1194472;0.366577;-0.007106356,-0.2458614;0.213925;0.01966701,-0.4603471;0.08548874;0.01983129,0.07350711;0.004907701;-0.03118684,0.08565085;-0.2938891;-0.007250013,0.07389561;-0.5874195;0.05359207,0.08655555;-0.6179279;-0.004357256,-0.06862118;0.002831444;-0.0410258,-0.09942557;-0.2941973;-0.01230279,-0.1013533;-0.5887439;0.04460567,-0.1037865;-0.6133558;-0.02193113,-0.005860749;0.3997059;0.01290862,113.5835
-0;0;0,-0.00258968;0.1997955;0.008664085,-0.006186903;0.4997229;0.008532468,0.1102942;0.3806121;-0.01588152,0.2010656;0.2103532;0.03677244,0.367218;0.02712287;0.07310528,-0.1174664;0.3624134;-0.007892818,-0.2125656;0.1884804;0.01863025,-0.3924405;0.0151398;0.008729042,0.07253265;0.006810242;-0.03305504,0.08479702;-0.2921391;-0.01117239,0.07264344;-0.5876017;0.0393666,0.08645508;-0.6121718;-0.02581418,-0.06985887;0.0009880891;-0.03897129,-0.1010063;-0.2965413;-0.01647431,-0.1001828;-0.5929813;0.02959763,-0.1025112;-0.5610326;-0.06873207,-0.005034338;0.3997647;0.01118347,0;0;0,-0.003273091;0.1997543;0.009355446,-0.006914083;0.4996772;0.01075573,0.1102081;0.3768634;-0.007246589,0.2430085;0.2353424;0.04108413,0.4573359;0.1107997;0.07353256,-0.1194472;0.366577;-0.007106356,-0.2458614;0.213925;0.01966701,-0.4603471;0.08548874;0.01983129,0.07350711;0.004907701;-0.03118684,0.08565085;-0.2938891;-0.007250013,0.07389561;-0.5874195;0.05359207,0.08655555;-0.6179279;-0.004357256,-0.06862118;0.002831444;-0.0410258,-0.09942557;-0.2941973;-0.01230279,-0.1013533;-0.5887439;0.04460567,-0.1037865;-0.6133558;-0.02193113,-0.005860749;0.3997059;0.01290862,113.6056
-0;0;0,-0.00258968;0.1997955;0.008664085,-0.006186903;0.4997229;0.008532468,0.1102942;0.3806121;-0.01588152,0.2010656;0.2103532;0.03677244,0.367218;0.02712287;0.07310528,-0.1174664;0.3624134;-0.007892818,-0.2125656;0.1884804;0.01863025,-0.3924405;0.0151398;0.008729042,0.07253265;0.006810242;-0.03305504,0.08479702;-0.2921391;-0.01117239,0.07264344;-0.5876017;0.0393666,0.08645508;-0.6121718;-0.02581418,-0.06985887;0.0009880891;-0.03897129,-0.1010063;-0.2965413;-0.01647431,-0.1001828;-0.5929813;0.02959763,-0.1025112;-0.5610326;-0.06873207,-0.005034338;0.3997647;0.01118347,0;0;0,-0.003053337;0.1997509;0.009500596,-0.006211429;0.499678;0.01113443,0.1106898;0.3768339;-0.007263845,0.2401252;0.2321228;0.04074821,0.4508928;0.1013865;0.07213333,-0.1189956;0.3670503;-0.00706175,-0.2428756;0.2121897;0.01886044,-0.4523046;0.07567088;0.01741323,0.07349824;0.00489702;-0.03120943,0.08563366;-0.2938884;-0.007125448,0.07394431;-0.5873917;0.05385938,0.08642315;-0.6181101;-0.003836628,-0.06863823;0.002855097;-0.04099563,-0.0994834;-0.2941553;-0.012127,-0.1015722;-0.5887001;0.04478554,-0.1037455;-0.6129493;-0.02216464,-0.005317524;0.3997036;0.01321257,113.6171
-0;0;0,-0.00246946;0.1997903;0.008818167,-0.005840645;0.4997202;0.00891763,0.1105284;0.3803157;-0.01549308,0.1991189;0.2083082;0.03515431,0.3615054;0.02141519;0.06981871,-0.1171693;0.3626241;-0.008187548,-0.2106273;0.1876327;0.01718225,-0.3860278;0.009915873;0.004878451,0.07250056;0.006788102;-0.03312991,0.08465158;-0.2921704;-0.01130839,0.0724548;-0.5876955;0.03885294,0.08631122;-0.6121988;-0.0263947,-0.06992797;0.001001051;-0.03884684,-0.1009958;-0.296568;-0.01676873,-0.1002373;-0.5930849;0.02880733,-0.1023373;-0.56112;-0.06953049,-0.0047698;0.3997591;0.01149341,0;0;0,-0.003053337;0.1997509;0.009500596,-0.006211429;0.499678;0.01113443,0.1106898;0.3768339;-0.007263845,0.2401252;0.2321228;0.04074821,0.4508928;0.1013865;0.07213333,-0.1189956;0.3670503;-0.00706175,-0.2428756;0.2121897;0.01886044,-0.4523046;0.07567088;0.01741323,0.07349824;0.00489702;-0.03120943,0.08563366;-0.2938884;-0.007125448,0.07394431;-0.5873917;0.05385938,0.08642315;-0.6181101;-0.003836628,-0.06863823;0.002855097;-0.04099563,-0.0994834;-0.2941553;-0.012127,-0.1015722;-0.5887001;0.04478554,-0.1037455;-0.6129493;-0.02216464,-0.005317524;0.3997036;0.01321257,113.6392
-0;0;0,-0.00246946;0.1997903;0.008818167,-0.005840645;0.4997202;0.00891763,0.1105284;0.3803157;-0.01549308,0.1991189;0.2083082;0.03515431,0.3615054;0.02141519;0.06981871,-0.1171693;0.3626241;-0.008187548,-0.2106273;0.1876327;0.01718225,-0.3860278;0.009915873;0.004878451,0.07250056;0.006788102;-0.03312991,0.08465158;-0.2921704;-0.01130839,0.0724548;-0.5876955;0.03885294,0.08631122;-0.6121988;-0.0263947,-0.06992797;0.001001051;-0.03884684,-0.1009958;-0.296568;-0.01676873,-0.1002373;-0.5930849;0.02880733,-0.1023373;-0.56112;-0.06953049,-0.0047698;0.3997591;0.01149341,0;0;0,-0.002950236;0.1997504;0.009543379,-0.005912544;0.4996793;0.01117884,0.1109042;0.3767386;-0.007249498,0.2374177;0.2293993;0.04055716,0.4452829;0.09389284;0.07105386,-0.1187462;0.3672327;-0.007353264,-0.2399143;0.2100994;0.01769505,-0.441933;0.06285124;0.01516084,0.07349183;0.004889775;-0.03122562,0.08553174;-0.2938851;-0.006963268,0.07392199;-0.5874304;0.05383445,0.08670028;-0.6176856;-0.004439086,-0.06865741;0.002875119;-0.04096211,-0.09956386;-0.2941194;-0.01199548,-0.101591;-0.5886806;0.04483414,-0.1030127;-0.6141692;-0.02073607,-0.005077642;0.3997045;0.01326338,113.6506
-0;0;0,-0.002396317;0.1997903;0.008836939,-0.005651996;0.4997214;0.008945371,0.1106116;0.3804235;-0.01582001,0.1976909;0.2072616;0.03349705,0.3557697;0.0163857;0.06632198,-0.1169842;0.3626554;-0.008424523,-0.2067248;0.1853991;0.01452792,-0.3797489;0.005364627;0.002270361,0.07249207;0.006774386;-0.03315127,0.0846636;-0.2921934;-0.01146924,0.07248953;-0.5877696;0.03839567,0.08629627;-0.6122067;-0.02693807,-0.0699733;0.001009444;-0.0387649,-0.1009217;-0.2965787;-0.01677583,-0.1001981;-0.5931447;0.02848043,-0.1023213;-0.5611777;-0.06985726,-0.004621181;0.3997599;0.01152061,0;0;0,-0.002950236;0.1997504;0.009543379,-0.005912544;0.4996793;0.01117884,0.1109042;0.3767386;-0.007249498,0.2374177;0.2293993;0.04055716,0.4452829;0.09389284;0.07105386,-0.1187462;0.3672327;-0.007353264,-0.2399143;0.2100994;0.01769505,-0.441933;0.06285124;0.01516084,0.07349183;0.004889775;-0.03122562,0.08553174;-0.2938851;-0.006963268,0.07392199;-0.5874304;0.05383445,0.08670028;-0.6176856;-0.004439086,-0.06865741;0.002875119;-0.04096211,-0.09956386;-0.2941194;-0.01199548,-0.101591;-0.5886806;0.04483414,-0.1030127;-0.6141692;-0.02073607,-0.005077642;0.3997045;0.01326338,113.6632
-0;0;0,-0.002396317;0.1997903;0.008836939,-0.005651996;0.4997214;0.008945371,0.1106116;0.3804235;-0.01582001,0.1976909;0.2072616;0.03349705,0.3557697;0.0163857;0.06632198,-0.1169842;0.3626554;-0.008424523,-0.2067248;0.1853991;0.01452792,-0.3797489;0.005364627;0.002270361,0.07249207;0.006774386;-0.03315127,0.0846636;-0.2921934;-0.01146924,0.07248953;-0.5877696;0.03839567,0.08629627;-0.6122067;-0.02693807,-0.0699733;0.001009444;-0.0387649,-0.1009217;-0.2965787;-0.01677583,-0.1001981;-0.5931447;0.02848043,-0.1023213;-0.5611777;-0.06985726,-0.004621181;0.3997599;0.01152061,0;0;0,-0.002950236;0.1997504;0.009543379,-0.005912544;0.4996793;0.01117884,0.1109042;0.3767386;-0.007249498,0.2374177;0.2293993;0.04055716,0.4452829;0.09389284;0.07105386,-0.1187462;0.3672327;-0.007353264,-0.2399143;0.2100994;0.01769505,-0.441933;0.06285124;0.01516084,0.07349183;0.004889775;-0.03122562,0.08553174;-0.2938851;-0.006963268,0.07392199;-0.5874304;0.05383445,0.08670028;-0.6176856;-0.004439086,-0.06865741;0.002875119;-0.04096211,-0.09956386;-0.2941194;-0.01199548,-0.101591;-0.5886806;0.04483414,-0.1030127;-0.6141692;-0.02073607,-0.005077642;0.3997045;0.01326338,113.6837
-0;0;0,-0.002523242;0.1997985;0.008614734,-0.005923209;0.4997281;0.008411438,0.1103259;0.3803959;-0.01646638,0.1955058;0.2059139;0.03149627,0.3498696;0.01178423;0.06288876,-0.1171073;0.3625569;-0.009249009,-0.2054794;0.1845109;0.01288693,-0.375164;0.001469105;-0.001354929,0.07244269;0.006764058;-0.03326114,0.0846004;-0.292233;-0.01197876,0.07222355;-0.5879118;0.03722348,0.08660467;-0.6124629;-0.02785579,-0.06998647;0.001034506;-0.03874047,-0.1011569;-0.296611;-0.0178705,-0.09993251;-0.5930613;0.02812695,-0.102017;-0.5611172;-0.07020736,-0.004850115;0.3997697;0.01108619,0;0;0,-0.002736102;0.1997492;0.009630652,-0.005347075;0.4996808;0.01130022,0.1113331;0.3769744;-0.007509792,0.2337754;0.2260632;0.03975214,0.4390891;0.08663003;0.06983013,-0.118372;0.3675089;-0.007245064,-0.2355304;0.20707;0.01584747,-0.4346566;0.0559658;0.01180667,0.07349192;0.0048841;-0.0312263,0.08542265;-0.293899;-0.007011632,0.07366237;-0.5874537;0.05371148,0.08698783;-0.6175198;-0.00469958,-0.06864159;0.002874419;-0.04098865,-0.09959354;-0.2941194;-0.01206359,-0.1017762;-0.5886765;0.0447818,-0.101932;-0.6164389;-0.01809083,-0.004627228;0.3997051;0.01338308,113.6952
-0;0;0,-0.002523242;0.1997985;0.008614734,-0.005923209;0.4997281;0.008411438,0.1103259;0.3803959;-0.01646638,0.1955058;0.2059139;0.03149627,0.3498696;0.01178423;0.06288876,-0.1171073;0.3625569;-0.009249009,-0.2054794;0.1845109;0.01288693,-0.375164;0.001469105;-0.001354929,0.07244269;0.006764058;-0.03326114,0.0846004;-0.292233;-0.01197876,0.07222355;-0.5879118;0.03722348,0.08660467;-0.6124629;-0.02785579,-0.06998647;0.001034506;-0.03874047,-0.1011569;-0.296611;-0.0178705,-0.09993251;-0.5930613;0.02812695,-0.102017;-0.5611172;-0.07020736,-0.004850115;0.3997697;0.01108619,0;0;0,-0.002736102;0.1997492;0.009630652,-0.005347075;0.4996808;0.01130022,0.1113331;0.3769744;-0.007509792,0.2337754;0.2260632;0.03975214,0.4390891;0.08663003;0.06983013,-0.118372;0.3675089;-0.007245064,-0.2355304;0.20707;0.01584747,-0.4346566;0.0559658;0.01180667,0.07349192;0.0048841;-0.0312263,0.08542265;-0.293899;-0.007011632,0.07366237;-0.5874537;0.05371148,0.08698783;-0.6175198;-0.00469958,-0.06864159;0.002874419;-0.04098865,-0.09959354;-0.2941194;-0.01206359,-0.1017762;-0.5886765;0.0447818,-0.101932;-0.6164389;-0.01809083,-0.004627228;0.3997051;0.01338308,113.7061
-0;0;0,-0.002527331;0.1998026;0.008516158,-0.005951253;0.4997317;0.008137649,0.1103095;0.3807203;-0.0168894,0.1933261;0.2046615;0.02906203,0.3444967;0.007752791;0.05863225,-0.1170692;0.3625324;-0.009721331,-0.2038464;0.1835782;0.01137676,-0.3707281;-0.001860037;-0.004844863,0.07243899;0.006793455;-0.03326321,0.08453244;-0.2922419;-0.01248824,0.07194134;-0.5878899;0.03684471,0.08643686;-0.6118603;-0.02886872,-0.07002009;0.000992346;-0.03868077,-0.101132;-0.2966762;-0.01805316,-0.1001054;-0.5932523;0.0271308,-0.10216;-0.5613163;-0.07120267,-0.004869227;0.399775;0.01087351,0;0;0,-0.002736102;0.1997492;0.009630652,-0.005347075;0.4996808;0.01130022,0.1113331;0.3769744;-0.007509792,0.2337754;0.2260632;0.03975214,0.4390891;0.08663003;0.06983013,-0.118372;0.3675089;-0.007245064,-0.2355304;0.20707;0.01584747,-0.4346566;0.0559658;0.01180667,0.07349192;0.0048841;-0.0312263,0.08542265;-0.293899;-0.007011632,0.07366237;-0.5874537;0.05371148,0.08698783;-0.6175198;-0.00469958,-0.06864159;0.002874419;-0.04098865,-0.09959354;-0.2941194;-0.01206359,-0.1017762;-0.5886765;0.0447818,-0.101932;-0.6164389;-0.01809083,-0.004627228;0.3997051;0.01338308,113.7285
-0;0;0,-0.002527331;0.1998026;0.008516158,-0.005951253;0.4997317;0.008137649,0.1103095;0.3807203;-0.0168894,0.1933261;0.2046615;0.02906203,0.3444967;0.007752791;0.05863225,-0.1170692;0.3625324;-0.009721331,-0.2038464;0.1835782;0.01137676,-0.3707281;-0.001860037;-0.004844863,0.07243899;0.006793455;-0.03326321,0.08453244;-0.2922419;-0.01248824,0.07194134;-0.5878899;0.03684471,0.08643686;-0.6118603;-0.02886872,-0.07002009;0.000992346;-0.03868077,-0.101132;-0.2966762;-0.01805316,-0.1001054;-0.5932523;0.0271308,-0.10216;-0.5613163;-0.07120267,-0.004869227;0.399775;0.01087351,0;0;0,-0.002638237;0.1997476;0.009692613,-0.004992574;0.4996805;0.01149532,0.1116246;0.3772115;-0.007473007,0.231298;0.2239064;0.03917288,0.4330524;0.07923165;0.06857271,-0.1181336;0.3675883;-0.007071292,-0.2327908;0.2051672;0.01468009,-0.428687;0.04993565;0.009402432,0.07348594;0.004866103;-0.03124319,0.08536651;-0.293918;-0.007016083,0.07364592;-0.5874783;0.05368769,0.08693606;-0.6176168;-0.004631981,-0.06867131;0.002898826;-0.04093712,-0.09963477;-0.2940565;-0.01163135,-0.1014911;-0.5886052;0.04526869,-0.1015209;-0.5563135;-0.0531509,-0.0043617;0.3997033;0.01353415,113.7509
-0;0;0,-0.002517758;0.1998019;0.008535696,-0.005945636;0.4997306;0.008133348,0.1102851;0.3808723;-0.01711774,0.1922566;0.2040179;0.0276392,0.3402075;0.004531547;0.05620039,-0.1169785;0.3626504;-0.01036336,-0.2026175;0.1830607;0.009971518,-0.3658244;-0.005467311;-0.007936301,0.07270024;0.006596388;-0.03272861,0.08466683;-0.2925017;-0.01280091,0.07211536;-0.5882126;0.03616378,0.08646688;-0.6120482;-0.02973264,-0.06982701;0.001133806;-0.03902439,-0.1008832;-0.2965073;-0.01792181,-0.1000156;-0.5932125;0.02640932,-0.09752034;-0.6192533;-0.03848723,-0.004860892;0.3997744;0.01088434,0;0;0,-0.002638237;0.1997476;0.009692613,-0.004992574;0.4996805;0.01149532,0.1116246;0.3772115;-0.007473007,0.231298;0.2239064;0.03917288,0.4330524;0.07923165;0.06857271,-0.1181336;0.3675883;-0.007071292,-0.2327908;0.2051672;0.01468009,-0.428687;0.04993565;0.009402432,0.07348594;0.004866103;-0.03124319,0.08536651;-0.293918;-0.007016083,0.07364592;-0.5874783;0.05368769,0.08693606;-0.6176168;-0.004631981,-0.06867131;0.002898826;-0.04093712,-0.09963477;-0.2940565;-0.01163135,-0.1014911;-0.5886052;0.04526869,-0.1015209;-0.5563135;-0.0531509,-0.0043617;0.3997033;0.01353415,113.7735
-0;0;0,-0.002462679;0.1998063;0.00844838,-0.005827747;0.4997355;0.00791366,0.1103247;0.3811137;-0.01768746,0.1915359;0.2037085;0.02626839,0.3363061;0.001676515;0.05318859,-0.1168424;0.3628387;-0.01104993,-0.2010165;0.1824236;0.008058661,-0.3606894;-0.009095371;-0.009969904,0.07261171;0.006636948;-0.03291642,0.08482655;-0.2924699;-0.01327211,0.07219356;-0.5882381;0.03532436,0.08652282;-0.6119642;-0.03069939,-0.06990371;0.001094517;-0.03888797,-0.1005992;-0.2966091;-0.01814358,-0.09991584;-0.5934124;0.02552973,-0.1018176;-0.5614793;-0.07280628,-0.00476281;0.3997803;0.01070997,0;0;0,-0.002638237;0.1997476;0.009692613,-0.004992574;0.4996805;0.01149532,0.1116246;0.3772115;-0.007473007,0.231298;0.2239064;0.03917288,0.4330524;0.07923165;0.06857271,-0.1181336;0.3675883;-0.007071292,-0.2327908;0.2051672;0.01468009,-0.428687;0.04993565;0.009402432,0.07348594;0.004866103;-0.03124319,0.08536651;-0.293918;-0.007016083,0.07364592;-0.5874783;0.05368769,0.08693606;-0.6176168;-0.004631981,-0.06867131;0.002898826;-0.04093712,-0.09963477;-0.2940565;-0.01163135,-0.1014911;-0.5886052;0.04526869,-0.1015209;-0.5563135;-0.0531509,-0.0043617;0.3997033;0.01353415,113.7954
-0;0;0,-0.002462679;0.1998063;0.00844838,-0.005827747;0.4997355;0.00791366,0.1103247;0.3811137;-0.01768746,0.1915359;0.2037085;0.02626839,0.3363061;0.001676515;0.05318859,-0.1168424;0.3628387;-0.01104993,-0.2010165;0.1824236;0.008058661,-0.3606894;-0.009095371;-0.009969904,0.07261171;0.006636948;-0.03291642,0.08482655;-0.2924699;-0.01327211,0.07219356;-0.5882381;0.03532436,0.08652282;-0.6119642;-0.03069939,-0.06990371;0.001094517;-0.03888797,-0.1005992;-0.2966091;-0.01814358,-0.09991584;-0.5934124;0.02552973,-0.1018176;-0.5614793;-0.07280628,-0.00476281;0.3997803;0.01070997,0;0;0,-0.002524782;0.1997454;0.009767923,-0.004724216;0.4996788;0.01166229,0.1118874;0.3775188;-0.007448193,0.2282741;0.2214779;0.03843629,0.4273469;0.0728133;0.06616428,-0.117972;0.3679513;-0.007152027,-0.2301232;0.2036278;0.0133392,-0.4195443;0.04064038;0.005941386,0.07347646;0.004852013;-0.03126766,0.08533917;-0.2939269;-0.00696831,0.07351967;-0.5875139;0.05358691,0.08705401;-0.6169329;-0.00565365,-0.06868658;0.002921513;-0.04090988,-0.09969831;-0.294034;-0.01165729,-0.1015666;-0.5886103;0.04509911,-0.1012598;-0.6168277;-0.01720609,-0.004137665;0.3997008;0.01367365,113.8066
-0;0;0,-0.002462679;0.1998063;0.00844838,-0.005827747;0.4997355;0.00791366,0.1103247;0.3811137;-0.01768746,0.1915359;0.2037085;0.02626839,0.3363061;0.001676515;0.05318859,-0.1168424;0.3628387;-0.01104993,-0.2010165;0.1824236;0.008058661,-0.3606894;-0.009095371;-0.009969904,0.07261171;0.006636948;-0.03291642,0.08482655;-0.2924699;-0.01327211,0.07219356;-0.5882381;0.03532436,0.08652282;-0.6119642;-0.03069939,-0.06990371;0.001094517;-0.03888797,-0.1005992;-0.2966091;-0.01814358,-0.09991584;-0.5934124;0.02552973,-0.1018176;-0.5614793;-0.07280628,-0.00476281;0.3997803;0.01070997,0;0;0,-0.002524782;0.1997454;0.009767923,-0.004724216;0.4996788;0.01166229,0.1118874;0.3775188;-0.007448193,0.2282741;0.2214779;0.03843629,0.4273469;0.0728133;0.06616428,-0.117972;0.3679513;-0.007152027,-0.2301232;0.2036278;0.0133392,-0.4195443;0.04064038;0.005941386,0.07347646;0.004852013;-0.03126766,0.08533917;-0.2939269;-0.00696831,0.07351967;-0.5875139;0.05358691,0.08705401;-0.6169329;-0.00565365,-0.06868658;0.002921513;-0.04090988,-0.09969831;-0.294034;-0.01165729,-0.1015666;-0.5886103;0.04509911,-0.1012598;-0.6168277;-0.01720609,-0.004137665;0.3997008;0.01367365,113.8179
-0;0;0,-0.002281589;0.199811;0.008387261,-0.005368949;0.4997433;0.007821065,0.1107066;0.3807442;-0.01742902,0.1906771;0.2024212;0.0250636,0.3329854;-0.001575679;0.05023523,-0.1164223;0.3628832;-0.01151156,-0.1994139;0.181804;0.006452195,-0.3564196;-0.01183367;-0.01235436,0.07266718;0.006528582;-0.03281551,0.08507352;-0.2925966;-0.01357548,0.07248637;-0.588392;0.03486732,0.08672251;-0.612431;-0.03082555,-0.06983323;0.001198348;-0.03901133,-0.1003465;-0.296544;-0.01855534,-0.09973736;-0.593376;0.02492247,-0.1014042;-0.5614488;-0.07341674,-0.004403869;0.3997872;0.01062351,0;0;0,-0.002524782;0.1997454;0.009767923,-0.004724216;0.4996788;0.01166229,0.1118874;0.3775188;-0.007448193,0.2282741;0.2214779;0.03843629,0.4273469;0.0728133;0.06616428,-0.117972;0.3679513;-0.007152027,-0.2301232;0.2036278;0.0133392,-0.4195443;0.04064038;0.005941386,0.07347646;0.004852013;-0.03126766,0.08533917;-0.2939269;-0.00696831,0.07351967;-0.5875139;0.05358691,0.08705401;-0.6169329;-0.00565365,-0.06868658;0.002921513;-0.04090988,-0.09969831;-0.294034;-0.01165729,-0.1015666;-0.5886103;0.04509911,-0.1012598;-0.6168277;-0.01720609,-0.004137665;0.3997008;0.01367365,113.8401
-0;0;0,-0.002281589;0.199811;0.008387261,-0.005368949;0.4997433;0.007821065,0.1107066;0.3807442;-0.01742902,0.1906771;0.2024212;0.0250636,0.3329854;-0.001575679;0.05023523,-0.1164223;0.3628832;-0.01151156,-0.1994139;0.181804;0.006452195,-0.3564196;-0.01183367;-0.01235436,0.07266718;0.006528582;-0.03281551,0.08507352;-0.2925966;-0.01357548,0.07248637;-0.588392;0.03486732,0.08672251;-0.612431;-0.03082555,-0.06983323;0.001198348;-0.03901133,-0.1003465;-0.296544;-0.01855534,-0.09973736;-0.593376;0.02492247,-0.1014042;-0.5614488;-0.07341674,-0.004403869;0.3997872;0.01062351,0;0;0,-0.002384634;0.1997422;0.009867335,-0.004468692;0.4996758;0.01182966,0.1121818;0.3780923;-0.00752926,0.2259133;0.2199138;0.03768932,0.4212589;0.06606697;0.06359728,-0.1177645;0.3681081;-0.007135202,-0.2263495;0.201319;0.0126313,-0.4133581;0.0357056;0.002632678,0.0734745;0.004809769;-0.03127882,0.08529465;-0.293963;-0.006884012,0.07356549;-0.5875584;0.0536483,0.08698547;-0.6171281;-0.005415931,-0.06867146;0.002953098;-0.04093299,-0.09972017;-0.2940145;-0.01184308,-0.1016925;-0.5885515;0.04511338,-0.102386;-0.6156541;-0.01856318,-0.003909948;0.3996973;0.0138234,113.8517
-0;0;0,-0.002218721;0.1998177;0.008243136,-0.005262384;0.4997507;0.00756599,0.1108144;0.3807889;-0.01764169,0.190138;0.2020421;0.02427909,0.3297449;-0.00401926;0.04770176,-0.1162928;0.3627405;-0.01165172,-0.1982088;0.1810854;0.005411931,-0.3532781;-0.01402156;-0.01425525,0.07270209;0.006448756;-0.03275393,0.08521681;-0.2926762;-0.01357886,0.07263003;-0.5884726;0.03485745,0.0868626;-0.6121714;-0.03121763,-0.06980395;0.001272764;-0.03906135,-0.1000506;-0.2965001;-0.01865338,-0.09927013;-0.5932853;0.02514116,-0.1009757;-0.5613749;-0.07319427,-0.004306384;0.3997953;0.01039348,0;0;0,-0.002384634;0.1997422;0.009867335,-0.004468692;0.4996758;0.01182966,0.1121818;0.3780923;-0.00752926,0.2259133;0.2199138;0.03768932,0.4212589;0.06606697;0.06359728,-0.1177645;0.3681081;-0.007135202,-0.2263495;0.201319;0.0126313,-0.4133581;0.0357056;0.002632678,0.0734745;0.004809769;-0.03127882,0.08529465;-0.293963;-0.006884012,0.07356549;-0.5875584;0.0536483,0.08698547;-0.6171281;-0.005415931,-0.06867146;0.002953098;-0.04093299,-0.09972017;-0.2940145;-0.01184308,-0.1016925;-0.5885515;0.04511338,-0.102386;-0.6156541;-0.01856318,-0.003909948;0.3996973;0.0138234,113.8737
-0;0;0,-0.002224135;0.1998221;0.008134803,-0.005291464;0.4997546;0.007297916,0.1108255;0.3808724;-0.01778691,0.188973;0.2013845;0.02316493,0.3262938;-0.006338134;0.04539786,-0.1163034;0.3627316;-0.01189039,-0.1967534;0.1803631;0.004527172,-0.350289;-0.01590258;-0.01563696,0.07264613;0.006386085;-0.0328901,0.08517519;-0.2927393;-0.01373108,0.07316694;-0.5886824;0.0339501,0.08659537;-0.6130387;-0.0315543,-0.06983829;0.001366307;-0.03899674,-0.1002166;-0.2964184;-0.01896088,-0.0993619;-0.5932413;0.02457593,-0.09775034;-0.6181843;-0.04161272,-0.004325812;0.3998007;0.01017542,0;0;0,-0.002384634;0.1997422;0.009867335,-0.004468692;0.4996758;0.01182966,0.1121818;0.3780923;-0.00752926,0.2259133;0.2199138;0.03768932,0.4212589;0.06606697;0.06359728,-0.1177645;0.3681081;-0.007135202,-0.2263495;0.201319;0.0126313,-0.4133581;0.0357056;0.002632678,0.0734745;0.004809769;-0.03127882,0.08529465;-0.293963;-0.006884012,0.07356549;-0.5875584;0.0536483,0.08698547;-0.6171281;-0.005415931,-0.06867146;0.002953098;-0.04093299,-0.09972017;-0.2940145;-0.01184308,-0.1016925;-0.5885515;0.04511338,-0.102386;-0.6156541;-0.01856318,-0.003909948;0.3996973;0.0138234,113.8957
-0;0;0,-0.002224135;0.1998221;0.008134803,-0.005291464;0.4997546;0.007297916,0.1108255;0.3808724;-0.01778691,0.188973;0.2013845;0.02316493,0.3262938;-0.006338134;0.04539786,-0.1163034;0.3627316;-0.01189039,-0.1967534;0.1803631;0.004527172,-0.350289;-0.01590258;-0.01563696,0.07264613;0.006386085;-0.0328901,0.08517519;-0.2927393;-0.01373108,0.07316694;-0.5886824;0.0339501,0.08659537;-0.6130387;-0.0315543,-0.06983829;0.001366307;-0.03899674,-0.1002166;-0.2964184;-0.01896088,-0.0993619;-0.5932413;0.02457593,-0.09775034;-0.6181843;-0.04161272,-0.004325812;0.3998007;0.01017542,0;0;0,-0.002182587;0.1997376;0.01000621,-0.003961838;0.4996719;0.01215452,0.1125441;0.378148;-0.007590554,0.2237689;0.2181997;0.03763753,0.4162704;0.06035337;0.06060947,-0.1173182;0.368502;-0.007645541,-0.2238141;0.2003214;0.01169109,-0.4065161;0.03000331;0.001120901,0.07348041;0.004792805;-0.03126753,0.0852608;-0.2939659;-0.006681368,0.07356226;-0.5876061;0.05363907,0.08687042;-0.6178358;-0.004551034,-0.06866626;0.002963937;-0.04094094,-0.09982099;-0.2939534;-0.01145421,-0.1015345;-0.5885496;0.04520385,-0.1022729;-0.6157441;-0.01836088,-0.003498665;0.3996916;0.01408753,113.9071
-0;0;0,-0.002227651;0.1998232;0.008106247,-0.005276053;0.4997557;0.007230748,0.1108355;0.3806654;-0.01768209,0.1876262;0.2003132;0.02202027,0.323276;-0.00862734;0.04306714,-0.1163112;0.3628485;-0.01206448,-0.1956052;0.1799013;0.003516675,-0.3459467;-0.01876785;-0.01717168,0.07266942;0.006329436;-0.03284954,0.0850871;-0.2928051;-0.01376201,0.07305536;-0.5887268;0.03404631,0.08663427;-0.6123308;-0.03227155,-0.06981379;0.001421141;-0.03903864,-0.100166;-0.2963448;-0.01868651,-0.09918623;-0.593205;0.02459247,-0.1007759;-0.5613254;-0.07373922,-0.004319442;0.3998021;0.01012293,0;0;0,-0.002182587;0.1997376;0.01000621,-0.003961838;0.4996719;0.01215452,0.1125441;0.378148;-0.007590554,0.2237689;0.2181997;0.03763753,0.4162704;0.06035337;0.06060947,-0.1173182;0.368502;-0.007645541,-0.2238141;0.2003214;0.01169109,-0.4065161;0.03000331;0.001120901,0.07348041;0.004792805;-0.03126753,0.0852608;-0.2939659;-0.006681368,0.07356226;-0.5876061;0.05363907,0.08687042;-0.6178358;-0.004551034,-0.06866626;0.002963937;-0.04094094,-0.09982099;-0.2939534;-0.01145421,-0.1015345;-0.5885496;0.04520385,-0.1022729;-0.6157441;-0.01836088,-0.003498665;0.3996916;0.01408753,113.9296
-0;0;0,-0.002227651;0.1998232;0.008106247,-0.005276053;0.4997557;0.007230748,0.1108355;0.3806654;-0.01768209,0.1876262;0.2003132;0.02202027,0.323276;-0.00862734;0.04306714,-0.1163112;0.3628485;-0.01206448,-0.1956052;0.1799013;0.003516675,-0.3459467;-0.01876785;-0.01717168,0.07266942;0.006329436;-0.03284954,0.0850871;-0.2928051;-0.01376201,0.07305536;-0.5887268;0.03404631,0.08663427;-0.6123308;-0.03227155,-0.06981379;0.001421141;-0.03903864,-0.100166;-0.2963448;-0.01868651,-0.09918623;-0.593205;0.02459247,-0.1007759;-0.5613254;-0.07373922,-0.004319442;0.3998021;0.01012293,0;0;0,-0.002182587;0.1997376;0.01000621,-0.003961838;0.4996719;0.01215452,0.1125441;0.378148;-0.007590554,0.2237689;0.2181997;0.03763753,0.4162704;0.06035337;0.06060947,-0.1173182;0.368502;-0.007645541,-0.2238141;0.2003214;0.01169109,-0.4065161;0.03000331;0.001120901,0.07348041;0.004792805;-0.03126753,0.0852608;-0.2939659;-0.006681368,0.07356226;-0.5876061;0.05363907,0.08687042;-0.6178358;-0.004551034,-0.06866626;0.002963937;-0.04094094,-0.09982099;-0.2939534;-0.01145421,-0.1015345;-0.5885496;0.04520385,-0.1022729;-0.6157441;-0.01836088,-0.003498665;0.3996916;0.01408753,113.9517
-0;0;0,-0.002191871;0.1998234;0.008113423,-0.005180487;0.4997564;0.007240921,0.11096;0.3804617;-0.01732006,0.186421;0.1992825;0.02114769,0.3208037;-0.01058222;0.04109971,-0.1161999;0.3627823;-0.01212932,-0.1945347;0.1793874;0.003035548,-0.3421216;-0.02129909;-0.01801333,0.07268221;0.006314813;-0.03282407,0.08514439;-0.2928117;-0.01364029,0.07317989;-0.5887659;0.03398331,0.08652138;-0.6125538;-0.03217821,-0.06981404;0.00143796;-0.03903756,-0.1001033;-0.2963341;-0.01868067,-0.09896407;-0.5931673;0.02477903,-0.09753144;-0.6193241;-0.04001366,-0.004245147;0.3998026;0.01013341,0;0;0,-0.002157146;0.1997435;0.009893625,-0.003990384;0.499679;0.01188853,0.1125293;0.3781718;-0.007853366,0.2208309;0.2161521;0.03709552,0.4080001;0.05198072;0.05979801,-0.1173391;0.368643;-0.008013094,-0.2212809;0.1987784;0.0104831,-0.3997565;0.02413329;-0.001581805,0.07342547;0.004773766;-0.03139923,0.0852345;-0.2939803;-0.006771121,0.07345223;-0.5876528;0.05337574,0.08711921;-0.6186748;-0.003621224,-0.06872042;0.002979267;-0.04084885,-0.09996928;-0.2939728;-0.01181499,-0.1016202;-0.5885501;0.04494315,-0.1023355;-0.6157326;-0.01863633,-0.003509917;0.3996996;0.01385956,113.9631
-0;0;0,-0.002191871;0.1998234;0.008113423,-0.005180487;0.4997564;0.007240921,0.11096;0.3804617;-0.01732006,0.186421;0.1992825;0.02114769,0.3208037;-0.01058222;0.04109971,-0.1161999;0.3627823;-0.01212932,-0.1945347;0.1793874;0.003035548,-0.3421216;-0.02129909;-0.01801333,0.07268221;0.006314813;-0.03282407,0.08514439;-0.2928117;-0.01364029,0.07317989;-0.5887659;0.03398331,0.08652138;-0.6125538;-0.03217821,-0.06981404;0.00143796;-0.03903756,-0.1001033;-0.2963341;-0.01868067,-0.09896407;-0.5931673;0.02477903,-0.09753144;-0.6193241;-0.04001366,-0.004245147;0.3998026;0.01013341,0;0;0,-0.002157146;0.1997435;0.009893625,-0.003990384;0.499679;0.01188853,0.1125293;0.3781718;-0.007853366,0.2208309;0.2161521;0.03709552,0.4080001;0.05198072;0.05979801,-0.1173391;0.368643;-0.008013094,-0.2212809;0.1987784;0.0104831,-0.3997565;0.02413329;-0.001581805,0.07342547;0.004773766;-0.03139923,0.0852345;-0.2939803;-0.006771121,0.07345223;-0.5876528;0.05337574,0.08711921;-0.6186748;-0.003621224,-0.06872042;0.002979267;-0.04084885,-0.09996928;-0.2939728;-0.01181499,-0.1016202;-0.5885501;0.04494315,-0.1023355;-0.6157326;-0.01863633,-0.003509917;0.3996996;0.01385956,113.9744
-0;0;0,-0.002128436;0.1998224;0.008152623,-0.004995614;0.4997567;0.007331782,0.1110646;0.3804328;-0.01738446,0.186072;0.1989863;0.02070867,0.3168112;-0.01327631;0.03946583,-0.1160553;0.362837;-0.01215304,-0.1936169;0.1790527;0.002253088,-0.3372118;-0.02459449;-0.01795392,0.07269269;0.006342139;-0.03279558,0.08506114;-0.2927834;-0.01353555,0.07320975;-0.5886719;0.03452162,0.08617125;-0.611805;-0.03243764,-0.06981013;0.001416401;-0.03904533,-0.09993753;-0.2963145;-0.01786402,-0.09888482;-0.5933123;0.02445875,-0.09838293;-0.6188692;-0.04104621,-0.004102242;0.3998021;0.01020966,0;0;0,-0.002157146;0.1997435;0.009893625,-0.003990384;0.499679;0.01188853,0.1125293;0.3781718;-0.007853366,0.2208309;0.2161521;0.03709552,0.4080001;0.05198072;0.05979801,-0.1173391;0.368643;-0.008013094,-0.2212809;0.1987784;0.0104831,-0.3997565;0.02413329;-0.001581805,0.07342547;0.004773766;-0.03139923,0.0852345;-0.2939803;-0.006771121,0.07345223;-0.5876528;0.05337574,0.08711921;-0.6186748;-0.003621224,-0.06872042;0.002979267;-0.04084885,-0.09996928;-0.2939728;-0.01181499,-0.1016202;-0.5885501;0.04494315,-0.1023355;-0.6157326;-0.01863633,-0.003509917;0.3996996;0.01385956,113.9963
-0;0;0,-0.002128436;0.1998224;0.008152623,-0.004995614;0.4997567;0.007331782,0.1110646;0.3804328;-0.01738446,0.186072;0.1989863;0.02070867,0.3168112;-0.01327631;0.03946583,-0.1160553;0.362837;-0.01215304,-0.1936169;0.1790527;0.002253088,-0.3372118;-0.02459449;-0.01795392,0.07269269;0.006342139;-0.03279558,0.08506114;-0.2927834;-0.01353555,0.07320975;-0.5886719;0.03452162,0.08617125;-0.611805;-0.03243764,-0.06981013;0.001416401;-0.03904533,-0.09993753;-0.2963145;-0.01786402,-0.09888482;-0.5933123;0.02445875,-0.09838293;-0.6188692;-0.04104621,-0.004102242;0.3998021;0.01020966,0;0;0,-0.002058677;0.1997452;0.009880961,-0.003809206;0.4996816;0.01178946,0.1126794;0.3782774;-0.00806335,0.2182592;0.2145054;0.03701043,0.4017616;0.04605399;0.05824709,-0.1172595;0.3689016;-0.008030545,-0.2180148;0.1970356;0.009588899,-0.3949521;0.02095172;-0.004109547,0.07339196;0.00476058;-0.03147946,0.08526836;-0.2939951;-0.006903386,0.07323377;-0.5876469;0.05329472,0.08705337;-0.6188455;-0.003413398,-0.06874911;0.003000505;-0.04079897,-0.1001444;-0.2939599;-0.0120091,-0.1013908;-0.5885507;0.04468966,-0.1022902;-0.6158037;-0.01880186,-0.003351722;0.3997027;0.01379382,114.0194
-0;0;0,-0.001984539;0.1998204;0.008239785,-0.004484768;0.4997582;0.007563045,0.1113663;0.3804405;-0.01750051,0.1856943;0.1985482;0.01978911,0.3110637;-0.01699214;0.03781392,-0.1156905;0.3630237;-0.01223454,-0.1927534;0.1789961;0.00173453,-0.3322072;-0.02755965;-0.01794701,0.07271041;0.006290485;-0.03276624,0.08510497;-0.2928215;-0.01331311,0.07319661;-0.5887696;0.0343623,0.08480232;-0.6146883;-0.02968185,-0.06979257;0.001464071;-0.03907497,-0.1000199;-0.2962165;-0.01733576,-0.09866249;-0.5932651;0.02462026,-0.0980473;-0.6188255;-0.04087964,-0.0037293;0.3998011;0.01039537,0;0;0,-0.002058677;0.1997452;0.009880961,-0.003809206;0.4996816;0.01178946,0.1126794;0.3782774;-0.00806335,0.2182592;0.2145054;0.03701043,0.4017616;0.04605399;0.05824709,-0.1172595;0.3689016;-0.008030545,-0.2180148;0.1970356;0.009588899,-0.3949521;0.02095172;-0.004109547,0.07339196;0.00476058;-0.03147946,0.08526836;-0.2939951;-0.006903386,0.07323377;-0.5876469;0.05329472,0.08705337;-0.6188455;-0.003413398,-0.06874911;0.003000505;-0.04079897,-0.1001444;-0.2939599;-0.0120091,-0.1013908;-0.5885507;0.04468966,-0.1022902;-0.6158037;-0.01880186,-0.003351722;0.3997027;0.01379382,114.032
-0;0;0,-0.001984539;0.1998204;0.008239785,-0.004484768;0.4997582;0.007563045,0.1113663;0.3804405;-0.01750051,0.1856943;0.1985482;0.01978911,0.3110637;-0.01699214;0.03781392,-0.1156905;0.3630237;-0.01223454,-0.1927534;0.1789961;0.00173453,-0.3322072;-0.02755965;-0.01794701,0.07271041;0.006290485;-0.03276624,0.08510497;-0.2928215;-0.01331311,0.07319661;-0.5887696;0.0343623,0.08480232;-0.6146883;-0.02968185,-0.06979257;0.001464071;-0.03907497,-0.1000199;-0.2962165;-0.01733576,-0.09866249;-0.5932651;0.02462026,-0.0980473;-0.6188255;-0.04087964,-0.0037293;0.3998011;0.01039537,0;0;0,-0.002058677;0.1997452;0.009880961,-0.003809206;0.4996816;0.01178946,0.1126794;0.3782774;-0.00806335,0.2182592;0.2145054;0.03701043,0.4017616;0.04605399;0.05824709,-0.1172595;0.3689016;-0.008030545,-0.2180148;0.1970356;0.009588899,-0.3949521;0.02095172;-0.004109547,0.07339196;0.00476058;-0.03147946,0.08526836;-0.2939951;-0.006903386,0.07323377;-0.5876469;0.05329472,0.08705337;-0.6188455;-0.003413398,-0.06874911;0.003000505;-0.04079897,-0.1001444;-0.2939599;-0.0120091,-0.1013908;-0.5885507;0.04468966,-0.1022902;-0.6158037;-0.01880186,-0.003351722;0.3997027;0.01379382,114.0523
-0;0;0,-0.00194831;0.1998209;0.00823518,-0.004401105;0.499759;0.007564262,0.1114198;0.3805531;-0.01762405,0.1849592;0.1981518;0.01873176,0.3087885;-0.01826656;0.03688088,-0.1155783;0.3630192;-0.01245505,-0.1914846;0.1784647;0.0008815425,-0.3234106;-0.03289773;-0.01964885,0.07274974;0.006286811;-0.03267953,0.08528877;-0.2928292;-0.01338254,0.07332176;-0.5887781;0.0342727,0.08490251;-0.6116985;-0.0331699,-0.06975519;0.001467783;-0.03914152,-0.0999564;-0.296211;-0.01734196,-0.09858086;-0.5932695;0.02454347,-0.09868672;-0.6185557;-0.04127427,-0.003664003;0.3998019;0.01039722,0;0;0,-0.001867121;0.1997448;0.009926775,-0.003265255;0.4996828;0.01181016,0.1130895;0.3783452;-0.008169232,0.2156039;0.2125529;0.0365935,0.3944165;0.03909384;0.05752188,-0.1168847;0.3690695;-0.007962089,-0.2137178;0.1949125;0.009146206,-0.3889163;0.01719636;-0.005768551,0.07340474;0.004739924;-0.03145277,0.08531227;-0.2940187;-0.006926697,0.07322116;-0.587658;0.05332052,0.08650832;-0.6168203;-0.006318327,-0.06873741;0.003012696;-0.0408178,-0.1001983;-0.2939393;-0.0120124,-0.1012743;-0.5885298;0.04469116,-0.1013423;-0.5562264;-0.05373052,-0.002926442;0.3997038;0.01383349,114.0639
-0;0;0,-0.00194831;0.1998209;0.00823518,-0.004401105;0.499759;0.007564262,0.1114198;0.3805531;-0.01762405,0.1849592;0.1981518;0.01873176,0.3087885;-0.01826656;0.03688088,-0.1155783;0.3630192;-0.01245505,-0.1914846;0.1784647;0.0008815425,-0.3234106;-0.03289773;-0.01964885,0.07274974;0.006286811;-0.03267953,0.08528877;-0.2928292;-0.01338254,0.07332176;-0.5887781;0.0342727,0.08490251;-0.6116985;-0.0331699,-0.06975519;0.001467783;-0.03914152,-0.0999564;-0.296211;-0.01734196,-0.09858086;-0.5932695;0.02454347,-0.09868672;-0.6185557;-0.04127427,-0.003664003;0.3998019;0.01039722,0;0;0,-0.001867121;0.1997448;0.009926775,-0.003265255;0.4996828;0.01181016,0.1130895;0.3783452;-0.008169232,0.2156039;0.2125529;0.0365935,0.3944165;0.03909384;0.05752188,-0.1168847;0.3690695;-0.007962089,-0.2137178;0.1949125;0.009146206,-0.3889163;0.01719636;-0.005768551,0.07340474;0.004739924;-0.03145277,0.08531227;-0.2940187;-0.006926697,0.07322116;-0.587658;0.05332052,0.08650832;-0.6168203;-0.006318327,-0.06873741;0.003012696;-0.0408178,-0.1001983;-0.2939393;-0.0120124,-0.1012743;-0.5885298;0.04469116,-0.1013423;-0.5562264;-0.05373052,-0.002926442;0.3997038;0.01383349,114.0855
-0;0;0,-0.001908986;0.1998215;0.008230126,-0.004234089;0.4997602;0.007507168,0.1115483;0.3806258;-0.01766264,0.1840958;0.1976925;0.01800619,0.3043458;-0.020768;0.03575342,-0.1153955;0.3628877;-0.01259005,-0.1904592;0.1779805;0.0006300127,-0.3170028;-0.03673436;-0.01897136,0.07273048;0.006290523;-0.03272164,0.08521899;-0.2928049;-0.01307572,0.07324519;-0.5887884;0.03436305,0.0849277;-0.6120991;-0.03263739,-0.06979866;0.00149672;-0.03906284,-0.09991932;-0.2961878;-0.01723053,-0.09854274;-0.5932698;0.02448756,-0.09864677;-0.6185883;-0.0412933,-0.003545929;0.3998034;0.01036461,0;0;0,-0.001867121;0.1997448;0.009926775,-0.003265255;0.4996828;0.01181016,0.1130895;0.3783452;-0.008169232,0.2156039;0.2125529;0.0365935,0.3944165;0.03909384;0.05752188,-0.1168847;0.3690695;-0.007962089,-0.2137178;0.1949125;0.009146206,-0.3889163;0.01719636;-0.005768551,0.07340474;0.004739924;-0.03145277,0.08531227;-0.2940187;-0.006926697,0.07322116;-0.587658;0.05332052,0.08650832;-0.6168203;-0.006318327,-0.06873741;0.003012696;-0.0408178,-0.1001983;-0.2939393;-0.0120124,-0.1012743;-0.5885298;0.04469116,-0.1013423;-0.5562264;-0.05373052,-0.002926442;0.3997038;0.01383349,114.0974
-0;0;0,-0.001908986;0.1998215;0.008230126,-0.004234089;0.4997602;0.007507168,0.1115483;0.3806258;-0.01766264,0.1840958;0.1976925;0.01800619,0.3043458;-0.020768;0.03575342,-0.1153955;0.3628877;-0.01259005,-0.1904592;0.1779805;0.0006300127,-0.3170028;-0.03673436;-0.01897136,0.07273048;0.006290523;-0.03272164,0.08521899;-0.2928049;-0.01307572,0.07324519;-0.5887884;0.03436305,0.0849277;-0.6120991;-0.03263739,-0.06979866;0.00149672;-0.03906284,-0.09991932;-0.2961878;-0.01723053,-0.09854274;-0.5932698;0.02448756,-0.09864677;-0.6185883;-0.0412933,-0.003545929;0.3998034;0.01036461,0;0;0,-0.001800922;0.1997441;0.009952753,-0.003101426;0.4996822;0.01182974,0.1132494;0.3786095;-0.008260144,0.2130699;0.211082;0.03612892,0.3864555;0.03212458;0.0564195,-0.1167714;0.3692587;-0.0080854,-0.2119038;0.1941451;0.008797266,-0.3831526;0.01266737;-0.00668547,0.07339204;0.00471002;-0.03148689,0.08529099;-0.2940495;-0.006968707,0.07323099;-0.5876859;0.05329922,0.08653584;-0.6167971;-0.006403316,-0.0687597;0.003063463;-0.04077646,-0.1001317;-0.2939065;-0.01205991,-0.1013822;-0.5885182;0.04452971,-0.1014546;-0.5562121;-0.05389245,-0.00279181;0.3997034;0.01386416,114.1193
-0;0;0,-0.001890844;0.1998219;0.008223839,-0.004161656;0.4997608;0.007468636,0.1115924;0.3806931;-0.01776242,0.1823907;0.1968291;0.01661211,0.2991433;-0.02355815;0.03388366,-0.1150529;0.3622757;-0.01303155,-0.1883455;0.1766496;5.212333E-05,-0.3115897;-0.0400074;-0.01919894,0.07275675;0.00625881;-0.03266928,0.08508435;-0.2928386;-0.01295244,0.07312961;-0.5886558;0.03551678,0.08531578;-0.6082556;-0.03524598,-0.06978586;0.001505299;-0.03908539,-0.0999165;-0.296171;-0.01715441,-0.09820732;-0.5932131;0.02483439,-0.09855416;-0.6191452;-0.04023635,-0.003494347;0.3998043;0.01034102,0;0;0,-0.001800922;0.1997441;0.009952753,-0.003101426;0.4996822;0.01182974,0.1132494;0.3786095;-0.008260144,0.2130699;0.211082;0.03612892,0.3864555;0.03212458;0.0564195,-0.1167714;0.3692587;-0.0080854,-0.2119038;0.1941451;0.008797266,-0.3831526;0.01266737;-0.00668547,0.07339204;0.00471002;-0.03148689,0.08529099;-0.2940495;-0.006968707,0.07323099;-0.5876859;0.05329922,0.08653584;-0.6167971;-0.006403316,-0.0687597;0.003063463;-0.04077646,-0.1001317;-0.2939065;-0.01205991,-0.1013822;-0.5885182;0.04452971,-0.1014546;-0.5562121;-0.05389245,-0.00279181;0.3997034;0.01386416,114.1319
-0;0;0,-0.001890844;0.1998219;0.008223839,-0.004161656;0.4997608;0.007468636,0.1115924;0.3806931;-0.01776242,0.1823907;0.1968291;0.01661211,0.2991433;-0.02355815;0.03388366,-0.1150529;0.3622757;-0.01303155,-0.1883455;0.1766496;5.212333E-05,-0.3115897;-0.0400074;-0.01919894,0.07275675;0.00625881;-0.03266928,0.08508435;-0.2928386;-0.01295244,0.07312961;-0.5886558;0.03551678,0.08531578;-0.6082556;-0.03524598,-0.06978586;0.001505299;-0.03908539,-0.0999165;-0.296171;-0.01715441,-0.09820732;-0.5932131;0.02483439,-0.09855416;-0.6191452;-0.04023635,-0.003494347;0.3998043;0.01034102,0;0;0,-0.001800922;0.1997441;0.009952753,-0.003101426;0.4996822;0.01182974,0.1132494;0.3786095;-0.008260144,0.2130699;0.211082;0.03612892,0.3864555;0.03212458;0.0564195,-0.1167714;0.3692587;-0.0080854,-0.2119038;0.1941451;0.008797266,-0.3831526;0.01266737;-0.00668547,0.07339204;0.00471002;-0.03148689,0.08529099;-0.2940495;-0.006968707,0.07323099;-0.5876859;0.05329922,0.08653584;-0.6167971;-0.006403316,-0.0687597;0.003063463;-0.04077646,-0.1001317;-0.2939065;-0.01205991,-0.1013822;-0.5885182;0.04452971,-0.1014546;-0.5562121;-0.05389245,-0.00279181;0.3997034;0.01386416,114.1524
-0;0;0,-0.001828946;0.1998252;0.008158648,-0.003970182;0.4997639;0.007187584,0.1106375;0.3794256;-0.02134663,0.1814601;0.1959063;0.01477542,0.2949916;-0.02607481;0.0330781,-0.1148859;0.3627714;-0.0140962,-0.1873262;0.176807;-0.001072521,-0.3048268;-0.04305893;-0.01985019,0.07277364;0.006192476;-0.0326443,0.08509535;-0.2928995;-0.01284026,0.07321075;-0.5887816;0.03524823,0.08533613;-0.6091569;-0.03475384,-0.06976572;0.001571666;-0.03911873,-0.09987439;-0.2960921;-0.01698797,-0.09803286;-0.5931101;0.02516543,-0.09850515;-0.6197952;-0.03901534,-0.003348535;0.3998095;0.01014436,0;0;0,-0.001627354;0.1997438;0.009987894,-0.002727523;0.4996827;0.01183924,0.1135807;0.3787372;-0.008262883,0.2111831;0.2097744;0.03561606,0.3791156;0.02565703;0.05560283,-0.1164827;0.3693142;-0.008010956,-0.2081619;0.1923711;0.00890258,-0.3744494;0.006496608;-0.008392989,0.07335855;0.004669147;-0.0315709,0.08531045;-0.2940679;-0.006805312,0.07303029;-0.5877671;0.05311128,0.08642495;-0.617117;-0.006253485,-0.06878962;0.003110133;-0.04072241,-0.1001105;-0.2938387;-0.011733,-0.1003568;-0.588196;0.04617837,-0.1004675;-0.5558809;-0.05224537,-0.002478603;0.399704;0.01388721,114.164
-0;0;0,-0.001828946;0.1998252;0.008158648,-0.003970182;0.4997639;0.007187584,0.1106375;0.3794256;-0.02134663,0.1814601;0.1959063;0.01477542,0.2949916;-0.02607481;0.0330781,-0.1148859;0.3627714;-0.0140962,-0.1873262;0.176807;-0.001072521,-0.3048268;-0.04305893;-0.01985019,0.07277364;0.006192476;-0.0326443,0.08509535;-0.2928995;-0.01284026,0.07321075;-0.5887816;0.03524823,0.08533613;-0.6091569;-0.03475384,-0.06976572;0.001571666;-0.03911873,-0.09987439;-0.2960921;-0.01698797,-0.09803286;-0.5931101;0.02516543,-0.09850515;-0.6197952;-0.03901534,-0.003348535;0.3998095;0.01014436,0;0;0,-0.001627354;0.1997438;0.009987894,-0.002727523;0.4996827;0.01183924,0.1135807;0.3787372;-0.008262883,0.2111831;0.2097744;0.03561606,0.3791156;0.02565703;0.05560283,-0.1164827;0.3693142;-0.008010956,-0.2081619;0.1923711;0.00890258,-0.3744494;0.006496608;-0.008392989,0.07335855;0.004669147;-0.0315709,0.08531045;-0.2940679;-0.006805312,0.07303029;-0.5877671;0.05311128,0.08642495;-0.617117;-0.006253485,-0.06878962;0.003110133;-0.04072241,-0.1001105;-0.2938387;-0.011733,-0.1003568;-0.588196;0.04617837,-0.1004675;-0.5558809;-0.05224537,-0.002478603;0.399704;0.01388721,114.1752
-0;0;0,-0.001767975;0.1998263;0.008143937,-0.003734319;0.4997657;0.007089561,0.1101843;0.3784712;-0.02298037,0.180469;0.1948467;0.01365457,0.290532;-0.02894482;0.03107564,-0.1146972;0.3628223;-0.01433019,-0.1857612;0.1763053;-0.00162896,-0.2987396;-0.04604113;-0.01889022,0.07279624;0.006172637;-0.03259762,0.08512221;-0.2929189;-0.01279045,0.07333648;-0.5888214;0.03519689,0.0850316;-0.6090229;-0.03505246,-0.06972998;0.001574759;-0.03918226,-0.09987436;-0.2960814;-0.01699734,-0.09787655;-0.5930773;0.02530408,-0.09844927;-0.6194841;-0.039207,-0.00318067;0.3998119;0.01007948,0;0;0,-0.001627354;0.1997438;0.009987894,-0.002727523;0.4996827;0.01183924,0.1135807;0.3787372;-0.008262883,0.2111831;0.2097744;0.03561606,0.3791156;0.02565703;0.05560283,-0.1164827;0.3693142;-0.008010956,-0.2081619;0.1923711;0.00890258,-0.3744494;0.006496608;-0.008392989,0.07335855;0.004669147;-0.0315709,0.08531045;-0.2940679;-0.006805312,0.07303029;-0.5877671;0.05311128,0.08642495;-0.617117;-0.006253485,-0.06878962;0.003110133;-0.04072241,-0.1001105;-0.2938387;-0.011733,-0.1003568;-0.588196;0.04617837,-0.1004675;-0.5558809;-0.05224537,-0.002478603;0.399704;0.01388721,114.1973
-0;0;0,-0.001767975;0.1998263;0.008143937,-0.003734319;0.4997657;0.007089561,0.1101843;0.3784712;-0.02298037,0.180469;0.1948467;0.01365457,0.290532;-0.02894482;0.03107564,-0.1146972;0.3628223;-0.01433019,-0.1857612;0.1763053;-0.00162896,-0.2987396;-0.04604113;-0.01889022,0.07279624;0.006172637;-0.03259762,0.08512221;-0.2929189;-0.01279045,0.07333648;-0.5888214;0.03519689,0.0850316;-0.6090229;-0.03505246,-0.06972998;0.001574759;-0.03918226,-0.09987436;-0.2960814;-0.01699734,-0.09787655;-0.5930773;0.02530408,-0.09844927;-0.6194841;-0.039207,-0.00318067;0.3998119;0.01007948,0;0;0,-0.001520292;0.1997439;0.01000219,-0.00253703;0.4996832;0.01181741,0.1137351;0.3788289;-0.00843254,0.2085605;0.2081216;0.03477825,0.3704017;0.01868768;0.05532541,-0.1162916;0.3694217;-0.008277784,-0.205313;0.191108;0.008439085,-0.3681583;0.002376452;-0.01058186,0.0733327;0.00463705;-0.03163564,0.08530963;-0.2941017;-0.006902151,0.07293254;-0.5877962;0.05301696,0.08636829;-0.6171629;-0.00631598,-0.06881372;0.003144145;-0.04067906,-0.1001549;-0.293816;-0.01182697,-0.1002369;-0.5881993;0.04595264,-0.1036299;-0.616211;-0.0165186,-0.002309429;0.3997048;0.01388049,114.2085
-0;0;0,-0.001767975;0.1998263;0.008143937,-0.003734319;0.4997657;0.007089561,0.1101843;0.3784712;-0.02298037,0.180469;0.1948467;0.01365457,0.290532;-0.02894482;0.03107564,-0.1146972;0.3628223;-0.01433019,-0.1857612;0.1763053;-0.00162896,-0.2987396;-0.04604113;-0.01889022,0.07279624;0.006172637;-0.03259762,0.08512221;-0.2929189;-0.01279045,0.07333648;-0.5888214;0.03519689,0.0850316;-0.6090229;-0.03505246,-0.06972998;0.001574759;-0.03918226,-0.09987436;-0.2960814;-0.01699734,-0.09787655;-0.5930773;0.02530408,-0.09844927;-0.6194841;-0.039207,-0.00318067;0.3998119;0.01007948,0;0;0,-0.001520292;0.1997439;0.01000219,-0.00253703;0.4996832;0.01181741,0.1137351;0.3788289;-0.00843254,0.2085605;0.2081216;0.03477825,0.3704017;0.01868768;0.05532541,-0.1162916;0.3694217;-0.008277784,-0.205313;0.191108;0.008439085,-0.3681583;0.002376452;-0.01058186,0.0733327;0.00463705;-0.03163564,0.08530963;-0.2941017;-0.006902151,0.07293254;-0.5877962;0.05301696,0.08636829;-0.6171629;-0.00631598,-0.06881372;0.003144145;-0.04067906,-0.1001549;-0.293816;-0.01182697,-0.1002369;-0.5881993;0.04595264,-0.1036299;-0.616211;-0.0165186,-0.002309429;0.3997048;0.01388049,114.22
-0;0;0,-0.001729262;0.1998178;0.008358051,-0.003636121;0.4997635;0.008377648,0.1096075;0.377895;-0.02395966,0.1792732;0.1941221;0.01311081,0.2859606;-0.03141744;0.02891343,-0.1144534;0.3631777;-0.01481024,-0.1840933;0.1761;-0.002472254,-0.2912462;-0.04923981;-0.01797157,0.07276427;0.006089464;-0.03268455,0.08519978;-0.2929903;-0.01276747,0.07317745;-0.588881;0.03523409,0.08459933;-0.611614;-0.03243748,-0.06975377;0.001632461;-0.03913755,-0.09984741;-0.2960184;-0.01681341,-0.09772105;-0.5930096;0.02551482,-0.09760433;-0.6201547;-0.03811399,-0.003108039;0.3997968;0.01090466,0;0;0,-0.001520292;0.1997439;0.01000219,-0.00253703;0.4996832;0.01181741,0.1137351;0.3788289;-0.00843254,0.2085605;0.2081216;0.03477825,0.3704017;0.01868768;0.05532541,-0.1162916;0.3694217;-0.008277784,-0.205313;0.191108;0.008439085,-0.3681583;0.002376452;-0.01058186,0.0733327;0.00463705;-0.03163564,0.08530963;-0.2941017;-0.006902151,0.07293254;-0.5877962;0.05301696,0.08636829;-0.6171629;-0.00631598,-0.06881372;0.003144145;-0.04067906,-0.1001549;-0.293816;-0.01182697,-0.1002369;-0.5881993;0.04595264,-0.1036299;-0.616211;-0.0165186,-0.002309429;0.3997048;0.01388049,114.242
-0;0;0,-0.001729262;0.1998178;0.008358051,-0.003636121;0.4997635;0.008377648,0.1096075;0.377895;-0.02395966,0.1792732;0.1941221;0.01311081,0.2859606;-0.03141744;0.02891343,-0.1144534;0.3631777;-0.01481024,-0.1840933;0.1761;-0.002472254,-0.2912462;-0.04923981;-0.01797157,0.07276427;0.006089464;-0.03268455,0.08519978;-0.2929903;-0.01276747,0.07317745;-0.588881;0.03523409,0.08459933;-0.611614;-0.03243748,-0.06975377;0.001632461;-0.03913755,-0.09984741;-0.2960184;-0.01681341,-0.09772105;-0.5930096;0.02551482,-0.09760433;-0.6201547;-0.03811399,-0.003108039;0.3997968;0.01090466,0;0;0,-0.001351068;0.1997461;0.009984616,-0.002164221;0.4996863;0.01172766,0.1140487;0.3790386;-0.008653529,0.2061616;0.2067222;0.0340343,0.3624132;0.01257586;0.05384945,-0.1159508;0.3693602;-0.008423913,-0.2029355;0.1900519;0.008374799,-0.3593924;-0.00386408;-0.01206576,0.07322837;0.004674175;-0.03187094,0.08523344;-0.2940606;-0.007103574,0.07284754;-0.5877683;0.05274912,0.08606932;-0.6171496;-0.006612439,-0.069019;0.003124281;-0.04033132,-0.1004093;-0.2938819;-0.012012,-0.1005045;-0.5883183;0.04549615,-0.1039032;-0.6159541;-0.01744141,-0.002002165;0.3997083;0.01381806,114.2535
-0;0;0,-0.001613074;0.1998214;0.008294552,-0.003213371;0.4997673;0.007966647,0.1097241;0.3776428;-0.02465519,0.1781928;0.1933195;0.01190921,0.2826442;-0.03330514;0.02711328,-0.1141378;0.3631668;-0.01509607,-0.1821941;0.1754794;-0.003189352,-0.2854605;-0.05165975;-0.01880542,0.07272602;0.005979353;-0.03278983,0.0851787;-0.2930855;-0.01266137,0.07314298;-0.5889654;0.03540321,0.08469559;-0.611635;-0.03231433,-0.06978711;0.001708038;-0.03907483,-0.09991671;-0.2959612;-0.01704645,-0.09772389;-0.5929183;0.02551709,-0.09757084;-0.6189985;-0.03938105,-0.002804633;0.3998041;0.01064588,0;0;0,-0.001351068;0.1997461;0.009984616,-0.002164221;0.4996863;0.01172766,0.1140487;0.3790386;-0.008653529,0.2061616;0.2067222;0.0340343,0.3624132;0.01257586;0.05384945,-0.1159508;0.3693602;-0.008423913,-0.2029355;0.1900519;0.008374799,-0.3593924;-0.00386408;-0.01206576,0.07322837;0.004674175;-0.03187094,0.08523344;-0.2940606;-0.007103574,0.07284754;-0.5877683;0.05274912,0.08606932;-0.6171496;-0.006612439,-0.069019;0.003124281;-0.04033132,-0.1004093;-0.2938819;-0.012012,-0.1005045;-0.5883183;0.04549615,-0.1039032;-0.6159541;-0.01744141,-0.002002165;0.3997083;0.01381806,114.2755
-0;0;0,-0.001516744;0.199823;0.008273941,-0.002969445;0.4997689;0.007795085,0.1097366;0.3774922;-0.02524422,0.1744351;0.1913863;0.00908773,0.2778987;-0.03555229;0.02623906,-0.1139527;0.3633223;-0.01537304,-0.1784217;0.1743482;-0.003861118,-0.2765045;-0.05498204;-0.02081493,0.07268921;0.005889271;-0.03288762,0.08513413;-0.2931552;-0.0124535,0.07300621;-0.5890108;0.03573698,0.08438514;-0.6115078;-0.03219462,-0.06982706;0.001790939;-0.03899967,-0.099986;-0.2958694;-0.01689117,-0.09789372;-0.5928203;0.02572075,-0.09765811;-0.6188588;-0.03922611,-0.002609136;0.3998072;0.01053948,0;0;0,-0.001351068;0.1997461;0.009984616,-0.002164221;0.4996863;0.01172766,0.1140487;0.3790386;-0.008653529,0.2061616;0.2067222;0.0340343,0.3624132;0.01257586;0.05384945,-0.1159508;0.3693602;-0.008423913,-0.2029355;0.1900519;0.008374799,-0.3593924;-0.00386408;-0.01206576,0.07322837;0.004674175;-0.03187094,0.08523344;-0.2940606;-0.007103574,0.07284754;-0.5877683;0.05274912,0.08606932;-0.6171496;-0.006612439,-0.069019;0.003124281;-0.04033132,-0.1004093;-0.2938819;-0.012012,-0.1005045;-0.5883183;0.04549615,-0.1039032;-0.6159541;-0.01744141,-0.002002165;0.3997083;0.01381806,114.2981
-0;0;0,-0.001516744;0.199823;0.008273941,-0.002969445;0.4997689;0.007795085,0.1097366;0.3774922;-0.02524422,0.1744351;0.1913863;0.00908773,0.2778987;-0.03555229;0.02623906,-0.1139527;0.3633223;-0.01537304,-0.1784217;0.1743482;-0.003861118,-0.2765045;-0.05498204;-0.02081493,0.07268921;0.005889271;-0.03288762,0.08513413;-0.2931552;-0.0124535,0.07300621;-0.5890108;0.03573698,0.08438514;-0.6115078;-0.03219462,-0.06982706;0.001790939;-0.03899967,-0.099986;-0.2958694;-0.01689117,-0.09789372;-0.5928203;0.02572075,-0.09765811;-0.6188588;-0.03922611,-0.002609136;0.3998072;0.01053948,0;0;0,-0.001070014;0.1997551;0.009836391,-0.001116882;0.4996965;0.01132932,0.1147155;0.3788668;-0.009138879,0.2043827;0.2050944;0.03284846,0.3542781;0.005937412;0.0520283,-0.1152974;0.3695294;-0.008485141,-0.2002403;0.1892338;0.008194377,-0.3521976;-0.008011505;-0.01423893,0.07310168;0.004652834;-0.03216356,0.08514614;-0.2940898;-0.007510025,0.07284362;-0.5878097;0.05229995,0.08609131;-0.6171368;-0.007128254,-0.06921333;0.003142962;-0.03999545,-0.1005334;-0.2939137;-0.01213088,-0.1008908;-0.5884737;0.04473976,-0.1056958;-0.6139323;-0.02070414,-0.001263551;0.3997209;0.01353181,114.3091
-0;0;0,-0.001516744;0.199823;0.008273941,-0.002969445;0.4997689;0.007795085,0.1097366;0.3774922;-0.02524422,0.1744351;0.1913863;0.00908773,0.2778987;-0.03555229;0.02623906,-0.1139527;0.3633223;-0.01537304,-0.1784217;0.1743482;-0.003861118,-0.2765045;-0.05498204;-0.02081493,0.07268921;0.005889271;-0.03288762,0.08513413;-0.2931552;-0.0124535,0.07300621;-0.5890108;0.03573698,0.08438514;-0.6115078;-0.03219462,-0.06982706;0.001790939;-0.03899967,-0.099986;-0.2958694;-0.01689117,-0.09789372;-0.5928203;0.02572075,-0.09765811;-0.6188588;-0.03922611,-0.002609136;0.3998072;0.01053948,0;0;0,-0.001070014;0.1997551;0.009836391,-0.001116882;0.4996965;0.01132932,0.1147155;0.3788668;-0.009138879,0.2043827;0.2050944;0.03284846,0.3542781;0.005937412;0.0520283,-0.1152974;0.3695294;-0.008485141,-0.2002403;0.1892338;0.008194377,-0.3521976;-0.008011505;-0.01423893,0.07310168;0.004652834;-0.03216356,0.08514614;-0.2940898;-0.007510025,0.07284362;-0.5878097;0.05229995,0.08609131;-0.6171368;-0.007128254,-0.06921333;0.003142962;-0.03999545,-0.1005334;-0.2939137;-0.01213088,-0.1008908;-0.5884737;0.04473976,-0.1056958;-0.6139323;-0.02070414,-0.001263551;0.3997209;0.01353181,114.3202
-0;0;0,-0.001536538;0.1998218;0.008299554,-0.003080321;0.4997664;0.007728728,0.109601;0.3772966;-0.02534203,0.1735986;0.1908846;0.008641377,0.2714466;-0.03862211;0.02452929,-0.1139799;0.3631674;-0.01536099,-0.1758032;0.1732779;-0.004412651,-0.2706303;-0.05751759;-0.01994536,0.07256139;0.005806563;-0.03318324,0.08484884;-0.2931837;-0.01187905,0.07266574;-0.5890284;0.0363653,0.08426493;-0.6116632;-0.03138154,-0.06996531;0.00187844;-0.03874695,-0.1002117;-0.2957747;-0.01666179,-0.0981079;-0.5926802;0.02626502,-0.09785004;-0.6187538;-0.03864061,-0.002680123;0.3998062;0.01052251,0;0;0,-0.001070014;0.1997551;0.009836391,-0.001116882;0.4996965;0.01132932,0.1147155;0.3788668;-0.009138879,0.2043827;0.2050944;0.03284846,0.3542781;0.005937412;0.0520283,-0.1152974;0.3695294;-0.008485141,-0.2002403;0.1892338;0.008194377,-0.3521976;-0.008011505;-0.01423893,0.07310168;0.004652834;-0.03216356,0.08514614;-0.2940898;-0.007510025,0.07284362;-0.5878097;0.05229995,0.08609131;-0.6171368;-0.007128254,-0.06921333;0.003142962;-0.03999545,-0.1005334;-0.2939137;-0.01213088,-0.1008908;-0.5884737;0.04473976,-0.1056958;-0.6139323;-0.02070414,-0.001263551;0.3997209;0.01353181,114.3424
-0;0;0,-0.001536538;0.1998218;0.008299554,-0.003080321;0.4997664;0.007728728,0.109601;0.3772966;-0.02534203,0.1735986;0.1908846;0.008641377,0.2714466;-0.03862211;0.02452929,-0.1139799;0.3631674;-0.01536099,-0.1758032;0.1732779;-0.004412651,-0.2706303;-0.05751759;-0.01994536,0.07256139;0.005806563;-0.03318324,0.08484884;-0.2931837;-0.01187905,0.07266574;-0.5890284;0.0363653,0.08426493;-0.6116632;-0.03138154,-0.06996531;0.00187844;-0.03874695,-0.1002117;-0.2957747;-0.01666179,-0.0981079;-0.5926802;0.02626502,-0.09785004;-0.6187538;-0.03864061,-0.002680123;0.3998062;0.01052251,0;0;0,-0.001004124;0.1997621;0.009700671,-0.001052115;0.4997044;0.01105591,0.1147694;0.3788685;-0.009438694,0.2012392;0.2033911;0.03216266,0.3445202;-0.0005785525;0.05131808,-0.1152393;0.3696003;-0.00875377,-0.1976877;0.1881031;0.00740328,-0.3454699;-0.01221707;-0.01566702,0.07301528;0.004639973;-0.03236107,0.08514467;-0.2940989;-0.007704042,0.07282118;-0.5878447;0.05197439,0.08573775;-0.6174197;-0.007194743,-0.06932577;0.003185845;-0.03979682,-0.1007157;-0.2938855;-0.01216911,-0.1009979;-0.5884953;0.04444407,-0.1052921;-0.6151572;-0.0196224,-0.001195581;0.3997296;0.01329743,114.3538
-0;0;0,-0.001515027;0.1998265;0.008189069,-0.003072559;0.4997692;0.007272865,0.109623;0.3772889;-0.0256433,0.1732047;0.1906108;0.007653318,0.2646643;-0.04161116;0.02207829,-0.112649;0.363159;-0.02075922,-0.1733844;0.1732505;-0.005075609,-0.2606946;-0.06060337;-0.01883416,0.07249833;0.005666416;-0.03334491,0.08452808;-0.293301;-0.01157936,0.07173868;-0.5891472;0.03649905,0.08414115;-0.6123113;-0.03053214,-0.07008205;0.002010412;-0.03852875,-0.1004078;-0.295618;-0.01622003,-0.0988818;-0.5925591;0.02648437,-0.09873675;-0.61778;-0.03940793,-0.0026599;0.3998131;0.01020645,0;0;0,-0.001004124;0.1997621;0.009700671,-0.001052115;0.4997044;0.01105591,0.1147694;0.3788685;-0.009438694,0.2012392;0.2033911;0.03216266,0.3445202;-0.0005785525;0.05131808,-0.1152393;0.3696003;-0.00875377,-0.1976877;0.1881031;0.00740328,-0.3454699;-0.01221707;-0.01566702,0.07301528;0.004639973;-0.03236107,0.08514467;-0.2940989;-0.007704042,0.07282118;-0.5878447;0.05197439,0.08573775;-0.6174197;-0.007194743,-0.06932577;0.003185845;-0.03979682,-0.1007157;-0.2938855;-0.01216911,-0.1009979;-0.5884953;0.04444407,-0.1052921;-0.6151572;-0.0196224,-0.001195581;0.3997296;0.01329743,114.3648
-0;0;0,-0.001515027;0.1998265;0.008189069,-0.003072559;0.4997692;0.007272865,0.109623;0.3772889;-0.0256433,0.1732047;0.1906108;0.007653318,0.2646643;-0.04161116;0.02207829,-0.112649;0.363159;-0.02075922,-0.1733844;0.1732505;-0.005075609,-0.2606946;-0.06060337;-0.01883416,0.07249833;0.005666416;-0.03334491,0.08452808;-0.293301;-0.01157936,0.07173868;-0.5891472;0.03649905,0.08414115;-0.6123113;-0.03053214,-0.07008205;0.002010412;-0.03852875,-0.1004078;-0.295618;-0.01622003,-0.0988818;-0.5925591;0.02648437,-0.09873675;-0.61778;-0.03940793,-0.0026599;0.3998131;0.01020645,0;0;0,-0.001004124;0.1997621;0.009700671,-0.001052115;0.4997044;0.01105591,0.1147694;0.3788685;-0.009438694,0.2012392;0.2033911;0.03216266,0.3445202;-0.0005785525;0.05131808,-0.1152393;0.3696003;-0.00875377,-0.1976877;0.1881031;0.00740328,-0.3454699;-0.01221707;-0.01566702,0.07301528;0.004639973;-0.03236107,0.08514467;-0.2940989;-0.007704042,0.07282118;-0.5878447;0.05197439,0.08573775;-0.6174197;-0.007194743,-0.06932577;0.003185845;-0.03979682,-0.1007157;-0.2938855;-0.01216911,-0.1009979;-0.5884953;0.04444407,-0.1052921;-0.6151572;-0.0196224,-0.001195581;0.3997296;0.01329743,114.3764
-0;0;0,-0.001390373;0.1998307;0.008109102,-0.002735426;0.4997731;0.006948975,0.1102399;0.3782286;-0.02533929,0.1722651;0.1906698;0.005879164,0.2592257;-0.04337604;0.0185435,-0.1121121;0.363479;-0.0223012,-0.1705245;0.1728479;-0.006559718,-0.251632;-0.06334135;-0.0182302,0.07250693;0.00575593;-0.03331088,0.08446407;-0.2932095;-0.0114773,0.07148216;-0.5889893;0.03695623,0.08388009;-0.6121733;-0.03005407,-0.07008908;0.001927648;-0.03852017,-0.1004506;-0.2956851;-0.01605169,-0.09893984;-0.5926605;0.02641396,-0.09778328;-0.6193197;-0.03778913,-0.002395758;0.3998195;0.009974117,0;0;0,-0.0008248204;0.1997668;0.009619244,-0.0005572891;0.4997094;0.01079221,0.1151164;0.3787974;-0.009764342,0.1991082;0.2019852;0.03125808,0.3406585;-0.003232107;0.04994908,-0.1148005;0.3693945;-0.008922948,-0.1959179;0.1872422;0.006584661,-0.3389198;-0.01652114;-0.01645828,0.0729288;0.004647544;-0.03255441,0.08509513;-0.2940719;-0.007681169,0.0727457;-0.5878901;0.05163441,0.08553597;-0.6169218;-0.008285597,-0.06940524;0.003189693;-0.03965777,-0.1008518;-0.2938947;-0.01223513,-0.1011784;-0.5885329;0.04422895,-0.1055631;-0.6145783;-0.020562,-0.0008085216;0.3997365;0.01310437,114.3983
-0;0;0,-0.001390373;0.1998307;0.008109102,-0.002735426;0.4997731;0.006948975,0.1102399;0.3782286;-0.02533929,0.1722651;0.1906698;0.005879164,0.2592257;-0.04337604;0.0185435,-0.1121121;0.363479;-0.0223012,-0.1705245;0.1728479;-0.006559718,-0.251632;-0.06334135;-0.0182302,0.07250693;0.00575593;-0.03331088,0.08446407;-0.2932095;-0.0114773,0.07148216;-0.5889893;0.03695623,0.08388009;-0.6121733;-0.03005407,-0.07008908;0.001927648;-0.03852017,-0.1004506;-0.2956851;-0.01605169,-0.09893984;-0.5926605;0.02641396,-0.09778328;-0.6193197;-0.03778913,-0.002395758;0.3998195;0.009974117,0;0;0,-0.0008248204;0.1997668;0.009619244,-0.0005572891;0.4997094;0.01079221,0.1151164;0.3787974;-0.009764342,0.1991082;0.2019852;0.03125808,0.3406585;-0.003232107;0.04994908,-0.1148005;0.3693945;-0.008922948,-0.1959179;0.1872422;0.006584661,-0.3389198;-0.01652114;-0.01645828,0.0729288;0.004647544;-0.03255441,0.08509513;-0.2940719;-0.007681169,0.0727457;-0.5878901;0.05163441,0.08553597;-0.6169218;-0.008285597,-0.06940524;0.003189693;-0.03965777,-0.1008518;-0.2938947;-0.01223513,-0.1011784;-0.5885329;0.04422895,-0.1055631;-0.6145783;-0.020562,-0.0008085216;0.3997365;0.01310437,114.4098
-0;0;0,-0.001226188;0.1998389;0.007931158,-0.002212514;0.4997798;0.006283677,0.1107851;0.3780831;-0.02523168,0.1712636;0.1897137;0.004082311,0.2526973;-0.0464379;0.01413115,-0.111474;0.3638924;-0.02404815,-0.1685041;0.1728698;-0.007987658,-0.2449512;-0.06493218;-0.01828633,0.07257903;0.005741049;-0.03315606,0.08462621;-0.293238;-0.01155943,0.07170193;-0.5889614;0.03723236,0.08400743;-0.6124653;-0.02944412,-0.07001311;0.001963633;-0.03865628,-0.1003263;-0.295684;-0.01658832,-0.09889821;-0.5925497;0.02663986,-0.09866622;-0.5607217;-0.07169491,-0.0020043;0.3998314;0.009489574,0;0;0,-0.0008248204;0.1997668;0.009619244,-0.0005572891;0.4997094;0.01079221,0.1151164;0.3787974;-0.009764342,0.1991082;0.2019852;0.03125808,0.3406585;-0.003232107;0.04994908,-0.1148005;0.3693945;-0.008922948,-0.1959179;0.1872422;0.006584661,-0.3389198;-0.01652114;-0.01645828,0.0729288;0.004647544;-0.03255441,0.08509513;-0.2940719;-0.007681169,0.0727457;-0.5878901;0.05163441,0.08553597;-0.6169218;-0.008285597,-0.06940524;0.003189693;-0.03965777,-0.1008518;-0.2938947;-0.01223513,-0.1011784;-0.5885329;0.04422895,-0.1055631;-0.6145783;-0.020562,-0.0008085216;0.3997365;0.01310437,114.4318
-0;0;0,-0.001226188;0.1998389;0.007931158,-0.002212514;0.4997798;0.006283677,0.1107851;0.3780831;-0.02523168,0.1712636;0.1897137;0.004082311,0.2526973;-0.0464379;0.01413115,-0.111474;0.3638924;-0.02404815,-0.1685041;0.1728698;-0.007987658,-0.2449512;-0.06493218;-0.01828633,0.07257903;0.005741049;-0.03315606,0.08462621;-0.293238;-0.01155943,0.07170193;-0.5889614;0.03723236,0.08400743;-0.6124653;-0.02944412,-0.07001311;0.001963633;-0.03865628,-0.1003263;-0.295684;-0.01658832,-0.09889821;-0.5925497;0.02663986,-0.09866622;-0.5607217;-0.07169491,-0.0020043;0.3998314;0.009489574,0;0;0,-0.0006641364;0.1997662;0.009645435,-7.318627E-05;0.4997081;0.01085871,0.1154563;0.3788697;-0.009939726,0.1955798;0.1999575;0.02969186,0.3336944;-0.007650509;0.04767167,-0.1144623;0.3696067;-0.008982645,-0.1940306;0.1867333;0.006057134,-0.3278318;-0.02317618;-0.01707805,0.07289063;0.004663982;-0.03263743,0.08509829;-0.2940526;-0.007750448,0.07299683;-0.5879132;0.05140634,0.08501594;-0.6176515;-0.007732105,-0.06946914;0.003177257;-0.03954672,-0.1008992;-0.2939027;-0.01205711,-0.1010531;-0.588602;0.04408804,-0.1059412;-0.6148325;-0.02044892,-0.0004360535;0.3997352;0.01315999,114.4432
-0;0;0,-0.001226188;0.1998389;0.007931158,-0.002212514;0.4997798;0.006283677,0.1107851;0.3780831;-0.02523168,0.1712636;0.1897137;0.004082311,0.2526973;-0.0464379;0.01413115,-0.111474;0.3638924;-0.02404815,-0.1685041;0.1728698;-0.007987658,-0.2449512;-0.06493218;-0.01828633,0.07257903;0.005741049;-0.03315606,0.08462621;-0.293238;-0.01155943,0.07170193;-0.5889614;0.03723236,0.08400743;-0.6124653;-0.02944412,-0.07001311;0.001963633;-0.03865628,-0.1003263;-0.295684;-0.01658832,-0.09889821;-0.5925497;0.02663986,-0.09866622;-0.5607217;-0.07169491,-0.0020043;0.3998314;0.009489574,0;0;0,-0.0006641364;0.1997662;0.009645435,-7.318627E-05;0.4997081;0.01085871,0.1154563;0.3788697;-0.009939726,0.1955798;0.1999575;0.02969186,0.3336944;-0.007650509;0.04767167,-0.1144623;0.3696067;-0.008982645,-0.1940306;0.1867333;0.006057134,-0.3278318;-0.02317618;-0.01707805,0.07289063;0.004663982;-0.03263743,0.08509829;-0.2940526;-0.007750448,0.07299683;-0.5879132;0.05140634,0.08501594;-0.6176515;-0.007732105,-0.06946914;0.003177257;-0.03954672,-0.1008992;-0.2939027;-0.01205711,-0.1010531;-0.588602;0.04408804,-0.1059412;-0.6148325;-0.02044892,-0.0004360535;0.3997352;0.01315999,114.4545
-0;0;0,-0.0009781329;0.1998485;0.007721685,-0.001434923;0.4997856;0.005451813,0.1115758;0.3779728;-0.02505933,0.1715331;0.1892905;0.003297593,0.2472237;-0.0488086;0.01222807,-0.1112971;0.3639905;-0.02340538,-0.1673769;0.1725934;-0.008499329,-0.2374492;-0.0671954;-0.01805091,0.07266023;0.005688337;-0.03298686,0.08486165;-0.2932859;-0.01141098,0.07200167;-0.5889325;0.03786086,0.08466802;-0.612969;-0.02815554,-0.06995653;0.002048186;-0.0387542,-0.1000028;-0.2955917;-0.01622219,-0.09852324;-0.5924443;0.02709528,-0.09845171;-0.5606434;-0.07123472,-0.001425665;0.3998446;0.008886159,0;0;0,-0.0006641364;0.1997662;0.009645435,-7.318627E-05;0.4997081;0.01085871,0.1154563;0.3788697;-0.009939726,0.1955798;0.1999575;0.02969186,0.3336944;-0.007650509;0.04767167,-0.1144623;0.3696067;-0.008982645,-0.1940306;0.1867333;0.006057134,-0.3278318;-0.02317618;-0.01707805,0.07289063;0.004663982;-0.03263743,0.08509829;-0.2940526;-0.007750448,0.07299683;-0.5879132;0.05140634,0.08501594;-0.6176515;-0.007732105,-0.06946914;0.003177257;-0.03954672,-0.1008992;-0.2939027;-0.01205711,-0.1010531;-0.588602;0.04408804,-0.1059412;-0.6148325;-0.02044892,-0.0004360535;0.3997352;0.01315999,114.4766
-0;0;0,-0.0009781329;0.1998485;0.007721685,-0.001434923;0.4997856;0.005451813,0.1115758;0.3779728;-0.02505933,0.1715331;0.1892905;0.003297593,0.2472237;-0.0488086;0.01222807,-0.1112971;0.3639905;-0.02340538,-0.1673769;0.1725934;-0.008499329,-0.2374492;-0.0671954;-0.01805091,0.07266023;0.005688337;-0.03298686,0.08486165;-0.2932859;-0.01141098,0.07200167;-0.5889325;0.03786086,0.08466802;-0.612969;-0.02815554,-0.06995653;0.002048186;-0.0387542,-0.1000028;-0.2955917;-0.01622219,-0.09852324;-0.5924443;0.02709528,-0.09845171;-0.5606434;-0.07123472,-0.001425665;0.3998446;0.008886159,0;0;0,-0.0006117505;0.1997681;0.009610158,-1.971622E-05;0.4997103;0.01075215,0.1154348;0.3787919;-0.01035796,0.1938251;0.1990527;0.02899669,0.3281253;-0.01106089;0.04676555,-0.1143277;0.3694529;-0.009237674,-0.1924843;0.1859519;0.005559226,-0.3224155;-0.02639666;-0.0173746,0.07285631;0.004671772;-0.03271287,0.08505703;-0.2940431;-0.007801997,0.07286293;-0.5878036;0.05183104,0.08483659;-0.6170122;-0.008024015,-0.06950855;0.003169364;-0.03947805,-0.1009911;-0.2939062;-0.0120019,-0.1009594;-0.5886195;0.04407082,-0.1013208;-0.55632;-0.05434951,-0.0003761103;0.3997379;0.01307492,114.4878
-0;0;0,-0.0007828936;0.199866;0.007279477,-0.0008406523;0.4997938;0.004046402,0.1123169;0.3781975;-0.02529865,0.1705561;0.1887296;0.001348643,0.2402734;-0.05130979;0.005888072,-0.1111906;0.3640856;-0.02333658,-0.1655856;0.1720898;-0.009963851,-0.2309154;-0.06902;-0.01986627,0.07261124;0.005665614;-0.03309847,0.08512226;-0.2933047;-0.01164537,0.07218023;-0.5888449;0.03823962,0.08494002;-0.6128896;-0.02774949,-0.06998345;0.002087091;-0.03870351,-0.0998328;-0.2955849;-0.01633344,-0.09822312;-0.5923573;0.0275249,-0.09827119;-0.5606056;-0.07079598,-0.0009683;0.3998652;0.007822151,0;0;0,-0.0006117505;0.1997681;0.009610158,-1.971622E-05;0.4997103;0.01075215,0.1154348;0.3787919;-0.01035796,0.1938251;0.1990527;0.02899669,0.3281253;-0.01106089;0.04676555,-0.1143277;0.3694529;-0.009237674,-0.1924843;0.1859519;0.005559226,-0.3224155;-0.02639666;-0.0173746,0.07285631;0.004671772;-0.03271287,0.08505703;-0.2940431;-0.007801997,0.07286293;-0.5878036;0.05183104,0.08483659;-0.6170122;-0.008024015,-0.06950855;0.003169364;-0.03947805,-0.1009911;-0.2939062;-0.0120019,-0.1009594;-0.5886195;0.04407082,-0.1013208;-0.55632;-0.05434951,-0.0003761103;0.3997379;0.01307492,114.4993
-0;0;0,-0.0007828936;0.199866;0.007279477,-0.0008406523;0.4997938;0.004046402,0.1123169;0.3781975;-0.02529865,0.1705561;0.1887296;0.001348643,0.2402734;-0.05130979;0.005888072,-0.1111906;0.3640856;-0.02333658,-0.1655856;0.1720898;-0.009963851,-0.2309154;-0.06902;-0.01986627,0.07261124;0.005665614;-0.03309847,0.08512226;-0.2933047;-0.01164537,0.07218023;-0.5888449;0.03823962,0.08494002;-0.6128896;-0.02774949,-0.06998345;0.002087091;-0.03870351,-0.0998328;-0.2955849;-0.01633344,-0.09822312;-0.5923573;0.0275249,-0.09827119;-0.5606056;-0.07079598,-0.0009683;0.3998652;0.007822151,0;0;0,-0.0006117505;0.1997681;0.009610158,-1.971622E-05;0.4997103;0.01075215,0.1154348;0.3787919;-0.01035796,0.1938251;0.1990527;0.02899669,0.3281253;-0.01106089;0.04676555,-0.1143277;0.3694529;-0.009237674,-0.1924843;0.1859519;0.005559226,-0.3224155;-0.02639666;-0.0173746,0.07285631;0.004671772;-0.03271287,0.08505703;-0.2940431;-0.007801997,0.07286293;-0.5878036;0.05183104,0.08483659;-0.6170122;-0.008024015,-0.06950855;0.003169364;-0.03947805,-0.1009911;-0.2939062;-0.0120019,-0.1009594;-0.5886195;0.04407082,-0.1013208;-0.55632;-0.05434951,-0.0003761103;0.3997379;0.01307492,114.5212
-0;0;0,-0.0005324556;0.1998726;0.007116409,-0.000293463;0.4997992;0.003728348,0.1129659;0.378289;-0.02498056,0.169912;0.1882;-1.384504E-05,0.2345658;-0.05329153;0.001301743,-0.1108183;0.3639816;-0.02317641,-0.1640914;0.1716244;-0.01050017,-0.2259133;-0.07041782;-0.0201749,0.07282239;0.005604761;-0.03264178,0.08540104;-0.2933677;-0.01125789,0.07230446;-0.5888332;0.03902695,0.08540235;-0.6130264;-0.02672873,-0.06980582;0.002180663;-0.03901784,-0.09905344;-0.2954743;-0.01564904,-0.09707762;-0.5920937;0.02921774,-0.09710724;-0.560357;-0.06910037,-0.0005085329;0.3998722;0.007541906,0;0;0,-0.0005006219;0.1997716;0.009542904,0.0002390349;0.4997138;0.01056264,0.1155797;0.3786132;-0.01066815,0.1915555;0.1978251;0.02861705,0.3216312;-0.01502301;0.04523076,-0.1140333;0.3693908;-0.009710813,-0.1909634;0.1853735;0.005099726,-0.3151149;-0.03044124;-0.01749286,0.0728142;0.004660374;-0.03280812,0.08509076;-0.2940001;-0.00728981,0.07290769;-0.5878167;0.05206828,0.08462104;-0.6170632;-0.007788159,-0.06955099;0.003193112;-0.03940131,-0.1010351;-0.2938882;-0.01198847,-0.1008455;-0.5886143;0.04401588,-0.1011678;-0.5563275;-0.05440229,-0.0001642308;0.3997426;0.01293025,114.5436
-0;0;0,-0.0002382486;0.1998722;0.007144522,0.0002656055;0.4997988;0.003790878,0.1135137;0.3783157;-0.02471788,0.1693787;0.1876988;-0.001387505,0.2290117;-0.05507122;-0.003963813,-0.1103446;0.3641609;-0.02330282,-0.1627605;0.1715148;-0.01146931,-0.2190968;-0.07187232;-0.02089988,0.07294202;0.005667445;-0.03236266,0.08573729;-0.2933144;-0.01124033,0.07296234;-0.5886496;0.03988588,0.08657119;-0.6132044;-0.02535506,-0.06969035;0.002146314;-0.03922562,-0.09836046;-0.2955355;-0.01548624,-0.09659397;-0.5920719;0.02993506,-0.09653533;-0.5603324;-0.06838354,-2.618757E-05;0.3998716;0.007593726,0;0;0,-0.0005006219;0.1997716;0.009542904,0.0002390349;0.4997138;0.01056264,0.1155797;0.3786132;-0.01066815,0.1915555;0.1978251;0.02861705,0.3216312;-0.01502301;0.04523076,-0.1140333;0.3693908;-0.009710813,-0.1909634;0.1853735;0.005099726,-0.3151149;-0.03044124;-0.01749286,0.0728142;0.004660374;-0.03280812,0.08509076;-0.2940001;-0.00728981,0.07290769;-0.5878167;0.05206828,0.08462104;-0.6170632;-0.007788159,-0.06955099;0.003193112;-0.03940131,-0.1010351;-0.2938882;-0.01198847,-0.1008455;-0.5886143;0.04401588,-0.1011678;-0.5563275;-0.05440229,-0.0001642308;0.3997426;0.01293025,114.5548
-0;0;0,-0.0002382486;0.1998722;0.007144522,0.0002656055;0.4997988;0.003790878,0.1135137;0.3783157;-0.02471788,0.1693787;0.1876988;-0.001387505,0.2290117;-0.05507122;-0.003963813,-0.1103446;0.3641609;-0.02330282,-0.1627605;0.1715148;-0.01146931,-0.2190968;-0.07187232;-0.02089988,0.07294202;0.005667445;-0.03236266,0.08573729;-0.2933144;-0.01124033,0.07296234;-0.5886496;0.03988588,0.08657119;-0.6132044;-0.02535506,-0.06969035;0.002146314;-0.03922562,-0.09836046;-0.2955355;-0.01548624,-0.09659397;-0.5920719;0.02993506,-0.09653533;-0.5603324;-0.06838354,-2.618757E-05;0.3998716;0.007593726,0;0;0,-0.0005006219;0.1997716;0.009542904,0.0002390349;0.4997138;0.01056264,0.1155797;0.3786132;-0.01066815,0.1915555;0.1978251;0.02861705,0.3216312;-0.01502301;0.04523076,-0.1140333;0.3693908;-0.009710813,-0.1909634;0.1853735;0.005099726,-0.3151149;-0.03044124;-0.01749286,0.0728142;0.004660374;-0.03280812,0.08509076;-0.2940001;-0.00728981,0.07290769;-0.5878167;0.05206828,0.08462104;-0.6170632;-0.007788159,-0.06955099;0.003193112;-0.03940131,-0.1010351;-0.2938882;-0.01198847,-0.1008455;-0.5886143;0.04401588,-0.1011678;-0.5563275;-0.05440229,-0.0001642308;0.3997426;0.01293025,114.5771
-0;0;0,-0.0002382486;0.1998722;0.007144522,0.0002656055;0.4997988;0.003790878,0.1135137;0.3783157;-0.02471788,0.1693787;0.1876988;-0.001387505,0.2290117;-0.05507122;-0.003963813,-0.1103446;0.3641609;-0.02330282,-0.1627605;0.1715148;-0.01146931,-0.2190968;-0.07187232;-0.02089988,0.07294202;0.005667445;-0.03236266,0.08573729;-0.2933144;-0.01124033,0.07296234;-0.5886496;0.03988588,0.08657119;-0.6132044;-0.02535506,-0.06969035;0.002146314;-0.03922562,-0.09836046;-0.2955355;-0.01548624,-0.09659397;-0.5920719;0.02993506,-0.09653533;-0.5603324;-0.06838354,-2.618757E-05;0.3998716;0.007593726,0;0;0,-0.0004569874;0.1997734;0.009506151,0.0002581054;0.4997161;0.01045537,0.1151642;0.3786021;-0.01284765,0.1897725;0.1973242;0.02679975,0.3160526;-0.01780643;0.04329715,-0.1139361;0.3692293;-0.009897755,-0.1883877;0.1841675;0.004562202,-0.3102749;-0.03292066;-0.01815877,0.07280146;0.004687668;-0.03283251,0.08507879;-0.2939688;-0.007266805,0.07282695;-0.5878032;0.05198887,0.08485825;-0.616493;-0.008535139,-0.06954265;0.003165532;-0.03941827,-0.1011738;-0.2938706;-0.01168732,-0.1005888;-0.5886199;0.04419205,-0.1015376;-0.556339;-0.05422103,-0.0001308791;0.3997453;0.01284296,114.5884
-0;0;0,-0.0001279674;0.1998815;0.006883532,0.0004729753;0.4998052;0.003257205,0.1139146;0.3784886;-0.0245191,0.1692929;0.1876608;-0.00175909,0.2226132;-0.05645692;-0.009725085,-0.1100877;0.3639684;-0.02377485,-0.161572;0.1710203;-0.01280145,-0.215144;-0.07302436;-0.02129995,0.07293101;0.005687831;-0.03238389,0.08607034;-0.2932737;-0.01118613,0.07330541;-0.5884524;0.04083926,0.08666253;-0.6127821;-0.02470978,-0.06970888;0.002152132;-0.03919234,-0.09813309;-0.2955634;-0.01558086,-0.09656996;-0.5919282;0.030954,-0.09472678;-0.6186099;-0.03320609,0.0001601222;0.3998811;0.007139532,0;0;0,-0.0004569874;0.1997734;0.009506151,0.0002581054;0.4997161;0.01045537,0.1151642;0.3786021;-0.01284765,0.1897725;0.1973242;0.02679975,0.3160526;-0.01780643;0.04329715,-0.1139361;0.3692293;-0.009897755,-0.1883877;0.1841675;0.004562202,-0.3102749;-0.03292066;-0.01815877,0.07280146;0.004687668;-0.03283251,0.08507879;-0.2939688;-0.007266805,0.07282695;-0.5878032;0.05198887,0.08485825;-0.616493;-0.008535139,-0.06954265;0.003165532;-0.03941827,-0.1011738;-0.2938706;-0.01168732,-0.1005888;-0.5886199;0.04419205,-0.1015376;-0.556339;-0.05422103,-0.0001308791;0.3997453;0.01284296,114.5996
-0;0;0,-0.0001279674;0.1998815;0.006883532,0.0004729753;0.4998052;0.003257205,0.1139146;0.3784886;-0.0245191,0.1692929;0.1876608;-0.00175909,0.2226132;-0.05645692;-0.009725085,-0.1100877;0.3639684;-0.02377485,-0.161572;0.1710203;-0.01280145,-0.215144;-0.07302436;-0.02129995,0.07293101;0.005687831;-0.03238389,0.08607034;-0.2932737;-0.01118613,0.07330541;-0.5884524;0.04083926,0.08666253;-0.6127821;-0.02470978,-0.06970888;0.002152132;-0.03919234,-0.09813309;-0.2955634;-0.01558086,-0.09656996;-0.5919282;0.030954,-0.09472678;-0.6186099;-0.03320609,0.0001601222;0.3998811;0.007139532,0;0;0,-0.0004569874;0.1997734;0.009506151,0.0002581054;0.4997161;0.01045537,0.1151642;0.3786021;-0.01284765,0.1897725;0.1973242;0.02679975,0.3160526;-0.01780643;0.04329715,-0.1139361;0.3692293;-0.009897755,-0.1883877;0.1841675;0.004562202,-0.3102749;-0.03292066;-0.01815877,0.07280146;0.004687668;-0.03283251,0.08507879;-0.2939688;-0.007266805,0.07282695;-0.5878032;0.05198887,0.08485825;-0.616493;-0.008535139,-0.06954265;0.003165532;-0.03941827,-0.1011738;-0.2938706;-0.01168732,-0.1005888;-0.5886199;0.04419205,-0.1015376;-0.556339;-0.05422103,-0.0001308791;0.3997453;0.01284296,114.6217
-0;0;0,0.0001423864;0.1998793;0.0069467,0.001014878;0.4998038;0.003435645,0.1143982;0.3785098;-0.02431862,0.1686689;0.1871727;-0.003228063,0.2171362;-0.05780542;-0.01491705,-0.1094237;0.3636638;-0.0239993,-0.1605071;0.1705824;-0.01350938,-0.2113356;-0.07400766;-0.02310964,0.07322978;0.00579294;-0.03168346,0.08688132;-0.2931507;-0.01055667,0.07416739;-0.588299;0.04165263,0.08722345;-0.6132111;-0.02329135,-0.06926923;0.002099826;-0.03996704,-0.09738494;-0.2955662;-0.01538151,-0.09574804;-0.5917628;0.03220966,-0.09387728;-0.6188412;-0.03147252,0.000622393;0.3998784;0.007279499,0;0;0,-0.0003604909;0.1997779;0.009415636,0.0006043089;0.4997195;0.01014077,0.115402;0.3781748;-0.0127709,0.1879129;0.1958622;0.02601409,0.3059379;-0.02398944;0.04135544,-0.1136676;0.369333;-0.0103202,-0.1869708;0.1838112;0.004112441,-0.3056266;-0.03506212;-0.018587,0.07276427;0.004692147;-0.03291419,0.08513561;-0.2939538;-0.007271593,0.07282074;-0.5878189;0.05181915,0.08478113;-0.6168434;-0.00828135,-0.06958807;0.003166137;-0.03933797,-0.1011923;-0.2938848;-0.01173466,-0.1006816;-0.5886634;0.04399052,-0.1014975;-0.5563958;-0.05442135,0.0001223412;0.3997515;0.01262667,114.6331
-0;0;0,0.0001423864;0.1998793;0.0069467,0.001014878;0.4998038;0.003435645,0.1143982;0.3785098;-0.02431862,0.1686689;0.1871727;-0.003228063,0.2171362;-0.05780542;-0.01491705,-0.1094237;0.3636638;-0.0239993,-0.1605071;0.1705824;-0.01350938,-0.2113356;-0.07400766;-0.02310964,0.07322978;0.00579294;-0.03168346,0.08688132;-0.2931507;-0.01055667,0.07416739;-0.588299;0.04165263,0.08722345;-0.6132111;-0.02329135,-0.06926923;0.002099826;-0.03996704,-0.09738494;-0.2955662;-0.01538151,-0.09574804;-0.5917628;0.03220966,-0.09387728;-0.6188412;-0.03147252,0.000622393;0.3998784;0.007279499,0;0;0,-0.0003604909;0.1997779;0.009415636,0.0006043089;0.4997195;0.01014077,0.115402;0.3781748;-0.0127709,0.1879129;0.1958622;0.02601409,0.3059379;-0.02398944;0.04135544,-0.1136676;0.369333;-0.0103202,-0.1869708;0.1838112;0.004112441,-0.3056266;-0.03506212;-0.018587,0.07276427;0.004692147;-0.03291419,0.08513561;-0.2939538;-0.007271593,0.07282074;-0.5878189;0.05181915,0.08478113;-0.6168434;-0.00828135,-0.06958807;0.003166137;-0.03933797,-0.1011923;-0.2938848;-0.01173466,-0.1006816;-0.5886634;0.04399052,-0.1014975;-0.5563958;-0.05442135,0.0001223412;0.3997515;0.01262667,114.6445
-0;0;0,0.0003193703;0.1998704;0.007191275,0.001333483;0.4997971;0.003952202,0.1146985;0.3785652;-0.02384759,0.167891;0.1867335;-0.004581392,0.2125028;-0.05867147;-0.02149765,-0.1089119;0.3633434;-0.02401605,-0.1598243;0.1702203;-0.01346152,-0.2071076;-0.07508433;-0.02294349,0.07332577;0.005818712;-0.0314559,0.08726973;-0.2930689;-0.009735299,0.07464496;-0.5881515;0.04286572,0.08753849;-0.6130611;-0.02211347,-0.06915842;0.002111856;-0.04015784,-0.0971711;-0.2955035;-0.01485219,-0.09550952;-0.5916052;0.03332528,-0.09434396;-0.6187223;-0.03032689,0.0009011829;0.3998689;0.007716899,0;0;0,-0.0003604909;0.1997779;0.009415636,0.0006043089;0.4997195;0.01014077,0.115402;0.3781748;-0.0127709,0.1879129;0.1958622;0.02601409,0.3059379;-0.02398944;0.04135544,-0.1136676;0.369333;-0.0103202,-0.1869708;0.1838112;0.004112441,-0.3056266;-0.03506212;-0.018587,0.07276427;0.004692147;-0.03291419,0.08513561;-0.2939538;-0.007271593,0.07282074;-0.5878189;0.05181915,0.08478113;-0.6168434;-0.00828135,-0.06958807;0.003166137;-0.03933797,-0.1011923;-0.2938848;-0.01173466,-0.1006816;-0.5886634;0.04399052,-0.1014975;-0.5563958;-0.05442135,0.0001223412;0.3997515;0.01262667,114.6664
-0;0;0,0.0003193703;0.1998704;0.007191275,0.001333483;0.4997971;0.003952202,0.1146985;0.3785652;-0.02384759,0.167891;0.1867335;-0.004581392,0.2125028;-0.05867147;-0.02149765,-0.1089119;0.3633434;-0.02401605,-0.1598243;0.1702203;-0.01346152,-0.2071076;-0.07508433;-0.02294349,0.07332577;0.005818712;-0.0314559,0.08726973;-0.2930689;-0.009735299,0.07464496;-0.5881515;0.04286572,0.08753849;-0.6130611;-0.02211347,-0.06915842;0.002111856;-0.04015784,-0.0971711;-0.2955035;-0.01485219,-0.09550952;-0.5916052;0.03332528,-0.09434396;-0.6187223;-0.03032689,0.0009011829;0.3998689;0.007716899,0;0;0,-0.0002679036;0.1997853;0.009260259,0.0009065217;0.4997256;0.009590924,0.1156412;0.3779388;-0.01290199,0.1864484;0.1947595;0.02493548,0.3011849;-0.02695754;0.03824347,-0.1134;0.3691716;-0.01066758,-0.1854413;0.1831642;0.003869006,-0.2989554;-0.03842337;-0.01879193,0.07277019;0.004668281;-0.03290452,0.08510748;-0.2939926;-0.007419406,0.07289053;-0.5878602;0.05167852,0.08481497;-0.6171287;-0.008107059,-0.06957044;0.003195876;-0.03936673,-0.1012416;-0.293859;-0.01188314,-0.1006685;-0.5886491;0.04378073,-0.1054501;-0.6161465;-0.01923745,0.0003517816;0.3997622;0.01223952,114.6778
-0;0;0,0.0005811146;0.1998736;0.007084482,0.002009455;0.4997973;0.003711237,0.1151128;0.3786694;-0.02454963,0.1673392;0.1864825;-0.006203972,0.2075747;-0.05931762;-0.0277314,-0.1083511;0.3631466;-0.02407717,-0.1587431;0.1698585;-0.01405937,-0.2030819;-0.07591879;-0.02535521,0.07312845;0.005788769;-0.03191738,0.08765891;-0.2930405;-0.009782981,0.07502253;-0.5879757;0.04363587,0.08797247;-0.61333;-0.02081592,-0.06928205;0.002157115;-0.03994175,-0.09727954;-0.2955103;-0.01523784,-0.09560868;-0.5914344;0.03401828,-0.09399108;-0.6186517;-0.02950224,0.001436213;0.3998713;0.007514702,0;0;0,-0.0002679036;0.1997853;0.009260259,0.0009065217;0.4997256;0.009590924,0.1156412;0.3779388;-0.01290199,0.1864484;0.1947595;0.02493548,0.3011849;-0.02695754;0.03824347,-0.1134;0.3691716;-0.01066758,-0.1854413;0.1831642;0.003869006,-0.2989554;-0.03842337;-0.01879193,0.07277019;0.004668281;-0.03290452,0.08510748;-0.2939926;-0.007419406,0.07289053;-0.5878602;0.05167852,0.08481497;-0.6171287;-0.008107059,-0.06957044;0.003195876;-0.03936673,-0.1012416;-0.293859;-0.01188314,-0.1006685;-0.5886491;0.04378073,-0.1054501;-0.6161465;-0.01923745,0.0003517816;0.3997622;0.01223952,114.6997
-0;0;0,0.0005811146;0.1998736;0.007084482,0.002009455;0.4997973;0.003711237,0.1151128;0.3786694;-0.02454963,0.1673392;0.1864825;-0.006203972,0.2075747;-0.05931762;-0.0277314,-0.1083511;0.3631466;-0.02407717,-0.1587431;0.1698585;-0.01405937,-0.2030819;-0.07591879;-0.02535521,0.07312845;0.005788769;-0.03191738,0.08765891;-0.2930405;-0.009782981,0.07502253;-0.5879757;0.04363587,0.08797247;-0.61333;-0.02081592,-0.06928205;0.002157115;-0.03994175,-0.09727954;-0.2955103;-0.01523784,-0.09560868;-0.5914344;0.03401828,-0.09399108;-0.6186517;-0.02950224,0.001436213;0.3998713;0.007514702,0;0;0,-0.0002679036;0.1997853;0.009260259,0.0009065217;0.4997256;0.009590924,0.1156412;0.3779388;-0.01290199,0.1864484;0.1947595;0.02493548,0.3011849;-0.02695754;0.03824347,-0.1134;0.3691716;-0.01066758,-0.1854413;0.1831642;0.003869006,-0.2989554;-0.03842337;-0.01879193,0.07277019;0.004668281;-0.03290452,0.08510748;-0.2939926;-0.007419406,0.07289053;-0.5878602;0.05167852,0.08481497;-0.6171287;-0.008107059,-0.06957044;0.003195876;-0.03936673,-0.1012416;-0.293859;-0.01188314,-0.1006685;-0.5886491;0.04378073,-0.1054501;-0.6161465;-0.01923745,0.0003517816;0.3997622;0.01223952,114.7225
-0;0;0,0.0006311841;0.1998681;0.007233952,0.002078454;0.4997947;0.004130314,0.1150088;0.378789;-0.02490882,0.1657364;0.1860223;-0.008547049,0.203227;-0.05995129;-0.03286728,-0.1079525;0.3625106;-0.02414845,-0.1581527;0.1691716;-0.01415018,-0.2011968;-0.07680553;-0.02608555,0.07314109;0.005859429;-0.03187551,0.08786413;-0.2929272;-0.009297434,0.07550088;-0.5878331;0.04434662,0.08753417;-0.6139793;-0.01934756,-0.0692467;0.002134023;-0.04000424,-0.0973912;-0.295509;-0.01517379,-0.09566993;-0.5912306;0.03528185,-0.09382467;-0.6187208;-0.02789933,0.001505578;0.3998653;0.007844729,0;0;0,-0.0001453664;0.1997856;0.009258127,0.001081223;0.4997259;0.0095485,0.115785;0.3782498;-0.01333942,0.1836041;0.1935754;0.02265997,0.2941511;-0.03044452;0.03237647,-0.1132275;0.3693822;-0.01097084,-0.1843696;0.1830159;0.003395984,-0.2929604;-0.04099135;-0.01959905,0.07274435;0.004668564;-0.03296153,0.08511947;-0.2939826;-0.00738086,0.07281577;-0.5878572;0.05166414,0.08487123;-0.6172693;-0.007904172,-0.06959189;0.00318743;-0.0393295,-0.1012908;-0.2938773;-0.01198431,-0.1006185;-0.5885801;0.04413854,-0.1058053;-0.6170004;-0.01769478,0.0005260146;0.3997627;0.01220585,114.7336
-0;0;0,0.0006311841;0.1998681;0.007233952,0.002078454;0.4997947;0.004130314,0.1150088;0.378789;-0.02490882,0.1657364;0.1860223;-0.008547049,0.203227;-0.05995129;-0.03286728,-0.1079525;0.3625106;-0.02414845,-0.1581527;0.1691716;-0.01415018,-0.2011968;-0.07680553;-0.02608555,0.07314109;0.005859429;-0.03187551,0.08786413;-0.2929272;-0.009297434,0.07550088;-0.5878331;0.04434662,0.08753417;-0.6139793;-0.01934756,-0.0692467;0.002134023;-0.04000424,-0.0973912;-0.295509;-0.01517379,-0.09566993;-0.5912306;0.03528185,-0.09382467;-0.6187208;-0.02789933,0.001505578;0.3998653;0.007844729,0;0;0,-0.0001453664;0.1997856;0.009258127,0.001081223;0.4997259;0.0095485,0.115785;0.3782498;-0.01333942,0.1836041;0.1935754;0.02265997,0.2941511;-0.03044452;0.03237647,-0.1132275;0.3693822;-0.01097084,-0.1843696;0.1830159;0.003395984,-0.2929604;-0.04099135;-0.01959905,0.07274435;0.004668564;-0.03296153,0.08511947;-0.2939826;-0.00738086,0.07281577;-0.5878572;0.05166414,0.08487123;-0.6172693;-0.007904172,-0.06959189;0.00318743;-0.0393295,-0.1012908;-0.2938773;-0.01198431,-0.1006185;-0.5885801;0.04413854,-0.1058053;-0.6170004;-0.01769478,0.0005260146;0.3997627;0.01220585,114.7452
-0;0;0,0.0009478543;0.1998587;0.007456352,0.002718792;0.4997876;0.004765263,0.1157009;0.3791454;-0.02415547,0.1658113;0.1860888;-0.009386538,0.1994408;-0.05980392;-0.03948338,-0.1075916;0.3626431;-0.023171,-0.157593;0.1691947;-0.01436193,-0.1989947;-0.07707216;-0.02613214,0.07299151;0.005985435;-0.03219341,0.08838464;-0.2926466;-0.008068882,0.07616462;-0.5874566;0.04613182,0.08794093;-0.6137881;-0.0173884,-0.0694112;0.002052135;-0.03972245,-0.09708378;-0.295607;-0.01455707,-0.09558814;-0.5911804;0.03676611,-0.09363675;-0.6181937;-0.02699239,0.002055515;0.3998537;0.008339035,0;0;0,-0.0001453664;0.1997856;0.009258127,0.001081223;0.4997259;0.0095485,0.115785;0.3782498;-0.01333942,0.1836041;0.1935754;0.02265997,0.2941511;-0.03044452;0.03237647,-0.1132275;0.3693822;-0.01097084,-0.1843696;0.1830159;0.003395984,-0.2929604;-0.04099135;-0.01959905,0.07274435;0.004668564;-0.03296153,0.08511947;-0.2939826;-0.00738086,0.07281577;-0.5878572;0.05166414,0.08487123;-0.6172693;-0.007904172,-0.06959189;0.00318743;-0.0393295,-0.1012908;-0.2938773;-0.01198431,-0.1006185;-0.5885801;0.04413854,-0.1058053;-0.6170004;-0.01769478,0.0005260146;0.3997627;0.01220585,114.767
-0;0;0,0.0009478543;0.1998587;0.007456352,0.002718792;0.4997876;0.004765263,0.1157009;0.3791454;-0.02415547,0.1658113;0.1860888;-0.009386538,0.1994408;-0.05980392;-0.03948338,-0.1075916;0.3626431;-0.023171,-0.157593;0.1691947;-0.01436193,-0.1989947;-0.07707216;-0.02613214,0.07299151;0.005985435;-0.03219341,0.08838464;-0.2926466;-0.008068882,0.07616462;-0.5874566;0.04613182,0.08794093;-0.6137881;-0.0173884,-0.0694112;0.002052135;-0.03972245,-0.09708378;-0.295607;-0.01455707,-0.09558814;-0.5911804;0.03676611,-0.09363675;-0.6181937;-0.02699239,0.002055515;0.3998537;0.008339035,0;0;0,-0.0001166676;0.1997906;0.009150122,0.001086361;0.4997314;0.009358357,0.1157865;0.3782265;-0.01353212,0.1823085;0.1929275;0.02166889,0.2884296;-0.03333494;0.02827394,-0.1131221;0.3690536;-0.0111635,-0.1823563;0.18189;0.002117646,-0.2861622;-0.04451758;-0.0194222,0.07283239;0.004553386;-0.03278276,0.08541189;-0.2940577;-0.006837048,0.07284097;-0.5880538;0.05154352,0.08470652;-0.617138;-0.008497372,-0.06952284;0.003270715;-0.03944461,-0.101255;-0.2937978;-0.01217999,-0.1005483;-0.5884961;0.04396645,-0.1054705;-0.6172438;-0.01747105,0.0005374904;0.3997687;0.01203329,114.7786
-0;0;0,0.0009459252;0.1998512;0.007655255,0.002685208;0.4997847;0.005427469,0.1158443;0.3796247;-0.02340309,0.165493;0.1862037;-0.01229731,0.1956932;-0.05989394;-0.04429573,-0.1076038;0.363026;-0.02315466,-0.1572897;0.1694671;-0.01501415,-0.1985484;-0.07686695;-0.02584333,0.07270974;0.005980181;-0.03282577,0.08807649;-0.2925529;-0.007491289,0.07607489;-0.5872607;0.04731151,0.08772685;-0.6143303;-0.01533431,-0.06962591;0.002092378;-0.03934278,-0.09744816;-0.295536;-0.0139796,-0.09635947;-0.5909616;0.03819799,-0.09449685;-0.6167343;-0.02703253,0.002037412;0.3998448;0.00883243,0;0;0,-0.0001166676;0.1997906;0.009150122,0.001086361;0.4997314;0.009358357,0.1157865;0.3782265;-0.01353212,0.1823085;0.1929275;0.02166889,0.2884296;-0.03333494;0.02827394,-0.1131221;0.3690536;-0.0111635,-0.1823563;0.18189;0.002117646,-0.2861622;-0.04451758;-0.0194222,0.07283239;0.004553386;-0.03278276,0.08541189;-0.2940577;-0.006837048,0.07284097;-0.5880538;0.05154352,0.08470652;-0.617138;-0.008497372,-0.06952284;0.003270715;-0.03944461,-0.101255;-0.2937978;-0.01217999,-0.1005483;-0.5884961;0.04396645,-0.1054705;-0.6172438;-0.01747105,0.0005374904;0.3997687;0.01203329,114.8004
-0;0;0,0.0009459252;0.1998512;0.007655255,0.002685208;0.4997847;0.005427469,0.1158443;0.3796247;-0.02340309,0.165493;0.1862037;-0.01229731,0.1956932;-0.05989394;-0.04429573,-0.1076038;0.363026;-0.02315466,-0.1572897;0.1694671;-0.01501415,-0.1985484;-0.07686695;-0.02584333,0.07270974;0.005980181;-0.03282577,0.08807649;-0.2925529;-0.007491289,0.07607489;-0.5872607;0.04731151,0.08772685;-0.6143303;-0.01533431,-0.06962591;0.002092378;-0.03934278,-0.09744816;-0.295536;-0.0139796,-0.09635947;-0.5909616;0.03819799,-0.09449685;-0.6167343;-0.02703253,0.002037412;0.3998448;0.00883243,0;0;0,-0.0001166676;0.1997906;0.009150122,0.001086361;0.4997314;0.009358357,0.1157865;0.3782265;-0.01353212,0.1823085;0.1929275;0.02166889,0.2884296;-0.03333494;0.02827394,-0.1131221;0.3690536;-0.0111635,-0.1823563;0.18189;0.002117646,-0.2861622;-0.04451758;-0.0194222,0.07283239;0.004553386;-0.03278276,0.08541189;-0.2940577;-0.006837048,0.07284097;-0.5880538;0.05154352,0.08470652;-0.617138;-0.008497372,-0.06952284;0.003270715;-0.03944461,-0.101255;-0.2937978;-0.01217999,-0.1005483;-0.5884961;0.04396645,-0.1054705;-0.6172438;-0.01747105,0.0005374904;0.3997687;0.01203329,114.8118
-0;0;0,0.00114569;0.1998542;0.007548864,0.003210105;0.4997833;0.005048487,0.116301;0.3795607;-0.02348597,0.1650176;0.1858303;-0.01372972,0.1933035;-0.05988266;-0.05013133,-0.1071977;0.3623233;-0.02258963,-0.1568574;0.1687255;-0.01525295,-0.1971952;-0.07764702;-0.02842262,0.0728403;0.005927577;-0.03254465,0.08854593;-0.2925317;-0.006556543,0.07676372;-0.5871248;0.04890621,0.08845627;-0.6146303;-0.01319187,-0.06942099;0.002200295;-0.03969741,-0.09710839;-0.2953217;-0.01297531,-0.0959407;-0.5906876;0.03953799,-0.09414143;-0.616862;-0.02522482,0.002448933;0.3998474;0.008547869,0;0;0,-9.441814E-05;0.1997931;0.009095156,0.001054988;0.4997345;0.009227569,0.1155192;0.3782808;-0.01482952,0.1807266;0.1923703;0.01959799,0.2826581;-0.03588076;0.02297733,-0.1130101;0.3688206;-0.01154457,-0.1813248;0.1813305;0.001892005,-0.278948;-0.04791997;-0.01845321,0.07280582;0.004537043;-0.03284398,0.08526797;-0.2940797;-0.006906386,0.07285658;-0.5881086;0.0513427,0.08504172;-0.6174396;-0.00830726,-0.06954363;0.003279437;-0.03940721,-0.1014175;-0.2937837;-0.01224886,-0.100797;-0.5885371;0.04360848,-0.1062417;-0.6153947;-0.02013531,0.0005300029;0.3997721;0.01192153,114.8341
-0;0;0,0.00114569;0.1998542;0.007548864,0.003210105;0.4997833;0.005048487,0.116301;0.3795607;-0.02348597,0.1650176;0.1858303;-0.01372972,0.1933035;-0.05988266;-0.05013133,-0.1071977;0.3623233;-0.02258963,-0.1568574;0.1687255;-0.01525295,-0.1971952;-0.07764702;-0.02842262,0.0728403;0.005927577;-0.03254465,0.08854593;-0.2925317;-0.006556543,0.07676372;-0.5871248;0.04890621,0.08845627;-0.6146303;-0.01319187,-0.06942099;0.002200295;-0.03969741,-0.09710839;-0.2953217;-0.01297531,-0.0959407;-0.5906876;0.03953799,-0.09414143;-0.616862;-0.02522482,0.002448933;0.3998474;0.008547869,0;0;0,-9.441814E-05;0.1997931;0.009095156,0.001054988;0.4997345;0.009227569,0.1155192;0.3782808;-0.01482952,0.1807266;0.1923703;0.01959799,0.2826581;-0.03588076;0.02297733,-0.1130101;0.3688206;-0.01154457,-0.1813248;0.1813305;0.001892005,-0.278948;-0.04791997;-0.01845321,0.07280582;0.004537043;-0.03284398,0.08526797;-0.2940797;-0.006906386,0.07285658;-0.5881086;0.0513427,0.08504172;-0.6174396;-0.00830726,-0.06954363;0.003279437;-0.03940721,-0.1014175;-0.2937837;-0.01224886,-0.100797;-0.5885371;0.04360848,-0.1062417;-0.6153947;-0.02013531,0.0005300029;0.3997721;0.01192153,114.8457
-0;0;0,0.001093653;0.199821;0.008390104,0.003101487;0.4997562;0.006958442,0.1160422;0.3796269;-0.02255272,0.1644449;0.1857746;-0.01369542,0.1908144;-0.05959909;-0.05365057,-0.107283;0.3622292;-0.02095845,-0.1571731;0.1686665;-0.01429107,-0.1971942;-0.0777041;-0.02842798,0.0728323;0.005699303;-0.03260327,0.08817526;-0.2925878;-0.004506487,0.07622112;-0.5871096;0.05129682,0.08914031;-0.6151533;-0.009877276,-0.0694927;0.002407383;-0.03955969,-0.09713134;-0.2949758;-0.01128614,-0.09620892;-0.5902651;0.04166073,-0.09452453;-0.616377;-0.0231786,0.002357311;0.3998094;0.01013401,0;0;0,-9.441814E-05;0.1997931;0.009095156,0.001054988;0.4997345;0.009227569,0.1155192;0.3782808;-0.01482952,0.1807266;0.1923703;0.01959799,0.2826581;-0.03588076;0.02297733,-0.1130101;0.3688206;-0.01154457,-0.1813248;0.1813305;0.001892005,-0.278948;-0.04791997;-0.01845321,0.07280582;0.004537043;-0.03284398,0.08526797;-0.2940797;-0.006906386,0.07285658;-0.5881086;0.0513427,0.08504172;-0.6174396;-0.00830726,-0.06954363;0.003279437;-0.03940721,-0.1014175;-0.2937837;-0.01224886,-0.100797;-0.5885371;0.04360848,-0.1062417;-0.6153947;-0.02013531,0.0005300029;0.3997721;0.01192153,114.8673
-0;0;0,0.001093653;0.199821;0.008390104,0.003101487;0.4997562;0.006958442,0.1160422;0.3796269;-0.02255272,0.1644449;0.1857746;-0.01369542,0.1908144;-0.05959909;-0.05365057,-0.107283;0.3622292;-0.02095845,-0.1571731;0.1686665;-0.01429107,-0.1971942;-0.0777041;-0.02842798,0.0728323;0.005699303;-0.03260327,0.08817526;-0.2925878;-0.004506487,0.07622112;-0.5871096;0.05129682,0.08914031;-0.6151533;-0.009877276,-0.0694927;0.002407383;-0.03955969,-0.09713134;-0.2949758;-0.01128614,-0.09620892;-0.5902651;0.04166073,-0.09452453;-0.616377;-0.0231786,0.002357311;0.3998094;0.01013401,0;0;0,-1.979613E-05;0.199797;0.009009271,0.001122947;0.4997388;0.008994998,0.1154022;0.3782828;-0.0158662,0.1773333;0.1910437;0.01739086,0.2752676;-0.0389622;0.01490513,-0.1121918;0.3684505;-0.01460408,-0.1757705;0.1795483;0.001940967,-0.2708247;-0.05094635;-0.01641401,0.0728089;0.004524972;-0.03283883,0.08518305;-0.2940831;-0.006760053,0.07263885;-0.5880946;0.05154828,0.08428277;-0.6162428;-0.009748295,-0.06953587;0.003282577;-0.03942064,-0.1016471;-0.2937491;-0.01219862,-0.101011;-0.588506;0.04364033,-0.105803;-0.615857;-0.01955659,0.0006137271;0.3997775;0.01173072,114.8789
-0;0;0,0.0010804;0.1997998;0.0088807,0.00307013;0.4997372;0.008161877,0.1160244;0.3794507;-0.02145641,0.1643969;0.1855381;-0.01384083,0.1885916;-0.05932598;-0.05806977,-0.1071888;0.362107;-0.02028186,-0.1571321;0.1685425;-0.01408076,-0.1977602;-0.07748643;-0.0319449,0.07278988;0.005724336;-0.03269352,0.08802029;-0.2924627;-0.00349509,0.07603482;-0.5868843;0.05282815,0.08920977;-0.6151094;-0.008059025,-0.06953824;0.002398265;-0.03948014,-0.09716526;-0.2948969;-0.01028501,-0.09619121;-0.5901152;0.04305548,-0.09458402;-0.6157268;-0.02236851,0.002332415;0.3997835;0.01111211,0;0;0,-1.979613E-05;0.199797;0.009009271,0.001122947;0.4997388;0.008994998,0.1154022;0.3782828;-0.0158662,0.1773333;0.1910437;0.01739086,0.2752676;-0.0389622;0.01490513,-0.1121918;0.3684505;-0.01460408,-0.1757705;0.1795483;0.001940967,-0.2708247;-0.05094635;-0.01641401,0.0728089;0.004524972;-0.03283883,0.08518305;-0.2940831;-0.006760053,0.07263885;-0.5880946;0.05154828,0.08428277;-0.6162428;-0.009748295,-0.06953587;0.003282577;-0.03942064,-0.1016471;-0.2937491;-0.01219862,-0.101011;-0.588506;0.04364033,-0.105803;-0.615857;-0.01955659,0.0006137271;0.3997775;0.01173072,114.9011
-0;0;0,0.0010804;0.1997998;0.0088807,0.00307013;0.4997372;0.008161877,0.1160244;0.3794507;-0.02145641,0.1643969;0.1855381;-0.01384083,0.1885916;-0.05932598;-0.05806977,-0.1071888;0.362107;-0.02028186,-0.1571321;0.1685425;-0.01408076,-0.1977602;-0.07748643;-0.0319449,0.07278988;0.005724336;-0.03269352,0.08802029;-0.2924627;-0.00349509,0.07603482;-0.5868843;0.05282815,0.08920977;-0.6151094;-0.008059025,-0.06953824;0.002398265;-0.03948014,-0.09716526;-0.2948969;-0.01028501,-0.09619121;-0.5901152;0.04305548,-0.09458402;-0.6157268;-0.02236851,0.002332415;0.3997835;0.01111211,0;0;0,-1.979613E-05;0.199797;0.009009271,0.001122947;0.4997388;0.008994998,0.1154022;0.3782828;-0.0158662,0.1773333;0.1910437;0.01739086,0.2752676;-0.0389622;0.01490513,-0.1121918;0.3684505;-0.01460408,-0.1757705;0.1795483;0.001940967,-0.2708247;-0.05094635;-0.01641401,0.0728089;0.004524972;-0.03283883,0.08518305;-0.2940831;-0.006760053,0.07263885;-0.5880946;0.05154828,0.08428277;-0.6162428;-0.009748295,-0.06953587;0.003282577;-0.03942064,-0.1016471;-0.2937491;-0.01219862,-0.101011;-0.588506;0.04364033,-0.105803;-0.615857;-0.01955659,0.0006137271;0.3997775;0.01173072,114.9127
-0;0;0,0.001076852;0.1997679;0.009571306,0.003051137;0.4997042;0.009592107,0.1158918;0.3795875;-0.02074264,0.163723;0.1855233;-0.0135828,0.1871074;-0.05897295;-0.06021729,-0.1071458;0.3619496;-0.01910026,-0.1571977;0.1683976;-0.01340475,-0.1978834;-0.0775453;-0.03229283,0.0725701;0.005603721;-0.03319907,0.08808993;-0.292462;-0.00293423,0.0761607;-0.586703;0.0543364,0.08913358;-0.615059;-0.00642575,-0.06964917;0.002515516;-0.03927678,-0.09769896;-0.2947674;-0.01036141,-0.0967309;-0.5896892;0.04459487,-0.09550311;-0.6150796;-0.02109215,0.002319165;0.3997448;0.01234711,0;0;0,6.625666E-05;0.1997983;0.00898003,0.001262514;0.4997401;0.008911538,0.1153796;0.3784232;-0.01667494,0.1751992;0.1901652;0.0146388,0.2699944;-0.04111147;0.009642072,-0.1120996;0.3683018;-0.01432436,-0.1749076;0.1791222;0.001992859,-0.263862;-0.05377328;-0.01662946,0.07282969;0.004409706;-0.0328084,0.08519126;-0.294179;-0.006502863,0.07255795;-0.5882505;0.05148282,0.08431883;-0.6164014;-0.009788118,-0.06953658;0.003365656;-0.03941239,-0.1016806;-0.2936645;-0.01221165,-0.1009908;-0.5884211;0.04362781,-0.105568;-0.6162207;-0.01903212,0.0007452582;0.3997792;0.01166046,114.9345
-0;0;0,0.001076852;0.1997679;0.009571306,0.003051137;0.4997042;0.009592107,0.1158918;0.3795875;-0.02074264,0.163723;0.1855233;-0.0135828,0.1871074;-0.05897295;-0.06021729,-0.1071458;0.3619496;-0.01910026,-0.1571977;0.1683976;-0.01340475,-0.1978834;-0.0775453;-0.03229283,0.0725701;0.005603721;-0.03319907,0.08808993;-0.292462;-0.00293423,0.0761607;-0.586703;0.0543364,0.08913358;-0.615059;-0.00642575,-0.06964917;0.002515516;-0.03927678,-0.09769896;-0.2947674;-0.01036141,-0.0967309;-0.5896892;0.04459487,-0.09550311;-0.6150796;-0.02109215,0.002319165;0.3997448;0.01234711,0;0;0,6.625666E-05;0.1997983;0.00898003,0.001262514;0.4997401;0.008911538,0.1153796;0.3784232;-0.01667494,0.1751992;0.1901652;0.0146388,0.2699944;-0.04111147;0.009642072,-0.1120996;0.3683018;-0.01432436,-0.1749076;0.1791222;0.001992859,-0.263862;-0.05377328;-0.01662946,0.07282969;0.004409706;-0.0328084,0.08519126;-0.294179;-0.006502863,0.07255795;-0.5882505;0.05148282,0.08431883;-0.6164014;-0.009788118,-0.06953658;0.003365656;-0.03941239,-0.1016806;-0.2936645;-0.01221165,-0.1009908;-0.5884211;0.04362781,-0.105568;-0.6162207;-0.01903212,0.0007452582;0.3997792;0.01166046,114.9458
-0;0;0,-0.0007914206;0.1998022;0.008856683,-0.001028373;0.4997487;0.009213433,0.114123;0.3798274;-0.01544604,0.1898523;0.197122;0.01428311,0.289205;-0.03202377;0.003271413,-0.1128126;0.3633637;-0.01232692,-0.1936375;0.1815388;0.007848321,-0.305343;-0.04207726;0.003637654,0.07287375;0.006023832;-0.03245196,0.08639532;-0.2922725;-0.00353056,0.0735082;-0.5852569;0.05966819,0.08727451;-0.6129816;-0.001727007,-0.06998735;0.002083842;-0.03869662,-0.09933972;-0.2947692;-0.006810773,-0.09701505;-0.5892047;0.05065525,-0.09853526;-0.6168659;-0.0123243,-0.001037138;0.399781;0.01175668,0;0;0,6.625666E-05;0.1997983;0.00898003,0.001262514;0.4997401;0.008911538,0.1153796;0.3784232;-0.01667494,0.1751992;0.1901652;0.0146388,0.2699944;-0.04111147;0.009642072,-0.1120996;0.3683018;-0.01432436,-0.1749076;0.1791222;0.001992859,-0.263862;-0.05377328;-0.01662946,0.07282969;0.004409706;-0.0328084,0.08519126;-0.294179;-0.006502863,0.07255795;-0.5882505;0.05148282,0.08431883;-0.6164014;-0.009788118,-0.06953658;0.003365656;-0.03941239,-0.1016806;-0.2936645;-0.01221165,-0.1009908;-0.5884211;0.04362781,-0.105568;-0.6162207;-0.01903212,0.0007452582;0.3997792;0.01166046,119.7715
-0;0;0,-0.0007914206;0.1998022;0.008856683,-0.001028373;0.4997487;0.009213433,0.114123;0.3798274;-0.01544604,0.1898523;0.197122;0.01428311,0.289205;-0.03202377;0.003271413,-0.1128126;0.3633637;-0.01232692,-0.1936375;0.1815388;0.007848321,-0.305343;-0.04207726;0.003637654,0.07287375;0.006023832;-0.03245196,0.08639532;-0.2922725;-0.00353056,0.0735082;-0.5852569;0.05966819,0.08727451;-0.6129816;-0.001727007,-0.06998735;0.002083842;-0.03869662,-0.09933972;-0.2947692;-0.006810773,-0.09701505;-0.5892047;0.05065525,-0.09853526;-0.6168659;-0.0123243,-0.001037138;0.399781;0.01175668,0;0;0,9.947963E-05;0.1997999;0.008943772,0.001242656;0.4997421;0.008821547,0.1154496;0.3785237;-0.01656629,0.1738046;0.189481;0.01271783,0.2634211;-0.04374552;0.004100134,-0.1121106;0.3686535;-0.01474656,-0.1744836;0.1793582;0.001893947,-0.2575651;-0.05574173;-0.01614706,0.07282183;0.004416951;-0.03282486,0.08516834;-0.2941681;-0.006470298,0.07243627;-0.5882547;0.0514173,0.08463565;-0.6170822;-0.008893531,-0.06952955;0.003361188;-0.03942517,-0.1015433;-0.2936711;-0.01209486,-0.1012286;-0.5884902;0.04341701,-0.1062308;-0.6159847;-0.0195877,0.000751225;0.3997814;0.0115831,119.783
-0;0;0,-0.0008052571;0.1998054;0.008784372,-0.001091836;0.499752;0.009008772,0.1140536;0.3797236;-0.01561277,0.1881922;0.1964112;0.01438733,0.2842675;-0.03418794;0.004714096,-0.1127897;0.3631552;-0.01250006,-0.1933198;0.1811808;0.007505854,-0.3035159;-0.04320009;0.004338089,0.07302469;0.005994487;-0.03211637,0.08638223;-0.292342;-0.003534276,0.07345764;-0.5853626;0.05948856,0.08664025;-0.6127975;-0.002398912,-0.06991284;0.002079008;-0.03883135,-0.0993281;-0.2947718;-0.006982263,-0.09696362;-0.5891722;0.0506612,-0.09924248;-0.6166818;-0.01248216,-0.001086473;0.3997854;0.01159565,0;0;0,9.947963E-05;0.1997999;0.008943772,0.001242656;0.4997421;0.008821547,0.1154496;0.3785237;-0.01656629,0.1738046;0.189481;0.01271783,0.2634211;-0.04374552;0.004100134,-0.1121106;0.3686535;-0.01474656,-0.1744836;0.1793582;0.001893947,-0.2575651;-0.05574173;-0.01614706,0.07282183;0.004416951;-0.03282486,0.08516834;-0.2941681;-0.006470298,0.07243627;-0.5882547;0.0514173,0.08463565;-0.6170822;-0.008893531,-0.06952955;0.003361188;-0.03942517,-0.1015433;-0.2936711;-0.01209486,-0.1012286;-0.5884902;0.04341701,-0.1062308;-0.6159847;-0.0195877,0.000751225;0.3997814;0.0115831,119.7954
-0;0;0,-0.0008052571;0.1998054;0.008784372,-0.001091836;0.499752;0.009008772,0.1140536;0.3797236;-0.01561277,0.1881922;0.1964112;0.01438733,0.2842675;-0.03418794;0.004714096,-0.1127897;0.3631552;-0.01250006,-0.1933198;0.1811808;0.007505854,-0.3035159;-0.04320009;0.004338089,0.07302469;0.005994487;-0.03211637,0.08638223;-0.292342;-0.003534276,0.07345764;-0.5853626;0.05948856,0.08664025;-0.6127975;-0.002398912,-0.06991284;0.002079008;-0.03883135,-0.0993281;-0.2947718;-0.006982263,-0.09696362;-0.5891722;0.0506612,-0.09924248;-0.6166818;-0.01248216,-0.001086473;0.3997854;0.01159565,0;0;0,9.947963E-05;0.1997999;0.008943772,0.001242656;0.4997421;0.008821547,0.1154496;0.3785237;-0.01656629,0.1738046;0.189481;0.01271783,0.2634211;-0.04374552;0.004100134,-0.1121106;0.3686535;-0.01474656,-0.1744836;0.1793582;0.001893947,-0.2575651;-0.05574173;-0.01614706,0.07282183;0.004416951;-0.03282486,0.08516834;-0.2941681;-0.006470298,0.07243627;-0.5882547;0.0514173,0.08463565;-0.6170822;-0.008893531,-0.06952955;0.003361188;-0.03942517,-0.1015433;-0.2936711;-0.01209486,-0.1012286;-0.5884902;0.04341701,-0.1062308;-0.6159847;-0.0195877,0.000751225;0.3997814;0.0115831,119.8162
-0;0;0,-0.0008280351;0.1998062;0.00876362,-0.001188533;0.4997527;0.008928771,0.1139355;0.3792889;-0.01556865,0.186843;0.1955016;0.01454327,0.2784956;-0.03695129;0.006453001,-0.1128196;0.3630524;-0.0125661,-0.1929033;0.1808669;0.007309968,-0.3000209;-0.04501578;0.005630591,0.07303103;0.00595154;-0.03210993,0.08632475;-0.2923884;-0.003534561,0.07356318;-0.5854526;0.05931885,0.0865792;-0.6133657;-0.002000999,-0.06990624;0.002107012;-0.03884169,-0.09936912;-0.2947395;-0.006996252,-0.09702747;-0.5891547;0.05057294,-0.0998129;-0.6170005;-0.01213478,-0.001152041;0.3997867;0.01153665,0;0;0,0.0001321035;0.1997994;0.008954629,0.001266533;0.4997417;0.008842215,0.1155177;0.3787662;-0.01658311,0.1735925;0.1894352;0.01136474,0.2575122;-0.04573187;-0.001043736,-0.1120886;0.3686762;-0.01471904,-0.1731562;0.1789625;0.001998283,-0.2513592;-0.05786155;-0.01528353,0.07281807;0.004458257;-0.03282762,0.08515219;-0.2941314;-0.006519467,0.07252751;-0.5882541;0.05120796,0.08484246;-0.6173204;-0.008765925,-0.06953504;0.003310428;-0.03941979,-0.1015678;-0.2937243;-0.01213894,-0.1010463;-0.58851;0.04354871,-0.1061975;-0.617506;-0.01755045,0.000782498;0.3997809;0.01159858,119.8386
-0;0;0,-0.0008325191;0.1998065;0.008755327,-0.001219706;0.4997531;0.008887375,0.113943;0.3794025;-0.01555537,0.1855454;0.1951458;0.01481834,0.2739313;-0.03860669;0.007909482,-0.1128689;0.3631706;-0.01265505,-0.1923101;0.1806793;0.006992256,-0.2966087;-0.04652318;0.006080773,0.07302859;0.005957937;-0.03211427,0.0863931;-0.2923414;-0.003149694,0.07349836;-0.5854973;0.05924708,0.0864538;-0.6134439;-0.002043076,-0.06990247;0.002088583;-0.03884947,-0.09924027;-0.2947457;-0.006775834,-0.09692565;-0.5891516;0.05084211,-0.09907586;-0.6179574;-0.01068051,-0.001175122;0.3997873;0.01150511,0;0;0,0.0001321035;0.1997994;0.008954629,0.001266533;0.4997417;0.008842215,0.1155177;0.3787662;-0.01658311,0.1735925;0.1894352;0.01136474,0.2575122;-0.04573187;-0.001043736,-0.1120886;0.3686762;-0.01471904,-0.1731562;0.1789625;0.001998283,-0.2513592;-0.05786155;-0.01528353,0.07281807;0.004458257;-0.03282762,0.08515219;-0.2941314;-0.006519467,0.07252751;-0.5882541;0.05120796,0.08484246;-0.6173204;-0.008765925,-0.06953504;0.003310428;-0.03941979,-0.1015678;-0.2937243;-0.01213894,-0.1010463;-0.58851;0.04354871,-0.1061975;-0.617506;-0.01755045,0.000782498;0.3997809;0.01159858,119.8602
-0;0;0,-0.0008325191;0.1998065;0.008755327,-0.001219706;0.4997531;0.008887375,0.113943;0.3794025;-0.01555537,0.1855454;0.1951458;0.01481834,0.2739313;-0.03860669;0.007909482,-0.1128689;0.3631706;-0.01265505,-0.1923101;0.1806793;0.006992256,-0.2966087;-0.04652318;0.006080773,0.07302859;0.005957937;-0.03211427,0.0863931;-0.2923414;-0.003149694,0.07349836;-0.5854973;0.05924708,0.0864538;-0.6134439;-0.002043076,-0.06990247;0.002088583;-0.03884947,-0.09924027;-0.2947457;-0.006775834,-0.09692565;-0.5891516;0.05084211,-0.09907586;-0.6179574;-0.01068051,-0.001175122;0.3997873;0.01150511,0;0;0,0.0001321035;0.1997994;0.008954629,0.001266533;0.4997417;0.008842215,0.1155177;0.3787662;-0.01658311,0.1735925;0.1894352;0.01136474,0.2575122;-0.04573187;-0.001043736,-0.1120886;0.3686762;-0.01471904,-0.1731562;0.1789625;0.001998283,-0.2513592;-0.05786155;-0.01528353,0.07281807;0.004458257;-0.03282762,0.08515219;-0.2941314;-0.006519467,0.07252751;-0.5882541;0.05120796,0.08484246;-0.6173204;-0.008765925,-0.06953504;0.003310428;-0.03941979,-0.1015678;-0.2937243;-0.01213894,-0.1010463;-0.58851;0.04354871,-0.1061975;-0.617506;-0.01755045,0.000782498;0.3997809;0.01159858,119.8719
-0;0;0,-0.0008325191;0.1998065;0.008755327,-0.001219706;0.4997531;0.008887375,0.113943;0.3794025;-0.01555537,0.1855454;0.1951458;0.01481834,0.2739313;-0.03860669;0.007909482,-0.1128689;0.3631706;-0.01265505,-0.1923101;0.1806793;0.006992256,-0.2966087;-0.04652318;0.006080773,0.07302859;0.005957937;-0.03211427,0.0863931;-0.2923414;-0.003149694,0.07349836;-0.5854973;0.05924708,0.0864538;-0.6134439;-0.002043076,-0.06990247;0.002088583;-0.03884947,-0.09924027;-0.2947457;-0.006775834,-0.09692565;-0.5891516;0.05084211,-0.09907586;-0.6179574;-0.01068051,-0.001175122;0.3997873;0.01150511,0;0;0,0.000155632;0.1997999;0.008944362,0.001296787;0.4997422;0.008813949,0.1155246;0.3791461;-0.0169842,0.1730948;0.1894713;0.009645721,0.2519294;-0.04735933;-0.004366388,-0.1116677;0.3687681;-0.01646412,-0.1696038;0.1782531;0.002175581,-0.24348;-0.05999623;-0.01454519,0.0727952;0.004505746;-0.03287183,0.085063;-0.2940845;-0.006539309,0.07245556;-0.5882037;0.0512095,0.08455086;-0.6181359;-0.007650923,-0.06955023;0.003228529;-0.03939977,-0.1017038;-0.2937975;-0.01216531,-0.1010097;-0.5886023;0.04341914,-0.1071134;-0.618485;-0.01642647,0.0008135681;0.3997815;0.01157375,119.8831
-0;0;0,-0.0008929322;0.1998111;0.00864401,-0.00130387;0.4997573;0.008660246,0.1139482;0.380006;-0.01579451,0.1842447;0.1952354;0.01450765,0.2701901;-0.03945395;0.008652712,-0.1129614;0.3632514;-0.01291414,-0.1914805;0.1802913;0.006068755,-0.2923478;-0.04845612;0.006729244,0.07305392;0.005950441;-0.03205802,0.086394;-0.2923727;-0.003329454,0.07342771;-0.5855589;0.05891021,0.08636673;-0.6136902;-0.002147757,-0.06984634;0.002087775;-0.03895035,-0.09933657;-0.2947205;-0.006775718,-0.09692068;-0.5891273;0.05083322,-0.09940909;-0.6165695;-0.01238471,-0.001260235;0.3997928;0.0113257,0;0;0,0.000155632;0.1997999;0.008944362,0.001296787;0.4997422;0.008813949,0.1155246;0.3791461;-0.0169842,0.1730948;0.1894713;0.009645721,0.2519294;-0.04735933;-0.004366388,-0.1116677;0.3687681;-0.01646412,-0.1696038;0.1782531;0.002175581,-0.24348;-0.05999623;-0.01454519,0.0727952;0.004505746;-0.03287183,0.085063;-0.2940845;-0.006539309,0.07245556;-0.5882037;0.0512095,0.08455086;-0.6181359;-0.007650923,-0.06955023;0.003228529;-0.03939977,-0.1017038;-0.2937975;-0.01216531,-0.1010097;-0.5886023;0.04341914,-0.1071134;-0.618485;-0.01642647,0.0008135681;0.3997815;0.01157375,119.9057
-0;0;0,-0.0008929322;0.1998111;0.00864401,-0.00130387;0.4997573;0.008660246,0.1139482;0.380006;-0.01579451,0.1842447;0.1952354;0.01450765,0.2701901;-0.03945395;0.008652712,-0.1129614;0.3632514;-0.01291414,-0.1914805;0.1802913;0.006068755,-0.2923478;-0.04845612;0.006729244,0.07305392;0.005950441;-0.03205802,0.086394;-0.2923727;-0.003329454,0.07342771;-0.5855589;0.05891021,0.08636673;-0.6136902;-0.002147757,-0.06984634;0.002087775;-0.03895035,-0.09933657;-0.2947205;-0.006775718,-0.09692068;-0.5891273;0.05083322,-0.09940909;-0.6165695;-0.01238471,-0.001260235;0.3997928;0.0113257,0;0;0,0.000155632;0.1997999;0.008944362,0.001296787;0.4997422;0.008813949,0.1155246;0.3791461;-0.0169842,0.1730948;0.1894713;0.009645721,0.2519294;-0.04735933;-0.004366388,-0.1116677;0.3687681;-0.01646412,-0.1696038;0.1782531;0.002175581,-0.24348;-0.05999623;-0.01454519,0.0727952;0.004505746;-0.03287183,0.085063;-0.2940845;-0.006539309,0.07245556;-0.5882037;0.0512095,0.08455086;-0.6181359;-0.007650923,-0.06955023;0.003228529;-0.03939977,-0.1017038;-0.2937975;-0.01216531,-0.1010097;-0.5886023;0.04341914,-0.1071134;-0.618485;-0.01642647,0.0008135681;0.3997815;0.01157375,119.9181
-0;0;0,-0.0009847116;0.1998138;0.008571966,-0.001612938;0.4997585;0.008415115,0.1138022;0.3803032;-0.01591854,0.1829356;0.1951225;0.01455555,0.2666109;-0.0403696;0.008080958,-0.1131485;0.3633019;-0.01322956,-0.189483;0.1794149;0.005707211,-0.2879738;-0.05036066;0.007375741,0.07305354;0.005879981;-0.03207189,0.08628631;-0.2924506;-0.003370842,0.07375854;-0.5856623;0.05883825,0.08532086;-0.6142876;-0.001860779,-0.06983311;0.002152283;-0.03897056,-0.09951879;-0.2946266;-0.006705437,-0.09697823;-0.5890542;0.05079177,-0.09929597;-0.6163564;-0.01260386,-0.001465279;0.3997964;0.0111634,0;0;0,0.0002077353;0.1998003;0.008932856,0.001408391;0.4997426;0.008781448,0.1156356;0.3793634;-0.01710672,0.172702;0.1892953;0.007744009,0.2459095;-0.04911998;-0.009542249,-0.1113854;0.3688176;-0.01728407,-0.1673795;0.1777829;0.001962123,-0.236857;-0.06186372;-0.01360547,0.07279236;0.004514802;-0.03287688,0.08507515;-0.2940759;-0.006557165,0.07247565;-0.58819;0.05121979,0.08460856;-0.6183603;-0.007307988,-0.06953704;0.003222445;-0.03942353,-0.1017536;-0.2937947;-0.01216669,-0.1011062;-0.5886074;0.04337677,-0.1007834;-0.5564321;-0.05502127,0.0009091952;0.399782;0.01154511,119.9392
-0;0;0,-0.0009847116;0.1998138;0.008571966,-0.001612938;0.4997585;0.008415115,0.1138022;0.3803032;-0.01591854,0.1829356;0.1951225;0.01455555,0.2666109;-0.0403696;0.008080958,-0.1131485;0.3633019;-0.01322956,-0.189483;0.1794149;0.005707211,-0.2879738;-0.05036066;0.007375741,0.07305354;0.005879981;-0.03207189,0.08628631;-0.2924506;-0.003370842,0.07375854;-0.5856623;0.05883825,0.08532086;-0.6142876;-0.001860779,-0.06983311;0.002152283;-0.03897056,-0.09951879;-0.2946266;-0.006705437,-0.09697823;-0.5890542;0.05079177,-0.09929597;-0.6163564;-0.01260386,-0.001465279;0.3997964;0.0111634,0;0;0,0.0002077353;0.1998003;0.008932856,0.001408391;0.4997426;0.008781448,0.1156356;0.3793634;-0.01710672,0.172702;0.1892953;0.007744009,0.2459095;-0.04911998;-0.009542249,-0.1113854;0.3688176;-0.01728407,-0.1673795;0.1777829;0.001962123,-0.236857;-0.06186372;-0.01360547,0.07279236;0.004514802;-0.03287688,0.08507515;-0.2940759;-0.006557165,0.07247565;-0.58819;0.05121979,0.08460856;-0.6183603;-0.007307988,-0.06953704;0.003222445;-0.03942353,-0.1017536;-0.2937947;-0.01216669,-0.1011062;-0.5886074;0.04337677,-0.1007834;-0.5564321;-0.05502127,0.0009091952;0.399782;0.01154511,119.9501
-0;0;0,-0.0008676548;0.1998168;0.008515022,-0.001289334;0.4997615;0.008164551,0.1140931;0.3805473;-0.01607432,0.1816869;0.1948746;0.01485617,0.2631867;-0.04136789;0.00797957,-0.1129953;0.3635213;-0.01330501,-0.1884051;0.179219;0.005297046,-0.2849282;-0.05139148;0.006738013,0.07314241;0.005950319;-0.03185564,0.08610755;-0.2923981;-0.003217563,0.07358034;-0.5856453;0.05882408,0.08513288;-0.614174;-0.002001695,-0.06977476;0.002104612;-0.03907752,-0.09959987;-0.2946459;-0.006679762,-0.09707918;-0.5891602;0.05037265,-0.09965342;-0.6159417;-0.01364278,-0.001219819;0.3998013;0.01098518,0;0;0,0.0002077353;0.1998003;0.008932856,0.001408391;0.4997426;0.008781448,0.1156356;0.3793634;-0.01710672,0.172702;0.1892953;0.007744009,0.2459095;-0.04911998;-0.009542249,-0.1113854;0.3688176;-0.01728407,-0.1673795;0.1777829;0.001962123,-0.236857;-0.06186372;-0.01360547,0.07279236;0.004514802;-0.03287688,0.08507515;-0.2940759;-0.006557165,0.07247565;-0.58819;0.05121979,0.08460856;-0.6183603;-0.007307988,-0.06953704;0.003222445;-0.03942353,-0.1017536;-0.2937947;-0.01216669,-0.1011062;-0.5886074;0.04337677,-0.1007834;-0.5564321;-0.05502127,0.0009091952;0.399782;0.01154511,119.9727
-0;0;0,-0.0008591361;0.1998198;0.008444934,-0.001320854;0.4997647;0.008000298,0.1141151;0.3807557;-0.01617919,0.1806761;0.194743;0.01494833,0.2605584;-0.0420315;0.007421639,-0.1130527;0.3638232;-0.0137222,-0.1873618;0.1790785;0.004920317,-0.2826931;-0.05202574;0.00658679,0.07322935;0.00589747;-0.03166514,0.08609474;-0.2924916;-0.003407659,0.0736559;-0.585809;0.05831866,0.08522252;-0.614221;-0.002654761,-0.06969681;0.002146876;-0.03921409,-0.09964749;-0.2945946;-0.006849464,-0.09710497;-0.5891335;0.05007458,-0.09966741;-0.616003;-0.01383559,-0.001240778;0.3998051;0.01084211,0;0;0,0.000255852;0.1998004;0.008929418,0.001498753;0.4997426;0.008746691,0.1157105;0.3793439;-0.01713492,0.1719607;0.1888437;0.006222265,0.2401904;-0.05077673;-0.01443615,-0.1115631;0.3698205;-0.0173706,-0.1673682;0.178608;0.000617709,-0.2312363;-0.06266655;-0.01378603,0.07268994;0.004483021;-0.03310701,0.0850285;-0.2940875;-0.006584501,0.07240739;-0.5881699;0.0513484,0.08447804;-0.6184437;-0.007050361,-0.0695887;0.003236063;-0.03933117,-0.1016871;-0.2938016;-0.01215894,-0.1013652;-0.5886278;0.04331548,-0.1062527;-0.6180999;-0.01718497,0.0009879072;0.3997823;0.01151811,119.9941
-0;0;0,-0.0008591361;0.1998198;0.008444934,-0.001320854;0.4997647;0.008000298,0.1141151;0.3807557;-0.01617919,0.1806761;0.194743;0.01494833,0.2605584;-0.0420315;0.007421639,-0.1130527;0.3638232;-0.0137222,-0.1873618;0.1790785;0.004920317,-0.2826931;-0.05202574;0.00658679,0.07322935;0.00589747;-0.03166514,0.08609474;-0.2924916;-0.003407659,0.0736559;-0.585809;0.05831866,0.08522252;-0.614221;-0.002654761,-0.06969681;0.002146876;-0.03921409,-0.09964749;-0.2945946;-0.006849464,-0.09710497;-0.5891335;0.05007458,-0.09966741;-0.616003;-0.01383559,-0.001240778;0.3998051;0.01084211,0;0;0,0.000255852;0.1998004;0.008929418,0.001498753;0.4997426;0.008746691,0.1157105;0.3793439;-0.01713492,0.1719607;0.1888437;0.006222265,0.2401904;-0.05077673;-0.01443615,-0.1115631;0.3698205;-0.0173706,-0.1673682;0.178608;0.000617709,-0.2312363;-0.06266655;-0.01378603,0.07268994;0.004483021;-0.03310701,0.0850285;-0.2940875;-0.006584501,0.07240739;-0.5881699;0.0513484,0.08447804;-0.6184437;-0.007050361,-0.0695887;0.003236063;-0.03933117,-0.1016871;-0.2938016;-0.01215894,-0.1013652;-0.5886278;0.04331548,-0.1062527;-0.6180999;-0.01718497,0.0009879072;0.3997823;0.01151811,120.0062
-0;0;0,-0.0008591361;0.1998198;0.008444934,-0.001320854;0.4997647;0.008000298,0.1141151;0.3807557;-0.01617919,0.1806761;0.194743;0.01494833,0.2605584;-0.0420315;0.007421639,-0.1130527;0.3638232;-0.0137222,-0.1873618;0.1790785;0.004920317,-0.2826931;-0.05202574;0.00658679,0.07322935;0.00589747;-0.03166514,0.08609474;-0.2924916;-0.003407659,0.0736559;-0.585809;0.05831866,0.08522252;-0.614221;-0.002654761,-0.06969681;0.002146876;-0.03921409,-0.09964749;-0.2945946;-0.006849464,-0.09710497;-0.5891335;0.05007458,-0.09966741;-0.616003;-0.01383559,-0.001240778;0.3998051;0.01084211,0;0;0,0.000255852;0.1998004;0.008929418,0.001498753;0.4997426;0.008746691,0.1157105;0.3793439;-0.01713492,0.1719607;0.1888437;0.006222265,0.2401904;-0.05077673;-0.01443615,-0.1115631;0.3698205;-0.0173706,-0.1673682;0.178608;0.000617709,-0.2312363;-0.06266655;-0.01378603,0.07268994;0.004483021;-0.03310701,0.0850285;-0.2940875;-0.006584501,0.07240739;-0.5881699;0.0513484,0.08447804;-0.6184437;-0.007050361,-0.0695887;0.003236063;-0.03933117,-0.1016871;-0.2938016;-0.01215894,-0.1013652;-0.5886278;0.04331548,-0.1062527;-0.6180999;-0.01718497,0.0009879072;0.3997823;0.01151811,120.0172
-0;0;0,-0.0008233568;0.1998202;0.008438468,-0.001266578;0.4997652;0.007952734,0.1142633;0.3810852;-0.01600336,0.1799585;0.1947347;0.01494225,0.258523;-0.04246867;0.007056138,-0.112949;0.3637181;-0.01387519,-0.1861873;0.1785277;0.004582748,-0.2800891;-0.05315833;0.006587189,0.07327896;0.005967999;-0.03153691,0.08602101;-0.2924213;-0.003226753,0.07355467;-0.5857661;0.05836401,0.08499962;-0.6138086;-0.003104523,-0.06966501;0.002107517;-0.03927268,-0.09958233;-0.2946015;-0.00658156,-0.09707854;-0.5891894;0.0500902,-0.09952359;-0.6162742;-0.01356477,-0.001196432;0.3998059;0.01080321,0;0;0,-0.0006636563;0.1997767;0.009425,-0.002873598;0.4997146;0.01116519,0.1125925;0.3797089;-0.01638091,0.167587;0.1886823;0.005628994,0.2333964;-0.05155851;-0.01566631,-0.1138413;0.3690891;-0.01766224,-0.1690057;0.1776329;-0.0003007986,-0.230443;-0.06429191;-0.01436525,0.07263111;0.004443333;-0.03324123,0.0852336;-0.2941087;-0.00663507,0.07258449;-0.5881838;0.05132914,0.08460133;-0.6187095;-0.006732918,-0.06967349;0.003244208;-0.0391801,-0.10154;-0.2938349;-0.01218877,-0.1012947;-0.5886825;0.04317185,-0.1060582;-0.618116;-0.01738916,-0.001983471;0.399738;0.01313506,120.0393
-0;0;0,-0.0008233568;0.1998202;0.008438468,-0.001266578;0.4997652;0.007952734,0.1142633;0.3810852;-0.01600336,0.1799585;0.1947347;0.01494225,0.258523;-0.04246867;0.007056138,-0.112949;0.3637181;-0.01387519,-0.1861873;0.1785277;0.004582748,-0.2800891;-0.05315833;0.006587189,0.07327896;0.005967999;-0.03153691,0.08602101;-0.2924213;-0.003226753,0.07355467;-0.5857661;0.05836401,0.08499962;-0.6138086;-0.003104523,-0.06966501;0.002107517;-0.03927268,-0.09958233;-0.2946015;-0.00658156,-0.09707854;-0.5891894;0.0500902,-0.09952359;-0.6162742;-0.01356477,-0.001196432;0.3998059;0.01080321,0;0;0,-0.0006636563;0.1997767;0.009425,-0.002873598;0.4997146;0.01116519,0.1125925;0.3797089;-0.01638091,0.167587;0.1886823;0.005628994,0.2333964;-0.05155851;-0.01566631,-0.1138413;0.3690891;-0.01766224,-0.1690057;0.1776329;-0.0003007986,-0.230443;-0.06429191;-0.01436525,0.07263111;0.004443333;-0.03324123,0.0852336;-0.2941087;-0.00663507,0.07258449;-0.5881838;0.05132914,0.08460133;-0.6187095;-0.006732918,-0.06967349;0.003244208;-0.0391801,-0.10154;-0.2938349;-0.01218877,-0.1012947;-0.5886825;0.04317185,-0.1060582;-0.618116;-0.01738916,-0.001983471;0.399738;0.01313506,120.0505
-0;0;0,-0.0008320655;0.1998199;0.008444848,-0.001326066;0.499765;0.007972422,0.1142633;0.381132;-0.01587477,0.1794336;0.1945881;0.01501579,0.2574815;-0.04275554;0.006269464,-0.1128569;0.3635212;-0.01414953,-0.1849372;0.177889;0.004428415,-0.2771393;-0.05447546;0.006776491,0.07330673;0.005954504;-0.03147485,0.08596298;-0.2924396;-0.003176315,0.07350381;-0.5857924;0.05837736,0.08485287;-0.614359;-0.002437897,-0.06964848;0.002118296;-0.03930143,-0.09953903;-0.2946011;-0.006679423,-0.09715882;-0.5891804;0.0500428,-0.09923419;-0.6166778;-0.01312231,-0.001231326;0.3998055;0.01081414,0;0;0,-0.0006636563;0.1997767;0.009425,-0.002873598;0.4997146;0.01116519,0.1125925;0.3797089;-0.01638091,0.167587;0.1886823;0.005628994,0.2333964;-0.05155851;-0.01566631,-0.1138413;0.3690891;-0.01766224,-0.1690057;0.1776329;-0.0003007986,-0.230443;-0.06429191;-0.01436525,0.07263111;0.004443333;-0.03324123,0.0852336;-0.2941087;-0.00663507,0.07258449;-0.5881838;0.05132914,0.08460133;-0.6187095;-0.006732918,-0.06967349;0.003244208;-0.0391801,-0.10154;-0.2938349;-0.01218877,-0.1012947;-0.5886825;0.04317185,-0.1060582;-0.618116;-0.01738916,-0.001983471;0.399738;0.01313506,120.0622
-0;0;0,-0.0008320655;0.1998199;0.008444848,-0.001326066;0.499765;0.007972422,0.1142633;0.381132;-0.01587477,0.1794336;0.1945881;0.01501579,0.2574815;-0.04275554;0.006269464,-0.1128569;0.3635212;-0.01414953,-0.1849372;0.177889;0.004428415,-0.2771393;-0.05447546;0.006776491,0.07330673;0.005954504;-0.03147485,0.08596298;-0.2924396;-0.003176315,0.07350381;-0.5857924;0.05837736,0.08485287;-0.614359;-0.002437897,-0.06964848;0.002118296;-0.03930143,-0.09953903;-0.2946011;-0.006679423,-0.09715882;-0.5891804;0.0500428,-0.09923419;-0.6166778;-0.01312231,-0.001231326;0.3998055;0.01081414,0;0;0,-0.0003703851;0.1997778;0.009417415,-0.001361556;0.4997213;0.01063624,0.1134335;0.380086;-0.01697055,0.1679987;0.1888847;0.004586497,0.2282699;-0.05252177;-0.0197095,-0.1131082;0.3693611;-0.01771946,-0.1647335;0.1762546;-0.01103326,-0.2202775;-0.06708756;-0.0251568,0.0724413;0.004329591;-0.03366767,0.08554535;-0.2941644;-0.006655654,0.07288214;-0.5882219;0.05139431,0.08490307;-0.6190137;-0.00629602,-0.0698664;0.003258253;-0.03883388,-0.1012509;-0.2938997;-0.01214701,-0.101062;-0.5887212;0.04335275,-0.1055224;-0.6169956;-0.01872151,-0.001121905;0.3997466;0.01287125,120.0841
-0;0;0,-0.0008724363;0.1998198;0.008443369,-0.001554087;0.4997649;0.008016186,0.1140977;0.3810829;-0.01595128,0.1789284;0.1943977;0.01480003,0.256525;-0.0430814;0.005721265,-0.1129101;0.3633329;-0.01421945,-0.1840304;0.177325;0.004300195,-0.2748644;-0.05557241;0.007124222,0.07330275;0.005965843;-0.03148197,0.08593021;-0.2924291;-0.003179252,0.07347386;-0.5857863;0.05835414,0.08478707;-0.6144252;-0.002374254,-0.06963528;0.002108558;-0.03932533,-0.09958076;-0.2946061;-0.006711181,-0.09709477;-0.589237;0.04973789,-0.09821916;-0.6163537;-0.01391542,-0.001366279;0.3998049;0.01083595,0;0;0,-0.0003703851;0.1997778;0.009417415,-0.001361556;0.4997213;0.01063624,0.1134335;0.380086;-0.01697055,0.1679987;0.1888847;0.004586497,0.2282699;-0.05252177;-0.0197095,-0.1131082;0.3693611;-0.01771946,-0.1647335;0.1762546;-0.01103326,-0.2202775;-0.06708756;-0.0251568,0.0724413;0.004329591;-0.03366767,0.08554535;-0.2941644;-0.006655654,0.07288214;-0.5882219;0.05139431,0.08490307;-0.6190137;-0.00629602,-0.0698664;0.003258253;-0.03883388,-0.1012509;-0.2938997;-0.01214701,-0.101062;-0.5887212;0.04335275,-0.1055224;-0.6169956;-0.01872151,-0.001121905;0.3997466;0.01287125,120.1063
-0;0;0,-0.0008724363;0.1998198;0.008443369,-0.001554087;0.4997649;0.008016186,0.1140977;0.3810829;-0.01595128,0.1789284;0.1943977;0.01480003,0.256525;-0.0430814;0.005721265,-0.1129101;0.3633329;-0.01421945,-0.1840304;0.177325;0.004300195,-0.2748644;-0.05557241;0.007124222,0.07330275;0.005965843;-0.03148197,0.08593021;-0.2924291;-0.003179252,0.07347386;-0.5857863;0.05835414,0.08478707;-0.6144252;-0.002374254,-0.06963528;0.002108558;-0.03932533,-0.09958076;-0.2946061;-0.006711181,-0.09709477;-0.589237;0.04973789,-0.09821916;-0.6163537;-0.01391542,-0.001366279;0.3998049;0.01083595,0;0;0,-0.0003703851;0.1997778;0.009417415,-0.001361556;0.4997213;0.01063624,0.1134335;0.380086;-0.01697055,0.1679987;0.1888847;0.004586497,0.2282699;-0.05252177;-0.0197095,-0.1131082;0.3693611;-0.01771946,-0.1647335;0.1762546;-0.01103326,-0.2202775;-0.06708756;-0.0251568,0.0724413;0.004329591;-0.03366767,0.08554535;-0.2941644;-0.006655654,0.07288214;-0.5882219;0.05139431,0.08490307;-0.6190137;-0.00629602,-0.0698664;0.003258253;-0.03883388,-0.1012509;-0.2938997;-0.01214701,-0.101062;-0.5887212;0.04335275,-0.1055224;-0.6169956;-0.01872151,-0.001121905;0.3997466;0.01287125,120.1176
-0;0;0,-0.0008671689;0.1998195;0.008450408,-0.001536646;0.4997648;0.008041805,0.1141452;0.3811268;-0.01581258,0.1786233;0.1942865;0.01473703,0.2560731;-0.04321848;0.005098963,-0.1129038;0.3633586;-0.01421316,-0.1833993;0.1771051;0.00422623,-0.2741729;-0.05581295;0.007279932,0.07329289;0.0059621;-0.03150564,0.08592473;-0.292431;-0.003186246,0.07350025;-0.5858078;0.0582602,0.08499511;-0.6147084;-0.002093505,-0.06963947;0.00210523;-0.03931808,-0.0996737;-0.2946474;-0.007134035,-0.09719709;-0.5892243;0.04959607,-0.09814263;-0.6152768;-0.01532796,-0.001353989;0.3998045;0.0108537,0;0;0,-8.591553E-05;0.1997787;0.009406574,-0.0005070324;0.4997227;0.01027134,0.1139867;0.3802873;-0.01751749,0.1677293;0.1887563;0.003161024,0.2211756;-0.05405554;-0.02302828,-0.1125808;0.3690748;-0.01731861,-0.1631781;0.1756774;-0.01120596,-0.2160302;-0.068244;-0.0256628,0.07225654;0.004132511;-0.03408686,0.08606111;-0.2942863;-0.006597184,0.07325211;-0.5883249;0.05151671,0.08664806;-0.619624;-0.005149029,-0.06992856;0.003455012;-0.03870476,-0.1008872;-0.2937672;-0.0122374,-0.1010113;-0.5885121;0.0436686,-0.1048124;-0.6175517;-0.0174729,-0.0005113637;0.3997515;0.01267093,120.1399
-0;0;0,-0.0009122206;0.1998186;0.008466962,-0.001758269;0.4997636;0.008094795,0.1140278;0.3811889;-0.01566335,0.178424;0.194295;0.01473073,0.2559859;-0.0431596;0.004757134,-0.1130471;0.3633685;-0.01423632,-0.1830088;0.1769062;0.004126295,-0.2740221;-0.05591622;0.007337315,0.0733013;0.00595305;-0.03148778,0.08596215;-0.2924426;-0.003208427,0.07365921;-0.5858378;0.05817501,0.08511584;-0.6147527;-0.002167281,-0.06961833;0.00211176;-0.03935516,-0.0996147;-0.2946448;-0.007171694,-0.09750008;-0.589111;0.05014504,-0.09644695;-0.6168743;-0.0127179,-0.001507331;0.399803;0.01089132,0;0;0,-8.591553E-05;0.1997787;0.009406574,-0.0005070324;0.4997227;0.01027134,0.1139867;0.3802873;-0.01751749,0.1677293;0.1887563;0.003161024,0.2211756;-0.05405554;-0.02302828,-0.1125808;0.3690748;-0.01731861,-0.1631781;0.1756774;-0.01120596,-0.2160302;-0.068244;-0.0256628,0.07225654;0.004132511;-0.03408686,0.08606111;-0.2942863;-0.006597184,0.07325211;-0.5883249;0.05151671,0.08664806;-0.619624;-0.005149029,-0.06992856;0.003455012;-0.03870476,-0.1008872;-0.2937672;-0.0122374,-0.1010113;-0.5885121;0.0436686,-0.1048124;-0.6175517;-0.0174729,-0.0005113637;0.3997515;0.01267093,120.162
-0;0;0,-0.0009122206;0.1998186;0.008466962,-0.001758269;0.4997636;0.008094795,0.1140278;0.3811889;-0.01566335,0.178424;0.194295;0.01473073,0.2559859;-0.0431596;0.004757134,-0.1130471;0.3633685;-0.01423632,-0.1830088;0.1769062;0.004126295,-0.2740221;-0.05591622;0.007337315,0.0733013;0.00595305;-0.03148778,0.08596215;-0.2924426;-0.003208427,0.07365921;-0.5858378;0.05817501,0.08511584;-0.6147527;-0.002167281,-0.06961833;0.00211176;-0.03935516,-0.0996147;-0.2946448;-0.007171694,-0.09750008;-0.589111;0.05014504,-0.09644695;-0.6168743;-0.0127179,-0.001507331;0.399803;0.01089132,0;0;0,-8.591553E-05;0.1997787;0.009406574,-0.0005070324;0.4997227;0.01027134,0.1139867;0.3802873;-0.01751749,0.1677293;0.1887563;0.003161024,0.2211756;-0.05405554;-0.02302828,-0.1125808;0.3690748;-0.01731861,-0.1631781;0.1756774;-0.01120596,-0.2160302;-0.068244;-0.0256628,0.07225654;0.004132511;-0.03408686,0.08606111;-0.2942863;-0.006597184,0.07325211;-0.5883249;0.05151671,0.08664806;-0.619624;-0.005149029,-0.06992856;0.003455012;-0.03870476,-0.1008872;-0.2937672;-0.0122374,-0.1010113;-0.5885121;0.0436686,-0.1048124;-0.6175517;-0.0174729,-0.0005113637;0.3997515;0.01267093,120.1741
-0;0;0,-0.001004557;0.1998157;0.008525299,-0.002454178;0.4997595;0.008441249,0.1136809;0.3817447;-0.01540364,0.1779287;0.1947727;0.01482367,0.2558443;-0.04253384;0.00411108,-0.1134632;0.3634954;-0.0143181,-0.1833603;0.1770102;0.004056901,-0.2744249;-0.05579212;0.007270753,0.0732999;0.005944614;-0.03149264,0.08591665;-0.2924667;-0.003358837,0.07378093;-0.5857754;0.0584695,0.08508008;-0.6145523;-0.002082277,-0.06960593;0.002121413;-0.03937656,-0.09968407;-0.2946518;-0.007423937,-0.09753947;-0.5890836;0.05006823,-0.09646393;-0.6172586;-0.01228162,-0.001950393;0.3997966;0.01112051,0;0;0,-0.0005855074;0.1997647;0.009681723,-0.003365441;0.4996949;0.01191533,0.1119187;0.3807222;-0.01767009,0.1650251;0.1889664;0.002563445,0.2129853;-0.0548145;-0.02519801,-0.1139406;0.3684635;-0.01739766,-0.1629692;0.1746755;-0.01088307,-0.2117012;-0.0701381;-0.02472086,0.07218198;0.004199868;-0.03423629,0.08590754;-0.2942022;-0.006526338,0.07307948;-0.5882539;0.05151711,0.08611836;-0.6191306;-0.005832128,-0.06998152;0.003362665;-0.03861708,-0.1010454;-0.2938366;-0.01201518,-0.1011375;-0.5885866;0.0438638,-0.1018568;-0.5562938;-0.05455337,-0.002336906;0.3997164;0.01371287,120.1954
-0;0;0,-0.001004557;0.1998157;0.008525299,-0.002454178;0.4997595;0.008441249,0.1136809;0.3817447;-0.01540364,0.1779287;0.1947727;0.01482367,0.2558443;-0.04253384;0.00411108,-0.1134632;0.3634954;-0.0143181,-0.1833603;0.1770102;0.004056901,-0.2744249;-0.05579212;0.007270753,0.0732999;0.005944614;-0.03149264,0.08591665;-0.2924667;-0.003358837,0.07378093;-0.5857754;0.0584695,0.08508008;-0.6145523;-0.002082277,-0.06960593;0.002121413;-0.03937656,-0.09968407;-0.2946518;-0.007423937,-0.09753947;-0.5890836;0.05006823,-0.09646393;-0.6172586;-0.01228162,-0.001950393;0.3997966;0.01112051,0;0;0,-0.0005855074;0.1997647;0.009681723,-0.003365441;0.4996949;0.01191533,0.1119187;0.3807222;-0.01767009,0.1650251;0.1889664;0.002563445,0.2129853;-0.0548145;-0.02519801,-0.1139406;0.3684635;-0.01739766,-0.1629692;0.1746755;-0.01088307,-0.2117012;-0.0701381;-0.02472086,0.07218198;0.004199868;-0.03423629,0.08590754;-0.2942022;-0.006526338,0.07307948;-0.5882539;0.05151711,0.08611836;-0.6191306;-0.005832128,-0.06998152;0.003362665;-0.03861708,-0.1010454;-0.2938366;-0.01201518,-0.1011375;-0.5885866;0.0438638,-0.1018568;-0.5562938;-0.05455337,-0.002336906;0.3997164;0.01371287,120.207
-0;0;0,-0.001030481;0.1998118;0.00861387,-0.002539786;0.4997559;0.008616108,0.113607;0.3815142;-0.01516005,0.1776592;0.1944526;0.01492763,0.2562922;-0.04254162;0.002654864,-0.113487;0.3634647;-0.01432776,-0.1834862;0.1770092;0.003960611,-0.2745613;-0.05578673;0.00733363,0.0733051;0.005893363;-0.03149017,0.08594218;-0.2925122;-0.003304174,0.07363655;-0.585808;0.05855136,0.08503403;-0.6147083;-0.001821205,-0.06955486;0.002185981;-0.03946317,-0.09964538;-0.2945639;-0.007306375,-0.09742437;-0.5889865;0.05023021,-0.0961477;-0.6163813;-0.01308174,-0.002014735;0.399792;0.01125094,0;0;0,-0.0005855074;0.1997647;0.009681723,-0.003365441;0.4996949;0.01191533,0.1119187;0.3807222;-0.01767009,0.1650251;0.1889664;0.002563445,0.2129853;-0.0548145;-0.02519801,-0.1139406;0.3684635;-0.01739766,-0.1629692;0.1746755;-0.01088307,-0.2117012;-0.0701381;-0.02472086,0.07218198;0.004199868;-0.03423629,0.08590754;-0.2942022;-0.006526338,0.07307948;-0.5882539;0.05151711,0.08611836;-0.6191306;-0.005832128,-0.06998152;0.003362665;-0.03861708,-0.1010454;-0.2938366;-0.01201518,-0.1011375;-0.5885866;0.0438638,-0.1018568;-0.5562938;-0.05455337,-0.002336906;0.3997164;0.01371287,120.229
-0;0;0,-0.001030481;0.1998118;0.00861387,-0.002539786;0.4997559;0.008616108,0.113607;0.3815142;-0.01516005,0.1776592;0.1944526;0.01492763,0.2562922;-0.04254162;0.002654864,-0.113487;0.3634647;-0.01432776,-0.1834862;0.1770092;0.003960611,-0.2745613;-0.05578673;0.00733363,0.0733051;0.005893363;-0.03149017,0.08594218;-0.2925122;-0.003304174,0.07363655;-0.585808;0.05855136,0.08503403;-0.6147083;-0.001821205,-0.06955486;0.002185981;-0.03946317,-0.09964538;-0.2945639;-0.007306375,-0.09742437;-0.5889865;0.05023021,-0.0961477;-0.6163813;-0.01308174,-0.002014735;0.399792;0.01125094,0;0;0,-0.001045478;0.199748;0.009982513,-0.00440555;0.4996679;0.01275496,0.1109529;0.380872;-0.0174439,0.163544;0.1889249;0.002316974,0.2054594;-0.05563904;-0.02820502,-0.1143997;0.3678699;-0.01764026,-0.1623344;0.1738137;-0.01097237,-0.2063152;-0.07184134;-0.02578104,0.07200384;0.004199426;-0.03460941,0.08626617;-0.2941736;-0.006858444,0.07345223;-0.5881774;0.0514305,0.08646367;-0.6191168;-0.005836457,-0.07008425;0.003331932;-0.038433,-0.1007461;-0.2939331;-0.01210103,-0.1010102;-0.5886638;0.04387845,-0.1018155;-0.5563533;-0.05454123,-0.003211948;0.3996881;0.01437353,120.2404
-0;0;0,-0.001030481;0.1998118;0.00861387,-0.002539786;0.4997559;0.008616108,0.113607;0.3815142;-0.01516005,0.1776592;0.1944526;0.01492763,0.2562922;-0.04254162;0.002654864,-0.113487;0.3634647;-0.01432776,-0.1834862;0.1770092;0.003960611,-0.2745613;-0.05578673;0.00733363,0.0733051;0.005893363;-0.03149017,0.08594218;-0.2925122;-0.003304174,0.07363655;-0.585808;0.05855136,0.08503403;-0.6147083;-0.001821205,-0.06955486;0.002185981;-0.03946317,-0.09964538;-0.2945639;-0.007306375,-0.09742437;-0.5889865;0.05023021,-0.0961477;-0.6163813;-0.01308174,-0.002014735;0.399792;0.01125094,0;0;0,-0.001045478;0.199748;0.009982513,-0.00440555;0.4996679;0.01275496,0.1109529;0.380872;-0.0174439,0.163544;0.1889249;0.002316974,0.2054594;-0.05563904;-0.02820502,-0.1143997;0.3678699;-0.01764026,-0.1623344;0.1738137;-0.01097237,-0.2063152;-0.07184134;-0.02578104,0.07200384;0.004199426;-0.03460941,0.08626617;-0.2941736;-0.006858444,0.07345223;-0.5881774;0.0514305,0.08646367;-0.6191168;-0.005836457,-0.07008425;0.003331932;-0.038433,-0.1007461;-0.2939331;-0.01210103,-0.1010102;-0.5886638;0.04387845,-0.1018155;-0.5563533;-0.05454123,-0.003211948;0.3996881;0.01437353,120.2516
-0;0;0,-0.001040763;0.199811;0.008630672,-0.002555385;0.4997553;0.00865831,0.1136514;0.3815379;-0.01488437,0.1777342;0.1944108;0.01472717,0.2569372;-0.04234248;0.001507461,-0.1134431;0.3633094;-0.01433774,-0.1834492;0.176859;0.003975984,-0.2752792;-0.05564414;0.00706866,0.07331681;0.005891442;-0.03146326,0.08590957;-0.292525;-0.003372921,0.07368367;-0.5858058;0.05856963,0.08498453;-0.6146762;-0.001860149,-0.0695117;0.002181026;-0.03953943,-0.09961177;-0.2945799;-0.007493615,-0.09749948;-0.5890085;0.050016,-0.09712623;-0.6180653;-0.01122025,-0.002030261;0.399791;0.01128001,0;0;0,-0.001045478;0.199748;0.009982513,-0.00440555;0.4996679;0.01275496,0.1109529;0.380872;-0.0174439,0.163544;0.1889249;0.002316974,0.2054594;-0.05563904;-0.02820502,-0.1143997;0.3678699;-0.01764026,-0.1623344;0.1738137;-0.01097237,-0.2063152;-0.07184134;-0.02578104,0.07200384;0.004199426;-0.03460941,0.08626617;-0.2941736;-0.006858444,0.07345223;-0.5881774;0.0514305,0.08646367;-0.6191168;-0.005836457,-0.07008425;0.003331932;-0.038433,-0.1007461;-0.2939331;-0.01210103,-0.1010102;-0.5886638;0.04387845,-0.1018155;-0.5563533;-0.05454123,-0.003211948;0.3996881;0.01437353,120.2628
-0;0;0,-0.001040763;0.199811;0.008630672,-0.002555385;0.4997553;0.00865831,0.1136514;0.3815379;-0.01488437,0.1777342;0.1944108;0.01472717,0.2569372;-0.04234248;0.001507461,-0.1134431;0.3633094;-0.01433774,-0.1834492;0.176859;0.003975984,-0.2752792;-0.05564414;0.00706866,0.07331681;0.005891442;-0.03146326,0.08590957;-0.292525;-0.003372921,0.07368367;-0.5858058;0.05856963,0.08498453;-0.6146762;-0.001860149,-0.0695117;0.002181026;-0.03953943,-0.09961177;-0.2945799;-0.007493615,-0.09749948;-0.5890085;0.050016,-0.09712623;-0.6180653;-0.01122025,-0.002030261;0.399791;0.01128001,0;0;0,-0.0006287546;0.1997613;0.009748758,-0.001509214;0.4997017;0.01076908,0.1127202;0.3804324;-0.01835682,0.16481;0.1882986;0.0009103734,0.2011941;-0.05698007;-0.03094212,-0.113146;0.3681567;-0.01727089,-0.1647145;0.1755437;-0.001748268,-0.205969;-0.07050088;-0.01787613,0.07183012;0.004137426;-0.03497591,0.08656751;-0.2942125;-0.007224334,0.07357373;-0.5881301;0.05145755,0.08668305;-0.6190509;-0.005813409,-0.07017652;0.003423429;-0.03825619,-0.1006987;-0.2938524;-0.01188398,-0.1009771;-0.5885388;0.0443285,-0.1019201;-0.5562969;-0.05407761,-0.001446435;0.3997304;0.0131642,120.285
-0;0;0,-0.001113157;0.1998079;0.008692466,-0.002787223;0.4997514;0.008790965,0.1134195;0.3809639;-0.01461866,0.1779685;0.1939844;0.01491259,0.2579369;-0.04245177;0.0006645024,-0.1136658;0.3634757;-0.01427331,-0.1838536;0.1771033;0.004138561,-0.2761564;-0.05521671;0.006892642,0.07331807;0.005841258;-0.03146966,0.08589182;-0.2925713;-0.003329838,0.07215641;-0.5857562;0.05875043,0.08540403;-0.6146747;-0.001219209,-0.06949672;0.002210434;-0.03956413,-0.09959333;-0.2945579;-0.007583857,-0.09753174;-0.5890093;0.04981067,-0.0974016;-0.6179671;-0.01155419,-0.002206837;0.3997868;0.01138625,0;0;0,-0.0006287546;0.1997613;0.009748758,-0.001509214;0.4997017;0.01076908,0.1127202;0.3804324;-0.01835682,0.16481;0.1882986;0.0009103734,0.2011941;-0.05698007;-0.03094212,-0.113146;0.3681567;-0.01727089,-0.1647145;0.1755437;-0.001748268,-0.205969;-0.07050088;-0.01787613,0.07183012;0.004137426;-0.03497591,0.08656751;-0.2942125;-0.007224334,0.07357373;-0.5881301;0.05145755,0.08668305;-0.6190509;-0.005813409,-0.07017652;0.003423429;-0.03825619,-0.1006987;-0.2938524;-0.01188398,-0.1009771;-0.5885388;0.0443285,-0.1019201;-0.5562969;-0.05407761,-0.001446435;0.3997304;0.0131642,120.2964
-0;0;0,-0.001113157;0.1998079;0.008692466,-0.002787223;0.4997514;0.008790965,0.1134195;0.3809639;-0.01461866,0.1779685;0.1939844;0.01491259,0.2579369;-0.04245177;0.0006645024,-0.1136658;0.3634757;-0.01427331,-0.1838536;0.1771033;0.004138561,-0.2761564;-0.05521671;0.006892642,0.07331807;0.005841258;-0.03146966,0.08589182;-0.2925713;-0.003329838,0.07215641;-0.5857562;0.05875043,0.08540403;-0.6146747;-0.001219209,-0.06949672;0.002210434;-0.03956413,-0.09959333;-0.2945579;-0.007583857,-0.09753174;-0.5890093;0.04981067,-0.0974016;-0.6179671;-0.01155419,-0.002206837;0.3997868;0.01138625,0;0;0,-0.0006287546;0.1997613;0.009748758,-0.001509214;0.4997017;0.01076908,0.1127202;0.3804324;-0.01835682,0.16481;0.1882986;0.0009103734,0.2011941;-0.05698007;-0.03094212,-0.113146;0.3681567;-0.01727089,-0.1647145;0.1755437;-0.001748268,-0.205969;-0.07050088;-0.01787613,0.07183012;0.004137426;-0.03497591,0.08656751;-0.2942125;-0.007224334,0.07357373;-0.5881301;0.05145755,0.08668305;-0.6190509;-0.005813409,-0.07017652;0.003423429;-0.03825619,-0.1006987;-0.2938524;-0.01188398,-0.1009771;-0.5885388;0.0443285,-0.1019201;-0.5562969;-0.05407761,-0.001446435;0.3997304;0.0131642,120.3186
-0;0;0,-0.00115027;0.1998003;0.008861671,-0.002841575;0.4997436;0.009031363,0.1133728;0.3809671;-0.01439646,0.1779467;0.1939473;0.01482428,0.2583692;-0.04229416;-8.090399E-05,-0.1137235;0.3634693;-0.01402194,-0.1840468;0.1771507;0.004416739,-0.2772088;-0.05483223;0.006604543,0.07325754;0.005818807;-0.03161448,0.08580554;-0.2925818;-0.003336394,0.07215666;-0.5857704;0.05874521,0.08536174;-0.614913;-0.0009377636,-0.06954449;0.002219812;-0.03947956,-0.09964944;-0.2945647;-0.007657703,-0.09761481;-0.5889856;0.04989434,-0.09781778;-0.6177976;-0.01165747,-0.002256257;0.3997784;0.01160439,0;0;0,-0.0002795591;0.1997554;0.009883629,-0.0001361801;0.4996982;0.01081421,0.1136119;0.3803307;-0.0184865,0.164791;0.1878792;3.602169E-05,0.1968973;-0.05789813;-0.0325632,-0.1122623;0.3680464;-0.01683193,-0.1632896;0.1752497;-0.001810853,-0.2026345;-0.07106631;-0.01855662,0.07175497;0.004176157;-0.03512524,0.08688425;-0.2941149;-0.006955363,0.07384715;-0.5879815;0.05197263,0.08681793;-0.6187463;-0.005549431,-0.07024005;0.003462011;-0.03813593,-0.1002805;-0.2938758;-0.0119099,-0.1007785;-0.5884709;0.04477789,-0.1018347;-0.5562238;-0.05362801,-0.0004879711;0.3997276;0.01321491,120.3411
-0;0;0,-0.001144601;0.199799;0.008891599,-0.002766037;0.4997433;0.009179532,0.1133745;0.380679;-0.01427011,0.1779008;0.193587;0.01459007,0.2587587;-0.04247822;-0.000747161,-0.1136199;0.3632881;-0.01395256,-0.1840845;0.1770278;0.004535919,-0.2779893;-0.05466159;0.005929146,0.07323639;0.005788356;-0.03166899,0.08577841;-0.2926025;-0.003285829,0.07229151;-0.5858461;0.05857107,0.08596972;-0.6151118;-0.0008414946,-0.06955802;0.002236199;-0.03945479,-0.09964672;-0.2945562;-0.007691029,-0.09762608;-0.5889821;0.04983555,-0.09746213;-0.6173485;-0.0122827,-0.002215936;0.3997765;0.01169419,0;0;0,-0.0002795591;0.1997554;0.009883629,-0.0001361801;0.4996982;0.01081421,0.1136119;0.3803307;-0.0184865,0.164791;0.1878792;3.602169E-05,0.1968973;-0.05789813;-0.0325632,-0.1122623;0.3680464;-0.01683193,-0.1632896;0.1752497;-0.001810853,-0.2026345;-0.07106631;-0.01855662,0.07175497;0.004176157;-0.03512524,0.08688425;-0.2941149;-0.006955363,0.07384715;-0.5879815;0.05197263,0.08681793;-0.6187463;-0.005549431,-0.07024005;0.003462011;-0.03813593,-0.1002805;-0.2938758;-0.0119099,-0.1007785;-0.5884709;0.04477789,-0.1018347;-0.5562238;-0.05362801,-0.0004879711;0.3997276;0.01321491,120.3633
-0;0;0,-0.001144601;0.199799;0.008891599,-0.002766037;0.4997433;0.009179532,0.1133745;0.380679;-0.01427011,0.1779008;0.193587;0.01459007,0.2587587;-0.04247822;-0.000747161,-0.1136199;0.3632881;-0.01395256,-0.1840845;0.1770278;0.004535919,-0.2779893;-0.05466159;0.005929146,0.07323639;0.005788356;-0.03166899,0.08577841;-0.2926025;-0.003285829,0.07229151;-0.5858461;0.05857107,0.08596972;-0.6151118;-0.0008414946,-0.06955802;0.002236199;-0.03945479,-0.09964672;-0.2945562;-0.007691029,-0.09762608;-0.5889821;0.04983555,-0.09746213;-0.6173485;-0.0122827,-0.002215936;0.3997765;0.01169419,0;0;0,-0.0002795591;0.1997554;0.009883629,-0.0001361801;0.4996982;0.01081421,0.1136119;0.3803307;-0.0184865,0.164791;0.1878792;3.602169E-05,0.1968973;-0.05789813;-0.0325632,-0.1122623;0.3680464;-0.01683193,-0.1632896;0.1752497;-0.001810853,-0.2026345;-0.07106631;-0.01855662,0.07175497;0.004176157;-0.03512524,0.08688425;-0.2941149;-0.006955363,0.07384715;-0.5879815;0.05197263,0.08681793;-0.6187463;-0.005549431,-0.07024005;0.003462011;-0.03813593,-0.1002805;-0.2938758;-0.0119099,-0.1007785;-0.5884709;0.04477789,-0.1018347;-0.5562238;-0.05362801,-0.0004879711;0.3997276;0.01321491,120.3854
-0;0;0,-0.001090967;0.1997977;0.008927329,-0.00264256;0.4997428;0.0093294,0.1133592;0.3800573;-0.01415284,0.1782238;0.1930675;0.01461195,0.259611;-0.0427426;-0.001810736,-0.1135185;0.3632196;-0.01383103,-0.1841168;0.1770063;0.004620953,-0.2783684;-0.05454379;0.005718423,0.07323929;0.005760135;-0.03166744,0.08593841;-0.2926303;-0.003349863,0.07254983;-0.585832;0.05872696,0.08546379;-0.6134286;-0.003014416,-0.06954578;0.00225751;-0.03947515,-0.09953915;-0.2945388;-0.00765793,-0.09766467;-0.5889754;0.04981897,-0.09730574;-0.6161667;-0.01375284,-0.002131165;0.3997745;0.01179323,0;0;0,0.0001361478;0.1997523;0.009949607,0.00118702;0.499694;0.01061646,0.1145932;0.3800987;-0.01842672,0.1648422;0.1873286;-0.0006859265,0.1922157;-0.05888893;-0.03426613,-0.1113833;0.3679058;-0.01644941,-0.1621174;0.1750118;-0.001685869,-0.1987937;-0.07166559;-0.01915284,0.07170849;0.004199388;-0.03521728,0.08732884;-0.2940165;-0.006523628,0.07434089;-0.5878776;0.05244213,0.08714546;-0.6186397;-0.005121086,-0.07029444;0.00350843;-0.03803134,-0.09976371;-0.2938643;-0.01155395,-0.1004499;-0.5884327;0.04526994,-0.1012666;-0.6172478;-0.01627293,0.0004841534;0.3997272;0.01309849,120.3968
-0;0;0,-0.001090967;0.1997977;0.008927329,-0.00264256;0.4997428;0.0093294,0.1133592;0.3800573;-0.01415284,0.1782238;0.1930675;0.01461195,0.259611;-0.0427426;-0.001810736,-0.1135185;0.3632196;-0.01383103,-0.1841168;0.1770063;0.004620953,-0.2783684;-0.05454379;0.005718423,0.07323929;0.005760135;-0.03166744,0.08593841;-0.2926303;-0.003349863,0.07254983;-0.585832;0.05872696,0.08546379;-0.6134286;-0.003014416,-0.06954578;0.00225751;-0.03947515,-0.09953915;-0.2945388;-0.00765793,-0.09766467;-0.5889754;0.04981897,-0.09730574;-0.6161667;-0.01375284,-0.002131165;0.3997745;0.01179323,0;0;0,0.0001361478;0.1997523;0.009949607,0.00118702;0.499694;0.01061646,0.1145932;0.3800987;-0.01842672,0.1648422;0.1873286;-0.0006859265,0.1922157;-0.05888893;-0.03426613,-0.1113833;0.3679058;-0.01644941,-0.1621174;0.1750118;-0.001685869,-0.1987937;-0.07166559;-0.01915284,0.07170849;0.004199388;-0.03521728,0.08732884;-0.2940165;-0.006523628,0.07434089;-0.5878776;0.05244213,0.08714546;-0.6186397;-0.005121086,-0.07029444;0.00350843;-0.03803134,-0.09976371;-0.2938643;-0.01155395,-0.1004499;-0.5884327;0.04526994,-0.1012666;-0.6172478;-0.01627293,0.0004841534;0.3997272;0.01309849,120.4109
-0;0;0,-0.001029178;0.1997919;0.009063345,-0.002508329;0.4997372;0.009509498,0.1134572;0.3800783;-0.01398323,0.1779667;0.1929021;0.01436416,0.2596077;-0.04277706;-0.002667869,-0.1134564;0.3632933;-0.01364541,-0.1841086;0.1771004;0.004806953,-0.2786744;-0.05432342;0.005371183,0.07318906;0.005766646;-0.03178218,0.085983;-0.2925886;-0.003138497,0.07265778;-0.5858365;0.05873311,0.0852059;-0.6131608;-0.003423963,-0.06957492;0.002249831;-0.03942421,-0.09950824;-0.2945623;-0.007697619,-0.09779324;-0.5889913;0.04982293,-0.09718437;-0.615904;-0.0140837,-0.002038502;0.3997684;0.01195978,0;0;0,0.0001361478;0.1997523;0.009949607,0.00118702;0.499694;0.01061646,0.1145932;0.3800987;-0.01842672,0.1648422;0.1873286;-0.0006859265,0.1922157;-0.05888893;-0.03426613,-0.1113833;0.3679058;-0.01644941,-0.1621174;0.1750118;-0.001685869,-0.1987937;-0.07166559;-0.01915284,0.07170849;0.004199388;-0.03521728,0.08732884;-0.2940165;-0.006523628,0.07434089;-0.5878776;0.05244213,0.08714546;-0.6186397;-0.005121086,-0.07029444;0.00350843;-0.03803134,-0.09976371;-0.2938643;-0.01155395,-0.1004499;-0.5884327;0.04526994,-0.1012666;-0.6172478;-0.01627293,0.0004841534;0.3997272;0.01309849,120.4294
-0;0;0,-0.001029178;0.1997919;0.009063345,-0.002508329;0.4997372;0.009509498,0.1134572;0.3800783;-0.01398323,0.1779667;0.1929021;0.01436416,0.2596077;-0.04277706;-0.002667869,-0.1134564;0.3632933;-0.01364541,-0.1841086;0.1771004;0.004806953,-0.2786744;-0.05432342;0.005371183,0.07318906;0.005766646;-0.03178218,0.085983;-0.2925886;-0.003138497,0.07265778;-0.5858365;0.05873311,0.0852059;-0.6131608;-0.003423963,-0.06957492;0.002249831;-0.03942421,-0.09950824;-0.2945623;-0.007697619,-0.09779324;-0.5889913;0.04982293,-0.09718437;-0.615904;-0.0140837,-0.002038502;0.3997684;0.01195978,0;0;0,0.0005152927;0.1997461;0.01006253,0.002064436;0.4996858;0.01069756,0.1152116;0.3801717;-0.01871429,0.1650029;0.1872653;-0.001165595,0.1887868;-0.05924477;-0.03532881,-0.1105847;0.3676109;-0.01639263,-0.1614112;0.1747503;-0.001510194,-0.1968514;-0.07206918;-0.01951336,0.07164817;0.004158719;-0.03534464,0.08798112;-0.2940017;-0.006472014,0.07488342;-0.5877947;0.05280805,0.08755396;-0.6187978;-0.004445292,-0.07033536;0.003609961;-0.03794608,-0.1000601;-0.2936893;-0.01093524,-0.09963203;-0.5881718;0.04633479,-0.1004545;-0.6171698;-0.01497302,0.001192639;0.3997205;0.01318432,120.4515
-0;0;0,-0.001012806;0.1997905;0.009095773,-0.002479295;0.4997361;0.009601481,0.1134091;0.3796367;-0.01388379,0.1779798;0.1924096;0.01398454,0.2595206;-0.04322615;-0.0040956,-0.1134345;0.3631271;-0.01335116,-0.1841849;0.17695;0.004881623,-0.2788084;-0.05445053;0.005348077,0.07317403;0.005756355;-0.03181864,0.08597428;-0.2925961;-0.003148977,0.07258139;-0.5856941;0.05941488,0.0853057;-0.612325;-0.003559705,-0.06958668;0.002254471;-0.0394032,-0.09950884;-0.2945549;-0.007639967,-0.09776448;-0.5889727;0.04993672,-0.09717035;-0.6156455;-0.01425777,-0.002018312;0.3997665;0.01202571,0;0;0,0.0005152927;0.1997461;0.01006253,0.002064436;0.4996858;0.01069756,0.1152116;0.3801717;-0.01871429,0.1650029;0.1872653;-0.001165595,0.1887868;-0.05924477;-0.03532881,-0.1105847;0.3676109;-0.01639263,-0.1614112;0.1747503;-0.001510194,-0.1968514;-0.07206918;-0.01951336,0.07164817;0.004158719;-0.03534464,0.08798112;-0.2940017;-0.006472014,0.07488342;-0.5877947;0.05280805,0.08755396;-0.6187978;-0.004445292,-0.07033536;0.003609961;-0.03794608,-0.1000601;-0.2936893;-0.01093524,-0.09963203;-0.5881718;0.04633479,-0.1004545;-0.6171698;-0.01497302,0.001192639;0.3997205;0.01318432,120.4628
-0;0;0,-0.001012806;0.1997905;0.009095773,-0.002479295;0.4997361;0.009601481,0.1134091;0.3796367;-0.01388379,0.1779798;0.1924096;0.01398454,0.2595206;-0.04322615;-0.0040956,-0.1134345;0.3631271;-0.01335116,-0.1841849;0.17695;0.004881623,-0.2788084;-0.05445053;0.005348077,0.07317403;0.005756355;-0.03181864,0.08597428;-0.2925961;-0.003148977,0.07258139;-0.5856941;0.05941488,0.0853057;-0.612325;-0.003559705,-0.06958668;0.002254471;-0.0394032,-0.09950884;-0.2945549;-0.007639967,-0.09776448;-0.5889727;0.04993672,-0.09717035;-0.6156455;-0.01425777,-0.002018312;0.3997665;0.01202571,0;0;0,0.0005152927;0.1997461;0.01006253,0.002064436;0.4996858;0.01069756,0.1152116;0.3801717;-0.01871429,0.1650029;0.1872653;-0.001165595,0.1887868;-0.05924477;-0.03532881,-0.1105847;0.3676109;-0.01639263,-0.1614112;0.1747503;-0.001510194,-0.1968514;-0.07206918;-0.01951336,0.07164817;0.004158719;-0.03534464,0.08798112;-0.2940017;-0.006472014,0.07488342;-0.5877947;0.05280805,0.08755396;-0.6187978;-0.004445292,-0.07033536;0.003609961;-0.03794608,-0.1000601;-0.2936893;-0.01093524,-0.09963203;-0.5881718;0.04633479,-0.1004545;-0.6171698;-0.01497302,0.001192639;0.3997205;0.01318432,120.485
-0;0;0,-0.001005592;0.1997848;0.009219993,-0.002272294;0.4997322;0.01007555,0.1135189;0.3798778;-0.01381263,0.1779355;0.1925855;0.01397382,0.2581469;-0.04337598;-0.005731368,-0.1132917;0.363156;-0.01318653,-0.1840158;0.1769614;0.004970311,-0.2780211;-0.05469055;0.004333917,0.07321344;0.005765575;-0.03172616,0.08599612;-0.2925871;-0.003050363,0.07288445;-0.5857614;0.0592142,0.08521161;-0.6130388;-0.003045272,-0.06949493;0.00223621;-0.03956581,-0.09947138;-0.2945327;-0.007477701,-0.09762815;-0.5889475;0.05011121,-0.0979817;-0.6149259;-0.01490547,-0.001897195;0.3997585;0.01233849,0;0;0,0.0008610435;0.1997406;0.01014701,0.003133474;0.4996765;0.01079563,0.115961;0.3798173;-0.01870161,0.1653631;0.1867697;-0.001611289,0.1873935;-0.05983353;-0.03627406,-0.1097004;0.366937;-0.01580484,-0.1605967;0.1740664;-0.001296797,-0.1946367;-0.07287244;-0.02033636,0.07150973;0.00416118;-0.03562362,0.08821349;-0.293931;-0.006262707,0.07510601;-0.5876585;0.05333856,0.0875775;-0.618618;-0.004020147,-0.07043242;0.003666712;-0.03776015,-0.09981215;-0.2936526;-0.01059296,-0.09972829;-0.5881083;0.04681643,-0.1016948;-0.6167782;-0.0148859,0.002018767;0.399713;0.01325649,120.4962
-0;0;0,-0.001005592;0.1997848;0.009219993,-0.002272294;0.4997322;0.01007555,0.1135189;0.3798778;-0.01381263,0.1779355;0.1925855;0.01397382,0.2581469;-0.04337598;-0.005731368,-0.1132917;0.363156;-0.01318653,-0.1840158;0.1769614;0.004970311,-0.2780211;-0.05469055;0.004333917,0.07321344;0.005765575;-0.03172616,0.08599612;-0.2925871;-0.003050363,0.07288445;-0.5857614;0.0592142,0.08521161;-0.6130388;-0.003045272,-0.06949493;0.00223621;-0.03956581,-0.09947138;-0.2945327;-0.007477701,-0.09762815;-0.5889475;0.05011121,-0.0979817;-0.6149259;-0.01490547,-0.001897195;0.3997585;0.01233849,0;0;0,0.0008610435;0.1997406;0.01014701,0.003133474;0.4996765;0.01079563,0.115961;0.3798173;-0.01870161,0.1653631;0.1867697;-0.001611289,0.1873935;-0.05983353;-0.03627406,-0.1097004;0.366937;-0.01580484,-0.1605967;0.1740664;-0.001296797,-0.1946367;-0.07287244;-0.02033636,0.07150973;0.00416118;-0.03562362,0.08821349;-0.293931;-0.006262707,0.07510601;-0.5876585;0.05333856,0.0875775;-0.618618;-0.004020147,-0.07043242;0.003666712;-0.03776015,-0.09981215;-0.2936526;-0.01059296,-0.09972829;-0.5881083;0.04681643,-0.1016948;-0.6167782;-0.0148859,0.002018767;0.399713;0.01325649,120.5188
-0;0;0,-0.001002627;0.1997755;0.00942005,-0.002267982;0.4997221;0.01037773,0.1135351;0.3798973;-0.01351415,0.1774573;0.1923485;0.01367808,0.2561695;-0.04400028;-0.007384536,-0.1132945;0.3631685;-0.0128937,-0.1837662;0.17686;0.005075674,-0.2763085;-0.05537072;0.002883672,0.07322514;0.005760713;-0.03170003,0.08604201;-0.2925586;-0.002694573,0.07312319;-0.5857467;0.05954557,0.08501857;-0.6133924;-0.002338525,-0.0694773;0.002246756;-0.03959615,-0.09937825;-0.2945119;-0.007343005,-0.09723467;-0.5889441;0.05014685,-0.09787736;-0.615891;-0.0137183,-0.001889903;0.399748;0.01262027,0;0;0,0.0008610435;0.1997406;0.01014701,0.003133474;0.4996765;0.01079563,0.115961;0.3798173;-0.01870161,0.1653631;0.1867697;-0.001611289,0.1873935;-0.05983353;-0.03627406,-0.1097004;0.366937;-0.01580484,-0.1605967;0.1740664;-0.001296797,-0.1946367;-0.07287244;-0.02033636,0.07150973;0.00416118;-0.03562362,0.08821349;-0.293931;-0.006262707,0.07510601;-0.5876585;0.05333856,0.0875775;-0.618618;-0.004020147,-0.07043242;0.003666712;-0.03776015,-0.09981215;-0.2936526;-0.01059296,-0.09972829;-0.5881083;0.04681643,-0.1016948;-0.6167782;-0.0148859,0.002018767;0.399713;0.01325649,120.5298
-0;0;0,-0.001002627;0.1997755;0.00942005,-0.002267982;0.4997221;0.01037773,0.1135351;0.3798973;-0.01351415,0.1774573;0.1923485;0.01367808,0.2561695;-0.04400028;-0.007384536,-0.1132945;0.3631685;-0.0128937,-0.1837662;0.17686;0.005075674,-0.2763085;-0.05537072;0.002883672,0.07322514;0.005760713;-0.03170003,0.08604201;-0.2925586;-0.002694573,0.07312319;-0.5857467;0.05954557,0.08501857;-0.6133924;-0.002338525,-0.0694773;0.002246756;-0.03959615,-0.09937825;-0.2945119;-0.007343005,-0.09723467;-0.5889441;0.05014685,-0.09787736;-0.615891;-0.0137183,-0.001889903;0.399748;0.01262027,0;0;0,0.001059019;0.1997401;0.01013655,0.00364872;0.499674;0.01073313,0.1163225;0.3795854;-0.01881086,0.1656345;0.1865382;-0.001458853,0.1852894;-0.06012523;-0.03710776,-0.1093486;0.3669646;-0.01563353,-0.1600985;0.1740208;-0.001593265,-0.1927446;-0.07311983;-0.02045446,0.07145662;0.004150223;-0.03573132,0.08846229;-0.2939241;-0.006362423,0.07532699;-0.5875993;0.05349014,0.08762675;-0.6185481;-0.003920753,-0.07048045;0.0036957;-0.0376676,-0.09985831;-0.2936074;-0.01032091,-0.09926702;-0.5879936;0.04744065,-0.1006176;-0.5557482;-0.05096135,0.002436882;0.3997118;0.01320451,120.5529
-0;0;0,-0.001009252;0.1997688;0.009561447,-0.002205454;0.499716;0.01079952,0.1135511;0.3799905;-0.01337534,0.1772194;0.1923271;0.01362128,0.2526375;-0.04495454;-0.008951872,-0.1132822;0.3632642;-0.01266104,-0.1830532;0.1766662;0.005036118,-0.2743162;-0.05606036;0.001967247,0.07318127;0.005780653;-0.03179756,0.08594127;-0.2925155;-0.002530368,0.07289688;-0.585618;0.06008569,0.0852704;-0.6114075;-0.003967822,-0.06952079;0.002234328;-0.03952047,-0.09945898;-0.2945072;-0.007144995,-0.09728129;-0.5889167;0.05045998,-0.09791552;-0.6151707;-0.01423099,-0.001856805;0.3997389;0.01291175,0;0;0,0.001059019;0.1997401;0.01013655,0.00364872;0.499674;0.01073313,0.1163225;0.3795854;-0.01881086,0.1656345;0.1865382;-0.001458853,0.1852894;-0.06012523;-0.03710776,-0.1093486;0.3669646;-0.01563353,-0.1600985;0.1740208;-0.001593265,-0.1927446;-0.07311983;-0.02045446,0.07145662;0.004150223;-0.03573132,0.08846229;-0.2939241;-0.006362423,0.07532699;-0.5875993;0.05349014,0.08762675;-0.6185481;-0.003920753,-0.07048045;0.0036957;-0.0376676,-0.09985831;-0.2936074;-0.01032091,-0.09926702;-0.5879936;0.04744065,-0.1006176;-0.5557482;-0.05096135,0.002436882;0.3997118;0.01320451,120.5742
-0;0;0,-0.001009252;0.1997688;0.009561447,-0.002205454;0.499716;0.01079952,0.1135511;0.3799905;-0.01337534,0.1772194;0.1923271;0.01362128,0.2526375;-0.04495454;-0.008951872,-0.1132822;0.3632642;-0.01266104,-0.1830532;0.1766662;0.005036118,-0.2743162;-0.05606036;0.001967247,0.07318127;0.005780653;-0.03179756,0.08594127;-0.2925155;-0.002530368,0.07289688;-0.585618;0.06008569,0.0852704;-0.6114075;-0.003967822,-0.06952079;0.002234328;-0.03952047,-0.09945898;-0.2945072;-0.007144995,-0.09728129;-0.5889167;0.05045998,-0.09791552;-0.6151707;-0.01423099,-0.001856805;0.3997389;0.01291175,0;0;0,0.001059019;0.1997401;0.01013655,0.00364872;0.499674;0.01073313,0.1163225;0.3795854;-0.01881086,0.1656345;0.1865382;-0.001458853,0.1852894;-0.06012523;-0.03710776,-0.1093486;0.3669646;-0.01563353,-0.1600985;0.1740208;-0.001593265,-0.1927446;-0.07311983;-0.02045446,0.07145662;0.004150223;-0.03573132,0.08846229;-0.2939241;-0.006362423,0.07532699;-0.5875993;0.05349014,0.08762675;-0.6185481;-0.003920753,-0.07048045;0.0036957;-0.0376676,-0.09985831;-0.2936074;-0.01032091,-0.09926702;-0.5879936;0.04744065,-0.1006176;-0.5557482;-0.05096135,0.002436882;0.3997118;0.01320451,120.5855
-0;0;0,-0.0009772994;0.1997663;0.0096165,-0.00204812;0.4997133;0.01106235,0.1136542;0.3802473;-0.01342168,0.1766206;0.1922811;0.0131104,0.2489639;-0.04583697;-0.01068465,-0.1131714;0.3633123;-0.01254194,-0.1813768;0.1761253;0.005037813,-0.2693484;-0.05782337;-0.0003470397,0.07316182;0.005809929;-0.03183696,0.08590094;-0.292485;-0.002547568,0.07292565;-0.5855681;0.06017381,0.08560038;-0.6123354;-0.002644412,-0.06952678;0.002216038;-0.03951097,-0.09946124;-0.2945256;-0.007133082,-0.09742457;-0.5889279;0.05051368,-0.09830298;-0.6142796;-0.01522332,-0.001744565;0.3997345;0.01309961,0;0;0,0.001189233;0.1997485;0.009957166,0.003922774;0.4996811;0.01043988,0.1166296;0.3795899;-0.01890506,0.1658334;0.1864846;-0.001895655,0.1842963;-0.06026079;-0.03761475,-0.109245;0.3670075;-0.01528908,-0.1601328;0.1740813;-0.001508231,-0.1909482;-0.07326826;-0.02070696,0.07154005;0.004237831;-0.03555364,0.08886516;-0.2938492;-0.006502178,0.07573693;-0.5874354;0.05378716,0.0875812;-0.6173184;-0.00519089,-0.07043198;0.003637544;-0.0377638,-0.09956242;-0.2936598;-0.01009262,-0.09876198;-0.5880199;0.04779962,-0.1013313;-0.617444;-0.01290632,0.002701643;0.3997203;0.01295676,120.6076
-0;0;0,-0.0009772994;0.1997663;0.0096165,-0.00204812;0.4997133;0.01106235,0.1136542;0.3802473;-0.01342168,0.1766206;0.1922811;0.0131104,0.2489639;-0.04583697;-0.01068465,-0.1131714;0.3633123;-0.01254194,-0.1813768;0.1761253;0.005037813,-0.2693484;-0.05782337;-0.0003470397,0.07316182;0.005809929;-0.03183696,0.08590094;-0.292485;-0.002547568,0.07292565;-0.5855681;0.06017381,0.08560038;-0.6123354;-0.002644412,-0.06952678;0.002216038;-0.03951097,-0.09946124;-0.2945256;-0.007133082,-0.09742457;-0.5889279;0.05051368,-0.09830298;-0.6142796;-0.01522332,-0.001744565;0.3997345;0.01309961,0;0;0,0.001189233;0.1997485;0.009957166,0.003922774;0.4996811;0.01043988,0.1166296;0.3795899;-0.01890506,0.1658334;0.1864846;-0.001895655,0.1842963;-0.06026079;-0.03761475,-0.109245;0.3670075;-0.01528908,-0.1601328;0.1740813;-0.001508231,-0.1909482;-0.07326826;-0.02070696,0.07154005;0.004237831;-0.03555364,0.08886516;-0.2938492;-0.006502178,0.07573693;-0.5874354;0.05378716,0.0875812;-0.6173184;-0.00519089,-0.07043198;0.003637544;-0.0377638,-0.09956242;-0.2936598;-0.01009262,-0.09876198;-0.5880199;0.04779962,-0.1013313;-0.617444;-0.01290632,0.002701643;0.3997203;0.01295676,120.6192
-0;0;0,-0.0009604184;0.1997636;0.009673899,-0.001979142;0.4997098;0.01131534,0.1137412;0.3806;-0.01333473,0.1758457;0.1922436;0.01245051,0.2443352;-0.04695243;-0.01193117,-0.1131487;0.3635038;-0.01251547,-0.1781699;0.1751425;0.004580629,-0.2622966;-0.06018858;-0.001899008,0.07314815;0.00582295;-0.03186599,0.08589009;-0.2924657;-0.002514523,0.07300331;-0.585601;0.05998052,0.0858914;-0.612632;-0.002470504,-0.06953456;0.00219062;-0.03949868,-0.09946749;-0.2945495;-0.007105254,-0.09736031;-0.5888293;0.0511612,-0.098336;-0.6149971;-0.01362691,-0.001694637;0.3997296;0.01328537,0;0;0,0.001189233;0.1997485;0.009957166,0.003922774;0.4996811;0.01043988,0.1166296;0.3795899;-0.01890506,0.1658334;0.1864846;-0.001895655,0.1842963;-0.06026079;-0.03761475,-0.109245;0.3670075;-0.01528908,-0.1601328;0.1740813;-0.001508231,-0.1909482;-0.07326826;-0.02070696,0.07154005;0.004237831;-0.03555364,0.08886516;-0.2938492;-0.006502178,0.07573693;-0.5874354;0.05378716,0.0875812;-0.6173184;-0.00519089,-0.07043198;0.003637544;-0.0377638,-0.09956242;-0.2936598;-0.01009262,-0.09876198;-0.5880199;0.04779962,-0.1013313;-0.617444;-0.01290632,0.002701643;0.3997203;0.01295676,120.6413
-0;0;0,-0.0009604184;0.1997636;0.009673899,-0.001979142;0.4997098;0.01131534,0.1137412;0.3806;-0.01333473,0.1758457;0.1922436;0.01245051,0.2443352;-0.04695243;-0.01193117,-0.1131487;0.3635038;-0.01251547,-0.1781699;0.1751425;0.004580629,-0.2622966;-0.06018858;-0.001899008,0.07314815;0.00582295;-0.03186599,0.08589009;-0.2924657;-0.002514523,0.07300331;-0.585601;0.05998052,0.0858914;-0.612632;-0.002470504,-0.06953456;0.00219062;-0.03949868,-0.09946749;-0.2945495;-0.007105254,-0.09736031;-0.5888293;0.0511612,-0.098336;-0.6149971;-0.01362691,-0.001694637;0.3997296;0.01328537,0;0;0,0.001587583;0.1997379;0.01011157,0.004707953;0.4996666;0.01065573,0.117119;0.3795709;-0.01921115,0.1664162;0.1865031;-0.002046928,0.1822488;-0.06028816;-0.03869934,-0.1085984;0.3669105;-0.01505658,-0.1596165;0.1740086;-0.001417603,-0.1894609;-0.07337134;-0.0217274,0.07162053;0.004274585;-0.03538682,0.0893901;-0.2937641;-0.006109359,0.07632408;-0.5873585;0.05415343,0.08789468;-0.6168244;-0.005439293,-0.07040516;0.003634858;-0.03781402,-0.09910479;-0.2936512;-0.009576915,-0.09797435;-0.5880244;0.04824317,-0.1015851;-0.6162216;-0.01398347,0.003333245;0.3997072;0.01315122,120.6525
-0;0;0,-0.0009629416;0.1997622;0.009702833,-0.002004263;0.4997076;0.01145772,0.1137896;0.3810032;-0.01323897,0.1744433;0.1920264;0.01143676,0.238797;-0.04826635;-0.01342306,-0.1131684;0.3636298;-0.01257206,-0.1754655;0.1742334;0.003178723,-0.2534031;-0.06315918;-0.005217032,0.0731357;0.005837511;-0.0318919,0.08584028;-0.2924486;-0.002498265,0.07296927;-0.5855839;0.06000028,0.08523295;-0.612901;-0.002222437,-0.06953841;0.002168651;-0.03949311,-0.09948393;-0.2945705;-0.007102709,-0.09746575;-0.5888731;0.05105137,-0.09741294;-0.6155913;-0.01309156,-0.001710342;0.3997268;0.01339158,0;0;0,0.001587583;0.1997379;0.01011157,0.004707953;0.4996666;0.01065573,0.117119;0.3795709;-0.01921115,0.1664162;0.1865031;-0.002046928,0.1822488;-0.06028816;-0.03869934,-0.1085984;0.3669105;-0.01505658,-0.1596165;0.1740086;-0.001417603,-0.1894609;-0.07337134;-0.0217274,0.07162053;0.004274585;-0.03538682,0.0893901;-0.2937641;-0.006109359,0.07632408;-0.5873585;0.05415343,0.08789468;-0.6168244;-0.005439293,-0.07040516;0.003634858;-0.03781402,-0.09910479;-0.2936512;-0.009576915,-0.09797435;-0.5880244;0.04824317,-0.1015851;-0.6162216;-0.01398347,0.003333245;0.3997072;0.01315122,120.6643
-0;0;0,-0.0009629416;0.1997622;0.009702833,-0.002004263;0.4997076;0.01145772,0.1137896;0.3810032;-0.01323897,0.1744433;0.1920264;0.01143676,0.238797;-0.04826635;-0.01342306,-0.1131684;0.3636298;-0.01257206,-0.1754655;0.1742334;0.003178723,-0.2534031;-0.06315918;-0.005217032,0.0731357;0.005837511;-0.0318919,0.08584028;-0.2924486;-0.002498265,0.07296927;-0.5855839;0.06000028,0.08523295;-0.612901;-0.002222437,-0.06953841;0.002168651;-0.03949311,-0.09948393;-0.2945705;-0.007102709,-0.09746575;-0.5888731;0.05105137,-0.09741294;-0.6155913;-0.01309156,-0.001710342;0.3997268;0.01339158,0;0;0,0.001587583;0.1997379;0.01011157,0.004707953;0.4996666;0.01065573,0.117119;0.3795709;-0.01921115,0.1664162;0.1865031;-0.002046928,0.1822488;-0.06028816;-0.03869934,-0.1085984;0.3669105;-0.01505658,-0.1596165;0.1740086;-0.001417603,-0.1894609;-0.07337134;-0.0217274,0.07162053;0.004274585;-0.03538682,0.0893901;-0.2937641;-0.006109359,0.07632408;-0.5873585;0.05415343,0.08789468;-0.6168244;-0.005439293,-0.07040516;0.003634858;-0.03781402,-0.09910479;-0.2936512;-0.009576915,-0.09797435;-0.5880244;0.04824317,-0.1015851;-0.6162216;-0.01398347,0.003333245;0.3997072;0.01315122,120.675
-0;0;0,-0.0008717295;0.1997623;0.009709212,-0.001818573;0.4997079;0.01147296,0.1139593;0.3811482;-0.01323955,0.1740344;0.1919101;0.01084202,0.2326984;-0.04963733;-0.0158673,-0.1129949;0.3637049;-0.01275724,-0.1728363;0.1734708;0.00240767,-0.2452429;-0.06560856;-0.007510004,0.07311661;0.005835631;-0.03193598,0.08604831;-0.2924562;-0.002699791,0.07291492;-0.5855045;0.06015123,0.0855948;-0.6122103;-0.002741046,-0.06956849;0.002170169;-0.03944002,-0.0993048;-0.2946095;-0.007228334,-0.09727638;-0.5889068;0.05095207,-0.09752002;-0.6149247;-0.01401881,-0.001559906;0.3997269;0.01340888,0;0;0,0.001771867;0.1997375;0.01008958,0.005173645;0.4996634;0.0106139,0.1174757;0.3794906;-0.01930832,0.1671591;0.1864534;-0.002930695,0.181829;-0.06044279;-0.03935924,-0.1082463;0.3668338;-0.014872,-0.1591289;0.1738755;-0.001528211,-0.1880713;-0.07355285;-0.02254147,0.07153615;0.004224059;-0.03556313,0.08967179;-0.2937918;-0.006277325,0.07654805;-0.5873501;0.05414835,0.08797248;-0.6170034;-0.005222004,-0.07045903;0.003698447;-0.03770738,-0.09921388;-0.2935941;-0.009595349,-0.09783973;-0.5879753;0.04817898,-0.1017743;-0.6162112;-0.01397938,0.003719924;0.3997052;0.01311069,120.6973
-0;0;0,-0.0008717295;0.1997623;0.009709212,-0.001818573;0.4997079;0.01147296,0.1139593;0.3811482;-0.01323955,0.1740344;0.1919101;0.01084202,0.2326984;-0.04963733;-0.0158673,-0.1129949;0.3637049;-0.01275724,-0.1728363;0.1734708;0.00240767,-0.2452429;-0.06560856;-0.007510004,0.07311661;0.005835631;-0.03193598,0.08604831;-0.2924562;-0.002699791,0.07291492;-0.5855045;0.06015123,0.0855948;-0.6122103;-0.002741046,-0.06956849;0.002170169;-0.03944002,-0.0993048;-0.2946095;-0.007228334,-0.09727638;-0.5889068;0.05095207,-0.09752002;-0.6149247;-0.01401881,-0.001559906;0.3997269;0.01340888,0;0;0,0.001771867;0.1997375;0.01008958,0.005173645;0.4996634;0.0106139,0.1174757;0.3794906;-0.01930832,0.1671591;0.1864534;-0.002930695,0.181829;-0.06044279;-0.03935924,-0.1082463;0.3668338;-0.014872,-0.1591289;0.1738755;-0.001528211,-0.1880713;-0.07355285;-0.02254147,0.07153615;0.004224059;-0.03556313,0.08967179;-0.2937918;-0.006277325,0.07654805;-0.5873501;0.05414835,0.08797248;-0.6170034;-0.005222004,-0.07045903;0.003698447;-0.03770738,-0.09921388;-0.2935941;-0.009595349,-0.09783973;-0.5879753;0.04817898,-0.1017743;-0.6162112;-0.01397938,0.003719924;0.3997052;0.01311069,120.7197
-0;0;0,-0.0006399803;0.1997593;0.009788358,-0.001108805;0.4997044;0.01193339,0.1143917;0.3813994;-0.01335264,0.1727357;0.1914558;0.009393967,0.2240653;-0.05182128;-0.01671218,-0.1125336;0.3639088;-0.01262156,-0.1715942;0.1733715;0.001779773,-0.2343335;-0.06838737;-0.009009271,0.07305681;0.005829379;-0.03207366,0.08624426;-0.2924459;-0.002782622,0.07321691;-0.5854768;0.0601714,0.08598901;-0.6121368;-0.002758041,-0.06964588;0.002152508;-0.03930418,-0.09914435;-0.2946744;-0.007309645,-0.09704971;-0.5889765;0.05084452,-0.09722879;-0.6154106;-0.01363648,-0.001071066;0.3997203;0.01371557,0;0;0,0.001771867;0.1997375;0.01008958,0.005173645;0.4996634;0.0106139,0.1174757;0.3794906;-0.01930832,0.1671591;0.1864534;-0.002930695,0.181829;-0.06044279;-0.03935924,-0.1082463;0.3668338;-0.014872,-0.1591289;0.1738755;-0.001528211,-0.1880713;-0.07355285;-0.02254147,0.07153615;0.004224059;-0.03556313,0.08967179;-0.2937918;-0.006277325,0.07654805;-0.5873501;0.05414835,0.08797248;-0.6170034;-0.005222004,-0.07045903;0.003698447;-0.03770738,-0.09921388;-0.2935941;-0.009595349,-0.09783973;-0.5879753;0.04817898,-0.1017743;-0.6162112;-0.01397938,0.003719924;0.3997052;0.01311069,120.7323
-0;0;0,-0.0006399803;0.1997593;0.009788358,-0.001108805;0.4997044;0.01193339,0.1143917;0.3813994;-0.01335264,0.1727357;0.1914558;0.009393967,0.2240653;-0.05182128;-0.01671218,-0.1125336;0.3639088;-0.01262156,-0.1715942;0.1733715;0.001779773,-0.2343335;-0.06838737;-0.009009271,0.07305681;0.005829379;-0.03207366,0.08624426;-0.2924459;-0.002782622,0.07321691;-0.5854768;0.0601714,0.08598901;-0.6121368;-0.002758041,-0.06964588;0.002152508;-0.03930418,-0.09914435;-0.2946744;-0.007309645,-0.09704971;-0.5889765;0.05084452,-0.09722879;-0.6154106;-0.01363648,-0.001071066;0.3997203;0.01371557,0;0;0,0.00192482;0.1997345;0.01011973,0.00544348;0.4996587;0.0108022,0.1177306;0.3794694;-0.01916683,0.1672888;0.1863708;-0.003138436,0.1820085;-0.060574;-0.03921627,-0.1080206;0.3668028;-0.01457089,-0.1614859;0.1746643;0.0004044157,-0.1873536;-0.07291472;-0.0227362,0.07154053;0.00419193;-0.0355581,0.08992738;-0.2937936;-0.006120503,0.07674423;-0.5873259;0.05441859,0.08674726;-0.617561;-0.004422475,-0.07047756;0.003749734;-0.03766768,-0.09894742;-0.2935633;-0.009482399,-0.0975309;-0.5879061;0.04848601,-0.101279;-0.6164305;-0.0133191,0.00397782;0.3996994;0.01325299,120.7531
-0;0;0,-0.00044056;0.1997568;0.009849979,-0.000709645;0.4997016;0.01199622,0.1147177;0.3816265;-0.01350313,0.1714572;0.1910055;0.007574335,0.2171269;-0.05343682;-0.01816007,-0.1121204;0.3639618;-0.01291318,-0.1691413;0.1727542;0.0008074697,-0.2245993;-0.07070842;-0.01145555,0.07302909;0.00586454;-0.03213035,0.08675194;-0.2924029;-0.003005583,0.07375246;-0.585429;0.0599765,0.08650597;-0.6121783;-0.00284775,-0.06968053;0.00212978;-0.03924396,-0.09868549;-0.2947701;-0.00747652,-0.09659363;-0.5890719;0.05067883,-0.09697576;-0.6158723;-0.01336452,-0.0007277908;0.3997177;0.01379243,0;0;0,0.00192482;0.1997345;0.01011973,0.00544348;0.4996587;0.0108022,0.1177306;0.3794694;-0.01916683,0.1672888;0.1863708;-0.003138436,0.1820085;-0.060574;-0.03921627,-0.1080206;0.3668028;-0.01457089,-0.1614859;0.1746643;0.0004044157,-0.1873536;-0.07291472;-0.0227362,0.07154053;0.00419193;-0.0355581,0.08992738;-0.2937936;-0.006120503,0.07674423;-0.5873259;0.05441859,0.08674726;-0.617561;-0.004422475,-0.07047756;0.003749734;-0.03766768,-0.09894742;-0.2935633;-0.009482399,-0.0975309;-0.5879061;0.04848601,-0.101279;-0.6164305;-0.0133191,0.00397782;0.3996994;0.01325299,120.7754
-0;0;0,-0.00044056;0.1997568;0.009849979,-0.000709645;0.4997016;0.01199622,0.1147177;0.3816265;-0.01350313,0.1714572;0.1910055;0.007574335,0.2171269;-0.05343682;-0.01816007,-0.1121204;0.3639618;-0.01291318,-0.1691413;0.1727542;0.0008074697,-0.2245993;-0.07070842;-0.01145555,0.07302909;0.00586454;-0.03213035,0.08675194;-0.2924029;-0.003005583,0.07375246;-0.585429;0.0599765,0.08650597;-0.6121783;-0.00284775,-0.06968053;0.00212978;-0.03924396,-0.09868549;-0.2947701;-0.00747652,-0.09659363;-0.5890719;0.05067883,-0.09697576;-0.6158723;-0.01336452,-0.0007277908;0.3997177;0.01379243,0;0;0,0.00192482;0.1997345;0.01011973,0.00544348;0.4996587;0.0108022,0.1177306;0.3794694;-0.01916683,0.1672888;0.1863708;-0.003138436,0.1820085;-0.060574;-0.03921627,-0.1080206;0.3668028;-0.01457089,-0.1614859;0.1746643;0.0004044157,-0.1873536;-0.07291472;-0.0227362,0.07154053;0.00419193;-0.0355581,0.08992738;-0.2937936;-0.006120503,0.07674423;-0.5873259;0.05441859,0.08674726;-0.617561;-0.004422475,-0.07047756;0.003749734;-0.03766768,-0.09894742;-0.2935633;-0.009482399,-0.0975309;-0.5879061;0.04848601,-0.101279;-0.6164305;-0.0133191,0.00397782;0.3996994;0.01325299,120.7871
-0;0;0,-0.0004203612;0.199757;0.009847513,-0.0006696961;0.4997019;0.01188472,0.1147712;0.3826396;-0.0141573,0.1706711;0.1917291;0.006541063,0.2103374;-0.05351613;-0.02141126,-0.1120644;0.3641396;-0.01326376,-0.1670855;0.1722693;-0.0006751753,-0.212699;-0.0731795;-0.01387811,0.07300503;0.005735288;-0.03220827,0.08730276;-0.2925332;-0.003372326,0.07434658;-0.5855469;0.05967639,0.0853784;-0.6120377;-0.003785767,-0.06962603;0.002255965;-0.03933352,-0.09847779;-0.2946592;-0.00756963,-0.09652518;-0.5888801;0.05099905,-0.09675025;-0.6150885;-0.01374836,-0.0006858229;0.399719;0.01373477,0;0;0,0.002048424;0.1997296;0.01019367,0.005659647;0.4996519;0.01110359,0.1179769;0.3795836;-0.01889422,0.167837;0.1865575;-0.00292849,0.1817265;-0.06034014;-0.03965206,-0.1077837;0.3666005;-0.01420843,-0.1589139;0.1736083;-0.002388895,-0.1865814;-0.07397737;-0.0232662,0.07165868;0.004333607;-0.03530231,0.09029593;-0.2936743;-0.006252095,0.07697973;-0.5870959;0.05479299,0.08769923;-0.6175088;-0.003677987,-0.0703002;0.00360526;-0.03801163,-0.0987083;-0.2936616;-0.009281768,-0.09723518;-0.5879519;0.04895136,-0.09900221;-0.555681;-0.04944862,0.004190315;0.399691;0.01348321,120.7982
-0;0;0,-0.0004203612;0.199757;0.009847513,-0.0006696961;0.4997019;0.01188472,0.1147712;0.3826396;-0.0141573,0.1706711;0.1917291;0.006541063,0.2103374;-0.05351613;-0.02141126,-0.1120644;0.3641396;-0.01326376,-0.1670855;0.1722693;-0.0006751753,-0.212699;-0.0731795;-0.01387811,0.07300503;0.005735288;-0.03220827,0.08730276;-0.2925332;-0.003372326,0.07434658;-0.5855469;0.05967639,0.0853784;-0.6120377;-0.003785767,-0.06962603;0.002255965;-0.03933352,-0.09847779;-0.2946592;-0.00756963,-0.09652518;-0.5888801;0.05099905,-0.09675025;-0.6150885;-0.01374836,-0.0006858229;0.399719;0.01373477,0;0;0,0.002048424;0.1997296;0.01019367,0.005659647;0.4996519;0.01110359,0.1179769;0.3795836;-0.01889422,0.167837;0.1865575;-0.00292849,0.1817265;-0.06034014;-0.03965206,-0.1077837;0.3666005;-0.01420843,-0.1589139;0.1736083;-0.002388895,-0.1865814;-0.07397737;-0.0232662,0.07165868;0.004333607;-0.03530231,0.09029593;-0.2936743;-0.006252095,0.07697973;-0.5870959;0.05479299,0.08769923;-0.6175088;-0.003677987,-0.0703002;0.00360526;-0.03801163,-0.0987083;-0.2936616;-0.009281768,-0.09723518;-0.5879519;0.04895136,-0.09900221;-0.555681;-0.04944862,0.004190315;0.399691;0.01348321,120.8206
-0;0;0,0.0001329361;0.1997678;0.009633184,0.0001355547;0.4997137;0.0114956,0.1155148;0.3824608;-0.01440945,0.1694394;0.1908509;0.005026857,0.2025905;-0.05512106;-0.02495346,-0.1111774;0.363942;-0.01385089,-0.1644012;0.1715052;-0.002218182,-0.2026287;-0.07518166;-0.01579223,0.0731201;0.005435182;-0.03199858,0.08873782;-0.2928276;-0.003795389,0.07593571;-0.5858524;0.05923299,0.08705194;-0.6140468;-0.002102677,-0.06940764;0.002531656;-0.03970101,-0.09716827;-0.2944364;-0.007462297,-0.09535248;-0.5887496;0.05064497,-0.09458176;-0.6173901;-0.01112132,6.922925E-05;0.3997321;0.01341176,0;0;0,0.002048424;0.1997296;0.01019367,0.005659647;0.4996519;0.01110359,0.1179769;0.3795836;-0.01889422,0.167837;0.1865575;-0.00292849,0.1817265;-0.06034014;-0.03965206,-0.1077837;0.3666005;-0.01420843,-0.1589139;0.1736083;-0.002388895,-0.1865814;-0.07397737;-0.0232662,0.07165868;0.004333607;-0.03530231,0.09029593;-0.2936743;-0.006252095,0.07697973;-0.5870959;0.05479299,0.08769923;-0.6175088;-0.003677987,-0.0703002;0.00360526;-0.03801163,-0.0987083;-0.2936616;-0.009281768,-0.09723518;-0.5879519;0.04895136,-0.09900221;-0.555681;-0.04944862,0.004190315;0.399691;0.01348321,120.8321
-0;0;0,0.0001329361;0.1997678;0.009633184,0.0001355547;0.4997137;0.0114956,0.1155148;0.3824608;-0.01440945,0.1694394;0.1908509;0.005026857,0.2025905;-0.05512106;-0.02495346,-0.1111774;0.363942;-0.01385089,-0.1644012;0.1715052;-0.002218182,-0.2026287;-0.07518166;-0.01579223,0.0731201;0.005435182;-0.03199858,0.08873782;-0.2928276;-0.003795389,0.07593571;-0.5858524;0.05923299,0.08705194;-0.6140468;-0.002102677,-0.06940764;0.002531656;-0.03970101,-0.09716827;-0.2944364;-0.007462297,-0.09535248;-0.5887496;0.05064497,-0.09458176;-0.6173901;-0.01112132,6.922925E-05;0.3997321;0.01341176,0;0;0,0.002210709;0.1997312;0.01012821,0.006031865;0.4996508;0.01104492,0.1183468;0.3798427;-0.01896127,0.1683812;0.1868799;-0.002776574,0.1822487;-0.05996083;-0.03988902,-0.1074043;0.3665677;-0.0144328,-0.1584734;0.1735388;-0.002953239,-0.1857958;-0.07407136;-0.02399402,0.07166674;0.004329138;-0.03528648,0.09096836;-0.2936554;-0.006430827,0.07748323;-0.5869766;0.05505753,0.08822112;-0.6173978;-0.00339875,-0.07027338;0.003644824;-0.03805741,-0.09798276;-0.2936695;-0.009137038,-0.09676443;-0.5878965;0.04942072,-0.0985039;-0.5556275;-0.04897941,0.004518085;0.3996906;0.01342832,120.8437
-0;0;0,0.0001329361;0.1997678;0.009633184,0.0001355547;0.4997137;0.0114956,0.1155148;0.3824608;-0.01440945,0.1694394;0.1908509;0.005026857,0.2025905;-0.05512106;-0.02495346,-0.1111774;0.363942;-0.01385089,-0.1644012;0.1715052;-0.002218182,-0.2026287;-0.07518166;-0.01579223,0.0731201;0.005435182;-0.03199858,0.08873782;-0.2928276;-0.003795389,0.07593571;-0.5858524;0.05923299,0.08705194;-0.6140468;-0.002102677,-0.06940764;0.002531656;-0.03970101,-0.09716827;-0.2944364;-0.007462297,-0.09535248;-0.5887496;0.05064497,-0.09458176;-0.6173901;-0.01112132,6.922925E-05;0.3997321;0.01341176,0;0;0,0.002210709;0.1997312;0.01012821,0.006031865;0.4996508;0.01104492,0.1183468;0.3798427;-0.01896127,0.1683812;0.1868799;-0.002776574,0.1822487;-0.05996083;-0.03988902,-0.1074043;0.3665677;-0.0144328,-0.1584734;0.1735388;-0.002953239,-0.1857958;-0.07407136;-0.02399402,0.07166674;0.004329138;-0.03528648,0.09096836;-0.2936554;-0.006430827,0.07748323;-0.5869766;0.05505753,0.08822112;-0.6173978;-0.00339875,-0.07027338;0.003644824;-0.03805741,-0.09798276;-0.2936695;-0.009137038,-0.09676443;-0.5878965;0.04942072,-0.0985039;-0.5556275;-0.04897941,0.004518085;0.3996906;0.01342832,120.856
-0;0;0,0.00110963;0.1997818;0.009274921,0.00159914;0.4997309;0.01089897,0.1168242;0.3825686;-0.01519927,0.1693405;0.1905214;0.003772387,0.1962142;-0.05600148;-0.02791744,-0.1097264;0.3638192;-0.01466541,-0.1615432;0.1709538;-0.003805667,-0.1950806;-0.07631084;-0.01915025,0.07304779;0.005297946;-0.0321862,0.09031663;-0.2929255;-0.004535999,0.07814179;-0.5861427;0.05771755,0.08861275;-0.6154266;-0.002319206,-0.06938828;0.002726152;-0.03972198,-0.0971506;-0.2942939;-0.007967625,-0.09340767;-0.5885295;0.05043973,-0.09289424;-0.6166044;-0.01204262,0.001416556;0.3997498;0.0128343,0;0;0,0.002210709;0.1997312;0.01012821,0.006031865;0.4996508;0.01104492,0.1183468;0.3798427;-0.01896127,0.1683812;0.1868799;-0.002776574,0.1822487;-0.05996083;-0.03988902,-0.1074043;0.3665677;-0.0144328,-0.1584734;0.1735388;-0.002953239,-0.1857958;-0.07407136;-0.02399402,0.07166674;0.004329138;-0.03528648,0.09096836;-0.2936554;-0.006430827,0.07748323;-0.5869766;0.05505753,0.08822112;-0.6173978;-0.00339875,-0.07027338;0.003644824;-0.03805741,-0.09798276;-0.2936695;-0.009137038,-0.09676443;-0.5878965;0.04942072,-0.0985039;-0.5556275;-0.04897941,0.004518085;0.3996906;0.01342832,120.877
-0;0;0,0.001803505;0.1997933;0.008909088,0.003257148;0.499743;0.009989482,0.1182387;0.3831277;-0.0162887,0.1702846;0.1909149;0.002298333,0.193584;-0.05580604;-0.03065469,-0.1082656;0.3638854;-0.0156763,-0.1589148;0.1706887;-0.005201901,-0.1908886;-0.07667808;-0.02215271,0.07306979;0.005117042;-0.03216553,0.09308892;-0.2930494;-0.00578336,0.08092126;-0.5862718;0.05644676,0.09103139;-0.6157979;-0.003331006,-0.06920571;0.002967993;-0.040022,-0.09573175;-0.2941429;-0.008061279,-0.09126329;-0.5885708;0.04931692,-0.09108221;-0.6176737;-0.01186067,0.002831639;0.3997657;0.01207285,0;0;0,0.002363311;0.1997273;0.0101697,0.006350071;0.4996445;0.01122854,0.1186742;0.3798199;-0.01867183,0.1686637;0.1868293;-0.002682401,0.1826863;-0.0599802;-0.0399444,-0.1070712;0.3664359;-0.0143427,-0.1598907;0.1739906;-0.001117507,-0.1852523;-0.0736191;-0.02448942,0.07161011;0.004294753;-0.03540547,0.09117955;-0.2936241;-0.006056119,0.07763894;-0.5869214;0.05553423,0.08853608;-0.6172323;-0.003043991,-0.07032496;0.003703754;-0.0379563,-0.09788205;-0.2935992;-0.008775063,-0.0967761;-0.5878502;0.04966424,-0.09844168;-0.5555789;-0.04873758,0.004803686;0.3996837;0.01356066,120.8993
-0;0;0,0.001803505;0.1997933;0.008909088,0.003257148;0.499743;0.009989482,0.1182387;0.3831277;-0.0162887,0.1702846;0.1909149;0.002298333,0.193584;-0.05580604;-0.03065469,-0.1082656;0.3638854;-0.0156763,-0.1589148;0.1706887;-0.005201901,-0.1908886;-0.07667808;-0.02215271,0.07306979;0.005117042;-0.03216553,0.09308892;-0.2930494;-0.00578336,0.08092126;-0.5862718;0.05644676,0.09103139;-0.6157979;-0.003331006,-0.06920571;0.002967993;-0.040022,-0.09573175;-0.2941429;-0.008061279,-0.09126329;-0.5885708;0.04931692,-0.09108221;-0.6176737;-0.01186067,0.002831639;0.3997657;0.01207285,0;0;0,0.002363311;0.1997273;0.0101697,0.006350071;0.4996445;0.01122854,0.1186742;0.3798199;-0.01867183,0.1686637;0.1868293;-0.002682401,0.1826863;-0.0599802;-0.0399444,-0.1070712;0.3664359;-0.0143427,-0.1598907;0.1739906;-0.001117507,-0.1852523;-0.0736191;-0.02448942,0.07161011;0.004294753;-0.03540547,0.09117955;-0.2936241;-0.006056119,0.07763894;-0.5869214;0.05553423,0.08853608;-0.6172323;-0.003043991,-0.07032496;0.003703754;-0.0379563,-0.09788205;-0.2935992;-0.008775063,-0.0967761;-0.5878502;0.04966424,-0.09844168;-0.5555789;-0.04873758,0.004803686;0.3996837;0.01356066,120.9107
-0;0;0,0.001803505;0.1997933;0.008909088,0.003257148;0.499743;0.009989482,0.1182387;0.3831277;-0.0162887,0.1702846;0.1909149;0.002298333,0.193584;-0.05580604;-0.03065469,-0.1082656;0.3638854;-0.0156763,-0.1589148;0.1706887;-0.005201901,-0.1908886;-0.07667808;-0.02215271,0.07306979;0.005117042;-0.03216553,0.09308892;-0.2930494;-0.00578336,0.08092126;-0.5862718;0.05644676,0.09103139;-0.6157979;-0.003331006,-0.06920571;0.002967993;-0.040022,-0.09573175;-0.2941429;-0.008061279,-0.09126329;-0.5885708;0.04931692,-0.09108221;-0.6176737;-0.01186067,0.002831639;0.3997657;0.01207285,0;0;0,0.002363311;0.1997273;0.0101697,0.006350071;0.4996445;0.01122854,0.1186742;0.3798199;-0.01867183,0.1686637;0.1868293;-0.002682401,0.1826863;-0.0599802;-0.0399444,-0.1070712;0.3664359;-0.0143427,-0.1598907;0.1739906;-0.001117507,-0.1852523;-0.0736191;-0.02448942,0.07161011;0.004294753;-0.03540547,0.09117955;-0.2936241;-0.006056119,0.07763894;-0.5869214;0.05553423,0.08853608;-0.6172323;-0.003043991,-0.07032496;0.003703754;-0.0379563,-0.09788205;-0.2935992;-0.008775063,-0.0967761;-0.5878502;0.04966424,-0.09844168;-0.5555789;-0.04873758,0.004803686;0.3996837;0.01356066,120.9217
-0;0;0,0.002025575;0.1997981;0.008753092,0.003817966;0.4997473;0.009553705,0.1187183;0.3832709;-0.01672598,0.1700093;0.190788;0.001151439,0.1879645;-0.05625492;-0.0327216,-0.1077928;0.3639336;-0.01605816,-0.1577757;0.1705319;-0.006184289,-0.1878319;-0.07700545;-0.02412607,0.07308213;0.005042926;-0.03214918,0.09384824;-0.2931373;-0.006510243,0.08171783;-0.5862544;0.05622086,0.09176087;-0.6156985;-0.003677137,-0.0691243;0.003079389;-0.04015405,-0.09517643;-0.2941138;-0.008570932,-0.09079325;-0.5885903;0.04856435,-0.09017163;-0.6168066;-0.01373983,0.003311492;0.399772;0.01171652,0;0;0,0.001446054;0.1997119;0.01063361,0.00179985;0.4996484;0.01404319,0.1156732;0.3803396;-0.01727898,0.1656196;0.1873301;-0.001381945,0.1798218;-0.05938484;-0.03919759,-0.1092479;0.3655594;-0.01472413,-0.1614636;0.172891;-0.00237847,-0.1855753;-0.07481264;-0.02607575,0.07155754;0.004212142;-0.03552149,0.09177259;-0.2936761;-0.006299423,0.07815112;-0.5868427;0.05589271,0.08941372;-0.6173134;-0.002396353,-0.07035673;0.003801779;-0.03788769,-0.0966429;-0.2936629;-0.009186009,-0.09661337;-0.5878007;0.04983038,-0.09853574;-0.6175583;-0.01046085,0.001813447;0.3996566;0.01532171,120.9441
-0;0;0,0.002025575;0.1997981;0.008753092,0.003817966;0.4997473;0.009553705,0.1187183;0.3832709;-0.01672598,0.1700093;0.190788;0.001151439,0.1879645;-0.05625492;-0.0327216,-0.1077928;0.3639336;-0.01605816,-0.1577757;0.1705319;-0.006184289,-0.1878319;-0.07700545;-0.02412607,0.07308213;0.005042926;-0.03214918,0.09384824;-0.2931373;-0.006510243,0.08171783;-0.5862544;0.05622086,0.09176087;-0.6156985;-0.003677137,-0.0691243;0.003079389;-0.04015405,-0.09517643;-0.2941138;-0.008570932,-0.09079325;-0.5885903;0.04856435,-0.09017163;-0.6168066;-0.01373983,0.003311492;0.399772;0.01171652,0;0;0,0.001446054;0.1997119;0.01063361,0.00179985;0.4996484;0.01404319,0.1156732;0.3803396;-0.01727898,0.1656196;0.1873301;-0.001381945,0.1798218;-0.05938484;-0.03919759,-0.1092479;0.3655594;-0.01472413,-0.1614636;0.172891;-0.00237847,-0.1855753;-0.07481264;-0.02607575,0.07155754;0.004212142;-0.03552149,0.09177259;-0.2936761;-0.006299423,0.07815112;-0.5868427;0.05589271,0.08941372;-0.6173134;-0.002396353,-0.07035673;0.003801779;-0.03788769,-0.0966429;-0.2936629;-0.009186009,-0.09661337;-0.5878007;0.04983038,-0.09853574;-0.6175583;-0.01046085,0.001813447;0.3996566;0.01532171,120.9555
-0;0;0,0.002119305;0.1998003;0.008680112,0.00419232;0.4997481;0.009265639,0.1190137;0.3834755;-0.01701863,0.1695682;0.1907491;0.0003235806,0.1849594;-0.05628832;-0.03482807,-0.1076279;0.3643556;-0.01632252,-0.1574057;0.1708786;-0.006897712,-0.1858639;-0.07677342;-0.02583407,0.07304268;0.005034662;-0.03224001,0.09420766;-0.2931408;-0.006873261,0.08209471;-0.5862384;0.05595259,0.09173867;-0.6140527;-0.006111261,-0.06919286;0.003102822;-0.040034,-0.09476058;-0.2941917;-0.00901318,-0.09061198;-0.5886503;0.04823091,-0.09010263;-0.6165884;-0.01442214,0.003597874;0.3997749;0.01150374,0;0;0,0.001446054;0.1997119;0.01063361,0.00179985;0.4996484;0.01404319,0.1156732;0.3803396;-0.01727898,0.1656196;0.1873301;-0.001381945,0.1798218;-0.05938484;-0.03919759,-0.1092479;0.3655594;-0.01472413,-0.1614636;0.172891;-0.00237847,-0.1855753;-0.07481264;-0.02607575,0.07155754;0.004212142;-0.03552149,0.09177259;-0.2936761;-0.006299423,0.07815112;-0.5868427;0.05589271,0.08941372;-0.6173134;-0.002396353,-0.07035673;0.003801779;-0.03788769,-0.0966429;-0.2936629;-0.009186009,-0.09661337;-0.5878007;0.04983038,-0.09853574;-0.6175583;-0.01046085,0.001813447;0.3996566;0.01532171,120.9774
-0;0;0,0.002119305;0.1998003;0.008680112,0.00419232;0.4997481;0.009265639,0.1190137;0.3834755;-0.01701863,0.1695682;0.1907491;0.0003235806,0.1849594;-0.05628832;-0.03482807,-0.1076279;0.3643556;-0.01632252,-0.1574057;0.1708786;-0.006897712,-0.1858639;-0.07677342;-0.02583407,0.07304268;0.005034662;-0.03224001,0.09420766;-0.2931408;-0.006873261,0.08209471;-0.5862384;0.05595259,0.09173867;-0.6140527;-0.006111261,-0.06919286;0.003102822;-0.040034,-0.09476058;-0.2941917;-0.00901318,-0.09061198;-0.5886503;0.04823091,-0.09010263;-0.6165884;-0.01442214,0.003597874;0.3997749;0.01150374,0;0;0,0.001694941;0.1997128;0.0105789,0.003409302;0.4996475;0.01334498,0.1166926;0.3803041;-0.01744118,0.166197;0.1871037;-0.002510031,0.1810258;-0.05971198;-0.03941693,-0.1085161;0.3657377;-0.01442679,-0.1614854;0.1733271;-0.001295885,-0.1842618;-0.07436943;-0.02634913,0.07152963;0.004192136;-0.03558,0.09195208;-0.2936597;-0.00613209,0.07819526;-0.5867743;0.05627456,0.08945013;-0.617135;-0.002167594,-0.07038449;0.003829098;-0.03783332,-0.09620403;-0.2938026;-0.0104705,-0.09678736;-0.5876738;0.0498569,-0.09921487;-0.617079;-0.01087956,0.002778391;0.3996623;0.01494434,120.9889
-0;0;0,0.002037531;0.1997985;0.008742243,0.004122828;0.4997452;0.009296958,0.1188864;0.3835106;-0.01709787,0.1685585;0.1904953;-0.0004319008,0.1834735;-0.05656633;-0.03561885,-0.1076587;0.3645017;-0.0166969,-0.1574204;0.1709983;-0.007739239,-0.1849057;-0.07673426;-0.02705526,0.07304442;0.005047029;-0.03223415,0.09430747;-0.2931491;-0.007195266,0.08226237;-0.5862157;0.05578791,0.09236874;-0.6133434;-0.007054649,-0.06917037;0.003102308;-0.04007287,-0.09446324;-0.2942555;-0.009435672,-0.09074572;-0.5886667;0.04808156,-0.09006225;-0.6172171;-0.01380032,0.003502214;0.3997731;0.01157292,0;0;0,0.001694941;0.1997128;0.0105789,0.003409302;0.4996475;0.01334498,0.1166926;0.3803041;-0.01744118,0.166197;0.1871037;-0.002510031,0.1810258;-0.05971198;-0.03941693,-0.1085161;0.3657377;-0.01442679,-0.1614854;0.1733271;-0.001295885,-0.1842618;-0.07436943;-0.02634913,0.07152963;0.004192136;-0.03558,0.09195208;-0.2936597;-0.00613209,0.07819526;-0.5867743;0.05627456,0.08945013;-0.617135;-0.002167594,-0.07038449;0.003829098;-0.03783332,-0.09620403;-0.2938026;-0.0104705,-0.09678736;-0.5876738;0.0498569,-0.09921487;-0.617079;-0.01087956,0.002778391;0.3996623;0.01494434,120.9999
-0;0;0,0.002037531;0.1997985;0.008742243,0.004122828;0.4997452;0.009296958,0.1188864;0.3835106;-0.01709787,0.1685585;0.1904953;-0.0004319008,0.1834735;-0.05656633;-0.03561885,-0.1076587;0.3645017;-0.0166969,-0.1574204;0.1709983;-0.007739239,-0.1849057;-0.07673426;-0.02705526,0.07304442;0.005047029;-0.03223415,0.09430747;-0.2931491;-0.007195266,0.08226237;-0.5862157;0.05578791,0.09236874;-0.6133434;-0.007054649,-0.06917037;0.003102308;-0.04007287,-0.09446324;-0.2942555;-0.009435672,-0.09074572;-0.5886667;0.04808156,-0.09006225;-0.6172171;-0.01380032,0.003502214;0.3997731;0.01157292,0;0;0,0.001694941;0.1997128;0.0105789,0.003409302;0.4996475;0.01334498,0.1166926;0.3803041;-0.01744118,0.166197;0.1871037;-0.002510031,0.1810258;-0.05971198;-0.03941693,-0.1085161;0.3657377;-0.01442679,-0.1614854;0.1733271;-0.001295885,-0.1842618;-0.07436943;-0.02634913,0.07152963;0.004192136;-0.03558,0.09195208;-0.2936597;-0.00613209,0.07819526;-0.5867743;0.05627456,0.08945013;-0.617135;-0.002167594,-0.07038449;0.003829098;-0.03783332,-0.09620403;-0.2938026;-0.0104705,-0.09678736;-0.5876738;0.0498569,-0.09921487;-0.617079;-0.01087956,0.002778391;0.3996623;0.01494434,121.0111
-0;0;0,0.00219154;0.1998008;0.008651326,0.004522634;0.4997459;0.008986267,0.1191927;0.3836122;-0.01748596,0.1685732;0.1904665;-0.001476385,0.182794;-0.05655375;-0.03723612,-0.1072828;0.3645193;-0.0171233,-0.1571476;0.1710405;-0.008210541,-0.1837666;-0.07673697;-0.02815473,0.07294498;0.005100975;-0.03245012,0.09465592;-0.2930804;-0.007619826,0.08270649;-0.5862005;0.05513184,0.09272776;-0.613928;-0.006981041,-0.06932545;0.003054332;-0.0398077,-0.09426466;-0.2943973;-0.009797696,-0.09050152;-0.5888221;0.04764648,-0.08975662;-0.6174449;-0.01414267,0.003833337;0.399776;0.01134022,0;0;0,0.001891935;0.1997104;0.01059211,0.00425163;0.4996411;0.01310176,0.1172926;0.3803855;-0.01747418,0.1668669;0.1872115;-0.002433997,0.1816996;-0.05955061;-0.03969577,-0.1080258;0.3657245;-0.01424967,-0.1617146;0.1735173;-0.001062175,-0.1836881;-0.07417899;-0.02682424,0.07149503;0.004160802;-0.03565318,0.09216779;-0.2936768;-0.006234946,0.0784509;-0.5867309;0.0564637,0.08961754;-0.6171652;-0.001894034,-0.07040325;0.003875016;-0.03779373,-0.09604651;-0.2937486;-0.01017837,-0.09654912;-0.5876275;0.05011214,-0.09924357;-0.6169333;-0.01074279,0.003341509;0.3996602;0.01483107,121.0331
-0;0;0,0.00219154;0.1998008;0.008651326,0.004522634;0.4997459;0.008986267,0.1191927;0.3836122;-0.01748596,0.1685732;0.1904665;-0.001476385,0.182794;-0.05655375;-0.03723612,-0.1072828;0.3645193;-0.0171233,-0.1571476;0.1710405;-0.008210541,-0.1837666;-0.07673697;-0.02815473,0.07294498;0.005100975;-0.03245012,0.09465592;-0.2930804;-0.007619826,0.08270649;-0.5862005;0.05513184,0.09272776;-0.613928;-0.006981041,-0.06932545;0.003054332;-0.0398077,-0.09426466;-0.2943973;-0.009797696,-0.09050152;-0.5888221;0.04764648,-0.08975662;-0.6174449;-0.01414267,0.003833337;0.399776;0.01134022,0;0;0,0.001891935;0.1997104;0.01059211,0.00425163;0.4996411;0.01310176,0.1172926;0.3803855;-0.01747418,0.1668669;0.1872115;-0.002433997,0.1816996;-0.05955061;-0.03969577,-0.1080258;0.3657245;-0.01424967,-0.1617146;0.1735173;-0.001062175,-0.1836881;-0.07417899;-0.02682424,0.07149503;0.004160802;-0.03565318,0.09216779;-0.2936768;-0.006234946,0.0784509;-0.5867309;0.0564637,0.08961754;-0.6171652;-0.001894034,-0.07040325;0.003875016;-0.03779373,-0.09604651;-0.2937486;-0.01017837,-0.09654912;-0.5876275;0.05011214,-0.09924357;-0.6169333;-0.01074279,0.003341509;0.3996602;0.01483107,121.0444
-0;0;0,0.00219154;0.1998008;0.008651326,0.004522634;0.4997459;0.008986267,0.1191927;0.3836122;-0.01748596,0.1685732;0.1904665;-0.001476385,0.182794;-0.05655375;-0.03723612,-0.1072828;0.3645193;-0.0171233,-0.1571476;0.1710405;-0.008210541,-0.1837666;-0.07673697;-0.02815473,0.07294498;0.005100975;-0.03245012,0.09465592;-0.2930804;-0.007619826,0.08270649;-0.5862005;0.05513184,0.09272776;-0.613928;-0.006981041,-0.06932545;0.003054332;-0.0398077,-0.09426466;-0.2943973;-0.009797696,-0.09050152;-0.5888221;0.04764648,-0.08975662;-0.6174449;-0.01414267,0.003833337;0.399776;0.01134022,0;0;0,0.002175402;0.1997058;0.01062442,0.005146042;0.499631;0.01291244,0.1180536;0.3805307;-0.01726253,0.1675824;0.1873409;-0.002276365,0.1829561;-0.05935784;-0.03973825,-0.1075751;0.3659743;-0.01382253,-0.1615757;0.1738751;-0.0003380515,-0.1829227;-0.07379454;-0.0268725,0.07164609;0.004068187;-0.0353594,0.09282315;-0.2937413;-0.006016288,0.07911059;-0.5867296;0.0569904,0.0902223;-0.6162528;-0.002613176,-0.07021195;0.004012772;-0.03813371,-0.0952839;-0.2935834;-0.009709438,-0.09607575;-0.5874674;0.05055304,-0.09837049;-0.6180493;-0.008618776,0.003997931;0.3996547;0.01476215,121.0557
-0;0;0,0.002516506;0.1998058;0.008445711,0.005089941;0.4997501;0.008594665,0.1197149;0.3836943;-0.01794364,0.1688589;0.1904717;-0.00213513,0.1831443;-0.05654408;-0.03789994,-0.1067795;0.3647162;-0.01759379,-0.1568627;0.1712904;-0.008754883,-0.183545;-0.07646054;-0.02894228,0.07289173;0.005091266;-0.03257108,0.09550247;-0.2930575;-0.008155886,0.08351097;-0.5861841;0.05455731,0.09355332;-0.6140176;-0.007419329,-0.06928314;0.003101836;-0.03987762,-0.0945138;-0.2943404;-0.01001859,-0.08974276;-0.5887192;0.04758603,-0.08909191;-0.6179243;-0.01345604,0.004369106;0.3997811;0.01097971,0;0;0,0.002175402;0.1997058;0.01062442,0.005146042;0.499631;0.01291244,0.1180536;0.3805307;-0.01726253,0.1675824;0.1873409;-0.002276365,0.1829561;-0.05935784;-0.03973825,-0.1075751;0.3659743;-0.01382253,-0.1615757;0.1738751;-0.0003380515,-0.1829227;-0.07379454;-0.0268725,0.07164609;0.004068187;-0.0353594,0.09282315;-0.2937413;-0.006016288,0.07911059;-0.5867296;0.0569904,0.0902223;-0.6162528;-0.002613176,-0.07021195;0.004012772;-0.03813371,-0.0952839;-0.2935834;-0.009709438,-0.09607575;-0.5874674;0.05055304,-0.09837049;-0.6180493;-0.008618776,0.003997931;0.3996547;0.01476215,121.0672
-0;0;0,0.002516506;0.1998058;0.008445711,0.005089941;0.4997501;0.008594665,0.1197149;0.3836943;-0.01794364,0.1688589;0.1904717;-0.00213513,0.1831443;-0.05654408;-0.03789994,-0.1067795;0.3647162;-0.01759379,-0.1568627;0.1712904;-0.008754883,-0.183545;-0.07646054;-0.02894228,0.07289173;0.005091266;-0.03257108,0.09550247;-0.2930575;-0.008155886,0.08351097;-0.5861841;0.05455731,0.09355332;-0.6140176;-0.007419329,-0.06928314;0.003101836;-0.03987762,-0.0945138;-0.2943404;-0.01001859,-0.08974276;-0.5887192;0.04758603,-0.08909191;-0.6179243;-0.01345604,0.004369106;0.3997811;0.01097971,0;0;0,0.002175402;0.1997058;0.01062442,0.005146042;0.499631;0.01291244,0.1180536;0.3805307;-0.01726253,0.1675824;0.1873409;-0.002276365,0.1829561;-0.05935784;-0.03973825,-0.1075751;0.3659743;-0.01382253,-0.1615757;0.1738751;-0.0003380515,-0.1829227;-0.07379454;-0.0268725,0.07164609;0.004068187;-0.0353594,0.09282315;-0.2937413;-0.006016288,0.07911059;-0.5867296;0.0569904,0.0902223;-0.6162528;-0.002613176,-0.07021195;0.004012772;-0.03813371,-0.0952839;-0.2935834;-0.009709438,-0.09607575;-0.5874674;0.05055304,-0.09837049;-0.6180493;-0.008618776,0.003997931;0.3996547;0.01476215,121.0889
-0;0;0,0.002689952;0.1998032;0.00845213,0.005520521;0.499745;0.008494539,0.1200435;0.383677;-0.01811032,0.1691184;0.1903802;-0.003010594,0.1835455;-0.05672517;-0.03809337,-0.106404;0.3647651;-0.01778125,-0.1565606;0.1713507;-0.009110473,-0.1833254;-0.07638773;-0.02934223,0.07290587;0.005424921;-0.03248544,0.09609494;-0.2927116;-0.008466421,0.08397823;-0.5857851;0.05447093,0.09420616;-0.6133066;-0.00786525,-0.06924202;0.002673311;-0.03997993,-0.09401879;-0.2948171;-0.01022135,-0.08966941;-0.5891114;0.0478472,-0.0887816;-0.618977;-0.01232515,0.00472733;0.3997776;0.01092332,0;0;0,0.002175402;0.1997058;0.01062442,0.005146042;0.499631;0.01291244,0.1180536;0.3805307;-0.01726253,0.1675824;0.1873409;-0.002276365,0.1829561;-0.05935784;-0.03973825,-0.1075751;0.3659743;-0.01382253,-0.1615757;0.1738751;-0.0003380515,-0.1829227;-0.07379454;-0.0268725,0.07164609;0.004068187;-0.0353594,0.09282315;-0.2937413;-0.006016288,0.07911059;-0.5867296;0.0569904,0.0902223;-0.6162528;-0.002613176,-0.07021195;0.004012772;-0.03813371,-0.0952839;-0.2935834;-0.009709438,-0.09607575;-0.5874674;0.05055304,-0.09837049;-0.6180493;-0.008618776,0.003997931;0.3996547;0.01476215,121.1003
-0;0;0,0.002689952;0.1998032;0.00845213,0.005520521;0.499745;0.008494539,0.1200435;0.383677;-0.01811032,0.1691184;0.1903802;-0.003010594,0.1835455;-0.05672517;-0.03809337,-0.106404;0.3647651;-0.01778125,-0.1565606;0.1713507;-0.009110473,-0.1833254;-0.07638773;-0.02934223,0.07290587;0.005424921;-0.03248544,0.09609494;-0.2927116;-0.008466421,0.08397823;-0.5857851;0.05447093,0.09420616;-0.6133066;-0.00786525,-0.06924202;0.002673311;-0.03997993,-0.09401879;-0.2948171;-0.01022135,-0.08966941;-0.5891114;0.0478472,-0.0887816;-0.618977;-0.01232515,0.00472733;0.3997776;0.01092332,0;0;0,0.002455846;0.1997087;0.0105074,0.006195801;0.4996269;0.01244659,0.1188594;0.3802651;-0.01729563,0.1684819;0.1870964;-0.002346809,0.1840414;-0.05956374;-0.0399854,-0.1069676;0.3660086;-0.01355534,-0.158906;0.1731587;-0.0030055,-0.1822617;-0.07456437;-0.02725009,0.07169867;0.004084879;-0.03525073,0.09342341;-0.2936709;-0.005763223,0.07931336;-0.5866369;0.05725938,0.09082336;-0.6165825;-0.001700148,-0.07018971;0.004007604;-0.03817514,-0.09502174;-0.2935812;-0.009464748,-0.09585863;-0.5874166;0.05103379,-0.09815106;-0.6170973;-0.009346064,0.004766214;0.3996568;0.01443298,121.1117
-0;0;0,0.002734916;0.1998018;0.008471003,0.005653203;0.4997425;0.008493434,0.1201665;0.3837537;-0.01811598,0.1692518;0.1904496;-0.003144954,0.184295;-0.05664206;-0.0380654,-0.1062857;0.364693;-0.01769692,-0.1564913;0.171287;-0.00912139,-0.1830323;-0.07641485;-0.03008197,0.07288944;0.005417208;-0.03252357,0.09611711;-0.2926909;-0.008191397,0.08406176;-0.5858073;0.05455765,0.09428088;-0.6133257;-0.00778386,-0.06925267;0.002692766;-0.03996019,-0.0939052;-0.2947406;-0.009535722,-0.08891047;-0.5890417;0.04844616,-0.08802814;-0.6190613;-0.01152126,0.004843026;0.3997756;0.0109321,0;0;0,0.002455846;0.1997087;0.0105074,0.006195801;0.4996269;0.01244659,0.1188594;0.3802651;-0.01729563,0.1684819;0.1870964;-0.002346809,0.1840414;-0.05956374;-0.0399854,-0.1069676;0.3660086;-0.01355534,-0.158906;0.1731587;-0.0030055,-0.1822617;-0.07456437;-0.02725009,0.07169867;0.004084879;-0.03525073,0.09342341;-0.2936709;-0.005763223,0.07931336;-0.5866369;0.05725938,0.09082336;-0.6165825;-0.001700148,-0.07018971;0.004007604;-0.03817514,-0.09502174;-0.2935812;-0.009464748,-0.09585863;-0.5874166;0.05103379,-0.09815106;-0.6170973;-0.009346064,0.004766214;0.3996568;0.01443298,121.1336
-0;0;0,0.002734916;0.1998018;0.008471003,0.005653203;0.4997425;0.008493434,0.1201665;0.3837537;-0.01811598,0.1692518;0.1904496;-0.003144954,0.184295;-0.05664206;-0.0380654,-0.1062857;0.364693;-0.01769692,-0.1564913;0.171287;-0.00912139,-0.1830323;-0.07641485;-0.03008197,0.07288944;0.005417208;-0.03252357,0.09611711;-0.2926909;-0.008191397,0.08406176;-0.5858073;0.05455765,0.09428088;-0.6133257;-0.00778386,-0.06925267;0.002692766;-0.03996019,-0.0939052;-0.2947406;-0.009535722,-0.08891047;-0.5890417;0.04844616,-0.08802814;-0.6190613;-0.01152126,0.004843026;0.3997756;0.0109321,0;0;0,0.002455846;0.1997087;0.0105074,0.006195801;0.4996269;0.01244659,0.1188594;0.3802651;-0.01729563,0.1684819;0.1870964;-0.002346809,0.1840414;-0.05956374;-0.0399854,-0.1069676;0.3660086;-0.01355534,-0.158906;0.1731587;-0.0030055,-0.1822617;-0.07456437;-0.02725009,0.07169867;0.004084879;-0.03525073,0.09342341;-0.2936709;-0.005763223,0.07931336;-0.5866369;0.05725938,0.09082336;-0.6165825;-0.001700148,-0.07018971;0.004007604;-0.03817514,-0.09502174;-0.2935812;-0.009464748,-0.09585863;-0.5874166;0.05103379,-0.09815106;-0.6170973;-0.009346064,0.004766214;0.3996568;0.01443298,121.1453
-0;0;0,0.002734916;0.1998018;0.008471003,0.005653203;0.4997425;0.008493434,0.1201665;0.3837537;-0.01811598,0.1692518;0.1904496;-0.003144954,0.184295;-0.05664206;-0.0380654,-0.1062857;0.364693;-0.01769692,-0.1564913;0.171287;-0.00912139,-0.1830323;-0.07641485;-0.03008197,0.07288944;0.005417208;-0.03252357,0.09611711;-0.2926909;-0.008191397,0.08406176;-0.5858073;0.05455765,0.09428088;-0.6133257;-0.00778386,-0.06925267;0.002692766;-0.03996019,-0.0939052;-0.2947406;-0.009535722,-0.08891047;-0.5890417;0.04844616,-0.08802814;-0.6190613;-0.01152126,0.004843026;0.3997756;0.0109321,0;0;0,0.00260307;0.1997033;0.01057407,0.006590664;0.4996175;0.01260062,0.1191686;0.3802568;-0.017207,0.1688721;0.1870831;-0.002596001,0.1843425;-0.05968544;-0.03955493,-0.1067365;0.3660865;-0.01317174,-0.1598225;0.1736068;-0.001620365,-0.1819614;-0.07412872;-0.02685926,0.07173222;0.004070671;-0.03518407,0.09363471;-0.2936491;-0.005464628,0.07938533;-0.586633;0.05744343,0.09064083;-0.6160223;-0.002311386,-0.07017008;0.004034961;-0.03820836,-0.09433445;-0.2935901;-0.009304481,-0.0957687;-0.5874059;0.05127766,-0.09782752;-0.6175442;-0.008502014,0.005086687;0.3996481;0.01456247,121.1566
-0;0;0,0.002663122;0.1997996;0.008544895,0.005598776;0.4997401;0.008607058,0.1201;0.3838174;-0.01803101,0.1690452;0.1904386;-0.003573367,0.185782;-0.05651134;-0.03872423,-0.1063412;0.3646744;-0.01763117,-0.1566905;0.171305;-0.009075047,-0.1831372;-0.07635896;-0.03059589,0.07289316;0.005459369;-0.03250818,0.09567078;-0.2926693;-0.008003704,0.08371037;-0.5857756;0.05481081,0.09428462;-0.6135652;-0.007132404,-0.06923082;0.002660525;-0.04000018,-0.09386258;-0.2947795;-0.009623658,-0.08932624;-0.5890858;0.04836982,-0.08815794;-0.6194763;-0.01109442,0.004772343;0.399773;0.01103706,0;0;0,0.00260307;0.1997033;0.01057407,0.006590664;0.4996175;0.01260062,0.1191686;0.3802568;-0.017207,0.1688721;0.1870831;-0.002596001,0.1843425;-0.05968544;-0.03955493,-0.1067365;0.3660865;-0.01317174,-0.1598225;0.1736068;-0.001620365,-0.1819614;-0.07412872;-0.02685926,0.07173222;0.004070671;-0.03518407,0.09363471;-0.2936491;-0.005464628,0.07938533;-0.586633;0.05744343,0.09064083;-0.6160223;-0.002311386,-0.07017008;0.004034961;-0.03820836,-0.09433445;-0.2935901;-0.009304481,-0.0957687;-0.5874059;0.05127766,-0.09782752;-0.6175442;-0.008502014,0.005086687;0.3996481;0.01456247,121.1786
-0;0;0,0.002673907;0.1997973;0.008596699,0.005641867;0.4997373;0.00868002,0.1201257;0.3838186;-0.01796812,0.1689653;0.1903869;-0.003866012,0.1882685;-0.0563342;-0.03930711,-0.10631;0.3646786;-0.01758909,-0.1567284;0.1713252;-0.009077141,-0.1829561;-0.07626575;-0.03167915,0.07287262;0.005454384;-0.03255505,0.09563364;-0.2926666;-0.007941104,0.08375879;-0.5857498;0.05499689,0.09405444;-0.6127622;-0.007956222,-0.06924818;0.002669466;-0.03996953,-0.09356286;-0.2948103;-0.009727152,-0.08940495;-0.5890971;0.04839319,-0.08828244;-0.6193148;-0.0113049,0.004798913;0.3997703;0.01110541,0;0;0,0.00260307;0.1997033;0.01057407,0.006590664;0.4996175;0.01260062,0.1191686;0.3802568;-0.017207,0.1688721;0.1870831;-0.002596001,0.1843425;-0.05968544;-0.03955493,-0.1067365;0.3660865;-0.01317174,-0.1598225;0.1736068;-0.001620365,-0.1819614;-0.07412872;-0.02685926,0.07173222;0.004070671;-0.03518407,0.09363471;-0.2936491;-0.005464628,0.07938533;-0.586633;0.05744343,0.09064083;-0.6160223;-0.002311386,-0.07017008;0.004034961;-0.03820836,-0.09433445;-0.2935901;-0.009304481,-0.0957687;-0.5874059;0.05127766,-0.09782752;-0.6175442;-0.008502014,0.005086687;0.3996481;0.01456247,121.2008
-0;0;0,0.002673907;0.1997973;0.008596699,0.005641867;0.4997373;0.00868002,0.1201257;0.3838186;-0.01796812,0.1689653;0.1903869;-0.003866012,0.1882685;-0.0563342;-0.03930711,-0.10631;0.3646786;-0.01758909,-0.1567284;0.1713252;-0.009077141,-0.1829561;-0.07626575;-0.03167915,0.07287262;0.005454384;-0.03255505,0.09563364;-0.2926666;-0.007941104,0.08375879;-0.5857498;0.05499689,0.09405444;-0.6127622;-0.007956222,-0.06924818;0.002669466;-0.03996953,-0.09356286;-0.2948103;-0.009727152,-0.08940495;-0.5890971;0.04839319,-0.08828244;-0.6193148;-0.0113049,0.004798913;0.3997703;0.01110541,0;0;0,0.002687335;0.1997007;0.01060264,0.006842737;0.4996121;0.012688,0.1194427;0.3804319;-0.01699104,0.169208;0.1872786;-0.002321412,0.1846378;-0.05948836;-0.039308,-0.1066554;0.3663093;-0.0128793,-0.1586814;0.1735014;-0.001997587,-0.1818212;-0.07418776;-0.02678896,0.07175437;0.004066626;-0.03513933,0.09366894;-0.2936215;-0.005113648,0.08007507;-0.5866812;0.057586,0.09058589;-0.6160805;-0.002291061,-0.07015572;0.004046963;-0.03823345,-0.09391479;-0.2935947;-0.009165399,-0.09585239;-0.5873537;0.05167775,-0.09777369;-0.6171678;-0.008538708,0.00529033;0.3996431;0.01463435,121.2232
-0;0;0,0.002592557;0.1997944;0.008687268,0.00537055;0.4997357;0.009118943,0.1198178;0.3841768;-0.01812641,0.1690208;0.1908048;-0.004475333,0.1904433;-0.05582975;-0.03929601,-0.1065;0.3646276;-0.01736618,-0.1570457;0.1713008;-0.009006163,-0.1831042;-0.07629012;-0.0318028,0.07284201;0.005551305;-0.03260713,0.09534243;-0.292564;-0.007687399,0.08357894;-0.5856965;0.05504208,0.09412135;-0.6133636;-0.007059999,-0.06926154;0.002634688;-0.0399487,-0.0933479;-0.2948776;-0.00984383,-0.0895221;-0.5891596;0.04832355,-0.08887052;-0.619137;-0.01170299,0.004566046;0.3997658;0.01143724,0;0;0,0.002687335;0.1997007;0.01060264,0.006842737;0.4996121;0.012688,0.1194427;0.3804319;-0.01699104,0.169208;0.1872786;-0.002321412,0.1846378;-0.05948836;-0.039308,-0.1066554;0.3663093;-0.0128793,-0.1586814;0.1735014;-0.001997587,-0.1818212;-0.07418776;-0.02678896,0.07175437;0.004066626;-0.03513933,0.09366894;-0.2936215;-0.005113648,0.08007507;-0.5866812;0.057586,0.09058589;-0.6160805;-0.002291061,-0.07015572;0.004046963;-0.03823345,-0.09391479;-0.2935947;-0.009165399,-0.09585239;-0.5873537;0.05167775,-0.09777369;-0.6171678;-0.008538708,0.00529033;0.3996431;0.01463435,121.2346
+0;0;0,0.005468022;0.1992933;0.01588373,0.01366241;0.4989465;0.02646947,0.1224863;0.3713054;-0.008806892,0.1864463;0.09912029;0.006172546,0.2316545;-0.1748753;-0.02964124,-0.1003919;0.3598608;0.003324116,-0.1809576;0.09188998;-0.006715277,-0.239558;-0.179098;-0.04584996,0.06950954;0.003495623;-0.03944875,0.0838351;-0.3735174;0.005893528,0.08058446;-0.7176022;0.06988664,0.07601705;-0.7049392;-0.02849307,-0.07138424;0.004324635;-0.0358551,-0.1001989;-0.3729388;-0.0006125569,-0.1224532;-0.7169338;0.05998582,-0.109814;-0.7621574;-0.004679911,0.01086708;0.3989906;0.02546687,0;0;0,0.008516874;0.1992678;0.01482563,0.02142435;0.4987988;0.02400295,0.1281411;0.3715351;-0.0127826,0.19042;0.09924933;0.006756781,0.2216159;-0.1742127;-0.04467609,-0.09582834;0.3629149;0.004703902,-0.1789408;0.0958865;0.0184219,-0.2393184;-0.176037;-0.01007633,0.06839728;0.002717144;-0.04140566,0.08997436;-0.3725774;0.01416808,0.0918016;-0.7131567;0.09480532,0.09667645;-0.7638828;0.03598747,-0.07278677;0.003797074;-0.0329798,-0.1018135;-0.3716919;0.01767066,-0.1164466;-0.7123549;0.09663006,-0.1207206;-0.7008108;-0.001559108,0.01709076;0.3988938;0.02353981,14.59276
+0;0;0,0.005497296;0.1992894;0.01592194,0.01384114;0.4989354;0.02658496,0.1225455;0.3711479;-0.008797821,0.1870709;0.09911767;0.006565959,0.2335446;-0.1747209;-0.02882658,-0.1003287;0.3598996;0.003641505,-0.1805575;0.09182835;-0.006416466,-0.2390734;-0.1791785;-0.04554655,0.06950475;0.003521306;-0.03945491,0.08405942;-0.3735184;0.005591571,0.08093992;-0.7175252;0.07000913,0.07630417;-0.7048569;-0.02836832,-0.07142162;0.004287674;-0.03578502,-0.1001378;-0.3729884;-0.0005975924,-0.1220862;-0.716965;0.0602169,-0.1095069;-0.7625063;-0.004089177,0.01099062;0.3989813;0.02556499,0;0;0,0.008516874;0.1992678;0.01482563,0.02142435;0.4987988;0.02400295,0.1281411;0.3715351;-0.0127826,0.19042;0.09924933;0.006756781,0.2216159;-0.1742127;-0.04467609,-0.09582834;0.3629149;0.004703902,-0.1789408;0.0958865;0.0184219,-0.2393184;-0.176037;-0.01007633,0.06839728;0.002717144;-0.04140566,0.08997436;-0.3725774;0.01416808,0.0918016;-0.7131567;0.09480532,0.09667645;-0.7638828;0.03598747,-0.07278677;0.003797074;-0.0329798,-0.1018135;-0.3716919;0.01767066,-0.1164466;-0.7123549;0.09663006,-0.1207206;-0.7008108;-0.001559108,0.01709076;0.3988938;0.02353981,14.61286
+0;0;0,0.005497296;0.1992894;0.01592194,0.01384114;0.4989354;0.02658496,0.1225455;0.3711479;-0.008797821,0.1870709;0.09911767;0.006565959,0.2335446;-0.1747209;-0.02882658,-0.1003287;0.3598996;0.003641505,-0.1805575;0.09182835;-0.006416466,-0.2390734;-0.1791785;-0.04554655,0.06950475;0.003521306;-0.03945491,0.08405942;-0.3735184;0.005591571,0.08093992;-0.7175252;0.07000913,0.07630417;-0.7048569;-0.02836832,-0.07142162;0.004287674;-0.03578502,-0.1001378;-0.3729884;-0.0005975924,-0.1220862;-0.716965;0.0602169,-0.1095069;-0.7625063;-0.004089177,0.01099062;0.3989813;0.02556499,0;0;0,0.008499036;0.1992753;0.01473571,0.02136352;0.4988134;0.02373278,0.1280972;0.371471;-0.01292079,0.1890172;0.09883127;0.005955549,0.2215826;-0.1744263;-0.04571477,-0.09584343;0.3627242;0.004704097,-0.1786273;0.09557325;0.01801627,-0.2387902;-0.1764304;-0.01017016,0.06827442;0.002809841;-0.04160177,0.0897846;-0.3724619;0.0141517,0.091943;-0.7129672;0.09509288,0.09610421;-0.7636015;0.0360946,-0.07284573;0.003711262;-0.03285916,-0.1015512;-0.3718052;0.01777058,-0.1161693;-0.7125049;0.09657446,-0.1204542;-0.7009664;-0.001613192,0.01704432;0.3989075;0.02333526,14.62468
+0;0;0,0.00535298;0.1993006;0.01583117,0.01356646;0.4989553;0.02633384,0.122358;0.3711302;-0.008770842,0.1875154;0.09927765;0.007063385,0.2351371;-0.1745135;-0.02715066,-0.1005616;0.3597669;0.003678458,-0.1804411;0.09158367;-0.006171557,-0.2390711;-0.1794317;-0.04507151,0.06949373;0.003615623;-0.0394658,0.08425883;-0.3733984;0.005727295,0.08113178;-0.7174103;0.07011694,0.07648469;-0.7047492;-0.02825872,-0.07146592;0.004149858;-0.03571275,-0.1003179;-0.3731763;-0.00117977,-0.1218613;-0.7171015;0.06006828,-0.1087253;-0.7619564;-0.004925564,0.01074763;0.3989996;0.02538211,0;0;0,0.008499036;0.1992753;0.01473571,0.02136352;0.4988134;0.02373278,0.1280972;0.371471;-0.01292079,0.1890172;0.09883127;0.005955549,0.2215826;-0.1744263;-0.04571477,-0.09584343;0.3627242;0.004704097,-0.1786273;0.09557325;0.01801627,-0.2387902;-0.1764304;-0.01017016,0.06827442;0.002809841;-0.04160177,0.0897846;-0.3724619;0.0141517,0.091943;-0.7129672;0.09509288,0.09610421;-0.7636015;0.0360946,-0.07284573;0.003711262;-0.03285916,-0.1015512;-0.3718052;0.01777058,-0.1161693;-0.7125049;0.09657446,-0.1204542;-0.7009664;-0.001613192,0.01704432;0.3989075;0.02333526,14.64352
+0;0;0,0.00535298;0.1993006;0.01583117,0.01356646;0.4989553;0.02633384,0.122358;0.3711302;-0.008770842,0.1875154;0.09927765;0.007063385,0.2351371;-0.1745135;-0.02715066,-0.1005616;0.3597669;0.003678458,-0.1804411;0.09158367;-0.006171557,-0.2390711;-0.1794317;-0.04507151,0.06949373;0.003615623;-0.0394658,0.08425883;-0.3733984;0.005727295,0.08113178;-0.7174103;0.07011694,0.07648469;-0.7047492;-0.02825872,-0.07146592;0.004149858;-0.03571275,-0.1003179;-0.3731763;-0.00117977,-0.1218613;-0.7171015;0.06006828,-0.1087253;-0.7619564;-0.004925564,0.01074763;0.3989996;0.02538211,0;0;0,0.008655027;0.1992799;0.01458151,0.0216781;0.4988171;0.02337584,0.1282851;0.3710386;-0.01312091,0.1898147;0.09853289;0.005713673,0.2212455;-0.1745796;-0.04740565,-0.09557678;0.3626429;0.004592853,-0.178208;0.09544191;0.01784868,-0.2388406;-0.1764551;-0.01035989,0.06821959;0.0028565;-0.04168847,0.09042655;-0.3724311;0.01368345,0.0930569;-0.7128271;0.09506924,0.09669612;-0.7633772;0.03592163,-0.0728692;0.003677327;-0.03281094,-0.1007547;-0.3719202;0.01767573,-0.1160308;-0.712383;0.09737317,-0.1203215;-0.7008418;-0.0008147284,0.01731232;0.398913;0.0230463,14.65505
+0;0;0,0.00535298;0.1993006;0.01583117,0.01356646;0.4989553;0.02633384,0.122358;0.3711302;-0.008770842,0.1875154;0.09927765;0.007063385,0.2351371;-0.1745135;-0.02715066,-0.1005616;0.3597669;0.003678458,-0.1804411;0.09158367;-0.006171557,-0.2390711;-0.1794317;-0.04507151,0.06949373;0.003615623;-0.0394658,0.08425883;-0.3733984;0.005727295,0.08113178;-0.7174103;0.07011694,0.07648469;-0.7047492;-0.02825872,-0.07146592;0.004149858;-0.03571275,-0.1003179;-0.3731763;-0.00117977,-0.1218613;-0.7171015;0.06006828,-0.1087253;-0.7619564;-0.004925564,0.01074763;0.3989996;0.02538211,0;0;0,0.008655027;0.1992799;0.01458151,0.0216781;0.4988171;0.02337584,0.1282851;0.3710386;-0.01312091,0.1898147;0.09853289;0.005713673,0.2212455;-0.1745796;-0.04740565,-0.09557678;0.3626429;0.004592853,-0.178208;0.09544191;0.01784868,-0.2388406;-0.1764551;-0.01035989,0.06821959;0.0028565;-0.04168847,0.09042655;-0.3724311;0.01368345,0.0930569;-0.7128271;0.09506924,0.09669612;-0.7633772;0.03592163,-0.0728692;0.003677327;-0.03281094,-0.1007547;-0.3719202;0.01767573,-0.1160308;-0.712383;0.09737317,-0.1203215;-0.7008418;-0.0008147284,0.01731232;0.398913;0.0230463,14.67698
+0;0;0,0.005307289;0.1993049;0.01579259,0.0135654;0.498959;0.02626712,0.1223888;0.3711504;-0.008646149,0.1879643;0.09940577;0.007313574,0.235972;-0.1743398;-0.02672505,-0.1005677;0.3596893;0.003673164,-0.1802307;0.09143081;-0.005876832,-0.2389329;-0.1796626;-0.0441182,0.06949454;0.003623028;-0.0394637,0.08459793;-0.3733498;0.005960699,0.08158398;-0.7174195;0.07004596,0.07696749;-0.704749;-0.02833278,-0.07150061;0.004131252;-0.0356454,-0.1001814;-0.3732267;-0.001317769,-0.1214996;-0.7170839;0.06038928,-0.1084583;-0.7619793;-0.004576936,0.01072128;0.3990039;0.0253324,0;0;0,0.008896463;0.1992763;0.01448494,0.02219247;0.4988042;0.0231949,0.1286495;0.3709433;-0.01342458,0.1900012;0.09835708;0.004816502,0.2214096;-0.1748181;-0.0479928,-0.09507937;0.3624339;0.004438393,-0.1775769;0.09519017;0.01766475,-0.2378886;-0.1767903;-0.01042667,0.06817261;0.002858502;-0.0417651,0.09017131;-0.3722749;0.01472366,0.09385412;-0.7128265;0.09541476,0.09810055;-0.7634083;0.03635088,-0.07287604;0.003682864;-0.03279511,-0.09983715;-0.37201;0.01748415,-0.1151949;-0.712512;0.09699833,-0.119521;-0.7009764;-0.001186967,0.01774597;0.3989036;0.0228884,14.68818
+0;0;0,0.005307289;0.1993049;0.01579259,0.0135654;0.498959;0.02626712,0.1223888;0.3711504;-0.008646149,0.1879643;0.09940577;0.007313574,0.235972;-0.1743398;-0.02672505,-0.1005677;0.3596893;0.003673164,-0.1802307;0.09143081;-0.005876832,-0.2389329;-0.1796626;-0.0441182,0.06949454;0.003623028;-0.0394637,0.08459793;-0.3733498;0.005960699,0.08158398;-0.7174195;0.07004596,0.07696749;-0.704749;-0.02833278,-0.07150061;0.004131252;-0.0356454,-0.1001814;-0.3732267;-0.001317769,-0.1214996;-0.7170839;0.06038928,-0.1084583;-0.7619793;-0.004576936,0.01072128;0.3990039;0.0253324,0;0;0,0.008896463;0.1992763;0.01448494,0.02219247;0.4988042;0.0231949,0.1286495;0.3709433;-0.01342458,0.1900012;0.09835708;0.004816502,0.2214096;-0.1748181;-0.0479928,-0.09507937;0.3624339;0.004438393,-0.1775769;0.09519017;0.01766475,-0.2378886;-0.1767903;-0.01042667,0.06817261;0.002858502;-0.0417651,0.09017131;-0.3722749;0.01472366,0.09385412;-0.7128265;0.09541476,0.09810055;-0.7634083;0.03635088,-0.07287604;0.003682864;-0.03279511,-0.09983715;-0.37201;0.01748415,-0.1151949;-0.712512;0.09699833,-0.119521;-0.7009764;-0.001186967,0.01774597;0.3989036;0.0228884,14.69934
+0;0;0,0.005307289;0.1993049;0.01579259,0.0135654;0.498959;0.02626712,0.1223888;0.3711504;-0.008646149,0.1879643;0.09940577;0.007313574,0.235972;-0.1743398;-0.02672505,-0.1005677;0.3596893;0.003673164,-0.1802307;0.09143081;-0.005876832,-0.2389329;-0.1796626;-0.0441182,0.06949454;0.003623028;-0.0394637,0.08459793;-0.3733498;0.005960699,0.08158398;-0.7174195;0.07004596,0.07696749;-0.704749;-0.02833278,-0.07150061;0.004131252;-0.0356454,-0.1001814;-0.3732267;-0.001317769,-0.1214996;-0.7170839;0.06038928,-0.1084583;-0.7619793;-0.004576936,0.01072128;0.3990039;0.0253324,0;0;0,0.009182336;0.1992726;0.01435715,0.02284066;0.498788;0.02294475,0.1291285;0.3709063;-0.01379465,0.1908539;0.09841806;0.004648354,0.2214387;-0.1746881;-0.04899504,-0.09459687;0.3623855;0.004629467,-0.1766169;0.0950045;0.01805026,-0.2362385;-0.1770968;-0.01034241,0.06813562;0.00292469;-0.04182084,0.09096186;-0.3722174;0.01428058,0.09506606;-0.7126884;0.09529072,0.09955619;-0.7629136;0.03576126,-0.07290466;0.00361309;-0.03273919,-0.09882097;-0.3721283;0.01772658,-0.1139928;-0.7126584;0.09715623,-0.1184604;-0.7011293;-0.001021512,0.01828222;0.3988923;0.0226728,14.72169
+0;0;0,0.005117279;0.1993212;0.01564828,0.01309308;0.4989925;0.02582411,0.1221087;0.3711448;-0.008601539,0.1880286;0.0994947;0.007547677,0.2368709;-0.1741173;-0.02637745,-0.1009833;0.3596946;0.003569931,-0.1806942;0.09142986;-0.005386287,-0.2391836;-0.1797221;-0.04353874,0.06953927;0.003614337;-0.0393856,0.0848279;-0.3734094;0.005551767,0.08191265;-0.7173874;0.07013181,0.07731761;-0.7047391;-0.02824404,-0.07148562;0.004138014;-0.03567468,-0.100108;-0.3732418;-0.0015391,-0.1213355;-0.7170781;0.0603157,-0.1080346;-0.7619715;-0.004600231,0.01033924;0.3990337;0.02501093,0;0;0,0.009182336;0.1992726;0.01435715,0.02284066;0.498788;0.02294475,0.1291285;0.3709063;-0.01379465,0.1908539;0.09841806;0.004648354,0.2214387;-0.1746881;-0.04899504,-0.09459687;0.3623855;0.004629467,-0.1766169;0.0950045;0.01805026,-0.2362385;-0.1770968;-0.01034241,0.06813562;0.00292469;-0.04182084,0.09096186;-0.3722174;0.01428058,0.09506606;-0.7126884;0.09529072,0.09955619;-0.7629136;0.03576126,-0.07290466;0.00361309;-0.03273919,-0.09882097;-0.3721283;0.01772658,-0.1139928;-0.7126584;0.09715623,-0.1184604;-0.7011293;-0.001021512,0.01828222;0.3988923;0.0226728,14.7441
+0;0;0,0.005117279;0.1993212;0.01564828,0.01309308;0.4989925;0.02582411,0.1221087;0.3711448;-0.008601539,0.1880286;0.0994947;0.007547677,0.2368709;-0.1741173;-0.02637745,-0.1009833;0.3596946;0.003569931,-0.1806942;0.09142986;-0.005386287,-0.2391836;-0.1797221;-0.04353874,0.06953927;0.003614337;-0.0393856,0.0848279;-0.3734094;0.005551767,0.08191265;-0.7173874;0.07013181,0.07731761;-0.7047391;-0.02824404,-0.07148562;0.004138014;-0.03567468,-0.100108;-0.3732418;-0.0015391,-0.1213355;-0.7170781;0.0603157,-0.1080346;-0.7619715;-0.004600231,0.01033924;0.3990337;0.02501093,0;0;0,0.009171831;0.1992811;0.01424456,0.02282078;0.4988022;0.0226456,0.1289124;0.3708363;-0.01456159,0.191144;0.09848079;0.004137902,0.2214168;-0.1745503;-0.05006164,-0.09465866;0.3624024;0.004665194,-0.1766247;0.09501782;0.01834187,-0.2363932;-0.177227;-0.008313516,0.06815895;0.002882418;-0.04178575,0.09126138;-0.3723075;0.0138809,0.09551523;-0.7128467;0.09459628,0.09981918;-0.763296;0.03535621,-0.07285345;0.003665969;-0.03284715,-0.09853581;-0.3721018;0.01754123,-0.1135996;-0.7126342;0.09698159,-0.1182883;-0.7011139;-0.00118418,0.01826413;0.3989062;0.02243907,14.76632
+0;0;0,0.005036054;0.199325;0.0156265,0.01291552;0.4989994;0.02578013,0.1219967;0.3713593;-0.008675415,0.1883143;0.09982002;0.007706448,0.2378167;-0.1736726;-0.02622469,-0.1010729;0.3596116;0.003384192,-0.1807617;0.09132716;-0.005170716,-0.239374;-0.1798231;-0.04314645,0.06948208;0.003619648;-0.03948592,0.0847715;-0.3733704;0.005732525,0.08185823;-0.7172971;0.07058555,0.07727898;-0.7046431;-0.02779204,-0.0715296;0.004134615;-0.03558681,-0.1005153;-0.3732422;-0.001726091,-0.1213477;-0.7170831;0.06023758,-0.1077846;-0.7616701;-0.004976068,0.01018825;0.3990397;0.02497977,0;0;0,0.009460079;0.1992761;0.01412656,0.02389935;0.4987772;0.02176167,0.1292432;0.3703354;-0.01582235,0.1925792;0.09828648;0.003618935,0.2218939;-0.1748103;-0.05077561,-0.09402117;0.3623401;0.004631193,-0.1759365;0.09495434;0.0185859,-0.2357181;-0.1773686;-0.007228334,0.06803575;0.002914486;-0.04198384,0.0913145;-0.372209;0.01405598,0.09580234;-0.7127513;0.09474581,0.09975887;-0.7633454;0.0356786,-0.07296959;0.003585523;-0.03259727,-0.09916651;-0.3720698;0.01836133,-0.1132695;-0.7127;0.09755836,-0.118203;-0.7011994;-0.0005916879,0.01896322;0.3988991;0.02189279,14.78871
+0;0;0,0.005036054;0.199325;0.0156265,0.01291552;0.4989994;0.02578013,0.1219967;0.3713593;-0.008675415,0.1883143;0.09982002;0.007706448,0.2378167;-0.1736726;-0.02622469,-0.1010729;0.3596116;0.003384192,-0.1807617;0.09132716;-0.005170716,-0.239374;-0.1798231;-0.04314645,0.06948208;0.003619648;-0.03948592,0.0847715;-0.3733704;0.005732525,0.08185823;-0.7172971;0.07058555,0.07727898;-0.7046431;-0.02779204,-0.0715296;0.004134615;-0.03558681,-0.1005153;-0.3732422;-0.001726091,-0.1213477;-0.7170831;0.06023758,-0.1077846;-0.7616701;-0.004976068,0.01018825;0.3990397;0.02497977,0;0;0,0.009460079;0.1992761;0.01412656,0.02389935;0.4987772;0.02176167,0.1292432;0.3703354;-0.01582235,0.1925792;0.09828648;0.003618935,0.2218939;-0.1748103;-0.05077561,-0.09402117;0.3623401;0.004631193,-0.1759365;0.09495434;0.0185859,-0.2357181;-0.1773686;-0.007228334,0.06803575;0.002914486;-0.04198384,0.0913145;-0.372209;0.01405598,0.09580234;-0.7127513;0.09474581,0.09975887;-0.7633454;0.0356786,-0.07296959;0.003585523;-0.03259727,-0.09916651;-0.3720698;0.01836133,-0.1132695;-0.7127;0.09755836,-0.118203;-0.7011994;-0.0005916879,0.01896322;0.3988991;0.02189279,14.79991
+0;0;0,0.005036054;0.199325;0.0156265,0.01291552;0.4989994;0.02578013,0.1219967;0.3713593;-0.008675415,0.1883143;0.09982002;0.007706448,0.2378167;-0.1736726;-0.02622469,-0.1010729;0.3596116;0.003384192,-0.1807617;0.09132716;-0.005170716,-0.239374;-0.1798231;-0.04314645,0.06948208;0.003619648;-0.03948592,0.0847715;-0.3733704;0.005732525,0.08185823;-0.7172971;0.07058555,0.07727898;-0.7046431;-0.02779204,-0.0715296;0.004134615;-0.03558681,-0.1005153;-0.3732422;-0.001726091,-0.1213477;-0.7170831;0.06023758,-0.1077846;-0.7616701;-0.004976068,0.01018825;0.3990397;0.02497977,0;0;0,0.009361772;0.1992882;0.01401961,0.02365143;0.4987997;0.02154476,0.1289482;0.3702196;-0.01623758,0.1925033;0.09822258;0.003213359,0.2217232;-0.1749502;-0.05084971,-0.09417985;0.3621908;0.004647017,-0.1760336;0.09481525;0.01914801,-0.2356961;-0.1775914;-0.006050689,0.068069;0.002916412;-0.04192976,0.0917473;-0.3721645;0.01422777,0.0962663;-0.7126833;0.09501459,0.1003055;-0.763317;0.03600702,-0.07298575;0.003590403;-0.03256053,-0.09857914;-0.3720751;0.01862981,-0.1126833;-0.7127169;0.0977762,-0.1177633;-0.7012248;-0.0003647879,0.01878094;0.3989185;0.02170397,14.82228
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,0.009361772;0.1992882;0.01401961,0.02365143;0.4987997;0.02154476,0.1289482;0.3702196;-0.01623758,0.1925033;0.09822258;0.003213359,0.2217232;-0.1749502;-0.05084971,-0.09417985;0.3621908;0.004647017,-0.1760336;0.09481525;0.01914801,-0.2356961;-0.1775914;-0.006050689,0.068069;0.002916412;-0.04192976,0.0917473;-0.3721645;0.01422777,0.0962663;-0.7126833;0.09501459,0.1003055;-0.763317;0.03600702,-0.07298575;0.003590403;-0.03256053,-0.09857914;-0.3720751;0.01862981,-0.1126833;-0.7127169;0.0977762,-0.1177633;-0.7012248;-0.0003647879,0.01878094;0.3989185;0.02170397,14.8334
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,0.009361772;0.1992882;0.01401961,0.02365143;0.4987997;0.02154476,0.1289482;0.3702196;-0.01623758,0.1925033;0.09822258;0.003213359,0.2217232;-0.1749502;-0.05084971,-0.09417985;0.3621908;0.004647017,-0.1760336;0.09481525;0.01914801,-0.2356961;-0.1775914;-0.006050689,0.068069;0.002916412;-0.04192976,0.0917473;-0.3721645;0.01422777,0.0962663;-0.7126833;0.09501459,0.1003055;-0.763317;0.03600702,-0.07298575;0.003590403;-0.03256053,-0.09857914;-0.3720751;0.01862981,-0.1126833;-0.7127169;0.0977762,-0.1177633;-0.7012248;-0.0003647879,0.01878094;0.3989185;0.02170397,14.84472
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,0.009261104;0.1992951;0.01398943,0.02321638;0.4988237;0.02146509,0.1286169;0.370199;-0.01638621,0.1922303;0.09821349;0.003036218,0.2211519;-0.1749826;-0.05106951,-0.09444839;0.3621;0.004647985,-0.1765377;0.09481853;0.0195463,-0.2362215;-0.1776455;-0.004973058,0.06806695;0.002998298;-0.04192732,0.09136505;-0.3721488;0.01394602,0.09621464;-0.7125603;0.09516495,0.1008317;-0.7640126;0.03733585,-0.07301146;0.003387227;-0.03252467,-0.09878783;-0.3723096;0.01834225,-0.1127736;-0.7129444;0.09754056,-0.1179032;-0.7014577;-0.0005968288,0.01848752;0.3989357;0.02163647,14.86708
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,0.009261104;0.1992951;0.01398943,0.02321638;0.4988237;0.02146509,0.1286169;0.370199;-0.01638621,0.1922303;0.09821349;0.003036218,0.2211519;-0.1749826;-0.05106951,-0.09444839;0.3621;0.004647985,-0.1765377;0.09481853;0.0195463,-0.2362215;-0.1776455;-0.004973058,0.06806695;0.002998298;-0.04192732,0.09136505;-0.3721488;0.01394602,0.09621464;-0.7125603;0.09516495,0.1008317;-0.7640126;0.03733585,-0.07301146;0.003387227;-0.03252467,-0.09878783;-0.3723096;0.01834225,-0.1127736;-0.7129444;0.09754056,-0.1179032;-0.7014577;-0.0005968288,0.01848752;0.3989357;0.02163647,14.87803
+0;0;0,0.004995752;0.199352;0.01529111,0.01293161;0.4990478;0.02467318,0.1220311;0.3712049;-0.009116206,0.189446;0.09997997;0.007980693,0.240183;-0.1732578;-0.02617852,-0.1014052;0.3600688;0.003467532,-0.18019;0.09150943;-0.004829118,-0.2391406;-0.1796332;-0.04233266,0.06944755;0.003651216;-0.03954372,0.0851037;-0.3732404;0.006364848,0.08215629;-0.7171826;0.07113455,0.07748605;-0.7045688;-0.02723164,-0.07159463;0.004120144;-0.03545748,-0.1008451;-0.373313;-0.002462622,-0.1212097;-0.7170349;0.06031075,-0.107157;-0.7619726;-0.004395302,0.01016693;0.3990873;0.02418505,0;0;0,0.009245888;0.1993028;0.01388858,0.0231305;0.498839;0.02118487,0.1284122;0.3700082;-0.01687455,0.1926326;0.0981904;0.002895491,0.2208036;-0.1750564;-0.05134991,-0.09448396;0.3619789;0.004584251,-0.1767008;0.09475639;0.0198328,-0.2369391;-0.1776785;-0.003631465,0.06802523;0.003050058;-0.04199125,0.09152615;-0.3720903;0.01384278,0.09627884;-0.7124864;0.0951314,0.1007139;-0.7635802;0.03678642,-0.07304677;0.003335731;-0.03245061,-0.09903748;-0.3723123;0.01866708,-0.1126299;-0.7130334;0.09756159,-0.1178787;-0.7015564;-0.0005676672,0.01843071;0.3989498;0.02141971,14.88938
+0;0;0,0.004995752;0.199352;0.01529111,0.01293161;0.4990478;0.02467318,0.1220311;0.3712049;-0.009116206,0.189446;0.09997997;0.007980693,0.240183;-0.1732578;-0.02617852,-0.1014052;0.3600688;0.003467532,-0.18019;0.09150943;-0.004829118,-0.2391406;-0.1796332;-0.04233266,0.06944755;0.003651216;-0.03954372,0.0851037;-0.3732404;0.006364848,0.08215629;-0.7171826;0.07113455,0.07748605;-0.7045688;-0.02723164,-0.07159463;0.004120144;-0.03545748,-0.1008451;-0.373313;-0.002462622,-0.1212097;-0.7170349;0.06031075,-0.107157;-0.7619726;-0.004395302,0.01016693;0.3990873;0.02418505,0;0;0,0.009213173;0.1993071;0.0138493,0.02297573;0.4988522;0.02100495,0.1283376;0.3699797;-0.01688048,0.1924566;0.09812784;0.002748417,0.2205336;-0.1751295;-0.05149268,-0.09458733;0.3619496;0.004520733,-0.1774065;0.09495172;0.02042966,-0.2392698;-0.1772915;-0.0009370707,0.06801774;0.003060255;-0.04200263,0.0914661;-0.3720868;0.01380808,0.09597445;-0.7126232;0.09452119,0.1002857;-0.7633383;0.03564422,-0.07306595;0.003319438;-0.03240907,-0.09945163;-0.372214;0.01934446,-0.112682;-0.7130902;0.09762837,-0.1179051;-0.701617;-0.0005015209,0.01832383;0.3989608;0.02129096,14.91151
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,0.009213173;0.1993071;0.0138493,0.02297573;0.4988522;0.02100495,0.1283376;0.3699797;-0.01688048,0.1924566;0.09812784;0.002748417,0.2205336;-0.1751295;-0.05149268,-0.09458733;0.3619496;0.004520733,-0.1774065;0.09495172;0.02042966,-0.2392698;-0.1772915;-0.0009370707,0.06801774;0.003060255;-0.04200263,0.0914661;-0.3720868;0.01380808,0.09597445;-0.7126232;0.09452119,0.1002857;-0.7633383;0.03564422,-0.07306595;0.003319438;-0.03240907,-0.09945163;-0.372214;0.01934446,-0.112682;-0.7130902;0.09762837,-0.1179051;-0.701617;-0.0005015209,0.01832383;0.3989608;0.02129096,14.92287
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,0.009213173;0.1993071;0.0138493,0.02297573;0.4988522;0.02100495,0.1283376;0.3699797;-0.01688048,0.1924566;0.09812784;0.002748417,0.2205336;-0.1751295;-0.05149268,-0.09458733;0.3619496;0.004520733,-0.1774065;0.09495172;0.02042966,-0.2392698;-0.1772915;-0.0009370707,0.06801774;0.003060255;-0.04200263,0.0914661;-0.3720868;0.01380808,0.09597445;-0.7126232;0.09452119,0.1002857;-0.7633383;0.03564422,-0.07306595;0.003319438;-0.03240907,-0.09945163;-0.372214;0.01934446,-0.112682;-0.7130902;0.09762837,-0.1179051;-0.701617;-0.0005015209,0.01832383;0.3989608;0.02129096,14.93396
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,0.00907732;0.1993176;0.01378808,0.02246066;0.4988841;0.0207575,0.1279536;0.3700285;-0.01712421,0.1923096;0.09824285;0.002646158,0.2203247;-0.175074;-0.0513268,-0.09505187;0.3621555;0.004585272,-0.1783399;0.09532583;0.02086582,-0.2433774;-0.1762653;0.0006568599,0.06800507;0.003075639;-0.04202203,0.0914126;-0.3720717;0.01380393,0.09597986;-0.7125783;0.09463979,0.1004761;-0.7632778;0.03575527,-0.0730814;0.003305568;-0.03237562,-0.09922202;-0.372317;0.01885327,-0.1128313;-0.7130992;0.09748046,-0.1181428;-0.7016363;-0.0006427541,0.01795471;0.3989863;0.02110794,14.95619
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,0.00907732;0.1993176;0.01378808,0.02246066;0.4988841;0.0207575,0.1279536;0.3700285;-0.01712421,0.1923096;0.09824285;0.002646158,0.2203247;-0.175074;-0.0513268,-0.09505187;0.3621555;0.004585272,-0.1783399;0.09532583;0.02086582,-0.2433774;-0.1762653;0.0006568599,0.06800507;0.003075639;-0.04202203,0.0914126;-0.3720717;0.01380393,0.09597986;-0.7125783;0.09463979,0.1004761;-0.7632778;0.03575527,-0.0730814;0.003305568;-0.03237562,-0.09922202;-0.372317;0.01885327,-0.1128313;-0.7130992;0.09748046,-0.1181428;-0.7016363;-0.0006427541,0.01795471;0.3989863;0.02110794,14.96754
+0;0;0,0.004938224;0.1993628;0.01516916,0.0127529;0.4990689;0.02430577,0.1218578;0.3712966;-0.009562435,0.1899926;0.1002822;0.008012356,0.2417727;-0.1726864;-0.0267291,-0.101372;0.3596638;0.003065869,-0.1802685;0.09111643;-0.004526479,-0.2393435;-0.1799616;-0.04230014,0.0694407;0.003698696;-0.03955134,0.08531547;-0.3731939;0.006273709,0.08258938;-0.7171464;0.07099809,0.07789758;-0.7045486;-0.02736426,-0.07161804;0.004047961;-0.0354185,-0.1003311;-0.3733954;-0.002070848,-0.1211654;-0.7171319;0.06046878,-0.1233686;-0.7045631;-0.03797561,0.010027;0.3991068;0.02391089,0;0;0,0.009028169;0.1993264;0.01369301,0.02225458;0.4989077;0.0202874,0.127676;0.3697013;-0.01755192,0.1926455;0.09808657;0.002557244,0.2207355;-0.1752377;-0.05133895,-0.09511854;0.3617692;0.004600821,-0.1795978;0.09533942;0.02128757,-0.2482189;-0.1754181;0.001755157,0.06799486;0.003097709;-0.04203692,0.09133446;-0.3720553;0.01377944,0.0957279;-0.7125157;0.09481907,0.1009104;-0.763797;0.03679752,-0.07312078;0.003261986;-0.03229104,-0.09891182;-0.3723738;0.01901752,-0.1128688;-0.7132248;0.097285,-0.1183015;-0.7017768;-0.0008287504,0.0178041;0.399008;0.02077937,14.99
+0;0;0,0.004938224;0.1993628;0.01516916,0.0127529;0.4990689;0.02430577,0.1218578;0.3712966;-0.009562435,0.1899926;0.1002822;0.008012356,0.2417727;-0.1726864;-0.0267291,-0.101372;0.3596638;0.003065869,-0.1802685;0.09111643;-0.004526479,-0.2393435;-0.1799616;-0.04230014,0.0694407;0.003698696;-0.03955134,0.08531547;-0.3731939;0.006273709,0.08258938;-0.7171464;0.07099809,0.07789758;-0.7045486;-0.02736426,-0.07161804;0.004047961;-0.0354185,-0.1003311;-0.3733954;-0.002070848,-0.1211654;-0.7171319;0.06046878,-0.1233686;-0.7045631;-0.03797561,0.010027;0.3991068;0.02391089,0;0;0,0.009028169;0.1993264;0.01369301,0.02225458;0.4989077;0.0202874,0.127676;0.3697013;-0.01755192,0.1926455;0.09808657;0.002557244,0.2207355;-0.1752377;-0.05133895,-0.09511854;0.3617692;0.004600821,-0.1795978;0.09533942;0.02128757,-0.2482189;-0.1754181;0.001755157,0.06799486;0.003097709;-0.04203692,0.09133446;-0.3720553;0.01377944,0.0957279;-0.7125157;0.09481907,0.1009104;-0.763797;0.03679752,-0.07312078;0.003261986;-0.03229104,-0.09891182;-0.3723738;0.01901752,-0.1128688;-0.7132248;0.097285,-0.1183015;-0.7017768;-0.0008287504,0.0178041;0.399008;0.02077937,15.01203
+0;0;0,0.004938224;0.1993628;0.01516916,0.0127529;0.4990689;0.02430577,0.1218578;0.3712966;-0.009562435,0.1899926;0.1002822;0.008012356,0.2417727;-0.1726864;-0.0267291,-0.101372;0.3596638;0.003065869,-0.1802685;0.09111643;-0.004526479,-0.2393435;-0.1799616;-0.04230014,0.0694407;0.003698696;-0.03955134,0.08531547;-0.3731939;0.006273709,0.08258938;-0.7171464;0.07099809,0.07789758;-0.7045486;-0.02736426,-0.07161804;0.004047961;-0.0354185,-0.1003311;-0.3733954;-0.002070848,-0.1211654;-0.7171319;0.06046878,-0.1233686;-0.7045631;-0.03797561,0.010027;0.3991068;0.02391089,0;0;0,0.00920941;0.1993326;0.0134794,0.02305004;0.4988962;0.01958017,0.1282063;0.3696086;-0.01812275,0.1934113;0.0980601;0.002119306,0.2215562;-0.1752879;-0.05162772,-0.09470966;0.3620007;0.004665585,-0.1814646;0.09639862;0.02280636,-0.2550255;-0.1731265;0.004231835,0.06793359;0.003303034;-0.04212028,0.0910614;-0.3718487;0.01379291,0.09539898;-0.7123244;0.09477095,0.101346;-0.7635038;0.0366801,-0.07316514;0.002895314;-0.03222544,-0.09891011;-0.3727019;0.01938768,-0.1134027;-0.7136321;0.09721167,-0.1189081;-0.7022032;-0.0008944273,0.0183729;0.3990079;0.02024772,15.02329
+0;0;0,0.004925203;0.1993648;0.0151471,0.01273959;0.4990716;0.02426141,0.1218026;0.37116;-0.009616584,0.190302;0.1002377;0.007959222,0.2425951;-0.1725351;-0.02754358,-0.1013749;0.3596648;0.002963798,-0.1802575;0.09110916;-0.004478631,-0.2394226;-0.1799494;-0.04225115,0.06944261;0.003722581;-0.03954574,0.08527287;-0.3731753;0.006252121,0.08262777;-0.717113;0.07105818,0.07795382;-0.7045168;-0.02730472,-0.07162968;0.004010485;-0.03539921,-0.09991182;-0.3734427;-0.00179597,-0.121048;-0.7172055;0.0604971,-0.1091493;-0.7644629;-0.001870509,0.01001143;0.3991096;0.02387311,0;0;0,0.00908349;0.199344;0.01339676,0.02240831;0.4989353;0.01927974,0.1279326;0.3698559;-0.01806378,0.1931325;0.0983012;0.002110679,0.2213344;-0.1750584;-0.05154729,-0.09520333;0.3621284;0.004667143,-0.1835774;0.09712139;0.023675,-0.2634075;-0.1706484;0.00560556,0.0679037;0.003347837;-0.04216492,0.09094444;-0.3718281;0.01362121,0.09535863;-0.712272;0.09472902,0.1014702;-0.7634813;0.03669698,-0.07322045;0.002754594;-0.03211194,-0.09895425;-0.3728972;0.01910784,-0.1134271;-0.7137923;0.0970892,-0.11894;-0.7023704;-0.001015149,0.01794223;0.3990378;0.02002215,15.04554
+0;0;0,0.004925203;0.1993648;0.0151471,0.01273959;0.4990716;0.02426141,0.1218026;0.37116;-0.009616584,0.190302;0.1002377;0.007959222,0.2425951;-0.1725351;-0.02754358,-0.1013749;0.3596648;0.002963798,-0.1802575;0.09110916;-0.004478631,-0.2394226;-0.1799494;-0.04225115,0.06944261;0.003722581;-0.03954574,0.08527287;-0.3731753;0.006252121,0.08262777;-0.717113;0.07105818,0.07795382;-0.7045168;-0.02730472,-0.07162968;0.004010485;-0.03539921,-0.09991182;-0.3734427;-0.00179597,-0.121048;-0.7172055;0.0604971,-0.1091493;-0.7644629;-0.001870509,0.01001143;0.3991096;0.02387311,0;0;0,0.00908349;0.199344;0.01339676,0.02240831;0.4989353;0.01927974,0.1279326;0.3698559;-0.01806378,0.1931325;0.0983012;0.002110679,0.2213344;-0.1750584;-0.05154729,-0.09520333;0.3621284;0.004667143,-0.1835774;0.09712139;0.023675,-0.2634075;-0.1706484;0.00560556,0.0679037;0.003347837;-0.04216492,0.09094444;-0.3718281;0.01362121,0.09535863;-0.712272;0.09472902,0.1014702;-0.7634813;0.03669698,-0.07322045;0.002754594;-0.03211194,-0.09895425;-0.3728972;0.01910784,-0.1134271;-0.7137923;0.0970892,-0.11894;-0.7023704;-0.001015149,0.01794223;0.3990378;0.02002215,15.0572
+0;0;0,0.004928182;0.199369;0.01509061,0.01280991;0.4990797;0.02399329,0.1218205;0.3712102;-0.009909984,0.1909368;0.100453;0.00779523,0.2437461;-0.1721512;-0.02823403,-0.1013327;0.3596548;0.002817422,-0.1802778;0.09111264;-0.004445432,-0.2395226;-0.1799254;-0.04224012,0.06943931;0.003746459;-0.03954928,0.08526368;-0.3731605;0.00617573,0.0825926;-0.7170947;0.07099977,0.07788363;-0.7045048;-0.02736034,-0.07163491;0.003987172;-0.03539126,-0.0998098;-0.3734658;-0.001695145,-0.1211275;-0.7172372;0.06048836,-0.1080301;-0.7634078;-0.002966449,0.01005324;0.3991181;0.02369398,0;0;0,0.00908349;0.199344;0.01339676,0.02240831;0.4989353;0.01927974,0.1279326;0.3698559;-0.01806378,0.1931325;0.0983012;0.002110679,0.2213344;-0.1750584;-0.05154729,-0.09520333;0.3621284;0.004667143,-0.1835774;0.09712139;0.023675,-0.2634075;-0.1706484;0.00560556,0.0679037;0.003347837;-0.04216492,0.09094444;-0.3718281;0.01362121,0.09535863;-0.712272;0.09472902,0.1014702;-0.7634813;0.03669698,-0.07322045;0.002754594;-0.03211194,-0.09895425;-0.3728972;0.01910784,-0.1134271;-0.7137923;0.0970892,-0.11894;-0.7023704;-0.001015149,0.01794223;0.3990378;0.02002215,15.06859
+0;0;0,0.004928182;0.199369;0.01509061,0.01280991;0.4990797;0.02399329,0.1218205;0.3712102;-0.009909984,0.1909368;0.100453;0.00779523,0.2437461;-0.1721512;-0.02823403,-0.1013327;0.3596548;0.002817422,-0.1802778;0.09111264;-0.004445432,-0.2395226;-0.1799254;-0.04224012,0.06943931;0.003746459;-0.03954928,0.08526368;-0.3731605;0.00617573,0.0825926;-0.7170947;0.07099977,0.07788363;-0.7045048;-0.02736034,-0.07163491;0.003987172;-0.03539126,-0.0998098;-0.3734658;-0.001695145,-0.1211275;-0.7172372;0.06048836,-0.1080301;-0.7634078;-0.002966449,0.01005324;0.3991181;0.02369398,0;0;0,0.009269136;0.1993446;0.01326006,0.02369301;0.4988951;0.01850631,0.1287383;0.3696742;-0.01852691,0.194004;0.09814441;0.001770671,0.2224665;-0.1752771;-0.0514323,-0.09460314;0.3624036;0.005168635,-0.1847674;0.09801108;0.02432603,-0.2711941;-0.1677554;0.007046245,0.06788816;0.003383951;-0.04218703,0.09095425;-0.3717907;0.01359756,0.0953664;-0.7122316;0.09471814,0.100901;-0.7627222;0.03563659,-0.07326004;0.00268823;-0.03202717,-0.09920819;-0.372995;0.01885339,-0.1136539;-0.7139062;0.09676893,-0.1193348;-0.7024925;-0.001324281,0.01877134;0.3990213;0.01949948,15.08004
+0;0;0,0.004928182;0.199369;0.01509061,0.01280991;0.4990797;0.02399329,0.1218205;0.3712102;-0.009909984,0.1909368;0.100453;0.00779523,0.2437461;-0.1721512;-0.02823403,-0.1013327;0.3596548;0.002817422,-0.1802778;0.09111264;-0.004445432,-0.2395226;-0.1799254;-0.04224012,0.06943931;0.003746459;-0.03954928,0.08526368;-0.3731605;0.00617573,0.0825926;-0.7170947;0.07099977,0.07788363;-0.7045048;-0.02736034,-0.07163491;0.003987172;-0.03539126,-0.0998098;-0.3734658;-0.001695145,-0.1211275;-0.7172372;0.06048836,-0.1080301;-0.7634078;-0.002966449,0.01005324;0.3991181;0.02369398,0;0;0,0.009269136;0.1993446;0.01326006,0.02369301;0.4988951;0.01850631,0.1287383;0.3696742;-0.01852691,0.194004;0.09814441;0.001770671,0.2224665;-0.1752771;-0.0514323,-0.09460314;0.3624036;0.005168635,-0.1847674;0.09801108;0.02432603,-0.2711941;-0.1677554;0.007046245,0.06788816;0.003383951;-0.04218703,0.09095425;-0.3717907;0.01359756,0.0953664;-0.7122316;0.09471814,0.100901;-0.7627222;0.03563659,-0.07326004;0.00268823;-0.03202717,-0.09920819;-0.372995;0.01885339,-0.1136539;-0.7139062;0.09676893,-0.1193348;-0.7024925;-0.001324281,0.01877134;0.3990213;0.01949948,15.09177
+0;0;0,0.004905348;0.1993735;0.01503831,0.0127295;0.4990902;0.02377783,0.1216841;0.3712421;-0.0103292,0.1913548;0.1006391;0.00755877,0.2444688;-0.1718902;-0.02858945,-0.1017127;0.3602894;0.003201235,-0.1798142;0.09150586;-0.004253537,-0.2389331;-0.1795374;-0.04220808,0.06942564;0.003829742;-0.0395653,0.08548913;-0.373103;0.00586224,0.08233017;-0.716935;0.07120416,0.077425;-0.704344;-0.02714658,-0.0716394;0.003946616;-0.03538673,-0.09968048;-0.3735063;-0.00157889,-0.121095;-0.7172899;0.06050348,-0.1074034;-0.7628675;-0.00353232,0.0099917;0.3991279;0.02354086,0;0;0,0.009269136;0.1993446;0.01326006,0.02369301;0.4988951;0.01850631,0.1287383;0.3696742;-0.01852691,0.194004;0.09814441;0.001770671,0.2224665;-0.1752771;-0.0514323,-0.09460314;0.3624036;0.005168635,-0.1847674;0.09801108;0.02432603,-0.2711941;-0.1677554;0.007046245,0.06788816;0.003383951;-0.04218703,0.09095425;-0.3717907;0.01359756,0.0953664;-0.7122316;0.09471814,0.100901;-0.7627222;0.03563659,-0.07326004;0.00268823;-0.03202717,-0.09920819;-0.372995;0.01885339,-0.1136539;-0.7139062;0.09676893,-0.1193348;-0.7024925;-0.001324281,0.01877134;0.3990213;0.01949948,15.10321
+0;0;0,0.004905348;0.1993735;0.01503831,0.0127295;0.4990902;0.02377783,0.1216841;0.3712421;-0.0103292,0.1913548;0.1006391;0.00755877,0.2444688;-0.1718902;-0.02858945,-0.1017127;0.3602894;0.003201235,-0.1798142;0.09150586;-0.004253537,-0.2389331;-0.1795374;-0.04220808,0.06942564;0.003829742;-0.0395653,0.08548913;-0.373103;0.00586224,0.08233017;-0.716935;0.07120416,0.077425;-0.704344;-0.02714658,-0.0716394;0.003946616;-0.03538673,-0.09968048;-0.3735063;-0.00157889,-0.121095;-0.7172899;0.06050348,-0.1074034;-0.7628675;-0.00353232,0.0099917;0.3991279;0.02354086,0;0;0,0.009528098;0.1993462;0.01304974,0.02456144;0.4988739;0.01789047,0.1293111;0.3693101;-0.01901302,0.1946396;0.0978055;0.001417747,0.2238328;-0.1756324;-0.05130318,-0.09390575;0.3621208;0.005154898,-0.1881658;0.09924787;0.02547422,-0.279891;-0.1645851;0.006014595,0.06784861;0.003538076;-0.04223799,0.09052058;-0.3716415;0.01367464,0.09498952;-0.7120988;0.09472317,0.100534;-0.7625736;0.03562087,-0.0733401;0.002532233;-0.0318562,-0.0995552;-0.373166;0.01877596,-0.1137678;-0.71412;0.09654711,-0.1194954;-0.7027211;-0.001540586,0.01943902;0.3990115;0.0190127,15.1145
+0;0;0,0.004905348;0.1993735;0.01503831,0.0127295;0.4990902;0.02377783,0.1216841;0.3712421;-0.0103292,0.1913548;0.1006391;0.00755877,0.2444688;-0.1718902;-0.02858945,-0.1017127;0.3602894;0.003201235,-0.1798142;0.09150586;-0.004253537,-0.2389331;-0.1795374;-0.04220808,0.06942564;0.003829742;-0.0395653,0.08548913;-0.373103;0.00586224,0.08233017;-0.716935;0.07120416,0.077425;-0.704344;-0.02714658,-0.0716394;0.003946616;-0.03538673,-0.09968048;-0.3735063;-0.00157889,-0.121095;-0.7172899;0.06050348,-0.1074034;-0.7628675;-0.00353232,0.0099917;0.3991279;0.02354086,0;0;0,0.009528098;0.1993462;0.01304974,0.02456144;0.4988739;0.01789047,0.1293111;0.3693101;-0.01901302,0.1946396;0.0978055;0.001417747,0.2238328;-0.1756324;-0.05130318,-0.09390575;0.3621208;0.005154898,-0.1881658;0.09924787;0.02547422,-0.279891;-0.1645851;0.006014595,0.06784861;0.003538076;-0.04223799,0.09052058;-0.3716415;0.01367464,0.09498952;-0.7120988;0.09472317,0.100534;-0.7625736;0.03562087,-0.0733401;0.002532233;-0.0318562,-0.0995552;-0.373166;0.01877596,-0.1137678;-0.71412;0.09654711,-0.1194954;-0.7027211;-0.001540586,0.01943902;0.3990115;0.0190127,15.12623
+0;0;0,0.004923319;0.1993817;0.01492297,0.01285501;0.4991028;0.02339371,0.1217584;0.3712128;-0.01058964,0.1923841;0.1008576;0.007300477,0.2454919;-0.1715374;-0.02985518,-0.1018086;0.3606189;0.003278974,-0.1796003;0.0917469;-0.00422522,-0.2385775;-0.1793052;-0.04233608,0.0694438;0.00384816;-0.03953164,0.08551388;-0.3731029;0.005741514,0.08216601;-0.7169179;0.07116342,0.07718293;-0.704336;-0.02718179,-0.0716277;0.003923858;-0.03541292,-0.1004169;-0.3734009;-0.0008121468,-0.1209397;-0.7172918;0.06097707,-0.1076634;-0.7630357;-0.002949417,0.01006998;0.3991417;0.02325825,0;0;0,0.009528098;0.1993462;0.01304974,0.02456144;0.4988739;0.01789047,0.1293111;0.3693101;-0.01901302,0.1946396;0.0978055;0.001417747,0.2238328;-0.1756324;-0.05130318,-0.09390575;0.3621208;0.005154898,-0.1881658;0.09924787;0.02547422,-0.279891;-0.1645851;0.006014595,0.06784861;0.003538076;-0.04223799,0.09052058;-0.3716415;0.01367464,0.09498952;-0.7120988;0.09472317,0.100534;-0.7625736;0.03562087,-0.0733401;0.002532233;-0.0318562,-0.0995552;-0.373166;0.01877596,-0.1137678;-0.71412;0.09654711,-0.1194954;-0.7027211;-0.001540586,0.01943902;0.3990115;0.0190127,15.13758
+0;0;0,0.004923319;0.1993817;0.01492297,0.01285501;0.4991028;0.02339371,0.1217584;0.3712128;-0.01058964,0.1923841;0.1008576;0.007300477,0.2454919;-0.1715374;-0.02985518,-0.1018086;0.3606189;0.003278974,-0.1796003;0.0917469;-0.00422522,-0.2385775;-0.1793052;-0.04233608,0.0694438;0.00384816;-0.03953164,0.08551388;-0.3731029;0.005741514,0.08216601;-0.7169179;0.07116342,0.07718293;-0.704336;-0.02718179,-0.0716277;0.003923858;-0.03541292,-0.1004169;-0.3734009;-0.0008121468,-0.1209397;-0.7172918;0.06097707,-0.1076634;-0.7630357;-0.002949417,0.01006998;0.3991417;0.02325825,0;0;0,0.009495015;0.1993497;0.01301988,0.0243163;0.4988889;0.01782848,0.1291033;0.369374;-0.01928278,0.1946612;0.09794527;0.001419598,0.2244631;-0.1754446;-0.0512095,-0.09410946;0.3620922;0.005657495,-0.1904227;0.09998533;0.02624219,-0.2865406;-0.1621695;0.005356407,0.06784791;0.003568396;-0.04223657,0.09051851;-0.3715988;0.01376013,0.09495919;-0.7120755;0.09472878,0.1004585;-0.762703;0.03583089,-0.07334638;0.002526228;-0.03184219,-0.09982313;-0.3730842;0.0193029,-0.1139195;-0.7141698;0.09651613,-0.1198649;-0.7027665;-0.001559414,0.01928994;0.3990216;0.01895402,15.14888
+0;0;0,0.004923319;0.1993817;0.01492297,0.01285501;0.4991028;0.02339371,0.1217584;0.3712128;-0.01058964,0.1923841;0.1008576;0.007300477,0.2454919;-0.1715374;-0.02985518,-0.1018086;0.3606189;0.003278974,-0.1796003;0.0917469;-0.00422522,-0.2385775;-0.1793052;-0.04233608,0.0694438;0.00384816;-0.03953164,0.08551388;-0.3731029;0.005741514,0.08216601;-0.7169179;0.07116342,0.07718293;-0.704336;-0.02718179,-0.0716277;0.003923858;-0.03541292,-0.1004169;-0.3734009;-0.0008121468,-0.1209397;-0.7172918;0.06097707,-0.1076634;-0.7630357;-0.002949417,0.01006998;0.3991417;0.02325825,0;0;0,0.009495015;0.1993497;0.01301988,0.0243163;0.4988889;0.01782848,0.1291033;0.369374;-0.01928278,0.1946612;0.09794527;0.001419598,0.2244631;-0.1754446;-0.0512095,-0.09410946;0.3620922;0.005657495,-0.1904227;0.09998533;0.02624219,-0.2865406;-0.1621695;0.005356407,0.06784791;0.003568396;-0.04223657,0.09051851;-0.3715988;0.01376013,0.09495919;-0.7120755;0.09472878,0.1004585;-0.762703;0.03583089,-0.07334638;0.002526228;-0.03184219,-0.09982313;-0.3730842;0.0193029,-0.1139195;-0.7141698;0.09651613,-0.1198649;-0.7027665;-0.001559414,0.01928994;0.3990216;0.01895402,15.16073
+0;0;0,0.00494555;0.1993864;0.01485232,0.01303932;0.4991075;0.02314905,0.1219165;0.371508;-0.01086905,0.192851;0.101252;0.007296938,0.2463393;-0.1710372;-0.03008691,-0.1017044;0.3606142;0.003206426,-0.1793975;0.09170881;-0.004119829,-0.2383176;-0.1793619;-0.04218699,0.06943958;0.003903443;-0.03953361,0.08548098;-0.3730563;0.005677547,0.08222897;-0.7168674;0.07112421,0.07719047;-0.7042925;-0.02721694,-0.07164259;0.0038614;-0.03538966,-0.1002596;-0.3734584;-0.0005926751,-0.1210271;-0.7173911;0.06088089,-0.1092054;-0.7648323;-0.00127317,0.01018839;0.3991482;0.02308461,0;0;0,0.009495015;0.1993497;0.01301988,0.0243163;0.4988889;0.01782848,0.1291033;0.369374;-0.01928278,0.1946612;0.09794527;0.001419598,0.2244631;-0.1754446;-0.0512095,-0.09410946;0.3620922;0.005657495,-0.1904227;0.09998533;0.02624219,-0.2865406;-0.1621695;0.005356407,0.06784791;0.003568396;-0.04223657,0.09051851;-0.3715988;0.01376013,0.09495919;-0.7120755;0.09472878,0.1004585;-0.762703;0.03583089,-0.07334638;0.002526228;-0.03184219,-0.09982313;-0.3730842;0.0193029,-0.1139195;-0.7141698;0.09651613,-0.1198649;-0.7027665;-0.001559414,0.01928994;0.3990216;0.01895402,15.1721
+0;0;0,0.00494555;0.1993864;0.01485232,0.01303932;0.4991075;0.02314905,0.1219165;0.371508;-0.01086905,0.192851;0.101252;0.007296938,0.2463393;-0.1710372;-0.03008691,-0.1017044;0.3606142;0.003206426,-0.1793975;0.09170881;-0.004119829,-0.2383176;-0.1793619;-0.04218699,0.06943958;0.003903443;-0.03953361,0.08548098;-0.3730563;0.005677547,0.08222897;-0.7168674;0.07112421,0.07719047;-0.7042925;-0.02721694,-0.07164259;0.0038614;-0.03538966,-0.1002596;-0.3734584;-0.0005926751,-0.1210271;-0.7173911;0.06088089,-0.1092054;-0.7648323;-0.00127317,0.01018839;0.3991482;0.02308461,0;0;0,0.009449083;0.1993544;0.01298201,0.02405765;0.4989047;0.01776516,0.1289051;0.3694898;-0.0195162,0.1946738;0.09813523;0.001487643,0.2251288;-0.1752319;-0.05088527,-0.09415025;0.3616353;0.005834412,-0.1925703;0.1003491;0.02688281,-0.2942452;-0.1595978;0.004751697,0.06783875;0.003602222;-0.04224841,0.09046984;-0.3715559;0.01382485,0.09497771;-0.7120303;0.09479916,0.0999805;-0.7624074;0.03551602,-0.07336111;0.002465523;-0.03181303,-0.09983695;-0.3731493;0.01929958,-0.1137495;-0.714317;0.09618308,-0.1198387;-0.7029065;-0.001885019,0.01912341;0.3990329;0.01889187,15.19476
+0;0;0,0.00494555;0.1993864;0.01485232,0.01303932;0.4991075;0.02314905,0.1219165;0.371508;-0.01086905,0.192851;0.101252;0.007296938,0.2463393;-0.1710372;-0.03008691,-0.1017044;0.3606142;0.003206426,-0.1793975;0.09170881;-0.004119829,-0.2383176;-0.1793619;-0.04218699,0.06943958;0.003903443;-0.03953361,0.08548098;-0.3730563;0.005677547,0.08222897;-0.7168674;0.07112421,0.07719047;-0.7042925;-0.02721694,-0.07164259;0.0038614;-0.03538966,-0.1002596;-0.3734584;-0.0005926751,-0.1210271;-0.7173911;0.06088089,-0.1092054;-0.7648323;-0.00127317,0.01018839;0.3991482;0.02308461,0;0;0,0.009449083;0.1993544;0.01298201,0.02405765;0.4989047;0.01776516,0.1289051;0.3694898;-0.0195162,0.1946738;0.09813523;0.001487643,0.2251288;-0.1752319;-0.05088527,-0.09415025;0.3616353;0.005834412,-0.1925703;0.1003491;0.02688281,-0.2942452;-0.1595978;0.004751697,0.06783875;0.003602222;-0.04224841,0.09046984;-0.3715559;0.01382485,0.09497771;-0.7120303;0.09479916,0.0999805;-0.7624074;0.03551602,-0.07336111;0.002465523;-0.03181303,-0.09983695;-0.3731493;0.01929958,-0.1137495;-0.714317;0.09618308,-0.1198387;-0.7029065;-0.001885019,0.01912341;0.3990329;0.01889187,15.20628
+0;0;0,0.005013051;0.1993857;0.01483892,0.01327523;0.4991027;0.02311536,0.1220584;0.3713843;-0.0108767,0.1945223;0.1015194;0.007065292,0.2467648;-0.1710348;-0.03014964,-0.1016752;0.3609162;0.003363019,-0.1787154;0.09182417;-0.004005681,-0.2376766;-0.179232;-0.04211265,0.06936935;0.003975967;-0.03964954,0.08598347;-0.3730071;0.005158424,0.08251326;-0.7167424;0.07099155,0.07745117;-0.7041659;-0.02734867,-0.07168172;0.003809693;-0.03531595,-0.101218;-0.373409;-0.000192076,-0.1210048;-0.7174331;0.06109311,-0.1090015;-0.7642255;-0.001826301,0.01035445;0.3991454;0.02305781,0;0;0,0.009342063;0.1993638;0.01291515,0.0236845;0.4989279;0.01763283,0.1287075;0.3696251;-0.01959766,0.1945909;0.09830198;0.001453357,0.2260706;-0.1749415;-0.05095853,-0.09441863;0.3617236;0.005777691,-0.1955244;0.1014962;0.02721018,-0.3023458;-0.1563326;0.004549816,0.06784609;0.003693861;-0.0422287,0.0902063;-0.3714764;0.01387186,0.09482303;-0.7119746;0.09474007,0.09956723;-0.7618611;0.03477629,-0.073377;0.002409495;-0.03178066,-0.09986407;-0.3732164;0.01924506,-0.1138641;-0.7143945;0.0960663,-0.1199702;-0.7029872;-0.002000161,0.01888452;0.3990498;0.01878338,15.21769
+0;0;0,0.005013051;0.1993857;0.01483892,0.01327523;0.4991027;0.02311536,0.1220584;0.3713843;-0.0108767,0.1945223;0.1015194;0.007065292,0.2467648;-0.1710348;-0.03014964,-0.1016752;0.3609162;0.003363019,-0.1787154;0.09182417;-0.004005681,-0.2376766;-0.179232;-0.04211265,0.06936935;0.003975967;-0.03964954,0.08598347;-0.3730071;0.005158424,0.08251326;-0.7167424;0.07099155,0.07745117;-0.7041659;-0.02734867,-0.07168172;0.003809693;-0.03531595,-0.101218;-0.373409;-0.000192076,-0.1210048;-0.7174331;0.06109311,-0.1090015;-0.7642255;-0.001826301,0.01035445;0.3991454;0.02305781,0;0;0,0.009342063;0.1993638;0.01291515,0.0236845;0.4989279;0.01763283,0.1287075;0.3696251;-0.01959766,0.1945909;0.09830198;0.001453357,0.2260706;-0.1749415;-0.05095853,-0.09441863;0.3617236;0.005777691,-0.1955244;0.1014962;0.02721018,-0.3023458;-0.1563326;0.004549816,0.06784609;0.003693861;-0.0422287,0.0902063;-0.3714764;0.01387186,0.09482303;-0.7119746;0.09474007,0.09956723;-0.7618611;0.03477629,-0.073377;0.002409495;-0.03178066,-0.09986407;-0.3732164;0.01924506,-0.1138641;-0.7143945;0.0960663,-0.1199702;-0.7029872;-0.002000161,0.01888452;0.3990498;0.01878338,15.229
+0;0;0,0.005013051;0.1993857;0.01483892,0.01327523;0.4991027;0.02311536,0.1220584;0.3713843;-0.0108767,0.1945223;0.1015194;0.007065292,0.2467648;-0.1710348;-0.03014964,-0.1016752;0.3609162;0.003363019,-0.1787154;0.09182417;-0.004005681,-0.2376766;-0.179232;-0.04211265,0.06936935;0.003975967;-0.03964954,0.08598347;-0.3730071;0.005158424,0.08251326;-0.7167424;0.07099155,0.07745117;-0.7041659;-0.02734867,-0.07168172;0.003809693;-0.03531595,-0.101218;-0.373409;-0.000192076,-0.1210048;-0.7174331;0.06109311,-0.1090015;-0.7642255;-0.001826301,0.01035445;0.3991454;0.02305781,0;0;0,0.009342063;0.1993638;0.01291515,0.0236845;0.4989279;0.01763283,0.1287075;0.3696251;-0.01959766,0.1945909;0.09830198;0.001453357,0.2260706;-0.1749415;-0.05095853,-0.09441863;0.3617236;0.005777691,-0.1955244;0.1014962;0.02721018,-0.3023458;-0.1563326;0.004549816,0.06784609;0.003693861;-0.0422287,0.0902063;-0.3714764;0.01387186,0.09482303;-0.7119746;0.09474007,0.09956723;-0.7618611;0.03477629,-0.073377;0.002409495;-0.03178066,-0.09986407;-0.3732164;0.01924506,-0.1138641;-0.7143945;0.0960663,-0.1199702;-0.7029872;-0.002000161,0.01888452;0.3990498;0.01878338,15.24042
+0;0;0,0.005072134;0.1993911;0.01474723,0.01351289;0.4991069;0.02288353,0.1221207;0.371223;-0.01127457,0.1947812;0.1014546;0.007312717,0.2470769;-0.1710413;-0.03025192,-0.1016646;0.3613423;0.003268115,-0.17872;0.09225142;-0.003982637,-0.2374762;-0.1788319;-0.04221294,0.06937157;0.003969687;-0.03964626,0.08615489;-0.3730011;0.005201206,0.08244458;-0.7167258;0.07107662,0.07729438;-0.7041525;-0.02725845,-0.07168911;0.00381121;-0.03530078,-0.1010771;-0.3734235;-0.000225015,-0.12085;-0.7174819;0.06087219,-0.1082109;-0.7638121;-0.002483606,0.01052326;0.3991516;0.02287234,0;0;0,0.009559585;0.1993647;0.01274039,0.0243927;0.498909;0.01721654,0.129189;0.369466;-0.01994707,0.1952898;0.09819084;0.001039561,0.2276911;-0.1749446;-0.05137378,-0.09388819;0.3615105;0.005972461,-0.1970181;0.1020324;0.0268379,-0.3086944;-0.1537665;0.004581286,0.06783988;0.003752803;-0.04223349,0.09012426;-0.3714378;0.01376135,0.0948035;-0.7119339;0.09463465,0.0998349;-0.7613724;0.0341019,-0.07339346;0.002384639;-0.03174451,-0.09986304;-0.373267;0.01910053,-0.1139083;-0.7144459;0.09591001,-0.120108;-0.7030495;-0.002148487,0.01940813;0.3990408;0.01843908,15.25154
+0;0;0,0.005072134;0.1993911;0.01474723,0.01351289;0.4991069;0.02288353,0.1221207;0.371223;-0.01127457,0.1947812;0.1014546;0.007312717,0.2470769;-0.1710413;-0.03025192,-0.1016646;0.3613423;0.003268115,-0.17872;0.09225142;-0.003982637,-0.2374762;-0.1788319;-0.04221294,0.06937157;0.003969687;-0.03964626,0.08615489;-0.3730011;0.005201206,0.08244458;-0.7167258;0.07107662,0.07729438;-0.7041525;-0.02725845,-0.07168911;0.00381121;-0.03530078,-0.1010771;-0.3734235;-0.000225015,-0.12085;-0.7174819;0.06087219,-0.1082109;-0.7638121;-0.002483606,0.01052326;0.3991516;0.02287234,0;0;0,0.009559585;0.1993647;0.01274039,0.0243927;0.498909;0.01721654,0.129189;0.369466;-0.01994707,0.1952898;0.09819084;0.001039561,0.2276911;-0.1749446;-0.05137378,-0.09388819;0.3615105;0.005972461,-0.1970181;0.1020324;0.0268379,-0.3086944;-0.1537665;0.004581286,0.06783988;0.003752803;-0.04223349,0.09012426;-0.3714378;0.01376135,0.0948035;-0.7119339;0.09463465,0.0998349;-0.7613724;0.0341019,-0.07339346;0.002384639;-0.03174451,-0.09986304;-0.373267;0.01910053,-0.1139083;-0.7144459;0.09591001,-0.120108;-0.7030495;-0.002148487,0.01940813;0.3990408;0.01843908,15.26279
+0;0;0,0.005072134;0.1993911;0.01474723,0.01351289;0.4991069;0.02288353,0.1221207;0.371223;-0.01127457,0.1947812;0.1014546;0.007312717,0.2470769;-0.1710413;-0.03025192,-0.1016646;0.3613423;0.003268115,-0.17872;0.09225142;-0.003982637,-0.2374762;-0.1788319;-0.04221294,0.06937157;0.003969687;-0.03964626,0.08615489;-0.3730011;0.005201206,0.08244458;-0.7167258;0.07107662,0.07729438;-0.7041525;-0.02725845,-0.07168911;0.00381121;-0.03530078,-0.1010771;-0.3734235;-0.000225015,-0.12085;-0.7174819;0.06087219,-0.1082109;-0.7638121;-0.002483606,0.01052326;0.3991516;0.02287234,0;0;0,0.009769171;0.1993679;0.01252949,0.02495635;0.4988992;0.01670036,0.1295794;0.3691864;-0.02029707,0.1959357;0.09796742;0.0006097015,0.2284746;-0.1752114;-0.05149175,-0.09349105;0.3614469;0.006141814,-0.1989814;0.1029565;0.02746102,-0.3156723;-0.1505996;0.005268341,0.06780376;0.00380846;-0.04228648,0.08980088;-0.3713833;0.01381395,0.09442158;-0.7118623;0.09476269,0.09947613;-0.7617776;0.03486281,-0.07343434;0.002353311;-0.03165218,-0.09979879;-0.3732998;0.01923645,-0.1138429;-0.7145234;0.09584731,-0.1201431;-0.7031353;-0.002203219,0.01984852;0.3990384;0.01801728,15.28504
+0;0;0,0.005144534;0.1993925;0.01470216,0.01384393;0.4991028;0.02277162,0.1222901;0.3710836;-0.01144826,0.1952035;0.1013967;0.007330438,0.247793;-0.1710299;-0.03032688,-0.1015124;0.3614899;0.003330076,-0.1782228;0.09230125;-0.003949288,-0.2371522;-0.1787882;-0.04186789,0.06936842;0.003990604;-0.03964967,0.08649372;-0.3730077;0.004836693,0.08258507;-0.7166646;0.07105333,0.0773841;-0.7041007;-0.02727741,-0.07169143;0.003767859;-0.03530072,-0.1009514;-0.3734727;-0.0001800805,-0.1207072;-0.717535;0.06090002,-0.107635;-0.7639874;-0.002220113,0.0107523;0.3991506;0.02277984,0;0;0,0.009769171;0.1993679;0.01252949,0.02495635;0.4988992;0.01670036,0.1295794;0.3691864;-0.02029707,0.1959357;0.09796742;0.0006097015,0.2284746;-0.1752114;-0.05149175,-0.09349105;0.3614469;0.006141814,-0.1989814;0.1029565;0.02746102,-0.3156723;-0.1505996;0.005268341,0.06780376;0.00380846;-0.04228648,0.08980088;-0.3713833;0.01381395,0.09442158;-0.7118623;0.09476269,0.09947613;-0.7617776;0.03486281,-0.07343434;0.002353311;-0.03165218,-0.09979879;-0.3732998;0.01923645,-0.1138429;-0.7145234;0.09584731,-0.1201431;-0.7031353;-0.002203219,0.01984852;0.3990384;0.01801728,15.30741
+0;0;0,0.005144534;0.1993925;0.01470216,0.01384393;0.4991028;0.02277162,0.1222901;0.3710836;-0.01144826,0.1952035;0.1013967;0.007330438,0.247793;-0.1710299;-0.03032688,-0.1015124;0.3614899;0.003330076,-0.1782228;0.09230125;-0.003949288,-0.2371522;-0.1787882;-0.04186789,0.06936842;0.003990604;-0.03964967,0.08649372;-0.3730077;0.004836693,0.08258507;-0.7166646;0.07105333,0.0773841;-0.7041007;-0.02727741,-0.07169143;0.003767859;-0.03530072,-0.1009514;-0.3734727;-0.0001800805,-0.1207072;-0.717535;0.06090002,-0.107635;-0.7639874;-0.002220113,0.0107523;0.3991506;0.02277984,0;0;0,0.009814031;0.1993741;0.01239604,0.02498905;0.4989069;0.01653329,0.129509;0.3691189;-0.02072244,0.1961049;0.0979749;0.0003951695,0.2288812;-0.1751955;-0.05160151,-0.09355991;0.3616691;0.006344809,-0.2003825;0.103768;0.02816136,-0.3213313;-0.1477628;0.005718984,0.06777237;0.003922853;-0.04232631,0.08916863;-0.3712721;0.0139844,0.09368495;-0.7117682;0.09486756,0.09852952;-0.7616592;0.03491792,-0.07351051;0.00226593;-0.03148128,-0.1002616;-0.3733041;0.019817,-0.1144381;-0.7145868;0.09613989,-0.1208776;-0.703195;-0.00190229,0.01988887;0.3990457;0.01784961,15.32974
+0;0;0,0.005144534;0.1993925;0.01470216,0.01384393;0.4991028;0.02277162,0.1222901;0.3710836;-0.01144826,0.1952035;0.1013967;0.007330438,0.247793;-0.1710299;-0.03032688,-0.1015124;0.3614899;0.003330076,-0.1782228;0.09230125;-0.003949288,-0.2371522;-0.1787882;-0.04186789,0.06936842;0.003990604;-0.03964967,0.08649372;-0.3730077;0.004836693,0.08258507;-0.7166646;0.07105333,0.0773841;-0.7041007;-0.02727741,-0.07169143;0.003767859;-0.03530072,-0.1009514;-0.3734727;-0.0001800805,-0.1207072;-0.717535;0.06090002,-0.107635;-0.7639874;-0.002220113,0.0107523;0.3991506;0.02277984,0;0;0,0.00976583;0.1993803;0.01233429,0.0248502;0.4989184;0.01641873,0.1293593;0.3692436;-0.02104858,0.1960174;0.09812814;0.0002376027,0.2300312;-0.1748197;-0.05213173,-0.09362204;0.3615676;0.006238423,-0.2023528;0.104518;0.02866875,-0.3269391;-0.1452039;0.005925581,0.067716;0.003937962;-0.04241504,0.0890984;-0.3712561;0.0139071,0.0935808;-0.7117523;0.0947911,0.09840183;-0.7616513;0.03485017,-0.07358914;0.00229441;-0.03129496,-0.1007037;-0.3731932;0.02041416,-0.1146941;-0.7146009;0.09621029,-0.1212155;-0.7032131;-0.001825735,0.01978902;0.3990555;0.01775341,15.35207
+0;0;0,0.005169016;0.1993973;0.01462837,0.01390066;0.499109;0.02261803,0.1223286;0.3710108;-0.01154384,0.195769;0.1014773;0.007383013,0.2481785;-0.1709456;-0.03055128,-0.1009756;0.3601885;0.002959805,-0.1781041;0.09109944;-0.003542882,-0.2372049;-0.1800128;-0.04102957,0.06938973;0.004064116;-0.03960491,0.08532322;-0.3729433;0.005245514,0.08237398;-0.7166488;0.0712589,0.07719126;-0.7040758;-0.02707442,-0.07166905;0.003646373;-0.03535889,-0.1006978;-0.3735778;0.000126455,-0.1201676;-0.7176745;0.0611052,-0.1228747;-0.7051378;-0.03732094,0.01080001;0.3991571;0.02264926,0;0;0,0.00976583;0.1993803;0.01233429,0.0248502;0.4989184;0.01641873,0.1293593;0.3692436;-0.02104858,0.1960174;0.09812814;0.0002376027,0.2300312;-0.1748197;-0.05213173,-0.09362204;0.3615676;0.006238423,-0.2023528;0.104518;0.02866875,-0.3269391;-0.1452039;0.005925581,0.067716;0.003937962;-0.04241504,0.0890984;-0.3712561;0.0139071,0.0935808;-0.7117523;0.0947911,0.09840183;-0.7616513;0.03485017,-0.07358914;0.00229441;-0.03129496,-0.1007037;-0.3731932;0.02041416,-0.1146941;-0.7146009;0.09621029,-0.1212155;-0.7032131;-0.001825735,0.01978902;0.3990555;0.01775341,15.3744
+0;0;0,0.005169016;0.1993973;0.01462837,0.01390066;0.499109;0.02261803,0.1223286;0.3710108;-0.01154384,0.195769;0.1014773;0.007383013,0.2481785;-0.1709456;-0.03055128,-0.1009756;0.3601885;0.002959805,-0.1781041;0.09109944;-0.003542882,-0.2372049;-0.1800128;-0.04102957,0.06938973;0.004064116;-0.03960491,0.08532322;-0.3729433;0.005245514,0.08237398;-0.7166488;0.0712589,0.07719126;-0.7040758;-0.02707442,-0.07166905;0.003646373;-0.03535889,-0.1006978;-0.3735778;0.000126455,-0.1201676;-0.7176745;0.0611052,-0.1228747;-0.7051378;-0.03732094,0.01080001;0.3991571;0.02264926,0;0;0,0.009911955;0.1993792;0.01223472,0.02521775;0.498907;0.01628117,0.1295638;0.3691431;-0.02134891,0.1965876;0.09808108;-0.0005361028,0.2306677;-0.1749722;-0.05230945,-0.09324434;0.3610248;0.007015605,-0.2026997;0.1042736;0.02933983,-0.3330418;-0.1425457;0.007178532,0.06768101;0.004014213;-0.0424637,0.08886112;-0.3711667;0.01402261,0.09343841;-0.7116855;0.09480613,0.09775637;-0.761698;0.03497844,-0.07362342;0.002247733;-0.0312176,-0.1008812;-0.373299;0.01998432,-0.1149503;-0.7145864;0.09630594,-0.1112111;-0.7627789;0.03408088,0.02007737;0.3990481;0.01761798,15.38563
+0;0;0,0.005169016;0.1993973;0.01462837,0.01390066;0.499109;0.02261803,0.1223286;0.3710108;-0.01154384,0.195769;0.1014773;0.007383013,0.2481785;-0.1709456;-0.03055128,-0.1009756;0.3601885;0.002959805,-0.1781041;0.09109944;-0.003542882,-0.2372049;-0.1800128;-0.04102957,0.06938973;0.004064116;-0.03960491,0.08532322;-0.3729433;0.005245514,0.08237398;-0.7166488;0.0712589,0.07719126;-0.7040758;-0.02707442,-0.07166905;0.003646373;-0.03535889,-0.1006978;-0.3735778;0.000126455,-0.1201676;-0.7176745;0.0611052,-0.1228747;-0.7051378;-0.03732094,0.01080001;0.3991571;0.02264926,0;0;0,0.009911955;0.1993792;0.01223472,0.02521775;0.498907;0.01628117,0.1295638;0.3691431;-0.02134891,0.1965876;0.09808108;-0.0005361028,0.2306677;-0.1749722;-0.05230945,-0.09324434;0.3610248;0.007015605,-0.2026997;0.1042736;0.02933983,-0.3330418;-0.1425457;0.007178532,0.06768101;0.004014213;-0.0424637,0.08886112;-0.3711667;0.01402261,0.09343841;-0.7116855;0.09480613,0.09775637;-0.761698;0.03497844,-0.07362342;0.002247733;-0.0312176,-0.1008812;-0.373299;0.01998432,-0.1149503;-0.7145864;0.09630594,-0.1112111;-0.7627789;0.03408088,0.02007737;0.3990481;0.01761798,15.40799
+0;0;0,0.005245738;0.199401;0.01455144,0.01408595;0.4991112;0.02248365,0.1223687;0.3705353;-0.01162996,0.195849;0.1010264;0.007490462,0.2483338;-0.1713817;-0.03044563,-0.1008037;0.3601311;0.002843851,-0.1775854;0.090938;-0.003453313,-0.2368935;-0.1802197;-0.04027816,0.0693889;0.004081949;-0.03960451,0.08551306;-0.3729481;0.004987013,0.0822853;-0.7165872;0.07133225,0.0771079;-0.704018;-0.02700067,-0.07168978;0.003628506;-0.03531868,-0.1011519;-0.3735378;0.0004249811,-0.1202876;-0.7176489;0.06142776,-0.1088975;-0.7653376;-0.0004975535,0.01095147;0.3991603;0.02252869,0;0;0,0.01011752;0.1993772;0.01209776,0.02578578;0.4988883;0.01601609,0.1299024;0.3688739;-0.02165929,0.1970161;0.09783337;-0.0008557383,0.231595;-0.1749836;-0.05353587,-0.09280366;0.3609309;0.007050838,-0.2036638;0.1047902;0.02945461,-0.3403266;-0.1385376;0.006763956,0.06768063;0.004032774;-0.04246255,0.088691;-0.3711462;0.01409986,0.0932254;-0.711688;0.09478898,0.09759733;-0.7618324;0.03514196,-0.07362892;0.002235569;-0.03120551,-0.1009138;-0.3733505;0.01969262,-0.1153597;-0.7144747;0.0966706,-0.1222266;-0.7031085;-0.001337692,0.02051498;0.3990368;0.01738682,15.43018
+0;0;0,0.005245738;0.199401;0.01455144,0.01408595;0.4991112;0.02248365,0.1223687;0.3705353;-0.01162996,0.195849;0.1010264;0.007490462,0.2483338;-0.1713817;-0.03044563,-0.1008037;0.3601311;0.002843851,-0.1775854;0.090938;-0.003453313,-0.2368935;-0.1802197;-0.04027816,0.0693889;0.004081949;-0.03960451,0.08551306;-0.3729481;0.004987013,0.0822853;-0.7165872;0.07133225,0.0771079;-0.704018;-0.02700067,-0.07168978;0.003628506;-0.03531868,-0.1011519;-0.3735378;0.0004249811,-0.1202876;-0.7176489;0.06142776,-0.1088975;-0.7653376;-0.0004975535,0.01095147;0.3991603;0.02252869,0;0;0,0.01011752;0.1993772;0.01209776,0.02578578;0.4988883;0.01601609,0.1299024;0.3688739;-0.02165929,0.1970161;0.09783337;-0.0008557383,0.231595;-0.1749836;-0.05353587,-0.09280366;0.3609309;0.007050838,-0.2036638;0.1047902;0.02945461,-0.3403266;-0.1385376;0.006763956,0.06768063;0.004032774;-0.04246255,0.088691;-0.3711462;0.01409986,0.0932254;-0.711688;0.09478898,0.09759733;-0.7618324;0.03514196,-0.07362892;0.002235569;-0.03120551,-0.1009138;-0.3733505;0.01969262,-0.1153597;-0.7144747;0.0966706,-0.1222266;-0.7031085;-0.001337692,0.02051498;0.3990368;0.01738682,15.44178
+0;0;0,0.005245738;0.199401;0.01455144,0.01408595;0.4991112;0.02248365,0.1223687;0.3705353;-0.01162996,0.195849;0.1010264;0.007490462,0.2483338;-0.1713817;-0.03044563,-0.1008037;0.3601311;0.002843851,-0.1775854;0.090938;-0.003453313,-0.2368935;-0.1802197;-0.04027816,0.0693889;0.004081949;-0.03960451,0.08551306;-0.3729481;0.004987013,0.0822853;-0.7165872;0.07133225,0.0771079;-0.704018;-0.02700067,-0.07168978;0.003628506;-0.03531868,-0.1011519;-0.3735378;0.0004249811,-0.1202876;-0.7176489;0.06142776,-0.1088975;-0.7653376;-0.0004975535,0.01095147;0.3991603;0.02252869,0;0;0,0.009725429;0.1993952;0.01212357,0.02449279;0.4989542;0.01584243,0.1292132;0.3693095;-0.0215828,0.1963227;0.09827808;-0.0006474648,0.2311126;-0.1743773;-0.05402084,-0.09365471;0.3608199;0.007464192,-0.205946;0.1053069;0.0299089,-0.3462578;-0.1358474;0.006304115,0.06755914;0.004177061;-0.0426417,0.08798626;-0.3709872;0.01423103,0.09267586;-0.7115134;0.09497673,0.09725369;-0.7624355;0.03640485,-0.0737194;0.002109377;-0.03099999,-0.1015142;-0.3734417;0.0198809,-0.1160357;-0.7145453;0.09693553,-0.1230603;-0.703199;-0.001057811,0.01965687;0.3990816;0.01728917,15.46383
+0;0;0,0.005413195;0.1994;0.01450338,0.01484695;0.4990932;0.02240123,0.1230363;0.3703492;-0.01110167,0.1951095;0.1004362;0.007671451,0.247027;-0.172051;-0.03047716,-0.100435;0.3604559;0.003014024,-0.1770574;0.0912182;-0.003317286,-0.2362228;-0.1800636;-0.03945071,0.06935853;0.004125907;-0.03965315,0.0856497;-0.3729272;0.004681565,0.08229236;-0.7165152;0.0712848,0.07721868;-0.7039484;-0.02705309,-0.07170439;0.003613121;-0.03529061,-0.1010505;-0.3735662;0.0004109479,-0.1201384;-0.7177414;0.06106628,-0.1084713;-0.7651681;-0.001134902,0.01148013;0.39915;0.02245019,0;0;0,0.00984305;0.1993949;0.01203354,0.0249484;0.4989388;0.01558776,0.1294844;0.3691535;-0.02175799,0.1965213;0.09808472;-0.001075434,0.231487;-0.1744954;-0.05471785,-0.09330473;0.3606232;0.007494202,-0.2076515;0.1060838;0.03061377,-0.3514014;-0.133096;0.007614568,0.06753858;0.00418753;-0.04267323,0.08797559;-0.3709631;0.01428623,0.09260226;-0.7114916;0.09502591,0.09708402;-0.7624869;0.03654793,-0.07373522;0.002095168;-0.03096331,-0.1016293;-0.3734624;0.01981459,-0.1160704;-0.7145708;0.09686361,-0.1231342;-0.7032303;-0.00112579,0.01996184;0.3990746;0.01709467,15.48606
+0;0;0,0.005413195;0.1994;0.01450338,0.01484695;0.4990932;0.02240123,0.1230363;0.3703492;-0.01110167,0.1951095;0.1004362;0.007671451,0.247027;-0.172051;-0.03047716,-0.100435;0.3604559;0.003014024,-0.1770574;0.0912182;-0.003317286,-0.2362228;-0.1800636;-0.03945071,0.06935853;0.004125907;-0.03965315,0.0856497;-0.3729272;0.004681565,0.08229236;-0.7165152;0.0712848,0.07721868;-0.7039484;-0.02705309,-0.07170439;0.003613121;-0.03529061,-0.1010505;-0.3735662;0.0004109479,-0.1201384;-0.7177414;0.06106628,-0.1084713;-0.7651681;-0.001134902,0.01148013;0.39915;0.02245019,0;0;0,0.00984305;0.1993949;0.01203354,0.0249484;0.4989388;0.01558776,0.1294844;0.3691535;-0.02175799,0.1965213;0.09808472;-0.001075434,0.231487;-0.1744954;-0.05471785,-0.09330473;0.3606232;0.007494202,-0.2076515;0.1060838;0.03061377,-0.3514014;-0.133096;0.007614568,0.06753858;0.00418753;-0.04267323,0.08797559;-0.3709631;0.01428623,0.09260226;-0.7114916;0.09502591,0.09708402;-0.7624869;0.03654793,-0.07373522;0.002095168;-0.03096331,-0.1016293;-0.3734624;0.01981459,-0.1160704;-0.7145708;0.09686361,-0.1231342;-0.7032303;-0.00112579,0.01996184;0.3990746;0.01709467,15.49742
+0;0;0,0.005413195;0.1994;0.01450338,0.01484695;0.4990932;0.02240123,0.1230363;0.3703492;-0.01110167,0.1951095;0.1004362;0.007671451,0.247027;-0.172051;-0.03047716,-0.100435;0.3604559;0.003014024,-0.1770574;0.0912182;-0.003317286,-0.2362228;-0.1800636;-0.03945071,0.06935853;0.004125907;-0.03965315,0.0856497;-0.3729272;0.004681565,0.08229236;-0.7165152;0.0712848,0.07721868;-0.7039484;-0.02705309,-0.07170439;0.003613121;-0.03529061,-0.1010505;-0.3735662;0.0004109479,-0.1201384;-0.7177414;0.06106628,-0.1084713;-0.7651681;-0.001134902,0.01148013;0.39915;0.02245019,0;0;0,0.009266157;0.1994134;0.01218238,0.02400815;0.4989727;0.01587225,0.1286027;0.3692349;-0.02169537,0.1956596;0.0980975;-0.002000095,0.2308526;-0.1744712;-0.05555169,-0.0938795;0.3597991;0.008307668,-0.2099931;0.1060708;0.0315366,-0.3566167;-0.1312705;0.007648759,0.06752384;0.004407962;-0.04267435,0.08706914;-0.3707217;0.01473396,0.09154925;-0.7113826;0.09492194,0.09664799;-0.7617621;0.03565018,-0.07369402;0.001845913;-0.03107706,-0.1025325;-0.3736291;0.01978397,-0.1171034;-0.71466;0.09715043,-0.1244424;-0.7033121;-0.0008201823,0.01913921;0.3991024;0.0173646,15.51975
+0;0;0,0.005503892;0.1993986;0.01448817,0.01510035;0.4990859;0.02242592,0.1232198;0.3703824;-0.01118139,0.1953594;0.1005013;0.007794097,0.2471172;-0.1719855;-0.0305738,-0.1003353;0.3606649;0.00316585,-0.1766885;0.09134966;-0.003118093,-0.2358608;-0.1800435;-0.03839357,0.06931985;0.004131644;-0.03972011,0.08514671;-0.3729278;0.004728749,0.08201288;-0.7164754;0.07155087,0.07687099;-0.7039073;-0.02678371,-0.07173765;0.003608918;-0.03522337,-0.1011263;-0.3736036;8.933991E-05,-0.1200947;-0.7177182;0.06112536,-0.1080197;-0.7641127;-0.002263032,0.01167918;0.3991444;0.02245551,0;0;0,0.009266157;0.1994134;0.01218238,0.02400815;0.4989727;0.01587225,0.1286027;0.3692349;-0.02169537,0.1956596;0.0980975;-0.002000095,0.2308526;-0.1744712;-0.05555169,-0.0938795;0.3597991;0.008307668,-0.2099931;0.1060708;0.0315366,-0.3566167;-0.1312705;0.007648759,0.06752384;0.004407962;-0.04267435,0.08706914;-0.3707217;0.01473396,0.09154925;-0.7113826;0.09492194,0.09664799;-0.7617621;0.03565018,-0.07369402;0.001845913;-0.03107706,-0.1025325;-0.3736291;0.01978397,-0.1171034;-0.71466;0.09715043,-0.1244424;-0.7033121;-0.0008201823,0.01913921;0.3991024;0.0173646,15.53104
+0;0;0,0.005503892;0.1993986;0.01448817,0.01510035;0.4990859;0.02242592,0.1232198;0.3703824;-0.01118139,0.1953594;0.1005013;0.007794097,0.2471172;-0.1719855;-0.0305738,-0.1003353;0.3606649;0.00316585,-0.1766885;0.09134966;-0.003118093,-0.2358608;-0.1800435;-0.03839357,0.06931985;0.004131644;-0.03972011,0.08514671;-0.3729278;0.004728749,0.08201288;-0.7164754;0.07155087,0.07687099;-0.7039073;-0.02678371,-0.07173765;0.003608918;-0.03522337,-0.1011263;-0.3736036;8.933991E-05,-0.1200947;-0.7177182;0.06112536,-0.1080197;-0.7641127;-0.002263032,0.01167918;0.3991444;0.02245551,0;0;0,0.009362588;0.1994163;0.01206214,0.024134;0.4989749;0.01570729,0.1286265;0.369041;-0.02191775,0.195698;0.09790808;-0.002210427,0.2311732;-0.1745239;-0.056269,-0.09381204;0.3598468;0.008371789,-0.211877;0.1070862;0.03230431,-0.3637282;-0.1270004;0.00896557,0.06755806;0.004435465;-0.0426173,0.08664066;-0.3706656;0.01513265,0.09120509;-0.7113932;0.09503163,0.09623453;-0.7626636;0.03698139,-0.07363857;0.001827334;-0.03120932,-0.1028078;-0.3736299;0.01959465,-0.1173088;-0.7145436;0.09748904,-0.1247007;-0.7031941;-0.0004778877,0.01923963;0.399106;0.0172052,15.55318
+0;0;0,0.005503892;0.1993986;0.01448817,0.01510035;0.4990859;0.02242592,0.1232198;0.3703824;-0.01118139,0.1953594;0.1005013;0.007794097,0.2471172;-0.1719855;-0.0305738,-0.1003353;0.3606649;0.00316585,-0.1766885;0.09134966;-0.003118093,-0.2358608;-0.1800435;-0.03839357,0.06931985;0.004131644;-0.03972011,0.08514671;-0.3729278;0.004728749,0.08201288;-0.7164754;0.07155087,0.07687099;-0.7039073;-0.02678371,-0.07173765;0.003608918;-0.03522337,-0.1011263;-0.3736036;8.933991E-05,-0.1200947;-0.7177182;0.06112536,-0.1080197;-0.7641127;-0.002263032,0.01167918;0.3991444;0.02245551,0;0;0,0.009362588;0.1994163;0.01206214,0.024134;0.4989749;0.01570729,0.1286265;0.369041;-0.02191775,0.195698;0.09790808;-0.002210427,0.2311732;-0.1745239;-0.056269,-0.09381204;0.3598468;0.008371789,-0.211877;0.1070862;0.03230431,-0.3637282;-0.1270004;0.00896557,0.06755806;0.004435465;-0.0426173,0.08664066;-0.3706656;0.01513265,0.09120509;-0.7113932;0.09503163,0.09623453;-0.7626636;0.03698139,-0.07363857;0.001827334;-0.03120932,-0.1028078;-0.3736299;0.01959465,-0.1173088;-0.7145436;0.09748904,-0.1247007;-0.7031941;-0.0004778877,0.01923963;0.399106;0.0172052,15.57545
+0;0;0,0.00559023;0.1993931;0.01453043,0.01526007;0.4990747;0.02260155,0.123304;0.3702639;-0.01114934,0.1956283;0.1004232;0.007696094,0.2473041;-0.1720927;-0.03057562,-0.09983296;0.3597245;0.003074626,-0.1769475;0.09061351;-0.002638645,-0.2363737;-0.1808652;-0.03681203,0.06931617;0.004172453;-0.03972228,0.08531898;-0.3729348;0.004255392,0.08178876;-0.7163613;0.07167786,0.07664754;-0.7037884;-0.0266576,-0.07175352;0.003568308;-0.03519515,-0.1008678;-0.3736965;-0.0002150126,-0.120486;-0.7177131;0.06116669,-0.1081025;-0.7632565;-0.003174905,0.01181988;0.3991339;0.02258216,0;0;0,0.009197478;0.1994212;0.01210763,0.02372562;0.4989911;0.01579972,0.1282948;0.3691599;-0.02199019,0.1954596;0.09804127;-0.002404934,0.231416;-0.1740994;-0.05760099,-0.09413379;0.3598211;0.008810014,-0.2136329;0.1077631;0.03303172,-0.3692092;-0.1238891;0.009939076,0.06751005;0.004492398;-0.04268737,0.08634089;-0.3705749;0.01536364,0.09086819;-0.7113122;0.09522337,0.09572461;-0.7625433;0.03710353,-0.07369105;0.001777169;-0.03108812,-0.1030089;-0.3736667;0.01972908,-0.1175313;-0.7145886;0.09758364,-0.1250999;-0.7032365;-0.0003703013,0.01893264;0.3991171;0.01728421,15.58658
+0;0;0,0.00559023;0.1993931;0.01453043,0.01526007;0.4990747;0.02260155,0.123304;0.3702639;-0.01114934,0.1956283;0.1004232;0.007696094,0.2473041;-0.1720927;-0.03057562,-0.09983296;0.3597245;0.003074626,-0.1769475;0.09061351;-0.002638645,-0.2363737;-0.1808652;-0.03681203,0.06931617;0.004172453;-0.03972228,0.08531898;-0.3729348;0.004255392,0.08178876;-0.7163613;0.07167786,0.07664754;-0.7037884;-0.0266576,-0.07175352;0.003568308;-0.03519515,-0.1008678;-0.3736965;-0.0002150126,-0.120486;-0.7177131;0.06116669,-0.1081025;-0.7632565;-0.003174905,0.01181988;0.3991339;0.02258216,0;0;0,0.009197478;0.1994212;0.01210763,0.02372562;0.4989911;0.01579972,0.1282948;0.3691599;-0.02199019,0.1954596;0.09804127;-0.002404934,0.231416;-0.1740994;-0.05760099,-0.09413379;0.3598211;0.008810014,-0.2136329;0.1077631;0.03303172,-0.3692092;-0.1238891;0.009939076,0.06751005;0.004492398;-0.04268737,0.08634089;-0.3705749;0.01536364,0.09086819;-0.7113122;0.09522337,0.09572461;-0.7625433;0.03710353,-0.07369105;0.001777169;-0.03108812,-0.1030089;-0.3736667;0.01972908,-0.1175313;-0.7145886;0.09758364,-0.1250999;-0.7032365;-0.0003703013,0.01893264;0.3991171;0.01728421,15.59787
+0;0;0,0.00559023;0.1993931;0.01453043,0.01526007;0.4990747;0.02260155,0.123304;0.3702639;-0.01114934,0.1956283;0.1004232;0.007696094,0.2473041;-0.1720927;-0.03057562,-0.09983296;0.3597245;0.003074626,-0.1769475;0.09061351;-0.002638645,-0.2363737;-0.1808652;-0.03681203,0.06931617;0.004172453;-0.03972228,0.08531898;-0.3729348;0.004255392,0.08178876;-0.7163613;0.07167786,0.07664754;-0.7037884;-0.0266576,-0.07175352;0.003568308;-0.03519515,-0.1008678;-0.3736965;-0.0002150126,-0.120486;-0.7177131;0.06116669,-0.1081025;-0.7632565;-0.003174905,0.01181988;0.3991339;0.02258216,0;0;0,0.009194518;0.1994228;0.01208406,0.02370375;0.4989929;0.01584629,0.1282798;0.3691875;-0.02197104,0.1953961;0.09805691;-0.002385121,0.2317615;-0.1738175;-0.05861568,-0.09415001;0.3597542;0.009066767,-0.2160202;0.10896;0.03456026,-0.3756057;-0.1200142;0.01212594,0.06741584;0.004498815;-0.04283533,0.08636962;-0.3705104;0.01554969,0.09078194;-0.7112555;0.09538278,0.09552253;-0.762421;0.03716165,-0.07372384;0.001785344;-0.03100982,-0.1030048;-0.3736698;0.01974482,-0.1174998;-0.7146069;0.09753813,-0.1251592;-0.7032527;-0.0004091412,0.01891025;0.3991185;0.01730285,15.62004
+0;0;0,0.005789655;0.1993814;0.01461256,0.01588665;0.4990438;0.02289022,0.1236443;0.3699031;-0.01107994,0.1960242;0.1000918;0.007973887,0.2476004;-0.1724368;-0.03034095,-0.0990496;0.3588486;0.003218485,-0.1769026;0.0899379;-0.00187704,-0.2370361;-0.1815217;-0.03494797,0.06932566;0.004118985;-0.03971129,0.08549289;-0.3729451;0.004575316,0.08149871;-0.7163479;0.07209212,0.07634369;-0.7037683;-0.02624384,-0.07179717;0.003626023;-0.03510013,-0.1010581;-0.3736135;3.027543E-05,-0.1208678;-0.7175764;0.0616509,-0.1080493;-0.7628049;-0.002973877,0.01228868;0.3991086;0.02278679,0;0;0,0.009194518;0.1994228;0.01208406,0.02370375;0.4989929;0.01584629,0.1282798;0.3691875;-0.02197104,0.1953961;0.09805691;-0.002385121,0.2317615;-0.1738175;-0.05861568,-0.09415001;0.3597542;0.009066767,-0.2160202;0.10896;0.03456026,-0.3756057;-0.1200142;0.01212594,0.06741584;0.004498815;-0.04283533,0.08636962;-0.3705104;0.01554969,0.09078194;-0.7112555;0.09538278,0.09552253;-0.762421;0.03716165,-0.07372384;0.001785344;-0.03100982,-0.1030048;-0.3736698;0.01974482,-0.1174998;-0.7146069;0.09753813,-0.1251592;-0.7032527;-0.0004091412,0.01891025;0.3991185;0.01730285,15.63134
+0;0;0,0.005789655;0.1993814;0.01461256,0.01588665;0.4990438;0.02289022,0.1236443;0.3699031;-0.01107994,0.1960242;0.1000918;0.007973887,0.2476004;-0.1724368;-0.03034095,-0.0990496;0.3588486;0.003218485,-0.1769026;0.0899379;-0.00187704,-0.2370361;-0.1815217;-0.03494797,0.06932566;0.004118985;-0.03971129,0.08549289;-0.3729451;0.004575316,0.08149871;-0.7163479;0.07209212,0.07634369;-0.7037683;-0.02624384,-0.07179717;0.003626023;-0.03510013,-0.1010581;-0.3736135;3.027543E-05,-0.1208678;-0.7175764;0.0616509,-0.1080493;-0.7628049;-0.002973877,0.01228868;0.3991086;0.02278679,0;0;0,0.009356917;0.1994191;0.01201978,0.02403495;0.4989806;0.01585382,0.1284208;0.3690347;-0.02220243,0.1957427;0.09795904;-0.002561457,0.2318175;-0.1739471;-0.05882561,-0.09392174;0.3597924;0.009163839,-0.2173249;0.1097823;0.03498321,-0.3812389;-0.116158;0.01300304,0.06738776;0.004519075;-0.04287737,0.08613806;-0.370506;0.01547141,0.09057123;-0.7112157;0.09545442,0.09460942;-0.7621458;0.03685389,-0.07374786;0.001761215;-0.03095402,-0.1033937;-0.3737006;0.01953874,-0.1178802;-0.7145964;0.09751433,-0.1256036;-0.7032427;-0.0004278347,0.019164;0.3991094;0.01727487,15.65357
+0;0;0,0.005789655;0.1993814;0.01461256,0.01588665;0.4990438;0.02289022,0.1236443;0.3699031;-0.01107994,0.1960242;0.1000918;0.007973887,0.2476004;-0.1724368;-0.03034095,-0.0990496;0.3588486;0.003218485,-0.1769026;0.0899379;-0.00187704,-0.2370361;-0.1815217;-0.03494797,0.06932566;0.004118985;-0.03971129,0.08549289;-0.3729451;0.004575316,0.08149871;-0.7163479;0.07209212,0.07634369;-0.7037683;-0.02624384,-0.07179717;0.003626023;-0.03510013,-0.1010581;-0.3736135;3.027543E-05,-0.1208678;-0.7175764;0.0616509,-0.1080493;-0.7628049;-0.002973877,0.01228868;0.3991086;0.02278679,0;0;0,0.009356917;0.1994191;0.01201978,0.02403495;0.4989806;0.01585382,0.1284208;0.3690347;-0.02220243,0.1957427;0.09795904;-0.002561457,0.2318175;-0.1739471;-0.05882561,-0.09392174;0.3597924;0.009163839,-0.2173249;0.1097823;0.03498321,-0.3812389;-0.116158;0.01300304,0.06738776;0.004519075;-0.04287737,0.08613806;-0.370506;0.01547141,0.09057123;-0.7112157;0.09545442,0.09460942;-0.7621458;0.03685389,-0.07374786;0.001761215;-0.03095402,-0.1033937;-0.3737006;0.01953874,-0.1178802;-0.7145964;0.09751433,-0.1256036;-0.7032427;-0.0004278347,0.019164;0.3991094;0.01727487,15.676
+0;0;0,0.005740667;0.1993845;0.01458934,0.01569712;0.4990517;0.02286769,0.1235696;0.370108;-0.01106731,0.1957743;0.1002491;0.007975552,0.247162;-0.1723243;-0.03027398,-0.09927255;0.3590076;0.003366634,-0.1772002;0.0901137;-0.001466987,-0.2400968;-0.1809091;-0.03294127,0.06932539;0.004121313;-0.03971153,0.08548269;-0.3729239;0.004739646,0.0814272;-0.7161973;0.07290775,0.07620774;-0.703649;-0.02541925,-0.07180292;0.003620038;-0.03508897,-0.1012088;-0.3736371;-0.000270471,-0.1213234;-0.7175379;0.06159769,-0.1086197;-0.7628447;-0.002958465,0.01215095;0.3991146;0.02276327,0;0;0,0.009545851;0.1994109;0.01200756,0.02476925;0.4989452;0.01588864,0.1287861;0.3687454;-0.02235284,0.1960597;0.09764454;-0.00289567,0.2318155;-0.1742822;-0.05926368,-0.09350224;0.3599665;0.00924869,-0.2196663;0.1114556;0.03617381,-0.3899767;-0.1096871;0.01403199,0.06730302;0.004492248;-0.04301305,0.08614978;-0.3704795;0.01564699,0.09046932;-0.711106;0.09598937,0.09500848;-0.7612582;0.03636529,-0.07379144;0.001789257;-0.03084836,-0.1032756;-0.3736854;0.019644,-0.1177227;-0.7145973;0.09755602,-0.1255021;-0.7032398;-0.0003824234,0.01965802;0.3990855;0.01727717,15.68717
+0;0;0,0.005740667;0.1993845;0.01458934,0.01569712;0.4990517;0.02286769,0.1235696;0.370108;-0.01106731,0.1957743;0.1002491;0.007975552,0.247162;-0.1723243;-0.03027398,-0.09927255;0.3590076;0.003366634,-0.1772002;0.0901137;-0.001466987,-0.2400968;-0.1809091;-0.03294127,0.06932539;0.004121313;-0.03971153,0.08548269;-0.3729239;0.004739646,0.0814272;-0.7161973;0.07290775,0.07620774;-0.703649;-0.02541925,-0.07180292;0.003620038;-0.03508897,-0.1012088;-0.3736371;-0.000270471,-0.1213234;-0.7175379;0.06159769,-0.1086197;-0.7628447;-0.002958465,0.01215095;0.3991146;0.02276327,0;0;0,0.009545851;0.1994109;0.01200756,0.02476925;0.4989452;0.01588864,0.1287861;0.3687454;-0.02235284,0.1960597;0.09764454;-0.00289567,0.2318155;-0.1742822;-0.05926368,-0.09350224;0.3599665;0.00924869,-0.2196663;0.1114556;0.03617381,-0.3899767;-0.1096871;0.01403199,0.06730302;0.004492248;-0.04301305,0.08614978;-0.3704795;0.01564699,0.09046932;-0.711106;0.09598937,0.09500848;-0.7612582;0.03636529,-0.07379144;0.001789257;-0.03084836,-0.1032756;-0.3736854;0.019644,-0.1177227;-0.7145973;0.09755602,-0.1255021;-0.7032398;-0.0003824234,0.01965802;0.3990855;0.01727717,15.69842
+0;0;0,0.005740667;0.1993845;0.01458934,0.01569712;0.4990517;0.02286769,0.1235696;0.370108;-0.01106731,0.1957743;0.1002491;0.007975552,0.247162;-0.1723243;-0.03027398,-0.09927255;0.3590076;0.003366634,-0.1772002;0.0901137;-0.001466987,-0.2400968;-0.1809091;-0.03294127,0.06932539;0.004121313;-0.03971153,0.08548269;-0.3729239;0.004739646,0.0814272;-0.7161973;0.07290775,0.07620774;-0.703649;-0.02541925,-0.07180292;0.003620038;-0.03508897,-0.1012088;-0.3736371;-0.000270471,-0.1213234;-0.7175379;0.06159769,-0.1086197;-0.7628447;-0.002958465,0.01215095;0.3991146;0.02276327,0;0;0,0.00967614;0.1994078;0.01195458,0.02527074;0.4989237;0.01581104,0.1291476;0.3686252;-0.02233222,0.1964412;0.09749898;-0.00330231,0.232037;-0.1744721;-0.05955756,-0.09323472;0.3601063;0.009671667,-0.2216354;0.1128521;0.03757559,-0.3977108;-0.1037757;0.01589933,0.06729097;0.004508814;-0.04303017,0.08627237;-0.3704818;0.0154656,0.09048434;-0.7110803;0.09593245,0.09518208;-0.761252;0.03634697,-0.07379586;0.001779877;-0.03083834,-0.103297;-0.3737182;0.01946938,-0.1177527;-0.7146057;0.09748694,-0.1256246;-0.7032496;-0.000443846,0.02001304;0.3990716;0.01719837,15.72064
+0;0;0,0.005826716;0.1993908;0.01446882,0.01582755;0.4990609;0.02258558,0.1237725;0.370191;-0.01110575,0.1957797;0.1002834;0.007995404,0.2470436;-0.1723422;-0.03004827,-0.09913809;0.3587191;0.00371892,-0.1773146;0.08989894;-0.001198656,-0.2420142;-0.1809278;-0.03064056,0.06932246;0.004119904;-0.03971677,0.08522949;-0.3729129;0.004928425,0.08114401;-0.7162188;0.0729312,0.07581108;-0.7036708;-0.02538966,-0.07180446;0.00362685;-0.03508513,-0.1009045;-0.3737609;-0.001444925,-0.1216612;-0.7174503;0.06137859,-0.1089334;-0.7627072;-0.003231037,0.01227733;0.399124;0.02253502,0;0;0,0.00967614;0.1994078;0.01195458,0.02527074;0.4989237;0.01581104,0.1291476;0.3686252;-0.02233222,0.1964412;0.09749898;-0.00330231,0.232037;-0.1744721;-0.05955756,-0.09323472;0.3601063;0.009671667,-0.2216354;0.1128521;0.03757559,-0.3977108;-0.1037757;0.01589933,0.06729097;0.004508814;-0.04303017,0.08627237;-0.3704818;0.0154656,0.09048434;-0.7110803;0.09593245,0.09518208;-0.761252;0.03634697,-0.07379586;0.001779877;-0.03083834,-0.103297;-0.3737182;0.01946938,-0.1177527;-0.7146057;0.09748694,-0.1256246;-0.7032496;-0.000443846,0.02001304;0.3990716;0.01719837,15.73211
+0;0;0,0.005826716;0.1993908;0.01446882,0.01582755;0.4990609;0.02258558,0.1237725;0.370191;-0.01110575,0.1957797;0.1002834;0.007995404,0.2470436;-0.1723422;-0.03004827,-0.09913809;0.3587191;0.00371892,-0.1773146;0.08989894;-0.001198656,-0.2420142;-0.1809278;-0.03064056,0.06932246;0.004119904;-0.03971677,0.08522949;-0.3729129;0.004928425,0.08114401;-0.7162188;0.0729312,0.07581108;-0.7036708;-0.02538966,-0.07180446;0.00362685;-0.03508513,-0.1009045;-0.3737609;-0.001444925,-0.1216612;-0.7174503;0.06137859,-0.1089334;-0.7627072;-0.003231037,0.01227733;0.399124;0.02253502,0;0;0,0.00967614;0.1994078;0.01195458,0.02527074;0.4989237;0.01581104,0.1291476;0.3686252;-0.02233222,0.1964412;0.09749898;-0.00330231,0.232037;-0.1744721;-0.05955756,-0.09323472;0.3601063;0.009671667,-0.2216354;0.1128521;0.03757559,-0.3977108;-0.1037757;0.01589933,0.06729097;0.004508814;-0.04303017,0.08627237;-0.3704818;0.0154656,0.09048434;-0.7110803;0.09593245,0.09518208;-0.761252;0.03634697,-0.07379586;0.001779877;-0.03083834,-0.103297;-0.3737182;0.01946938,-0.1177527;-0.7146057;0.09748694,-0.1256246;-0.7032496;-0.000443846,0.02001304;0.3990716;0.01719837,15.74312
+0;0;0,0.005826716;0.1993908;0.01446882,0.01582755;0.4990609;0.02258558,0.1237725;0.370191;-0.01110575,0.1957797;0.1002834;0.007995404,0.2470436;-0.1723422;-0.03004827,-0.09913809;0.3587191;0.00371892,-0.1773146;0.08989894;-0.001198656,-0.2420142;-0.1809278;-0.03064056,0.06932246;0.004119904;-0.03971677,0.08522949;-0.3729129;0.004928425,0.08114401;-0.7162188;0.0729312,0.07581108;-0.7036708;-0.02538966,-0.07180446;0.00362685;-0.03508513,-0.1009045;-0.3737609;-0.001444925,-0.1216612;-0.7174503;0.06137859,-0.1089334;-0.7627072;-0.003231037,0.01227733;0.399124;0.02253502,0;0;0,0.009784265;0.1994017;0.01196729,0.02553977;0.4989083;0.01591329,0.1292184;0.368565;-0.02259992,0.1963372;0.09741601;-0.003279742,0.231876;-0.1745265;-0.05970913,-0.09300737;0.359945;0.01019603,-0.2248529;0.1146227;0.03907091,-0.4066368;-0.09726711;0.01768599,0.06719537;0.00450601;-0.04317959,0.08623787;-0.3704266;0.01566686,0.09037156;-0.7110292;0.09612058,0.09475403;-0.7612452;0.03657069,-0.07384959;0.001770265;-0.03070999,-0.103349;-0.3737453;0.01946801,-0.1175262;-0.7146988;0.09724798,-0.125665;-0.7033341;-0.0006626323,0.02021861;0.3990591;0.01726433,15.7653
+0;0;0,0.005979739;0.1993775;0.01458971,0.01622554;0.4990316;0.02300588,0.123993;0.3701131;-0.01107558,0.1956414;0.1000812;0.007613467,0.2469288;-0.1726588;-0.02956804,-0.09889942;0.3588185;0.004227936,-0.177612;0.09015542;-0.000720263,-0.2443325;-0.1804042;-0.02803069,0.06932022;0.004148334;-0.03971772,0.0848793;-0.3729223;0.004730765,0.08080384;-0.7162606;0.07257013,0.07536627;-0.7036892;-0.02574915,-0.07181059;0.003598086;-0.03507553,-0.1011492;-0.3738321;-0.002125971,-0.1223646;-0.7173955;0.06123107,-0.1095318;-0.7628369;-0.003142238,0.01259532;0.3990976;0.02284272,0;0;0,0.009784265;0.1994017;0.01196729,0.02553977;0.4989083;0.01591329,0.1292184;0.368565;-0.02259992,0.1963372;0.09741601;-0.003279742,0.231876;-0.1745265;-0.05970913,-0.09300737;0.359945;0.01019603,-0.2248529;0.1146227;0.03907091,-0.4066368;-0.09726711;0.01768599,0.06719537;0.00450601;-0.04317959,0.08623787;-0.3704266;0.01566686,0.09037156;-0.7110292;0.09612058,0.09475403;-0.7612452;0.03657069,-0.07384959;0.001770265;-0.03070999,-0.103349;-0.3737453;0.01946801,-0.1175262;-0.7146988;0.09724798,-0.125665;-0.7033341;-0.0006626323,0.02021861;0.3990591;0.01726433,15.77659
+0;0;0,0.005979739;0.1993775;0.01458971,0.01622554;0.4990316;0.02300588,0.123993;0.3701131;-0.01107558,0.1956414;0.1000812;0.007613467,0.2469288;-0.1726588;-0.02956804,-0.09889942;0.3588185;0.004227936,-0.177612;0.09015542;-0.000720263,-0.2443325;-0.1804042;-0.02803069,0.06932022;0.004148334;-0.03971772,0.0848793;-0.3729223;0.004730765,0.08080384;-0.7162606;0.07257013,0.07536627;-0.7036892;-0.02574915,-0.07181059;0.003598086;-0.03507553,-0.1011492;-0.3738321;-0.002125971,-0.1223646;-0.7173955;0.06123107,-0.1095318;-0.7628369;-0.003142238,0.01259532;0.3990976;0.02284272,0;0;0,0.009843302;0.1993994;0.01195754,0.02581949;0.4988944;0.01592099,0.1293484;0.3685102;-0.02273405,0.1968346;0.09742114;-0.00385602,0.2320265;-0.1745269;-0.06047548,-0.09281321;0.359817;0.01080944,-0.2287584;0.1168712;0.04074699,-0.4144853;-0.09155563;0.01921197,0.06716727;0.004508746;-0.04322299,0.08631174;-0.3704289;0.01555841,0.09033478;-0.7110528;0.09592711,0.09472841;-0.761263;0.03637011,-0.07386947;0.001784841;-0.03066131,-0.1033074;-0.3737458;0.01943964,-0.1175933;-0.7146777;0.09729457,-0.1259623;-0.7033137;-0.0005965009,0.02040864;0.3990498;0.0172591,15.78783
+0;0;0,0.005979739;0.1993775;0.01458971,0.01622554;0.4990316;0.02300588,0.123993;0.3701131;-0.01107558,0.1956414;0.1000812;0.007613467,0.2469288;-0.1726588;-0.02956804,-0.09889942;0.3588185;0.004227936,-0.177612;0.09015542;-0.000720263,-0.2443325;-0.1804042;-0.02803069,0.06932022;0.004148334;-0.03971772,0.0848793;-0.3729223;0.004730765,0.08080384;-0.7162606;0.07257013,0.07536627;-0.7036892;-0.02574915,-0.07181059;0.003598086;-0.03507553,-0.1011492;-0.3738321;-0.002125971,-0.1223646;-0.7173955;0.06123107,-0.1095318;-0.7628369;-0.003142238,0.01259532;0.3990976;0.02284272,0;0;0,0.009843302;0.1993994;0.01195754,0.02581949;0.4988944;0.01592099,0.1293484;0.3685102;-0.02273405,0.1968346;0.09742114;-0.00385602,0.2320265;-0.1745269;-0.06047548,-0.09281321;0.359817;0.01080944,-0.2287584;0.1168712;0.04074699,-0.4144853;-0.09155563;0.01921197,0.06716727;0.004508746;-0.04322299,0.08631174;-0.3704289;0.01555841,0.09033478;-0.7110528;0.09592711,0.09472841;-0.761263;0.03637011,-0.07386947;0.001784841;-0.03066131,-0.1033074;-0.3737458;0.01943964,-0.1175933;-0.7146777;0.09729457,-0.1259623;-0.7033137;-0.0005965009,0.02040864;0.3990498;0.0172591,15.79904
+0;0;0,0.005921672;0.1993807;0.01456999,0.0160211;0.4990397;0.02298366,0.1238795;0.3702721;-0.0111017,0.1948178;0.1000433;0.00744912,0.2464262;-0.1726892;-0.02934167,-0.09911478;0.359007;0.004196679,-0.1793613;0.09077868;0.0004465613,-0.2485194;-0.1791595;-0.02694951,0.06931173;0.004164235;-0.03973088,0.08319253;-0.3729286;0.005082872,0.07989046;-0.7162517;0.07304144,0.07443775;-0.7036772;-0.02527754,-0.07181196;0.003578642;-0.03507471,-0.1018142;-0.373792;-0.002040364,-0.1230797;-0.7173461;0.06135012,-0.10984;-0.7626199;-0.003136881,0.01244387;0.3991039;0.02282211,0;0;0,0.009844996;0.1993984;0.01197338,0.02575654;0.4988954;0.01612679,0.1292785;0.3685717;-0.02277749,0.1967458;0.09747744;-0.003907938,0.231972;-0.1744476;-0.06061688,-0.09274709;0.3594694;0.01135631,-0.2320703;0.1187078;0.04333932,-0.4217372;-0.08599505;0.0204663,0.06713893;0.004532315;-0.04326457,0.0862933;-0.3704107;0.01547926,0.09029089;-0.7110137;0.09593797,0.09461441;-0.7611451;0.03626998,-0.07388222;0.001777774;-0.03063097,-0.1032761;-0.3737833;0.01926796,-0.117582;-0.7145832;0.09769482,-0.1261647;-0.7032069;-0.0001800731,0.02037834;0.3990479;0.01737167,15.82113
+0;0;0,0.005921672;0.1993807;0.01456999,0.0160211;0.4990397;0.02298366,0.1238795;0.3702721;-0.0111017,0.1948178;0.1000433;0.00744912,0.2464262;-0.1726892;-0.02934167,-0.09911478;0.359007;0.004196679,-0.1793613;0.09077868;0.0004465613,-0.2485194;-0.1791595;-0.02694951,0.06931173;0.004164235;-0.03973088,0.08319253;-0.3729286;0.005082872,0.07989046;-0.7162517;0.07304144,0.07443775;-0.7036772;-0.02527754,-0.07181196;0.003578642;-0.03507471,-0.1018142;-0.373792;-0.002040364,-0.1230797;-0.7173461;0.06135012,-0.10984;-0.7626199;-0.003136881,0.01244387;0.3991039;0.02282211,0;0;0,0.009844996;0.1993984;0.01197338,0.02575654;0.4988954;0.01612679,0.1292785;0.3685717;-0.02277749,0.1967458;0.09747744;-0.003907938,0.231972;-0.1744476;-0.06061688,-0.09274709;0.3594694;0.01135631,-0.2320703;0.1187078;0.04333932,-0.4217372;-0.08599505;0.0204663,0.06713893;0.004532315;-0.04326457,0.0862933;-0.3704107;0.01547926,0.09029089;-0.7110137;0.09593797,0.09461441;-0.7611451;0.03626998,-0.07388222;0.001777774;-0.03063097,-0.1032761;-0.3737833;0.01926796,-0.117582;-0.7145832;0.09769482,-0.1261647;-0.7032069;-0.0001800731,0.02037834;0.3990479;0.01737167,15.83263
+0;0;0,0.005921672;0.1993807;0.01456999,0.0160211;0.4990397;0.02298366,0.1238795;0.3702721;-0.0111017,0.1948178;0.1000433;0.00744912,0.2464262;-0.1726892;-0.02934167,-0.09911478;0.359007;0.004196679,-0.1793613;0.09077868;0.0004465613,-0.2485194;-0.1791595;-0.02694951,0.06931173;0.004164235;-0.03973088,0.08319253;-0.3729286;0.005082872,0.07989046;-0.7162517;0.07304144,0.07443775;-0.7036772;-0.02527754,-0.07181196;0.003578642;-0.03507471,-0.1018142;-0.373792;-0.002040364,-0.1230797;-0.7173461;0.06135012,-0.10984;-0.7626199;-0.003136881,0.01244387;0.3991039;0.02282211,0;0;0,0.009863975;0.1993987;0.01195218,0.02579338;0.4988953;0.01606276,0.1292938;0.3687632;-0.02301199,0.1968632;0.09769374;-0.004151724,0.2317652;-0.1742502;-0.06097044,-0.09279257;0.3596783;0.01137219,-0.2350716;0.1208131;0.0445398,-0.4317714;-0.07723144;0.02245915,0.06706747;0.004534102;-0.04337507,0.08645889;-0.3704283;0.01516704,0.09031928;-0.7109818;0.0958416,0.09447916;-0.7614993;0.0366839,-0.07392199;0.001781607;-0.03053464,-0.1032799;-0.3738102;0.0191537,-0.1172713;-0.7146754;0.0973527,-0.1259532;-0.703293;-0.0005146265,0.02040899;0.3990483;0.01732298,15.85512
+0;0;0,0.005957047;0.1993747;0.0146367,0.01601651;0.4990315;0.02317868,0.1239389;0.3703701;-0.01091,0.1941295;0.09994566;0.007634366,0.2454852;-0.1727992;-0.02941767,-0.09911419;0.358949;0.004573146,-0.180703;0.09111539;0.001672714,-0.2543429;-0.1776974;-0.02510201,0.06930169;0.004188482;-0.03974584,0.08258705;-0.3729205;0.005112797,0.07913684;-0.716215;0.07320856,0.0736501;-0.7036352;-0.02510944,-0.07182042;0.003550538;-0.03506026,-0.1025328;-0.3738081;-0.002545375,-0.1241074;-0.7172354;0.06142512,-0.11062;-0.7624777;-0.003047328,0.0124639;0.3990948;0.02297537,0;0;0,0.009863975;0.1993987;0.01195218,0.02579338;0.4988953;0.01606276,0.1292938;0.3687632;-0.02301199,0.1968632;0.09769374;-0.004151724,0.2317652;-0.1742502;-0.06097044,-0.09279257;0.3596783;0.01137219,-0.2350716;0.1208131;0.0445398,-0.4317714;-0.07723144;0.02245915,0.06706747;0.004534102;-0.04337507,0.08645889;-0.3704283;0.01516704,0.09031928;-0.7109818;0.0958416,0.09447916;-0.7614993;0.0366839,-0.07392199;0.001781607;-0.03053464,-0.1032799;-0.3738102;0.0191537,-0.1172713;-0.7146754;0.0973527,-0.1259532;-0.703293;-0.0005146265,0.02040899;0.3990483;0.01732298,15.87703
+0;0;0,0.005957047;0.1993747;0.0146367,0.01601651;0.4990315;0.02317868,0.1239389;0.3703701;-0.01091,0.1941295;0.09994566;0.007634366,0.2454852;-0.1727992;-0.02941767,-0.09911419;0.358949;0.004573146,-0.180703;0.09111539;0.001672714,-0.2543429;-0.1776974;-0.02510201,0.06930169;0.004188482;-0.03974584,0.08258705;-0.3729205;0.005112797,0.07913684;-0.716215;0.07320856,0.0736501;-0.7036352;-0.02510944,-0.07182042;0.003550538;-0.03506026,-0.1025328;-0.3738081;-0.002545375,-0.1241074;-0.7172354;0.06142512,-0.11062;-0.7624777;-0.003047328,0.0124639;0.3990948;0.02297537,0;0;0,0.009899342;0.1993982;0.01193102,0.02567678;0.4989035;0.01598324,0.12924;0.3689034;-0.02316513,0.1969942;0.09789723;-0.004059687,0.2314153;-0.1740968;-0.06093175,-0.09299354;0.360009;0.01199809,-0.2382396;0.1229918;0.04556005,-0.4386803;-0.07128263;0.02362844,0.06704433;0.004485446;-0.04341589,0.086566;-0.3704773;0.01508036,0.0904311;-0.7110127;0.09583153,0.09437431;-0.7611037;0.03608301,-0.07395014;0.001858173;-0.03046185,-0.1031407;-0.3737822;0.01895676,-0.1172666;-0.714673;0.09702056,-0.1261993;-0.7032918;-0.0008239448,0.02035438;0.3990535;0.01726872,15.89942
+0;0;0,0.005957047;0.1993747;0.0146367,0.01601651;0.4990315;0.02317868,0.1239389;0.3703701;-0.01091,0.1941295;0.09994566;0.007634366,0.2454852;-0.1727992;-0.02941767,-0.09911419;0.358949;0.004573146,-0.180703;0.09111539;0.001672714,-0.2543429;-0.1776974;-0.02510201,0.06930169;0.004188482;-0.03974584,0.08258705;-0.3729205;0.005112797,0.07913684;-0.716215;0.07320856,0.0736501;-0.7036352;-0.02510944,-0.07182042;0.003550538;-0.03506026,-0.1025328;-0.3738081;-0.002545375,-0.1241074;-0.7172354;0.06142512,-0.11062;-0.7624777;-0.003047328,0.0124639;0.3990948;0.02297537,0;0;0,0.009899342;0.1993982;0.01193102,0.02567678;0.4989035;0.01598324,0.12924;0.3689034;-0.02316513,0.1969942;0.09789723;-0.004059687,0.2314153;-0.1740968;-0.06093175,-0.09299354;0.360009;0.01199809,-0.2382396;0.1229918;0.04556005,-0.4386803;-0.07128263;0.02362844,0.06704433;0.004485446;-0.04341589,0.086566;-0.3704773;0.01508036,0.0904311;-0.7110127;0.09583153,0.09437431;-0.7611037;0.03608301,-0.07395014;0.001858173;-0.03046185,-0.1031407;-0.3737822;0.01895676,-0.1172666;-0.714673;0.09702056,-0.1261993;-0.7032918;-0.0008239448,0.02035438;0.3990535;0.01726872,15.91051
+0;0;0,0.005881854;0.1993835;0.01454824,0.01579814;0.4990479;0.02299244,0.123693;0.3700559;-0.01104708,0.1936429;0.09957245;0.007546077,0.2445647;-0.1732084;-0.02983846,-0.09939741;0.3591623;0.004695943,-0.1842263;0.09232375;0.003574119,-0.2606151;-0.1756722;-0.02368238,0.06930685;0.004299813;-0.03972496,0.08214326;-0.3729162;0.004357684,0.07835749;-0.7161677;0.07265201,0.07280202;-0.7035916;-0.0256615,-0.07184345;0.00342161;-0.03502587,-0.1028484;-0.3740346;-0.003952976,-0.1249801;-0.7173131;0.06062279,-0.111611;-0.762655;-0.00375795,0.01229756;0.3991093;0.02281973,0;0;0,0.00990669;0.1993994;0.01190557,0.02568328;0.4989048;0.0159406,0.1293129;0.3689099;-0.02302719,0.1970762;0.09787378;-0.004385116,0.2312436;-0.1742139;-0.06096175,-0.09304692;0.360089;0.01274642,-0.2409633;0.1247683;0.04658271,-0.4449334;-0.06570156;0.02383639,0.06701444;0.004491032;-0.04346143,0.08655654;-0.3704764;0.0149981,0.09039968;-0.7109958;0.09581777,0.09403295;-0.7613119;0.03635241,-0.07402218;0.001890765;-0.03028435,-0.1037693;-0.3736641;0.0194514,-0.1173971;-0.7146493;0.09719059,-0.1265172;-0.7032703;-0.00063622,0.02036177;0.3990548;0.01723376,15.9219
+0;0;0,0.005881854;0.1993835;0.01454824,0.01579814;0.4990479;0.02299244,0.123693;0.3700559;-0.01104708,0.1936429;0.09957245;0.007546077,0.2445647;-0.1732084;-0.02983846,-0.09939741;0.3591623;0.004695943,-0.1842263;0.09232375;0.003574119,-0.2606151;-0.1756722;-0.02368238,0.06930685;0.004299813;-0.03972496,0.08214326;-0.3729162;0.004357684,0.07835749;-0.7161677;0.07265201,0.07280202;-0.7035916;-0.0256615,-0.07184345;0.00342161;-0.03502587,-0.1028484;-0.3740346;-0.003952976,-0.1249801;-0.7173131;0.06062279,-0.111611;-0.762655;-0.00375795,0.01229756;0.3991093;0.02281973,0;0;0,0.00990669;0.1993994;0.01190557,0.02568328;0.4989048;0.0159406,0.1293129;0.3689099;-0.02302719,0.1970762;0.09787378;-0.004385116,0.2312436;-0.1742139;-0.06096175,-0.09304692;0.360089;0.01274642,-0.2409633;0.1247683;0.04658271,-0.4449334;-0.06570156;0.02383639,0.06701444;0.004491032;-0.04346143,0.08655654;-0.3704764;0.0149981,0.09039968;-0.7109958;0.09581777,0.09403295;-0.7613119;0.03635241,-0.07402218;0.001890765;-0.03028435,-0.1037693;-0.3736641;0.0194514,-0.1173971;-0.7146493;0.09719059,-0.1265172;-0.7032703;-0.00063622,0.02036177;0.3990548;0.01723376,15.93304
+0;0;0,0.005881854;0.1993835;0.01454824,0.01579814;0.4990479;0.02299244,0.123693;0.3700559;-0.01104708,0.1936429;0.09957245;0.007546077,0.2445647;-0.1732084;-0.02983846,-0.09939741;0.3591623;0.004695943,-0.1842263;0.09232375;0.003574119,-0.2606151;-0.1756722;-0.02368238,0.06930685;0.004299813;-0.03972496,0.08214326;-0.3729162;0.004357684,0.07835749;-0.7161677;0.07265201,0.07280202;-0.7035916;-0.0256615,-0.07184345;0.00342161;-0.03502587,-0.1028484;-0.3740346;-0.003952976,-0.1249801;-0.7173131;0.06062279,-0.111611;-0.762655;-0.00375795,0.01229756;0.3991093;0.02281973,0;0;0,0.01005657;0.1993954;0.0118461,0.02633099;0.4988734;0.01592258,0.1296019;0.3688194;-0.0234021,0.1972705;0.09778172;-0.00444009,0.2312822;-0.1742938;-0.06116838,-0.09279504;0.36056;0.0132094,-0.2443217;0.1276304;0.04761114,-0.4514037;-0.05942643;0.02465949,0.06697774;0.004456282;-0.04352153,0.08665101;-0.3705337;0.01474898,0.0905331;-0.7110398;0.09562265,0.09454291;-0.7621722;0.0373006,-0.07404608;0.001942817;-0.03022256,-0.1036806;-0.3736571;0.01923935,-0.1173853;-0.7146748;0.09682199,-0.1267342;-0.703293;-0.0009837672,0.02079947;0.3990348;0.01720639,15.95526
+0;0;0,0.005739025;0.1993945;0.01445279,0.01542594;0.4990695;0.02279452,0.1233814;0.3699431;-0.01115724,0.1925914;0.09928274;0.007629745,0.2435335;-0.1734626;-0.02998525,-0.0998524;0.3594488;0.004936649,-0.1878005;0.09361997;0.005357503,-0.2697681;-0.1727281;-0.02184584,0.06927737;0.004380726;-0.03976751,0.08151993;-0.3728831;0.004074074,0.07759798;-0.7161596;0.07223472,0.07194018;-0.7035891;-0.02607196,-0.07183985;0.003332444;-0.03504186,-0.1035395;-0.3741285;-0.004737686,-0.1259936;-0.7173314;0.06012837,-0.1124742;-0.7626235;-0.004279163,0.01200321;0.3991281;0.02265301,0;0;0,0.01005657;0.1993954;0.0118461,0.02633099;0.4988734;0.01592258,0.1296019;0.3688194;-0.0234021,0.1972705;0.09778172;-0.00444009,0.2312822;-0.1742938;-0.06116838,-0.09279504;0.36056;0.0132094,-0.2443217;0.1276304;0.04761114,-0.4514037;-0.05942643;0.02465949,0.06697774;0.004456282;-0.04352153,0.08665101;-0.3705337;0.01474898,0.0905331;-0.7110398;0.09562265,0.09454291;-0.7621722;0.0373006,-0.07404608;0.001942817;-0.03022256,-0.1036806;-0.3736571;0.01923935,-0.1173853;-0.7146748;0.09682199,-0.1267342;-0.703293;-0.0009837672,0.02079947;0.3990348;0.01720639,15.96646
+0;0;0,0.005739025;0.1993945;0.01445279,0.01542594;0.4990695;0.02279452,0.1233814;0.3699431;-0.01115724,0.1925914;0.09928274;0.007629745,0.2435335;-0.1734626;-0.02998525,-0.0998524;0.3594488;0.004936649,-0.1878005;0.09361997;0.005357503,-0.2697681;-0.1727281;-0.02184584,0.06927737;0.004380726;-0.03976751,0.08151993;-0.3728831;0.004074074,0.07759798;-0.7161596;0.07223472,0.07194018;-0.7035891;-0.02607196,-0.07183985;0.003332444;-0.03504186,-0.1035395;-0.3741285;-0.004737686,-0.1259936;-0.7173314;0.06012837,-0.1124742;-0.7626235;-0.004279163,0.01200321;0.3991281;0.02265301,0;0;0,0.01005657;0.1993954;0.0118461,0.02633099;0.4988734;0.01592258,0.1296019;0.3688194;-0.0234021,0.1972705;0.09778172;-0.00444009,0.2312822;-0.1742938;-0.06116838,-0.09279504;0.36056;0.0132094,-0.2443217;0.1276304;0.04761114,-0.4514037;-0.05942643;0.02465949,0.06697774;0.004456282;-0.04352153,0.08665101;-0.3705337;0.01474898,0.0905331;-0.7110398;0.09562265,0.09454291;-0.7621722;0.0373006,-0.07404608;0.001942817;-0.03022256,-0.1036806;-0.3736571;0.01923935,-0.1173853;-0.7146748;0.09682199,-0.1267342;-0.703293;-0.0009837672,0.02079947;0.3990348;0.01720639,15.97764
+0;0;0,0.005739025;0.1993945;0.01445279,0.01542594;0.4990695;0.02279452,0.1233814;0.3699431;-0.01115724,0.1925914;0.09928274;0.007629745,0.2435335;-0.1734626;-0.02998525,-0.0998524;0.3594488;0.004936649,-0.1878005;0.09361997;0.005357503,-0.2697681;-0.1727281;-0.02184584,0.06927737;0.004380726;-0.03976751,0.08151993;-0.3728831;0.004074074,0.07759798;-0.7161596;0.07223472,0.07194018;-0.7035891;-0.02607196,-0.07183985;0.003332444;-0.03504186,-0.1035395;-0.3741285;-0.004737686,-0.1259936;-0.7173314;0.06012837,-0.1124742;-0.7626235;-0.004279163,0.01200321;0.3991281;0.02265301,0;0;0,0.01016275;0.199392;0.01181278,0.02686473;0.4988474;0.01579627,0.1296942;0.3683986;-0.02390384,0.1974896;0.09742242;-0.004521128,0.231197;-0.1746393;-0.06149695,-0.09249665;0.3606819;0.01358612,-0.2468493;0.1296443;0.04818258,-0.4569682;-0.05406092;0.02576757,0.06697882;0.004425098;-0.04352305,0.08682085;-0.3705736;0.01463375,0.09067785;-0.7110876;0.09547538,0.09475735;-0.7623675;0.03736401,-0.07403412;0.001967327;-0.03025025,-0.1035499;-0.3736476;0.01916889,-0.1173176;-0.7146662;0.09673664,-0.1269143;-0.7032865;-0.001044706,0.02115986;0.399019;0.01711683,15.9998
+0;0;0,0.005676353;0.1993939;0.01448654,0.01520701;0.4990723;0.02288108,0.1231442;0.3698176;-0.01123274,0.1919774;0.09907034;0.007685885,0.2425578;-0.1736974;-0.03025316,-0.1000889;0.3595776;0.005209098,-0.1933495;0.09557417;0.007363743,-0.2832504;-0.1682338;-0.01952882,0.0692703;0.004437747;-0.0397735,0.08079348;-0.3729201;0.00345001,0.07665158;-0.7160897;0.07213354,0.07088584;-0.7035145;-0.0261677,-0.07184914;0.003274492;-0.03502827,-0.1043826;-0.3741289;-0.004890626,-0.1271564;-0.7172747;0.06016544,-0.1137657;-0.7628936;-0.003885187,0.01184375;0.399129;0.0227238,0;0;0,0.01017081;0.1993957;0.01174291,0.0267962;0.4988563;0.01567258,0.1296015;0.3683358;-0.02410731,0.1974334;0.09736791;-0.004736351,0.2310993;-0.1746601;-0.06189709,-0.09248166;0.3605148;0.01367914,-0.2499728;0.1317376;0.04914033,-0.4623072;-0.04933442;0.02618365,0.06692075;0.004464626;-0.04360825,0.08672179;-0.3705191;0.01465949,0.09056361;-0.7110522;0.09542114,0.09434354;-0.7623465;0.0373096,-0.07406135;0.001895369;-0.03018813,-0.1038381;-0.3736764;0.01940207,-0.1176672;-0.7147332;0.09679054,-0.1273587;-0.7033592;-0.0009803772,0.02112203;0.3990263;0.01700594,16.01111
+0;0;0,0.005676353;0.1993939;0.01448654,0.01520701;0.4990723;0.02288108,0.1231442;0.3698176;-0.01123274,0.1919774;0.09907034;0.007685885,0.2425578;-0.1736974;-0.03025316,-0.1000889;0.3595776;0.005209098,-0.1933495;0.09557417;0.007363743,-0.2832504;-0.1682338;-0.01952882,0.0692703;0.004437747;-0.0397735,0.08079348;-0.3729201;0.00345001,0.07665158;-0.7160897;0.07213354,0.07088584;-0.7035145;-0.0261677,-0.07184914;0.003274492;-0.03502827,-0.1043826;-0.3741289;-0.004890626,-0.1271564;-0.7172747;0.06016544,-0.1137657;-0.7628936;-0.003885187,0.01184375;0.399129;0.0227238,0;0;0,0.01017081;0.1993957;0.01174291,0.0267962;0.4988563;0.01567258,0.1296015;0.3683358;-0.02410731,0.1974334;0.09736791;-0.004736351,0.2310993;-0.1746601;-0.06189709,-0.09248166;0.3605148;0.01367914,-0.2499728;0.1317376;0.04914033,-0.4623072;-0.04933442;0.02618365,0.06692075;0.004464626;-0.04360825,0.08672179;-0.3705191;0.01465949,0.09056361;-0.7110522;0.09542114,0.09434354;-0.7623465;0.0373096,-0.07406135;0.001895369;-0.03018813,-0.1038381;-0.3736764;0.01940207,-0.1176672;-0.7147332;0.09679054,-0.1273587;-0.7033592;-0.0009803772,0.02112203;0.3990263;0.01700594,16.0224
+0;0;0,0.005676353;0.1993939;0.01448654,0.01520701;0.4990723;0.02288108,0.1231442;0.3698176;-0.01123274,0.1919774;0.09907034;0.007685885,0.2425578;-0.1736974;-0.03025316,-0.1000889;0.3595776;0.005209098,-0.1933495;0.09557417;0.007363743,-0.2832504;-0.1682338;-0.01952882,0.0692703;0.004437747;-0.0397735,0.08079348;-0.3729201;0.00345001,0.07665158;-0.7160897;0.07213354,0.07088584;-0.7035145;-0.0261677,-0.07184914;0.003274492;-0.03502827,-0.1043826;-0.3741289;-0.004890626,-0.1271564;-0.7172747;0.06016544,-0.1137657;-0.7628936;-0.003885187,0.01184375;0.399129;0.0227238,0;0;0,0.01017081;0.1993957;0.01174291,0.0267962;0.4988563;0.01567258,0.1296015;0.3683358;-0.02410731,0.1974334;0.09736791;-0.004736351,0.2310993;-0.1746601;-0.06189709,-0.09248166;0.3605148;0.01367914,-0.2499728;0.1317376;0.04914033,-0.4623072;-0.04933442;0.02618365,0.06692075;0.004464626;-0.04360825,0.08672179;-0.3705191;0.01465949,0.09056361;-0.7110522;0.09542114,0.09434354;-0.7623465;0.0373096,-0.07406135;0.001895369;-0.03018813,-0.1038381;-0.3736764;0.01940207,-0.1176672;-0.7147332;0.09679054,-0.1273587;-0.7033592;-0.0009803772,0.02112203;0.3990263;0.01700594,16.04453
+0;0;0,0.005405817;0.199408;0.01439582,0.01463587;0.4990979;0.02272063,0.1226788;0.3696948;-0.01118924,0.1913946;0.09888762;0.00729402,0.2414387;-0.1740141;-0.03039254,-0.1006001;0.3594842;0.005513897,-0.1988294;0.09730732;0.009294289,-0.2961242;-0.1637397;-0.01878041,0.06926215;0.004358341;-0.03979648,0.08024334;-0.3730853;0.002814349,0.07586445;-0.7161793;0.07186034,0.06997926;-0.7036085;-0.02643303,-0.07182927;0.003373442;-0.03505958,-0.1050446;-0.3740381;-0.00578016,-0.1282236;-0.7170823;0.05966786,-0.1145981;-0.7622097;-0.004909314,0.01136047;0.3991516;0.02258239,0;0;0,0.01010715;0.1994117;0.01152429,0.02665323;0.4988785;0.01532586,0.1294513;0.3683166;-0.02446114,0.1968899;0.09726363;-0.004907891,0.2302347;-0.1748331;-0.06192951,-0.09267256;0.360696;0.01394343,-0.2533513;0.1342361;0.04997465,-0.4659176;-0.04657632;0.02711745,0.06691165;0.00447905;-0.04362073,0.08660723;-0.3705581;0.01433846,0.09049083;-0.7111042;0.09504327,0.0943236;-0.7625089;0.03709006,-0.07403658;0.001879733;-0.03024981,-0.1044686;-0.3736071;0.01958506,-0.1179762;-0.7147665;0.09657763,-0.1278638;-0.703406;-0.001171045,0.02100045;0.3990479;0.01669721,16.05601
+0;0;0,0.005405817;0.199408;0.01439582,0.01463587;0.4990979;0.02272063,0.1226788;0.3696948;-0.01118924,0.1913946;0.09888762;0.00729402,0.2414387;-0.1740141;-0.03039254,-0.1006001;0.3594842;0.005513897,-0.1988294;0.09730732;0.009294289,-0.2961242;-0.1637397;-0.01878041,0.06926215;0.004358341;-0.03979648,0.08024334;-0.3730853;0.002814349,0.07586445;-0.7161793;0.07186034,0.06997926;-0.7036085;-0.02643303,-0.07182927;0.003373442;-0.03505958,-0.1050446;-0.3740381;-0.00578016,-0.1282236;-0.7170823;0.05966786,-0.1145981;-0.7622097;-0.004909314,0.01136047;0.3991516;0.02258239,0;0;0,0.01010715;0.1994117;0.01152429,0.02665323;0.4988785;0.01532586,0.1294513;0.3683166;-0.02446114,0.1968899;0.09726363;-0.004907891,0.2302347;-0.1748331;-0.06192951,-0.09267256;0.360696;0.01394343,-0.2533513;0.1342361;0.04997465,-0.4659176;-0.04657632;0.02711745,0.06691165;0.00447905;-0.04362073,0.08660723;-0.3705581;0.01433846,0.09049083;-0.7111042;0.09504327,0.0943236;-0.7625089;0.03709006,-0.07403658;0.001879733;-0.03024981,-0.1044686;-0.3736071;0.01958506,-0.1179762;-0.7147665;0.09657763,-0.1278638;-0.703406;-0.001171045,0.02100045;0.3990479;0.01669721,16.06724
+0;0;0,0.005405817;0.199408;0.01439582,0.01463587;0.4990979;0.02272063,0.1226788;0.3696948;-0.01118924,0.1913946;0.09888762;0.00729402,0.2414387;-0.1740141;-0.03039254,-0.1006001;0.3594842;0.005513897,-0.1988294;0.09730732;0.009294289,-0.2961242;-0.1637397;-0.01878041,0.06926215;0.004358341;-0.03979648,0.08024334;-0.3730853;0.002814349,0.07586445;-0.7161793;0.07186034,0.06997926;-0.7036085;-0.02643303,-0.07182927;0.003373442;-0.03505958,-0.1050446;-0.3740381;-0.00578016,-0.1282236;-0.7170823;0.05966786,-0.1145981;-0.7622097;-0.004909314,0.01136047;0.3991516;0.02258239,0;0;0,0.0101207;0.1994189;0.011387,0.02663902;0.4988882;0.01500285,0.1294378;0.3684398;-0.02482294,0.1967636;0.09735599;-0.005308259,0.2297886;-0.1748628;-0.06193218,-0.09267062;0.3607026;0.01393015,-0.2553852;0.1356725;0.04978258,-0.4711437;-0.04152074;0.02854944,0.06683707;0.004474396;-0.0437354,0.08661976;-0.3705751;0.01411362,0.09044548;-0.7111244;0.09480776,0.0779594;-0.6997801;-0.002639994,-0.07412716;0.001892657;-0.03002636,-0.1047308;-0.3736676;0.01914582,-0.118143;-0.7148141;0.09621195,-0.1281524;-0.7034642;-0.001522318,0.02100625;0.3990577;0.01647041,16.08937
+0;0;0,0.005454413;0.1994047;0.0144228,0.01467181;0.4990938;0.02278722,0.1226821;0.3695416;-0.01116368,0.1909619;0.09859702;0.006917382,0.2408695;-0.1743619;-0.03053434,-0.1008971;0.3599366;0.006853173,-0.2023884;0.09900045;0.01029758,-0.3074583;-0.15883;-0.01943035,0.06925041;0.004398315;-0.0398125,0.07934447;-0.3731097;0.002446234,0.07501851;-0.7161676;0.07167453,0.06880762;-0.7035912;-0.02659982,-0.0718222;0.003333436;-0.03507793,-0.1057313;-0.3740384;-0.006083073,-0.1291461;-0.7170177;0.05962035,-0.1155388;-0.7619407;-0.005197689,0.01141221;0.3991471;0.02263748,0;0;0,0.0101207;0.1994189;0.011387,0.02663902;0.4988882;0.01500285,0.1294378;0.3684398;-0.02482294,0.1967636;0.09735599;-0.005308259,0.2297886;-0.1748628;-0.06193218,-0.09267062;0.3607026;0.01393015,-0.2553852;0.1356725;0.04978258,-0.4711437;-0.04152074;0.02854944,0.06683707;0.004474396;-0.0437354,0.08661976;-0.3705751;0.01411362,0.09044548;-0.7111244;0.09480776,0.0779594;-0.6997801;-0.002639994,-0.07412716;0.001892657;-0.03002636,-0.1047308;-0.3736676;0.01914582,-0.118143;-0.7148141;0.09621195,-0.1281524;-0.7034642;-0.001522318,0.02100625;0.3990577;0.01647041,16.11153
+0;0;0,0.005454413;0.1994047;0.0144228,0.01467181;0.4990938;0.02278722,0.1226821;0.3695416;-0.01116368,0.1909619;0.09859702;0.006917382,0.2408695;-0.1743619;-0.03053434,-0.1008971;0.3599366;0.006853173,-0.2023884;0.09900045;0.01029758,-0.3074583;-0.15883;-0.01943035,0.06925041;0.004398315;-0.0398125,0.07934447;-0.3731097;0.002446234,0.07501851;-0.7161676;0.07167453,0.06880762;-0.7035912;-0.02659982,-0.0718222;0.003333436;-0.03507793,-0.1057313;-0.3740384;-0.006083073,-0.1291461;-0.7170177;0.05962035,-0.1155388;-0.7619407;-0.005197689,0.01141221;0.3991471;0.02263748,0;0;0,0.01016689;0.1994267;0.01120804,0.02668925;0.4988971;0.01469117,0.1294886;0.3684787;-0.02511038,0.1966993;0.09735334;-0.005776525,0.2294129;-0.1749137;-0.06234927,-0.09268449;0.3608987;0.01382654,-0.2583824;0.1380851;0.04985839,-0.474422;-0.03878574;0.02879623,0.0667377;0.004461957;-0.04388816,0.08662045;-0.3706085;0.0137904,0.09039525;-0.7111314;0.09459844,0.09495948;-0.7627909;0.0370581,-0.07420924;0.001913424;-0.02982161,-0.1053066;-0.3736203;0.01924356,-0.1183283;-0.7148476;0.09601814,-0.1283979;-0.7035083;-0.001707941,0.02105857;0.3990673;0.01620855,16.123
+0;0;0,0.005454413;0.1994047;0.0144228,0.01467181;0.4990938;0.02278722,0.1226821;0.3695416;-0.01116368,0.1909619;0.09859702;0.006917382,0.2408695;-0.1743619;-0.03053434,-0.1008971;0.3599366;0.006853173,-0.2023884;0.09900045;0.01029758,-0.3074583;-0.15883;-0.01943035,0.06925041;0.004398315;-0.0398125,0.07934447;-0.3731097;0.002446234,0.07501851;-0.7161676;0.07167453,0.06880762;-0.7035912;-0.02659982,-0.0718222;0.003333436;-0.03507793,-0.1057313;-0.3740384;-0.006083073,-0.1291461;-0.7170177;0.05962035,-0.1155388;-0.7619407;-0.005197689,0.01141221;0.3991471;0.02263748,0;0;0,0.01016689;0.1994267;0.01120804,0.02668925;0.4988971;0.01469117,0.1294886;0.3684787;-0.02511038,0.1966993;0.09735334;-0.005776525,0.2294129;-0.1749137;-0.06234927,-0.09268449;0.3608987;0.01382654,-0.2583824;0.1380851;0.04985839,-0.474422;-0.03878574;0.02879623,0.0667377;0.004461957;-0.04388816,0.08662045;-0.3706085;0.0137904,0.09039525;-0.7111314;0.09459844,0.09495948;-0.7627909;0.0370581,-0.07420924;0.001913424;-0.02982161,-0.1053066;-0.3736203;0.01924356,-0.1183283;-0.7148476;0.09601814,-0.1283979;-0.7035083;-0.001707941,0.02105857;0.3990673;0.01620855,16.13415
+0;0;0,0.005487216;0.1994073;0.01437461,0.01469735;0.499099;0.02264848,0.1226167;0.3693153;-0.01139829,0.1910907;0.09841487;0.006609298,0.2406468;-0.1745975;-0.03091972,-0.1011545;0.3604634;0.00757123,-0.2049487;0.1004341;0.01096116,-0.3203421;-0.1528903;-0.01922394,0.06916613;0.004448632;-0.03995318,0.07822802;-0.3730953;0.002218097,0.07382116;-0.7161558;0.07142896,0.06741368;-0.7035801;-0.02683263,-0.07187784;0.003279531;-0.03496886,-0.1069418;-0.3740189;-0.006396195,-0.1305358;-0.7169844;0.0593152,-0.1170512;-0.7620758;-0.005333476,0.01144809;0.3991519;0.02253284,0;0;0,0.01033386;0.1994239;0.01110558,0.02739576;0.4988651;0.01438411,0.129903;0.3684643;-0.02549542,0.1968816;0.09728342;-0.006135071,0.2291212;-0.1751022;-0.06240851,-0.09221846;0.3608989;0.01402653,-0.2603436;0.1399613;0.05036538,-0.4785686;-0.03417222;0.02902713,0.06672785;0.00439565;-0.04390981,0.08681159;-0.3706839;0.01363967,0.09061985;-0.7112024;0.09446467,0.07790574;-0.6998715;-0.002951019,-0.07421609;0.001989227;-0.02979957,-0.1054119;-0.3736004;0.01877264,-0.1183773;-0.7147821;0.09575897,-0.1286141;-0.7034459;-0.001949131,0.0215384;0.3990498;0.01599712,16.15632
+0;0;0,0.005487216;0.1994073;0.01437461,0.01469735;0.499099;0.02264848,0.1226167;0.3693153;-0.01139829,0.1910907;0.09841487;0.006609298,0.2406468;-0.1745975;-0.03091972,-0.1011545;0.3604634;0.00757123,-0.2049487;0.1004341;0.01096116,-0.3203421;-0.1528903;-0.01922394,0.06916613;0.004448632;-0.03995318,0.07822802;-0.3730953;0.002218097,0.07382116;-0.7161558;0.07142896,0.06741368;-0.7035801;-0.02683263,-0.07187784;0.003279531;-0.03496886,-0.1069418;-0.3740189;-0.006396195,-0.1305358;-0.7169844;0.0593152,-0.1170512;-0.7620758;-0.005333476,0.01144809;0.3991519;0.02253284,0;0;0,0.01033386;0.1994239;0.01110558,0.02739576;0.4988651;0.01438411,0.129903;0.3684643;-0.02549542,0.1968816;0.09728342;-0.006135071,0.2291212;-0.1751022;-0.06240851,-0.09221846;0.3608989;0.01402653,-0.2603436;0.1399613;0.05036538,-0.4785686;-0.03417222;0.02902713,0.06672785;0.00439565;-0.04390981,0.08681159;-0.3706839;0.01363967,0.09061985;-0.7112024;0.09446467,0.07790574;-0.6998715;-0.002951019,-0.07421609;0.001989227;-0.02979957,-0.1054119;-0.3736004;0.01877264,-0.1183773;-0.7147821;0.09575897,-0.1286141;-0.7034459;-0.001949131,0.0215384;0.3990498;0.01599712,16.16755
+0;0;0,0.005487216;0.1994073;0.01437461,0.01469735;0.499099;0.02264848,0.1226167;0.3693153;-0.01139829,0.1910907;0.09841487;0.006609298,0.2406468;-0.1745975;-0.03091972,-0.1011545;0.3604634;0.00757123,-0.2049487;0.1004341;0.01096116,-0.3203421;-0.1528903;-0.01922394,0.06916613;0.004448632;-0.03995318,0.07822802;-0.3730953;0.002218097,0.07382116;-0.7161558;0.07142896,0.06741368;-0.7035801;-0.02683263,-0.07187784;0.003279531;-0.03496886,-0.1069418;-0.3740189;-0.006396195,-0.1305358;-0.7169844;0.0593152,-0.1170512;-0.7620758;-0.005333476,0.01144809;0.3991519;0.02253284,0;0;0,0.010531;0.1994203;0.01098417,0.02816881;0.4988301;0.01399397,0.1303512;0.3683206;-0.02597671,0.1971338;0.0970881;-0.006663078,0.2290952;-0.1753468;-0.06285641,-0.09173164;0.361089;0.01396002,-0.262591;0.1422204;0.05006584,-0.4823194;-0.03004755;0.0290133,0.06663642;0.004341485;-0.04405381,0.08674984;-0.3707537;0.01338365,0.09051476;-0.7112407;0.09434294,0.09466597;-0.7626872;0.03647028,-0.07434174;0.002124008;-0.02947532,-0.1055868;-0.373526;0.01859545,-0.1185089;-0.7147323;0.09548038,-0.1114004;-0.7631379;0.03381973,0.02209911;0.3990293;0.01571815,16.18978
+0;0;0,0.005400573;0.1994189;0.01424554,0.0144805;0.4991195;0.02233945,0.1223935;0.3689628;-0.01148327,0.19039;0.09796068;0.006801119,0.2403218;-0.1749177;-0.03120198,-0.1009631;0.3589303;0.008746341,-0.2091563;0.1007128;0.01298325,-0.3328427;-0.1486056;-0.01770921,0.06909586;0.004545384;-0.04006371,0.07714521;-0.3729855;0.002428953,0.07267273;-0.7160947;0.07139304,0.06586715;-0.7035246;-0.02684079,-0.07194087;0.003173113;-0.03484886,-0.107988;-0.3740366;-0.006328277,-0.1316583;-0.7170557;0.05907507,-0.1180738;-0.7619087;-0.005828753,0.01127523;0.3991709;0.02228362,0;0;0,0.010531;0.1994203;0.01098417,0.02816881;0.4988301;0.01399397,0.1303512;0.3683206;-0.02597671,0.1971338;0.0970881;-0.006663078,0.2290952;-0.1753468;-0.06285641,-0.09173164;0.361089;0.01396002,-0.262591;0.1422204;0.05006584,-0.4823194;-0.03004755;0.0290133,0.06663642;0.004341485;-0.04405381,0.08674984;-0.3707537;0.01338365,0.09051476;-0.7112407;0.09434294,0.09466597;-0.7626872;0.03647028,-0.07434174;0.002124008;-0.02947532,-0.1055868;-0.373526;0.01859545,-0.1185089;-0.7147323;0.09548038,-0.1114004;-0.7631379;0.03381973,0.02209911;0.3990293;0.01571815,16.21215
+0;0;0,0.005400573;0.1994189;0.01424554,0.0144805;0.4991195;0.02233945,0.1223935;0.3689628;-0.01148327,0.19039;0.09796068;0.006801119,0.2403218;-0.1749177;-0.03120198,-0.1009631;0.3589303;0.008746341,-0.2091563;0.1007128;0.01298325,-0.3328427;-0.1486056;-0.01770921,0.06909586;0.004545384;-0.04006371,0.07714521;-0.3729855;0.002428953,0.07267273;-0.7160947;0.07139304,0.06586715;-0.7035246;-0.02684079,-0.07194087;0.003173113;-0.03484886,-0.107988;-0.3740366;-0.006328277,-0.1316583;-0.7170557;0.05907507,-0.1180738;-0.7619087;-0.005828753,0.01127523;0.3991709;0.02228362,0;0;0,0.0106143;0.1994243;0.01082975,0.02842921;0.4988258;0.01338158,0.1305733;0.3682495;-0.0262881,0.1967534;0.09689957;-0.006554995,0.2282838;-0.1755027;-0.06314865,-0.09163749;0.3614073;0.01398656,-0.2650575;0.1445907;0.05026409,-0.4879107;-0.02362043;0.02925291,0.06656372;0.004299374;-0.04416771,0.08671664;-0.3708063;0.01318695,0.09050556;-0.7112682;0.09425099,0.09463533;-0.762639;0.03627057,-0.07444686;0.002179823;-0.02920468,-0.1056353;-0.3734919;0.01873278,-0.1185674;-0.7147653;0.0953176,-0.112411;-0.7625976;0.03283371,0.02230383;0.3990322;0.01530705,16.22336
+0;0;0,0.005400573;0.1994189;0.01424554,0.0144805;0.4991195;0.02233945,0.1223935;0.3689628;-0.01148327,0.19039;0.09796068;0.006801119,0.2403218;-0.1749177;-0.03120198,-0.1009631;0.3589303;0.008746341,-0.2091563;0.1007128;0.01298325,-0.3328427;-0.1486056;-0.01770921,0.06909586;0.004545384;-0.04006371,0.07714521;-0.3729855;0.002428953,0.07267273;-0.7160947;0.07139304,0.06586715;-0.7035246;-0.02684079,-0.07194087;0.003173113;-0.03484886,-0.107988;-0.3740366;-0.006328277,-0.1316583;-0.7170557;0.05907507,-0.1180738;-0.7619087;-0.005828753,0.01127523;0.3991709;0.02228362,0;0;0,0.0106143;0.1994243;0.01082975,0.02842921;0.4988258;0.01338158,0.1305733;0.3682495;-0.0262881,0.1967534;0.09689957;-0.006554995,0.2282838;-0.1755027;-0.06314865,-0.09163749;0.3614073;0.01398656,-0.2650575;0.1445907;0.05026409,-0.4879107;-0.02362043;0.02925291,0.06656372;0.004299374;-0.04416771,0.08671664;-0.3708063;0.01318695,0.09050556;-0.7112682;0.09425099,0.09463533;-0.762639;0.03627057,-0.07444686;0.002179823;-0.02920468,-0.1056353;-0.3734919;0.01873278,-0.1185674;-0.7147653;0.0953176,-0.112411;-0.7625976;0.03283371,0.02230383;0.3990322;0.01530705,16.24564
+0;0;0,0.005359208;0.1994226;0.01420975,0.0143195;0.4991286;0.02223535,0.1221798;0.3689859;-0.01190311,0.1900078;0.09794179;0.006385254,0.2402468;-0.17487;-0.03169088,-0.1011253;0.3591325;0.008494068,-0.2140081;0.1029682;0.01460482,-0.3488152;-0.1404255;-0.01680464,0.06894449;0.004561498;-0.04032182,0.07586787;-0.3730114;0.001995891,0.0713961;-0.7161404;0.07086167,0.06456582;-0.7035736;-0.02736986,-0.0720558;0.003164881;-0.03461134,-0.1092185;-0.3739779;-0.006643254,-0.1329292;-0.717063;0.05839886,-0.1193966;-0.7617642;-0.00669032,0.01116157;0.3991784;0.02220481,0;0;0,0.01072187;0.1994231;0.01074493,0.02879957;0.4988115;0.01302906,0.1308028;0.3681492;-0.02666743,0.1968703;0.09676313;-0.007053582,0.2279862;-0.1757731;-0.06323017,-0.09137585;0.3614935;0.01409848,-0.2667639;0.1462474;0.0502668,-0.4912433;-0.01965702;0.02825103,0.06654842;0.004290204;-0.04419165,0.08665946;-0.3708472;0.01297047,0.09047183;-0.7113467;0.09387501,0.09424462;-0.7622777;0.03525817,-0.07445072;0.002194979;-0.02919371,-0.1054745;-0.3735821;0.01801995,-0.1184686;-0.7147858;0.09490406,-0.1290539;-0.7034788;-0.002761327,0.0226004;0.399024;0.01503372,16.25721
+0;0;0,0.005359208;0.1994226;0.01420975,0.0143195;0.4991286;0.02223535,0.1221798;0.3689859;-0.01190311,0.1900078;0.09794179;0.006385254,0.2402468;-0.17487;-0.03169088,-0.1011253;0.3591325;0.008494068,-0.2140081;0.1029682;0.01460482,-0.3488152;-0.1404255;-0.01680464,0.06894449;0.004561498;-0.04032182,0.07586787;-0.3730114;0.001995891,0.0713961;-0.7161404;0.07086167,0.06456582;-0.7035736;-0.02736986,-0.0720558;0.003164881;-0.03461134,-0.1092185;-0.3739779;-0.006643254,-0.1329292;-0.717063;0.05839886,-0.1193966;-0.7617642;-0.00669032,0.01116157;0.3991784;0.02220481,0;0;0,0.01091528;0.1994149;0.01070279,0.02926321;0.4987881;0.01286532,0.1312253;0.3683445;-0.02687876,0.196948;0.09687856;-0.007212657,0.2276784;-0.1756872;-0.06345826,-0.09110822;0.3618515;0.01424858,-0.2688185;0.1484877;0.05023457,-0.4949788;-0.01489404;0.0266143,0.06653221;0.004273562;-0.04421766,0.08661553;-0.3708613;0.01297091,0.09045032;-0.7113466;0.0939341,0.09396504;-0.7618618;0.03473144,-0.07446049;0.002211769;-0.0291675,-0.1048896;-0.3736375;0.01785775,-0.1185045;-0.7148411;0.09463475,-0.1291797;-0.7035379;-0.003020123,0.0229932;0.3990057;0.01490294,16.2791
+0;0;0,0.005359208;0.1994226;0.01420975,0.0143195;0.4991286;0.02223535,0.1221798;0.3689859;-0.01190311,0.1900078;0.09794179;0.006385254,0.2402468;-0.17487;-0.03169088,-0.1011253;0.3591325;0.008494068,-0.2140081;0.1029682;0.01460482,-0.3488152;-0.1404255;-0.01680464,0.06894449;0.004561498;-0.04032182,0.07586787;-0.3730114;0.001995891,0.0713961;-0.7161404;0.07086167,0.06456582;-0.7035736;-0.02736986,-0.0720558;0.003164881;-0.03461134,-0.1092185;-0.3739779;-0.006643254,-0.1329292;-0.717063;0.05839886,-0.1193966;-0.7617642;-0.00669032,0.01116157;0.3991784;0.02220481,0;0;0,0.01091528;0.1994149;0.01070279,0.02926321;0.4987881;0.01286532,0.1312253;0.3683445;-0.02687876,0.196948;0.09687856;-0.007212657,0.2276784;-0.1756872;-0.06345826,-0.09110822;0.3618515;0.01424858,-0.2688185;0.1484877;0.05023457,-0.4949788;-0.01489404;0.0266143,0.06653221;0.004273562;-0.04421766,0.08661553;-0.3708613;0.01297091,0.09045032;-0.7113466;0.0939341,0.09396504;-0.7618618;0.03473144,-0.07446049;0.002211769;-0.0291675,-0.1048896;-0.3736375;0.01785775,-0.1185045;-0.7148411;0.09463475,-0.1291797;-0.7035379;-0.003020123,0.0229932;0.3990057;0.01490294,16.29064
+0;0;0,0.005643851;0.1994155;0.01419915,0.01511945;0.4991066;0.02218358,0.1226958;0.3687609;-0.01209525,0.1901712;0.0976257;0.006146198,0.2411279;-0.1750458;-0.03198088,-0.1005941;0.3593405;0.008546214,-0.217053;0.1047896;0.01496256,-0.3636602;-0.1318562;-0.01512232,0.06896137;0.004522386;-0.04029737,0.07544913;-0.3730989;0.001656484,0.07107839;-0.7163068;0.07013401,0.06423537;-0.7037293;-0.02809853,-0.07202002;0.003216975;-0.03468093,-0.1096216;-0.3738096;-0.005748674,-0.1333781;-0.7170407;0.05850156,-0.1198136;-0.7611638;-0.007238582,0.01178302;0.3991622;0.02217012,0;0;0,0.01100651;0.1994139;0.01062877,0.02949022;0.4987795;0.01268326,0.1313225;0.3680581;-0.0270531,0.1967625;0.09652758;-0.007335635,0.2265706;-0.1761331;-0.06361757,-0.09098111;0.3620285;0.01447935,-0.2702146;0.1499049;0.0502415,-0.4990568;-0.009652376;0.02631055,0.06646658;0.004261838;-0.04431738,0.0865363;-0.3708628;0.01294224,0.09030699;-0.7112994;0.09411316,0.09392406;-0.7619509;0.03510237,-0.07458388;0.002245187;-0.02884793,-0.1050147;-0.373661;0.01771945,-0.1189301;-0.7148609;0.0944589,-0.1297208;-0.7035669;-0.003181495,0.0231811;0.3990003;0.01475623,16.31267
+0;0;0,0.005643851;0.1994155;0.01419915,0.01511945;0.4991066;0.02218358,0.1226958;0.3687609;-0.01209525,0.1901712;0.0976257;0.006146198,0.2411279;-0.1750458;-0.03198088,-0.1005941;0.3593405;0.008546214,-0.217053;0.1047896;0.01496256,-0.3636602;-0.1318562;-0.01512232,0.06896137;0.004522386;-0.04029737,0.07544913;-0.3730989;0.001656484,0.07107839;-0.7163068;0.07013401,0.06423537;-0.7037293;-0.02809853,-0.07202002;0.003216975;-0.03468093,-0.1096216;-0.3738096;-0.005748674,-0.1333781;-0.7170407;0.05850156,-0.1198136;-0.7611638;-0.007238582,0.01178302;0.3991622;0.02217012,0;0;0,0.01100651;0.1994139;0.01062877,0.02949022;0.4987795;0.01268326,0.1313225;0.3680581;-0.0270531,0.1967625;0.09652758;-0.007335635,0.2265706;-0.1761331;-0.06361757,-0.09098111;0.3620285;0.01447935,-0.2702146;0.1499049;0.0502415,-0.4990568;-0.009652376;0.02631055,0.06646658;0.004261838;-0.04431738,0.0865363;-0.3708628;0.01294224,0.09030699;-0.7112994;0.09411316,0.09392406;-0.7619509;0.03510237,-0.07458388;0.002245187;-0.02884793,-0.1050147;-0.373661;0.01771945,-0.1189301;-0.7148609;0.0944589,-0.1297208;-0.7035669;-0.003181495,0.0231811;0.3990003;0.01475623,16.32395
+0;0;0,0.005643851;0.1994155;0.01419915,0.01511945;0.4991066;0.02218358,0.1226958;0.3687609;-0.01209525,0.1901712;0.0976257;0.006146198,0.2411279;-0.1750458;-0.03198088,-0.1005941;0.3593405;0.008546214,-0.217053;0.1047896;0.01496256,-0.3636602;-0.1318562;-0.01512232,0.06896137;0.004522386;-0.04029737,0.07544913;-0.3730989;0.001656484,0.07107839;-0.7163068;0.07013401,0.06423537;-0.7037293;-0.02809853,-0.07202002;0.003216975;-0.03468093,-0.1096216;-0.3738096;-0.005748674,-0.1333781;-0.7170407;0.05850156,-0.1198136;-0.7611638;-0.007238582,0.01178302;0.3991622;0.02217012,0;0;0,0.01108706;0.1994133;0.01055472,0.02967789;0.4987737;0.01240248,0.131549;0.3681362;-0.02716119,0.196306;0.09641472;-0.007823331,0.2262062;-0.1763484;-0.06355747,-0.09084035;0.3620949;0.01442068,-0.2718401;0.1514267;0.04988877,-0.5031174;-0.004477724;0.02530025,0.06644289;0.00423727;-0.04435524,0.08658379;-0.3708821;0.0129144,0.09029537;-0.7113235;0.09406796,0.09375326;-0.7619542;0.03501936,-0.07458425;0.002271142;-0.02884496,-0.1058592;-0.3734792;0.01841529,-0.1189943;-0.7147596;0.09493458,-0.1298092;-0.7034736;-0.00270161,0.02334451;0.3989975;0.01454453,16.34622
+0;0;0,0.005727341;0.1994137;0.01419101,0.01528635;0.4991027;0.0221512,0.1227394;0.3686613;-0.0123592,0.1904514;0.09758681;0.005908862,0.2408671;-0.1751764;-0.03228115,-0.1005249;0.3595309;0.008584641,-0.2229178;0.1078515;0.01738486,-0.378351;-0.1231063;-0.01259869,0.06893215;0.004416639;-0.04035904,0.07485725;-0.3732366;0.001389138,0.07045689;-0.716459;0.06979266,0.06353432;-0.703882;-0.02843422,-0.07203135;0.003349012;-0.03464489,-0.1099792;-0.3736504;-0.005810324,-0.1337981;-0.7168063;0.05881685,-0.1202923;-0.7602049;-0.007743236,0.011928;0.3991591;0.02214759,0;0;0,0.01108706;0.1994133;0.01055472,0.02967789;0.4987737;0.01240248,0.131549;0.3681362;-0.02716119,0.196306;0.09641472;-0.007823331,0.2262062;-0.1763484;-0.06355747,-0.09084035;0.3620949;0.01442068,-0.2718401;0.1514267;0.04988877,-0.5031174;-0.004477724;0.02530025,0.06644289;0.00423727;-0.04435524,0.08658379;-0.3708821;0.0129144,0.09029537;-0.7113235;0.09406796,0.09375326;-0.7619542;0.03501936,-0.07458425;0.002271142;-0.02884496,-0.1058592;-0.3734792;0.01841529,-0.1189943;-0.7147596;0.09493458,-0.1298092;-0.7034736;-0.00270161,0.02334451;0.3989975;0.01454453,16.35765
+0;0;0,0.005727341;0.1994137;0.01419101,0.01528635;0.4991027;0.0221512,0.1227394;0.3686613;-0.0123592,0.1904514;0.09758681;0.005908862,0.2408671;-0.1751764;-0.03228115,-0.1005249;0.3595309;0.008584641,-0.2229178;0.1078515;0.01738486,-0.378351;-0.1231063;-0.01259869,0.06893215;0.004416639;-0.04035904,0.07485725;-0.3732366;0.001389138,0.07045689;-0.716459;0.06979266,0.06353432;-0.703882;-0.02843422,-0.07203135;0.003349012;-0.03464489,-0.1099792;-0.3736504;-0.005810324,-0.1337981;-0.7168063;0.05881685,-0.1202923;-0.7602049;-0.007743236,0.011928;0.3991591;0.02214759,0;0;0,0.01108706;0.1994133;0.01055472,0.02967789;0.4987737;0.01240248,0.131549;0.3681362;-0.02716119,0.196306;0.09641472;-0.007823331,0.2262062;-0.1763484;-0.06355747,-0.09084035;0.3620949;0.01442068,-0.2718401;0.1514267;0.04988877,-0.5031174;-0.004477724;0.02530025,0.06644289;0.00423727;-0.04435524,0.08658379;-0.3708821;0.0129144,0.09029537;-0.7113235;0.09406796,0.09375326;-0.7619542;0.03501936,-0.07458425;0.002271142;-0.02884496,-0.1058592;-0.3734792;0.01841529,-0.1189943;-0.7147596;0.09493458,-0.1298092;-0.7034736;-0.00270161,0.02334451;0.3989975;0.01454453,16.36877
+0;0;0,0.005727341;0.1994137;0.01419101,0.01528635;0.4991027;0.0221512,0.1227394;0.3686613;-0.0123592,0.1904514;0.09758681;0.005908862,0.2408671;-0.1751764;-0.03228115,-0.1005249;0.3595309;0.008584641,-0.2229178;0.1078515;0.01738486,-0.378351;-0.1231063;-0.01259869,0.06893215;0.004416639;-0.04035904,0.07485725;-0.3732366;0.001389138,0.07045689;-0.716459;0.06979266,0.06353432;-0.703882;-0.02843422,-0.07203135;0.003349012;-0.03464489,-0.1099792;-0.3736504;-0.005810324,-0.1337981;-0.7168063;0.05881685,-0.1202923;-0.7602049;-0.007743236,0.011928;0.3991591;0.02214759,0;0;0,0.01115294;0.1994116;0.01051825,0.02985021;0.4987658;0.01232019,0.1316101;0.3680387;-0.02736945,0.196104;0.09625176;-0.008072099,0.2260449;-0.1764279;-0.06419127,-0.0907895;0.3623684;0.01453169,-0.2729816;0.1526745;0.0496678,-0.5055671;-0.0009721667;0.02327368,0.06640936;0.004209498;-0.04440807,0.08653213;-0.370945;0.01263712,0.09017763;-0.7113711;0.09385803,0.09417881;-0.7616132;0.03431657,-0.07461058;0.002317994;-0.02877306,-0.1048832;-0.3736486;0.01740812,-0.1190898;-0.7148123;0.09425554,-0.129998;-0.7035283;-0.003369883,0.02348526;0.3989918;0.01447464,16.39108
+0;0;0,0.005578028;0.1994212;0.01414481,0.01489474;0.4991195;0.02204735,0.1222516;0.3684168;-0.01278658,0.1897168;0.09729812;0.005736474,0.2398365;-0.1755185;-0.03246171,-0.1005965;0.3585594;0.009481945,-0.2289304;0.1099292;0.02013366,-0.3944745;-0.1139528;-0.009395463,0.06878287;0.004565632;-0.04059645,0.07346136;-0.37312;0.001016624,0.06898174;-0.7162697;0.06977849,0.0616766;-0.7037096;-0.02841768,-0.07213102;0.003173732;-0.0344535,-0.1117449;-0.3736775;-0.005925134,-0.1352815;-0.7169016;0.05844288,-0.1222895;-0.7605364;-0.007958442,0.01161875;0.3991731;0.02206179,0;0;0,0.01117189;0.1994117;0.01049645,0.02983084;0.4987685;0.01229268,0.1315648;0.3680338;-0.02749881,0.1956751;0.0961476;-0.008321516,0.2254356;-0.1765793;-0.06430705,-0.09084795;0.3625371;0.01464405,-0.2743473;0.1539922;0.04981512,-0.5083197;0.002681643;0.02221039,0.06638732;0.004196936;-0.04444221,0.0865185;-0.3709803;0.01245067,0.09020644;-0.7113889;0.09374259,0.09429585;-0.761827;0.03447213,-0.07462639;0.002339833;-0.02873025,-0.1049552;-0.3736414;0.01729471,-0.1191573;-0.7147981;0.09417403,-0.1301453;-0.7035191;-0.00344149,0.02348004;0.3989936;0.01444378,16.41314
+0;0;0,0.005578028;0.1994212;0.01414481,0.01489474;0.4991195;0.02204735,0.1222516;0.3684168;-0.01278658,0.1897168;0.09729812;0.005736474,0.2398365;-0.1755185;-0.03246171,-0.1005965;0.3585594;0.009481945,-0.2289304;0.1099292;0.02013366,-0.3944745;-0.1139528;-0.009395463,0.06878287;0.004565632;-0.04059645,0.07346136;-0.37312;0.001016624,0.06898174;-0.7162697;0.06977849,0.0616766;-0.7037096;-0.02841768,-0.07213102;0.003173732;-0.0344535,-0.1117449;-0.3736775;-0.005925134,-0.1352815;-0.7169016;0.05844288,-0.1222895;-0.7605364;-0.007958442,0.01161875;0.3991731;0.02206179,0;0;0,0.01117189;0.1994117;0.01049645,0.02983084;0.4987685;0.01229268,0.1315648;0.3680338;-0.02749881,0.1956751;0.0961476;-0.008321516,0.2254356;-0.1765793;-0.06430705,-0.09084795;0.3625371;0.01464405,-0.2743473;0.1539922;0.04981512,-0.5083197;0.002681643;0.02221039,0.06638732;0.004196936;-0.04444221,0.0865185;-0.3709803;0.01245067,0.09020644;-0.7113889;0.09374259,0.09429585;-0.761827;0.03447213,-0.07462639;0.002339833;-0.02873025,-0.1049552;-0.3736414;0.01729471,-0.1191573;-0.7147981;0.09417403,-0.1301453;-0.7035191;-0.00344149,0.02348004;0.3989936;0.01444378,16.42453
+0;0;0,0.005578028;0.1994212;0.01414481,0.01489474;0.4991195;0.02204735,0.1222516;0.3684168;-0.01278658,0.1897168;0.09729812;0.005736474,0.2398365;-0.1755185;-0.03246171,-0.1005965;0.3585594;0.009481945,-0.2289304;0.1099292;0.02013366,-0.3944745;-0.1139528;-0.009395463,0.06878287;0.004565632;-0.04059645,0.07346136;-0.37312;0.001016624,0.06898174;-0.7162697;0.06977849,0.0616766;-0.7037096;-0.02841768,-0.07213102;0.003173732;-0.0344535,-0.1117449;-0.3736775;-0.005925134,-0.1352815;-0.7169016;0.05844288,-0.1222895;-0.7605364;-0.007958442,0.01161875;0.3991731;0.02206179,0;0;0,0.01117189;0.1994117;0.01049645,0.02983084;0.4987685;0.01229268,0.1315648;0.3680338;-0.02749881,0.1956751;0.0961476;-0.008321516,0.2254356;-0.1765793;-0.06430705,-0.09084795;0.3625371;0.01464405,-0.2743473;0.1539922;0.04981512,-0.5083197;0.002681643;0.02221039,0.06638732;0.004196936;-0.04444221,0.0865185;-0.3709803;0.01245067,0.09020644;-0.7113889;0.09374259,0.09429585;-0.761827;0.03447213,-0.07462639;0.002339833;-0.02873025,-0.1049552;-0.3736414;0.01729471,-0.1191573;-0.7147981;0.09417403,-0.1301453;-0.7035191;-0.00344149,0.02348004;0.3989936;0.01444378,16.44665
+0;0;0,0.005863112;0.1994106;0.01417935,0.01571978;0.4990904;0.02211781,0.1227514;0.3683248;-0.01309317,0.1898927;0.09714049;0.005644487,0.2396174;-0.1757519;-0.03252877,-0.1000845;0.3588685;0.009580444,-0.2330148;0.112676;0.0204778,-0.408309;-0.1039071;-0.007157413,0.06877596;0.004524244;-0.04061279,0.07305918;-0.3731525;0.001124058,0.06859211;-0.7163565;0.06961481,0.06122263;-0.7037882;-0.02857801,-0.07213262;0.003223158;-0.03444554,-0.1121837;-0.3735796;-0.005887134,-0.1355893;-0.7169001;0.05801314,-0.1225015;-0.7601193;-0.008827366,0.01225448;0.3991505;0.02212339,0;0;0,0.0112157;0.1994113;0.01045649,0.02989002;0.4987676;0.01219852,0.1315825;0.3680093;-0.02767104,0.1954709;0.09607723;-0.008404087,0.2250685;-0.176659;-0.06443015,-0.09089798;0.3628894;0.01488367,-0.2751407;0.154921;0.04957844,-0.5098486;0.00468038;0.02237616,0.06636994;0.004170591;-0.04447065,0.08650438;-0.3710071;0.01241791,0.09014212;-0.7114439;0.09359384,0.09420782;-0.7622027;0.03475942,-0.07461777;0.002362357;-0.02875078,-0.1051128;-0.3735822;0.01746331,-0.1191677;-0.7147837;0.09417032,-0.1122469;-0.7632757;0.0325983,0.02354095;0.3989929;0.01436504,16.45831
+0;0;0,0.005863112;0.1994106;0.01417935,0.01571978;0.4990904;0.02211781,0.1227514;0.3683248;-0.01309317,0.1898927;0.09714049;0.005644487,0.2396174;-0.1757519;-0.03252877,-0.1000845;0.3588685;0.009580444,-0.2330148;0.112676;0.0204778,-0.408309;-0.1039071;-0.007157413,0.06877596;0.004524244;-0.04061279,0.07305918;-0.3731525;0.001124058,0.06859211;-0.7163565;0.06961481,0.06122263;-0.7037882;-0.02857801,-0.07213262;0.003223158;-0.03444554,-0.1121837;-0.3735796;-0.005887134,-0.1355893;-0.7169001;0.05801314,-0.1225015;-0.7601193;-0.008827366,0.01225448;0.3991505;0.02212339,0;0;0,0.0112714;0.1994093;0.01043525,0.02994573;0.4987659;0.01218234,0.1315484;0.3679771;-0.02792523,0.1954398;0.0960432;-0.008693533,0.2246156;-0.1767605;-0.06461246,-0.09084286;0.3629159;0.0149153,-0.2766647;0.1562834;0.04916785,-0.5126772;0.008316457;0.02081463,0.06633917;0.004170936;-0.04451649,0.08649341;-0.3710233;0.01225604,0.09021924;-0.7114962;0.09327614,0.09392837;-0.7623127;0.03449728,-0.07462173;0.002357508;-0.02874089,-0.1051632;-0.3736186;0.01718508,-0.1191524;-0.7148312;0.09385496,-0.1121806;-0.7630247;0.03191002,0.02360494;0.3989904;0.01434037,16.48018
+0;0;0,0.005863112;0.1994106;0.01417935,0.01571978;0.4990904;0.02211781,0.1227514;0.3683248;-0.01309317,0.1898927;0.09714049;0.005644487,0.2396174;-0.1757519;-0.03252877,-0.1000845;0.3588685;0.009580444,-0.2330148;0.112676;0.0204778,-0.408309;-0.1039071;-0.007157413,0.06877596;0.004524244;-0.04061279,0.07305918;-0.3731525;0.001124058,0.06859211;-0.7163565;0.06961481,0.06122263;-0.7037882;-0.02857801,-0.07213262;0.003223158;-0.03444554,-0.1121837;-0.3735796;-0.005887134,-0.1355893;-0.7169001;0.05801314,-0.1225015;-0.7601193;-0.008827366,0.01225448;0.3991505;0.02212339,0;0;0,0.0112714;0.1994093;0.01043525,0.02994573;0.4987659;0.01218234,0.1315484;0.3679771;-0.02792523,0.1954398;0.0960432;-0.008693533,0.2246156;-0.1767605;-0.06461246,-0.09084286;0.3629159;0.0149153,-0.2766647;0.1562834;0.04916785,-0.5126772;0.008316457;0.02081463,0.06633917;0.004170936;-0.04451649,0.08649341;-0.3710233;0.01225604,0.09021924;-0.7114962;0.09327614,0.09392837;-0.7623127;0.03449728,-0.07462173;0.002357508;-0.02874089,-0.1051632;-0.3736186;0.01718508,-0.1191524;-0.7148312;0.09385496,-0.1121806;-0.7630247;0.03191002,0.02360494;0.3989904;0.01434037,16.50247
+0;0;0,0.005843403;0.1994195;0.01406136,0.01570941;0.499103;0.02184259,0.1226978;0.3684692;-0.01353707,0.1897732;0.09729856;0.005629629,0.2393535;-0.1756286;-0.03248245,-0.1003359;0.3593253;0.01005225,-0.2422159;0.1183434;0.02411788,-0.4195154;-0.0964998;-0.004294673,0.06876923;0.004532374;-0.04062328,0.07261318;-0.3731791;0.0008408949,0.06803314;-0.7163974;0.06925294,0.06041696;-0.7038298;-0.02892093,-0.0721407;0.003201618;-0.03443065,-0.112964;-0.3735193;-0.00588516,-0.1363324;-0.7169222;0.05758429,-0.1237134;-0.7608355;-0.008579083,0.01223608;0.3991634;0.02190403,0;0;0,0.01132162;0.1994067;0.01043039,0.03003057;0.4987613;0.01218366,0.1315328;0.3679657;-0.02816129,0.1954211;0.09601659;-0.00913628,0.2245201;-0.176851;-0.0647829,-0.09075243;0.3628703;0.01506452,-0.2787828;0.1581623;0.04881649,-0.5167204;0.01344249;0.01980145,0.06628713;0.004186858;-0.04459246,0.08650455;-0.3709978;0.01222045,0.09024715;-0.7114569;0.0932982,0.09437665;-0.7632245;0.03587855,-0.07466204;0.002350483;-0.02863662,-0.1053128;-0.3736438;0.01706692,-0.1193753;-0.7148375;0.09380758,-0.1307023;-0.7035593;-0.003769033,0.02368142;0.3989863;0.01433341,16.51375
+0;0;0,0.005843403;0.1994195;0.01406136,0.01570941;0.499103;0.02184259,0.1226978;0.3684692;-0.01353707,0.1897732;0.09729856;0.005629629,0.2393535;-0.1756286;-0.03248245,-0.1003359;0.3593253;0.01005225,-0.2422159;0.1183434;0.02411788,-0.4195154;-0.0964998;-0.004294673,0.06876923;0.004532374;-0.04062328,0.07261318;-0.3731791;0.0008408949,0.06803314;-0.7163974;0.06925294,0.06041696;-0.7038298;-0.02892093,-0.0721407;0.003201618;-0.03443065,-0.112964;-0.3735193;-0.00588516,-0.1363324;-0.7169222;0.05758429,-0.1237134;-0.7608355;-0.008579083,0.01223608;0.3991634;0.02190403,0;0;0,0.01132162;0.1994067;0.01043039,0.03003057;0.4987613;0.01218366,0.1315328;0.3679657;-0.02816129,0.1954211;0.09601659;-0.00913628,0.2245201;-0.176851;-0.0647829,-0.09075243;0.3628703;0.01506452,-0.2787828;0.1581623;0.04881649,-0.5167204;0.01344249;0.01980145,0.06628713;0.004186858;-0.04459246,0.08650455;-0.3709978;0.01222045,0.09024715;-0.7114569;0.0932982,0.09437665;-0.7632245;0.03587855,-0.07466204;0.002350483;-0.02863662,-0.1053128;-0.3736438;0.01706692,-0.1193753;-0.7148375;0.09380758,-0.1307023;-0.7035593;-0.003769033,0.02368142;0.3989863;0.01433341,16.52535
+0;0;0,0.005843403;0.1994195;0.01406136,0.01570941;0.499103;0.02184259,0.1226978;0.3684692;-0.01353707,0.1897732;0.09729856;0.005629629,0.2393535;-0.1756286;-0.03248245,-0.1003359;0.3593253;0.01005225,-0.2422159;0.1183434;0.02411788,-0.4195154;-0.0964998;-0.004294673,0.06876923;0.004532374;-0.04062328,0.07261318;-0.3731791;0.0008408949,0.06803314;-0.7163974;0.06925294,0.06041696;-0.7038298;-0.02892093,-0.0721407;0.003201618;-0.03443065,-0.112964;-0.3735193;-0.00588516,-0.1363324;-0.7169222;0.05758429,-0.1237134;-0.7608355;-0.008579083,0.01223608;0.3991634;0.02190403,0;0;0,0.01132162;0.1994067;0.01043039,0.03003057;0.4987613;0.01218366,0.1315328;0.3679657;-0.02816129,0.1954211;0.09601659;-0.00913628,0.2245201;-0.176851;-0.0647829,-0.09075243;0.3628703;0.01506452,-0.2787828;0.1581623;0.04881649,-0.5167204;0.01344249;0.01980145,0.06628713;0.004186858;-0.04459246,0.08650455;-0.3709978;0.01222045,0.09024715;-0.7114569;0.0932982,0.09437665;-0.7632245;0.03587855,-0.07466204;0.002350483;-0.02863662,-0.1053128;-0.3736438;0.01706692,-0.1193753;-0.7148375;0.09380758,-0.1307023;-0.7035593;-0.003769033,0.02368142;0.3989863;0.01433341,16.54725
+0;0;0,0.005920205;0.1994213;0.01400334,0.01597464;0.4991015;0.02165665,0.1229403;0.3686932;-0.01371919,0.1898873;0.09749079;0.005447697,0.2393819;-0.1754615;-0.03259594,-0.1004545;0.359948;0.01087923,-0.2471375;0.1219388;0.02623354,-0.4360468;-0.08294618;-0.0008850824,0.06873212;0.004597565;-0.04067872,0.07238831;-0.3730673;0.001223952,0.06777396;-0.7164018;0.06904812,0.05989399;-0.7038325;-0.02910522,-0.07219508;0.003133135;-0.03432279,-0.1132452;-0.3735839;-0.006053919,-0.1363405;-0.7169522;0.05770208,-0.1239669;-0.7602796;-0.009155937,0.0124324;0.3991643;0.02177041,0;0;0,0.01129926;0.1994111;0.01036967,0.02981574;0.4987786;0.01199506,0.1313732;0.3681751;-0.0285132,0.1953219;0.09626412;-0.009148104,0.2244409;-0.1764309;-0.0656238,-0.09087007;0.3628299;0.01512554,-0.2816785;0.1605906;0.04816217,-0.5203221;0.01680948;0.02030135,0.06613477;0.004230485;-0.04481401,0.0864853;-0.3709082;0.01225466,0.09027649;-0.7113802;0.09327552,0.09457612;-0.7633647;0.03617845,-0.07468859;0.002317294;-0.02856999,-0.1053081;-0.3736804;0.01712659,-0.1193141;-0.7148765;0.09386636,-0.130792;-0.7036055;-0.003691249,0.02354529;0.3989994;0.01418339,16.55883
+0;0;0,0.005920205;0.1994213;0.01400334,0.01597464;0.4991015;0.02165665,0.1229403;0.3686932;-0.01371919,0.1898873;0.09749079;0.005447697,0.2393819;-0.1754615;-0.03259594,-0.1004545;0.359948;0.01087923,-0.2471375;0.1219388;0.02623354,-0.4360468;-0.08294618;-0.0008850824,0.06873212;0.004597565;-0.04067872,0.07238831;-0.3730673;0.001223952,0.06777396;-0.7164018;0.06904812,0.05989399;-0.7038325;-0.02910522,-0.07219508;0.003133135;-0.03432279,-0.1132452;-0.3735839;-0.006053919,-0.1363405;-0.7169522;0.05770208,-0.1239669;-0.7602796;-0.009155937,0.0124324;0.3991643;0.02177041,0;0;0,0.0113117;0.1994113;0.01035312,0.02977043;0.4987826;0.01197739,0.1313313;0.3682427;-0.02863085,0.1952566;0.09627441;-0.01000858,0.224289;-0.176579;-0.06575921,-0.09089179;0.3628308;0.01515632,-0.2852592;0.1638782;0.047393,-0.5275826;0.02667198;0.01817317,0.06608092;0.004225766;-0.04489382,0.08647414;-0.370925;0.01207986,0.09024146;-0.7113385;0.09334747,0.09462581;-0.7632896;0.03620903,-0.07472337;0.002231486;-0.02848575,-0.1059155;-0.3736951;0.01740824,-0.1194862;-0.7149434;0.09399406,-0.131019;-0.7036731;-0.003556922,0.02352265;0.3990018;0.01416141,16.58074
+0;0;0,0.005920205;0.1994213;0.01400334,0.01597464;0.4991015;0.02165665,0.1229403;0.3686932;-0.01371919,0.1898873;0.09749079;0.005447697,0.2393819;-0.1754615;-0.03259594,-0.1004545;0.359948;0.01087923,-0.2471375;0.1219388;0.02623354,-0.4360468;-0.08294618;-0.0008850824,0.06873212;0.004597565;-0.04067872,0.07238831;-0.3730673;0.001223952,0.06777396;-0.7164018;0.06904812,0.05989399;-0.7038325;-0.02910522,-0.07219508;0.003133135;-0.03432279,-0.1132452;-0.3735839;-0.006053919,-0.1363405;-0.7169522;0.05770208,-0.1239669;-0.7602796;-0.009155937,0.0124324;0.3991643;0.02177041,0;0;0,0.0113117;0.1994113;0.01035312,0.02977043;0.4987826;0.01197739,0.1313313;0.3682427;-0.02863085,0.1952566;0.09627441;-0.01000858,0.224289;-0.176579;-0.06575921,-0.09089179;0.3628308;0.01515632,-0.2852592;0.1638782;0.047393,-0.5275826;0.02667198;0.01817317,0.06608092;0.004225766;-0.04489382,0.08647414;-0.370925;0.01207986,0.09024146;-0.7113385;0.09334747,0.09462581;-0.7632896;0.03620903,-0.07472337;0.002231486;-0.02848575,-0.1059155;-0.3736951;0.01740824,-0.1194862;-0.7149434;0.09399406,-0.131019;-0.7036731;-0.003556922,0.02352265;0.3990018;0.01416141,16.59221
+0;0;0,0.006029537;0.1994241;0.01391601,0.0162409;0.4991025;0.02142861,0.1230756;0.3687091;-0.01415745,0.190124;0.0975405;0.005131949,0.2393784;-0.1754115;-0.03322445,-0.1003403;0.360201;0.01085673,-0.2531967;0.1262363;0.0280447,-0.4465911;-0.07436427;0.0005123317,0.06863955;0.004586931;-0.04083592,0.07188328;-0.373116;0.0007572547,0.06716952;-0.7164274;0.06869135,0.0591981;-0.70386;-0.02945426,-0.07226072;0.003140009;-0.03418376,-0.1138195;-0.3735195;-0.005890589,-0.1368487;-0.7170405;0.05706136,-0.1247824;-0.7603443;-0.009878654,0.01264811;0.3991672;0.02159274,0;0;0,0.0113117;0.1994113;0.01035312,0.02977043;0.4987826;0.01197739,0.1313313;0.3682427;-0.02863085,0.1952566;0.09627441;-0.01000858,0.224289;-0.176579;-0.06575921,-0.09089179;0.3628308;0.01515632,-0.2852592;0.1638782;0.047393,-0.5275826;0.02667198;0.01817317,0.06608092;0.004225766;-0.04489382,0.08647414;-0.370925;0.01207986,0.09024146;-0.7113385;0.09334747,0.09462581;-0.7632896;0.03620903,-0.07472337;0.002231486;-0.02848575,-0.1059155;-0.3736951;0.01740824,-0.1194862;-0.7149434;0.09399406,-0.131019;-0.7036731;-0.003556922,0.02352265;0.3990018;0.01416141,16.60361
+0;0;0,0.006029537;0.1994241;0.01391601,0.0162409;0.4991025;0.02142861,0.1230756;0.3687091;-0.01415745,0.190124;0.0975405;0.005131949,0.2393784;-0.1754115;-0.03322445,-0.1003403;0.360201;0.01085673,-0.2531967;0.1262363;0.0280447,-0.4465911;-0.07436427;0.0005123317,0.06863955;0.004586931;-0.04083592,0.07188328;-0.373116;0.0007572547,0.06716952;-0.7164274;0.06869135,0.0591981;-0.70386;-0.02945426,-0.07226072;0.003140009;-0.03418376,-0.1138195;-0.3735195;-0.005890589,-0.1368487;-0.7170405;0.05706136,-0.1247824;-0.7603443;-0.009878654,0.01264811;0.3991672;0.02159274,0;0;0,0.01134401;0.1994111;0.01032205,0.029804;0.4987828;0.01188662,0.1312274;0.3680527;-0.02891841,0.1952576;0.09613028;-0.00998871,0.2245279;-0.1764412;-0.06698045,-0.09085981;0.3628564;0.01551818,-0.2883482;0.1669745;0.04759003,-0.5330966;0.03416081;0.01828508,0.06580292;0.00423264;-0.04529967,0.0864293;-0.3708571;0.01199115,0.09011776;-0.711256;0.09332347,0.09461718;-0.7634175;0.03649691,-0.07479038;0.002225144;-0.02830983,-0.1062584;-0.373671;0.01764534,-0.1194204;-0.7149472;0.09417816,-0.1311551;-0.7036826;-0.003347635,0.02355798;0.3990023;0.01408637,16.62566
+0;0;0,0.006029537;0.1994241;0.01391601,0.0162409;0.4991025;0.02142861,0.1230756;0.3687091;-0.01415745,0.190124;0.0975405;0.005131949,0.2393784;-0.1754115;-0.03322445,-0.1003403;0.360201;0.01085673,-0.2531967;0.1262363;0.0280447,-0.4465911;-0.07436427;0.0005123317,0.06863955;0.004586931;-0.04083592,0.07188328;-0.373116;0.0007572547,0.06716952;-0.7164274;0.06869135,0.0591981;-0.70386;-0.02945426,-0.07226072;0.003140009;-0.03418376,-0.1138195;-0.3735195;-0.005890589,-0.1368487;-0.7170405;0.05706136,-0.1247824;-0.7603443;-0.009878654,0.01264811;0.3991672;0.02159274,0;0;0,0.01143806;0.1994061;0.01031342,0.02991819;0.4987766;0.01194881,0.1311821;0.3678634;-0.02914358,0.1952785;0.09592474;-0.01067704,0.224774;-0.176462;-0.06843093,-0.09074178;0.3628229;0.01558599,-0.2928872;0.1717178;0.04746231,-0.5399405;0.0434099;0.01743382,0.06576607;0.004275238;-0.04534916,0.08633;-0.3708193;0.01193238,0.09003136;-0.7112031;0.09332773,0.09529935;-0.7621905;0.03490438,-0.07475684;0.002138125;-0.02840498,-0.1064855;-0.373785;0.01714853,-0.1197276;-0.7149932;0.09397015,-0.1315372;-0.7037262;-0.003547095,0.02366695;0.3989957;0.01411467,16.64768
+0;0;0,0.006357776;0.1994267;0.01373147,0.01733397;0.4990848;0.02093775,0.1236513;0.3681946;-0.01480135,0.1905988;0.09699827;0.004449962,0.238991;-0.1761187;-0.03382922,-0.1000392;0.3611889;0.01241069,-0.2586918;0.1310367;0.02851441,-0.4600328;-0.06177829;0.0023578,0.06852838;0.004446421;-0.04103765,0.07155015;-0.3733148;3.949553E-05,0.06669378;-0.7166437;0.06787518,0.05816472;-0.7040839;-0.03022221,-0.07231792;0.003328729;-0.03404463,-0.114187;-0.3733365;-0.006290786,-0.1374364;-0.7169312;0.05617665,-0.1252924;-0.7601029;-0.01089371,0.0134533;0.3991605;0.02121977,0;0;0,0.01143806;0.1994061;0.01031342,0.02991819;0.4987766;0.01194881,0.1311821;0.3678634;-0.02914358,0.1952785;0.09592474;-0.01067704,0.224774;-0.176462;-0.06843093,-0.09074178;0.3628229;0.01558599,-0.2928872;0.1717178;0.04746231,-0.5399405;0.0434099;0.01743382,0.06576607;0.004275238;-0.04534916,0.08633;-0.3708193;0.01193238,0.09003136;-0.7112031;0.09332773,0.09529935;-0.7621905;0.03490438,-0.07475684;0.002138125;-0.02840498,-0.1064855;-0.373785;0.01714853,-0.1197276;-0.7149932;0.09397015,-0.1315372;-0.7037262;-0.003547095,0.02366695;0.3989957;0.01411467,16.65939
+0;0;0,0.006357776;0.1994267;0.01373147,0.01733397;0.4990848;0.02093775,0.1236513;0.3681946;-0.01480135,0.1905988;0.09699827;0.004449962,0.238991;-0.1761187;-0.03382922,-0.1000392;0.3611889;0.01241069,-0.2586918;0.1310367;0.02851441,-0.4600328;-0.06177829;0.0023578,0.06852838;0.004446421;-0.04103765,0.07155015;-0.3733148;3.949553E-05,0.06669378;-0.7166437;0.06787518,0.05816472;-0.7040839;-0.03022221,-0.07231792;0.003328729;-0.03404463,-0.114187;-0.3733365;-0.006290786,-0.1374364;-0.7169312;0.05617665,-0.1252924;-0.7601029;-0.01089371,0.0134533;0.3991605;0.02121977,0;0;0,0.01143806;0.1994061;0.01031342,0.02991819;0.4987766;0.01194881,0.1311821;0.3678634;-0.02914358,0.1952785;0.09592474;-0.01067704,0.224774;-0.176462;-0.06843093,-0.09074178;0.3628229;0.01558599,-0.2928872;0.1717178;0.04746231,-0.5399405;0.0434099;0.01743382,0.06576607;0.004275238;-0.04534916,0.08633;-0.3708193;0.01193238,0.09003136;-0.7112031;0.09332773,0.09529935;-0.7621905;0.03490438,-0.07475684;0.002138125;-0.02840498,-0.1064855;-0.373785;0.01714853,-0.1197276;-0.7149932;0.09397015,-0.1315372;-0.7037262;-0.003547095,0.02366695;0.3989957;0.01411467,16.67125
+0;0;0,0.006357776;0.1994267;0.01373147,0.01733397;0.4990848;0.02093775,0.1236513;0.3681946;-0.01480135,0.1905988;0.09699827;0.004449962,0.238991;-0.1761187;-0.03382922,-0.1000392;0.3611889;0.01241069,-0.2586918;0.1310367;0.02851441,-0.4600328;-0.06177829;0.0023578,0.06852838;0.004446421;-0.04103765,0.07155015;-0.3733148;3.949553E-05,0.06669378;-0.7166437;0.06787518,0.05816472;-0.7040839;-0.03022221,-0.07231792;0.003328729;-0.03404463,-0.114187;-0.3733365;-0.006290786,-0.1374364;-0.7169312;0.05617665,-0.1252924;-0.7601029;-0.01089371,0.0134533;0.3991605;0.02121977,0;0;0,0.01156987;0.1994099;0.01009104,0.03015461;0.498776;0.01127232,0.1313561;0.3677611;-0.0296834,0.1954741;0.0958339;-0.01112371,0.2247228;-0.1766027;-0.06876746,-0.09051897;0.3628135;0.01551422,-0.2953717;0.1746079;0.04735757,-0.5494548;0.0606961;0.0179316,0.06556977;0.00431324;-0.04562895,0.08608748;-0.3707165;0.01209246,0.08978304;-0.7111027;0.09347777,0.09468173;-0.7619429;0.03481882,-0.07480827;0.002113196;-0.02827113,-0.1068018;-0.3738166;0.01704083,-0.1196433;-0.7149707;0.09417035,-0.1315905;-0.7037198;-0.003327034,0.02387875;0.3990001;0.01359192,16.6931
+0;0;0,0.00662553;0.1994222;0.01367108,0.01813992;0.4990634;0.02072142,0.1241041;0.3678724;-0.01519918,0.1913207;0.09671974;0.003726274,0.2389922;-0.1765735;-0.03419803,-0.09955211;0.3614489;0.01280078,-0.2641229;0.1355591;0.02983903,-0.4683863;-0.05401976;0.002704347,0.06840328;0.004415585;-0.04124915,0.0713032;-0.3733655;-0.0003461055,0.06645172;-0.7167077;0.06742249,0.05774732;-0.7041517;-0.0306588,-0.07241951;0.003385357;-0.03382239,-0.1145333;-0.3732977;-0.006687213,-0.1379359;-0.7168911;0.05572987,-0.1261029;-0.7599867;-0.01147885,0.01407268;0.3991467;0.02106373,0;0;0,0.01150673;0.199416;0.0100427,0.02992752;0.4987923;0.011177,0.1311096;0.3677467;-0.02993602,0.1952823;0.09584296;-0.01122118,0.2244147;-0.1764897;-0.06941255,-0.09070094;0.3628794;0.01558143,-0.3000427;0.1797029;0.04755701,-0.5585425;0.07645417;0.017266,0.0655463;0.004302178;-0.04566369,0.08598689;-0.3707192;0.01213919,0.08969929;-0.711071;0.09366766,0.09491915;-0.7620419;0.03521707,-0.07476301;0.002148281;-0.02838797,-0.1071139;-0.3738371;0.0162039,-0.1200275;-0.7148387;0.09399299,-0.1320795;-0.7035934;-0.003490388,0.02371094;0.3990131;0.0135143,16.71471
+0;0;0,0.00662553;0.1994222;0.01367108,0.01813992;0.4990634;0.02072142,0.1241041;0.3678724;-0.01519918,0.1913207;0.09671974;0.003726274,0.2389922;-0.1765735;-0.03419803,-0.09955211;0.3614489;0.01280078,-0.2641229;0.1355591;0.02983903,-0.4683863;-0.05401976;0.002704347,0.06840328;0.004415585;-0.04124915,0.0713032;-0.3733655;-0.0003461055,0.06645172;-0.7167077;0.06742249,0.05774732;-0.7041517;-0.0306588,-0.07241951;0.003385357;-0.03382239,-0.1145333;-0.3732977;-0.006687213,-0.1379359;-0.7168911;0.05572987,-0.1261029;-0.7599867;-0.01147885,0.01407268;0.3991467;0.02106373,0;0;0,0.01150673;0.199416;0.0100427,0.02992752;0.4987923;0.011177,0.1311096;0.3677467;-0.02993602,0.1952823;0.09584296;-0.01122118,0.2244147;-0.1764897;-0.06941255,-0.09070094;0.3628794;0.01558143,-0.3000427;0.1797029;0.04755701,-0.5585425;0.07645417;0.017266,0.0655463;0.004302178;-0.04566369,0.08598689;-0.3707192;0.01213919,0.08969929;-0.711071;0.09366766,0.09491915;-0.7620419;0.03521707,-0.07476301;0.002148281;-0.02838797,-0.1071139;-0.3738371;0.0162039,-0.1200275;-0.7148387;0.09399299,-0.1320795;-0.7035934;-0.003490388,0.02371094;0.3990131;0.0135143,16.72625
+0;0;0,0.00662553;0.1994222;0.01367108,0.01813992;0.4990634;0.02072142,0.1241041;0.3678724;-0.01519918,0.1913207;0.09671974;0.003726274,0.2389922;-0.1765735;-0.03419803,-0.09955211;0.3614489;0.01280078,-0.2641229;0.1355591;0.02983903,-0.4683863;-0.05401976;0.002704347,0.06840328;0.004415585;-0.04124915,0.0713032;-0.3733655;-0.0003461055,0.06645172;-0.7167077;0.06742249,0.05774732;-0.7041517;-0.0306588,-0.07241951;0.003385357;-0.03382239,-0.1145333;-0.3732977;-0.006687213,-0.1379359;-0.7168911;0.05572987,-0.1261029;-0.7599867;-0.01147885,0.01407268;0.3991467;0.02106373,0;0;0,0.01152679;0.199423;0.009879924,0.02984491;0.4988064;0.01073476,0.1310798;0.3674785;-0.03006052,0.1952315;0.09555325;-0.011588,0.2247999;-0.1765246;-0.07074325,-0.09064078;0.3626198;0.01576954,-0.3060592;0.1867257;0.04826801,-0.5671353;0.09065496;0.01649216,0.06548262;0.004336211;-0.04575176,0.08574945;-0.3706948;0.01204943,0.08943967;-0.7111203;0.09327053,0.09492725;-0.7622843;0.03511294,-0.07477539;0.00209726;-0.02835916,-0.1075776;-0.3738415;0.01629574,-0.120351;-0.7149491;0.09364216,-0.1324805;-0.7037395;-0.003824756,0.02367355;0.3990267;0.01316689,16.74828
+0;0;0,0.006806202;0.1994241;0.01355338,0.01858127;0.4990596;0.02040649,0.1243075;0.367678;-0.01574907,0.1911115;0.09644246;0.003447052,0.2385825;-0.1768672;-0.03461015,-0.09941657;0.3619624;0.01334662,-0.2699375;0.1405788;0.03100711,-0.4788402;-0.0437481;0.00302005,0.06846824;0.004432954;-0.04113938,0.07092563;-0.3734088;-0.0007709749,0.06600721;-0.7167525;0.06698491,0.05701468;-0.704205;-0.03106888,-0.07237623;0.003358196;-0.03391759,-0.1147723;-0.3733159;-0.007099107,-0.1380521;-0.7169991;0.0548675,-0.126043;-0.7599781;-0.01243666,0.01443209;0.3991466;0.02081767,0;0;0,0.01152679;0.199423;0.009879924,0.02984491;0.4988064;0.01073476,0.1310798;0.3674785;-0.03006052,0.1952315;0.09555325;-0.011588,0.2247999;-0.1765246;-0.07074325,-0.09064078;0.3626198;0.01576954,-0.3060592;0.1867257;0.04826801,-0.5671353;0.09065496;0.01649216,0.06548262;0.004336211;-0.04575176,0.08574945;-0.3706948;0.01204943,0.08943967;-0.7111203;0.09327053,0.09492725;-0.7622843;0.03511294,-0.07477539;0.00209726;-0.02835916,-0.1075776;-0.3738415;0.01629574,-0.120351;-0.7149491;0.09364216,-0.1324805;-0.7037395;-0.003824756,0.02367355;0.3990267;0.01316689,16.77097
+0;0;0,0.006806202;0.1994241;0.01355338,0.01858127;0.4990596;0.02040649,0.1243075;0.367678;-0.01574907,0.1911115;0.09644246;0.003447052,0.2385825;-0.1768672;-0.03461015,-0.09941657;0.3619624;0.01334662,-0.2699375;0.1405788;0.03100711,-0.4788402;-0.0437481;0.00302005,0.06846824;0.004432954;-0.04113938,0.07092563;-0.3734088;-0.0007709749,0.06600721;-0.7167525;0.06698491,0.05701468;-0.704205;-0.03106888,-0.07237623;0.003358196;-0.03391759,-0.1147723;-0.3733159;-0.007099107,-0.1380521;-0.7169991;0.0548675,-0.126043;-0.7599781;-0.01243666,0.01443209;0.3991466;0.02081767,0;0;0,0.0115542;0.1994198;0.009911197,0.02987871;0.4988029;0.01084652,0.1309664;0.3673739;-0.030254,0.1951497;0.09546289;-0.01168275,0.2244532;-0.1766075;-0.0710038,-0.0906093;0.3626136;0.01602053,-0.3116667;0.1938811;0.04862396,-0.5765474;0.1091267;0.01614453,0.06520291;0.004294782;-0.04615338,0.08550417;-0.3706461;0.01221728,0.08926686;-0.7110588;0.09348893,0.09432358;-0.7624797;0.03565239,-0.07484537;0.002064599;-0.02817638,-0.1077237;-0.3739539;0.01574501,-0.1206565;-0.714965;0.09348922,-0.1328976;-0.7037523;-0.003964327,0.02370024;0.3990228;0.01324671,16.78202
+0;0;0,0.006806202;0.1994241;0.01355338,0.01858127;0.4990596;0.02040649,0.1243075;0.367678;-0.01574907,0.1911115;0.09644246;0.003447052,0.2385825;-0.1768672;-0.03461015,-0.09941657;0.3619624;0.01334662,-0.2699375;0.1405788;0.03100711,-0.4788402;-0.0437481;0.00302005,0.06846824;0.004432954;-0.04113938,0.07092563;-0.3734088;-0.0007709749,0.06600721;-0.7167525;0.06698491,0.05701468;-0.704205;-0.03106888,-0.07237623;0.003358196;-0.03391759,-0.1147723;-0.3733159;-0.007099107,-0.1380521;-0.7169991;0.0548675,-0.126043;-0.7599781;-0.01243666,0.01443209;0.3991466;0.02081767,0;0;0,0.0115542;0.1994198;0.009911197,0.02987871;0.4988029;0.01084652,0.1309664;0.3673739;-0.030254,0.1951497;0.09546289;-0.01168275,0.2244532;-0.1766075;-0.0710038,-0.0906093;0.3626136;0.01602053,-0.3116667;0.1938811;0.04862396,-0.5765474;0.1091267;0.01614453,0.06520291;0.004294782;-0.04615338,0.08550417;-0.3706461;0.01221728,0.08926686;-0.7110588;0.09348893,0.09432358;-0.7624797;0.03565239,-0.07484537;0.002064599;-0.02817638,-0.1077237;-0.3739539;0.01574501,-0.1206565;-0.714965;0.09348922,-0.1328976;-0.7037523;-0.003964327,0.02370024;0.3990228;0.01324671,16.79329
+0;0;0,0.007013106;0.1994143;0.01359279,0.01909128;0.4990358;0.02053964,0.1245688;0.3676292;-0.0160763,0.1908316;0.09626573;0.003187954,0.2382283;-0.1770472;-0.03493819,-0.09914714;0.3623393;0.01365163,-0.2766058;0.1465432;0.03210336,-0.4873057;-0.0360124;0.006045986,0.06843351;0.004377559;-0.04120305,0.07073176;-0.3734671;-0.000852745,0.06582476;-0.7168508;0.06670131,0.05667455;-0.7042931;-0.0313397,-0.07241213;0.003406364;-0.03383607,-0.1148932;-0.373281;-0.007341139,-0.1381582;-0.7170079;0.05438842,-0.1260832;-0.7596761;-0.01323948,0.0148438;0.3991268;0.02091449,0;0;0,0.01162557;0.1994171;0.009881758,0.03006554;0.4987935;0.01077279,0.1310331;0.3672602;-0.03043496,0.1951554;0.0953213;-0.01206182,0.2241984;-0.1768257;-0.07115958,-0.09052952;0.3627768;0.01541372,-0.3161293;0.2004772;0.04952511,-0.5838149;0.124576;0.01816548,0.06512641;0.004247188;-0.04626566,0.08558521;-0.3706655;0.01223157,0.08933417;-0.7110444;0.0936448,0.09454672;-0.7625869;0.03599359,-0.07487001;0.002095277;-0.02810856,-0.1077184;-0.3739393;0.01569739,-0.1206935;-0.7149303;0.09352282,-0.1327833;-0.7037182;-0.003949486,0.02384587;0.3990161;0.01318224,16.81521
+0;0;0,0.007013106;0.1994143;0.01359279,0.01909128;0.4990358;0.02053964,0.1245688;0.3676292;-0.0160763,0.1908316;0.09626573;0.003187954,0.2382283;-0.1770472;-0.03493819,-0.09914714;0.3623393;0.01365163,-0.2766058;0.1465432;0.03210336,-0.4873057;-0.0360124;0.006045986,0.06843351;0.004377559;-0.04120305,0.07073176;-0.3734671;-0.000852745,0.06582476;-0.7168508;0.06670131,0.05667455;-0.7042931;-0.0313397,-0.07241213;0.003406364;-0.03383607,-0.1148932;-0.373281;-0.007341139,-0.1381582;-0.7170079;0.05438842,-0.1260832;-0.7596761;-0.01323948,0.0148438;0.3991268;0.02091449,0;0;0,0.01162557;0.1994171;0.009881758,0.03006554;0.4987935;0.01077279,0.1310331;0.3672602;-0.03043496,0.1951554;0.0953213;-0.01206182,0.2241984;-0.1768257;-0.07115958,-0.09052952;0.3627768;0.01541372,-0.3161293;0.2004772;0.04952511,-0.5838149;0.124576;0.01816548,0.06512641;0.004247188;-0.04626566,0.08558521;-0.3706655;0.01223157,0.08933417;-0.7110444;0.0936448,0.09454672;-0.7625869;0.03599359,-0.07487001;0.002095277;-0.02810856,-0.1077184;-0.3739393;0.01569739,-0.1206935;-0.7149303;0.09352282,-0.1327833;-0.7037182;-0.003949486,0.02384587;0.3990161;0.01318224,16.82688
+0;0;0,0.007013106;0.1994143;0.01359279,0.01909128;0.4990358;0.02053964,0.1245688;0.3676292;-0.0160763,0.1908316;0.09626573;0.003187954,0.2382283;-0.1770472;-0.03493819,-0.09914714;0.3623393;0.01365163,-0.2766058;0.1465432;0.03210336,-0.4873057;-0.0360124;0.006045986,0.06843351;0.004377559;-0.04120305,0.07073176;-0.3734671;-0.000852745,0.06582476;-0.7168508;0.06670131,0.05667455;-0.7042931;-0.0313397,-0.07241213;0.003406364;-0.03383607,-0.1148932;-0.373281;-0.007341139,-0.1381582;-0.7170079;0.05438842,-0.1260832;-0.7596761;-0.01323948,0.0148438;0.3991268;0.02091449,0;0;0,0.01159519;0.19942;0.009859621,0.02992055;0.4988034;0.01071843,0.1309793;0.3673166;-0.03040745,0.194817;0.09530368;-0.01213994,0.2239832;-0.1768025;-0.07136473,-0.09061223;0.3627757;0.01590399,-0.3211831;0.2075053;0.04949217,-0.5908183;0.1393712;0.01701698,0.06511515;0.004232319;-0.04628288,0.08553742;-0.370686;0.01219115,0.08939646;-0.711045;0.09368234,0.09440032;-0.7622645;0.03555861,-0.07486487;0.002124619;-0.02812004,-0.1080476;-0.3739141;0.01539805,-0.1209059;-0.7148291;0.0935747,-0.1331346;-0.7036214;-0.003879443,0.02374885;0.3990234;0.01313919,16.84905
+0;0;0,0.007353505;0.1994137;0.01342044,0.01999248;0.4990159;0.0202058,0.1249931;0.3674145;-0.01700824,0.1918787;0.09621868;0.002462834,0.2384305;-0.1772125;-0.03585534,-0.09849709;0.3624294;0.01370486,-0.2815176;0.1514298;0.0332671,-0.4971288;-0.02546531;0.008369399,0.0682711;0.00422326;-0.0414876,0.07039605;-0.3736786;-0.001666781,0.06577656;-0.717097;0.06573087,0.05636526;-0.7045315;-0.03228682,-0.07256329;0.003622137;-0.03348804,-0.1157416;-0.3730637;-0.008122554,-0.1385621;-0.7168643;0.05336209,-0.1265137;-0.7594998;-0.01430575,0.01554744;0.3991157;0.02063075,0;0;0,0.01159519;0.19942;0.009859621,0.02992055;0.4988034;0.01071843,0.1309793;0.3673166;-0.03040745,0.194817;0.09530368;-0.01213994,0.2239832;-0.1768025;-0.07136473,-0.09061223;0.3627757;0.01590399,-0.3211831;0.2075053;0.04949217,-0.5908183;0.1393712;0.01701698,0.06511515;0.004232319;-0.04628288,0.08553742;-0.370686;0.01219115,0.08939646;-0.711045;0.09368234,0.09440032;-0.7622645;0.03555861,-0.07486487;0.002124619;-0.02812004,-0.1080476;-0.3739141;0.01539805,-0.1209059;-0.7148291;0.0935747,-0.1331346;-0.7036214;-0.003879443,0.02374885;0.3990234;0.01313919,16.87161
+0;0;0,0.007353505;0.1994137;0.01342044,0.01999248;0.4990159;0.0202058,0.1249931;0.3674145;-0.01700824,0.1918787;0.09621868;0.002462834,0.2384305;-0.1772125;-0.03585534,-0.09849709;0.3624294;0.01370486,-0.2815176;0.1514298;0.0332671,-0.4971288;-0.02546531;0.008369399,0.0682711;0.00422326;-0.0414876,0.07039605;-0.3736786;-0.001666781,0.06577656;-0.717097;0.06573087,0.05636526;-0.7045315;-0.03228682,-0.07256329;0.003622137;-0.03348804,-0.1157416;-0.3730637;-0.008122554,-0.1385621;-0.7168643;0.05336209,-0.1265137;-0.7594998;-0.01430575,0.01554744;0.3991157;0.02063075,0;0;0,0.01166044;0.199416;0.009864373,0.03003722;0.4987963;0.01079015,0.1309297;0.3671103;-0.03058795,0.1945413;0.09501299;-0.01279335,0.2237887;-0.1772185;-0.071399,-0.090611;0.3630459;0.01539421,-0.3273651;0.2175569;0.04975237,-0.5988268;0.1574709;0.01661341,0.06505544;0.00420818;-0.04636896,0.08547392;-0.3707352;0.01194548,0.08933929;-0.7110171;0.09375781,0.09424248;-0.7622227;0.03560615,-0.07489672;0.002132661;-0.02803452,-0.1082534;-0.3738846;0.01553557,-0.120983;-0.7148056;0.09370719,-0.133081;-0.7035937;-0.003764078,0.02384952;0.3990166;0.01318216,16.89361
+0;0;0,0.007353505;0.1994137;0.01342044,0.01999248;0.4990159;0.0202058,0.1249931;0.3674145;-0.01700824,0.1918787;0.09621868;0.002462834,0.2384305;-0.1772125;-0.03585534,-0.09849709;0.3624294;0.01370486,-0.2815176;0.1514298;0.0332671,-0.4971288;-0.02546531;0.008369399,0.0682711;0.00422326;-0.0414876,0.07039605;-0.3736786;-0.001666781,0.06577656;-0.717097;0.06573087,0.05636526;-0.7045315;-0.03228682,-0.07256329;0.003622137;-0.03348804,-0.1157416;-0.3730637;-0.008122554,-0.1385621;-0.7168643;0.05336209,-0.1265137;-0.7594998;-0.01430575,0.01554744;0.3991157;0.02063075,0;0;0,0.01166044;0.199416;0.009864373,0.03003722;0.4987963;0.01079015,0.1309297;0.3671103;-0.03058795,0.1945413;0.09501299;-0.01279335,0.2237887;-0.1772185;-0.071399,-0.090611;0.3630459;0.01539421,-0.3273651;0.2175569;0.04975237,-0.5988268;0.1574709;0.01661341,0.06505544;0.00420818;-0.04636896,0.08547392;-0.3707352;0.01194548,0.08933929;-0.7110171;0.09375781,0.09424248;-0.7622227;0.03560615,-0.07489672;0.002132661;-0.02803452,-0.1082534;-0.3738846;0.01553557,-0.120983;-0.7148056;0.09370719,-0.133081;-0.7035937;-0.003764078,0.02384952;0.3990166;0.01318216,16.90493
+0;0;0,0.007443778;0.1994239;0.01321778,0.02012762;0.4990299;0.01975837,0.1251359;0.3673184;-0.01723835,0.1913277;0.0959416;0.002081726,0.2376436;-0.1775038;-0.03642112,-0.09857409;0.3629827;0.0138772,-0.2872291;0.1568793;0.03206166,-0.5046411;-0.01826222;0.01067239,0.06816566;0.004157751;-0.04166721,0.06826955;-0.3736753;-0.001143117,0.0650936;-0.717235;0.06561466,0.05557662;-0.7046804;-0.03239089,-0.07263455;0.003681615;-0.03332669,-0.1158494;-0.373057;-0.00882194,-0.1390477;-0.7168565;0.05252765,-0.1269898;-0.7595326;-0.01509476,0.01567395;0.3991303;0.02025931,0;0;0,0.01186072;0.1994026;0.009895178,0.0304818;0.4987679;0.01079605,0.1311525;0.3670134;-0.03081545,0.1944132;0.09485495;-0.0127082,0.2238568;-0.1773643;-0.07127212,-0.0904166;0.3634816;0.01498409,-0.3334614;0.228534;0.04842642,-0.606443;0.1767135;0.01384868,0.06487454;0.004182124;-0.04662408,0.08570453;-0.3706931;0.0119816,0.08951467;-0.71094;0.09394225,0.09404626;-0.7620918;0.03568548,-0.07497969;0.002148354;-0.02781061,-0.1081699;-0.3738878;0.01572301,-0.1206643;-0.714762;0.09413697,-0.1326851;-0.7035454;-0.003344744,0.02419418;0.3989947;0.01319723,16.92718
+0;0;0,0.007443778;0.1994239;0.01321778,0.02012762;0.4990299;0.01975837,0.1251359;0.3673184;-0.01723835,0.1913277;0.0959416;0.002081726,0.2376436;-0.1775038;-0.03642112,-0.09857409;0.3629827;0.0138772,-0.2872291;0.1568793;0.03206166,-0.5046411;-0.01826222;0.01067239,0.06816566;0.004157751;-0.04166721,0.06826955;-0.3736753;-0.001143117,0.0650936;-0.717235;0.06561466,0.05557662;-0.7046804;-0.03239089,-0.07263455;0.003681615;-0.03332669,-0.1158494;-0.373057;-0.00882194,-0.1390477;-0.7168565;0.05252765,-0.1269898;-0.7595326;-0.01509476,0.01567395;0.3991303;0.02025931,0;0;0,0.01186072;0.1994026;0.009895178,0.0304818;0.4987679;0.01079605,0.1311525;0.3670134;-0.03081545,0.1944132;0.09485495;-0.0127082,0.2238568;-0.1773643;-0.07127212,-0.0904166;0.3634816;0.01498409,-0.3334614;0.228534;0.04842642,-0.606443;0.1767135;0.01384868,0.06487454;0.004182124;-0.04662408,0.08570453;-0.3706931;0.0119816,0.08951467;-0.71094;0.09394225,0.09404626;-0.7620918;0.03568548,-0.07497969;0.002148354;-0.02781061,-0.1081699;-0.3738878;0.01572301,-0.1206643;-0.714762;0.09413697,-0.1326851;-0.7035454;-0.003344744,0.02419418;0.3989947;0.01319723,16.93871
+0;0;0,0.007443778;0.1994239;0.01321778,0.02012762;0.4990299;0.01975837,0.1251359;0.3673184;-0.01723835,0.1913277;0.0959416;0.002081726,0.2376436;-0.1775038;-0.03642112,-0.09857409;0.3629827;0.0138772,-0.2872291;0.1568793;0.03206166,-0.5046411;-0.01826222;0.01067239,0.06816566;0.004157751;-0.04166721,0.06826955;-0.3736753;-0.001143117,0.0650936;-0.717235;0.06561466,0.05557662;-0.7046804;-0.03239089,-0.07263455;0.003681615;-0.03332669,-0.1158494;-0.373057;-0.00882194,-0.1390477;-0.7168565;0.05252765,-0.1269898;-0.7595326;-0.01509476,0.01567395;0.3991303;0.02025931,0;0;0,0.0122615;0.1993719;0.01002458,0.03118579;0.4987185;0.01098078,0.1316342;0.3668753;-0.03074226,0.1943878;0.09457806;-0.01296037,0.2239008;-0.1776866;-0.07127767,-0.08991374;0.363567;0.01499637,-0.3363626;0.23501;0.04870186,-0.610595;0.1905727;0.01374557,0.06493434;0.004123902;-0.04654594,0.08628572;-0.3707175;0.01208902,0.08988985;-0.7109069;0.09429723,0.09493816;-0.7624966;0.0366983,-0.07500929;0.002224713;-0.02772464,-0.1071921;-0.3739213;0.01561647,-0.1199256;-0.714753;0.09417561,-0.131916;-0.7035238;-0.003312297,0.02473791;0.3989547;0.01334964,16.96061
+0;0;0,0.007454596;0.1994306;0.01310952,0.02005542;0.4990436;0.01949835,0.1250582;0.3673379;-0.01757853,0.1913745;0.09598809;0.001693232,0.237649;-0.1774133;-0.0371704,-0.09880032;0.3634058;0.01485724,-0.2905899;0.160081;0.0314644,-0.512482;-0.009418294;0.01063537,0.06808083;0.004201523;-0.04180129,0.06726366;-0.3735546;-0.0005749799,0.06440096;-0.7171766;0.06587648,0.05453224;-0.7046319;-0.03209249,-0.07267368;0.003604438;-0.03324973,-0.1159154;-0.3731512;-0.009055108,-0.1395552;-0.71699;0.05190412,-0.1276567;-0.7598137;-0.01558764,0.01563727;0.3991428;0.02004473,0;0;0,0.01263036;0.1993446;0.01010883,0.03193419;0.4986666;0.01102427,0.1322229;0.3668987;-0.03068742,0.1945122;0.09449357;-0.0129253,0.2232945;-0.177852;-0.07123005,-0.08945835;0.3639975;0.0163246,-0.3394023;0.2418661;0.04813585,-0.6145799;0.2046197;0.01221903,0.06484229;0.004124978;-0.046674,0.08671717;-0.3706601;0.01212777,0.09035561;-0.7107645;0.09468548,0.09542446;-0.7621774;0.03683872,-0.07506065;0.002222052;-0.02758552,-0.1067747;-0.3740284;0.01519134,-0.1194862;-0.7147655;0.09416326,-0.1318143;-0.7035297;-0.003283784,0.02531239;0.3989148;0.01341605,16.98292
+0;0;0,0.007454596;0.1994306;0.01310952,0.02005542;0.4990436;0.01949835,0.1250582;0.3673379;-0.01757853,0.1913745;0.09598809;0.001693232,0.237649;-0.1774133;-0.0371704,-0.09880032;0.3634058;0.01485724,-0.2905899;0.160081;0.0314644,-0.512482;-0.009418294;0.01063537,0.06808083;0.004201523;-0.04180129,0.06726366;-0.3735546;-0.0005749799,0.06440096;-0.7171766;0.06587648,0.05453224;-0.7046319;-0.03209249,-0.07267368;0.003604438;-0.03324973,-0.1159154;-0.3731512;-0.009055108,-0.1395552;-0.71699;0.05190412,-0.1276567;-0.7598137;-0.01558764,0.01563727;0.3991428;0.02004473,0;0;0,0.01263036;0.1993446;0.01010883,0.03193419;0.4986666;0.01102427,0.1322229;0.3668987;-0.03068742,0.1945122;0.09449357;-0.0129253,0.2232945;-0.177852;-0.07123005,-0.08945835;0.3639975;0.0163246,-0.3394023;0.2418661;0.04813585,-0.6145799;0.2046197;0.01221903,0.06484229;0.004124978;-0.046674,0.08671717;-0.3706601;0.01212777,0.09035561;-0.7107645;0.09468548,0.09542446;-0.7621774;0.03683872,-0.07506065;0.002222052;-0.02758552,-0.1067747;-0.3740284;0.01519134,-0.1194862;-0.7147655;0.09416326,-0.1318143;-0.7035297;-0.003283784,0.02531239;0.3989148;0.01341605,17.0056
+0;0;0,0.007454596;0.1994306;0.01310952,0.02005542;0.4990436;0.01949835,0.1250582;0.3673379;-0.01757853,0.1913745;0.09598809;0.001693232,0.237649;-0.1774133;-0.0371704,-0.09880032;0.3634058;0.01485724,-0.2905899;0.160081;0.0314644,-0.512482;-0.009418294;0.01063537,0.06808083;0.004201523;-0.04180129,0.06726366;-0.3735546;-0.0005749799,0.06440096;-0.7171766;0.06587648,0.05453224;-0.7046319;-0.03209249,-0.07267368;0.003604438;-0.03324973,-0.1159154;-0.3731512;-0.009055108,-0.1395552;-0.71699;0.05190412,-0.1276567;-0.7598137;-0.01558764,0.01563727;0.3991428;0.02004473,0;0;0,0.01297621;0.1993207;0.0101419,0.03278102;0.49861;0.01095945,0.1327817;0.3666915;-0.03072188,0.1946809;0.09419134;-0.01305369,0.2229999;-0.1782807;-0.07099367,-0.08892664;0.3643234;0.01735383,-0.3410988;0.2464282;0.04751843,-0.6165241;0.2116025;0.01107519,0.06469904;0.00407012;-0.04687717,0.08710867;-0.3706793;0.01194978,0.09074857;-0.7106998;0.09485233,0.09625532;-0.7622607;0.03725457,-0.07513018;0.00227869;-0.02739095,-0.1066677;-0.3739723;0.01551082,-0.1191352;-0.7146795;0.09465105,-0.1317559;-0.7034445;-0.002758361,0.02592302;0.3988749;0.01338526,17.02744
+0;0;0,0.007443978;0.1994498;0.01282018,0.01997884;0.4990714;0.01898077,0.1250571;0.3674804;-0.01798202,0.1912805;0.09610608;0.001264712,0.2374899;-0.1772748;-0.03781957,-0.09887305;0.3634712;0.01448769,-0.2945085;0.16393;0.03209693,-0.5194157;-0.001543596;0.01123479,0.06812837;0.00420052;-0.04172386,0.06761044;-0.3736258;-0.001140948,0.06410718;-0.7172288;0.06537798,0.05422592;-0.7047058;-0.03258587,-0.07264327;0.003587575;-0.03331792,-0.1159258;-0.3731906;-0.009551747,-0.1395428;-0.7170591;0.05124842,-0.12774;-0.7600324;-0.01609845,0.01558083;0.39917;0.01957742,0;0;0,0.01297621;0.1993207;0.0101419,0.03278102;0.49861;0.01095945,0.1327817;0.3666915;-0.03072188,0.1946809;0.09419134;-0.01305369,0.2229999;-0.1782807;-0.07099367,-0.08892664;0.3643234;0.01735383,-0.3410988;0.2464282;0.04751843,-0.6165241;0.2116025;0.01107519,0.06469904;0.00407012;-0.04687717,0.08710867;-0.3706793;0.01194978,0.09074857;-0.7106998;0.09485233,0.09625532;-0.7622607;0.03725457,-0.07513018;0.00227869;-0.02739095,-0.1066677;-0.3739723;0.01551082,-0.1191352;-0.7146795;0.09465105,-0.1317559;-0.7034445;-0.002758361,0.02592302;0.3988749;0.01338526,17.03885
+0;0;0,0.007443978;0.1994498;0.01282018,0.01997884;0.4990714;0.01898077,0.1250571;0.3674804;-0.01798202,0.1912805;0.09610608;0.001264712,0.2374899;-0.1772748;-0.03781957,-0.09887305;0.3634712;0.01448769,-0.2945085;0.16393;0.03209693,-0.5194157;-0.001543596;0.01123479,0.06812837;0.00420052;-0.04172386,0.06761044;-0.3736258;-0.001140948,0.06410718;-0.7172288;0.06537798,0.05422592;-0.7047058;-0.03258587,-0.07264327;0.003587575;-0.03331792,-0.1159258;-0.3731906;-0.009551747,-0.1395428;-0.7170591;0.05124842,-0.12774;-0.7600324;-0.01609845,0.01558083;0.39917;0.01957742,0;0;0,0.01311991;0.1993112;0.01014508,0.033222;0.4985809;0.01091353,0.1336568;0.3669405;-0.02959831,0.1956202;0.09431946;-0.01416067,0.2231178;-0.1781971;-0.07228626,-0.08861624;0.3644068;0.01780577,-0.3425231;0.2503478;0.04816815,-0.6182053;0.2188905;0.01062168,0.06468155;0.004106406;-0.04689813,0.08723963;-0.3706352;0.01192225,0.09087209;-0.7106352;0.09490919,0.09607249;-0.7621188;0.03717377,-0.07515895;0.002238805;-0.02731518,-0.1065545;-0.3740414;0.01543454,-0.1191481;-0.7147027;0.09475209,-0.1315046;-0.7034699;-0.002690762,0.02624684;0.3988542;0.01335059,17.06107
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.01351817;0.1992849;0.01013862,0.03419648;0.4985153;0.01101405,0.1343265;0.3670965;-0.02986712,0.1960439;0.09444317;-0.0140205,0.221495;-0.1784208;-0.07144453,-0.08809249;0.3651418;0.01832678,-0.3437723;0.2548542;0.04772909,-0.6198815;0.2262731;0.01102953,0.06446735;0.004029574;-0.04719877,0.08788501;-0.3706108;0.0119302,0.09153686;-0.7106156;0.09489604,0.09657249;-0.7620828;0.03712283,-0.07526702;0.002312343;-0.02700976,-0.1060383;-0.3740705;0.01528802,-0.1185537;-0.7147023;0.09474434,-0.1311129;-0.7034627;-0.002673909,0.02698388;0.3988044;0.01340154,17.0833
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.01351817;0.1992849;0.01013862,0.03419648;0.4985153;0.01101405,0.1343265;0.3670965;-0.02986712,0.1960439;0.09444317;-0.0140205,0.221495;-0.1784208;-0.07144453,-0.08809249;0.3651418;0.01832678,-0.3437723;0.2548542;0.04772909,-0.6198815;0.2262731;0.01102953,0.06446735;0.004029574;-0.04719877,0.08788501;-0.3706108;0.0119302,0.09153686;-0.7106156;0.09489604,0.09657249;-0.7620828;0.03712283,-0.07526702;0.002312343;-0.02700976,-0.1060383;-0.3740705;0.01528802,-0.1185537;-0.7147023;0.09474434,-0.1311129;-0.7034627;-0.002673909,0.02698388;0.3988044;0.01340154,17.09459
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.01351817;0.1992849;0.01013862,0.03419648;0.4985153;0.01101405,0.1343265;0.3670965;-0.02986712,0.1960439;0.09444317;-0.0140205,0.221495;-0.1784208;-0.07144453,-0.08809249;0.3651418;0.01832678,-0.3437723;0.2548542;0.04772909,-0.6198815;0.2262731;0.01102953,0.06446735;0.004029574;-0.04719877,0.08788501;-0.3706108;0.0119302,0.09153686;-0.7106156;0.09489604,0.09657249;-0.7620828;0.03712283,-0.07526702;0.002312343;-0.02700976,-0.1060383;-0.3740705;0.01528802,-0.1185537;-0.7147023;0.09474434,-0.1311129;-0.7034627;-0.002673909,0.02698388;0.3988044;0.01340154,17.10585
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.01371528;0.1992681;0.01020429,0.03471024;0.4984767;0.01121234,0.135149;0.3674968;-0.02897949,0.196986;0.09478274;-0.01472445,0.2207604;-0.1784936;-0.07089229,-0.08790177;0.3656612;0.01723222,-0.3449872;0.2592384;0.04855723,-0.621522;0.236618;0.01091645,0.06435589;0.003973853;-0.04735534,0.08803384;-0.3706056;0.01205532,0.09185451;-0.7105821;0.09512964,0.09750542;-0.7619137;0.03722236,-0.07534732;0.002365362;-0.02678032,-0.106093;-0.3740387;0.01534719,-0.1183591;-0.7146655;0.09486405,-0.1302637;-0.7034194;-0.002637617,0.02738035;0.3987729;0.01353788,17.12809
+0;0;0,0.007826445;0.1994304;0.01289382,0.0209395;0.499026;0.01910027,0.1256401;0.3672279;-0.01823962,0.1914353;0.09572196;0.000615932,0.2369872;-0.1777011;-0.03894244,-0.09828155;0.3638628;0.01586543,-0.299453;0.1698856;0.03326797,-0.5297616;0.01206194;0.01206207,0.06806454;0.004232777;-0.04182465,0.06692387;-0.3735503;-0.000853043,0.06378244;-0.7173049;0.06489523,0.05348873;-0.7047729;-0.03302776,-0.07267315;0.00354107;-0.0332577,-0.1154412;-0.3733391;-0.01018776,-0.1396787;-0.7172672;0.05002831,-0.1274784;-0.7592008;-0.01835823,0.01635436;0.3991329;0.01969043,0;0;0,0.01371528;0.1992681;0.01020429,0.03471024;0.4984767;0.01121234,0.135149;0.3674968;-0.02897949,0.196986;0.09478274;-0.01472445,0.2207604;-0.1784936;-0.07089229,-0.08790177;0.3656612;0.01723222,-0.3449872;0.2592384;0.04855723,-0.621522;0.236618;0.01091645,0.06435589;0.003973853;-0.04735534,0.08803384;-0.3706056;0.01205532,0.09185451;-0.7105821;0.09512964,0.09750542;-0.7619137;0.03722236,-0.07534732;0.002365362;-0.02678032,-0.106093;-0.3740387;0.01534719,-0.1183591;-0.7146655;0.09486405,-0.1302637;-0.7034194;-0.002637617,0.02738035;0.3987729;0.01353788,17.1393
+0;0;0,0.007826445;0.1994304;0.01289382,0.0209395;0.499026;0.01910027,0.1256401;0.3672279;-0.01823962,0.1914353;0.09572196;0.000615932,0.2369872;-0.1777011;-0.03894244,-0.09828155;0.3638628;0.01586543,-0.299453;0.1698856;0.03326797,-0.5297616;0.01206194;0.01206207,0.06806454;0.004232777;-0.04182465,0.06692387;-0.3735503;-0.000853043,0.06378244;-0.7173049;0.06489523,0.05348873;-0.7047729;-0.03302776,-0.07267315;0.00354107;-0.0332577,-0.1154412;-0.3733391;-0.01018776,-0.1396787;-0.7172672;0.05002831,-0.1274784;-0.7592008;-0.01835823,0.01635436;0.3991329;0.01969043,0;0;0,0.01388423;0.1992554;0.01022301,0.03533026;0.4984326;0.01120795,0.1354903;0.3674298;-0.02925968,0.1967623;0.0946112;-0.01457158,0.2201684;-0.1786635;-0.07090179,-0.08760545;0.3663679;0.01848026,-0.3457955;0.2622115;0.04830256,-0.6222391;0.2405282;0.009459831,0.06430727;0.003980604;-0.04742076,0.08813852;-0.3705817;0.01203593,0.09204607;-0.7104802;0.09542491,0.09761634;-0.76229;0.03818739,-0.0753825;0.002359458;-0.02668167,-0.1070993;-0.3738576;0.01638534,-0.1181221;-0.7145406;0.09584357,-0.1304483;-0.7032976;-0.001605101,0.02783934;0.3987406;0.01352954,17.16159
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.01388423;0.1992554;0.01022301,0.03533026;0.4984326;0.01120795,0.1354903;0.3674298;-0.02925968,0.1967623;0.0946112;-0.01457158,0.2201684;-0.1786635;-0.07090179,-0.08760545;0.3663679;0.01848026,-0.3457955;0.2622115;0.04830256,-0.6222391;0.2405282;0.009459831,0.06430727;0.003980604;-0.04742076,0.08813852;-0.3705817;0.01203593,0.09204607;-0.7104802;0.09542491,0.09761634;-0.76229;0.03818739,-0.0753825;0.002359458;-0.02668167,-0.1070993;-0.3738576;0.01638534,-0.1181221;-0.7145406;0.09584357,-0.1304483;-0.7032976;-0.001605101,0.02783934;0.3987406;0.01352954,17.1728
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.01418562;0.1992344;0.01021854,0.03580552;0.4983987;0.01117612,0.1357271;0.3673975;-0.02970659,0.1964659;0.09448814;-0.01449746,0.2190293;-0.1790264;-0.07000136,-0.0875869;0.3681512;0.02041823,-0.3455583;0.2626855;0.04739524,-0.622236;0.2451916;0.008109186,0.06422034;0.003945128;-0.04754139,0.08844655;-0.3705794;0.01199412,0.09240097;-0.7104558;0.09547095,0.09845286;-0.7623484;0.03840096,-0.07546182;0.002420263;-0.026451,-0.1072627;-0.3738627;0.01597384,-0.1178838;-0.7145274;0.09556498,-0.130845;-0.7032853;-0.001801081,0.02825095;0.398712;0.01351697,17.18409
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.01418562;0.1992344;0.01021854,0.03580552;0.4983987;0.01117612,0.1357271;0.3673975;-0.02970659,0.1964659;0.09448814;-0.01449746,0.2190293;-0.1790264;-0.07000136,-0.0875869;0.3681512;0.02041823,-0.3455583;0.2626855;0.04739524,-0.622236;0.2451916;0.008109186,0.06422034;0.003945128;-0.04754139,0.08844655;-0.3705794;0.01199412,0.09240097;-0.7104558;0.09547095,0.09845286;-0.7623484;0.03840096,-0.07546182;0.002420263;-0.026451,-0.1072627;-0.3738627;0.01597384,-0.1178838;-0.7145274;0.09556498,-0.130845;-0.7032853;-0.001801081,0.02825095;0.398712;0.01351697,17.20617
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.01439773;0.1992196;0.0102106,0.03628918;0.4983643;0.01136478,0.136398;0.3674844;-0.02891947,0.1970325;0.09445411;-0.0155811,0.2189505;-0.1792564;-0.07037287,-0.08728091;0.3680499;0.01908262,-0.3467886;0.2669522;0.04797874,-0.6234971;0.2494786;0.008900825,0.06420761;0.003887929;-0.04756328,0.08848921;-0.3706536;0.01184273,0.09226993;-0.7104568;0.09562492,0.09834447;-0.7608156;0.03641696,-0.07555289;0.002511197;-0.02618117,-0.1069298;-0.3738264;0.01607415,-0.117434;-0.7145118;0.09559236,-0.1297406;-0.703259;-0.001860656,0.02861391;0.3986847;0.01361431,17.2175
+0;0;0,0.008052592;0.1994235;0.01286119,0.0214123;0.4990097;0.01899551,0.1259719;0.3672769;-0.01857096,0.1914013;0.0956721;0.0001328401,0.2365957;-0.1777918;-0.03955306,-0.09820114;0.3647871;0.01712788,-0.3056138;0.177432;0.03380278,-0.539332;0.02475293;0.01224108,0.06784273;0.004194257;-0.04218734,0.06763337;-0.373629;-0.001573153,0.06381249;-0.7174889;0.06358664,0.05310035;-0.7049557;-0.03429166,-0.07287476;0.003557288;-0.03281181,-0.1158663;-0.3733647;-0.01086773,-0.1400374;-0.7173591;0.04899537,-0.1281503;-0.7598543;-0.01885115,0.01675574;0.39912;0.01961088,0;0;0,0.01439773;0.1992196;0.0102106,0.03628918;0.4983643;0.01136478,0.136398;0.3674844;-0.02891947,0.1970325;0.09445411;-0.0155811,0.2189505;-0.1792564;-0.07037287,-0.08728091;0.3680499;0.01908262,-0.3467886;0.2669522;0.04797874,-0.6234971;0.2494786;0.008900825,0.06420761;0.003887929;-0.04756328,0.08848921;-0.3706536;0.01184273,0.09226993;-0.7104568;0.09562492,0.09834447;-0.7608156;0.03641696,-0.07555289;0.002511197;-0.02618117,-0.1069298;-0.3738264;0.01607415,-0.117434;-0.7145118;0.09559236,-0.1297406;-0.703259;-0.001860656,0.02861391;0.3986847;0.01361431,17.23982
+0;0;0,0.008052592;0.1994235;0.01286119,0.0214123;0.4990097;0.01899551,0.1259719;0.3672769;-0.01857096,0.1914013;0.0956721;0.0001328401,0.2365957;-0.1777918;-0.03955306,-0.09820114;0.3647871;0.01712788,-0.3056138;0.177432;0.03380278,-0.539332;0.02475293;0.01224108,0.06784273;0.004194257;-0.04218734,0.06763337;-0.373629;-0.001573153,0.06381249;-0.7174889;0.06358664,0.05310035;-0.7049557;-0.03429166,-0.07287476;0.003557288;-0.03281181,-0.1158663;-0.3733647;-0.01086773,-0.1400374;-0.7173591;0.04899537,-0.1281503;-0.7598543;-0.01885115,0.01675574;0.39912;0.01961088,0;0;0,0.01446116;0.1992138;0.01023432,0.03673616;0.4983297;0.01159318,0.1368822;0.3674906;-0.0284163,0.1975936;0.09442616;-0.01617191,0.2190689;-0.1793229;-0.07094669,-0.08696324;0.3682304;0.01994113,-0.3476342;0.2697613;0.04740878,-0.6245021;0.2540333;0.008720268,0.06417466;0.003908827;-0.04760602,0.08844909;-0.3706409;0.01175105,0.09224373;-0.7105727;0.09500943,0.09750369;-0.7604998;0.03514299,-0.07558028;0.002487175;-0.02610433,-0.1074064;-0.3737011;0.01713279,-0.1173784;-0.7145351;0.09608068,-0.1297619;-0.7032732;-0.001364335,0.02895106;0.3986569;0.01376828,17.26224
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.01446116;0.1992138;0.01023432,0.03673616;0.4983297;0.01159318,0.1368822;0.3674906;-0.0284163,0.1975936;0.09442616;-0.01617191,0.2190689;-0.1793229;-0.07094669,-0.08696324;0.3682304;0.01994113,-0.3476342;0.2697613;0.04740878,-0.6245021;0.2540333;0.008720268,0.06417466;0.003908827;-0.04760602,0.08844909;-0.3706409;0.01175105,0.09224373;-0.7105727;0.09500943,0.09750369;-0.7604998;0.03514299,-0.07558028;0.002487175;-0.02610433,-0.1074064;-0.3737011;0.01713279,-0.1173784;-0.7145351;0.09608068,-0.1297619;-0.7032732;-0.001364335,0.02895106;0.3986569;0.01376828,17.27339
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.01461992;0.1992014;0.01024985,0.03719309;0.4982952;0.01157503,0.1373743;0.3676274;-0.02820766,0.1980386;0.09451893;-0.01673601,0.2188975;-0.1791866;-0.07196474,-0.08670364;0.3683622;0.01869879,-0.3481998;0.2726282;0.04793582,-0.6250519;0.2571397;0.009038024,0.06410673;0.003846873;-0.04770251,0.08848181;-0.3706938;0.01167035,0.09246761;-0.710582;0.0950974,0.09763064;-0.760267;0.03490055,-0.07561851;0.002540541;-0.02598821,-0.1073568;-0.3736568;0.01723454,-0.11714;-0.7144885;0.09621572,-0.1290627;-0.7032304;-0.001286015,0.02931119;0.3986302;0.01375889,17.29554
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.01479138;0.1991863;0.01029771,0.03744659;0.4982737;0.01166553,0.1373007;0.3676226;-0.02891963,0.1971731;0.09440312;-0.01601917,0.2177469;-0.1792037;-0.07184075,-0.08648186;0.3683052;0.01830179,-0.3482919;0.2738707;0.04892265,-0.6250567;0.260326;0.008701462,0.06405347;0.003829802;-0.04777537,0.08847165;-0.3707237;0.01149864,0.09290048;-0.7105031;0.09534588,0.09774208;-0.7605876;0.03565467,-0.07566327;0.002559816;-0.02585566,-0.1073197;-0.3735808;0.01791754,-0.1167912;-0.7144663;0.09670444,-0.1288388;-0.703204;-0.000782758,0.02954252;0.3986102;0.0138348,17.31797
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.01479138;0.1991863;0.01029771,0.03744659;0.4982737;0.01166553,0.1373007;0.3676226;-0.02891963,0.1971731;0.09440312;-0.01601917,0.2177469;-0.1792037;-0.07184075,-0.08648186;0.3683052;0.01830179,-0.3482919;0.2738707;0.04892265,-0.6250567;0.260326;0.008701462,0.06405347;0.003829802;-0.04777537,0.08847165;-0.3707237;0.01149864,0.09290048;-0.7105031;0.09534588,0.09774208;-0.7605876;0.03565467,-0.07566327;0.002559816;-0.02585566,-0.1073197;-0.3735808;0.01791754,-0.1167912;-0.7144663;0.09670444,-0.1288388;-0.703204;-0.000782758,0.02954252;0.3986102;0.0138348,17.32914
+0;0;0,0.008165973;0.1994186;0.01286576,0.02156448;0.4990049;0.01889876,0.1261137;0.3672038;-0.01860578,0.1910686;0.0954358;-0.0006335508,0.2360511;-0.1780202;-0.04061378,-0.09816059;0.365145;0.01736038,-0.311597;0.1847742;0.03500247,-0.5510482;0.04117513;0.01396777,0.06776998;0.004176881;-0.04230583,0.06800546;-0.3737619;-0.002780769,0.06368697;-0.717636;0.06227266,0.05293611;-0.7051018;-0.03560157,-0.07285091;0.003573562;-0.03286296,-0.1162024;-0.3733443;-0.01156642,-0.1403089;-0.7174187;0.04786164,-0.1282736;-0.759717;-0.02016867,0.01690979;0.3991154;0.0195539,0;0;0,0.01506778;0.1991702;0.01020838,0.0380201;0.4982345;0.01158567,0.137506;0.3672068;-0.02931459,0.196574;0.09382877;-0.01606825,0.2171745;-0.1797301;-0.07211453,-0.086418;0.3701694;0.02029213,-0.3477681;0.2734367;0.04747521,-0.6246113;0.262909;0.00689131,0.06393326;0.003782235;-0.04793989,0.08886164;-0.3707393;0.01132345,0.0932375;-0.710502;0.09524113,0.09820366;-0.7608123;0.03586437,-0.07574219;0.002640837;-0.02561534,-0.1070426;-0.3735731;0.01778249,-0.1164892;-0.7144631;0.09655274,-0.1291801;-0.7032009;-0.0008527786,0.02998672;0.3985814;0.01375773,17.35129
+0;0;0,0.008165973;0.1994186;0.01286576,0.02156448;0.4990049;0.01889876,0.1261137;0.3672038;-0.01860578,0.1910686;0.0954358;-0.0006335508,0.2360511;-0.1780202;-0.04061378,-0.09816059;0.365145;0.01736038,-0.311597;0.1847742;0.03500247,-0.5510482;0.04117513;0.01396777,0.06776998;0.004176881;-0.04230583,0.06800546;-0.3737619;-0.002780769,0.06368697;-0.717636;0.06227266,0.05293611;-0.7051018;-0.03560157,-0.07285091;0.003573562;-0.03286296,-0.1162024;-0.3733443;-0.01156642,-0.1403089;-0.7174187;0.04786164,-0.1282736;-0.759717;-0.02016867,0.01690979;0.3991154;0.0195539,0;0;0,0.01506778;0.1991702;0.01020838,0.0380201;0.4982345;0.01158567,0.137506;0.3672068;-0.02931459,0.196574;0.09382877;-0.01606825,0.2171745;-0.1797301;-0.07211453,-0.086418;0.3701694;0.02029213,-0.3477681;0.2734367;0.04747521,-0.6246113;0.262909;0.00689131,0.06393326;0.003782235;-0.04793989,0.08886164;-0.3707393;0.01132345,0.0932375;-0.710502;0.09524113,0.09820366;-0.7608123;0.03586437,-0.07574219;0.002640837;-0.02561534,-0.1070426;-0.3735731;0.01778249,-0.1164892;-0.7144631;0.09655274,-0.1291801;-0.7032009;-0.0008527786,0.02998672;0.3985814;0.01375773,17.37374
+0;0;0,0.008238523;0.1994128;0.0129098,0.02176775;0.49899;0.01910951,0.1263102;0.367416;-0.01852259,0.1913047;0.09564674;-0.000712689,0.2360187;-0.1778295;-0.04085493,-0.09808654;0.3654034;0.01753934,-0.3139902;0.1880527;0.03577016,-0.5563187;0.04918581;0.01594938,0.06776285;0.004190564;-0.04231589,0.06831148;-0.3737801;-0.003099859,0.06373923;-0.7176687;0.06185944,0.07124648;-0.7654871;-0.0004939437,-0.07285529;0.003550152;-0.03285578,-0.1162342;-0.3733503;-0.01130699,-0.1401916;-0.7175071;0.04770266,-0.1282286;-0.759927;-0.02021097,0.01706419;0.3991024;0.019704,0;0;0,0.01514953;0.1991661;0.01016553,0.03822006;0.4982212;0.01155024,0.1374772;0.3668007;-0.02953636,0.1960462;0.09334558;-0.01568163,0.2162095;-0.1800371;-0.07273719,-0.08630438;0.3705951;0.02119149,-0.3482622;0.2751011;0.04686267,-0.6251645;0.2682277;0.005900733,0.06388239;0.003784349;-0.04800748,0.08891362;-0.3707522;0.01111786,0.0933248;-0.7104968;0.09510671,0.09859304;-0.760707;0.03562087,-0.07575061;0.002655237;-0.02558895,-0.1071147;-0.3735626;0.01772848,-0.1164144;-0.7143949;0.09676563,-0.1294283;-0.7031388;-0.0005961061,0.03014981;0.3985711;0.01372411,17.39594
+0;0;0,0.008238523;0.1994128;0.0129098,0.02176775;0.49899;0.01910951,0.1263102;0.367416;-0.01852259,0.1913047;0.09564674;-0.000712689,0.2360187;-0.1778295;-0.04085493,-0.09808654;0.3654034;0.01753934,-0.3139902;0.1880527;0.03577016,-0.5563187;0.04918581;0.01594938,0.06776285;0.004190564;-0.04231589,0.06831148;-0.3737801;-0.003099859,0.06373923;-0.7176687;0.06185944,0.07124648;-0.7654871;-0.0004939437,-0.07285529;0.003550152;-0.03285578,-0.1162342;-0.3733503;-0.01130699,-0.1401916;-0.7175071;0.04770266,-0.1282286;-0.759927;-0.02021097,0.01706419;0.3991024;0.019704,0;0;0,0.01514953;0.1991661;0.01016553,0.03822006;0.4982212;0.01155024,0.1374772;0.3668007;-0.02953636,0.1960462;0.09334558;-0.01568163,0.2162095;-0.1800371;-0.07273719,-0.08630438;0.3705951;0.02119149,-0.3482622;0.2751011;0.04686267,-0.6251645;0.2682277;0.005900733,0.06388239;0.003784349;-0.04800748,0.08891362;-0.3707522;0.01111786,0.0933248;-0.7104968;0.09510671,0.09859304;-0.760707;0.03562087,-0.07575061;0.002655237;-0.02558895,-0.1071147;-0.3735626;0.01772848,-0.1164144;-0.7143949;0.09676563,-0.1294283;-0.7031388;-0.0005961061,0.03014981;0.3985711;0.01372411,17.40734
+0;0;0,0.008238523;0.1994128;0.0129098,0.02176775;0.49899;0.01910951,0.1263102;0.367416;-0.01852259,0.1913047;0.09564674;-0.000712689,0.2360187;-0.1778295;-0.04085493,-0.09808654;0.3654034;0.01753934,-0.3139902;0.1880527;0.03577016,-0.5563187;0.04918581;0.01594938,0.06776285;0.004190564;-0.04231589,0.06831148;-0.3737801;-0.003099859,0.06373923;-0.7176687;0.06185944,0.07124648;-0.7654871;-0.0004939437,-0.07285529;0.003550152;-0.03285578,-0.1162342;-0.3733503;-0.01130699,-0.1401916;-0.7175071;0.04770266,-0.1282286;-0.759927;-0.02021097,0.01706419;0.3991024;0.019704,0;0;0,0.01528332;0.1991545;0.01019373,0.03844938;0.4982022;0.01160007,0.1376046;0.3667542;-0.02963469,0.1959625;0.09325349;-0.0157884,0.2162714;-0.1800506;-0.07316808,-0.08613423;0.3704613;0.02040827,-0.3490527;0.2780439;0.04748078,-0.6258246;0.2737519;0.00530389,0.06380163;0.003823421;-0.04811167,0.08880804;-0.3707232;0.01096002,0.09342305;-0.7104219;0.09512363,0.09819998;-0.7604055;0.03529216,-0.07581132;0.002625574;-0.02541161,-0.1069073;-0.3735862;0.01815111,-0.1161531;-0.7144715;0.0969658,-0.1289687;-0.7032111;-0.0004230365,0.03034147;0.3985549;0.01376273,17.42954
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.01528332;0.1991545;0.01019373,0.03844938;0.4982022;0.01160007,0.1376046;0.3667542;-0.02963469,0.1959625;0.09325349;-0.0157884,0.2162714;-0.1800506;-0.07316808,-0.08613423;0.3704613;0.02040827,-0.3490527;0.2780439;0.04748078,-0.6258246;0.2737519;0.00530389,0.06380163;0.003823421;-0.04811167,0.08880804;-0.3707232;0.01096002,0.09342305;-0.7104219;0.09512363,0.09819998;-0.7604055;0.03529216,-0.07581132;0.002625574;-0.02541161,-0.1069073;-0.3735862;0.01815111,-0.1161531;-0.7144715;0.0969658,-0.1289687;-0.7032111;-0.0004230365,0.03034147;0.3985549;0.01376273,17.44084
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.01536067;0.1991507;0.01015093,0.03890622;0.4981695;0.01143336,0.1377162;0.3663185;-0.0300487,0.1957577;0.09277284;-0.0157679,0.2161572;-0.1803457;-0.07399252,-0.08572078;0.3703164;0.02082394,-0.3490267;0.278706;0.04685348,-0.6256633;0.2822757;0.003732521,0.06374688;0.003852537;-0.04818188,0.08861711;-0.3707215;0.0107733,0.09341602;-0.7103572;0.09518054,0.09799289;-0.7606363;0.03573037,-0.07582901;0.002633318;-0.02535793,-0.1069677;-0.3735819;0.01814456,-0.1162146;-0.7144681;0.09695502,-0.1292766;-0.7032111;-0.0004004538,0.03069332;0.3985316;0.0136366,17.46326
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.01545479;0.1991483;0.01005534,0.03912743;0.4981568;0.01124446,0.1378534;0.366216;-0.03021962,0.1955417;0.09259945;-0.01586482,0.2159669;-0.1805163;-0.07409371,-0.08563078;0.3711275;0.02226726,-0.3496395;0.2808428;0.04567825,-0.6260746;0.2847959;0.00131622,0.06368297;0.003810932;-0.04826961,0.08861101;-0.3707752;0.01058447,0.09346247;-0.7104062;0.09500751,0.09793538;-0.760892;0.03582959,-0.0758749;0.002718156;-0.02521131,-0.1070768;-0.3735107;0.01812806,-0.1162227;-0.7144238;0.09683374,-0.129745;-0.7031733;-0.0004575923,0.03087008;0.3985237;0.01349271,17.48529
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.01545479;0.1991483;0.01005534,0.03912743;0.4981568;0.01124446,0.1378534;0.366216;-0.03021962,0.1955417;0.09259945;-0.01586482,0.2159669;-0.1805163;-0.07409371,-0.08563078;0.3711275;0.02226726,-0.3496395;0.2808428;0.04567825,-0.6260746;0.2847959;0.00131622,0.06368297;0.003810932;-0.04826961,0.08861101;-0.3707752;0.01058447,0.09346247;-0.7104062;0.09500751,0.09793538;-0.760892;0.03582959,-0.0758749;0.002718156;-0.02521131,-0.1070768;-0.3735107;0.01812806,-0.1162227;-0.7144238;0.09683374,-0.129745;-0.7031733;-0.0004575923,0.03087008;0.3985237;0.01349271,17.49666
+0;0;0,0.008619261;0.1993859;0.01307529,0.02288352;0.4989225;0.01958929,0.1270317;0.366806;-0.01807636,0.1917995;0.09493059;-0.001079507,0.2361199;-0.1784786;-0.04210549,-0.0973046;0.3656131;0.01779979,-0.3203481;0.1974387;0.0370088,-0.5659397;0.06408563;0.01963947,0.06782506;0.004240311;-0.04221115,0.06859604;-0.3738134;-0.003808342,0.06347947;-0.7175295;0.06201754,0.0713231;-0.764825;-0.0009419397,-0.0728143;0.003493008;-0.03295263,-0.1159655;-0.3734357;-0.01144233,-0.1401219;-0.7176692;0.04703628,-0.1283931;-0.7612007;-0.01971377,0.0179213;0.3990469;0.02007386,0;0;0,0.01549463;0.1991439;0.01008053,0.03937263;0.498136;0.01147312,0.1379069;0.3659937;-0.03025306,0.1952716;0.09230626;-0.0159528,0.215917;-0.1805831;-0.07515734,-0.08539481;0.3709598;0.02257451,-0.3504031;0.2834193;0.04509651,-0.6264925;0.2938395;-0.0003576875,0.06367753;0.003823628;-0.04827579,0.0886057;-0.3707549;0.01062663,0.0934639;-0.7104293;0.09487435,0.09797087;-0.7617821;0.03689665,-0.07586986;0.002706634;-0.02522772,-0.1072158;-0.373523;0.01800091,-0.1163293;-0.714443;0.09668049,-0.1299498;-0.703189;-0.0005978271,0.0310584;0.3985057;0.0136373,17.51888
+0;0;0,0.008619261;0.1993859;0.01307529,0.02288352;0.4989225;0.01958929,0.1270317;0.366806;-0.01807636,0.1917995;0.09493059;-0.001079507,0.2361199;-0.1784786;-0.04210549,-0.0973046;0.3656131;0.01779979,-0.3203481;0.1974387;0.0370088,-0.5659397;0.06408563;0.01963947,0.06782506;0.004240311;-0.04221115,0.06859604;-0.3738134;-0.003808342,0.06347947;-0.7175295;0.06201754,0.0713231;-0.764825;-0.0009419397,-0.0728143;0.003493008;-0.03295263,-0.1159655;-0.3734357;-0.01144233,-0.1401219;-0.7176692;0.04703628,-0.1283931;-0.7612007;-0.01971377,0.0179213;0.3990469;0.02007386,0;0;0,0.01549463;0.1991439;0.01008053,0.03937263;0.498136;0.01147312,0.1379069;0.3659937;-0.03025306,0.1952716;0.09230626;-0.0159528,0.215917;-0.1805831;-0.07515734,-0.08539481;0.3709598;0.02257451,-0.3504031;0.2834193;0.04509651,-0.6264925;0.2938395;-0.0003576875,0.06367753;0.003823628;-0.04827579,0.0886057;-0.3707549;0.01062663,0.0934639;-0.7104293;0.09487435,0.09797087;-0.7617821;0.03689665,-0.07586986;0.002706634;-0.02522772,-0.1072158;-0.373523;0.01800091,-0.1163293;-0.714443;0.09668049,-0.1299498;-0.703189;-0.0005978271,0.0310584;0.3985057;0.0136373,17.54127
+0;0;0,0.008721747;0.1993813;0.01307713,0.0230958;0.4989127;0.01958765,0.1271854;0.3669446;-0.0182735,0.1921838;0.0951308;-0.001171196,0.2366823;-0.1782016;-0.04251463,-0.0972182;0.3659012;0.01824167,-0.3241681;0.2030898;0.03789233,-0.5713177;0.07257743;0.02105086,0.06780308;0.004312498;-0.04223912,0.06716944;-0.3735946;-0.0024166,0.06349578;-0.7175516;0.06223688,0.07114113;-0.7648556;-0.0007364787,-0.07282463;0.003405448;-0.03293899,-0.115939;-0.3735164;-0.01123478,-0.1400758;-0.7178716;0.04653125,-0.1285254;-0.7615685;-0.02006729,0.01810111;0.3990387;0.02007469,0;0;0,0.01547798;0.199147;0.01004544,0.03923944;0.4981485;0.01132224,0.1379597;0.3663006;-0.03030579,0.1952228;0.09259027;-0.01603711,0.2159283;-0.1802362;-0.07550989,-0.08555067;0.370937;0.02096801,-0.3513725;0.2865235;0.04572947,-0.6274956;0.2985218;0.0008734427,0.06365635;0.003804579;-0.04830521,0.08854665;-0.3707711;0.01063116,0.09341574;-0.7104441;0.09488393,0.09803008;-0.7621828;0.03746006,-0.07588281;0.002711178;-0.02518823,-0.1070282;-0.3736584;0.01695364,-0.1164999;-0.7144294;0.09623425,-0.1296487;-0.703178;-0.001108438,0.03100125;0.3985131;0.01353767,17.55243
+0;0;0,0.008721747;0.1993813;0.01307713,0.0230958;0.4989127;0.01958765,0.1271854;0.3669446;-0.0182735,0.1921838;0.0951308;-0.001171196,0.2366823;-0.1782016;-0.04251463,-0.0972182;0.3659012;0.01824167,-0.3241681;0.2030898;0.03789233,-0.5713177;0.07257743;0.02105086,0.06780308;0.004312498;-0.04223912,0.06716944;-0.3735946;-0.0024166,0.06349578;-0.7175516;0.06223688,0.07114113;-0.7648556;-0.0007364787,-0.07282463;0.003405448;-0.03293899,-0.115939;-0.3735164;-0.01123478,-0.1400758;-0.7178716;0.04653125,-0.1285254;-0.7615685;-0.02006729,0.01810111;0.3990387;0.02007469,0;0;0,0.01547798;0.199147;0.01004544,0.03923944;0.4981485;0.01132224,0.1379597;0.3663006;-0.03030579,0.1952228;0.09259027;-0.01603711,0.2159283;-0.1802362;-0.07550989,-0.08555067;0.370937;0.02096801,-0.3513725;0.2865235;0.04572947,-0.6274956;0.2985218;0.0008734427,0.06365635;0.003804579;-0.04830521,0.08854665;-0.3707711;0.01063116,0.09341574;-0.7104441;0.09488393,0.09803008;-0.7621828;0.03746006,-0.07588281;0.002711178;-0.02518823,-0.1070282;-0.3736584;0.01695364,-0.1164999;-0.7144294;0.09623425,-0.1296487;-0.703178;-0.001108438,0.03100125;0.3985131;0.01353767,17.5748
+0;0;0,0.008721747;0.1993813;0.01307713,0.0230958;0.4989127;0.01958765,0.1271854;0.3669446;-0.0182735,0.1921838;0.0951308;-0.001171196,0.2366823;-0.1782016;-0.04251463,-0.0972182;0.3659012;0.01824167,-0.3241681;0.2030898;0.03789233,-0.5713177;0.07257743;0.02105086,0.06780308;0.004312498;-0.04223912,0.06716944;-0.3735946;-0.0024166,0.06349578;-0.7175516;0.06223688,0.07114113;-0.7648556;-0.0007364787,-0.07282463;0.003405448;-0.03293899,-0.115939;-0.3735164;-0.01123478,-0.1400758;-0.7178716;0.04653125,-0.1285254;-0.7615685;-0.02006729,0.01810111;0.3990387;0.02007469,0;0;0,0.01563526;0.1991355;0.0100287,0.03946568;0.4981317;0.01132169,0.1381816;0.366344;-0.03033944,0.1952589;0.09260213;-0.01593113,0.2160689;-0.1801196;-0.07584603,-0.08534999;0.3707999;0.02025437,-0.3520306;0.2895523;0.04633697,-0.6277005;0.3050538;-0.0002010465,0.06362475;0.003788511;-0.04834809,0.08875726;-0.3707641;0.01063228,0.09358795;-0.7104363;0.09489072,0.09802175;-0.762309;0.03764374,-0.07594971;0.002718441;-0.02498503,-0.1066311;-0.3737018;0.0170446,-0.1161565;-0.7145022;0.09619195,-0.1291102;-0.7032501;-0.001177065,0.03121613;0.398497;0.01353037,17.58595
+0;0;0,0.008858544;0.199367;0.01320265,0.02350053;0.4988792;0.02001214,0.1274154;0.3671026;-0.01833704,0.1927533;0.09536225;-0.001362868,0.2373784;-0.1779684;-0.04258124,-0.09694714;0.3660011;0.01859268,-0.326583;0.2069537;0.03786141,-0.5774626;0.08376035;0.02104338,0.0678518;0.004361765;-0.04215576,0.06778723;-0.3735963;-0.002815239,0.06367667;-0.7175575;0.06178931,0.07132846;-0.7648406;-0.001208998,-0.07278276;0.003346762;-0.03303738,-0.1160575;-0.3735431;-0.01109727,-0.1398667;-0.7179997;0.04619788,-0.1284677;-0.7615574;-0.02058035,0.01840975;0.3990096;0.02038926,0;0;0,0.01563526;0.1991355;0.0100287,0.03946568;0.4981317;0.01132169,0.1381816;0.366344;-0.03033944,0.1952589;0.09260213;-0.01593113,0.2160689;-0.1801196;-0.07584603,-0.08534999;0.3707999;0.02025437,-0.3520306;0.2895523;0.04633697,-0.6277005;0.3050538;-0.0002010465,0.06362475;0.003788511;-0.04834809,0.08875726;-0.3707641;0.01063228,0.09358795;-0.7104363;0.09489072,0.09802175;-0.762309;0.03764374,-0.07594971;0.002718441;-0.02498503,-0.1066311;-0.3737018;0.0170446,-0.1161565;-0.7145022;0.09619195,-0.1291102;-0.7032501;-0.001177065,0.03121613;0.398497;0.01353037,17.59712
+0;0;0,0.008858544;0.199367;0.01320265,0.02350053;0.4988792;0.02001214,0.1274154;0.3671026;-0.01833704,0.1927533;0.09536225;-0.001362868,0.2373784;-0.1779684;-0.04258124,-0.09694714;0.3660011;0.01859268,-0.326583;0.2069537;0.03786141,-0.5774626;0.08376035;0.02104338,0.0678518;0.004361765;-0.04215576,0.06778723;-0.3735963;-0.002815239,0.06367667;-0.7175575;0.06178931,0.07132846;-0.7648406;-0.001208998,-0.07278276;0.003346762;-0.03303738,-0.1160575;-0.3735431;-0.01109727,-0.1398667;-0.7179997;0.04619788,-0.1284677;-0.7615574;-0.02058035,0.01840975;0.3990096;0.02038926,0;0;0,0.01563526;0.1991355;0.0100287,0.03946568;0.4981317;0.01132169,0.1381816;0.366344;-0.03033944,0.1952589;0.09260213;-0.01593113,0.2160689;-0.1801196;-0.07584603,-0.08534999;0.3707999;0.02025437,-0.3520306;0.2895523;0.04633697,-0.6277005;0.3050538;-0.0002010465,0.06362475;0.003788511;-0.04834809,0.08875726;-0.3707641;0.01063228,0.09358795;-0.7104363;0.09489072,0.09802175;-0.762309;0.03764374,-0.07594971;0.002718441;-0.02498503,-0.1066311;-0.3737018;0.0170446,-0.1161565;-0.7145022;0.09619195,-0.1291102;-0.7032501;-0.001177065,0.03121613;0.398497;0.01353037,17.60829
+0;0;0,0.008858544;0.199367;0.01320265,0.02350053;0.4988792;0.02001214,0.1274154;0.3671026;-0.01833704,0.1927533;0.09536225;-0.001362868,0.2373784;-0.1779684;-0.04258124,-0.09694714;0.3660011;0.01859268,-0.326583;0.2069537;0.03786141,-0.5774626;0.08376035;0.02104338,0.0678518;0.004361765;-0.04215576,0.06778723;-0.3735963;-0.002815239,0.06367667;-0.7175575;0.06178931,0.07132846;-0.7648406;-0.001208998,-0.07278276;0.003346762;-0.03303738,-0.1160575;-0.3735431;-0.01109727,-0.1398667;-0.7179997;0.04619788,-0.1284677;-0.7615574;-0.02058035,0.01840975;0.3990096;0.02038926,0;0;0,0.01614611;0.1991036;0.009852126,0.0403771;0.4980675;0.01110468,0.1388497;0.366183;-0.03064166,0.1959062;0.09243414;-0.01628376,0.2168954;-0.1803097;-0.07603555,-0.08471654;0.3717302;0.02188682,-0.3524215;0.2924654;0.04312705,-0.6278914;0.3107884;-0.00356986,0.0635688;0.003770302;-0.04842304,0.08946059;-0.3708204;0.009984471,0.09448449;-0.7104311;0.09447899,0.09900019;-0.7628221;0.03798708,-0.07594375;0.002687333;-0.02500651,-0.1060331;-0.3738338;0.01654403,-0.1154474;-0.7146509;0.09563288,-0.1289247;-0.7034007;-0.001664639,0.0319578;0.3984473;0.01332566,17.63087
+0;0;0,0.008867874;0.199371;0.01313691,0.02343731;0.4988883;0.019878,0.1274266;0.3673666;-0.01855349,0.1934727;0.09582567;-0.001132784,0.2376556;-0.1775546;-0.04249836,-0.09703733;0.3662138;0.01879901,-0.3310171;0.213685;0.03850795,-0.5867793;0.1006365;0.02416493,0.06791002;0.004391224;-0.04205886,0.0681783;-0.3736244;-0.003276091,0.06392799;-0.7175974;0.06125693,0.07138844;-0.7648598;-0.001789566,-0.0727209;0.0033105;-0.03317698,-0.116223;-0.3735719;-0.01156105,-0.1396166;-0.7180524;0.04576187,-0.1291461;-0.7621523;-0.02056746,0.01838266;0.3990169;0.02027519,0;0;0,0.01627027;0.1990949;0.009823414,0.04104938;0.4980136;0.0110424,0.1399297;0.3663736;-0.02942802,0.1976086;0.09262896;-0.01772323,0.219092;-0.180104;-0.07734877,-0.08427653;0.3721397;0.02233393,-0.3527213;0.294934;0.04174263,-0.6278552;0.3147097;-0.006322388,0.06355349;0.003813702;-0.04843976,0.0893931;-0.3708022;0.009828765,0.09444588;-0.7104026;0.09436314,0.07882831;-0.6990812;-0.002627589,-0.07594732;0.002646423;-0.02500001,-0.106185;-0.3738644;0.01653695,-0.1155839;-0.7146947;0.09557053,-0.1287481;-0.7034441;-0.00176993,0.03246315;0.3984082;0.01328884,17.65288
+0;0;0,0.008867874;0.199371;0.01313691,0.02343731;0.4988883;0.019878,0.1274266;0.3673666;-0.01855349,0.1934727;0.09582567;-0.001132784,0.2376556;-0.1775546;-0.04249836,-0.09703733;0.3662138;0.01879901,-0.3310171;0.213685;0.03850795,-0.5867793;0.1006365;0.02416493,0.06791002;0.004391224;-0.04205886,0.0681783;-0.3736244;-0.003276091,0.06392799;-0.7175974;0.06125693,0.07138844;-0.7648598;-0.001789566,-0.0727209;0.0033105;-0.03317698,-0.116223;-0.3735719;-0.01156105,-0.1396166;-0.7180524;0.04576187,-0.1291461;-0.7621523;-0.02056746,0.01838266;0.3990169;0.02027519,0;0;0,0.01627027;0.1990949;0.009823414,0.04104938;0.4980136;0.0110424,0.1399297;0.3663736;-0.02942802,0.1976086;0.09262896;-0.01772323,0.219092;-0.180104;-0.07734877,-0.08427653;0.3721397;0.02233393,-0.3527213;0.294934;0.04174263,-0.6278552;0.3147097;-0.006322388,0.06355349;0.003813702;-0.04843976,0.0893931;-0.3708022;0.009828765,0.09444588;-0.7104026;0.09436314,0.07882831;-0.6990812;-0.002627589,-0.07594732;0.002646423;-0.02500001,-0.106185;-0.3738644;0.01653695,-0.1155839;-0.7146947;0.09557053,-0.1287481;-0.7034441;-0.00176993,0.03246315;0.3984082;0.01328884,17.66432
+0;0;0,0.008867874;0.199371;0.01313691,0.02343731;0.4988883;0.019878,0.1274266;0.3673666;-0.01855349,0.1934727;0.09582567;-0.001132784,0.2376556;-0.1775546;-0.04249836,-0.09703733;0.3662138;0.01879901,-0.3310171;0.213685;0.03850795,-0.5867793;0.1006365;0.02416493,0.06791002;0.004391224;-0.04205886,0.0681783;-0.3736244;-0.003276091,0.06392799;-0.7175974;0.06125693,0.07138844;-0.7648598;-0.001789566,-0.0727209;0.0033105;-0.03317698,-0.116223;-0.3735719;-0.01156105,-0.1396166;-0.7180524;0.04576187,-0.1291461;-0.7621523;-0.02056746,0.01838266;0.3990169;0.02027519,0;0;0,0.01661209;0.1990675;0.009805868,0.04174142;0.4979566;0.01104842,0.1404548;0.3664269;-0.02953744,0.1979228;0.09264904;-0.01757317,0.2193134;-0.1800731;-0.0772813,-0.08381839;0.3725991;0.0227242,-0.3526086;0.2963007;0.04090006,-0.6271507;0.3199936;-0.008751746,0.06354786;0.003648677;-0.04845985,0.08954605;-0.3708977;0.01018425,0.09474355;-0.7105373;0.09455206,0.07900175;-0.6992078;-0.002420157,-0.07593941;0.002836853;-0.02500315,-0.1056612;-0.3737247;0.01644608,-0.1152619;-0.7145133;0.09563539,-0.1285488;-0.7032624;-0.001688436,0.03300242;0.3983644;0.01328761,17.68658
+0;0;0,0.008996519;0.199367;0.0131092,0.02370468;0.4988779;0.01983866,0.1276546;0.3674471;-0.01863894,0.19406;0.09600985;-0.0009712204,0.2381062;-0.1773425;-0.04266565,-0.09686004;0.366339;0.01923099,-0.3342544;0.2191529;0.03872838,-0.5916345;0.1099958;0.02322942,0.06788849;0.004399925;-0.04209266,0.06873038;-0.3736196;-0.00335563,0.06410693;-0.7176429;0.06088273,0.07151467;-0.7647458;-0.002364971,-0.07273919;0.003295872;-0.0331383,-0.1159988;-0.3736302;-0.01180056,-0.139242;-0.7180828;0.04575121,-0.1289375;-0.7618726;-0.02094878,0.01860276;0.3990089;0.02023963,0;0;0,0.01661209;0.1990675;0.009805868,0.04174142;0.4979566;0.01104842,0.1404548;0.3664269;-0.02953744,0.1979228;0.09264904;-0.01757317,0.2193134;-0.1800731;-0.0772813,-0.08381839;0.3725991;0.0227242,-0.3526086;0.2963007;0.04090006,-0.6271507;0.3199936;-0.008751746,0.06354786;0.003648677;-0.04845985,0.08954605;-0.3708977;0.01018425,0.09474355;-0.7105373;0.09455206,0.07900175;-0.6992078;-0.002420157,-0.07593941;0.002836853;-0.02500315,-0.1056612;-0.3737247;0.01644608,-0.1152619;-0.7145133;0.09563539,-0.1285488;-0.7032624;-0.001688436,0.03300242;0.3983644;0.01328761,17.70877
+0;0;0,0.008996519;0.199367;0.0131092,0.02370468;0.4988779;0.01983866,0.1276546;0.3674471;-0.01863894,0.19406;0.09600985;-0.0009712204,0.2381062;-0.1773425;-0.04266565,-0.09686004;0.366339;0.01923099,-0.3342544;0.2191529;0.03872838,-0.5916345;0.1099958;0.02322942,0.06788849;0.004399925;-0.04209266,0.06873038;-0.3736196;-0.00335563,0.06410693;-0.7176429;0.06088273,0.07151467;-0.7647458;-0.002364971,-0.07273919;0.003295872;-0.0331383,-0.1159988;-0.3736302;-0.01180056,-0.139242;-0.7180828;0.04575121,-0.1289375;-0.7618726;-0.02094878,0.01860276;0.3990089;0.02023963,0;0;0,0.01665531;0.1990652;0.009779306,0.04194737;0.4979406;0.01099153,0.1405572;0.3663034;-0.02970599,0.1978466;0.09250954;-0.01726239,0.2194934;-0.1801459;-0.07718246,-0.08369453;0.3729677;0.0229412,-0.3529046;0.2979511;0.04021575,-0.6273528;0.3218086;-0.009874672,0.06349407;0.003602896;-0.04853372,0.0893823;-0.3709526;0.01010064,0.09478218;-0.7106023;0.09441504,0.07894418;-0.6992625;-0.002543487,-0.07597408;0.002915511;-0.02488854,-0.1058401;-0.3736489;0.01643017,-0.1155229;-0.714424;0.095668,-0.1289032;-0.7031754;-0.001642585,0.033189;0.3983505;0.01324805,17.72004
+0;0;0,0.008996519;0.199367;0.0131092,0.02370468;0.4988779;0.01983866,0.1276546;0.3674471;-0.01863894,0.19406;0.09600985;-0.0009712204,0.2381062;-0.1773425;-0.04266565,-0.09686004;0.366339;0.01923099,-0.3342544;0.2191529;0.03872838,-0.5916345;0.1099958;0.02322942,0.06788849;0.004399925;-0.04209266,0.06873038;-0.3736196;-0.00335563,0.06410693;-0.7176429;0.06088273,0.07151467;-0.7647458;-0.002364971,-0.07273919;0.003295872;-0.0331383,-0.1159988;-0.3736302;-0.01180056,-0.139242;-0.7180828;0.04575121,-0.1289375;-0.7618726;-0.02094878,0.01860276;0.3990089;0.02023963,0;0;0,0.01665531;0.1990652;0.009779306,0.04194737;0.4979406;0.01099153,0.1405572;0.3663034;-0.02970599,0.1978466;0.09250954;-0.01726239,0.2194934;-0.1801459;-0.07718246,-0.08369453;0.3729677;0.0229412,-0.3529046;0.2979511;0.04021575,-0.6273528;0.3218086;-0.009874672,0.06349407;0.003602896;-0.04853372,0.0893823;-0.3709526;0.01010064,0.09478218;-0.7106023;0.09441504,0.07894418;-0.6992625;-0.002543487,-0.07597408;0.002915511;-0.02488854,-0.1058401;-0.3736489;0.01643017,-0.1155229;-0.714424;0.095668,-0.1289032;-0.7031754;-0.001642585,0.033189;0.3983505;0.01324805,17.74283
+0;0;0,0.009056021;0.1993635;0.01312191,0.0237747;0.4988737;0.01985871,0.1277907;0.3674763;-0.01847665,0.194439;0.09610584;-0.0006982926,0.2382782;-0.1773275;-0.04207832,-0.09687793;0.3666477;0.02000534,-0.3371064;0.224108;0.03931054,-0.5983487;0.1246684;0.02305521,0.06796339;0.004456939;-0.04196562,0.06942165;-0.373571;-0.003330026,0.06422225;-0.7175925;0.06087403,0.07210691;-0.7641596;-0.002964165,-0.07267879;0.003257259;-0.03327437,-0.1156368;-0.3737021;-0.01191421,-0.1389639;-0.7181962;0.04535445,-0.1284701;-0.7623097;-0.02095593,0.01867713;0.3990045;0.02025586,0;0;0,0.01687765;0.1990484;0.009739708,0.04298638;0.4978531;0.01095625,0.1411156;0.3659549;-0.02989048,0.198108;0.09212455;-0.01689782,0.2198762;-0.1805129;-0.07685554,-0.08300248;0.3730629;0.02312896,-0.3527871;0.2999406;0.03954168,-0.6268911;0.3255888;-0.01153827,0.06353541;0.003517998;-0.04848583,0.08970249;-0.3710382;0.01001996,0.09510111;-0.7106888;0.09433076,0.1000104;-0.7629661;0.03770605,-0.07594902;0.003018519;-0.02495265,-0.1054793;-0.3735709;0.01638015,-0.1151149;-0.7143587;0.09556834,-0.1285703;-0.7031055;-0.001732804,0.0338957;0.3982928;0.01321584,17.76459
+0;0;0,0.009056021;0.1993635;0.01312191,0.0237747;0.4988737;0.01985871,0.1277907;0.3674763;-0.01847665,0.194439;0.09610584;-0.0006982926,0.2382782;-0.1773275;-0.04207832,-0.09687793;0.3666477;0.02000534,-0.3371064;0.224108;0.03931054,-0.5983487;0.1246684;0.02305521,0.06796339;0.004456939;-0.04196562,0.06942165;-0.373571;-0.003330026,0.06422225;-0.7175925;0.06087403,0.07210691;-0.7641596;-0.002964165,-0.07267879;0.003257259;-0.03327437,-0.1156368;-0.3737021;-0.01191421,-0.1389639;-0.7181962;0.04535445,-0.1284701;-0.7623097;-0.02095593,0.01867713;0.3990045;0.02025586,0;0;0,0.01687765;0.1990484;0.009739708,0.04298638;0.4978531;0.01095625,0.1411156;0.3659549;-0.02989048,0.198108;0.09212455;-0.01689782,0.2198762;-0.1805129;-0.07685554,-0.08300248;0.3730629;0.02312896,-0.3527871;0.2999406;0.03954168,-0.6268911;0.3255888;-0.01153827,0.06353541;0.003517998;-0.04848583,0.08970249;-0.3710382;0.01001996,0.09510111;-0.7106888;0.09433076,0.1000104;-0.7629661;0.03770605,-0.07594902;0.003018519;-0.02495265,-0.1054793;-0.3735709;0.01638015,-0.1151149;-0.7143587;0.09556834,-0.1285703;-0.7031055;-0.001732804,0.0338957;0.3982928;0.01321584,17.77586
+0;0;0,0.009056021;0.1993635;0.01312191,0.0237747;0.4988737;0.01985871,0.1277907;0.3674763;-0.01847665,0.194439;0.09610584;-0.0006982926,0.2382782;-0.1773275;-0.04207832,-0.09687793;0.3666477;0.02000534,-0.3371064;0.224108;0.03931054,-0.5983487;0.1246684;0.02305521,0.06796339;0.004456939;-0.04196562,0.06942165;-0.373571;-0.003330026,0.06422225;-0.7175925;0.06087403,0.07210691;-0.7641596;-0.002964165,-0.07267879;0.003257259;-0.03327437,-0.1156368;-0.3737021;-0.01191421,-0.1389639;-0.7181962;0.04535445,-0.1284701;-0.7623097;-0.02095593,0.01867713;0.3990045;0.02025586,0;0;0,0.01693573;0.199041;0.009791554,0.0431848;0.4978328;0.0111413,0.1418044;0.3665699;-0.02895271,0.1995817;0.09284061;-0.01737548,0.2214505;-0.1798044;-0.07726243,-0.08283946;0.3730818;0.02312408,-0.3534698;0.3028846;0.03834248,-0.6275662;0.3295613;-0.01224899,0.06356665;0.003456467;-0.04844929,0.08974519;-0.3711186;0.009930715,0.09515923;-0.7107673;0.09424835,0.09991072;-0.7628769;0.03736749,-0.07593976;0.00304014;-0.02497819,-0.1054881;-0.3735484;0.0163488,-0.1151102;-0.7143345;0.09554653,-0.1282539;-0.7030731;-0.001798756,0.03407952;0.3982729;0.01335887,17.78717
+0;0;0,0.009030208;0.1993653;0.01311285,0.0236621;0.498881;0.01979399,0.1277164;0.3676974;-0.0186905,0.1948965;0.09648177;-0.0005543809,0.2388632;-0.1769165;-0.04203099,-0.09708451;0.3671211;0.02027341,-0.3412597;0.231637;0.04082857,-0.6033049;0.1345793;0.02316124,0.06791342;0.004506957;-0.04204111,0.06963946;-0.3735504;-0.003705136,0.06440059;-0.7175987;0.06035186,0.07225834;-0.7639749;-0.003717884,-0.07269925;0.003186972;-0.03323647,-0.1155464;-0.3738126;-0.01236996,-0.1389746;-0.7183221;0.04476443,-0.1282539;-0.7625417;-0.02139089,0.01860082;0.39901;0.02021081,0;0;0,0.01693573;0.199041;0.009791554,0.0431848;0.4978328;0.0111413,0.1418044;0.3665699;-0.02895271,0.1995817;0.09284061;-0.01737548,0.2214505;-0.1798044;-0.07726243,-0.08283946;0.3730818;0.02312408,-0.3534698;0.3028846;0.03834248,-0.6275662;0.3295613;-0.01224899,0.06356665;0.003456467;-0.04844929,0.08974519;-0.3711186;0.009930715,0.09515923;-0.7107673;0.09424835,0.09991072;-0.7628769;0.03736749,-0.07593976;0.00304014;-0.02497819,-0.1054881;-0.3735484;0.0163488,-0.1151102;-0.7143345;0.09554653,-0.1282539;-0.7030731;-0.001798756,0.03407952;0.3982729;0.01335887,17.80927
+0;0;0,0.009030208;0.1993653;0.01311285,0.0236621;0.498881;0.01979399,0.1277164;0.3676974;-0.0186905,0.1948965;0.09648177;-0.0005543809,0.2388632;-0.1769165;-0.04203099,-0.09708451;0.3671211;0.02027341,-0.3412597;0.231637;0.04082857,-0.6033049;0.1345793;0.02316124,0.06791342;0.004506957;-0.04204111,0.06963946;-0.3735504;-0.003705136,0.06440059;-0.7175987;0.06035186,0.07225834;-0.7639749;-0.003717884,-0.07269925;0.003186972;-0.03323647,-0.1155464;-0.3738126;-0.01236996,-0.1389746;-0.7183221;0.04476443,-0.1282539;-0.7625417;-0.02139089,0.01860082;0.39901;0.02021081,0;0;0,0.0171725;0.1990199;0.009807811,0.0439326;0.4977652;0.01148636,0.1422742;0.3664524;-0.0289052,0.1992327;0.0925864;-0.01653068,0.2209548;-0.1801667;-0.07597757,-0.08232719;0.3731574;0.02313738,-0.353665;0.3055299;0.03736142,-0.62745;0.3342561;-0.01379136,0.06357596;0.003344461;-0.04844493,0.08995242;-0.3712174;0.009930991,0.09523701;-0.7108521;0.09431284,0.1001572;-0.7622031;0.03636619,-0.07595471;0.003189447;-0.02491404,-0.1030216;-0.3737092;0.01527056,-0.1146417;-0.714321;0.09494855,-0.1277785;-0.7030527;-0.002399042,0.03463644;0.3982202;0.01357923,17.82056
+0;0;0,0.009030208;0.1993653;0.01311285,0.0236621;0.498881;0.01979399,0.1277164;0.3676974;-0.0186905,0.1948965;0.09648177;-0.0005543809,0.2388632;-0.1769165;-0.04203099,-0.09708451;0.3671211;0.02027341,-0.3412597;0.231637;0.04082857,-0.6033049;0.1345793;0.02316124,0.06791342;0.004506957;-0.04204111,0.06963946;-0.3735504;-0.003705136,0.06440059;-0.7175987;0.06035186,0.07225834;-0.7639749;-0.003717884,-0.07269925;0.003186972;-0.03323647,-0.1155464;-0.3738126;-0.01236996,-0.1389746;-0.7183221;0.04476443,-0.1282539;-0.7625417;-0.02139089,0.01860082;0.39901;0.02021081,0;0;0,0.0171725;0.1990199;0.009807811,0.0439326;0.4977652;0.01148636,0.1422742;0.3664524;-0.0289052,0.1992327;0.0925864;-0.01653068,0.2209548;-0.1801667;-0.07597757,-0.08232719;0.3731574;0.02313738,-0.353665;0.3055299;0.03736142,-0.62745;0.3342561;-0.01379136,0.06357596;0.003344461;-0.04844493,0.08995242;-0.3712174;0.009930991,0.09523701;-0.7108521;0.09431284,0.1001572;-0.7622031;0.03636619,-0.07595471;0.003189447;-0.02491404,-0.1030216;-0.3737092;0.01527056,-0.1146417;-0.714321;0.09494855,-0.1277785;-0.7030527;-0.002399042,0.03463644;0.3982202;0.01357923,17.83167
+0;0;0,0.009129696;0.1993628;0.01308055,0.02382755;0.4988765;0.01971603,0.1278862;0.3678873;-0.0188527,0.1952233;0.09671125;-0.0007063486,0.2395638;-0.1766423;-0.04207952,-0.09692515;0.3670837;0.02060517,-0.3442428;0.2374334;0.04121587,-0.6086458;0.147107;0.02299087,0.06792352;0.004566428;-0.04201837,0.06998231;-0.3735087;-0.00387504,0.06474044;-0.7175963;0.05997054,0.07269403;-0.763842;-0.004242606,-0.07266805;0.003136081;-0.03330944,-0.1155492;-0.3738483;-0.01223844,-0.1387718;-0.7184058;0.04468976,-0.1477833;-0.705825;-0.0533682,0.01874994;0.3990064;0.02014573,0;0;0,0.0171685;0.1990193;0.009825851,0.04388709;0.4977683;0.01151464,0.1422002;0.3661777;-0.02881388,0.1986361;0.09222978;-0.01587021,0.2204523;-0.1805745;-0.07504679,-0.08235096;0.3731835;0.02315384,-0.3540231;0.3067912;0.03680466,-0.6274864;0.3380846;-0.01456189,0.06357793;0.003324179;-0.04844375,0.08982617;-0.3712514;0.009901475,0.09517054;-0.7108521;0.09441623,0.09967676;-0.7620167;0.03617526,-0.07595411;0.003209514;-0.02491329,-0.1032704;-0.3736692;0.01528965,-0.1147128;-0.7142804;0.09499608,-0.1278421;-0.7030113;-0.00235264,0.03461915;0.3982207;0.01360747,17.85434
+0;0;0,0.009129696;0.1993628;0.01308055,0.02382755;0.4988765;0.01971603,0.1278862;0.3678873;-0.0188527,0.1952233;0.09671125;-0.0007063486,0.2395638;-0.1766423;-0.04207952,-0.09692515;0.3670837;0.02060517,-0.3442428;0.2374334;0.04121587,-0.6086458;0.147107;0.02299087,0.06792352;0.004566428;-0.04201837,0.06998231;-0.3735087;-0.00387504,0.06474044;-0.7175963;0.05997054,0.07269403;-0.763842;-0.004242606,-0.07266805;0.003136081;-0.03330944,-0.1155492;-0.3738483;-0.01223844,-0.1387718;-0.7184058;0.04468976,-0.1477833;-0.705825;-0.0533682,0.01874994;0.3990064;0.02014573,0;0;0,0.0171685;0.1990193;0.009825851,0.04388709;0.4977683;0.01151464,0.1422002;0.3661777;-0.02881388,0.1986361;0.09222978;-0.01587021,0.2204523;-0.1805745;-0.07504679,-0.08235096;0.3731835;0.02315384,-0.3540231;0.3067912;0.03680466,-0.6274864;0.3380846;-0.01456189,0.06357793;0.003324179;-0.04844375,0.08982617;-0.3712514;0.009901475,0.09517054;-0.7108521;0.09441623,0.09967676;-0.7620167;0.03617526,-0.07595411;0.003209514;-0.02491329,-0.1032704;-0.3736692;0.01528965,-0.1147128;-0.7142804;0.09499608,-0.1278421;-0.7030113;-0.00235264,0.03461915;0.3982207;0.01360747,17.86523
+0;0;0,0.009129696;0.1993628;0.01308055,0.02382755;0.4988765;0.01971603,0.1278862;0.3678873;-0.0188527,0.1952233;0.09671125;-0.0007063486,0.2395638;-0.1766423;-0.04207952,-0.09692515;0.3670837;0.02060517,-0.3442428;0.2374334;0.04121587,-0.6086458;0.147107;0.02299087,0.06792352;0.004566428;-0.04201837,0.06998231;-0.3735087;-0.00387504,0.06474044;-0.7175963;0.05997054,0.07269403;-0.763842;-0.004242606,-0.07266805;0.003136081;-0.03330944,-0.1155492;-0.3738483;-0.01223844,-0.1387718;-0.7184058;0.04468976,-0.1477833;-0.705825;-0.0533682,0.01874994;0.3990064;0.02014573,0;0;0,0.01739515;0.1989957;0.009904956,0.04502278;0.4976599;0.01203066,0.1429266;0.3661054;-0.0286606,0.1988645;0.09206706;-0.01547295,0.2208568;-0.1808921;-0.07386515,-0.08171368;0.3738264;0.02335739,-0.3535282;0.3077823;0.03580918,-0.6269372;0.3396986;-0.01546338,0.06363463;0.003149016;-0.04838098,0.08997187;-0.3714329;0.00988318,0.09540923;-0.7110761;0.09422158,0.09979811;-0.762283;0.03603065,-0.07591627;0.003531389;-0.02498497,-0.1022353;-0.3734602;0.01482269,-0.1143594;-0.714007;0.09470329,-0.1274443;-0.702717;-0.002655439,0.03542061;0.3981405;0.01395648,17.88762
+0;0;0,0.009305578;0.1993645;0.01293055,0.02411699;0.4988762;0.01942171,0.1282095;0.3680823;-0.01910428,0.1960295;0.09706238;-0.0004329793,0.240443;-0.1762067;-0.04228321,-0.09679043;0.3675675;0.02060973,-0.3481584;0.2459082;0.04093664,-0.613115;0.1570112;0.0237519,0.06789394;0.004601059;-0.04206235,0.07040444;-0.373518;-0.00438372,0.06441714;-0.7174276;0.06034894,0.07342889;-0.7643718;-0.002883822,-0.07269738;0.003067907;-0.03325175,-0.11668;-0.3737718;-0.01186569,-0.1380603;-0.71855;0.04444517,-0.1275387;-0.7630371;-0.02144083,0.01901544;0.3990075;0.01988656,0;0;0,0.01739515;0.1989957;0.009904956,0.04502278;0.4976599;0.01203066,0.1429266;0.3661054;-0.0286606,0.1988645;0.09206706;-0.01547295,0.2208568;-0.1808921;-0.07386515,-0.08171368;0.3738264;0.02335739,-0.3535282;0.3077823;0.03580918,-0.6269372;0.3396986;-0.01546338,0.06363463;0.003149016;-0.04838098,0.08997187;-0.3714329;0.00988318,0.09540923;-0.7110761;0.09422158,0.09979811;-0.762283;0.03603065,-0.07591627;0.003531389;-0.02498497,-0.1022353;-0.3734602;0.01482269,-0.1143594;-0.714007;0.09470329,-0.1274443;-0.702717;-0.002655439,0.03542061;0.3981405;0.01395648,17.89869
+0;0;0,0.009305578;0.1993645;0.01293055,0.02411699;0.4988762;0.01942171,0.1282095;0.3680823;-0.01910428,0.1960295;0.09706238;-0.0004329793,0.240443;-0.1762067;-0.04228321,-0.09679043;0.3675675;0.02060973,-0.3481584;0.2459082;0.04093664,-0.613115;0.1570112;0.0237519,0.06789394;0.004601059;-0.04206235,0.07040444;-0.373518;-0.00438372,0.06441714;-0.7174276;0.06034894,0.07342889;-0.7643718;-0.002883822,-0.07269738;0.003067907;-0.03325175,-0.11668;-0.3737718;-0.01186569,-0.1380603;-0.71855;0.04444517,-0.1275387;-0.7630371;-0.02144083,0.01901544;0.3990075;0.01988656,0;0;0,0.01739515;0.1989957;0.009904956,0.04502278;0.4976599;0.01203066,0.1429266;0.3661054;-0.0286606,0.1988645;0.09206706;-0.01547295,0.2208568;-0.1808921;-0.07386515,-0.08171368;0.3738264;0.02335739,-0.3535282;0.3077823;0.03580918,-0.6269372;0.3396986;-0.01546338,0.06363463;0.003149016;-0.04838098,0.08997187;-0.3714329;0.00988318,0.09540923;-0.7110761;0.09422158,0.09979811;-0.762283;0.03603065,-0.07591627;0.003531389;-0.02498497,-0.1022353;-0.3734602;0.01482269,-0.1143594;-0.714007;0.09470329,-0.1274443;-0.702717;-0.002655439,0.03542061;0.3981405;0.01395648,17.91006
+0;0;0,0.009305578;0.1993645;0.01293055,0.02411699;0.4988762;0.01942171,0.1282095;0.3680823;-0.01910428,0.1960295;0.09706238;-0.0004329793,0.240443;-0.1762067;-0.04228321,-0.09679043;0.3675675;0.02060973,-0.3481584;0.2459082;0.04093664,-0.613115;0.1570112;0.0237519,0.06789394;0.004601059;-0.04206235,0.07040444;-0.373518;-0.00438372,0.06441714;-0.7174276;0.06034894,0.07342889;-0.7643718;-0.002883822,-0.07269738;0.003067907;-0.03325175,-0.11668;-0.3737718;-0.01186569,-0.1380603;-0.71855;0.04444517,-0.1275387;-0.7630371;-0.02144083,0.01901544;0.3990075;0.01988656,0;0;0,0.01778634;0.1989538;0.01005139,0.04615397;0.4975468;0.01241319,0.1436537;0.365694;-0.02868017,0.1991155;0.09157801;-0.01509895,0.221343;-0.1813519;-0.0735389,-0.08080357;0.373767;0.02321572,-0.3528816;0.3088349;0.03576016,-0.6258456;0.3427;-0.01662154,0.06363504;0.003102386;-0.04838344,0.08988777;-0.3714873;0.009869352,0.09529135;-0.7111402;0.09417062,0.09971095;-0.7621866;0.03575878,-0.07591403;0.003591227;-0.02498325,-0.1027056;-0.373335;0.01512662,-0.1145052;-0.7139549;0.09474369,-0.1274988;-0.7026463;-0.002630852,0.03637404;0.3980435;0.01426838,17.93212
+0;0;0,0.009315118;0.1993625;0.01295394,0.02412764;0.4988744;0.0194227,0.1285411;0.3680911;-0.01819473,0.1959779;0.09692338;-0.000297375,0.2406505;-0.1762547;-0.0424644,-0.09673095;0.3674095;0.02109802,-0.3511946;0.2524639;0.04197288,-0.6174657;0.167679;0.02433159,0.0679182;0.004631103;-0.0420199,0.07095236;-0.3735139;-0.004641216,0.06490506;-0.7174513;0.05993814,0.07409275;-0.7645906;-0.00303096,-0.07263178;0.003040321;-0.0333973,-0.1162533;-0.3738481;-0.01213043,-0.1376748;-0.7186333;0.04412183,-0.1269477;-0.7630005;-0.02186646,0.01902848;0.3990057;0.01990101,0;0;0,0.01778634;0.1989538;0.01005139,0.04615397;0.4975468;0.01241319,0.1436537;0.365694;-0.02868017,0.1991155;0.09157801;-0.01509895,0.221343;-0.1813519;-0.0735389,-0.08080357;0.373767;0.02321572,-0.3528816;0.3088349;0.03576016,-0.6258456;0.3427;-0.01662154,0.06363504;0.003102386;-0.04838344,0.08988777;-0.3714873;0.009869352,0.09529135;-0.7111402;0.09417062,0.09971095;-0.7621866;0.03575878,-0.07591403;0.003591227;-0.02498325,-0.1027056;-0.373335;0.01512662,-0.1145052;-0.7139549;0.09474369,-0.1274988;-0.7026463;-0.002630852,0.03637404;0.3980435;0.01426838,17.94349
+0;0;0,0.009315118;0.1993625;0.01295394,0.02412764;0.4988744;0.0194227,0.1285411;0.3680911;-0.01819473,0.1959779;0.09692338;-0.000297375,0.2406505;-0.1762547;-0.0424644,-0.09673095;0.3674095;0.02109802,-0.3511946;0.2524639;0.04197288,-0.6174657;0.167679;0.02433159,0.0679182;0.004631103;-0.0420199,0.07095236;-0.3735139;-0.004641216,0.06490506;-0.7174513;0.05993814,0.07409275;-0.7645906;-0.00303096,-0.07263178;0.003040321;-0.0333973,-0.1162533;-0.3738481;-0.01213043,-0.1376748;-0.7186333;0.04412183,-0.1269477;-0.7630005;-0.02186646,0.01902848;0.3990057;0.01990101,0;0;0,0.01786923;0.1989452;0.01007455,0.04624228;0.4975379;0.01242274,0.1437102;0.3654543;-0.02865033,0.1988596;0.09131294;-0.01432959,0.2210932;-0.1816185;-0.07275979,-0.08070111;0.3738469;0.0232441,-0.3531053;0.3101623;0.03508569,-0.6254829;0.345686;-0.01921445,0.0636679;0.003040507;-0.04834412,0.08986839;-0.3715651;0.009829514,0.09527701;-0.711211;0.09415869,0.0997823;-0.7622555;0.03575071,-0.07590251;0.003622446;-0.0250137,-0.1029339;-0.3733198;0.01478346,-0.1146011;-0.7139119;0.09453888,-0.1275938;-0.7026016;-0.002836086,0.03649469;0.3980315;0.01428625,17.95473
+0;0;0,0.009315118;0.1993625;0.01295394,0.02412764;0.4988744;0.0194227,0.1285411;0.3680911;-0.01819473,0.1959779;0.09692338;-0.000297375,0.2406505;-0.1762547;-0.0424644,-0.09673095;0.3674095;0.02109802,-0.3511946;0.2524639;0.04197288,-0.6174657;0.167679;0.02433159,0.0679182;0.004631103;-0.0420199,0.07095236;-0.3735139;-0.004641216,0.06490506;-0.7174513;0.05993814,0.07409275;-0.7645906;-0.00303096,-0.07263178;0.003040321;-0.0333973,-0.1162533;-0.3738481;-0.01213043,-0.1376748;-0.7186333;0.04412183,-0.1269477;-0.7630005;-0.02186646,0.01902848;0.3990057;0.01990101,0;0;0,0.01786923;0.1989452;0.01007455,0.04624228;0.4975379;0.01242274,0.1437102;0.3654543;-0.02865033,0.1988596;0.09131294;-0.01432959,0.2210932;-0.1816185;-0.07275979,-0.08070111;0.3738469;0.0232441,-0.3531053;0.3101623;0.03508569,-0.6254829;0.345686;-0.01921445,0.0636679;0.003040507;-0.04834412,0.08986839;-0.3715651;0.009829514,0.09527701;-0.711211;0.09415869,0.0997823;-0.7622555;0.03575071,-0.07590251;0.003622446;-0.0250137,-0.1029339;-0.3733198;0.01478346,-0.1146011;-0.7139119;0.09453888,-0.1275938;-0.7026016;-0.002836086,0.03649469;0.3980315;0.01428625,17.97688
+0;0;0,0.00924333;0.1993676;0.0129269,0.02377715;0.498894;0.01933487,0.1284953;0.3682927;-0.01785437,0.1960321;0.0971773;0.0004552398,0.2405893;-0.1759739;-0.04200773,-0.09698582;0.3675058;0.02125319,-0.3547545;0.2598992;0.0406464,-0.6230631;0.1809996;0.02703154,0.0679395;0.004682255;-0.04197975,0.07124624;-0.373486;-0.004860826,0.06517157;-0.7174498;0.05957525,0.07409109;-0.7646099;-0.003407091,-0.07258808;0.002985885;-0.03349708,-0.115496;-0.3740048;-0.01259557,-0.1375526;-0.71876;0.04359461,-0.1266602;-0.7630404;-0.02246431,0.01879373;0.3990196;0.01984737,0;0;0,0.01829291;0.1989005;0.01019604,0.04762257;0.4973996;0.01266733,0.1444648;0.364766;-0.02881412,0.199772;0.09070557;-0.01358307,0.221627;-0.1822444;-0.07206958,-0.07967852;0.3739497;0.02323535,-0.3523735;0.3113832;0.03432002,-0.6248635;0.3465648;-0.01963811,0.06369349;0.002978338;-0.04831427,0.08965439;-0.371672;0.00967814,0.09526772;-0.7113355;0.09392276,0.09982085;-0.7626449;0.03588771,-0.07587819;0.003717938;-0.02507345,-0.1031229;-0.3731889;0.01491341,-0.1146076;-0.7138193;0.09453163,-0.1275644;-0.702494;-0.002851002,0.03757734;0.3979222;0.01449571,17.98832
+0;0;0,0.00924333;0.1993676;0.0129269,0.02377715;0.498894;0.01933487,0.1284953;0.3682927;-0.01785437,0.1960321;0.0971773;0.0004552398,0.2405893;-0.1759739;-0.04200773,-0.09698582;0.3675058;0.02125319,-0.3547545;0.2598992;0.0406464,-0.6230631;0.1809996;0.02703154,0.0679395;0.004682255;-0.04197975,0.07124624;-0.373486;-0.004860826,0.06517157;-0.7174498;0.05957525,0.07409109;-0.7646099;-0.003407091,-0.07258808;0.002985885;-0.03349708,-0.115496;-0.3740048;-0.01259557,-0.1375526;-0.71876;0.04359461,-0.1266602;-0.7630404;-0.02246431,0.01879373;0.3990196;0.01984737,0;0;0,0.01829291;0.1989005;0.01019604,0.04762257;0.4973996;0.01266733,0.1444648;0.364766;-0.02881412,0.199772;0.09070557;-0.01358307,0.221627;-0.1822444;-0.07206958,-0.07967852;0.3739497;0.02323535,-0.3523735;0.3113832;0.03432002,-0.6248635;0.3465648;-0.01963811,0.06369349;0.002978338;-0.04831427,0.08965439;-0.371672;0.00967814,0.09526772;-0.7113355;0.09392276,0.09982085;-0.7626449;0.03588771,-0.07587819;0.003717938;-0.02507345,-0.1031229;-0.3731889;0.01491341,-0.1146076;-0.7138193;0.09453163,-0.1275644;-0.702494;-0.002851002,0.03757734;0.3979222;0.01449571,18.0104
+0;0;0,0.00924333;0.1993676;0.0129269,0.02377715;0.498894;0.01933487,0.1284953;0.3682927;-0.01785437,0.1960321;0.0971773;0.0004552398,0.2405893;-0.1759739;-0.04200773,-0.09698582;0.3675058;0.02125319,-0.3547545;0.2598992;0.0406464,-0.6230631;0.1809996;0.02703154,0.0679395;0.004682255;-0.04197975,0.07124624;-0.373486;-0.004860826,0.06517157;-0.7174498;0.05957525,0.07409109;-0.7646099;-0.003407091,-0.07258808;0.002985885;-0.03349708,-0.115496;-0.3740048;-0.01259557,-0.1375526;-0.71876;0.04359461,-0.1266602;-0.7630404;-0.02246431,0.01879373;0.3990196;0.01984737,0;0;0,0.01835985;0.1988973;0.01013878,0.04769789;0.4973957;0.01242767,0.1446413;0.3648624;-0.0288098,0.1999374;0.09082949;-0.01305121,0.2221598;-0.1822409;-0.07083303,-0.07963763;0.3741999;0.02318772,-0.3526056;0.3126809;0.03338093,-0.6242313;0.3514646;-0.02243348,0.06376088;0.002908549;-0.04822955,0.08974093;-0.371757;0.009656295,0.09539033;-0.7113953;0.09400038,0.09994141;-0.7626785;0.03592861,-0.07583933;0.003835317;-0.02517314,-0.1032506;-0.3730536;0.01486847,-0.1143893;-0.7136989;0.09447213,-0.1273254;-0.7023752;-0.002912968,0.03766239;0.3979191;0.01434998,18.03264
+0;0;0,0.00949305;0.1993556;0.01293195,0.02430885;0.4988689;0.01930792,0.128854;0.3683254;-0.01816742,0.196887;0.09737226;0.0006985236,0.2415995;-0.1757548;-0.04175574,-0.09664269;0.3678597;0.02114433,-0.3559883;0.2642103;0.04106064,-0.6266295;0.1934745;0.02882086,0.06796691;0.004679071;-0.04193574,0.07217131;-0.3735423;-0.005454376,0.06604485;-0.7174865;0.05908155,0.07561496;-0.765233;-0.003078651,-0.07254379;0.002974255;-0.03359393,-0.1147956;-0.3741059;-0.01297096,-0.1367155;-0.7189158;0.04293647,-0.1253094;-0.7628575;-0.02341516,0.01923924;0.3989989;0.01982911,0;0;0,0.01835985;0.1988973;0.01013878,0.04769789;0.4973957;0.01242767,0.1446413;0.3648624;-0.0288098,0.1999374;0.09082949;-0.01305121,0.2221598;-0.1822409;-0.07083303,-0.07963763;0.3741999;0.02318772,-0.3526056;0.3126809;0.03338093,-0.6242313;0.3514646;-0.02243348,0.06376088;0.002908549;-0.04822955,0.08974093;-0.371757;0.009656295,0.09539033;-0.7113953;0.09400038,0.09994141;-0.7626785;0.03592861,-0.07583933;0.003835317;-0.02517314,-0.1032506;-0.3730536;0.01486847,-0.1143893;-0.7136989;0.09447213,-0.1273254;-0.7023752;-0.002912968,0.03766239;0.3979191;0.01434998,18.04387
+0;0;0,0.00949305;0.1993556;0.01293195,0.02430885;0.4988689;0.01930792,0.128854;0.3683254;-0.01816742,0.196887;0.09737226;0.0006985236,0.2415995;-0.1757548;-0.04175574,-0.09664269;0.3678597;0.02114433,-0.3559883;0.2642103;0.04106064,-0.6266295;0.1934745;0.02882086,0.06796691;0.004679071;-0.04193574,0.07217131;-0.3735423;-0.005454376,0.06604485;-0.7174865;0.05908155,0.07561496;-0.765233;-0.003078651,-0.07254379;0.002974255;-0.03359393,-0.1147956;-0.3741059;-0.01297096,-0.1367155;-0.7189158;0.04293647,-0.1253094;-0.7628575;-0.02341516,0.01923924;0.3989989;0.01982911,0;0;0,0.01843078;0.1988916;0.01012077,0.04793423;0.4973746;0.01228275,0.1447848;0.3647472;-0.02897466,0.1996027;0.09066114;-0.01248664,0.2217718;-0.18236;-0.07052106,-0.07943593;0.3741378;0.02298226,-0.3525884;0.3133867;0.03283273,-0.6241379;0.3524223;-0.02317723,0.06379462;0.002851476;-0.04818833,0.08972099;-0.3718324;0.009602923,0.09540556;-0.7114766;0.09392096,0.1000206;-0.7626341;0.03567867,-0.07581959;0.003894241;-0.02522351,-0.1035321;-0.3729628;0.01491094,-0.1143443;-0.7136301;0.09446546,-0.1272877;-0.7023069;-0.002918549,0.0378628;0.3979025;0.0142505,18.05523
+0;0;0,0.00949305;0.1993556;0.01293195,0.02430885;0.4988689;0.01930792,0.128854;0.3683254;-0.01816742,0.196887;0.09737226;0.0006985236,0.2415995;-0.1757548;-0.04175574,-0.09664269;0.3678597;0.02114433,-0.3559883;0.2642103;0.04106064,-0.6266295;0.1934745;0.02882086,0.06796691;0.004679071;-0.04193574,0.07217131;-0.3735423;-0.005454376,0.06604485;-0.7174865;0.05908155,0.07561496;-0.765233;-0.003078651,-0.07254379;0.002974255;-0.03359393,-0.1147956;-0.3741059;-0.01297096,-0.1367155;-0.7189158;0.04293647,-0.1253094;-0.7628575;-0.02341516,0.01923924;0.3989989;0.01982911,0;0;0,0.01843078;0.1988916;0.01012077,0.04793423;0.4973746;0.01228275,0.1447848;0.3647472;-0.02897466,0.1996027;0.09066114;-0.01248664,0.2217718;-0.18236;-0.07052106,-0.07943593;0.3741378;0.02298226,-0.3525884;0.3133867;0.03283273,-0.6241379;0.3524223;-0.02317723,0.06379462;0.002851476;-0.04818833,0.08972099;-0.3718324;0.009602923,0.09540556;-0.7114766;0.09392096,0.1000206;-0.7626341;0.03567867,-0.07581959;0.003894241;-0.02522351,-0.1035321;-0.3729628;0.01491094,-0.1143443;-0.7136301;0.09446546,-0.1272877;-0.7023069;-0.002918549,0.0378628;0.3979025;0.0142505,18.06666
+0;0;0,0.009780777;0.1993417;0.01293204,0.02490593;0.4988396;0.01932853,0.1292649;0.3683821;-0.01847407,0.1976887;0.09754664;0.0006665513,0.2425696;-0.1756327;-0.04127079,-0.09618725;0.3679933;0.02130932,-0.3588924;0.2733548;0.04203491,-0.6313603;0.2098269;0.03083363,0.0679227;0.0046693;-0.04200839,0.07283937;-0.3735583;-0.005680647,0.06668169;-0.7175577;0.05855761,0.07629599;-0.7648941;-0.004105408,-0.07259012;0.002960588;-0.0334949,-0.114043;-0.3742276;-0.01322957,-0.135999;-0.7190619;0.04251357,-0.1255165;-0.7620661;-0.0250179,0.01973502;0.3989746;0.01983124,0;0;0,0.01848714;0.1988851;0.01014538,0.04802347;0.4973646;0.01236772,0.1449203;0.3649102;-0.02892648,0.1999445;0.09090987;-0.01171731,0.2216318;-0.1821107;-0.06993601,-0.07935833;0.3741501;0.02297434,-0.3525359;0.3134874;0.03267366,-0.6239791;0.3526199;-0.02378173,0.06380656;0.002837891;-0.04817333,0.08976527;-0.3718556;0.009540789,0.09526943;-0.7114989;0.0938746,0.1001386;-0.762943;0.03605474,-0.07581466;0.003887074;-0.02523942,-0.1036487;-0.3730089;0.01444293,-0.114481;-0.7136476;0.09411688,-0.1274181;-0.7023215;-0.00326854,0.03795011;0.3978922;0.01431188,18.08857
+0;0;0,0.009780777;0.1993417;0.01293204,0.02490593;0.4988396;0.01932853,0.1292649;0.3683821;-0.01847407,0.1976887;0.09754664;0.0006665513,0.2425696;-0.1756327;-0.04127079,-0.09618725;0.3679933;0.02130932,-0.3588924;0.2733548;0.04203491,-0.6313603;0.2098269;0.03083363,0.0679227;0.0046693;-0.04200839,0.07283937;-0.3735583;-0.005680647,0.06668169;-0.7175577;0.05855761,0.07629599;-0.7648941;-0.004105408,-0.07259012;0.002960588;-0.0334949,-0.114043;-0.3742276;-0.01322957,-0.135999;-0.7190619;0.04251357,-0.1255165;-0.7620661;-0.0250179,0.01973502;0.3989746;0.01983124,0;0;0,0.01848714;0.1988851;0.01014538,0.04802347;0.4973646;0.01236772,0.1449203;0.3649102;-0.02892648,0.1999445;0.09090987;-0.01171731,0.2216318;-0.1821107;-0.06993601,-0.07935833;0.3741501;0.02297434,-0.3525359;0.3134874;0.03267366,-0.6239791;0.3526199;-0.02378173,0.06380656;0.002837891;-0.04817333,0.08976527;-0.3718556;0.009540789,0.09526943;-0.7114989;0.0938746,0.1001386;-0.762943;0.03605474,-0.07581466;0.003887074;-0.02523942,-0.1036487;-0.3730089;0.01444293,-0.114481;-0.7136476;0.09411688,-0.1274181;-0.7023215;-0.00326854,0.03795011;0.3978922;0.01431188,18.09984
+0;0;0,0.009780777;0.1993417;0.01293204,0.02490593;0.4988396;0.01932853,0.1292649;0.3683821;-0.01847407,0.1976887;0.09754664;0.0006665513,0.2425696;-0.1756327;-0.04127079,-0.09618725;0.3679933;0.02130932,-0.3588924;0.2733548;0.04203491,-0.6313603;0.2098269;0.03083363,0.0679227;0.0046693;-0.04200839,0.07283937;-0.3735583;-0.005680647,0.06668169;-0.7175577;0.05855761,0.07629599;-0.7648941;-0.004105408,-0.07259012;0.002960588;-0.0334949,-0.114043;-0.3742276;-0.01322957,-0.135999;-0.7190619;0.04251357,-0.1255165;-0.7620661;-0.0250179,0.01973502;0.3989746;0.01983124,0;0;0,0.0187943;0.1988548;0.01017475,0.04930343;0.4972352;0.01254362,0.1457269;0.3644411;-0.02878201,0.2001249;0.09035248;-0.01099709,0.2220613;-0.1825273;-0.06977989,-0.07852296;0.3743784;0.0228825,-0.3515597;0.3130523;0.0323728,-0.6228772;0.3521521;-0.0247061,0.06392967;0.002734962;-0.0480158,0.09009044;-0.3720109;0.009265106,0.09562076;-0.7116449;0.09363434,0.100928;-0.7632691;0.03610765,-0.07574639;0.004035463;-0.02542044,-0.1036781;-0.3728004;0.01476105,-0.1141785;-0.7135107;0.09417267,-0.1270075;-0.7021725;-0.003229372,0.03886589;0.3977995;0.01443778,18.12219
+0;0;0,0.009963542;0.1993391;0.01283124,0.02534531;0.4988278;0.01904818,0.129838;0.3685632;-0.01823708,0.1980623;0.09767854;0.0009192601,0.2432632;-0.1755133;-0.04059069,-0.09590778;0.368303;0.02126246,-0.3602938;0.2784722;0.04201011,-0.6345104;0.2226467;0.03258855,0.06791055;0.004609466;-0.04203461,0.07129429;-0.3733009;-0.002382878,0.06707264;-0.7178695;0.05889252,0.07612733;-0.7653891;-0.003627367,-0.07266986;0.003005183;-0.03331757,-0.1134858;-0.3742717;-0.01341192,-0.1350907;-0.7191565;0.04215506,-0.1243919;-0.7618291;-0.02569941,0.02009641;0.3989672;0.01960962,0;0;0,0.0187943;0.1988548;0.01017475,0.04930343;0.4972352;0.01254362,0.1457269;0.3644411;-0.02878201,0.2001249;0.09035248;-0.01099709,0.2220613;-0.1825273;-0.06977989,-0.07852296;0.3743784;0.0228825,-0.3515597;0.3130523;0.0323728,-0.6228772;0.3521521;-0.0247061,0.06392967;0.002734962;-0.0480158,0.09009044;-0.3720109;0.009265106,0.09562076;-0.7116449;0.09363434,0.100928;-0.7632691;0.03610765,-0.07574639;0.004035463;-0.02542044,-0.1036781;-0.3728004;0.01476105,-0.1141785;-0.7135107;0.09417267,-0.1270075;-0.7021725;-0.003229372,0.03886589;0.3977995;0.01443778,18.14437
+0;0;0,0.009963542;0.1993391;0.01283124,0.02534531;0.4988278;0.01904818,0.129838;0.3685632;-0.01823708,0.1980623;0.09767854;0.0009192601,0.2432632;-0.1755133;-0.04059069,-0.09590778;0.368303;0.02126246,-0.3602938;0.2784722;0.04201011,-0.6345104;0.2226467;0.03258855,0.06791055;0.004609466;-0.04203461,0.07129429;-0.3733009;-0.002382878,0.06707264;-0.7178695;0.05889252,0.07612733;-0.7653891;-0.003627367,-0.07266986;0.003005183;-0.03331757,-0.1134858;-0.3742717;-0.01341192,-0.1350907;-0.7191565;0.04215506,-0.1243919;-0.7618291;-0.02569941,0.02009641;0.3989672;0.01960962,0;0;0,0.01887325;0.198846;0.01020253,0.04942796;0.4972212;0.01264766,0.1458535;0.3644221;-0.02869015,0.1999104;0.09028164;-0.01066663,0.2220963;-0.1826114;-0.0692942,-0.07840212;0.3742977;0.02275311,-0.3514818;0.3131705;0.03228926,-0.622861;0.3519065;-0.02474468,0.06396272;0.002671898;-0.04797532,0.09023286;-0.3720647;0.009316497,0.09574155;-0.7117295;0.09356292,0.1009469;-0.7633129;0.03596899,-0.0757245;0.004098179;-0.02547555,-0.1034026;-0.3727877;0.01441132,-0.1141602;-0.7134352;0.09405789,-0.1269474;-0.7020869;-0.003351562,0.03898817;0.3977851;0.01451524,18.15583
+0;0;0,0.009963542;0.1993391;0.01283124,0.02534531;0.4988278;0.01904818,0.129838;0.3685632;-0.01823708,0.1980623;0.09767854;0.0009192601,0.2432632;-0.1755133;-0.04059069,-0.09590778;0.368303;0.02126246,-0.3602938;0.2784722;0.04201011,-0.6345104;0.2226467;0.03258855,0.06791055;0.004609466;-0.04203461,0.07129429;-0.3733009;-0.002382878,0.06707264;-0.7178695;0.05889252,0.07612733;-0.7653891;-0.003627367,-0.07266986;0.003005183;-0.03331757,-0.1134858;-0.3742717;-0.01341192,-0.1350907;-0.7191565;0.04215506,-0.1243919;-0.7618291;-0.02569941,0.02009641;0.3989672;0.01960962,0;0;0,0.01887325;0.198846;0.01020253,0.04942796;0.4972212;0.01264766,0.1458535;0.3644221;-0.02869015,0.1999104;0.09028164;-0.01066663,0.2220963;-0.1826114;-0.0692942,-0.07840212;0.3742977;0.02275311,-0.3514818;0.3131705;0.03228926,-0.622861;0.3519065;-0.02474468,0.06396272;0.002671898;-0.04797532,0.09023286;-0.3720647;0.009316497,0.09574155;-0.7117295;0.09356292,0.1009469;-0.7633129;0.03596899,-0.0757245;0.004098179;-0.02547555,-0.1034026;-0.3727877;0.01441132,-0.1141602;-0.7134352;0.09405789,-0.1269474;-0.7020869;-0.003351562,0.03898817;0.3977851;0.01451524,18.17781
+0;0;0,0.009990284;0.1993393;0.01280758,0.0254498;0.4988255;0.01894138,0.1299608;0.3688427;-0.01840365,0.1984749;0.09805521;0.001089321,0.2439223;-0.1750939;-0.04043274,-0.09596283;0.3688465;0.02178651,-0.3622184;0.2847695;0.04274036,-0.63854;0.2406059;0.03294574,0.06787142;0.004685907;-0.04208934,0.07240423;-0.3733649;-0.003918622,0.06774684;-0.7178341;0.05788216,0.07688276;-0.7650265;-0.005029485,-0.07265968;0.002923052;-0.03334706,-0.1131121;-0.3743974;-0.01352557,-0.1347416;-0.7192839;0.04202119,-0.1243634;-0.7611737;-0.02671137,0.02017378;0.3989666;0.0195352,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.18924
+0;0;0,0.009990284;0.1993393;0.01280758,0.0254498;0.4988255;0.01894138,0.1299608;0.3688427;-0.01840365,0.1984749;0.09805521;0.001089321,0.2439223;-0.1750939;-0.04043274,-0.09596283;0.3688465;0.02178651,-0.3622184;0.2847695;0.04274036,-0.63854;0.2406059;0.03294574,0.06787142;0.004685907;-0.04208934,0.07240423;-0.3733649;-0.003918622,0.06774684;-0.7178341;0.05788216,0.07688276;-0.7650265;-0.005029485,-0.07265968;0.002923052;-0.03334706,-0.1131121;-0.3743974;-0.01352557,-0.1347416;-0.7192839;0.04202119,-0.1243634;-0.7611737;-0.02671137,0.02017378;0.3989666;0.0195352,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009990284;0.1993393;0.01280758,0.0254498;0.4988255;0.01894138,0.1299608;0.3688427;-0.01840365,0.1984749;0.09805521;0.001089321,0.2439223;-0.1750939;-0.04043274,-0.09596283;0.3688465;0.02178651,-0.3622184;0.2847695;0.04274036,-0.63854;0.2406059;0.03294574,0.06787142;0.004685907;-0.04208934,0.07240423;-0.3733649;-0.003918622,0.06774684;-0.7178341;0.05788216,0.07688276;-0.7650265;-0.005029485,-0.07265968;0.002923052;-0.03334706,-0.1131121;-0.3743974;-0.01352557,-0.1347416;-0.7192839;0.04202119,-0.1243634;-0.7611737;-0.02671137,0.02017378;0.3989666;0.0195352,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009918639;0.1993424;0.01281465,0.02529812;0.4988333;0.01890513,0.1300721;0.3691531;-0.01796327,0.1986317;0.09837419;0.001488393,0.2442219;-0.1747296;-0.04017545,-0.09620718;0.3693545;0.02232247,-0.3643146;0.2916947;0.04439959,-0.6415277;0.253614;0.03426316,0.06784283;0.004744457;-0.04212887,0.07289463;-0.3733302;-0.00426016,0.0681394;-0.717831;0.05735648,0.0771562;-0.7649534;-0.005658157,-0.07266968;0.002846356;-0.03333189,-0.1128048;-0.3745308;-0.01394949,-0.134565;-0.7194076;0.04160692,-0.1241077;-0.7622095;-0.02614646,0.02004634;0.3989732;0.01952117,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009918639;0.1993424;0.01281465,0.02529812;0.4988333;0.01890513,0.1300721;0.3691531;-0.01796327,0.1986317;0.09837419;0.001488393,0.2442219;-0.1747296;-0.04017545,-0.09620718;0.3693545;0.02232247,-0.3643146;0.2916947;0.04439959,-0.6415277;0.253614;0.03426316,0.06784283;0.004744457;-0.04212887,0.07289463;-0.3733302;-0.00426016,0.0681394;-0.717831;0.05735648,0.0771562;-0.7649534;-0.005658157,-0.07266968;0.002846356;-0.03333189,-0.1128048;-0.3745308;-0.01394949,-0.134565;-0.7194076;0.04160692,-0.1241077;-0.7622095;-0.02614646,0.02004634;0.3989732;0.01952117,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009918639;0.1993424;0.01281465,0.02529812;0.4988333;0.01890513,0.1300721;0.3691531;-0.01796327,0.1986317;0.09837419;0.001488393,0.2442219;-0.1747296;-0.04017545,-0.09620718;0.3693545;0.02232247,-0.3643146;0.2916947;0.04439959,-0.6415277;0.253614;0.03426316,0.06784283;0.004744457;-0.04212887,0.07289463;-0.3733302;-0.00426016,0.0681394;-0.717831;0.05735648,0.0771562;-0.7649534;-0.005658157,-0.07266968;0.002846356;-0.03333189,-0.1128048;-0.3745308;-0.01394949,-0.134565;-0.7194076;0.04160692,-0.1241077;-0.7622095;-0.02614646,0.02004634;0.3989732;0.01952117,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.0101646;0.1993424;0.01262135,0.02580479;0.4988247;0.01849079,0.1305021;0.3693164;-0.01847053,0.1993628;0.09865335;0.001521857,0.2451311;-0.1744266;-0.04010276,-0.0959547;0.3701617;0.02267859,-0.3652833;0.2968913;0.0448941,-0.643375;0.2660909;0.03410847,0.06785444;0.004866801;-0.04209618,0.07416108;-0.3732847;-0.005195718,0.06917689;-0.7177801;0.05643317,0.07883129;-0.7648986;-0.006491698,-0.07254192;0.002733832;-0.03361839,-0.1122942;-0.3747001;-0.01455555,-0.1340276;-0.7195923;0.04091553,-0.1231944;-0.7621584;-0.02703154,0.02048339;0.3989687;0.01916768,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.0101646;0.1993424;0.01262135,0.02580479;0.4988247;0.01849079,0.1305021;0.3693164;-0.01847053,0.1993628;0.09865335;0.001521857,0.2451311;-0.1744266;-0.04010276,-0.0959547;0.3701617;0.02267859,-0.3652833;0.2968913;0.0448941,-0.643375;0.2660909;0.03410847,0.06785444;0.004866801;-0.04209618,0.07416108;-0.3732847;-0.005195718,0.06917689;-0.7177801;0.05643317,0.07883129;-0.7648986;-0.006491698,-0.07254192;0.002733832;-0.03361839,-0.1122942;-0.3747001;-0.01455555,-0.1340276;-0.7195923;0.04091553,-0.1231944;-0.7621584;-0.02703154,0.02048339;0.3989687;0.01916768,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.0101646;0.1993424;0.01262135,0.02580479;0.4988247;0.01849079,0.1305021;0.3693164;-0.01847053,0.1993628;0.09865335;0.001521857,0.2451311;-0.1744266;-0.04010276,-0.0959547;0.3701617;0.02267859,-0.3652833;0.2968913;0.0448941,-0.643375;0.2660909;0.03410847,0.06785444;0.004866801;-0.04209618,0.07416108;-0.3732847;-0.005195718,0.06917689;-0.7177801;0.05643317,0.07883129;-0.7648986;-0.006491698,-0.07254192;0.002733832;-0.03361839,-0.1122942;-0.3747001;-0.01455555,-0.1340276;-0.7195923;0.04091553,-0.1231944;-0.7621584;-0.02703154,0.02048339;0.3989687;0.01916768,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.01014867;0.1993465;0.01256881,0.02585275;0.4988283;0.01827745,0.1304456;0.36925;-0.01878071,0.199462;0.09866741;0.001757214,0.2455655;-0.1744832;-0.03902566,-0.09604436;0.3706322;0.02274756,-0.3662061;0.3009866;0.04645704,-0.6449822;0.2777258;0.03450803,0.06788631;0.004782339;-0.04205447,0.07480388;-0.373412;-0.005706854,0.06987108;-0.7179478;0.05569996,0.07882368;-0.7657922;-0.006429791,-0.07247028;0.00281017;-0.03376626,-0.1118738;-0.3746796;-0.0150899,-0.1335732;-0.7196047;0.04018939,-0.1217414;-0.7621378;-0.02762628,0.02050092;0.3989743;0.01901654,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.01014867;0.1993465;0.01256881,0.02585275;0.4988283;0.01827745,0.1304456;0.36925;-0.01878071,0.199462;0.09866741;0.001757214,0.2455655;-0.1744832;-0.03902566,-0.09604436;0.3706322;0.02274756,-0.3662061;0.3009866;0.04645704,-0.6449822;0.2777258;0.03450803,0.06788631;0.004782339;-0.04205447,0.07480388;-0.373412;-0.005706854,0.06987108;-0.7179478;0.05569996,0.07882368;-0.7657922;-0.006429791,-0.07247028;0.00281017;-0.03376626,-0.1118738;-0.3746796;-0.0150899,-0.1335732;-0.7196047;0.04018939,-0.1217414;-0.7621378;-0.02762628,0.02050092;0.3989743;0.01901654,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.01014867;0.1993465;0.01256881,0.02585275;0.4988283;0.01827745,0.1304456;0.36925;-0.01878071,0.199462;0.09866741;0.001757214,0.2455655;-0.1744832;-0.03902566,-0.09604436;0.3706322;0.02274756,-0.3662061;0.3009866;0.04645704,-0.6449822;0.2777258;0.03450803,0.06788631;0.004782339;-0.04205447,0.07480388;-0.373412;-0.005706854,0.06987108;-0.7179478;0.05569996,0.07882368;-0.7657922;-0.006429791,-0.07247028;0.00281017;-0.03376626,-0.1118738;-0.3746796;-0.0150899,-0.1335732;-0.7196047;0.04018939,-0.1217414;-0.7621378;-0.02762628,0.02050092;0.3989743;0.01901654,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.01015571;0.1993481;0.01253832,0.02592889;0.4988279;0.0181419,0.1305959;0.3692695;-0.0185858,0.199713;0.09872651;0.00213426,0.2460933;-0.1743847;-0.03859804,-0.09604894;0.3708393;0.02260417,-0.3678534;0.3084603;0.04772788,-0.6469064;0.2905948;0.03322771,0.0678629;0.004741766;-0.04209682,0.07530581;-0.3734856;-0.006198294,0.07033268;-0.7180278;0.05516834,0.079635;-0.7656187;-0.007226586,-0.07251635;0.002836565;-0.03366499,-0.1113793;-0.3747326;-0.01546743,-0.1330954;-0.7196653;0.03975766,-0.1210835;-0.7617372;-0.02851661,0.02054775;0.3989758;0.01892336,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.01015571;0.1993481;0.01253832,0.02592889;0.4988279;0.0181419,0.1305959;0.3692695;-0.0185858,0.199713;0.09872651;0.00213426,0.2460933;-0.1743847;-0.03859804,-0.09604894;0.3708393;0.02260417,-0.3678534;0.3084603;0.04772788,-0.6469064;0.2905948;0.03322771,0.0678629;0.004741766;-0.04209682,0.07530581;-0.3734856;-0.006198294,0.07033268;-0.7180278;0.05516834,0.079635;-0.7656187;-0.007226586,-0.07251635;0.002836565;-0.03366499,-0.1113793;-0.3747326;-0.01546743,-0.1330954;-0.7196653;0.03975766,-0.1210835;-0.7617372;-0.02851661,0.02054775;0.3989758;0.01892336,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.01015571;0.1993481;0.01253832,0.02592889;0.4988279;0.0181419,0.1305959;0.3692695;-0.0185858,0.199713;0.09872651;0.00213426,0.2460933;-0.1743847;-0.03859804,-0.09604894;0.3708393;0.02260417,-0.3678534;0.3084603;0.04772788,-0.6469064;0.2905948;0.03322771,0.0678629;0.004741766;-0.04209682,0.07530581;-0.3734856;-0.006198294,0.07033268;-0.7180278;0.05516834,0.079635;-0.7656187;-0.007226586,-0.07251635;0.002836565;-0.03366499,-0.1113793;-0.3747326;-0.01546743,-0.1330954;-0.7196653;0.03975766,-0.1210835;-0.7617372;-0.02851661,0.02054775;0.3989758;0.01892336,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009951841;0.1993509;0.01265599,0.0253746;0.4988458;0.01841624,0.1302382;0.3691;-0.01798063,0.1994583;0.09856084;0.002442637,0.2462264;-0.174482;-0.03830449,-0.09651101;0.3709924;0.02308906,-0.369155;0.3123983;0.04822858,-0.6484908;0.3021255;0.03191879,0.06783547;0.004771666;-0.04213764,0.07576443;-0.3734875;-0.006682038,0.0706215;-0.7180554;0.05452676,0.08004613;-0.765402;-0.008152489,-0.07252946;0.002788976;-0.03364071,-0.1115064;-0.3748044;-0.01620496,-0.1328456;-0.7196841;0.03949651,-0.1208769;-0.7617064;-0.02883752,0.02011146;0.3989871;0.01915246,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009951841;0.1993509;0.01265599,0.0253746;0.4988458;0.01841624,0.1302382;0.3691;-0.01798063,0.1994583;0.09856084;0.002442637,0.2462264;-0.174482;-0.03830449,-0.09651101;0.3709924;0.02308906,-0.369155;0.3123983;0.04822858,-0.6484908;0.3021255;0.03191879,0.06783547;0.004771666;-0.04213764,0.07576443;-0.3734875;-0.006682038,0.0706215;-0.7180554;0.05452676,0.08004613;-0.765402;-0.008152489,-0.07252946;0.002788976;-0.03364071,-0.1115064;-0.3748044;-0.01620496,-0.1328456;-0.7196841;0.03949651,-0.1208769;-0.7617064;-0.02883752,0.02011146;0.3989871;0.01915246,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009951841;0.1993509;0.01265599,0.0253746;0.4988458;0.01841624,0.1302382;0.3691;-0.01798063,0.1994583;0.09856084;0.002442637,0.2462264;-0.174482;-0.03830449,-0.09651101;0.3709924;0.02308906,-0.369155;0.3123983;0.04822858,-0.6484908;0.3021255;0.03191879,0.06783547;0.004771666;-0.04213764,0.07576443;-0.3734875;-0.006682038,0.0706215;-0.7180554;0.05452676,0.08004613;-0.765402;-0.008152489,-0.07252946;0.002788976;-0.03364071,-0.1115064;-0.3748044;-0.01620496,-0.1328456;-0.7196841;0.03949651,-0.1208769;-0.7617064;-0.02883752,0.02011146;0.3989871;0.01915246,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009964556;0.1993583;0.01252867,0.02546862;0.498853;0.01806188,0.1302333;0.369177;-0.01850443,0.1993888;0.09865451;0.002354817,0.2463713;-0.1745354;-0.03714085,-0.09648952;0.3711833;0.02292245,-0.3700233;0.3169073;0.0480896,-0.6492452;0.3105952;0.02820753,0.06779409;0.00482797;-0.04219777,0.07654683;-0.3734807;-0.0074712,0.07143697;-0.7181054;0.05341954,0.0809986;-0.7649758;-0.009822328,-0.07255167;0.002701484;-0.03359997,-0.1113546;-0.3749683;-0.01747975,-0.1323487;-0.7198173;0.03854153,-0.1205246;-0.7622103;-0.02942502,0.02017261;0.3989967;0.01887782,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009964556;0.1993583;0.01252867,0.02546862;0.498853;0.01806188,0.1302333;0.369177;-0.01850443,0.1993888;0.09865451;0.002354817,0.2463713;-0.1745354;-0.03714085,-0.09648952;0.3711833;0.02292245,-0.3700233;0.3169073;0.0480896,-0.6492452;0.3105952;0.02820753,0.06779409;0.00482797;-0.04219777,0.07654683;-0.3734807;-0.0074712,0.07143697;-0.7181054;0.05341954,0.0809986;-0.7649758;-0.009822328,-0.07255167;0.002701484;-0.03359997,-0.1113546;-0.3749683;-0.01747975,-0.1323487;-0.7198173;0.03854153,-0.1205246;-0.7622103;-0.02942502,0.02017261;0.3989967;0.01887782,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009964556;0.1993583;0.01252867,0.02546862;0.498853;0.01806188,0.1302333;0.369177;-0.01850443,0.1993888;0.09865451;0.002354817,0.2463713;-0.1745354;-0.03714085,-0.09648952;0.3711833;0.02292245,-0.3700233;0.3169073;0.0480896,-0.6492452;0.3105952;0.02820753,0.06779409;0.00482797;-0.04219777,0.07654683;-0.3734807;-0.0074712,0.07143697;-0.7181054;0.05341954,0.0809986;-0.7649758;-0.009822328,-0.07255167;0.002701484;-0.03359997,-0.1113546;-0.3749683;-0.01747975,-0.1323487;-0.7198173;0.03854153,-0.1205246;-0.7622103;-0.02942502,0.02017261;0.3989967;0.01887782,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009872458;0.1993574;0.01261548,0.0252766;0.4988553;0.01823515,0.1299515;0.3691633;-0.01868431,0.1987312;0.0986056;0.002946643,0.2461456;-0.1746467;-0.03558929,-0.09678344;0.3717214;0.02299461,-0.3708577;0.3199082;0.04746256,-0.6501438;0.3193685;0.02748756,0.06770556;0.004809984;-0.04234172,0.07687054;-0.3735195;-0.007949106,0.07192991;-0.7181629;0.05284954,0.08129352;-0.7648816;-0.01060578,-0.07264145;0.002708997;-0.0334048,-0.1113119;-0.3750091;-0.01811874,-0.1319979;-0.7198936;0.03779856,-0.1200854;-0.7623705;-0.03006313,0.02000828;0.3989974;0.01903054,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009872458;0.1993574;0.01261548,0.0252766;0.4988553;0.01823515,0.1299515;0.3691633;-0.01868431,0.1987312;0.0986056;0.002946643,0.2461456;-0.1746467;-0.03558929,-0.09678344;0.3717214;0.02299461,-0.3708577;0.3199082;0.04746256,-0.6501438;0.3193685;0.02748756,0.06770556;0.004809984;-0.04234172,0.07687054;-0.3735195;-0.007949106,0.07192991;-0.7181629;0.05284954,0.08129352;-0.7648816;-0.01060578,-0.07264145;0.002708997;-0.0334048,-0.1113119;-0.3750091;-0.01811874,-0.1319979;-0.7198936;0.03779856,-0.1200854;-0.7623705;-0.03006313,0.02000828;0.3989974;0.01903054,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009872458;0.1993574;0.01261548,0.0252766;0.4988553;0.01823515,0.1299515;0.3691633;-0.01868431,0.1987312;0.0986056;0.002946643,0.2461456;-0.1746467;-0.03558929,-0.09678344;0.3717214;0.02299461,-0.3708577;0.3199082;0.04746256,-0.6501438;0.3193685;0.02748756,0.06770556;0.004809984;-0.04234172,0.07687054;-0.3735195;-0.007949106,0.07192991;-0.7181629;0.05284954,0.08129352;-0.7648816;-0.01060578,-0.07264145;0.002708997;-0.0334048,-0.1113119;-0.3750091;-0.01811874,-0.1319979;-0.7198936;0.03779856,-0.1200854;-0.7623705;-0.03006313,0.02000828;0.3989974;0.01903054,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009717851;0.1993671;0.01258245,0.02478181;0.4988831;0.01814759,0.1297181;0.3692401;-0.01839669,0.1984861;0.09868661;0.003323127,0.2466898;-0.1744443;-0.03509456,-0.09726364;0.3722882;0.02331852,-0.3717823;0.3223635;0.04670729,-0.6508325;0.3248854;0.02380308,0.06768284;0.004924363;-0.04236489,0.07745945;-0.3734383;-0.008510459,0.07248426;-0.7180991;0.05218711,0.08189654;-0.7647947;-0.01128879,-0.07259567;0.002585311;-0.03351396,-0.1114119;-0.3751236;-0.01837222,-0.1314622;-0.7200478;0.03753189,-0.1194748;-0.7620356;-0.0308353,0.01964038;0.3990188;0.01896818,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009717851;0.1993671;0.01258245,0.02478181;0.4988831;0.01814759,0.1297181;0.3692401;-0.01839669,0.1984861;0.09868661;0.003323127,0.2466898;-0.1744443;-0.03509456,-0.09726364;0.3722882;0.02331852,-0.3717823;0.3223635;0.04670729,-0.6508325;0.3248854;0.02380308,0.06768284;0.004924363;-0.04236489,0.07745945;-0.3734383;-0.008510459,0.07248426;-0.7180991;0.05218711,0.08189654;-0.7647947;-0.01128879,-0.07259567;0.002585311;-0.03351396,-0.1114119;-0.3751236;-0.01837222,-0.1314622;-0.7200478;0.03753189,-0.1194748;-0.7620356;-0.0308353,0.01964038;0.3990188;0.01896818,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009717851;0.1993671;0.01258245,0.02478181;0.4988831;0.01814759,0.1297181;0.3692401;-0.01839669,0.1984861;0.09868661;0.003323127,0.2466898;-0.1744443;-0.03509456,-0.09726364;0.3722882;0.02331852,-0.3717823;0.3223635;0.04670729,-0.6508325;0.3248854;0.02380308,0.06768284;0.004924363;-0.04236489,0.07745945;-0.3734383;-0.008510459,0.07248426;-0.7180991;0.05218711,0.08189654;-0.7647947;-0.01128879,-0.07259567;0.002585311;-0.03351396,-0.1114119;-0.3751236;-0.01837222,-0.1314622;-0.7200478;0.03753189,-0.1194748;-0.7620356;-0.0308353,0.01964038;0.3990188;0.01896818,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009544238;0.1993631;0.01277698,0.02427084;0.4988888;0.01872067,0.1291886;0.3693174;-0.01841361,0.1965889;0.09851238;0.004430281,0.2464103;-0.1743741;-0.03365917,-0.09770841;0.3725232;0.02383943,-0.3730402;0.3261939;0.04495791,-0.6520356;0.3276588;0.02130571,0.06762174;0.004984027;-0.04245539,0.07760453;-0.3733862;-0.008746322,0.07263338;-0.7180603;0.05187654,0.08206621;-0.7646902;-0.01167566,-0.07264125;0.002516702;-0.03342027,-0.1122306;-0.3751277;-0.01867596,-0.1315663;-0.7201428;0.03691761,-0.1195026;-0.7622027;-0.03136009,0.01924642;0.3990175;0.01941005,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009544238;0.1993631;0.01277698,0.02427084;0.4988888;0.01872067,0.1291886;0.3693174;-0.01841361,0.1965889;0.09851238;0.004430281,0.2464103;-0.1743741;-0.03365917,-0.09770841;0.3725232;0.02383943,-0.3730402;0.3261939;0.04495791,-0.6520356;0.3276588;0.02130571,0.06762174;0.004984027;-0.04245539,0.07760453;-0.3733862;-0.008746322,0.07263338;-0.7180603;0.05187654,0.08206621;-0.7646902;-0.01167566,-0.07264125;0.002516702;-0.03342027,-0.1122306;-0.3751277;-0.01867596,-0.1315663;-0.7201428;0.03691761,-0.1195026;-0.7622027;-0.03136009,0.01924642;0.3990175;0.01941005,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009544238;0.1993631;0.01277698,0.02427084;0.4988888;0.01872067,0.1291886;0.3693174;-0.01841361,0.1965889;0.09851238;0.004430281,0.2464103;-0.1743741;-0.03365917,-0.09770841;0.3725232;0.02383943,-0.3730402;0.3261939;0.04495791,-0.6520356;0.3276588;0.02130571,0.06762174;0.004984027;-0.04245539,0.07760453;-0.3733862;-0.008746322,0.07263338;-0.7180603;0.05187654,0.08206621;-0.7646902;-0.01167566,-0.07264125;0.002516702;-0.03342027,-0.1122306;-0.3751277;-0.01867596,-0.1315663;-0.7201428;0.03691761,-0.1195026;-0.7622027;-0.03136009,0.01924642;0.3990175;0.01941005,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009494205;0.1993607;0.01285124,0.02419773;0.4988859;0.01886585,0.1292357;0.3688932;-0.01760057,0.1970288;0.09814453;0.004743157,0.2466717;-0.1747355;-0.03362478,-0.09787308;0.3729147;0.02385637,-0.3738918;0.330055;0.04326587,-0.6523008;0.3363059;0.01412204,0.06761005;0.005059471;-0.04246508,0.07810859;-0.3733395;-0.009238653,0.07326537;-0.7180329;0.0512839,0.08283953;-0.7643331;-0.01264275,-0.07259569;0.002428125;-0.03352566,-0.1119624;-0.3752593;-0.01929618,-0.1311903;-0.7202711;0.03635533,-0.1188636;-0.762297;-0.03191122,0.01917458;0.3990144;0.01953773,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009494205;0.1993607;0.01285124,0.02419773;0.4988859;0.01886585,0.1292357;0.3688932;-0.01760057,0.1970288;0.09814453;0.004743157,0.2466717;-0.1747355;-0.03362478,-0.09787308;0.3729147;0.02385637,-0.3738918;0.330055;0.04326587,-0.6523008;0.3363059;0.01412204,0.06761005;0.005059471;-0.04246508,0.07810859;-0.3733395;-0.009238653,0.07326537;-0.7180329;0.0512839,0.08283953;-0.7643331;-0.01264275,-0.07259569;0.002428125;-0.03352566,-0.1119624;-0.3752593;-0.01929618,-0.1311903;-0.7202711;0.03635533,-0.1188636;-0.762297;-0.03191122,0.01917458;0.3990144;0.01953773,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009494205;0.1993607;0.01285124,0.02419773;0.4988859;0.01886585,0.1292357;0.3688932;-0.01760057,0.1970288;0.09814453;0.004743157,0.2466717;-0.1747355;-0.03362478,-0.09787308;0.3729147;0.02385637,-0.3738918;0.330055;0.04326587,-0.6523008;0.3363059;0.01412204,0.06761005;0.005059471;-0.04246508,0.07810859;-0.3733395;-0.009238653,0.07326537;-0.7180329;0.0512839,0.08283953;-0.7643331;-0.01264275,-0.07259569;0.002428125;-0.03352566,-0.1119624;-0.3752593;-0.01929618,-0.1311903;-0.7202711;0.03635533,-0.1188636;-0.762297;-0.03191122,0.01917458;0.3990144;0.01953773,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009497765;0.199352;0.0129831,0.02427617;0.4988695;0.01919808,0.1290614;0.368684;-0.01783009,0.1959767;0.0978241;0.005776281,0.2458462;-0.1750301;-0.03248082,-0.09779485;0.3726804;0.02362913,-0.3744187;0.3330982;0.04130568,-0.6528037;0.3399199;0.01205989,0.0676774;0.005023312;-0.04236195,0.07860391;-0.3733971;-0.00952008,0.07397164;-0.7181926;0.05043498,0.08319351;-0.7642545;-0.01382662,-0.07248066;0.002455696;-0.03377166,-0.1119444;-0.3752053;-0.01911546,-0.1308447;-0.7203629;0.03573849,-0.1189639;-0.7633588;-0.03157018,0.0192208;0.3989992;0.01980018,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009497765;0.199352;0.0129831,0.02427617;0.4988695;0.01919808,0.1290614;0.368684;-0.01783009,0.1959767;0.0978241;0.005776281,0.2458462;-0.1750301;-0.03248082,-0.09779485;0.3726804;0.02362913,-0.3744187;0.3330982;0.04130568,-0.6528037;0.3399199;0.01205989,0.0676774;0.005023312;-0.04236195,0.07860391;-0.3733971;-0.00952008,0.07397164;-0.7181926;0.05043498,0.08319351;-0.7642545;-0.01382662,-0.07248066;0.002455696;-0.03377166,-0.1119444;-0.3752053;-0.01911546,-0.1308447;-0.7203629;0.03573849,-0.1189639;-0.7633588;-0.03157018,0.0192208;0.3989992;0.01980018,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009497765;0.199352;0.0129831,0.02427617;0.4988695;0.01919808,0.1290614;0.368684;-0.01783009,0.1959767;0.0978241;0.005776281,0.2458462;-0.1750301;-0.03248082,-0.09779485;0.3726804;0.02362913,-0.3744187;0.3330982;0.04130568,-0.6528037;0.3399199;0.01205989,0.0676774;0.005023312;-0.04236195,0.07860391;-0.3733971;-0.00952008,0.07397164;-0.7181926;0.05043498,0.08319351;-0.7642545;-0.01382662,-0.07248066;0.002455696;-0.03377166,-0.1119444;-0.3752053;-0.01911546,-0.1308447;-0.7203629;0.03573849,-0.1189639;-0.7633588;-0.03157018,0.0192208;0.3989992;0.01980018,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009577814;0.1993334;0.01320927,0.02454107;0.4988319;0.01991321,0.129023;0.3685049;-0.01784613,0.1954164;0.09757829;0.006458197,0.2453963;-0.1753876;-0.0308463,-0.09764842;0.3727899;0.02376797,-0.3750984;0.3378859;0.03802359,-0.6535671;0.3415652;0.00901247,0.0677126;0.005068274;-0.0423003,0.0791188;-0.3732898;-0.008907378,0.07468823;-0.7182752;0.04996013,0.08490384;-0.7652638;-0.01303513,-0.07241517;0.002401875;-0.03391568,-0.1116274;-0.3752566;-0.01853744,-0.1304712;-0.7205648;0.03538055,-0.1395699;-0.7079673;-0.06267232,0.0194118;0.3989644;0.02033245,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009577814;0.1993334;0.01320927,0.02454107;0.4988319;0.01991321,0.129023;0.3685049;-0.01784613,0.1954164;0.09757829;0.006458197,0.2453963;-0.1753876;-0.0308463,-0.09764842;0.3727899;0.02376797,-0.3750984;0.3378859;0.03802359,-0.6535671;0.3415652;0.00901247,0.0677126;0.005068274;-0.0423003,0.0791188;-0.3732898;-0.008907378,0.07468823;-0.7182752;0.04996013,0.08490384;-0.7652638;-0.01303513,-0.07241517;0.002401875;-0.03391568,-0.1116274;-0.3752566;-0.01853744,-0.1304712;-0.7205648;0.03538055,-0.1395699;-0.7079673;-0.06267232,0.0194118;0.3989644;0.02033245,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009577814;0.1993334;0.01320927,0.02454107;0.4988319;0.01991321,0.129023;0.3685049;-0.01784613,0.1954164;0.09757829;0.006458197,0.2453963;-0.1753876;-0.0308463,-0.09764842;0.3727899;0.02376797,-0.3750984;0.3378859;0.03802359,-0.6535671;0.3415652;0.00901247,0.0677126;0.005068274;-0.0423003,0.0791188;-0.3732898;-0.008907378,0.07468823;-0.7182752;0.04996013,0.08490384;-0.7652638;-0.01303513,-0.07241517;0.002401875;-0.03391568,-0.1116274;-0.3752566;-0.01853744,-0.1304712;-0.7205648;0.03538055,-0.1395699;-0.7079673;-0.06267232,0.0194118;0.3989644;0.02033245,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.00945677;0.1993239;0.01343669,0.02426363;0.4988213;0.02052974,0.1286573;0.3684329;-0.01770717,0.194713;0.09751493;0.007593092,0.2442451;-0.1755524;-0.02956626,-0.0979085;0.3728544;0.02373483,-0.375838;0.3409828;0.0355428,-0.6538491;0.3437313;0.002342496,0.06780303;0.005140909;-0.0421464,0.07978269;-0.3732067;-0.00883593,0.07558344;-0.7182117;0.04993434,0.08564983;-0.7648692;-0.01348722,-0.0723125;0.002336068;-0.03413861,-0.1113226;-0.375329;-0.01841314,-0.1299036;-0.7207198;0.03506532,-0.1389459;-0.7081057;-0.06299572,0.01918317;0.3989509;0.02081652,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.00945677;0.1993239;0.01343669,0.02426363;0.4988213;0.02052974,0.1286573;0.3684329;-0.01770717,0.194713;0.09751493;0.007593092,0.2442451;-0.1755524;-0.02956626,-0.0979085;0.3728544;0.02373483,-0.375838;0.3409828;0.0355428,-0.6538491;0.3437313;0.002342496,0.06780303;0.005140909;-0.0421464,0.07978269;-0.3732067;-0.00883593,0.07558344;-0.7182117;0.04993434,0.08564983;-0.7648692;-0.01348722,-0.0723125;0.002336068;-0.03413861,-0.1113226;-0.375329;-0.01841314,-0.1299036;-0.7207198;0.03506532,-0.1389459;-0.7081057;-0.06299572,0.01918317;0.3989509;0.02081652,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.00945677;0.1993239;0.01343669,0.02426363;0.4988213;0.02052974,0.1286573;0.3684329;-0.01770717,0.194713;0.09751493;0.007593092,0.2442451;-0.1755524;-0.02956626,-0.0979085;0.3728544;0.02373483,-0.375838;0.3409828;0.0355428,-0.6538491;0.3437313;0.002342496,0.06780303;0.005140909;-0.0421464,0.07978269;-0.3732067;-0.00883593,0.07558344;-0.7182117;0.04993434,0.08564983;-0.7648692;-0.01348722,-0.0723125;0.002336068;-0.03413861,-0.1113226;-0.375329;-0.01841314,-0.1299036;-0.7207198;0.03506532,-0.1389459;-0.7081057;-0.06299572,0.01918317;0.3989509;0.02081652,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009499248;0.1993178;0.01349812,0.0244212;0.498809;0.02059767,0.1286829;0.3685367;-0.01797647,0.194291;0.09761262;0.008399831,0.2432693;-0.1755449;-0.0288304,-0.09785767;0.3730949;0.02341843,-0.3762835;0.3445212;0.03133123,-0.6541114;0.3458562;-0.003451578,0.06782638;0.005168611;-0.04210543,0.0804755;-0.3731761;-0.009010304,0.07633755;-0.7182375;0.0494319,0.08668499;-0.7648968;-0.01394234,-0.0722625;0.002281686;-0.034248,-0.1105206;-0.3754533;-0.0183556,-0.129095;-0.7209305;0.03456385,-0.1380918;-0.7083127;-0.06350204,0.01929868;0.3989407;0.02089119,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009499248;0.1993178;0.01349812,0.0244212;0.498809;0.02059767,0.1286829;0.3685367;-0.01797647,0.194291;0.09761262;0.008399831,0.2432693;-0.1755449;-0.0288304,-0.09785767;0.3730949;0.02341843,-0.3762835;0.3445212;0.03133123,-0.6541114;0.3458562;-0.003451578,0.06782638;0.005168611;-0.04210543,0.0804755;-0.3731761;-0.009010304,0.07633755;-0.7182375;0.0494319,0.08668499;-0.7648968;-0.01394234,-0.0722625;0.002281686;-0.034248,-0.1105206;-0.3754533;-0.0183556,-0.129095;-0.7209305;0.03456385,-0.1380918;-0.7083127;-0.06350204,0.01929868;0.3989407;0.02089119,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009499248;0.1993178;0.01349812,0.0244212;0.498809;0.02059767,0.1286829;0.3685367;-0.01797647,0.194291;0.09761262;0.008399831,0.2432693;-0.1755449;-0.0288304,-0.09785767;0.3730949;0.02341843,-0.3762835;0.3445212;0.03133123,-0.6541114;0.3458562;-0.003451578,0.06782638;0.005168611;-0.04210543,0.0804755;-0.3731761;-0.009010304,0.07633755;-0.7182375;0.0494319,0.08668499;-0.7648968;-0.01394234,-0.0722625;0.002281686;-0.034248,-0.1105206;-0.3754533;-0.0183556,-0.129095;-0.7209305;0.03456385,-0.1380918;-0.7083127;-0.06350204,0.01929868;0.3989407;0.02089119,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009474102;0.1993223;0.01344796,0.02440906;0.498816;0.02040242,0.1290025;0.3684364;-0.01705962,0.1943688;0.0973731;0.008473936,0.2437735;-0.1756204;-0.02939084,-0.09794569;0.3733749;0.02288621,-0.376655;0.3468718;0.02720971,-0.6541207;0.3470468;-0.01037663,0.06796549;0.005157711;-0.04188184,0.08129454;-0.3732333;-0.009593595,0.07727239;-0.7183045;0.04879952,0.06631209;-0.7056908;-0.04906563,-0.07214079;0.002275759;-0.03450401,-0.1096754;-0.3755504;-0.01906013,-0.1286003;-0.7210301;0.03371887,-0.1371109;-0.708431;-0.0643871,0.01927817;0.3989484;0.02075022,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009474102;0.1993223;0.01344796,0.02440906;0.498816;0.02040242,0.1290025;0.3684364;-0.01705962,0.1943688;0.0973731;0.008473936,0.2437735;-0.1756204;-0.02939084,-0.09794569;0.3733749;0.02288621,-0.376655;0.3468718;0.02720971,-0.6541207;0.3470468;-0.01037663,0.06796549;0.005157711;-0.04188184,0.08129454;-0.3732333;-0.009593595,0.07727239;-0.7183045;0.04879952,0.06631209;-0.7056908;-0.04906563,-0.07214079;0.002275759;-0.03450401,-0.1096754;-0.3755504;-0.01906013,-0.1286003;-0.7210301;0.03371887,-0.1371109;-0.708431;-0.0643871,0.01927817;0.3989484;0.02075022,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009474102;0.1993223;0.01344796,0.02440906;0.498816;0.02040242,0.1290025;0.3684364;-0.01705962,0.1943688;0.0973731;0.008473936,0.2437735;-0.1756204;-0.02939084,-0.09794569;0.3733749;0.02288621,-0.376655;0.3468718;0.02720971,-0.6541207;0.3470468;-0.01037663,0.06796549;0.005157711;-0.04188184,0.08129454;-0.3732333;-0.009593595,0.07727239;-0.7183045;0.04879952,0.06631209;-0.7056908;-0.04906563,-0.07214079;0.002275759;-0.03450401,-0.1096754;-0.3755504;-0.01906013,-0.1286003;-0.7210301;0.03371887,-0.1371109;-0.708431;-0.0643871,0.01927817;0.3989484;0.02075022,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009512671;0.1993205;0.01344715,0.02452056;0.4988113;0.02036673,0.1293752;0.36824;-0.01607965,0.1951171;0.09713328;0.007985631,0.2432425;-0.1761992;-0.02907258,-0.09790166;0.3735299;0.02237149,-0.3768197;0.3489382;0.02243408,-0.6535072;0.3491025;-0.02050745,0.06797694;0.00510926;-0.0418692,0.08146878;-0.3732845;-0.009679455,0.07762718;-0.7184086;0.04841119,0.06715454;-0.7057962;-0.04950713,-0.07215126;0.002315296;-0.0344795,-0.1093784;-0.3755451;-0.01912735,-0.1283158;-0.7210685;0.03335992,-0.1363338;-0.7084733;-0.06478684,0.0193646;0.398945;0.02072912,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009512671;0.1993205;0.01344715,0.02452056;0.4988113;0.02036673,0.1293752;0.36824;-0.01607965,0.1951171;0.09713328;0.007985631,0.2432425;-0.1761992;-0.02907258,-0.09790166;0.3735299;0.02237149,-0.3768197;0.3489382;0.02243408,-0.6535072;0.3491025;-0.02050745,0.06797694;0.00510926;-0.0418692,0.08146878;-0.3732845;-0.009679455,0.07762718;-0.7184086;0.04841119,0.06715454;-0.7057962;-0.04950713,-0.07215126;0.002315296;-0.0344795,-0.1093784;-0.3755451;-0.01912735,-0.1283158;-0.7210685;0.03335992,-0.1363338;-0.7084733;-0.06478684,0.0193646;0.398945;0.02072912,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009512671;0.1993205;0.01344715,0.02452056;0.4988113;0.02036673,0.1293752;0.36824;-0.01607965,0.1951171;0.09713328;0.007985631,0.2432425;-0.1761992;-0.02907258,-0.09790166;0.3735299;0.02237149,-0.3768197;0.3489382;0.02243408,-0.6535072;0.3491025;-0.02050745,0.06797694;0.00510926;-0.0418692,0.08146878;-0.3732845;-0.009679455,0.07762718;-0.7184086;0.04841119,0.06715454;-0.7057962;-0.04950713,-0.07215126;0.002315296;-0.0344795,-0.1093784;-0.3755451;-0.01912735,-0.1283158;-0.7210685;0.03335992,-0.1363338;-0.7084733;-0.06478684,0.0193646;0.398945;0.02072912,0;0;0,0.01913137;0.1988214;0.01019994,0.05045389;0.4971175;0.0125901,0.1466039;0.3641008;-0.02860078,0.2003661;0.08991566;-0.01037605,0.2229117;-0.1830294;-0.06862292,-0.07760614;0.3740643;0.02257485,-0.3506841;0.3128942;0.03188366,-0.6222185;0.3508351;-0.02494524,0.06397801;0.002622459;-0.04795766,0.09031118;-0.372108;0.009345066,0.09569829;-0.7118101;0.09344934,0.1008555;-0.7637514;0.03636156,-0.07569543;0.004211465;-0.02554344,-0.1033715;-0.3726722;0.01436522,-0.1140812;-0.7133294;0.09397668,-0.1267828;-0.7019783;-0.003444523,0.0397621;0.3977086;0.01447287,18.21136
+0;0;0,0.009469994;0.1993233;0.01343614,0.02441314;0.4988181;0.02031907,0.1293864;0.3681214;-0.01571827,0.1944498;0.09683883;0.008208752,0.2424451;-0.1765088;-0.02890618,-0.09801386;0.3736435;0.02205093,-0.3769373;0.3495349;0.01752435,-0.652482;0.3522279;-0.03215311,0.06803357;0.0051069;-0.04177741,0.08150864;-0.3732893;-0.00961088,0.07781821;-0.7184662;0.04817631,0.06757054;-0.7058578;-0.0497651,-0.07211848;0.00232096;-0.03454764,-0.1093662;-0.3755167;-0.01869552,-0.1280563;-0.7211341;0.03325932,-0.1358483;-0.7085428;-0.06490493,0.01927942;0.3989507;0.02069613,0;0;0,0.0144655;0.1990798;0.01256874,0.03677663;0.4981589;0.0175744,0.1313816;0.3647779;-0.03436103,0.1982404;0.09292397;-0.02932729,0.2220526;-0.1782428;-0.09491365,-0.08590881;0.3646026;0.02526077,-0.3559626;0.2916931;0.01280428,-0.6253808;0.3242375;-0.05615025,0.06157466;0.004341544;-0.0508892,0.08879292;-0.3693062;0.01272315,0.09299737;-0.7086209;0.0984427,0.09603596;-0.7593053;0.03944436,-0.07712739;0.001937789;-0.02115677,-0.1048758;-0.3749957;0.01822756,-0.1174316;-0.7153881;0.09869729,-0.1334286;-0.7039198;0.00174021,0.02901085;0.3984644;0.01841628,25.97436
+0;0;0,0.009469994;0.1993233;0.01343614,0.02441314;0.4988181;0.02031907,0.1293864;0.3681214;-0.01571827,0.1944498;0.09683883;0.008208752,0.2424451;-0.1765088;-0.02890618,-0.09801386;0.3736435;0.02205093,-0.3769373;0.3495349;0.01752435,-0.652482;0.3522279;-0.03215311,0.06803357;0.0051069;-0.04177741,0.08150864;-0.3732893;-0.00961088,0.07781821;-0.7184662;0.04817631,0.06757054;-0.7058578;-0.0497651,-0.07211848;0.00232096;-0.03454764,-0.1093662;-0.3755167;-0.01869552,-0.1280563;-0.7211341;0.03325932,-0.1358483;-0.7085428;-0.06490493,0.01927942;0.3989507;0.02069613,0;0;0,0.01448577;0.1990771;0.01258872,0.03679707;0.4981549;0.0176601,0.1315886;0.3647399;-0.0339331,0.1983429;0.09285945;-0.02894267,0.2232064;-0.1784421;-0.09357454,-0.08577304;0.3642432;0.02528379,-0.3562709;0.2934414;0.01051919,-0.6253711;0.3264118;-0.05946677,0.06161825;0.004356464;-0.05083514,0.0889034;-0.3693141;0.01261409,0.09276626;-0.7085658;0.09859866,0.09636761;-0.7596073;0.04012369,-0.07706696;0.001874664;-0.02138151,-0.104917;-0.3750373;0.01813784,-0.1174977;-0.7153612;0.09889255,-0.1333607;-0.7038943;0.001913711,0.02904436;0.3984593;0.01848518,25.99525
+0;0;0,0.009469994;0.1993233;0.01343614,0.02441314;0.4988181;0.02031907,0.1293864;0.3681214;-0.01571827,0.1944498;0.09683883;0.008208752,0.2424451;-0.1765088;-0.02890618,-0.09801386;0.3736435;0.02205093,-0.3769373;0.3495349;0.01752435,-0.652482;0.3522279;-0.03215311,0.06803357;0.0051069;-0.04177741,0.08150864;-0.3732893;-0.00961088,0.07781821;-0.7184662;0.04817631,0.06757054;-0.7058578;-0.0497651,-0.07211848;0.00232096;-0.03454764,-0.1093662;-0.3755167;-0.01869552,-0.1280563;-0.7211341;0.03325932,-0.1358483;-0.7085428;-0.06490493,0.01927942;0.3989507;0.02069613,0;0;0,0.01458958;0.1990656;0.01264981,0.03699499;0.4981354;0.01777903,0.131799;0.3647401;-0.03376099,0.1986679;0.09289992;-0.02815382,0.2245099;-0.1785181;-0.09190688,-0.08566119;0.3639913;0.02273799,-0.3565527;0.2939647;0.0120584,-0.6252339;0.326782;-0.05958922,0.06174091;0.004333577;-0.05068807,0.08899161;-0.3693618;0.01262941,0.09290977;-0.7086085;0.09863146,0.09657822;-0.7598118;0.04038568,-0.07698085;0.001948768;-0.02168294,-0.104459;-0.3749691;0.01803927,-0.1171245;-0.7152449;0.09898335,-0.1321845;-0.7037683;0.001874745,0.02921223;0.398442;0.01858537,26.01404
+0;0;0,0.009502236;0.1993275;0.01335202,0.02449096;0.4988229;0.02010151,0.1297263;0.3679791;-0.01491625,0.1948895;0.09663731;0.008048773,0.2423454;-0.1768672;-0.02860158,-0.09799816;0.3738657;0.02170517,-0.3767914;0.3499755;0.01152639,-0.6515194;0.3534268;-0.04244227,0.06810296;0.005099386;-0.04166513,0.08193663;-0.3732997;-0.009684686,0.07825056;-0.7185628;0.04758473,0.08892963;-0.7651275;-0.01584877,-0.07205939;0.002319848;-0.03467078,-0.1086418;-0.3755848;-0.01886704,-0.1273483;-0.7212359;0.03285743,-0.1347845;-0.7086527;-0.06533299,0.01934349;0.3989564;0.02052429,0;0;0,0.01458958;0.1990656;0.01264981,0.03699499;0.4981354;0.01777903,0.131799;0.3647401;-0.03376099,0.1986679;0.09289992;-0.02815382,0.2245099;-0.1785181;-0.09190688,-0.08566119;0.3639913;0.02273799,-0.3565527;0.2939647;0.0120584,-0.6252339;0.326782;-0.05958922,0.06174091;0.004333577;-0.05068807,0.08899161;-0.3693618;0.01262941,0.09290977;-0.7086085;0.09863146,0.09657822;-0.7598118;0.04038568,-0.07698085;0.001948768;-0.02168294,-0.104459;-0.3749691;0.01803927,-0.1171245;-0.7152449;0.09898335,-0.1321845;-0.7037683;0.001874745,0.02921223;0.398442;0.01858537,26.03653
+0;0;0,0.009502236;0.1993275;0.01335202,0.02449096;0.4988229;0.02010151,0.1297263;0.3679791;-0.01491625,0.1948895;0.09663731;0.008048773,0.2423454;-0.1768672;-0.02860158,-0.09799816;0.3738657;0.02170517,-0.3767914;0.3499755;0.01152639,-0.6515194;0.3534268;-0.04244227,0.06810296;0.005099386;-0.04166513,0.08193663;-0.3732997;-0.009684686,0.07825056;-0.7185628;0.04758473,0.08892963;-0.7651275;-0.01584877,-0.07205939;0.002319848;-0.03467078,-0.1086418;-0.3755848;-0.01886704,-0.1273483;-0.7212359;0.03285743,-0.1347845;-0.7086527;-0.06533299,0.01934349;0.3989564;0.02052429,0;0;0,0.01462821;0.199059;0.01271022,0.03707225;0.4981228;0.01798477,0.1320298;0.3647535;-0.03330904,0.1989399;0.09292844;-0.02746425,0.2256029;-0.1786911;-0.0900097,-0.08547458;0.3637022;0.02348576,-0.3567386;0.2960273;0.008125283,-0.6255758;0.3273317;-0.06361441,0.06184859;0.004418745;-0.05054925,0.08915251;-0.3692629;0.01282688,0.0930582;-0.7084942;0.09889017,0.09697331;-0.7594903;0.04037252,-0.07694433;0.001791971;-0.02182564,-0.1045701;-0.3750497;0.01851237,-0.1172357;-0.7152563;0.09974702,-0.1323656;-0.703787;0.002650686,0.02929363;0.3984288;0.01876069,26.05897
+0;0;0,0.009502236;0.1993275;0.01335202,0.02449096;0.4988229;0.02010151,0.1297263;0.3679791;-0.01491625,0.1948895;0.09663731;0.008048773,0.2423454;-0.1768672;-0.02860158,-0.09799816;0.3738657;0.02170517,-0.3767914;0.3499755;0.01152639,-0.6515194;0.3534268;-0.04244227,0.06810296;0.005099386;-0.04166513,0.08193663;-0.3732997;-0.009684686,0.07825056;-0.7185628;0.04758473,0.08892963;-0.7651275;-0.01584877,-0.07205939;0.002319848;-0.03467078,-0.1086418;-0.3755848;-0.01886704,-0.1273483;-0.7212359;0.03285743,-0.1347845;-0.7086527;-0.06533299,0.01934349;0.3989564;0.02052429,0;0;0,0.01462821;0.199059;0.01271022,0.03707225;0.4981228;0.01798477,0.1320298;0.3647535;-0.03330904,0.1989399;0.09292844;-0.02746425,0.2256029;-0.1786911;-0.0900097,-0.08547458;0.3637022;0.02348576,-0.3567386;0.2960273;0.008125283,-0.6255758;0.3273317;-0.06361441,0.06184859;0.004418745;-0.05054925,0.08915251;-0.3692629;0.01282688,0.0930582;-0.7084942;0.09889017,0.09697331;-0.7594903;0.04037252,-0.07694433;0.001791971;-0.02182564,-0.1045701;-0.3750497;0.01851237,-0.1172357;-0.7152563;0.09974702,-0.1323656;-0.703787;0.002650686,0.02929363;0.3984288;0.01876069,26.07045
+0;0;0,0.00940985;0.1993245;0.01346018,0.02426397;0.4988232;0.02036217,0.1296159;0.3678419;-0.0143576,0.1936863;0.09622237;0.008397875,0.2414009;-0.1772538;-0.02812717,-0.09820952;0.3739761;0.02140613,-0.3767931;0.3500453;0.006624809,-0.650328;0.3541406;-0.05305671,0.06823335;0.00510022;-0.04145114,0.08235949;-0.3733324;-0.009999763,0.07876264;-0.7186058;0.04721334,0.06914074;-0.7059883;-0.05079313,-0.0719526;0.002319265;-0.03489187,-0.1079381;-0.375635;-0.0189042,-0.1270088;-0.7213075;0.03254364,-0.134173;-0.7087198;-0.06566779,0.01916019;0.3989542;0.02073605,0;0;0,0.01459268;0.199062;0.01270376,0.03689555;0.4981354;0.01804367,0.1320783;0.3649649;-0.03311775,0.1991222;0.09318557;-0.02670632,0.2266682;-0.1786759;-0.08780072,-0.08558515;0.363795;0.0238212,-0.356644;0.2960834;0.005321838,-0.6248604;0.3261047;-0.06923493,0.0618772;0.004433325;-0.05051294,0.0891054;-0.3692724;0.0127539,0.09308832;-0.7084898;0.09886824,0.09698416;-0.7594857;0.04034917,-0.07690022;0.001733911;-0.0219852,-0.1046582;-0.3750697;0.01861665,-0.1170752;-0.7152637;0.09994228,-0.1322309;-0.7037928;0.002849646,0.02919647;0.398435;0.01879634,26.09243
+0;0;0,0.00940985;0.1993245;0.01346018,0.02426397;0.4988232;0.02036217,0.1296159;0.3678419;-0.0143576,0.1936863;0.09622237;0.008397875,0.2414009;-0.1772538;-0.02812717,-0.09820952;0.3739761;0.02140613,-0.3767931;0.3500453;0.006624809,-0.650328;0.3541406;-0.05305671,0.06823335;0.00510022;-0.04145114,0.08235949;-0.3733324;-0.009999763,0.07876264;-0.7186058;0.04721334,0.06914074;-0.7059883;-0.05079313,-0.0719526;0.002319265;-0.03489187,-0.1079381;-0.375635;-0.0189042,-0.1270088;-0.7213075;0.03254364,-0.134173;-0.7087198;-0.06566779,0.01916019;0.3989542;0.02073605,0;0;0,0.01459268;0.199062;0.01270376,0.03689555;0.4981354;0.01804367,0.1320783;0.3649649;-0.03311775,0.1991222;0.09318557;-0.02670632,0.2266682;-0.1786759;-0.08780072,-0.08558515;0.363795;0.0238212,-0.356644;0.2960834;0.005321838,-0.6248604;0.3261047;-0.06923493,0.0618772;0.004433325;-0.05051294,0.0891054;-0.3692724;0.0127539,0.09308832;-0.7084898;0.09886824,0.09698416;-0.7594857;0.04034917,-0.07690022;0.001733911;-0.0219852,-0.1046582;-0.3750697;0.01861665,-0.1170752;-0.7152637;0.09994228,-0.1322309;-0.7037928;0.002849646,0.02919647;0.398435;0.01879634,26.10387
+0;0;0,0.00940985;0.1993245;0.01346018,0.02426397;0.4988232;0.02036217,0.1296159;0.3678419;-0.0143576,0.1936863;0.09622237;0.008397875,0.2414009;-0.1772538;-0.02812717,-0.09820952;0.3739761;0.02140613,-0.3767931;0.3500453;0.006624809,-0.650328;0.3541406;-0.05305671,0.06823335;0.00510022;-0.04145114,0.08235949;-0.3733324;-0.009999763,0.07876264;-0.7186058;0.04721334,0.06914074;-0.7059883;-0.05079313,-0.0719526;0.002319265;-0.03489187,-0.1079381;-0.375635;-0.0189042,-0.1270088;-0.7213075;0.03254364,-0.134173;-0.7087198;-0.06566779,0.01916019;0.3989542;0.02073605,0;0;0,0.01453199;0.1990633;0.01275308,0.03662229;0.4981511;0.01818497,0.1319973;0.3650584;-0.03292733,0.1988553;0.09326199;-0.02539598,0.2268393;-0.1785522;-0.08650208,-0.0857183;0.3637219;0.02379581,-0.3564562;0.2956023;0.00233214,-0.6237187;0.3219617;-0.07688862,0.06194052;0.004435591;-0.05043507,0.08899302;-0.3692525;0.01301046,0.09316963;-0.7084903;0.09903563,0.09734841;-0.7594516;0.04048825,-0.07683843;0.001698853;-0.02220294,-0.1047661;-0.3750476;0.01881131,-0.1170407;-0.7152449;0.1001444,-0.1321343;-0.7037712;0.003041588,0.02904511;0.3984411;0.01890347,26.126
+0;0;0,0.009193444;0.1993361;0.01343853,0.02346095;0.4988634;0.02032612,0.1290989;0.3681034;-0.01441687,0.1931643;0.09652656;0.008855976,0.2400322;-0.1771889;-0.02696655,-0.09876189;0.3739069;0.02067989,-0.3770538;0.3494832;0.001783246,-0.6487913;0.3555008;-0.0654663,0.06846119;0.005178334;-0.04106397,0.08253808;-0.373319;-0.01037862,0.0788033;-0.7186215;0.04664999,0.06939388;-0.7060241;-0.05137356,-0.07180595;0.002248692;-0.03519729,-0.1077164;-0.3757121;-0.0191958,-0.1268418;-0.7213941;0.03216764,-0.1337965;-0.7088111;-0.06605801,0.01858884;0.3989829;0.02071127,0;0;0,0.01475262;0.1990422;0.01282789,0.03695854;0.4981199;0.0183216,0.1323955;0.3650523;-0.03266814,0.1992679;0.09325829;-0.02517753,0.227598;-0.1787199;-0.0853878,-0.085355;0.3635479;0.0237879,-0.3554204;0.2945209;-0.002668722,-0.6222079;0.3178208;-0.08440956,0.06200726;0.004511614;-0.05034625,0.08938639;-0.3691879;0.01289169,0.09363241;-0.7083584;0.09917796,0.0978147;-0.7596544;0.0410963,-0.07684135;0.001587279;-0.02220105,-0.1041518;-0.3752197;0.01867271,-0.1165209;-0.7154427;0.09988403,-0.1315304;-0.7039631;0.002767041,0.02937066;0.3984107;0.01903381,26.14812
+0;0;0,0.009193444;0.1993361;0.01343853,0.02346095;0.4988634;0.02032612,0.1290989;0.3681034;-0.01441687,0.1931643;0.09652656;0.008855976,0.2400322;-0.1771889;-0.02696655,-0.09876189;0.3739069;0.02067989,-0.3770538;0.3494832;0.001783246,-0.6487913;0.3555008;-0.0654663,0.06846119;0.005178334;-0.04106397,0.08253808;-0.373319;-0.01037862,0.0788033;-0.7186215;0.04664999,0.06939388;-0.7060241;-0.05137356,-0.07180595;0.002248692;-0.03519729,-0.1077164;-0.3757121;-0.0191958,-0.1268418;-0.7213941;0.03216764,-0.1337965;-0.7088111;-0.06605801,0.01858884;0.3989829;0.02071127,0;0;0,0.01475262;0.1990422;0.01282789,0.03695854;0.4981199;0.0183216,0.1323955;0.3650523;-0.03266814,0.1992679;0.09325829;-0.02517753,0.227598;-0.1787199;-0.0853878,-0.085355;0.3635479;0.0237879,-0.3554204;0.2945209;-0.002668722,-0.6222079;0.3178208;-0.08440956,0.06200726;0.004511614;-0.05034625,0.08938639;-0.3691879;0.01289169,0.09363241;-0.7083584;0.09917796,0.0978147;-0.7596544;0.0410963,-0.07684135;0.001587279;-0.02220105,-0.1041518;-0.3752197;0.01867271,-0.1165209;-0.7154427;0.09988403,-0.1315304;-0.7039631;0.002767041,0.02937066;0.3984107;0.01903381,26.15951
+0;0;0,0.009193444;0.1993361;0.01343853,0.02346095;0.4988634;0.02032612,0.1290989;0.3681034;-0.01441687,0.1931643;0.09652656;0.008855976,0.2400322;-0.1771889;-0.02696655,-0.09876189;0.3739069;0.02067989,-0.3770538;0.3494832;0.001783246,-0.6487913;0.3555008;-0.0654663,0.06846119;0.005178334;-0.04106397,0.08253808;-0.373319;-0.01037862,0.0788033;-0.7186215;0.04664999,0.06939388;-0.7060241;-0.05137356,-0.07180595;0.002248692;-0.03519729,-0.1077164;-0.3757121;-0.0191958,-0.1268418;-0.7213941;0.03216764,-0.1337965;-0.7088111;-0.06605801,0.01858884;0.3989829;0.02071127,0;0;0,0.01475262;0.1990422;0.01282789,0.03695854;0.4981199;0.0183216,0.1323955;0.3650523;-0.03266814,0.1992679;0.09325829;-0.02517753,0.227598;-0.1787199;-0.0853878,-0.085355;0.3635479;0.0237879,-0.3554204;0.2945209;-0.002668722,-0.6222079;0.3178208;-0.08440956,0.06200726;0.004511614;-0.05034625,0.08938639;-0.3691879;0.01289169,0.09363241;-0.7083584;0.09917796,0.0978147;-0.7596544;0.0410963,-0.07684135;0.001587279;-0.02220105,-0.1041518;-0.3752197;0.01867271,-0.1165209;-0.7154427;0.09988403,-0.1315304;-0.7039631;0.002767041,0.02937066;0.3984107;0.01903381,26.17105
+0;0;0,0.00912783;0.1993359;0.01348581,0.02333073;0.4988648;0.02043864,0.1290782;0.3679671;-0.01390646,0.192493;0.09621009;0.009043751,0.2386746;-0.177763;-0.02568346,-0.09882601;0.3736969;0.01967562,-0.3766841;0.3491495;-0.004660854,-0.6470513;0.3541187;-0.0773031,0.06850237;0.005150314;-0.04099879,0.08269383;-0.37335;-0.01040288,0.07882175;-0.7186176;0.04682745,0.06988259;-0.7060241;-0.05123939,-0.07178559;0.002270648;-0.03523737,-0.1079756;-0.3756809;-0.01965182,-0.1273491;-0.7213088;0.03198173,-0.1338237;-0.7087381;-0.06627456,0.01847414;0.3989834;0.02080281,0;0;0,0.01474288;0.1990419;0.01284477,0.03694367;0.4981194;0.01836202,0.1324008;0.3648774;-0.03248377,0.1991116;0.09305957;-0.02443756,0.2278842;-0.1789613;-0.08424386,-0.08537503;0.363323;0.02135033,-0.3551598;0.2925597;-0.003322655,-0.6203359;0.311051;-0.09129795,0.06203995;0.00446301;-0.05031029,0.08927971;-0.369253;0.01289041,0.09361155;-0.7084161;0.0992017,0.09756839;-0.7595024;0.04081194,-0.07683904;0.001631686;-0.02220582,-0.1041676;-0.3751677;0.01872545,-0.1164926;-0.7153399;0.1001564,-0.130736;-0.7038628;0.002924562,0.02935817;0.39841;0.0190699,26.19327
+0;0;0,0.00912783;0.1993359;0.01348581,0.02333073;0.4988648;0.02043864,0.1290782;0.3679671;-0.01390646,0.192493;0.09621009;0.009043751,0.2386746;-0.177763;-0.02568346,-0.09882601;0.3736969;0.01967562,-0.3766841;0.3491495;-0.004660854,-0.6470513;0.3541187;-0.0773031,0.06850237;0.005150314;-0.04099879,0.08269383;-0.37335;-0.01040288,0.07882175;-0.7186176;0.04682745,0.06988259;-0.7060241;-0.05123939,-0.07178559;0.002270648;-0.03523737,-0.1079756;-0.3756809;-0.01965182,-0.1273491;-0.7213088;0.03198173,-0.1338237;-0.7087381;-0.06627456,0.01847414;0.3989834;0.02080281,0;0;0,0.01470552;0.1990421;0.01288414,0.0368308;0.4981207;0.0187054,0.132439;0.364969;-0.03213083,0.1988072;0.0930877;-0.02342394,0.2279634;-0.1789676;-0.08288683,-0.08537403;0.3630981;0.02144339,-0.3540761;0.2914658;-0.01123684,-0.6189635;0.3060516;-0.1008019,0.06208071;0.004476056;-0.05025883,0.08922332;-0.3692632;0.01284579,0.09353852;-0.7084215;0.09917668,0.09698157;-0.7598191;0.04118891,-0.07681178;0.001604121;-0.02230197,-0.1040694;-0.3751837;0.01878285,-0.1166015;-0.7153589;0.1001697,-0.1307605;-0.7038766;0.002924547,0.02929335;0.3984068;0.0192783,26.21511
+0;0;0,0.00912783;0.1993359;0.01348581,0.02333073;0.4988648;0.02043864,0.1290782;0.3679671;-0.01390646,0.192493;0.09621009;0.009043751,0.2386746;-0.177763;-0.02568346,-0.09882601;0.3736969;0.01967562,-0.3766841;0.3491495;-0.004660854,-0.6470513;0.3541187;-0.0773031,0.06850237;0.005150314;-0.04099879,0.08269383;-0.37335;-0.01040288,0.07882175;-0.7186176;0.04682745,0.06988259;-0.7060241;-0.05123939,-0.07178559;0.002270648;-0.03523737,-0.1079756;-0.3756809;-0.01965182,-0.1273491;-0.7213088;0.03198173,-0.1338237;-0.7087381;-0.06627456,0.01847414;0.3989834;0.02080281,0;0;0,0.01470552;0.1990421;0.01288414,0.0368308;0.4981207;0.0187054,0.132439;0.364969;-0.03213083,0.1988072;0.0930877;-0.02342394,0.2279634;-0.1789676;-0.08288683,-0.08537403;0.3630981;0.02144339,-0.3540761;0.2914658;-0.01123684,-0.6189635;0.3060516;-0.1008019,0.06208071;0.004476056;-0.05025883,0.08922332;-0.3692632;0.01284579,0.09353852;-0.7084215;0.09917668,0.09698157;-0.7598191;0.04118891,-0.07681178;0.001604121;-0.02230197,-0.1040694;-0.3751837;0.01878285,-0.1166015;-0.7153589;0.1001697,-0.1307605;-0.7038766;0.002924547,0.02929335;0.3984068;0.0192783,26.2266
+0;0;0,0.009052266;0.1993375;0.01351382,0.02306797;0.498874;0.02051315,0.1289455;0.3678862;-0.01357052,0.1919207;0.09605396;0.009697005,0.2380142;-0.1780075;-0.02444529,-0.0989628;0.3734674;0.01916491,-0.3765315;0.3490582;-0.008399881,-0.6454064;0.3526137;-0.0864618,0.068546;0.005127218;-0.04092867,0.08229955;-0.3733487;-0.009835623,0.07867067;-0.7186977;0.04691771,0.06997692;-0.7061059;-0.05117089,-0.07176163;0.002285295;-0.03528521,-0.1075776;-0.3757138;-0.0199904,-0.1273886;-0.7212829;0.03186989,-0.133617;-0.7087134;-0.06640212,0.01827946;0.3989893;0.02086222,0;0;0,0.01464538;0.1990438;0.01292541,0.03660464;0.4981298;0.01904778,0.1323335;0.3649257;-0.03182081,0.1982246;0.09298617;-0.02146511,0.2280646;-0.1789746;-0.08102117,-0.08543056;0.3628226;0.02142529,-0.3527058;0.2893853;-0.01820936,-0.6156194;0.3001863;-0.1139162,0.06217879;0.004512165;-0.05013419,0.08918408;-0.3692516;0.01288453,0.09351172;-0.7084476;0.09906669,0.09697402;-0.7600207;0.04132732,-0.07675875;0.001551582;-0.02248748,-0.1041892;-0.3751974;0.01883827,-0.116855;-0.7153936;0.1001161,-0.1309216;-0.7039021;0.0028558,0.02915522;0.3984087;0.01949327,26.24873
+0;0;0,0.009052266;0.1993375;0.01351382,0.02306797;0.498874;0.02051315,0.1289455;0.3678862;-0.01357052,0.1919207;0.09605396;0.009697005,0.2380142;-0.1780075;-0.02444529,-0.0989628;0.3734674;0.01916491,-0.3765315;0.3490582;-0.008399881,-0.6454064;0.3526137;-0.0864618,0.068546;0.005127218;-0.04092867,0.08229955;-0.3733487;-0.009835623,0.07867067;-0.7186977;0.04691771,0.06997692;-0.7061059;-0.05117089,-0.07176163;0.002285295;-0.03528521,-0.1075776;-0.3757138;-0.0199904,-0.1273886;-0.7212829;0.03186989,-0.133617;-0.7087134;-0.06640212,0.01827946;0.3989893;0.02086222,0;0;0,0.01464538;0.1990438;0.01292541,0.03660464;0.4981298;0.01904778,0.1323335;0.3649257;-0.03182081,0.1982246;0.09298617;-0.02146511,0.2280646;-0.1789746;-0.08102117,-0.08543056;0.3628226;0.02142529,-0.3527058;0.2893853;-0.01820936,-0.6156194;0.3001863;-0.1139162,0.06217879;0.004512165;-0.05013419,0.08918408;-0.3692516;0.01288453,0.09351172;-0.7084476;0.09906669,0.09697402;-0.7600207;0.04132732,-0.07675875;0.001551582;-0.02248748,-0.1041892;-0.3751974;0.01883827,-0.116855;-0.7153936;0.1001161,-0.1309216;-0.7039021;0.0028558,0.02915522;0.3984087;0.01949327,26.26008
+0;0;0,0.009052266;0.1993375;0.01351382,0.02306797;0.498874;0.02051315,0.1289455;0.3678862;-0.01357052,0.1919207;0.09605396;0.009697005,0.2380142;-0.1780075;-0.02444529,-0.0989628;0.3734674;0.01916491,-0.3765315;0.3490582;-0.008399881,-0.6454064;0.3526137;-0.0864618,0.068546;0.005127218;-0.04092867,0.08229955;-0.3733487;-0.009835623,0.07867067;-0.7186977;0.04691771,0.06997692;-0.7061059;-0.05117089,-0.07176163;0.002285295;-0.03528521,-0.1075776;-0.3757138;-0.0199904,-0.1273886;-0.7212829;0.03186989,-0.133617;-0.7087134;-0.06640212,0.01827946;0.3989893;0.02086222,0;0;0,0.0145456;0.1990495;0.01295087,0.0364187;0.4981409;0.01913397,0.1323705;0.3648818;-0.03138417,0.198268;0.09294611;-0.02096617,0.2286487;-0.1790568;-0.08005463,-0.0855609;0.3628136;0.02142556,-0.3502427;0.2849314;-0.02630181,-0.610878;0.2909382;-0.1284446,0.06229506;0.004540705;-0.04998707,0.08902965;-0.3692586;0.01293604,0.09360877;-0.7084793;0.09900786,0.09686008;-0.7601824;0.04144029,-0.07671609;0.001524226;-0.02263444,-0.1042467;-0.3751905;0.01893546,-0.1167138;-0.7154573;0.09994824,-0.1306423;-0.7039596;0.002666861,0.0290208;0.3984158;0.0195501,26.28219
+0;0;0,0.008948335;0.1993354;0.01361428,0.02284574;0.4988734;0.02078321,0.1287777;0.3678489;-0.01325927,0.191876;0.09603596;0.009899614,0.2376225;-0.1781665;-0.02357086,-0.0991243;0.3733757;0.01889352,-0.375806;0.347928;-0.01574248,-0.6431854;0.3503633;-0.09882246,0.06863343;0.005070868;-0.04078894,0.08227269;-0.373428;-0.009926083,0.07848727;-0.7188486;0.04637945,0.06997844;-0.7062793;-0.05172137,-0.07171356;0.002359412;-0.03537795,-0.1070762;-0.3756847;-0.02014191,-0.127064;-0.7212211;0.03186859,-0.1331135;-0.7086464;-0.06641552,0.01809049;0.398987;0.02107373,0;0;0,0.0145456;0.1990495;0.01295087,0.0364187;0.4981409;0.01913397,0.1323705;0.3648818;-0.03138417,0.198268;0.09294611;-0.02096617,0.2286487;-0.1790568;-0.08005463,-0.0855609;0.3628136;0.02142556,-0.3502427;0.2849314;-0.02630181,-0.610878;0.2909382;-0.1284446,0.06229506;0.004540705;-0.04998707,0.08902965;-0.3692586;0.01293604,0.09360877;-0.7084793;0.09900786,0.09686008;-0.7601824;0.04144029,-0.07671609;0.001524226;-0.02263444,-0.1042467;-0.3751905;0.01893546,-0.1167138;-0.7154573;0.09994824,-0.1306423;-0.7039596;0.002666861,0.0290208;0.3984158;0.0195501,26.29356
+0;0;0,0.008948335;0.1993354;0.01361428,0.02284574;0.4988734;0.02078321,0.1287777;0.3678489;-0.01325927,0.191876;0.09603596;0.009899614,0.2376225;-0.1781665;-0.02357086,-0.0991243;0.3733757;0.01889352,-0.375806;0.347928;-0.01574248,-0.6431854;0.3503633;-0.09882246,0.06863343;0.005070868;-0.04078894,0.08227269;-0.373428;-0.009926083,0.07848727;-0.7188486;0.04637945,0.06997844;-0.7062793;-0.05172137,-0.07171356;0.002359412;-0.03537795,-0.1070762;-0.3756847;-0.02014191,-0.127064;-0.7212211;0.03186859,-0.1331135;-0.7086464;-0.06641552,0.01809049;0.398987;0.02107373,0;0;0,0.0145456;0.1990495;0.01295087,0.0364187;0.4981409;0.01913397,0.1323705;0.3648818;-0.03138417,0.198268;0.09294611;-0.02096617,0.2286487;-0.1790568;-0.08005463,-0.0855609;0.3628136;0.02142556,-0.3502427;0.2849314;-0.02630181,-0.610878;0.2909382;-0.1284446,0.06229506;0.004540705;-0.04998707,0.08902965;-0.3692586;0.01293604,0.09360877;-0.7084793;0.09900786,0.09686008;-0.7601824;0.04144029,-0.07671609;0.001524226;-0.02263444,-0.1042467;-0.3751905;0.01893546,-0.1167138;-0.7154573;0.09994824,-0.1306423;-0.7039596;0.002666861,0.0290208;0.3984158;0.0195501,26.30478
+0;0;0,0.008948335;0.1993354;0.01361428,0.02284574;0.4988734;0.02078321,0.1287777;0.3678489;-0.01325927,0.191876;0.09603596;0.009899614,0.2376225;-0.1781665;-0.02357086,-0.0991243;0.3733757;0.01889352,-0.375806;0.347928;-0.01574248,-0.6431854;0.3503633;-0.09882246,0.06863343;0.005070868;-0.04078894,0.08227269;-0.373428;-0.009926083,0.07848727;-0.7188486;0.04637945,0.06997844;-0.7062793;-0.05172137,-0.07171356;0.002359412;-0.03537795,-0.1070762;-0.3756847;-0.02014191,-0.127064;-0.7212211;0.03186859,-0.1331135;-0.7086464;-0.06641552,0.01809049;0.398987;0.02107373,0;0;0,0.01447556;0.1990511;0.01300495,0.03634541;0.4981416;0.01925254,0.1325387;0.3648159;-0.03075783,0.1981974;0.09282115;-0.02037655,0.2293099;-0.1790984;-0.07946768,-0.08551565;0.3624166;0.02104727,-0.3478792;0.2818415;-0.0343874,-0.6048706;0.2840164;-0.1455212,0.06246184;0.004514604;-0.04978089,0.0889781;-0.3693246;0.01299782,0.09354778;-0.708542;0.09908277,0.09653046;-0.7603964;0.04171574,-0.07663089;0.001452183;-0.02292592,-0.1041837;-0.3750945;0.02012555,-0.1162361;-0.7155712;0.1003151,-0.129861;-0.7040626;0.002988704,0.02894853;0.3984163;0.01964145,26.32708
+0;0;0,0.008863636;0.1993371;0.01364406,0.02262445;0.4988804;0.02085874,0.1286564;0.3678143;-0.01298492,0.1914682;0.09592393;0.01004332,0.2377749;-0.1781799;-0.02346504,-0.0992101;0.3730644;0.01800511,-0.3750162;0.3464971;-0.02230797,-0.6389389;0.3484846;-0.1158005,0.06867222;0.005048511;-0.04072638,0.08164366;-0.3735351;-0.01062276,0.07870171;-0.7188817;0.04618407,0.07053336;-0.7063148;-0.05194526,-0.07169773;0.002375933;-0.03540891,-0.1064776;-0.3757359;-0.0205155,-0.1267485;-0.7212198;0.03173307,-0.1324557;-0.7086437;-0.06657173,0.01791371;0.3989918;0.02113285,0;0;0,0.01447556;0.1990511;0.01300495,0.03634541;0.4981416;0.01925254,0.1325387;0.3648159;-0.03075783,0.1981974;0.09282115;-0.02037655,0.2293099;-0.1790984;-0.07946768,-0.08551565;0.3624166;0.02104727,-0.3478792;0.2818415;-0.0343874,-0.6048706;0.2840164;-0.1455212,0.06246184;0.004514604;-0.04978089,0.0889781;-0.3693246;0.01299782,0.09354778;-0.708542;0.09908277,0.09653046;-0.7603964;0.04171574,-0.07663089;0.001452183;-0.02292592,-0.1041837;-0.3750945;0.02012555,-0.1162361;-0.7155712;0.1003151,-0.129861;-0.7040626;0.002988704,0.02894853;0.3984163;0.01964145,26.33833
+0;0;0,0.008863636;0.1993371;0.01364406,0.02262445;0.4988804;0.02085874,0.1286564;0.3678143;-0.01298492,0.1914682;0.09592393;0.01004332,0.2377749;-0.1781799;-0.02346504,-0.0992101;0.3730644;0.01800511,-0.3750162;0.3464971;-0.02230797,-0.6389389;0.3484846;-0.1158005,0.06867222;0.005048511;-0.04072638,0.08164366;-0.3735351;-0.01062276,0.07870171;-0.7188817;0.04618407,0.07053336;-0.7063148;-0.05194526,-0.07169773;0.002375933;-0.03540891,-0.1064776;-0.3757359;-0.0205155,-0.1267485;-0.7212198;0.03173307,-0.1324557;-0.7086437;-0.06657173,0.01791371;0.3989918;0.02113285,0;0;0,0.01419434;0.1990599;0.013179,0.0358901;0.4981549;0.01985857,0.132383;0.3648129;-0.02985414,0.1979632;0.09276691;-0.02035709,0.2291095;-0.1791082;-0.07963483,-0.08587595;0.3623499;0.01894127,-0.3451079;0.2764176;-0.04281998,-0.5999602;0.27441;-0.1587782,0.06268901;0.004531269;-0.04949298,0.08846507;-0.3693996;0.0130471,0.09277261;-0.7086778;0.09890613,0.09595108;-0.7607719;0.0418933,-0.07652766;0.001467631;-0.02326721,-0.1046565;-0.375005;0.02005829,-0.116967;-0.715423;0.1004574,-0.1296987;-0.7038997;0.003007285,0.02856795;0.3984236;0.02007338,26.36051
+0;0;0,0.008893007;0.1993293;0.013738,0.02275642;0.4988651;0.02106329,0.1288494;0.3679334;-0.01260633,0.191719;0.09604302;0.01026353,0.2380688;-0.1780662;-0.02314033,-0.0990756;0.3729035;0.01781926,-0.3739393;0.3458165;-0.0281831,-0.6344855;0.3475648;-0.1307144,0.0687824;0.004912673;-0.0405567,0.08198791;-0.3736853;-0.01073704,0.07943486;-0.7190171;0.04617871,0.07140799;-0.7064473;-0.05196283,-0.07168888;0.002559757;-0.035414,-0.1056793;-0.3756271;-0.02060286,-0.1255693;-0.721083;0.03197628,-0.1311347;-0.7085004;-0.06633782,0.01800541;0.3989784;0.02130283,0;0;0,0.01413662;0.1990589;0.01325601,0.0355601;0.4981642;0.02039871,0.1323422;0.3647419;-0.02912072,0.1977916;0.09266037;-0.01973702,0.2289087;-0.17913;-0.07941741,-0.08607413;0.362347;0.01900905,-0.3366457;0.2668715;-0.06160322,-0.5899916;0.2614977;-0.1807123,0.06281647;0.004608541;-0.04932396,0.08869988;-0.3693849;0.01279665,0.09277318;-0.7086695;0.09864128,0.09573573;-0.760956;0.04189485,-0.07642807;0.001408905;-0.02359589,-0.1044911;-0.3750337;0.02003249,-0.11686;-0.7154089;0.1006038,-0.1293838;-0.7038714;0.003124073,0.02836582;0.3984233;0.02042182,26.38286
+0;0;0,0.008893007;0.1993293;0.013738,0.02275642;0.4988651;0.02106329,0.1288494;0.3679334;-0.01260633,0.191719;0.09604302;0.01026353,0.2380688;-0.1780662;-0.02314033,-0.0990756;0.3729035;0.01781926,-0.3739393;0.3458165;-0.0281831,-0.6344855;0.3475648;-0.1307144,0.0687824;0.004912673;-0.0405567,0.08198791;-0.3736853;-0.01073704,0.07943486;-0.7190171;0.04617871,0.07140799;-0.7064473;-0.05196283,-0.07168888;0.002559757;-0.035414,-0.1056793;-0.3756271;-0.02060286,-0.1255693;-0.721083;0.03197628,-0.1311347;-0.7085004;-0.06633782,0.01800541;0.3989784;0.02130283,0;0;0,0.01413662;0.1990589;0.01325601,0.0355601;0.4981642;0.02039871,0.1323422;0.3647419;-0.02912072,0.1977916;0.09266037;-0.01973702,0.2289087;-0.17913;-0.07941741,-0.08607413;0.362347;0.01900905,-0.3366457;0.2668715;-0.06160322,-0.5899916;0.2614977;-0.1807123,0.06281647;0.004608541;-0.04932396,0.08869988;-0.3693849;0.01279665,0.09277318;-0.7086695;0.09864128,0.09573573;-0.760956;0.04189485,-0.07642807;0.001408905;-0.02359589,-0.1044911;-0.3750337;0.02003249,-0.11686;-0.7154089;0.1006038,-0.1293838;-0.7038714;0.003124073,0.02836582;0.3984233;0.02042182,26.39407
+0;0;0,0.008893007;0.1993293;0.013738,0.02275642;0.4988651;0.02106329,0.1288494;0.3679334;-0.01260633,0.191719;0.09604302;0.01026353,0.2380688;-0.1780662;-0.02314033,-0.0990756;0.3729035;0.01781926,-0.3739393;0.3458165;-0.0281831,-0.6344855;0.3475648;-0.1307144,0.0687824;0.004912673;-0.0405567,0.08198791;-0.3736853;-0.01073704,0.07943486;-0.7190171;0.04617871,0.07140799;-0.7064473;-0.05196283,-0.07168888;0.002559757;-0.035414,-0.1056793;-0.3756271;-0.02060286,-0.1255693;-0.721083;0.03197628,-0.1311347;-0.7085004;-0.06633782,0.01800541;0.3989784;0.02130283,0;0;0,0.01413662;0.1990589;0.01325601,0.0355601;0.4981642;0.02039871,0.1323422;0.3647419;-0.02912072,0.1977916;0.09266037;-0.01973702,0.2289087;-0.17913;-0.07941741,-0.08607413;0.362347;0.01900905,-0.3366457;0.2668715;-0.06160322,-0.5899916;0.2614977;-0.1807123,0.06281647;0.004608541;-0.04932396,0.08869988;-0.3693849;0.01279665,0.09277318;-0.7086695;0.09864128,0.09573573;-0.760956;0.04189485,-0.07642807;0.001408905;-0.02359589,-0.1044911;-0.3750337;0.02003249,-0.11686;-0.7154089;0.1006038,-0.1293838;-0.7038714;0.003124073,0.02836582;0.3984233;0.02042182,26.40535
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01372651;0.1990754;0.01343767,0.03448444;0.4982097;0.02136627,0.1320678;0.3652011;-0.02773632,0.1972322;0.09302118;-0.01927054,0.2288889;-0.1786512;-0.0792037,-0.08682744;0.3624509;0.0180598,-0.3293412;0.262197;-0.07959387,-0.5816609;0.2479406;-0.2001408,0.06330656;0.004712164;-0.04868342,0.08823637;-0.369473;0.01266758,0.09230545;-0.7088077;0.09831469,0.09526316;-0.7610512;0.04150566,-0.07620355;0.001287468;-0.0243179,-0.1049813;-0.3750072;0.02011363,-0.1174246;-0.7153811;0.100679,-0.1292522;-0.7038209;0.003108136,0.02760676;0.3984469;0.02107575,26.41636
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01372651;0.1990754;0.01343767,0.03448444;0.4982097;0.02136627,0.1320678;0.3652011;-0.02773632,0.1972322;0.09302118;-0.01927054,0.2288889;-0.1786512;-0.0792037,-0.08682744;0.3624509;0.0180598,-0.3293412;0.262197;-0.07959387,-0.5816609;0.2479406;-0.2001408,0.06330656;0.004712164;-0.04868342,0.08823637;-0.369473;0.01266758,0.09230545;-0.7088077;0.09831469,0.09526316;-0.7610512;0.04150566,-0.07620355;0.001287468;-0.0243179,-0.1049813;-0.3750072;0.02011363,-0.1174246;-0.7153811;0.100679,-0.1292522;-0.7038209;0.003108136,0.02760676;0.3984469;0.02107575,26.42762
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01355283;0.1990787;0.01356507,0.03365523;0.4982432;0.02201612,0.1319829;0.3654785;-0.02638975,0.1972588;0.09329429;-0.01898894,0.2290025;-0.1783606;-0.07895508,-0.08725578;0.3620967;0.01782116,-0.3242877;0.2563664;-0.08723588,-0.5604288;0.2184466;-0.2328362,0.0636205;0.004672206;-0.04827631,0.08823353;-0.3696427;0.01240762,0.09235761;-0.7089337;0.09822484,0.09470861;-0.7608829;0.04096398,-0.07608768;0.001255845;-0.02467967,-0.1050475;-0.3749983;0.01997572,-0.1173365;-0.7153875;0.1005002,-0.1287029;-0.7038142;0.002872013,0.02703994;0.3984632;0.02155796,26.45003
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01355283;0.1990787;0.01356507,0.03365523;0.4982432;0.02201612,0.1319829;0.3654785;-0.02638975,0.1972588;0.09329429;-0.01898894,0.2290025;-0.1783606;-0.07895508,-0.08725578;0.3620967;0.01782116,-0.3242877;0.2563664;-0.08723588,-0.5604288;0.2184466;-0.2328362,0.0636205;0.004672206;-0.04827631,0.08823353;-0.3696427;0.01240762,0.09235761;-0.7089337;0.09822484,0.09470861;-0.7608829;0.04096398,-0.07608768;0.001255845;-0.02467967,-0.1050475;-0.3749983;0.01997572,-0.1173365;-0.7153875;0.1005002,-0.1287029;-0.7038142;0.002872013,0.02703994;0.3984632;0.02155796,26.46159
+0;0;0,0.009074706;0.1992917;0.01415927,0.02305836;0.4988042;0.02221663,0.1292812;0.3677461;-0.01106804,0.1924548;0.0958347;0.01068653,0.2396903;-0.1780712;-0.02314152,-0.09868792;0.372519;0.0174086,-0.3709643;0.3426738;-0.04068477,-0.6262959;0.3467418;-0.1555291,0.06893913;0.00469148;-0.04031609,0.08319461;-0.3738672;-0.01048171,0.08075479;-0.7191858;0.04651953,0.0732955;-0.7065845;-0.05167235,-0.07167032;0.002819662;-0.03543182,-0.1042725;-0.375487;-0.02056171,-0.1239176;-0.7208933;0.03243449,-0.1289104;-0.708281;-0.0659156,0.01827463;0.3989187;0.02218567,0;0;0,0.01355283;0.1990787;0.01356507,0.03365523;0.4982432;0.02201612,0.1319829;0.3654785;-0.02638975,0.1972588;0.09329429;-0.01898894,0.2290025;-0.1783606;-0.07895508,-0.08725578;0.3620967;0.01782116,-0.3242877;0.2563664;-0.08723588,-0.5604288;0.2184466;-0.2328362,0.0636205;0.004672206;-0.04827631,0.08823353;-0.3696427;0.01240762,0.09235761;-0.7089337;0.09822484,0.09470861;-0.7608829;0.04096398,-0.07608768;0.001255845;-0.02467967,-0.1050475;-0.3749983;0.01997572,-0.1173365;-0.7153875;0.1005002,-0.1287029;-0.7038142;0.002872013,0.02703994;0.3984632;0.02155796,26.47326
+0;0;0,0.009074706;0.1992917;0.01415927,0.02305836;0.4988042;0.02221663,0.1292812;0.3677461;-0.01106804,0.1924548;0.0958347;0.01068653,0.2396903;-0.1780712;-0.02314152,-0.09868792;0.372519;0.0174086,-0.3709643;0.3426738;-0.04068477,-0.6262959;0.3467418;-0.1555291,0.06893913;0.00469148;-0.04031609,0.08319461;-0.3738672;-0.01048171,0.08075479;-0.7191858;0.04651953,0.0732955;-0.7065845;-0.05167235,-0.07167032;0.002819662;-0.03543182,-0.1042725;-0.375487;-0.02056171,-0.1239176;-0.7208933;0.03243449,-0.1289104;-0.708281;-0.0659156,0.01827463;0.3989187;0.02218567,0;0;0,0.01311314;0.1990956;0.013747,0.03278028;0.4982757;0.02267225,0.1316196;0.3653573;-0.02503677,0.1967221;0.09312838;-0.01775223,0.2283193;-0.1780767;-0.07979596,-0.08766691;0.3613164;0.01723878,-0.3139812;0.2453324;-0.09993437,-0.5538238;0.2089438;-0.2397607,0.06409248;0.004670463;-0.04764809,0.08767276;-0.369839;0.01224035,0.09174791;-0.7090907;0.09821515,0.09474186;-0.7610741;0.04103334,-0.07587733;0.001179106;-0.02532271,-0.1055978;-0.3749471;0.01990751,-0.117685;-0.7153377;0.1004565,-0.128493;-0.7037492;0.002762042,0.02633019;0.3984859;0.02204438,26.4845
+0;0;0,0.009074706;0.1992917;0.01415927,0.02305836;0.4988042;0.02221663,0.1292812;0.3677461;-0.01106804,0.1924548;0.0958347;0.01068653,0.2396903;-0.1780712;-0.02314152,-0.09868792;0.372519;0.0174086,-0.3709643;0.3426738;-0.04068477,-0.6262959;0.3467418;-0.1555291,0.06893913;0.00469148;-0.04031609,0.08319461;-0.3738672;-0.01048171,0.08075479;-0.7191858;0.04651953,0.0732955;-0.7065845;-0.05167235,-0.07167032;0.002819662;-0.03543182,-0.1042725;-0.375487;-0.02056171,-0.1239176;-0.7208933;0.03243449,-0.1289104;-0.708281;-0.0659156,0.01827463;0.3989187;0.02218567,0;0;0,0.01311314;0.1990956;0.013747,0.03278028;0.4982757;0.02267225,0.1316196;0.3653573;-0.02503677,0.1967221;0.09312838;-0.01775223,0.2283193;-0.1780767;-0.07979596,-0.08766691;0.3613164;0.01723878,-0.3139812;0.2453324;-0.09993437,-0.5538238;0.2089438;-0.2397607,0.06409248;0.004670463;-0.04764809,0.08767276;-0.369839;0.01224035,0.09174791;-0.7090907;0.09821515,0.09474186;-0.7610741;0.04103334,-0.07587733;0.001179106;-0.02532271,-0.1055978;-0.3749471;0.01990751,-0.117685;-0.7153377;0.1004565,-0.128493;-0.7037492;0.002762042,0.02633019;0.3984859;0.02204438,26.49608
+0;0;0,0.008999027;0.1992798;0.01437304,0.02276344;0.4987909;0.02288176,0.1291625;0.367858;-0.01036985,0.1924934;0.09598103;0.01135788,0.2394876;-0.1779203;-0.02284142,-0.09879353;0.3721749;0.0170784,-0.3689536;0.3406247;-0.04939043,-0.6215575;0.3453265;-0.1700934,0.06903992;0.00465561;-0.04014742,0.08319081;-0.3739273;-0.01057174,0.08119445;-0.7192106;0.04666029,0.07401158;-0.7065937;-0.05155496,-0.07159429;0.002858565;-0.0355821,-0.1032307;-0.3755163;-0.0203642,-0.1233996;-0.7208543;0.0328798,-0.1281123;-0.7082273;-0.06548671,0.01805819;0.3989018;0.02267731,0;0;0,0.01311314;0.1990956;0.013747,0.03278028;0.4982757;0.02267225,0.1316196;0.3653573;-0.02503677,0.1967221;0.09312838;-0.01775223,0.2283193;-0.1780767;-0.07979596,-0.08766691;0.3613164;0.01723878,-0.3139812;0.2453324;-0.09993437,-0.5538238;0.2089438;-0.2397607,0.06409248;0.004670463;-0.04764809,0.08767276;-0.369839;0.01224035,0.09174791;-0.7090907;0.09821515,0.09474186;-0.7610741;0.04103334,-0.07587733;0.001179106;-0.02532271,-0.1055978;-0.3749471;0.01990751,-0.117685;-0.7153377;0.1004565,-0.128493;-0.7037492;0.002762042,0.02633019;0.3984859;0.02204438,26.50747
+0;0;0,0.008999027;0.1992798;0.01437304,0.02276344;0.4987909;0.02288176,0.1291625;0.367858;-0.01036985,0.1924934;0.09598103;0.01135788,0.2394876;-0.1779203;-0.02284142,-0.09879353;0.3721749;0.0170784,-0.3689536;0.3406247;-0.04939043,-0.6215575;0.3453265;-0.1700934,0.06903992;0.00465561;-0.04014742,0.08319081;-0.3739273;-0.01057174,0.08119445;-0.7192106;0.04666029,0.07401158;-0.7065937;-0.05155496,-0.07159429;0.002858565;-0.0355821,-0.1032307;-0.3755163;-0.0203642,-0.1233996;-0.7208543;0.0328798,-0.1281123;-0.7082273;-0.06548671,0.01805819;0.3989018;0.02267731,0;0;0,0.01290964;0.1990888;0.0140357,0.03207716;0.4982781;0.02369127,0.1314628;0.3655257;-0.02354882,0.1968053;0.09336102;-0.01601422,0.2278892;-0.1775443;-0.07960752,-0.08782585;0.3604428;0.01645978,-0.3052045;0.2342329;-0.1068999,-0.5339038;0.1802624;-0.2591621,0.06447987;0.004655701;-0.04712398,0.08766367;-0.3699919;0.01205095,0.09149916;-0.7091999;0.09820913,0.09507607;-0.7614635;0.04146479,-0.07570174;0.001088944;-0.0258469,-0.1057652;-0.3749443;0.01992632,-0.1178696;-0.7153568;0.1003803,-0.1280628;-0.7037421;0.002614848,0.02580811;0.3984785;0.02283215,26.51898
+0;0;0,0.008999027;0.1992798;0.01437304,0.02276344;0.4987909;0.02288176,0.1291625;0.367858;-0.01036985,0.1924934;0.09598103;0.01135788,0.2394876;-0.1779203;-0.02284142,-0.09879353;0.3721749;0.0170784,-0.3689536;0.3406247;-0.04939043,-0.6215575;0.3453265;-0.1700934,0.06903992;0.00465561;-0.04014742,0.08319081;-0.3739273;-0.01057174,0.08119445;-0.7192106;0.04666029,0.07401158;-0.7065937;-0.05155496,-0.07159429;0.002858565;-0.0355821,-0.1032307;-0.3755163;-0.0203642,-0.1233996;-0.7208543;0.0328798,-0.1281123;-0.7082273;-0.06548671,0.01805819;0.3989018;0.02267731,0;0;0,0.01290964;0.1990888;0.0140357,0.03207716;0.4982781;0.02369127,0.1314628;0.3655257;-0.02354882,0.1968053;0.09336102;-0.01601422,0.2278892;-0.1775443;-0.07960752,-0.08782585;0.3604428;0.01645978,-0.3052045;0.2342329;-0.1068999,-0.5339038;0.1802624;-0.2591621,0.06447987;0.004655701;-0.04712398,0.08766367;-0.3699919;0.01205095,0.09149916;-0.7091999;0.09820913,0.09507607;-0.7614635;0.04146479,-0.07570174;0.001088944;-0.0258469,-0.1057652;-0.3749443;0.01992632,-0.1178696;-0.7153568;0.1003803,-0.1280628;-0.7037421;0.002614848,0.02580811;0.3984785;0.02283215,26.53057
+0;0;0,0.008968758;0.1992739;0.01447275,0.02269638;0.4987829;0.02311393,0.1291225;0.3677888;-0.01006679,0.1925236;0.09591734;0.01152558,0.2397155;-0.1779338;-0.0228039,-0.09875019;0.3718469;0.01673633,-0.3673888;0.3390418;-0.05507681,-0.6166761;0.3448937;-0.1824408,0.06906668;0.004599194;-0.04010788,0.08320375;-0.3739745;-0.01040774,0.08136626;-0.7192694;0.04675926,0.07436003;-0.7066436;-0.05147032,-0.07158189;0.002916613;-0.03560232,-0.1029504;-0.3754724;-0.02018187,-0.1231058;-0.720812;0.03305601,-0.1276415;-0.7081797;-0.06531976,0.01800129;0.3988935;0.02286586,0;0;0,0.01290964;0.1990888;0.0140357,0.03207716;0.4982781;0.02369127,0.1314628;0.3655257;-0.02354882,0.1968053;0.09336102;-0.01601422,0.2278892;-0.1775443;-0.07960752,-0.08782585;0.3604428;0.01645978,-0.3052045;0.2342329;-0.1068999,-0.5339038;0.1802624;-0.2591621,0.06447987;0.004655701;-0.04712398,0.08766367;-0.3699919;0.01205095,0.09149916;-0.7091999;0.09820913,0.09507607;-0.7614635;0.04146479,-0.07570174;0.001088944;-0.0258469,-0.1057652;-0.3749443;0.01992632,-0.1178696;-0.7153568;0.1003803,-0.1280628;-0.7037421;0.002614848,0.02580811;0.3984785;0.02283215,26.5421
+0;0;0,0.008968758;0.1992739;0.01447275,0.02269638;0.4987829;0.02311393,0.1291225;0.3677888;-0.01006679,0.1925236;0.09591734;0.01152558,0.2397155;-0.1779338;-0.0228039,-0.09875019;0.3718469;0.01673633,-0.3673888;0.3390418;-0.05507681,-0.6166761;0.3448937;-0.1824408,0.06906668;0.004599194;-0.04010788,0.08320375;-0.3739745;-0.01040774,0.08136626;-0.7192694;0.04675926,0.07436003;-0.7066436;-0.05147032,-0.07158189;0.002916613;-0.03560232,-0.1029504;-0.3754724;-0.02018187,-0.1231058;-0.720812;0.03305601,-0.1276415;-0.7081797;-0.06531976,0.01800129;0.3988935;0.02286586,0;0;0,0.01235912;0.1991181;0.01411497,0.03107635;0.4983303;0.02394902,0.1311935;0.3660028;-0.02236987,0.196814;0.09392428;-0.01416861,0.2282791;-0.1766737;-0.07887325,-0.08847769;0.3600947;0.01584332,-0.2965572;0.2293784;-0.118381,-0.5202461;0.1622403;-0.2728341,0.06526854;0.004759834;-0.04601479,0.08725065;-0.3702261;0.01145144,0.09093224;-0.7093877;0.09779874,0.09439839;-0.761613;0.04099222,-0.07522226;0.00100767;-0.02721388,-0.1064511;-0.3747869;0.01972473,-0.1184985;-0.7152766;0.09985953,-0.1281716;-0.7036526;0.002039514,0.02497662;0.3985208;0.02302337,26.56486
+0;0;0,0.008968758;0.1992739;0.01447275,0.02269638;0.4987829;0.02311393,0.1291225;0.3677888;-0.01006679,0.1925236;0.09591734;0.01152558,0.2397155;-0.1779338;-0.0228039,-0.09875019;0.3718469;0.01673633,-0.3673888;0.3390418;-0.05507681,-0.6166761;0.3448937;-0.1824408,0.06906668;0.004599194;-0.04010788,0.08320375;-0.3739745;-0.01040774,0.08136626;-0.7192694;0.04675926,0.07436003;-0.7066436;-0.05147032,-0.07158189;0.002916613;-0.03560232,-0.1029504;-0.3754724;-0.02018187,-0.1231058;-0.720812;0.03305601,-0.1276415;-0.7081797;-0.06531976,0.01800129;0.3988935;0.02286586,0;0;0,0.01235912;0.1991181;0.01411497,0.03107635;0.4983303;0.02394902,0.1311935;0.3660028;-0.02236987,0.196814;0.09392428;-0.01416861,0.2282791;-0.1766737;-0.07887325,-0.08847769;0.3600947;0.01584332,-0.2965572;0.2293784;-0.118381,-0.5202461;0.1622403;-0.2728341,0.06526854;0.004759834;-0.04601479,0.08725065;-0.3702261;0.01145144,0.09093224;-0.7093877;0.09779874,0.09439839;-0.761613;0.04099222,-0.07522226;0.00100767;-0.02721388,-0.1064511;-0.3747869;0.01972473,-0.1184985;-0.7152766;0.09985953,-0.1281716;-0.7036526;0.002039514,0.02497662;0.3985208;0.02302337,26.57645
+0;0;0,0.009025386;0.1992467;0.01480798,0.02268765;0.4987335;0.02437371,0.1291844;0.3679196;-0.009159103,0.1925973;0.0960106;0.01191887,0.2399742;-0.1777817;-0.02262416,-0.09864672;0.3715726;0.01675379,-0.36483;0.3355657;-0.06230289,-0.6119882;0.3436427;-0.193633,0.06912264;0.004561583;-0.04001565,0.08348958;-0.3739895;-0.01013799,0.08174594;-0.7192749;0.04708975,0.07498935;-0.7066187;-0.05116268,-0.07158463;0.002951887;-0.0355939,-0.1024001;-0.375471;-0.01989374,-0.1225556;-0.7207954;0.03344343,-0.1268406;-0.7081326;-0.06494896,0.01800391;0.3988453;0.0237423,0;0;0,0.01179645;0.1991268;0.01446978,0.02967028;0.4983627;0.02513585,0.1305584;0.3666201;-0.02085317,0.1966339;0.0946683;-0.01212204,0.2273528;-0.1758022;-0.07771204,-0.08916192;0.3592581;0.01519953,-0.2937765;0.2253153;-0.1211538,-0.5039914;0.1412353;-0.2858967,0.06567195;0.004775626;-0.04543554,0.086611;-0.3703649;0.01140745,0.09020093;-0.7095495;0.09766814,0.0941535;-0.7614251;0.04039004,-0.07495836;0.000993052;-0.02793309,-0.1071141;-0.3746187;0.01983551,-0.1188939;-0.7151964;0.09963576,-0.1279864;-0.703527;0.001751572,0.02389244;0.3985373;0.02390911,26.58813
+0;0;0,0.009025386;0.1992467;0.01480798,0.02268765;0.4987335;0.02437371,0.1291844;0.3679196;-0.009159103,0.1925973;0.0960106;0.01191887,0.2399742;-0.1777817;-0.02262416,-0.09864672;0.3715726;0.01675379,-0.36483;0.3355657;-0.06230289,-0.6119882;0.3436427;-0.193633,0.06912264;0.004561583;-0.04001565,0.08348958;-0.3739895;-0.01013799,0.08174594;-0.7192749;0.04708975,0.07498935;-0.7066187;-0.05116268,-0.07158463;0.002951887;-0.0355939,-0.1024001;-0.375471;-0.01989374,-0.1225556;-0.7207954;0.03344343,-0.1268406;-0.7081326;-0.06494896,0.01800391;0.3988453;0.0237423,0;0;0,0.01179645;0.1991268;0.01446978,0.02967028;0.4983627;0.02513585,0.1305584;0.3666201;-0.02085317,0.1966339;0.0946683;-0.01212204,0.2273528;-0.1758022;-0.07771204,-0.08916192;0.3592581;0.01519953,-0.2937765;0.2253153;-0.1211538,-0.5039914;0.1412353;-0.2858967,0.06567195;0.004775626;-0.04543554,0.086611;-0.3703649;0.01140745,0.09020093;-0.7095495;0.09766814,0.0941535;-0.7614251;0.04039004,-0.07495836;0.000993052;-0.02793309,-0.1071141;-0.3746187;0.01983551,-0.1188939;-0.7151964;0.09963576,-0.1279864;-0.703527;0.001751572,0.02389244;0.3985373;0.02390911,26.59931
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.01179645;0.1991268;0.01446978,0.02967028;0.4983627;0.02513585,0.1305584;0.3666201;-0.02085317,0.1966339;0.0946683;-0.01212204,0.2273528;-0.1758022;-0.07771204,-0.08916192;0.3592581;0.01519953,-0.2937765;0.2253153;-0.1211538,-0.5039914;0.1412353;-0.2858967,0.06567195;0.004775626;-0.04543554,0.086611;-0.3703649;0.01140745,0.09020093;-0.7095495;0.09766814,0.0941535;-0.7614251;0.04039004,-0.07495836;0.000993052;-0.02793309,-0.1071141;-0.3746187;0.01983551,-0.1188939;-0.7151964;0.09963576,-0.1279864;-0.703527;0.001751572,0.02389244;0.3985373;0.02390911,26.61085
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.01101874;0.1991587;0.01464209,0.02826379;0.4984243;0.02552556,0.1297246;0.3664804;-0.01956787,0.1961347;0.09464279;-0.009871113,0.2267315;-0.1759843;-0.07486982,-0.09008403;0.3589035;0.01405692,-0.2844713;0.2209012;-0.1328067,-0.4883353;0.1212381;-0.2968395,0.06624015;0.004838764;-0.04459628,0.08527391;-0.3705638;0.01117689,0.08890584;-0.7097552;0.09740904,0.09284793;-0.7616012;0.04008804,-0.07467387;0.001052775;-0.02868283,-0.1079645;-0.3743704;0.01978549,-0.1197093;-0.7149445;0.09960628,-0.1280635;-0.7032679;0.001654953,0.02270818;0.3985874;0.02421132,26.62213
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.01101874;0.1991587;0.01464209,0.02826379;0.4984243;0.02552556,0.1297246;0.3664804;-0.01956787,0.1961347;0.09464279;-0.009871113,0.2267315;-0.1759843;-0.07486982,-0.09008403;0.3589035;0.01405692,-0.2844713;0.2209012;-0.1328067,-0.4883353;0.1212381;-0.2968395,0.06624015;0.004838764;-0.04459628,0.08527391;-0.3705638;0.01117689,0.08890584;-0.7097552;0.09740904,0.09284793;-0.7616012;0.04008804,-0.07467387;0.001052775;-0.02868283,-0.1079645;-0.3743704;0.01978549,-0.1197093;-0.7149445;0.09960628,-0.1280635;-0.7032679;0.001654953,0.02270818;0.3985874;0.02421132,26.63336
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.01101874;0.1991587;0.01464209,0.02826379;0.4984243;0.02552556,0.1297246;0.3664804;-0.01956787,0.1961347;0.09464279;-0.009871113,0.2267315;-0.1759843;-0.07486982,-0.09008403;0.3589035;0.01405692,-0.2844713;0.2209012;-0.1328067,-0.4883353;0.1212381;-0.2968395,0.06624015;0.004838764;-0.04459628,0.08527391;-0.3705638;0.01117689,0.08890584;-0.7097552;0.09740904,0.09284793;-0.7616012;0.04008804,-0.07467387;0.001052775;-0.02868283,-0.1079645;-0.3743704;0.01978549,-0.1197093;-0.7149445;0.09960628,-0.1280635;-0.7032679;0.001654953,0.02270818;0.3985874;0.02421132,26.64452
+0;0;0,0.008968897;0.1992237;0.01514871,0.02259485;0.4987033;0.02497855,0.1292754;0.3680831;-0.008248663,0.1927045;0.09615019;0.01246983,0.2406588;-0.1774838;-0.02252793,-0.09844743;0.3708144;0.01572885,-0.3593503;0.3302569;-0.07746339,-0.5986934;0.3371424;-0.2226099,0.06922555;0.004543555;-0.03983941,0.08399646;-0.3739971;-0.01002621,0.08240544;-0.7192113;0.04763288,0.07618518;-0.7065443;-0.0506569,-0.07148305;0.002963221;-0.03579654,-0.1018457;-0.3754545;-0.01911763,-0.1217557;-0.7208066;0.03413163,-0.1255034;-0.7081304;-0.06428505,0.01792739;0.3988148;0.02426573,0;0;0,0.01029672;0.1991913;0.01472379,0.02677462;0.4984921;0.0258321,0.1287995;0.3666761;-0.01884672,0.1963128;0.09519225;-0.007078709,0.2276106;-0.1754354;-0.07174043,-0.09114526;0.3589316;0.01319606,-0.2802048;0.2161262;-0.1360122,-0.4768258;0.1112656;-0.3055541,0.0666758;0.004875168;-0.04393825,0.08442299;-0.3707388;0.01082638,0.08812351;-0.7099351;0.09703649,0.0921182;-0.7615291;0.03936096,-0.07434125;0.001073404;-0.02953348,-0.1088715;-0.3741082;0.0199277,-0.1204954;-0.7147218;0.09959738,-0.1283671;-0.7030413;0.001605362,0.02153611;0.3986392;0.02443041,26.65571
+0;0;0,0.008968897;0.1992237;0.01514871,0.02259485;0.4987033;0.02497855,0.1292754;0.3680831;-0.008248663,0.1927045;0.09615019;0.01246983,0.2406588;-0.1774838;-0.02252793,-0.09844743;0.3708144;0.01572885,-0.3593503;0.3302569;-0.07746339,-0.5986934;0.3371424;-0.2226099,0.06922555;0.004543555;-0.03983941,0.08399646;-0.3739971;-0.01002621,0.08240544;-0.7192113;0.04763288,0.07618518;-0.7065443;-0.0506569,-0.07148305;0.002963221;-0.03579654,-0.1018457;-0.3754545;-0.01911763,-0.1217557;-0.7208066;0.03413163,-0.1255034;-0.7081304;-0.06428505,0.01792739;0.3988148;0.02426573,0;0;0,0.01029672;0.1991913;0.01472379,0.02677462;0.4984921;0.0258321,0.1287995;0.3666761;-0.01884672,0.1963128;0.09519225;-0.007078709,0.2276106;-0.1754354;-0.07174043,-0.09114526;0.3589316;0.01319606,-0.2802048;0.2161262;-0.1360122,-0.4768258;0.1112656;-0.3055541,0.0666758;0.004875168;-0.04393825,0.08442299;-0.3707388;0.01082638,0.08812351;-0.7099351;0.09703649,0.0921182;-0.7615291;0.03936096,-0.07434125;0.001073404;-0.02953348,-0.1088715;-0.3741082;0.0199277,-0.1204954;-0.7147218;0.09959738,-0.1283671;-0.7030413;0.001605362,0.02153611;0.3986392;0.02443041,26.66714
+0;0;0,0.008968897;0.1992237;0.01514871,0.02259485;0.4987033;0.02497855,0.1292754;0.3680831;-0.008248663,0.1927045;0.09615019;0.01246983,0.2406588;-0.1774838;-0.02252793,-0.09844743;0.3708144;0.01572885,-0.3593503;0.3302569;-0.07746339,-0.5986934;0.3371424;-0.2226099,0.06922555;0.004543555;-0.03983941,0.08399646;-0.3739971;-0.01002621,0.08240544;-0.7192113;0.04763288,0.07618518;-0.7065443;-0.0506569,-0.07148305;0.002963221;-0.03579654,-0.1018457;-0.3754545;-0.01911763,-0.1217557;-0.7208066;0.03413163,-0.1255034;-0.7081304;-0.06428505,0.01792739;0.3988148;0.02426573,0;0;0,0.009371062;0.1992375;0.01471747,0.02517827;0.4985753;0.02583434,0.1279611;0.3669225;-0.01768482,0.1961383;0.0956215;-0.005534365,0.227856;-0.1751904;-0.06921261,-0.09232993;0.3588262;0.01203128,-0.2704626;0.2056236;-0.1402767,-0.4509149;0.09265292;-0.3221409,0.06758238;0.005027696;-0.04251287,0.08323818;-0.3709089;0.01065265,0.08659422;-0.7100608;0.09705122,0.09108177;-0.7614608;0.03913826,-0.07384911;0.0009370346;-0.03074786,-0.1098526;-0.3739642;0.01977767,-0.1216547;-0.7145734;0.09943964,-0.1287927;-0.7028984;0.001392484,0.02017047;0.3987111;0.02439442,26.68923
+0;0;0,0.00884441;0.1992066;0.01544376,0.02216038;0.4986817;0.02583763,0.1290732;0.368305;-0.007403616,0.1931046;0.09650162;0.01316117,0.2410519;-0.1770459;-0.02251584,-0.09866249;0.3705648;0.01565779,-0.3568109;0.3312112;-0.08539014,-0.5928284;0.3351103;-0.2359907,0.06926436;0.004489203;-0.03977807,0.08430566;-0.3740386;-0.009938097,0.08294734;-0.7192001;0.04804199,0.07695902;-0.7065134;-0.05026565,-0.07149493;0.003011992;-0.03576873,-0.1016761;-0.3753847;-0.01830344,-0.1208335;-0.7207862;0.03490185,-0.1243524;-0.7080831;-0.063528,0.01760241;0.3987898;0.02492172,0;0;0,0.009371062;0.1992375;0.01471747,0.02517827;0.4985753;0.02583434,0.1279611;0.3669225;-0.01768482,0.1961383;0.0956215;-0.005534365,0.227856;-0.1751904;-0.06921261,-0.09232993;0.3588262;0.01203128,-0.2704626;0.2056236;-0.1402767,-0.4509149;0.09265292;-0.3221409,0.06758238;0.005027696;-0.04251287,0.08323818;-0.3709089;0.01065265,0.08659422;-0.7100608;0.09705122,0.09108177;-0.7614608;0.03913826,-0.07384911;0.0009370346;-0.03074786,-0.1098526;-0.3739642;0.01977767,-0.1216547;-0.7145734;0.09943964,-0.1287927;-0.7028984;0.001392484,0.02017047;0.3987111;0.02439442,26.70061
+0;0;0,0.00884441;0.1992066;0.01544376,0.02216038;0.4986817;0.02583763,0.1290732;0.368305;-0.007403616,0.1931046;0.09650162;0.01316117,0.2410519;-0.1770459;-0.02251584,-0.09866249;0.3705648;0.01565779,-0.3568109;0.3312112;-0.08539014,-0.5928284;0.3351103;-0.2359907,0.06926436;0.004489203;-0.03977807,0.08430566;-0.3740386;-0.009938097,0.08294734;-0.7192001;0.04804199,0.07695902;-0.7065134;-0.05026565,-0.07149493;0.003011992;-0.03576873,-0.1016761;-0.3753847;-0.01830344,-0.1208335;-0.7207862;0.03490185,-0.1243524;-0.7080831;-0.063528,0.01760241;0.3987898;0.02492172,0;0;0,0.008404968;0.1992755;0.01478664,0.02271238;0.4986692;0.02641423,0.1266016;0.3674906;-0.01656721,0.1956991;0.09644699;-0.003883889,0.2291824;-0.1748938;-0.0643243,-0.09380861;0.3585453;0.01082193,-0.2681445;0.2023741;-0.142858,-0.4480971;0.08837093;-0.3245731,0.06792299;0.00532597;-0.04192972,0.08197851;-0.3707935;0.0103824,0.08524264;-0.7100345;0.09643424,0.08964638;-0.7611574;0.03812741,-0.07356961;0.0007214159;-0.03141642,-0.1108768;-0.3739767;0.0196669,-0.1225638;-0.7146457;0.09908968,-0.12904;-0.7029495;0.0009926185,0.01838151;0.3987764;0.02478041,26.72274
+0;0;0,0.00884441;0.1992066;0.01544376,0.02216038;0.4986817;0.02583763,0.1290732;0.368305;-0.007403616,0.1931046;0.09650162;0.01316117,0.2410519;-0.1770459;-0.02251584,-0.09866249;0.3705648;0.01565779,-0.3568109;0.3312112;-0.08539014,-0.5928284;0.3351103;-0.2359907,0.06926436;0.004489203;-0.03977807,0.08430566;-0.3740386;-0.009938097,0.08294734;-0.7192001;0.04804199,0.07695902;-0.7065134;-0.05026565,-0.07149493;0.003011992;-0.03576873,-0.1016761;-0.3753847;-0.01830344,-0.1208335;-0.7207862;0.03490185,-0.1243524;-0.7080831;-0.063528,0.01760241;0.3987898;0.02492172,0;0;0,0.008404968;0.1992755;0.01478664,0.02271238;0.4986692;0.02641423,0.1266016;0.3674906;-0.01656721,0.1956991;0.09644699;-0.003883889,0.2291824;-0.1748938;-0.0643243,-0.09380861;0.3585453;0.01082193,-0.2681445;0.2023741;-0.142858,-0.4480971;0.08837093;-0.3245731,0.06792299;0.00532597;-0.04192972,0.08197851;-0.3707935;0.0103824,0.08524264;-0.7100345;0.09643424,0.08964638;-0.7611574;0.03812741,-0.07356961;0.0007214159;-0.03141642,-0.1108768;-0.3739767;0.0196669,-0.1225638;-0.7146457;0.09908968,-0.12904;-0.7029495;0.0009926185,0.01838151;0.3987764;0.02478041,26.74499
+0;0;0,0.008814481;0.1991787;0.01581634,0.02190014;0.4986467;0.02671753,0.1290256;0.3682558;-0.006290764,0.1932021;0.09641927;0.01336356,0.2415819;-0.1770136;-0.02260631,-0.09868564;0.3702148;0.01554532,-0.3537786;0.3319015;-0.09335675,-0.5846322;0.3289033;-0.2517791,0.06940819;0.004451421;-0.03953084,0.08458332;-0.3740621;-0.009576781,0.08348087;-0.71927;0.04813139,0.07783444;-0.70655;-0.05020233,-0.07143277;0.003049595;-0.03588954,-0.1009992;-0.375356;-0.0175861,-0.1200122;-0.7207638;0.03563031,-0.1231869;-0.7080436;-0.06281426,0.01743616;0.3987525;0.02561137,0;0;0,0.00810071;0.1992803;0.01489108,0.02183342;0.4986953;0.02664274,0.1264289;0.3678732;-0.01524223,0.1969507;0.09728786;-0.0007420722,0.2312605;-0.1740148;-0.0608894,-0.09414048;0.3579163;0.01002165,-0.2640048;0.1994929;-0.1463374,-0.4254999;0.07455369;-0.3379347,0.06824165;0.005437448;-0.04139459,0.08168706;-0.370784;0.01034206,0.08493652;-0.7100482;0.0963027,0.08907552;-0.7610279;0.03777782,-0.07337128;0.0006597477;-0.03187823,-0.1111068;-0.3738743;0.02008616,-0.1228137;-0.7146149;0.09919859,-0.1286473;-0.7029152;0.001060583,0.01768483;0.3987951;0.02498905,26.76732
+0;0;0,0.008814481;0.1991787;0.01581634,0.02190014;0.4986467;0.02671753,0.1290256;0.3682558;-0.006290764,0.1932021;0.09641927;0.01336356,0.2415819;-0.1770136;-0.02260631,-0.09868564;0.3702148;0.01554532,-0.3537786;0.3319015;-0.09335675,-0.5846322;0.3289033;-0.2517791,0.06940819;0.004451421;-0.03953084,0.08458332;-0.3740621;-0.009576781,0.08348087;-0.71927;0.04813139,0.07783444;-0.70655;-0.05020233,-0.07143277;0.003049595;-0.03588954,-0.1009992;-0.375356;-0.0175861,-0.1200122;-0.7207638;0.03563031,-0.1231869;-0.7080436;-0.06281426,0.01743616;0.3987525;0.02561137,0;0;0,0.00810071;0.1992803;0.01489108,0.02183342;0.4986953;0.02664274,0.1264289;0.3678732;-0.01524223,0.1969507;0.09728786;-0.0007420722,0.2312605;-0.1740148;-0.0608894,-0.09414048;0.3579163;0.01002165,-0.2640048;0.1994929;-0.1463374,-0.4254999;0.07455369;-0.3379347,0.06824165;0.005437448;-0.04139459,0.08168706;-0.370784;0.01034206,0.08493652;-0.7100482;0.0963027,0.08907552;-0.7610279;0.03777782,-0.07337128;0.0006597477;-0.03187823,-0.1111068;-0.3738743;0.02008616,-0.1228137;-0.7146149;0.09919859,-0.1286473;-0.7029152;0.001060583,0.01768483;0.3987951;0.02498905,26.77861
+0;0;0,0.008814481;0.1991787;0.01581634,0.02190014;0.4986467;0.02671753,0.1290256;0.3682558;-0.006290764,0.1932021;0.09641927;0.01336356,0.2415819;-0.1770136;-0.02260631,-0.09868564;0.3702148;0.01554532,-0.3537786;0.3319015;-0.09335675,-0.5846322;0.3289033;-0.2517791,0.06940819;0.004451421;-0.03953084,0.08458332;-0.3740621;-0.009576781,0.08348087;-0.71927;0.04813139,0.07783444;-0.70655;-0.05020233,-0.07143277;0.003049595;-0.03588954,-0.1009992;-0.375356;-0.0175861,-0.1200122;-0.7207638;0.03563031,-0.1231869;-0.7080436;-0.06281426,0.01743616;0.3987525;0.02561137,0;0;0,0.00792284;0.1992801;0.01498957,0.02104747;0.4987163;0.02685717,0.1262013;0.3683554;-0.01436127,0.1979166;0.09817183;0.001693405,0.2334817;-0.1735609;-0.05572116,-0.09470427;0.3580672;0.009608883,-0.2583221;0.1974983;-0.1511606,-0.4243477;0.07239716;-0.3387378,0.06858842;0.005634509;-0.04079069,0.08173297;-0.3707037;0.01016817,0.08482655;-0.7100334;0.09587543,0.08890538;-0.7608613;0.03713682,-0.0732104;0.0006103467;-0.03224694,-0.1108649;-0.3738677;0.02017769,-0.1228373;-0.714649;0.09907475,-0.1282854;-0.7029448;0.0009137392,0.01708429;0.3988084;0.02521264,26.78971
+0;0;0,0.008837971;0.1991528;0.01612674,0.02191129;0.4986082;0.02738488,0.12917;0.3683781;-0.005460795,0.1933853;0.09650686;0.01357682,0.2420457;-0.1768261;-0.02277203,-0.09846433;0.3698696;0.01474128,-0.3501766;0.3314779;-0.1017362,-0.5768598;0.3256874;-0.2659957,0.06949451;0.004477662;-0.03937593,0.08465218;-0.3740593;-0.009710431,0.0839133;-0.7191696;0.04858467,0.07875064;-0.7064375;-0.04977776,-0.07140191;0.003012182;-0.03595406,-0.1006879;-0.3753871;-0.0170779,-0.1193024;-0.7208017;0.03623461,-0.1219935;-0.7080728;-0.0622259,0.01745633;0.398715;0.02615776,0;0;0,0.00792284;0.1992801;0.01498957,0.02104747;0.4987163;0.02685717,0.1262013;0.3683554;-0.01436127,0.1979166;0.09817183;0.001693405,0.2334817;-0.1735609;-0.05572116,-0.09470427;0.3580672;0.009608883,-0.2583221;0.1974983;-0.1511606,-0.4243477;0.07239716;-0.3387378,0.06858842;0.005634509;-0.04079069,0.08173297;-0.3707037;0.01016817,0.08482655;-0.7100334;0.09587543,0.08890538;-0.7608613;0.03713682,-0.0732104;0.0006103467;-0.03224694,-0.1108649;-0.3738677;0.02017769,-0.1228373;-0.714649;0.09907475,-0.1282854;-0.7029448;0.0009137392,0.01708429;0.3988084;0.02521264,26.801
+0;0;0,0.008837971;0.1991528;0.01612674,0.02191129;0.4986082;0.02738488,0.12917;0.3683781;-0.005460795,0.1933853;0.09650686;0.01357682,0.2420457;-0.1768261;-0.02277203,-0.09846433;0.3698696;0.01474128,-0.3501766;0.3314779;-0.1017362,-0.5768598;0.3256874;-0.2659957,0.06949451;0.004477662;-0.03937593,0.08465218;-0.3740593;-0.009710431,0.0839133;-0.7191696;0.04858467,0.07875064;-0.7064375;-0.04977776,-0.07140191;0.003012182;-0.03595406,-0.1006879;-0.3753871;-0.0170779,-0.1193024;-0.7208017;0.03623461,-0.1219935;-0.7080728;-0.0622259,0.01745633;0.398715;0.02615776,0;0;0,0.007758786;0.1992801;0.01507485,0.0203209;0.4987357;0.02702804,0.1257955;0.368426;-0.0138062,0.1984226;0.09862813;0.004480269,0.2355013;-0.1732029;-0.05149364,-0.09497786;0.3578139;0.008522239,-0.2522753;0.1925316;-0.1537715,-0.4121909;0.06321365;-0.3437817,0.06886382;0.005814188;-0.0402985,0.08164709;-0.3705693;0.01041685,0.08489081;-0.7100126;0.09566793,0.08890742;-0.7609766;0.03711284,-0.07310207;0.0005358261;-0.03249307,-0.1107367;-0.3739126;0.02015677,-0.1225964;-0.7147667;0.09875621,-0.1275366;-0.703053;0.0005665645,0.01652853;0.3988209;0.02539682,26.82327
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.007758786;0.1992801;0.01507485,0.0203209;0.4987357;0.02702804,0.1257955;0.368426;-0.0138062,0.1984226;0.09862813;0.004480269,0.2355013;-0.1732029;-0.05149364,-0.09497786;0.3578139;0.008522239,-0.2522753;0.1925316;-0.1537715,-0.4121909;0.06321365;-0.3437817,0.06886382;0.005814188;-0.0402985,0.08164709;-0.3705693;0.01041685,0.08489081;-0.7100126;0.09566793,0.08890742;-0.7609766;0.03711284,-0.07310207;0.0005358261;-0.03249307,-0.1107367;-0.3739126;0.02015677,-0.1225964;-0.7147667;0.09875621,-0.1275366;-0.703053;0.0005665645,0.01652853;0.3988209;0.02539682,26.83444
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.007758786;0.1992801;0.01507485,0.0203209;0.4987357;0.02702804,0.1257955;0.368426;-0.0138062,0.1984226;0.09862813;0.004480269,0.2355013;-0.1732029;-0.05149364,-0.09497786;0.3578139;0.008522239,-0.2522753;0.1925316;-0.1537715,-0.4121909;0.06321365;-0.3437817,0.06886382;0.005814188;-0.0402985,0.08164709;-0.3705693;0.01041685,0.08489081;-0.7100126;0.09566793,0.08890742;-0.7609766;0.03711284,-0.07310207;0.0005358261;-0.03249307,-0.1107367;-0.3739126;0.02015677,-0.1225964;-0.7147667;0.09875621,-0.1275366;-0.703053;0.0005665645,0.01652853;0.3988209;0.02539682,26.84558
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.007405752;0.1993132;0.01481195,0.01969607;0.4987975;0.02626353,0.1257602;0.3689905;-0.01299509,0.1992557;0.09946051;0.00576631,0.2365765;-0.1728809;-0.04749988,-0.09566937;0.3580426;0.007909331,-0.2464539;0.1886623;-0.1563293,-0.3895312;0.0446991;-0.3492113,0.06947898;0.006166451;-0.03917456,0.08090322;-0.3704583;0.01005211,0.08399501;-0.7099514;0.09511018,0.08805602;-0.7608415;0.03645614,-0.07279652;0.0003113904;-0.03317484,-0.1110255;-0.3740061;0.01997522,-0.1232436;-0.7148182;0.09870147,-0.1276781;-0.7031339;0.0004931614,0.01588545;0.3988798;0.02487532,26.85707
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.007405752;0.1993132;0.01481195,0.01969607;0.4987975;0.02626353,0.1257602;0.3689905;-0.01299509,0.1992557;0.09946051;0.00576631,0.2365765;-0.1728809;-0.04749988,-0.09566937;0.3580426;0.007909331,-0.2464539;0.1886623;-0.1563293,-0.3895312;0.0446991;-0.3492113,0.06947898;0.006166451;-0.03917456,0.08090322;-0.3704583;0.01005211,0.08399501;-0.7099514;0.09511018,0.08805602;-0.7608415;0.03645614,-0.07279652;0.0003113904;-0.03317484,-0.1110255;-0.3740061;0.01997522,-0.1232436;-0.7148182;0.09870147,-0.1276781;-0.7031339;0.0004931614,0.01588545;0.3988798;0.02487532,26.87906
+0;0;0,0.008523692;0.1991406;0.01644346,0.02077912;0.4985937;0.02866927,0.1282087;0.3683974;-0.004973046,0.1925485;0.09658474;0.01447527,0.2412451;-0.1766341;-0.02267466,-0.09905575;0.3696392;0.01379165,-0.3445819;0.3285261;-0.1143748,-0.5649258;0.3193228;-0.2868968,0.06958961;0.004512099;-0.03920365,0.08435691;-0.3740601;-0.009792963,0.08390636;-0.7191446;0.04865737,0.0791655;-0.7063802;-0.04973195,-0.0712678;0.002932897;-0.03622567,-0.1023663;-0.375274;-0.0164163,-0.119041;-0.720816;0.03671267,-0.1213129;-0.7080525;-0.06176446,0.01661161;0.398693;0.02709365,0;0;0,0.006992211;0.1993397;0.01465638,0.01891175;0.4988502;0.02577051,0.1254049;0.3689829;-0.01211189,0.1996336;0.09968522;0.00709302,0.2376224;-0.1730474;-0.04363921,-0.0959684;0.3572902;0.006586513,-0.238521;0.1822206;-0.1590317,-0.3823257;0.03858297;-0.3516153,0.0697196;0.006434885;-0.03870104,0.07997936;-0.3702924;0.009995025,0.0830677;-0.7098324;0.09486537,0.08717236;-0.7606924;0.03617278,-0.0724422;-5.801421E-06;-0.033943,-0.1115968;-0.3740164;0.02067401,-0.1240044;-0.7149405;0.09888349,-0.1276904;-0.703272;0.0006471872,0.01513411;0.3989291;0.024543,26.89058
+0;0;0,0.008523692;0.1991406;0.01644346,0.02077912;0.4985937;0.02866927,0.1282087;0.3683974;-0.004973046,0.1925485;0.09658474;0.01447527,0.2412451;-0.1766341;-0.02267466,-0.09905575;0.3696392;0.01379165,-0.3445819;0.3285261;-0.1143748,-0.5649258;0.3193228;-0.2868968,0.06958961;0.004512099;-0.03920365,0.08435691;-0.3740601;-0.009792963,0.08390636;-0.7191446;0.04865737,0.0791655;-0.7063802;-0.04973195,-0.0712678;0.002932897;-0.03622567,-0.1023663;-0.375274;-0.0164163,-0.119041;-0.720816;0.03671267,-0.1213129;-0.7080525;-0.06176446,0.01661161;0.398693;0.02709365,0;0;0,0.006992211;0.1993397;0.01465638,0.01891175;0.4988502;0.02577051,0.1254049;0.3689829;-0.01211189,0.1996336;0.09968522;0.00709302,0.2376224;-0.1730474;-0.04363921,-0.0959684;0.3572902;0.006586513,-0.238521;0.1822206;-0.1590317,-0.3823257;0.03858297;-0.3516153,0.0697196;0.006434885;-0.03870104,0.07997936;-0.3702924;0.009995025,0.0830677;-0.7098324;0.09486537,0.08717236;-0.7606924;0.03617278,-0.0724422;-5.801421E-06;-0.033943,-0.1115968;-0.3740164;0.02067401,-0.1240044;-0.7149405;0.09888349,-0.1276904;-0.703272;0.0006471872,0.01513411;0.3989291;0.024543,26.91253
+0;0;0,0.008523692;0.1991406;0.01644346,0.02077912;0.4985937;0.02866927,0.1282087;0.3683974;-0.004973046,0.1925485;0.09658474;0.01447527,0.2412451;-0.1766341;-0.02267466,-0.09905575;0.3696392;0.01379165,-0.3445819;0.3285261;-0.1143748,-0.5649258;0.3193228;-0.2868968,0.06958961;0.004512099;-0.03920365,0.08435691;-0.3740601;-0.009792963,0.08390636;-0.7191446;0.04865737,0.0791655;-0.7063802;-0.04973195,-0.0712678;0.002932897;-0.03622567,-0.1023663;-0.375274;-0.0164163,-0.119041;-0.720816;0.03671267,-0.1213129;-0.7080525;-0.06176446,0.01661161;0.398693;0.02709365,0;0;0,0.006806313;0.1993385;0.01475921,0.01784211;0.4988725;0.02614181,0.1248822;0.3689836;-0.01124401,0.1997347;0.09999844;0.009829976,0.2380675;-0.1729158;-0.03965128,-0.09646479;0.357125;0.005970402,-0.2303024;0.1738272;-0.1580095,-0.3726398;0.0317935;-0.3528594,0.07008843;0.006559564;-0.03800769,0.08002887;-0.3702618;0.0100224,0.08304439;-0.7098837;0.09456734,0.08712557;-0.7608292;0.03599108,-0.0721717;-3.837216E-05;-0.0345144,-0.1112009;-0.3739719;0.02071652,-0.1238217;-0.7149817;0.09851774,-0.127066;-0.7032968;0.0002628192,0.01442217;0.3989397;0.02482816,26.92387
+0;0;0,0.008411995;0.1991321;0.0166025,0.02036962;0.4985753;0.02937889,0.1278689;0.3678838;-0.004132805,0.1929587;0.09618902;0.0144478,0.2418277;-0.1769262;-0.02323354,-0.09919359;0.3693616;0.01345542,-0.3406046;0.3267117;-0.1218284,-0.557075;0.3166867;-0.2991418,0.06964614;0.004496621;-0.03910493,0.08417851;-0.3740791;-0.009623155,0.08376304;-0.7191333;0.04900697,0.07940192;-0.7063613;-0.04940125,-0.07122715;0.002912838;-0.03630713,-0.1026518;-0.3752487;-0.01615056,-0.1190463;-0.7208163;0.03689961,-0.1209383;-0.7080406;-0.06158767,0.01630947;0.3986737;0.02759216,0;0;0,0.006806313;0.1993385;0.01475921,0.01784211;0.4988725;0.02614181,0.1248822;0.3689836;-0.01124401,0.1997347;0.09999844;0.009829976,0.2380675;-0.1729158;-0.03965128,-0.09646479;0.357125;0.005970402,-0.2303024;0.1738272;-0.1580095,-0.3726398;0.0317935;-0.3528594,0.07008843;0.006559564;-0.03800769,0.08002887;-0.3702618;0.0100224,0.08304439;-0.7098837;0.09456734,0.08712557;-0.7608292;0.03599108,-0.0721717;-3.837216E-05;-0.0345144,-0.1112009;-0.3739719;0.02071652,-0.1238217;-0.7149817;0.09851774,-0.127066;-0.7032968;0.0002628192,0.01442217;0.3989397;0.02482816,26.94609
+0;0;0,0.008411995;0.1991321;0.0166025,0.02036962;0.4985753;0.02937889,0.1278689;0.3678838;-0.004132805,0.1929587;0.09618902;0.0144478,0.2418277;-0.1769262;-0.02323354,-0.09919359;0.3693616;0.01345542,-0.3406046;0.3267117;-0.1218284,-0.557075;0.3166867;-0.2991418,0.06964614;0.004496621;-0.03910493,0.08417851;-0.3740791;-0.009623155,0.08376304;-0.7191333;0.04900697,0.07940192;-0.7063613;-0.04940125,-0.07122715;0.002912838;-0.03630713,-0.1026518;-0.3752487;-0.01615056,-0.1190463;-0.7208163;0.03689961,-0.1209383;-0.7080406;-0.06158767,0.01630947;0.3986737;0.02759216,0;0;0,0.006549831;0.1993349;0.01492331,0.01634104;0.4989017;0.02655178,0.1238516;0.3692238;-0.01096855,0.1990745;0.100533;0.01241462,0.2379244;-0.1724235;-0.03642622,-0.09742182;0.3570639;0.005862718,-0.2226642;0.1672842;-0.1575327,-0.3587632;0.01592581;-0.3498024,0.0701647;0.006634869;-0.03785357,0.08012332;-0.3702207;0.00990345,0.08331824;-0.7098477;0.09442148,0.08718698;-0.7607986;0.03583827,-0.0720852;-2.088293E-05;-0.03469472,-0.1110395;-0.3739927;0.02032936,-0.1236628;-0.7149531;0.09834628,-0.1268999;-0.7032585;8.928776E-05,0.01335657;0.3989556;0.02518196,26.9684
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.00657264;0.1993364;0.0148932,0.01651567;0.4989083;0.026216,0.1239761;0.3692876;-0.01103107,0.1992779;0.1008017;0.01436487,0.2381201;-0.1726154;-0.03183442,-0.09578107;0.354176;0.003359886,-0.2159285;0.1583092;-0.1566426,-0.3508722;0.004760131;-0.3479875,0.0703201;0.006674482;-0.03755708,0.08014828;-0.3701907;0.01015145,0.08340468;-0.709893;0.09436348,0.08725376;-0.7609287;0.03589626,-0.0717953;-0.0003778349;-0.0352887,-0.1107417;-0.3742464;0.02043808,-0.1236565;-0.7152419;0.09825369,-0.126115;-0.7035497;-2.540648E-05,0.0134252;0.3989636;0.02499455,26.99109
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.00657264;0.1993364;0.0148932,0.01651567;0.4989083;0.026216,0.1239761;0.3692876;-0.01103107,0.1992779;0.1008017;0.01436487,0.2381201;-0.1726154;-0.03183442,-0.09578107;0.354176;0.003359886,-0.2159285;0.1583092;-0.1566426,-0.3508722;0.004760131;-0.3479875,0.0703201;0.006674482;-0.03755708,0.08014828;-0.3701907;0.01015145,0.08340468;-0.709893;0.09436348,0.08725376;-0.7609287;0.03589626,-0.0717953;-0.0003778349;-0.0352887,-0.1107417;-0.3742464;0.02043808,-0.1236565;-0.7152419;0.09825369,-0.126115;-0.7035497;-2.540648E-05,0.0134252;0.3989636;0.02499455,27.00207
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.00657264;0.1993364;0.0148932,0.01651567;0.4989083;0.026216,0.1239761;0.3692876;-0.01103107,0.1992779;0.1008017;0.01436487,0.2381201;-0.1726154;-0.03183442,-0.09578107;0.354176;0.003359886,-0.2159285;0.1583092;-0.1566426,-0.3508722;0.004760131;-0.3479875,0.0703201;0.006674482;-0.03755708,0.08014828;-0.3701907;0.01015145,0.08340468;-0.709893;0.09436348,0.08725376;-0.7609287;0.03589626,-0.0717953;-0.0003778349;-0.0352887,-0.1107417;-0.3742464;0.02043808,-0.1236565;-0.7152419;0.09825369,-0.126115;-0.7035497;-2.540648E-05,0.0134252;0.3989636;0.02499455,27.01319
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.006058353;0.1993435;0.01501567,0.0150051;0.4989287;0.02684011,0.1231704;0.3699213;-0.01029091,0.199084;0.1016804;0.01586186,0.2382124;-0.1716976;-0.03032691,-0.09633278;0.3534847;0.002625203,-0.2105699;0.1514896;-0.1540523,-0.34201;-0.00917913;-0.3419594,0.07052128;0.006832139;-0.0371493,0.07956523;-0.3700944;0.01022802,0.08276382;-0.7098379;0.09427595,0.08646788;-0.7609438;0.03589683,-0.07153696;-0.0005356555;-0.03580749,-0.1111173;-0.3742146;0.02073855,-0.1241396;-0.7152085;0.09854328,-0.126129;-0.703505;0.000251472,0.01234853;0.3989742;0.02540846,27.02486
+0;0;0,0.008324474;0.1990914;0.01712699,0.02044935;0.4984923;0.03069105,0.1282748;0.3685888;-0.002317216,0.1929369;0.09668931;0.01469739,0.2429166;-0.176131;-0.02365745,-0.0988839;0.3690458;0.01252273,-0.3331612;0.3161512;-0.131409,-0.5396619;0.3052497;-0.3201908,0.06986541;0.004418123;-0.03872084,0.0849077;-0.3741648;-0.009588441,0.08429945;-0.7191525;0.04942977,0.09523705;-0.7661968;-0.01337574,-0.07097844;0.00301421;-0.03678281,-0.1014452;-0.3751506;-0.01526169,-0.1176184;-0.7207685;0.03752786,-0.1187155;-0.7079601;-0.06097719,0.01629455;0.3985992;0.02866325,0;0;0,0.006058353;0.1993435;0.01501567,0.0150051;0.4989287;0.02684011,0.1231704;0.3699213;-0.01029091,0.199084;0.1016804;0.01586186,0.2382124;-0.1716976;-0.03032691,-0.09633278;0.3534847;0.002625203,-0.2105699;0.1514896;-0.1540523,-0.34201;-0.00917913;-0.3419594,0.07052128;0.006832139;-0.0371493,0.07956523;-0.3700944;0.01022802,0.08276382;-0.7098379;0.09427595,0.08646788;-0.7609438;0.03589683,-0.07153696;-0.0005356555;-0.03580749,-0.1111173;-0.3742146;0.02073855,-0.1241396;-0.7152085;0.09854328,-0.126129;-0.703505;0.000251472,0.01234853;0.3989742;0.02540846,27.04663
+0;0;0,0.008324474;0.1990914;0.01712699,0.02044935;0.4984923;0.03069105,0.1282748;0.3685888;-0.002317216,0.1929369;0.09668931;0.01469739,0.2429166;-0.176131;-0.02365745,-0.0988839;0.3690458;0.01252273,-0.3331612;0.3161512;-0.131409,-0.5396619;0.3052497;-0.3201908,0.06986541;0.004418123;-0.03872084,0.0849077;-0.3741648;-0.009588441,0.08429945;-0.7191525;0.04942977,0.09523705;-0.7661968;-0.01337574,-0.07097844;0.00301421;-0.03678281,-0.1014452;-0.3751506;-0.01526169,-0.1176184;-0.7207685;0.03752786,-0.1187155;-0.7079601;-0.06097719,0.01629455;0.3985992;0.02866325,0;0;0,0.005782395;0.1993482;0.01506164,0.01404167;0.4989474;0.02701206,0.1228401;0.3701131;-0.009132424,0.1988865;0.101942;0.01734764,0.2382641;-0.1715647;-0.02785762,-0.09721245;0.3539379;0.002757747,-0.203248;0.136735;-0.1385906,-0.3317418;-0.02123712;-0.3307732,0.07066865;0.006821464;-0.03687016,0.07950305;-0.3701004;0.01058314,0.08280139;-0.7099278;0.09428792,0.08671781;-0.7610654;0.03596674,-0.07135035;-0.0004696479;-0.03617882,-0.1111142;-0.3740903;0.02062291,-0.1242375;-0.7150661;0.09849036,-0.1259418;-0.7033587;0.0001924634,0.01164986;0.3989867;0.02555255,27.05808
+0;0;0,0.008324474;0.1990914;0.01712699,0.02044935;0.4984923;0.03069105,0.1282748;0.3685888;-0.002317216,0.1929369;0.09668931;0.01469739,0.2429166;-0.176131;-0.02365745,-0.0988839;0.3690458;0.01252273,-0.3331612;0.3161512;-0.131409,-0.5396619;0.3052497;-0.3201908,0.06986541;0.004418123;-0.03872084,0.0849077;-0.3741648;-0.009588441,0.08429945;-0.7191525;0.04942977,0.09523705;-0.7661968;-0.01337574,-0.07097844;0.00301421;-0.03678281,-0.1014452;-0.3751506;-0.01526169,-0.1176184;-0.7207685;0.03752786,-0.1187155;-0.7079601;-0.06097719,0.01629455;0.3985992;0.02866325,0;0;0,0.005782395;0.1993482;0.01506164,0.01404167;0.4989474;0.02701206,0.1228401;0.3701131;-0.009132424,0.1988865;0.101942;0.01734764,0.2382641;-0.1715647;-0.02785762,-0.09721245;0.3539379;0.002757747,-0.203248;0.136735;-0.1385906,-0.3317418;-0.02123712;-0.3307732,0.07066865;0.006821464;-0.03687016,0.07950305;-0.3701004;0.01058314,0.08280139;-0.7099278;0.09428792,0.08671781;-0.7610654;0.03596674,-0.07135035;-0.0004696479;-0.03617882,-0.1111142;-0.3740903;0.02062291,-0.1242375;-0.7150661;0.09849036,-0.1259418;-0.7033587;0.0001924634,0.01164986;0.3989867;0.02555255,27.069
+0;0;0,0.008338833;0.1990665;0.01740703,0.02060412;0.4984332;0.03159777,0.1284764;0.3685631;-0.001238132,0.1932236;0.09661639;0.01466149,0.2431759;-0.1761773;-0.02391769,-0.09848702;0.3684997;0.01194824,-0.3293165;0.3114751;-0.1359232,-0.5320305;0.301327;-0.3288067,0.06997531;0.00433738;-0.03853107,0.08463211;-0.3742291;-0.008990765,0.08405611;-0.7192655;0.04974228,0.0809923;-0.7064541;-0.04872176,-0.07088203;0.003049572;-0.03696536,-0.101816;-0.3750794;-0.01548042,-0.1173444;-0.7207028;0.03746607,-0.1179505;-0.7078789;-0.06104594,0.01638008;0.3985478;0.02934523,0;0;0,0.005617794;0.1993456;0.01515868,0.01333658;0.498955;0.02720549,0.1224997;0.3705039;-0.008606449,0.1989365;0.1024422;0.0178574,0.237916;-0.1713159;-0.02615525,-0.09736456;0.3534033;0.002126187,-0.2011428;0.1329462;-0.1358185,-0.3230565;-0.03970307;-0.3194738,0.0707474;0.0067908;-0.03672452,0.07965858;-0.370127;0.01074727,0.08270922;-0.7100143;0.09421753,0.08676727;-0.7607261;0.03531799,-0.07119077;-0.000547831;-0.03649074,-0.1107972;-0.3741731;0.02039053,-0.1240713;-0.7150882;0.09849722,-0.1254321;-0.703375;0.0001928732,0.01110091;0.3989909;0.02572742,27.09166
+0;0;0,0.008338833;0.1990665;0.01740703,0.02060412;0.4984332;0.03159777,0.1284764;0.3685631;-0.001238132,0.1932236;0.09661639;0.01466149,0.2431759;-0.1761773;-0.02391769,-0.09848702;0.3684997;0.01194824,-0.3293165;0.3114751;-0.1359232,-0.5320305;0.301327;-0.3288067,0.06997531;0.00433738;-0.03853107,0.08463211;-0.3742291;-0.008990765,0.08405611;-0.7192655;0.04974228,0.0809923;-0.7064541;-0.04872176,-0.07088203;0.003049572;-0.03696536,-0.101816;-0.3750794;-0.01548042,-0.1173444;-0.7207028;0.03746607,-0.1179505;-0.7078789;-0.06104594,0.01638008;0.3985478;0.02934523,0;0;0,0.005345325;0.1993464;0.01524568,0.01223221;0.4989777;0.02723384,0.1219567;0.3709367;-0.008058762,0.1981847;0.1028722;0.01897359,0.2371355;-0.1708062;-0.02555658,-0.09840164;0.3538822;0.002405087,-0.1996091;0.1301215;-0.1320874,-0.3120641;-0.06084721;-0.3032155,0.07091907;0.006816661;-0.03638706,0.07960019;-0.3701302;0.01089643,0.08257257;-0.7100265;0.09433277,0.08597027;-0.7606667;0.03529368,-0.07076389;-0.0003687382;-0.03731402,-0.1107222;-0.3738385;0.02033726,-0.1238733;-0.7146899;0.09874244,-0.1252155;-0.7029923;0.000440754,0.01030398;0.3990067;0.02579016,27.11367
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.005345325;0.1993464;0.01524568,0.01223221;0.4989777;0.02723384,0.1219567;0.3709367;-0.008058762,0.1981847;0.1028722;0.01897359,0.2371355;-0.1708062;-0.02555658,-0.09840164;0.3538822;0.002405087,-0.1996091;0.1301215;-0.1320874,-0.3120641;-0.06084721;-0.3032155,0.07091907;0.006816661;-0.03638706,0.07960019;-0.3701302;0.01089643,0.08257257;-0.7100265;0.09433277,0.08597027;-0.7606667;0.03529368,-0.07076389;-0.0003687382;-0.03731402,-0.1107222;-0.3738385;0.02033726,-0.1238733;-0.7146899;0.09874244,-0.1252155;-0.7029923;0.000440754,0.01030398;0.3990067;0.02579016,27.1252
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.00522478;0.1993455;0.01529982,0.01189191;0.4989789;0.02735202,0.1216514;0.370965;-0.008033929,0.1978515;0.1029615;0.01967298,0.2370117;-0.1707375;-0.02454571,-0.09881896;0.3541927;0.002515819,-0.1956881;0.1245248;-0.1250342,-0.3028207;-0.07528235;-0.2893501,0.07107101;0.006828091;-0.03608722,0.07973915;-0.3701099;0.01126895,0.08263123;-0.7101288;0.09420729,0.08577307;-0.7598888;0.03397049,-0.07053167;-0.0003177457;-0.03775159,-0.1105919;-0.3737163;0.02028866,-0.1238165;-0.7145361;0.09881878,-0.1252045;-0.7028385;0.0005177334,0.01001608;0.3990071;0.02589529,27.14728
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.00522478;0.1993455;0.01529982,0.01189191;0.4989789;0.02735202,0.1216514;0.370965;-0.008033929,0.1978515;0.1029615;0.01967298,0.2370117;-0.1707375;-0.02454571,-0.09881896;0.3541927;0.002515819,-0.1956881;0.1245248;-0.1250342,-0.3028207;-0.07528235;-0.2893501,0.07107101;0.006828091;-0.03608722,0.07973915;-0.3701099;0.01126895,0.08263123;-0.7101288;0.09420729,0.08577307;-0.7598888;0.03397049,-0.07053167;-0.0003177457;-0.03775159,-0.1105919;-0.3737163;0.02028866,-0.1238165;-0.7145361;0.09881878,-0.1252045;-0.7028385;0.0005177334,0.01001608;0.3990071;0.02589529,27.15868
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.00522478;0.1993455;0.01529982,0.01189191;0.4989789;0.02735202,0.1216514;0.370965;-0.008033929,0.1978515;0.1029615;0.01967298,0.2370117;-0.1707375;-0.02454571,-0.09881896;0.3541927;0.002515819,-0.1956881;0.1245248;-0.1250342,-0.3028207;-0.07528235;-0.2893501,0.07107101;0.006828091;-0.03608722,0.07973915;-0.3701099;0.01126895,0.08263123;-0.7101288;0.09420729,0.08577307;-0.7598888;0.03397049,-0.07053167;-0.0003177457;-0.03775159,-0.1105919;-0.3737163;0.02028866,-0.1238165;-0.7145361;0.09881878,-0.1252045;-0.7028385;0.0005177334,0.01001608;0.3990071;0.02589529,27.16995
+0;0;0,0.008144894;0.1990217;0.01800066,0.01989739;0.4983492;0.03343815,0.1279665;0.368328;0.000358576,0.1929404;0.0964517;0.01653445,0.2431006;-0.1761148;-0.02335841,-0.09844411;0.3677257;0.01092973,-0.3221602;0.30632;-0.1458519,-0.5139796;0.2948489;-0.3495029,0.07027199;0.004323266;-0.03798891,0.08519324;-0.3742439;-0.008590279,0.084598;-0.7192216;0.05048584,0.08227533;-0.706381;-0.04800355,-0.07050784;0.003083008;-0.03767147,-0.1014591;-0.3749749;-0.01499479,-0.116267;-0.7205989;0.03815375,-0.116132;-0.7077399;-0.06036614,0.01585088;0.3984682;0.03071749,0;0;0,0.005009067;0.1993479;0.01533992,0.01132464;0.4989904;0.02734347,0.1212595;0.3711216;-0.007964194,0.1975461;0.103197;0.02026314,0.2367858;-0.1705129;-0.02381753,-0.09930351;0.3542884;0.002562916,-0.1930645;0.1198507;-0.1184654,-0.2988393;-0.08909705;-0.2719337,0.0711167;0.006872676;-0.03598863,0.07958038;-0.3700723;0.01134869,0.08237621;-0.7100995;0.09425665,0.08598805;-0.7596925;0.03382559,-0.07048605;-0.00037063;-0.03783621,-0.1105091;-0.3738274;0.01985428,-0.1241167;-0.7145416;0.09877602,-0.1255235;-0.7028388;0.0004742891,0.009572661;0.3990159;0.02591734,27.19192
+0;0;0,0.008144894;0.1990217;0.01800066,0.01989739;0.4983492;0.03343815,0.1279665;0.368328;0.000358576,0.1929404;0.0964517;0.01653445,0.2431006;-0.1761148;-0.02335841,-0.09844411;0.3677257;0.01092973,-0.3221602;0.30632;-0.1458519,-0.5139796;0.2948489;-0.3495029,0.07027199;0.004323266;-0.03798891,0.08519324;-0.3742439;-0.008590279,0.084598;-0.7192216;0.05048584,0.08227533;-0.706381;-0.04800355,-0.07050784;0.003083008;-0.03767147,-0.1014591;-0.3749749;-0.01499479,-0.116267;-0.7205989;0.03815375,-0.116132;-0.7077399;-0.06036614,0.01585088;0.3984682;0.03071749,0;0;0,0.004878474;0.1993497;0.01535955,0.01077818;0.4990048;0.02724715,0.120925;0.3711484;-0.007673703,0.1974873;0.1032981;0.02051185,0.2367415;-0.170406;-0.02359228,-0.09972361;0.3542516;0.002529947,-0.1922294;0.116825;-0.1135361,-0.2924028;-0.1059728;-0.2503806,0.07126784;0.006993804;-0.03566486,0.0797173;-0.369992;0.01134867,0.08275319;-0.7099859;0.09438454,0.08653179;-0.7585847;0.03267599,-0.07040267;-0.0004075308;-0.03799075,-0.1097934;-0.3738255;0.02038226,-0.1237776;-0.7146169;0.09890369,-0.1251117;-0.7029154;0.000601165,0.009134339;0.3990276;0.02587622,27.21416
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.004878474;0.1993497;0.01535955,0.01077818;0.4990048;0.02724715,0.120925;0.3711484;-0.007673703,0.1974873;0.1032981;0.02051185,0.2367415;-0.170406;-0.02359228,-0.09972361;0.3542516;0.002529947,-0.1922294;0.116825;-0.1135361,-0.2924028;-0.1059728;-0.2503806,0.07126784;0.006993804;-0.03566486,0.0797173;-0.369992;0.01134867,0.08275319;-0.7099859;0.09438454,0.08653179;-0.7585847;0.03267599,-0.07040267;-0.0004075308;-0.03799075,-0.1097934;-0.3738255;0.02038226,-0.1237776;-0.7146169;0.09890369,-0.1251117;-0.7029154;0.000601165,0.009134339;0.3990276;0.02587622,27.22557
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.004878474;0.1993497;0.01535955,0.01077818;0.4990048;0.02724715,0.120925;0.3711484;-0.007673703,0.1974873;0.1032981;0.02051185,0.2367415;-0.170406;-0.02359228,-0.09972361;0.3542516;0.002529947,-0.1922294;0.116825;-0.1135361,-0.2924028;-0.1059728;-0.2503806,0.07126784;0.006993804;-0.03566486,0.0797173;-0.369992;0.01134867,0.08275319;-0.7099859;0.09438454,0.08653179;-0.7585847;0.03267599,-0.07040267;-0.0004075308;-0.03799075,-0.1097934;-0.3738255;0.02038226,-0.1237776;-0.7146169;0.09890369,-0.1251117;-0.7029154;0.000601165,0.009134339;0.3990276;0.02587622,27.23657
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.004715519;0.1993525;0.015373,0.01043982;0.499013;0.0272085,0.1208095;0.3714196;-0.007274589,0.1977628;0.1036334;0.02045207,0.2371577;-0.170076;-0.02349336,-0.1001199;0.3545113;0.002458662,-0.1905138;0.1124401;-0.105386,-0.2890146;-0.1162014;-0.233529,0.07127149;0.007078582;-0.03564082,0.07977182;-0.3698525;0.01180083,0.08255149;-0.7098788;0.09471244,0.0866622;-0.7588407;0.03349047,-0.0703898;-0.0005023315;-0.03801346,-0.1097247;-0.373942;0.02025818,-0.1239936;-0.7147305;0.09874119,-0.1251847;-0.7030224;0.0004355907,0.0088297;0.399035;0.02585999,27.25908
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.004715519;0.1993525;0.015373,0.01043982;0.499013;0.0272085,0.1208095;0.3714196;-0.007274589,0.1977628;0.1036334;0.02045207,0.2371577;-0.170076;-0.02349336,-0.1001199;0.3545113;0.002458662,-0.1905138;0.1124401;-0.105386,-0.2890146;-0.1162014;-0.233529,0.07127149;0.007078582;-0.03564082,0.07977182;-0.3698525;0.01180083,0.08255149;-0.7098788;0.09471244,0.0866622;-0.7588407;0.03349047,-0.0703898;-0.0005023315;-0.03801346,-0.1097247;-0.373942;0.02025818,-0.1239936;-0.7147305;0.09874119,-0.1251847;-0.7030224;0.0004355907,0.0088297;0.399035;0.02585999,27.27023
+0;0;0,0.007918273;0.1989851;0.01849978,0.01903481;0.4982572;0.0354491,0.1271685;0.3679158;0.001600681,0.1923813;0.09609854;0.01780808,0.2424355;-0.176588;-0.02139146,-0.0985169;0.3670014;0.01016702,-0.3125734;0.3019795;-0.1582134,-0.494857;0.2900273;-0.3704158,0.07046978;0.004354909;-0.03761708,0.08480593;-0.3742352;-0.008223133,0.08431636;-0.719112;0.05144034,0.08257411;-0.7062631;-0.04706249,-0.07019239;0.003050068;-0.03825868,-0.1012345;-0.3749479;-0.01472289,-0.1159995;-0.720525;0.03874119,-0.1152875;-0.7076316;-0.05978222,0.0151981;0.3983847;0.03216667,0;0;0,0.004685818;0.1993539;0.01536494,0.01042136;0.4990164;0.02714708,0.1207856;0.3714338;-0.007316429,0.198046;0.1037444;0.0204904,0.2365724;-0.1700608;-0.02362816,-0.1002176;0.3546334;0.002508318,-0.1905011;0.1095169;-0.09832206,-0.2849527;-0.1248285;-0.2189917,0.07136128;0.007143328;-0.0354477,0.07986828;-0.3698206;0.01173127,0.0826375;-0.7098306;0.09471022,0.08631756;-0.7591723;0.03395363,-0.07036225;-0.0005265942;-0.0380641,-0.1093957;-0.3740298;0.02000301,-0.1239248;-0.7147362;0.09879391,-0.1251404;-0.7030281;0.0004886165,0.008801324;0.3990384;0.02581218,27.29271
+0;0;0,0.007918273;0.1989851;0.01849978,0.01903481;0.4982572;0.0354491,0.1271685;0.3679158;0.001600681,0.1923813;0.09609854;0.01780808,0.2424355;-0.176588;-0.02139146,-0.0985169;0.3670014;0.01016702,-0.3125734;0.3019795;-0.1582134,-0.494857;0.2900273;-0.3704158,0.07046978;0.004354909;-0.03761708,0.08480593;-0.3742352;-0.008223133,0.08431636;-0.719112;0.05144034,0.08257411;-0.7062631;-0.04706249,-0.07019239;0.003050068;-0.03825868,-0.1012345;-0.3749479;-0.01472289,-0.1159995;-0.720525;0.03874119,-0.1152875;-0.7076316;-0.05978222,0.0151981;0.3983847;0.03216667,0;0;0,0.004595902;0.1993572;0.01534844,0.01005551;0.4990336;0.02689221,0.1205644;0.37156;-0.007310733,0.1982035;0.1039733;0.02042964,0.2364431;-0.1698818;-0.02362844,-0.1005515;0.3546954;0.002433149,-0.1900971;0.1067046;-0.09181184,-0.2823339;-0.1328455;-0.2036516,0.07137594;0.007205016;-0.03540568,0.0799171;-0.369734;0.01196553,0.08261169;-0.7098222;0.09462601,0.0862273;-0.7592254;0.03394593,-0.07035421;-0.0005635836;-0.03807843,-0.1092689;-0.3740163;0.02039152,-0.1236884;-0.7148033;0.09885339,-0.1249073;-0.7030971;0.0005484894,0.008504348;0.3990533;0.025654,27.31472
+0;0;0,0.007918273;0.1989851;0.01849978,0.01903481;0.4982572;0.0354491,0.1271685;0.3679158;0.001600681,0.1923813;0.09609854;0.01780808,0.2424355;-0.176588;-0.02139146,-0.0985169;0.3670014;0.01016702,-0.3125734;0.3019795;-0.1582134,-0.494857;0.2900273;-0.3704158,0.07046978;0.004354909;-0.03761708,0.08480593;-0.3742352;-0.008223133,0.08431636;-0.719112;0.05144034,0.08257411;-0.7062631;-0.04706249,-0.07019239;0.003050068;-0.03825868,-0.1012345;-0.3749479;-0.01472289,-0.1159995;-0.720525;0.03874119,-0.1152875;-0.7076316;-0.05978222,0.0151981;0.3983847;0.03216667,0;0;0,0.004595902;0.1993572;0.01534844,0.01005551;0.4990336;0.02689221,0.1205644;0.37156;-0.007310733,0.1982035;0.1039733;0.02042964,0.2364431;-0.1698818;-0.02362844,-0.1005515;0.3546954;0.002433149,-0.1900971;0.1067046;-0.09181184,-0.2823339;-0.1328455;-0.2036516,0.07137594;0.007205016;-0.03540568,0.0799171;-0.369734;0.01196553,0.08261169;-0.7098222;0.09462601,0.0862273;-0.7592254;0.03394593,-0.07035421;-0.0005635836;-0.03807843,-0.1092689;-0.3740163;0.02039152,-0.1236884;-0.7148033;0.09885339,-0.1249073;-0.7030971;0.0005484894,0.008504348;0.3990533;0.025654,27.32641
+0;0;0,0.007826156;0.1989675;0.01872643,0.0187931;0.4982106;0.03625856,0.1270482;0.3680882;0.002320098,0.1926152;0.09641176;0.01943337,0.242265;-0.1761947;-0.02082334,-0.09842651;0.3666668;0.009754043,-0.3095713;0.2999997;-0.1616326,-0.4866864;0.2876658;-0.3781461,0.07048087;0.004349949;-0.03759687,0.08464874;-0.3742417;-0.008141965,0.08448438;-0.7191165;0.0515352,0.0830617;-0.7062508;-0.04697568,-0.07017517;0.003064014;-0.03828913,-0.1015174;-0.3749124;-0.01480443,-0.1162926;-0.7204671;0.03880195,-0.1152544;-0.7075609;-0.05972076,0.0149983;0.3983422;0.03280794,0;0;0,0.004508357;0.19936;0.01533833,0.009781369;0.4990472;0.0266746,0.1203247;0.3716359;-0.007506881,0.198213;0.1041309;0.02032269,0.2359567;-0.1697429;-0.02404603,-0.1008687;0.3548687;0.002366293,-0.1891509;0.1034173;-0.0835316,-0.2817555;-0.1370492;-0.1930772,0.07143034;0.007246058;-0.0352874,0.07998379;-0.3697063;0.01197521,0.08313599;-0.7097744;0.09470233,0.08626953;-0.7601807;0.03533054,-0.07033291;-0.0005997223;-0.0381172,-0.1089573;-0.3741229;0.02009419,-0.1237949;-0.7148358;0.09880003,-0.1250716;-0.7031338;0.0004966632,0.008267043;0.3990654;0.02551891,27.34812
+0;0;0,0.007826156;0.1989675;0.01872643,0.0187931;0.4982106;0.03625856,0.1270482;0.3680882;0.002320098,0.1926152;0.09641176;0.01943337,0.242265;-0.1761947;-0.02082334,-0.09842651;0.3666668;0.009754043,-0.3095713;0.2999997;-0.1616326,-0.4866864;0.2876658;-0.3781461,0.07048087;0.004349949;-0.03759687,0.08464874;-0.3742417;-0.008141965,0.08448438;-0.7191165;0.0515352,0.0830617;-0.7062508;-0.04697568,-0.07017517;0.003064014;-0.03828913,-0.1015174;-0.3749124;-0.01480443,-0.1162926;-0.7204671;0.03880195,-0.1152544;-0.7075609;-0.05972076,0.0149983;0.3983422;0.03280794,0;0;0,0.004508357;0.19936;0.01533833,0.009781369;0.4990472;0.0266746,0.1203247;0.3716359;-0.007506881,0.198213;0.1041309;0.02032269,0.2359567;-0.1697429;-0.02404603,-0.1008687;0.3548687;0.002366293,-0.1891509;0.1034173;-0.0835316,-0.2817555;-0.1370492;-0.1930772,0.07143034;0.007246058;-0.0352874,0.07998379;-0.3697063;0.01197521,0.08313599;-0.7097744;0.09470233,0.08626953;-0.7601807;0.03533054,-0.07033291;-0.0005997223;-0.0381172,-0.1089573;-0.3741229;0.02009419,-0.1237949;-0.7148358;0.09880003,-0.1250716;-0.7031338;0.0004966632,0.008267043;0.3990654;0.02551891,27.35965
+0;0;0,0.007826156;0.1989675;0.01872643,0.0187931;0.4982106;0.03625856,0.1270482;0.3680882;0.002320098,0.1926152;0.09641176;0.01943337,0.242265;-0.1761947;-0.02082334,-0.09842651;0.3666668;0.009754043,-0.3095713;0.2999997;-0.1616326,-0.4866864;0.2876658;-0.3781461,0.07048087;0.004349949;-0.03759687,0.08464874;-0.3742417;-0.008141965,0.08448438;-0.7191165;0.0515352,0.0830617;-0.7062508;-0.04697568,-0.07017517;0.003064014;-0.03828913,-0.1015174;-0.3749124;-0.01480443,-0.1162926;-0.7204671;0.03880195,-0.1152544;-0.7075609;-0.05972076,0.0149983;0.3983422;0.03280794,0;0;0,0.004508357;0.19936;0.01533833,0.009781369;0.4990472;0.0266746,0.1203247;0.3716359;-0.007506881,0.198213;0.1041309;0.02032269,0.2359567;-0.1697429;-0.02404603,-0.1008687;0.3548687;0.002366293,-0.1891509;0.1034173;-0.0835316,-0.2817555;-0.1370492;-0.1930772,0.07143034;0.007246058;-0.0352874,0.07998379;-0.3697063;0.01197521,0.08313599;-0.7097744;0.09470233,0.08626953;-0.7601807;0.03533054,-0.07033291;-0.0005997223;-0.0381172,-0.1089573;-0.3741229;0.02009419,-0.1237949;-0.7148358;0.09880003,-0.1250716;-0.7031338;0.0004966632,0.008267043;0.3990654;0.02551891,27.37107
+0;0;0,0.007665579;0.1989603;0.01886848,0.01820926;0.4982029;0.03665485,0.1267032;0.3681743;0.002865661,0.1926292;0.09659424;0.02012929,0.2421329;-0.1760635;-0.01995977,-0.0985647;0.3664234;0.009002095,-0.3064822;0.2981521;-0.1656672,-0.4762749;0.286665;-0.3880149,0.07055858;0.004345004;-0.0374514,0.08427012;-0.3742929;-0.008377356,0.08462313;-0.7191586;0.05135155,0.08355474;-0.7062806;-0.04716594,-0.07006443;0.003009631;-0.03849568,-0.1018118;-0.374925;-0.01488374,-0.1162923;-0.7204481;0.03900551,-0.1148973;-0.7075366;-0.05951371,0.01456917;0.398331;0.03313972,0;0;0,0.004593262;0.1993741;0.01512913,0.01073439;0.4990859;0.02515985,0.1209462;0.3716373;-0.008094862,0.1990294;0.104174;0.01958941,0.2364565;-0.1695921;-0.02570218,-0.09996114;0.3540284;0.001344409,-0.1878392;0.09963194;-0.07585575,-0.2798233;-0.1462837;-0.1731409,0.07141752;0.00742549;-0.03527606,0.0800371;-0.3695079;0.01212532,0.08302175;-0.7096077;0.0947281,0.0875443;-0.7598262;0.03519194,-0.07030307;-0.0008877083;-0.03816661,-0.1087854;-0.3743531;0.02050809,-0.1237872;-0.7150739;0.09914824,-0.1248274;-0.7034103;0.0008492395,0.008795683;0.3991064;0.02458078,27.383
+0;0;0,0.007665579;0.1989603;0.01886848,0.01820926;0.4982029;0.03665485,0.1267032;0.3681743;0.002865661,0.1926292;0.09659424;0.02012929,0.2421329;-0.1760635;-0.01995977,-0.0985647;0.3664234;0.009002095,-0.3064822;0.2981521;-0.1656672,-0.4762749;0.286665;-0.3880149,0.07055858;0.004345004;-0.0374514,0.08427012;-0.3742929;-0.008377356,0.08462313;-0.7191586;0.05135155,0.08355474;-0.7062806;-0.04716594,-0.07006443;0.003009631;-0.03849568,-0.1018118;-0.374925;-0.01488374,-0.1162923;-0.7204481;0.03900551,-0.1148973;-0.7075366;-0.05951371,0.01456917;0.398331;0.03313972,0;0;0,0.004593262;0.1993741;0.01512913,0.01073439;0.4990859;0.02515985,0.1209462;0.3716373;-0.008094862,0.1990294;0.104174;0.01958941,0.2364565;-0.1695921;-0.02570218,-0.09996114;0.3540284;0.001344409,-0.1878392;0.09963194;-0.07585575,-0.2798233;-0.1462837;-0.1731409,0.07141752;0.00742549;-0.03527606,0.0800371;-0.3695079;0.01212532,0.08302175;-0.7096077;0.0947281,0.0875443;-0.7598262;0.03519194,-0.07030307;-0.0008877083;-0.03816661,-0.1087854;-0.3743531;0.02050809,-0.1237872;-0.7150739;0.09914824,-0.1248274;-0.7034103;0.0008492395,0.008795683;0.3991064;0.02458078,27.4044
+0;0;0,0.007665579;0.1989603;0.01886848,0.01820926;0.4982029;0.03665485,0.1267032;0.3681743;0.002865661,0.1926292;0.09659424;0.02012929,0.2421329;-0.1760635;-0.01995977,-0.0985647;0.3664234;0.009002095,-0.3064822;0.2981521;-0.1656672,-0.4762749;0.286665;-0.3880149,0.07055858;0.004345004;-0.0374514,0.08427012;-0.3742929;-0.008377356,0.08462313;-0.7191586;0.05135155,0.08355474;-0.7062806;-0.04716594,-0.07006443;0.003009631;-0.03849568,-0.1018118;-0.374925;-0.01488374,-0.1162923;-0.7204481;0.03900551,-0.1148973;-0.7075366;-0.05951371,0.01456917;0.398331;0.03313972,0;0;0,0.004280444;0.1993919;0.01498445,0.00900492;0.4991519;0.02423942,0.1199978;0.3719546;-0.008224724,0.1980794;0.1044706;0.0192626,0.2356163;-0.1692136;-0.02643164,-0.1015713;0.3548636;0.00140461,-0.1893182;0.09847924;-0.06907636,-0.2297598;-0.1655215;-0.1531481,0.07143265;0.007461874;-0.03523772,0.07994291;-0.3694899;0.01203682,0.08280789;-0.709622;0.09451064,0.08758908;-0.7599756;0.03517729,-0.07027456;-0.0008975035;-0.03821884,-0.1088414;-0.3743274;0.02062593,-0.1239162;-0.7150707;0.09915441,-0.1251212;-0.7034304;0.0008616224,0.007645543;0.3991615;0.02397383,27.41532
+0;0;0,0.007552095;0.1989474;0.01905033,0.01786859;0.4981713;0.037273,0.1266676;0.3683324;0.004030386,0.1925147;0.09670281;0.02080893,0.242254;-0.1758547;-0.01966847,-0.0984962;0.3658742;0.008619094,-0.3027328;0.2953611;-0.1694689,-0.4664696;0.2854521;-0.3963875,0.07060273;0.004351287;-0.03736738,0.08425039;-0.3742927;-0.008342525,0.08465642;-0.7191483;0.05144447,0.08402677;-0.706264;-0.04707789,-0.06995066;0.003008975;-0.03870208,-0.1022781;-0.3748697;-0.01498191,-0.1163008;-0.7203708;0.03916951,-0.1144658;-0.7074513;-0.05934388,0.01430139;0.3983016;0.0336224,0;0;0,0.004280444;0.1993919;0.01498445,0.00900492;0.4991519;0.02423942,0.1199978;0.3719546;-0.008224724,0.1980794;0.1044706;0.0192626,0.2356163;-0.1692136;-0.02643164,-0.1015713;0.3548636;0.00140461,-0.1893182;0.09847924;-0.06907636,-0.2297598;-0.1655215;-0.1531481,0.07143265;0.007461874;-0.03523772,0.07994291;-0.3694899;0.01203682,0.08280789;-0.709622;0.09451064,0.08758908;-0.7599756;0.03517729,-0.07027456;-0.0008975035;-0.03821884,-0.1088414;-0.3743274;0.02062593,-0.1239162;-0.7150707;0.09915441,-0.1251212;-0.7034304;0.0008616224,0.007645543;0.3991615;0.02397383,27.43809
+0;0;0,0.007552095;0.1989474;0.01905033,0.01786859;0.4981713;0.037273,0.1266676;0.3683324;0.004030386,0.1925147;0.09670281;0.02080893,0.242254;-0.1758547;-0.01966847,-0.0984962;0.3658742;0.008619094,-0.3027328;0.2953611;-0.1694689,-0.4664696;0.2854521;-0.3963875,0.07060273;0.004351287;-0.03736738,0.08425039;-0.3742927;-0.008342525,0.08465642;-0.7191483;0.05144447,0.08402677;-0.706264;-0.04707789,-0.06995066;0.003008975;-0.03870208,-0.1022781;-0.3748697;-0.01498191,-0.1163008;-0.7203708;0.03916951,-0.1144658;-0.7074513;-0.05934388,0.01430139;0.3983016;0.0336224,0;0;0,0.004114619;0.1994005;0.01491759,0.008500611;0.4991723;0.02396915,0.1195742;0.3719632;-0.008434594,0.1979463;0.1045211;0.01863023,0.2355134;-0.1691971;-0.02683472,-0.1021923;0.3551198;0.001695918,-0.1892242;0.09644181;-0.06084343,-0.2335072;-0.16449;-0.1522416,0.07138837;0.007506832;-0.03531782,0.07987341;-0.3694273;0.01210268,0.08270445;-0.7095786;0.09449829,0.0874856;-0.7601777;0.03549889,-0.07033873;-0.00101924;-0.03809756,-0.1087443;-0.3745184;0.02041234,-0.1241042;-0.7152225;0.09905602,-0.1255062;-0.7035913;0.0007675588,0.007223394;0.3991807;0.02376023,27.4488
+0;0;0,0.007552095;0.1989474;0.01905033,0.01786859;0.4981713;0.037273,0.1266676;0.3683324;0.004030386,0.1925147;0.09670281;0.02080893,0.242254;-0.1758547;-0.01966847,-0.0984962;0.3658742;0.008619094,-0.3027328;0.2953611;-0.1694689,-0.4664696;0.2854521;-0.3963875,0.07060273;0.004351287;-0.03736738,0.08425039;-0.3742927;-0.008342525,0.08465642;-0.7191483;0.05144447,0.08402677;-0.706264;-0.04707789,-0.06995066;0.003008975;-0.03870208,-0.1022781;-0.3748697;-0.01498191,-0.1163008;-0.7203708;0.03916951,-0.1144658;-0.7074513;-0.05934388,0.01430139;0.3983016;0.0336224,0;0;0,0.004114619;0.1994005;0.01491759,0.008500611;0.4991723;0.02396915,0.1195742;0.3719632;-0.008434594,0.1979463;0.1045211;0.01863023,0.2355134;-0.1691971;-0.02683472,-0.1021923;0.3551198;0.001695918,-0.1892242;0.09644181;-0.06084343,-0.2335072;-0.16449;-0.1522416,0.07138837;0.007506832;-0.03531782,0.07987341;-0.3694273;0.01210268,0.08270445;-0.7095786;0.09449829,0.0874856;-0.7601777;0.03549889,-0.07033873;-0.00101924;-0.03809756,-0.1087443;-0.3745184;0.02041234,-0.1241042;-0.7152225;0.09905602,-0.1255062;-0.7035913;0.0007675588,0.007223394;0.3991807;0.02376023,27.46011
+0;0;0,0.007379658;0.1989361;0.0192346,0.01731209;0.4981488;0.03784726,0.1262367;0.3681278;0.00460095,0.1925505;0.09663573;0.02176324,0.2421385;-0.1759638;-0.0186162,-0.09859858;0.3655689;0.0080531,-0.2992604;0.292643;-0.1731006,-0.4584155;0.2843188;-0.4033187,0.07070523;0.004353631;-0.0371728,0.08413105;-0.3743106;-0.008308649,0.08478254;-0.7191668;0.05147285,0.08448877;-0.706276;-0.04705222,-0.06974737;0.002959223;-0.03907107,-0.1022773;-0.3748659;-0.01478061,-0.1163704;-0.7203728;0.03931477,-0.1141968;-0.7074454;-0.05919312,0.01388733;0.3982788;0.03407195,0;0;0,0.004114619;0.1994005;0.01491759,0.008500611;0.4991723;0.02396915,0.1195742;0.3719632;-0.008434594,0.1979463;0.1045211;0.01863023,0.2355134;-0.1691971;-0.02683472,-0.1021923;0.3551198;0.001695918,-0.1892242;0.09644181;-0.06084343,-0.2335072;-0.16449;-0.1522416,0.07138837;0.007506832;-0.03531782,0.07987341;-0.3694273;0.01210268,0.08270445;-0.7095786;0.09449829,0.0874856;-0.7601777;0.03549889,-0.07033873;-0.00101924;-0.03809756,-0.1087443;-0.3745184;0.02041234,-0.1241042;-0.7152225;0.09905602,-0.1255062;-0.7035913;0.0007675588,0.007223394;0.3991807;0.02376023,27.47136
+0;0;0,0.007379658;0.1989361;0.0192346,0.01731209;0.4981488;0.03784726,0.1262367;0.3681278;0.00460095,0.1925505;0.09663573;0.02176324,0.2421385;-0.1759638;-0.0186162,-0.09859858;0.3655689;0.0080531,-0.2992604;0.292643;-0.1731006,-0.4584155;0.2843188;-0.4033187,0.07070523;0.004353631;-0.0371728,0.08413105;-0.3743106;-0.008308649,0.08478254;-0.7191668;0.05147285,0.08448877;-0.706276;-0.04705222,-0.06974737;0.002959223;-0.03907107,-0.1022773;-0.3748659;-0.01478061,-0.1163704;-0.7203728;0.03931477,-0.1141968;-0.7074454;-0.05919312,0.01388733;0.3982788;0.03407195,0;0;0,0.004229504;0.1994036;0.01484304,0.009005104;0.4991724;0.02382501,0.1198005;0.3721691;-0.009265579,0.1985727;0.1048713;0.01806291,0.2357391;-0.1685646;-0.02938654,-0.1020604;0.3555557;0.001916144,-0.1885415;0.094926;-0.05279364,-0.2383579;-0.1649711;-0.1442913,0.07131745;0.007539949;-0.03545378,0.08059242;-0.3693861;0.01188255,0.0833522;-0.7095357;0.09428771,0.08793211;-0.7600738;0.03518915,-0.0704603;-0.001072683;-0.03787078,-0.1078922;-0.3747016;0.02044147,-0.1232991;-0.7154269;0.09898373,-0.1250427;-0.7037991;0.0007013753,0.007600947;0.3991824;0.02362105,27.49351
+0;0;0,0.007379658;0.1989361;0.0192346,0.01731209;0.4981488;0.03784726,0.1262367;0.3681278;0.00460095,0.1925505;0.09663573;0.02176324,0.2421385;-0.1759638;-0.0186162,-0.09859858;0.3655689;0.0080531,-0.2992604;0.292643;-0.1731006,-0.4584155;0.2843188;-0.4033187,0.07070523;0.004353631;-0.0371728,0.08413105;-0.3743106;-0.008308649,0.08478254;-0.7191668;0.05147285,0.08448877;-0.706276;-0.04705222,-0.06974737;0.002959223;-0.03907107,-0.1022773;-0.3748659;-0.01478061,-0.1163704;-0.7203728;0.03931477,-0.1141968;-0.7074454;-0.05919312,0.01388733;0.3982788;0.03407195,0;0;0,0.004229504;0.1994036;0.01484304,0.009005104;0.4991724;0.02382501,0.1198005;0.3721691;-0.009265579,0.1985727;0.1048713;0.01806291,0.2357391;-0.1685646;-0.02938654,-0.1020604;0.3555557;0.001916144,-0.1885415;0.094926;-0.05279364,-0.2383579;-0.1649711;-0.1442913,0.07131745;0.007539949;-0.03545378,0.08059242;-0.3693861;0.01188255,0.0833522;-0.7095357;0.09428771,0.08793211;-0.7600738;0.03518915,-0.0704603;-0.001072683;-0.03787078,-0.1078922;-0.3747016;0.02044147,-0.1232991;-0.7154269;0.09898373,-0.1250427;-0.7037991;0.0007013753,0.007600947;0.3991824;0.02362105,27.50476
+0;0;0,0.007156846;0.1989314;0.01936726,0.01681672;0.4981482;0.03804411,0.1259628;0.3681702;0.005284488,0.1927848;0.09677285;0.02196697,0.2426381;-0.1758949;-0.01761755,-0.09881199;0.3653628;0.007652057,-0.2930401;0.2823596;-0.1761574,-0.4513682;0.2753744;-0.4069894,0.07083217;0.004290945;-0.03693767,0.08418414;-0.3743883;-0.008236077,0.08495065;-0.7191908;0.05185203,0.08497252;-0.7063062;-0.0466724,-0.06960882;0.002901668;-0.03932166,-0.1019588;-0.374899;-0.01441942,-0.1160867;-0.7204356;0.03947767,-0.1135968;-0.7075058;-0.05902313,0.01347468;0.3982753;0.03426912,0;0;0,0.004059279;0.1994131;0.01476216,0.008932019;0.4991842;0.02366523,0.1194327;0.3722776;-0.010219,0.1989077;0.1051921;0.01715063,0.2357618;-0.1680848;-0.03144475,-0.1023533;0.3556715;0.002236243,-0.1888474;0.09436694;-0.04913197,-0.2407274;-0.1673101;-0.1341826,0.07117833;0.007514908;-0.03573754,0.08099371;-0.3693536;0.01194726,0.08370912;-0.7095167;0.09429803,0.08833709;-0.7598041;0.03486308,-0.07066552;-0.001184777;-0.03748307,-0.1074803;-0.3749008;0.02066336,-0.1224904;-0.7157222;0.09886476,-0.1246752;-0.7040921;0.0005907863,0.007443907;0.3991955;0.02345507,27.52709
+0;0;0,0.007156846;0.1989314;0.01936726,0.01681672;0.4981482;0.03804411,0.1259628;0.3681702;0.005284488,0.1927848;0.09677285;0.02196697,0.2426381;-0.1758949;-0.01761755,-0.09881199;0.3653628;0.007652057,-0.2930401;0.2823596;-0.1761574,-0.4513682;0.2753744;-0.4069894,0.07083217;0.004290945;-0.03693767,0.08418414;-0.3743883;-0.008236077,0.08495065;-0.7191908;0.05185203,0.08497252;-0.7063062;-0.0466724,-0.06960882;0.002901668;-0.03932166,-0.1019588;-0.374899;-0.01441942,-0.1160867;-0.7204356;0.03947767,-0.1135968;-0.7075058;-0.05902313,0.01347468;0.3982753;0.03426912,0;0;0,0.004059279;0.1994131;0.01476216,0.008932019;0.4991842;0.02366523,0.1194327;0.3722776;-0.010219,0.1989077;0.1051921;0.01715063,0.2357618;-0.1680848;-0.03144475,-0.1023533;0.3556715;0.002236243,-0.1888474;0.09436694;-0.04913197,-0.2407274;-0.1673101;-0.1341826,0.07117833;0.007514908;-0.03573754,0.08099371;-0.3693536;0.01194726,0.08370912;-0.7095167;0.09429803,0.08833709;-0.7598041;0.03486308,-0.07066552;-0.001184777;-0.03748307,-0.1074803;-0.3749008;0.02066336,-0.1224904;-0.7157222;0.09886476,-0.1246752;-0.7040921;0.0005907863,0.007443907;0.3991955;0.02345507,27.53861
+0;0;0,0.007156846;0.1989314;0.01936726,0.01681672;0.4981482;0.03804411,0.1259628;0.3681702;0.005284488,0.1927848;0.09677285;0.02196697,0.2426381;-0.1758949;-0.01761755,-0.09881199;0.3653628;0.007652057,-0.2930401;0.2823596;-0.1761574,-0.4513682;0.2753744;-0.4069894,0.07083217;0.004290945;-0.03693767,0.08418414;-0.3743883;-0.008236077,0.08495065;-0.7191908;0.05185203,0.08497252;-0.7063062;-0.0466724,-0.06960882;0.002901668;-0.03932166,-0.1019588;-0.374899;-0.01441942,-0.1160867;-0.7204356;0.03947767,-0.1135968;-0.7075058;-0.05902313,0.01347468;0.3982753;0.03426912,0;0;0,0.003910679;0.1994248;0.01464408,0.008645412;0.4992071;0.02326098,0.1189326;0.372288;-0.01127986,0.1987072;0.1052175;0.01535314,0.2359297;-0.1681872;-0.03223228,-0.1027091;0.3556916;0.002351388,-0.189516;0.09357512;-0.04411904,-0.2419839;-0.1683989;-0.1278848,0.07108115;0.00761644;-0.03590905,0.08112612;-0.3692206;0.01197578,0.08386116;-0.7093982;0.09426609,0.08857315;-0.7596582;0.03480064,-0.07079463;-0.001298085;-0.03723486,-0.1073921;-0.375068;0.02070151,-0.122201;-0.715887;0.09895211,-0.1247857;-0.7042713;0.0006905347,0.007171064;0.3992181;0.0231313,27.56047
+0;0;0,0.006991268;0.1989224;0.01951917,0.0162721;0.4981351;0.03844441,0.1255831;0.3680903;0.005806064,0.1927655;0.09678149;0.02248098,0.2427321;-0.1758943;-0.01690544,-0.098753;0.3648006;0.006714661,-0.2915248;0.2807401;-0.1781444,-0.4355003;0.2719448;-0.4181312,0.07095981;0.004296857;-0.03669119,0.08404975;-0.3744222;-0.008397341,0.08464596;-0.7191479;0.05213202,0.08510656;-0.7062451;-0.0463945,-0.06947406;0.002802112;-0.03956644,-0.1022181;-0.3749504;-0.01444964,-0.1159772;-0.7204961;0.0394847,-0.1130525;-0.7075636;-0.05900462,0.0130633;0.3982607;0.03459913,0;0;0,0.003910679;0.1994248;0.01464408,0.008645412;0.4992071;0.02326098,0.1189326;0.372288;-0.01127986,0.1987072;0.1052175;0.01535314,0.2359297;-0.1681872;-0.03223228,-0.1027091;0.3556916;0.002351388,-0.189516;0.09357512;-0.04411904,-0.2419839;-0.1683989;-0.1278848,0.07108115;0.00761644;-0.03590905,0.08112612;-0.3692206;0.01197578,0.08386116;-0.7093982;0.09426609,0.08857315;-0.7596582;0.03480064,-0.07079463;-0.001298085;-0.03723486,-0.1073921;-0.375068;0.02070151,-0.122201;-0.715887;0.09895211,-0.1247857;-0.7042713;0.0006905347,0.007171064;0.3992181;0.0231313,27.57199
+0;0;0,0.006991268;0.1989224;0.01951917,0.0162721;0.4981351;0.03844441,0.1255831;0.3680903;0.005806064,0.1927655;0.09678149;0.02248098,0.2427321;-0.1758943;-0.01690544,-0.098753;0.3648006;0.006714661,-0.2915248;0.2807401;-0.1781444,-0.4355003;0.2719448;-0.4181312,0.07095981;0.004296857;-0.03669119,0.08404975;-0.3744222;-0.008397341,0.08464596;-0.7191479;0.05213202,0.08510656;-0.7062451;-0.0463945,-0.06947406;0.002802112;-0.03956644,-0.1022181;-0.3749504;-0.01444964,-0.1159772;-0.7204961;0.0394847,-0.1130525;-0.7075636;-0.05900462,0.0130633;0.3982607;0.03459913,0;0;0,0.003823883;0.1994423;0.01442708,0.008641056;0.4992326;0.02274882,0.1187953;0.3724299;-0.01205379,0.1990307;0.1054976;0.01458162,0.2362746;-0.1677575;-0.0338392,-0.1027201;0.3554925;0.002123641,-0.1908686;0.09309047;-0.04000746,-0.2876547;-0.1641594;-0.09343918,0.07091412;0.007607297;-0.03623969,0.08166631;-0.3691825;0.01186265,0.08432288;-0.7093779;0.09408168,0.08886841;-0.7592671;0.03410612,-0.07107044;-0.001371303;-0.03670302,-0.1067155;-0.3753364;0.02056398,-0.121443;-0.7161731;0.09875248,-0.1242558;-0.7045684;0.0004992336,0.007110029;0.3992444;0.02269359,27.59418
+0;0;0,0.006991268;0.1989224;0.01951917,0.0162721;0.4981351;0.03844441,0.1255831;0.3680903;0.005806064,0.1927655;0.09678149;0.02248098,0.2427321;-0.1758943;-0.01690544,-0.098753;0.3648006;0.006714661,-0.2915248;0.2807401;-0.1781444,-0.4355003;0.2719448;-0.4181312,0.07095981;0.004296857;-0.03669119,0.08404975;-0.3744222;-0.008397341,0.08464596;-0.7191479;0.05213202,0.08510656;-0.7062451;-0.0463945,-0.06947406;0.002802112;-0.03956644,-0.1022181;-0.3749504;-0.01444964,-0.1159772;-0.7204961;0.0394847,-0.1130525;-0.7075636;-0.05900462,0.0130633;0.3982607;0.03459913,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006866404;0.1989136;0.01965254,0.0159817;0.4981217;0.03872198,0.1254815;0.3684149;0.006243197,0.1931729;0.09723422;0.02294394,0.2432172;-0.1754378;-0.01636932,-0.09867869;0.3643088;0.006281735,-0.289485;0.2793046;-0.180178,-0.4298535;0.269723;-0.4222624,0.07106297;0.00427394;-0.03649366,0.08393474;-0.3744452;-0.008101547,0.08478298;-0.7192132;0.05218357,0.08548663;-0.7063061;-0.04634227,-0.06936958;0.002748886;-0.03975304,-0.1018925;-0.3749759;-0.0139405,-0.1158129;-0.7205529;0.03975087,-0.1126433;-0.7076172;-0.05873144,0.01282228;0.398247;0.03484283,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006866404;0.1989136;0.01965254,0.0159817;0.4981217;0.03872198,0.1254815;0.3684149;0.006243197,0.1931729;0.09723422;0.02294394,0.2432172;-0.1754378;-0.01636932,-0.09867869;0.3643088;0.006281735,-0.289485;0.2793046;-0.180178,-0.4298535;0.269723;-0.4222624,0.07106297;0.00427394;-0.03649366,0.08393474;-0.3744452;-0.008101547,0.08478298;-0.7192132;0.05218357,0.08548663;-0.7063061;-0.04634227,-0.06936958;0.002748886;-0.03975304,-0.1018925;-0.3749759;-0.0139405,-0.1158129;-0.7205529;0.03975087,-0.1126433;-0.7076172;-0.05873144,0.01282228;0.398247;0.03484283,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006467922;0.1988974;0.01994927,0.01479397;0.4980954;0.03952514,0.124766;0.3688349;0.007133458,0.1925938;0.09765354;0.02325889,0.243199;-0.1752245;-0.01384525,-0.09895265;0.3634564;0.005536778,-0.2820477;0.2750441;-0.1869716,-0.4088861;0.2638717;-0.4363452,0.07147414;0.004146011;-0.03569674,0.0835212;-0.3746383;-0.007816752,0.08460006;-0.7194272;0.0523454,0.08572516;-0.7065148;-0.04617742,-0.06907173;0.002792053;-0.04026537,-0.1020854;-0.3748197;-0.01344282,-0.1157207;-0.7204503;0.03997643,-0.1121307;-0.7075017;-0.05849368,0.01192753;0.398218;0.03549041,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006467922;0.1988974;0.01994927,0.01479397;0.4980954;0.03952514,0.124766;0.3688349;0.007133458,0.1925938;0.09765354;0.02325889,0.243199;-0.1752245;-0.01384525,-0.09895265;0.3634564;0.005536778,-0.2820477;0.2750441;-0.1869716,-0.4088861;0.2638717;-0.4363452,0.07147414;0.004146011;-0.03569674,0.0835212;-0.3746383;-0.007816752,0.08460006;-0.7194272;0.0523454,0.08572516;-0.7065148;-0.04617742,-0.06907173;0.002792053;-0.04026537,-0.1020854;-0.3748197;-0.01344282,-0.1157207;-0.7204503;0.03997643,-0.1121307;-0.7075017;-0.05849368,0.01192753;0.398218;0.03549041,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006467922;0.1988974;0.01994927,0.01479397;0.4980954;0.03952514,0.124766;0.3688349;0.007133458,0.1925938;0.09765354;0.02325889,0.243199;-0.1752245;-0.01384525,-0.09895265;0.3634564;0.005536778,-0.2820477;0.2750441;-0.1869716,-0.4088861;0.2638717;-0.4363452,0.07147414;0.004146011;-0.03569674,0.0835212;-0.3746383;-0.007816752,0.08460006;-0.7194272;0.0523454,0.08572516;-0.7065148;-0.04617742,-0.06907173;0.002792053;-0.04026537,-0.1020854;-0.3748197;-0.01344282,-0.1157207;-0.7204503;0.03997643,-0.1121307;-0.7075017;-0.05849368,0.01192753;0.398218;0.03549041,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006230859;0.1988957;0.02004217,0.01436603;0.4981159;0.03933277,0.1245167;0.3689393;0.007372716,0.1922856;0.09773651;0.02338704,0.2426943;-0.1752326;-0.01331228,-0.09905154;0.3630142;0.005098227,-0.2653954;0.2777042;-0.203353,-0.4028996;0.2643169;-0.4468964,0.07158545;0.004183928;-0.03546855,0.08340482;-0.3746185;-0.007737095,0.08454886;-0.7194128;0.05239239,0.08584622;-0.7065066;-0.04612725,-0.06882317;0.002808681;-0.04068761,-0.1022838;-0.3747115;-0.01313913,-0.1159964;-0.7203566;0.0401655,-0.1122327;-0.7074122;-0.05829742,0.01158073;0.3982307;0.03543461,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006230859;0.1988957;0.02004217,0.01436603;0.4981159;0.03933277,0.1245167;0.3689393;0.007372716,0.1922856;0.09773651;0.02338704,0.2426943;-0.1752326;-0.01331228,-0.09905154;0.3630142;0.005098227,-0.2653954;0.2777042;-0.203353,-0.4028996;0.2643169;-0.4468964,0.07158545;0.004183928;-0.03546855,0.08340482;-0.3746185;-0.007737095,0.08454886;-0.7194128;0.05239239,0.08584622;-0.7065066;-0.04612725,-0.06882317;0.002808681;-0.04068761,-0.1022838;-0.3747115;-0.01313913,-0.1159964;-0.7203566;0.0401655,-0.1122327;-0.7074122;-0.05829742,0.01158073;0.3982307;0.03543461,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006064021;0.1988737;0.02030969,0.01396355;0.4980679;0.0400993,0.1241473;0.3686503;0.008067686,0.1919493;0.0974392;0.02379788,0.2420444;-0.1755578;-0.01312308,-0.0989825;0.3624789;0.004820269,-0.2621418;0.2773399;-0.206202,-0.3925751;0.2604846;-0.4533923,0.07186551;0.004052603;-0.0349131,0.08360917;-0.3747958;-0.00778473,0.08455273;-0.7196006;0.05228849,0.08613262;-0.706681;-0.04622936,-0.06867569;0.002723663;-0.0409418,-0.1020672;-0.3747687;-0.01293221,-0.1157439;-0.7204311;0.04026959,-0.1117012;-0.7074744;-0.05818438,0.01124956;0.3981878;0.03602555,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006064021;0.1988737;0.02030969,0.01396355;0.4980679;0.0400993,0.1241473;0.3686503;0.008067686,0.1919493;0.0974392;0.02379788,0.2420444;-0.1755578;-0.01312308,-0.0989825;0.3624789;0.004820269,-0.2621418;0.2773399;-0.206202,-0.3925751;0.2604846;-0.4533923,0.07186551;0.004052603;-0.0349131,0.08360917;-0.3747958;-0.00778473,0.08455273;-0.7196006;0.05228849,0.08613262;-0.706681;-0.04622936,-0.06867569;0.002723663;-0.0409418,-0.1020672;-0.3747687;-0.01293221,-0.1157439;-0.7204311;0.04026959,-0.1117012;-0.7074744;-0.05818438,0.01124956;0.3981878;0.03602555,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.006064021;0.1988737;0.02030969,0.01396355;0.4980679;0.0400993,0.1241473;0.3686503;0.008067686,0.1919493;0.0974392;0.02379788,0.2420444;-0.1755578;-0.01312308,-0.0989825;0.3624789;0.004820269,-0.2621418;0.2773399;-0.206202,-0.3925751;0.2604846;-0.4533923,0.07186551;0.004052603;-0.0349131,0.08360917;-0.3747958;-0.00778473,0.08455273;-0.7196006;0.05228849,0.08613262;-0.706681;-0.04622936,-0.06867569;0.002723663;-0.0409418,-0.1020672;-0.3747687;-0.01293221,-0.1157439;-0.7204311;0.04026959,-0.1117012;-0.7074744;-0.05818438,0.01124956;0.3981878;0.03602555,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005888447;0.1988672;0.02042429,0.01350858;0.4980553;0.04041595,0.1238149;0.3684605;0.008582475,0.1917652;0.09726253;0.02389366,0.2417566;-0.1757497;-0.01305424,-0.09898613;0.3619062;0.004494727,-0.2575357;0.2752435;-0.2094015,-0.3824712;0.2573562;-0.4593439,0.07195214;0.00406527;-0.03473274,0.08339699;-0.3748068;-0.00780734,0.08385237;-0.719619;0.05222848,0.08566728;-0.7066908;-0.04628681,-0.06860752;0.002744291;-0.04105457,-0.1021138;-0.3747219;-0.01282962,-0.1158361;-0.7203979;0.04027196,-0.1115663;-0.7074323;-0.05817397,0.01089828;0.3981752;0.03627488,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005888447;0.1988672;0.02042429,0.01350858;0.4980553;0.04041595,0.1238149;0.3684605;0.008582475,0.1917652;0.09726253;0.02389366,0.2417566;-0.1757497;-0.01305424,-0.09898613;0.3619062;0.004494727,-0.2575357;0.2752435;-0.2094015,-0.3824712;0.2573562;-0.4593439,0.07195214;0.00406527;-0.03473274,0.08339699;-0.3748068;-0.00780734,0.08385237;-0.719619;0.05222848,0.08566728;-0.7066908;-0.04628681,-0.06860752;0.002744291;-0.04105457,-0.1021138;-0.3747219;-0.01282962,-0.1158361;-0.7203979;0.04027196,-0.1115663;-0.7074323;-0.05817397,0.01089828;0.3981752;0.03627488,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005888447;0.1988672;0.02042429,0.01350858;0.4980553;0.04041595,0.1238149;0.3684605;0.008582475,0.1917652;0.09726253;0.02389366,0.2417566;-0.1757497;-0.01305424,-0.09898613;0.3619062;0.004494727,-0.2575357;0.2752435;-0.2094015,-0.3824712;0.2573562;-0.4593439,0.07195214;0.00406527;-0.03473274,0.08339699;-0.3748068;-0.00780734,0.08385237;-0.719619;0.05222848,0.08566728;-0.7066908;-0.04628681,-0.06860752;0.002744291;-0.04105457,-0.1021138;-0.3747219;-0.01282962,-0.1158361;-0.7203979;0.04027196,-0.1115663;-0.7074323;-0.05817397,0.01089828;0.3981752;0.03627488,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005769609;0.1988591;0.02053695,0.01321562;0.4980421;0.04066492,0.1237511;0.3686638;0.009301839,0.1919217;0.09747511;0.02377345,0.2414583;-0.1755999;-0.0133237,-0.0989049;0.3615934;0.003936727,-0.2569385;0.2692635;-0.2079608,-0.3730713;0.2518171;-0.4621435,0.07203443;0.004047479;-0.03456383,0.08328164;-0.3748392;-0.007761203,0.08388373;-0.719651;0.05227552,0.08606005;-0.7067233;-0.04623237,-0.06851482;0.002744838;-0.04120904,-0.1023238;-0.3746629;-0.01256642,-0.1156571;-0.7203685;0.04044176,-0.1110264;-0.7074032;-0.05798778,0.01065444;0.3981623;0.03648613,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005769609;0.1988591;0.02053695,0.01321562;0.4980421;0.04066492,0.1237511;0.3686638;0.009301839,0.1919217;0.09747511;0.02377345,0.2414583;-0.1755999;-0.0133237,-0.0989049;0.3615934;0.003936727,-0.2569385;0.2692635;-0.2079608,-0.3730713;0.2518171;-0.4621435,0.07203443;0.004047479;-0.03456383,0.08328164;-0.3748392;-0.007761203,0.08388373;-0.719651;0.05227552,0.08606005;-0.7067233;-0.04623237,-0.06851482;0.002744838;-0.04120904,-0.1023238;-0.3746629;-0.01256642,-0.1156571;-0.7203685;0.04044176,-0.1110264;-0.7074032;-0.05798778,0.01065444;0.3981623;0.03648613,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005769609;0.1988591;0.02053695,0.01321562;0.4980421;0.04066492,0.1237511;0.3686638;0.009301839,0.1919217;0.09747511;0.02377345,0.2414583;-0.1755999;-0.0133237,-0.0989049;0.3615934;0.003936727,-0.2569385;0.2692635;-0.2079608,-0.3730713;0.2518171;-0.4621435,0.07203443;0.004047479;-0.03456383,0.08328164;-0.3748392;-0.007761203,0.08388373;-0.719651;0.05227552,0.08606005;-0.7067233;-0.04623237,-0.06851482;0.002744838;-0.04120904,-0.1023238;-0.3746629;-0.01256642,-0.1156571;-0.7203685;0.04044176,-0.1110264;-0.7074032;-0.05798778,0.01065444;0.3981623;0.03648613,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005592796;0.1988516;0.02065784,0.01260986;0.498031;0.04099435,0.1233066;0.3686753;0.009570898,0.191607;0.09751898;0.02403831,0.2411605;-0.1755274;-0.0132463,-0.09900659;0.361148;0.003509074,-0.2564123;0.2679641;-0.208482,-0.3647446;0.2478025;-0.4658875,0.07209961;0.004072186;-0.03442475,0.08312015;-0.3748248;-0.007673634,0.08421653;-0.7196525;0.05226509,0.08654968;-0.7067274;-0.04623875,-0.06839893;0.002710414;-0.04140338,-0.1028844;-0.3746107;-0.01242897,-0.1156131;-0.720329;0.0406451,-0.1108223;-0.7073594;-0.05777754,0.01020101;0.3981504;0.03674337,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005592796;0.1988516;0.02065784,0.01260986;0.498031;0.04099435,0.1233066;0.3686753;0.009570898,0.191607;0.09751898;0.02403831,0.2411605;-0.1755274;-0.0132463,-0.09900659;0.361148;0.003509074,-0.2564123;0.2679641;-0.208482,-0.3647446;0.2478025;-0.4658875,0.07209961;0.004072186;-0.03442475,0.08312015;-0.3748248;-0.007673634,0.08421653;-0.7196525;0.05226509,0.08654968;-0.7067274;-0.04623875,-0.06839893;0.002710414;-0.04140338,-0.1028844;-0.3746107;-0.01242897,-0.1156131;-0.720329;0.0406451,-0.1108223;-0.7073594;-0.05777754,0.01020101;0.3981504;0.03674337,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005592796;0.1988516;0.02065784,0.01260986;0.498031;0.04099435,0.1233066;0.3686753;0.009570898,0.191607;0.09751898;0.02403831,0.2411605;-0.1755274;-0.0132463,-0.09900659;0.361148;0.003509074,-0.2564123;0.2679641;-0.208482,-0.3647446;0.2478025;-0.4658875,0.07209961;0.004072186;-0.03442475,0.08312015;-0.3748248;-0.007673634,0.08421653;-0.7196525;0.05226509,0.08654968;-0.7067274;-0.04623875,-0.06839893;0.002710414;-0.04140338,-0.1028844;-0.3746107;-0.01242897,-0.1156131;-0.720329;0.0406451,-0.1108223;-0.7073594;-0.05777754,0.01020101;0.3981504;0.03674337,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005440231;0.1988423;0.02078854,0.01215353;0.4980163;0.04130832,0.1229244;0.3684109;0.00996745,0.1915797;0.09732926;0.02415237,0.2412356;-0.1756572;-0.01343341,-0.09908158;0.3608552;0.003163688,-0.2538898;0.2654094;-0.2097318,-0.3531414;0.2435808;-0.4706392,0.0721596;0.004139113;-0.0342908,0.08308928;-0.3747654;-0.007610181,0.08426476;-0.7195814;0.05239441,0.08680408;-0.7066545;-0.04610464,-0.06826685;0.00265804;-0.04162417,-0.1029754;-0.3746192;-0.01234658,-0.1155736;-0.7203335;0.04078415,-0.1105762;-0.7073608;-0.05762875,0.009848736;0.3981361;0.0369915,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005440231;0.1988423;0.02078854,0.01215353;0.4980163;0.04130832,0.1229244;0.3684109;0.00996745,0.1915797;0.09732926;0.02415237,0.2412356;-0.1756572;-0.01343341,-0.09908158;0.3608552;0.003163688,-0.2538898;0.2654094;-0.2097318,-0.3531414;0.2435808;-0.4706392,0.0721596;0.004139113;-0.0342908,0.08308928;-0.3747654;-0.007610181,0.08426476;-0.7195814;0.05239441,0.08680408;-0.7066545;-0.04610464,-0.06826685;0.00265804;-0.04162417,-0.1029754;-0.3746192;-0.01234658,-0.1155736;-0.7203335;0.04078415,-0.1105762;-0.7073608;-0.05762875,0.009848736;0.3981361;0.0369915,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005440231;0.1988423;0.02078854,0.01215353;0.4980163;0.04130832,0.1229244;0.3684109;0.00996745,0.1915797;0.09732926;0.02415237,0.2412356;-0.1756572;-0.01343341,-0.09908158;0.3608552;0.003163688,-0.2538898;0.2654094;-0.2097318,-0.3531414;0.2435808;-0.4706392,0.0721596;0.004139113;-0.0342908,0.08308928;-0.3747654;-0.007610181,0.08426476;-0.7195814;0.05239441,0.08680408;-0.7066545;-0.04610464,-0.06826685;0.00265804;-0.04162417,-0.1029754;-0.3746192;-0.01234658,-0.1155736;-0.7203335;0.04078415,-0.1105762;-0.7073608;-0.05762875,0.009848736;0.3981361;0.0369915,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005383483;0.1988488;0.02074042,0.01219989;0.4980485;0.0408013,0.1230253;0.3685634;0.01002221,0.1916751;0.09748045;0.02420885,0.2415355;-0.1753957;-0.01390383,-0.09885462;0.360591;0.002444223,-0.2388359;0.2683062;-0.2218073,-0.3461741;0.2433977;-0.4792138,0.07234643;0.004081053;-0.0339019,0.08302953;-0.3748665;-0.007737322,0.08440361;-0.7196999;0.05216326,0.08715745;-0.7067826;-0.04632836,-0.06819448;0.002655979;-0.04174277,-0.102861;-0.374612;-0.01229621,-0.1155437;-0.7202956;0.04101423,-0.1103312;-0.7073389;-0.05738474,0.009837555;0.39816;0.03671643,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005383483;0.1988488;0.02074042,0.01219989;0.4980485;0.0408013,0.1230253;0.3685634;0.01002221,0.1916751;0.09748045;0.02420885,0.2415355;-0.1753957;-0.01390383,-0.09885462;0.360591;0.002444223,-0.2388359;0.2683062;-0.2218073,-0.3461741;0.2433977;-0.4792138,0.07234643;0.004081053;-0.0339019,0.08302953;-0.3748665;-0.007737322,0.08440361;-0.7196999;0.05216326,0.08715745;-0.7067826;-0.04632836,-0.06819448;0.002655979;-0.04174277,-0.102861;-0.374612;-0.01229621,-0.1155437;-0.7202956;0.04101423,-0.1103312;-0.7073389;-0.05738474,0.009837555;0.39816;0.03671643,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005383483;0.1988488;0.02074042,0.01219989;0.4980485;0.0408013,0.1230253;0.3685634;0.01002221,0.1916751;0.09748045;0.02420885,0.2415355;-0.1753957;-0.01390383,-0.09885462;0.360591;0.002444223,-0.2388359;0.2683062;-0.2218073,-0.3461741;0.2433977;-0.4792138,0.07234643;0.004081053;-0.0339019,0.08302953;-0.3748665;-0.007737322,0.08440361;-0.7196999;0.05216326,0.08715745;-0.7067826;-0.04632836,-0.06819448;0.002655979;-0.04174277,-0.102861;-0.374612;-0.01229621,-0.1155437;-0.7202956;0.04101423,-0.1103312;-0.7073389;-0.05738474,0.009837555;0.39816;0.03671643,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005365899;0.1988491;0.02074247,0.01226363;0.498052;0.0407193,0.1233644;0.3688285;0.01107123,0.1917907;0.0976274;0.02402377,0.2420425;-0.1751218;-0.01448154,-0.09870488;0.3605537;0.002040245,-0.2352069;0.277608;-0.2279319,-0.3417861;0.2374864;-0.4837271,0.07248884;0.004057187;-0.03359922,0.08304611;-0.3749157;-0.007752348,0.08444599;-0.7197511;0.0521362,0.08762224;-0.7068422;-0.04634126,-0.06814645;0.002673999;-0.04181997,-0.1030037;-0.3745686;-0.01227354,-0.1155154;-0.7202476;0.04110724,-0.1098809;-0.7072999;-0.05726689,0.009857518;0.3981626;0.03667799,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005365899;0.1988491;0.02074247,0.01226363;0.498052;0.0407193,0.1233644;0.3688285;0.01107123,0.1917907;0.0976274;0.02402377,0.2420425;-0.1751218;-0.01448154,-0.09870488;0.3605537;0.002040245,-0.2352069;0.277608;-0.2279319,-0.3417861;0.2374864;-0.4837271,0.07248884;0.004057187;-0.03359922,0.08304611;-0.3749157;-0.007752348,0.08444599;-0.7197511;0.0521362,0.08762224;-0.7068422;-0.04634126,-0.06814645;0.002673999;-0.04181997,-0.1030037;-0.3745686;-0.01227354,-0.1155154;-0.7202476;0.04110724,-0.1098809;-0.7072999;-0.05726689,0.009857518;0.3981626;0.03667799,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005365899;0.1988491;0.02074247,0.01226363;0.498052;0.0407193,0.1233644;0.3688285;0.01107123,0.1917907;0.0976274;0.02402377,0.2420425;-0.1751218;-0.01448154,-0.09870488;0.3605537;0.002040245,-0.2352069;0.277608;-0.2279319,-0.3417861;0.2374864;-0.4837271,0.07248884;0.004057187;-0.03359922,0.08304611;-0.3749157;-0.007752348,0.08444599;-0.7197511;0.0521362,0.08762224;-0.7068422;-0.04634126,-0.06814645;0.002673999;-0.04181997,-0.1030037;-0.3745686;-0.01227354,-0.1155154;-0.7202476;0.04110724,-0.1098809;-0.7072999;-0.05726689,0.009857518;0.3981626;0.03667799,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005136026;0.1988254;0.02102602,0.01143919;0.4979854;0.04185871,0.1227718;0.3692208;0.01136643,0.1912778;0.09804234;0.02437333,0.2417071;-0.1746117;-0.01457102,-0.09888788;0.3604468;0.001620863,-0.2336974;0.2816013;-0.2307792,-0.3349861;0.2316002;-0.4869832,0.07256498;0.004065953;-0.03343338,0.08303466;-0.3749151;-0.007670643,0.08438952;-0.7197912;0.05198393,0.08771018;-0.706862;-0.04649226,-0.06802666;0.002667477;-0.04201498,-0.10328;-0.374527;-0.0123242,-0.1156516;-0.7202038;0.04110339,-0.1028486;-0.7640436;-0.02510655,0.009263003;0.3981054;0.03747063,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005136026;0.1988254;0.02102602,0.01143919;0.4979854;0.04185871,0.1227718;0.3692208;0.01136643,0.1912778;0.09804234;0.02437333,0.2417071;-0.1746117;-0.01457102,-0.09888788;0.3604468;0.001620863,-0.2336974;0.2816013;-0.2307792,-0.3349861;0.2316002;-0.4869832,0.07256498;0.004065953;-0.03343338,0.08303466;-0.3749151;-0.007670643,0.08438952;-0.7197912;0.05198393,0.08771018;-0.706862;-0.04649226,-0.06802666;0.002667477;-0.04201498,-0.10328;-0.374527;-0.0123242,-0.1156516;-0.7202038;0.04110339,-0.1028486;-0.7640436;-0.02510655,0.009263003;0.3981054;0.03747063,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.005136026;0.1988254;0.02102602,0.01143919;0.4979854;0.04185871,0.1227718;0.3692208;0.01136643,0.1912778;0.09804234;0.02437333,0.2417071;-0.1746117;-0.01457102,-0.09888788;0.3604468;0.001620863,-0.2336974;0.2816013;-0.2307792,-0.3349861;0.2316002;-0.4869832,0.07256498;0.004065953;-0.03343338,0.08303466;-0.3749151;-0.007670643,0.08438952;-0.7197912;0.05198393,0.08771018;-0.706862;-0.04649226,-0.06802666;0.002667477;-0.04201498,-0.10328;-0.374527;-0.0123242,-0.1156516;-0.7202038;0.04110339,-0.1028486;-0.7640436;-0.02510655,0.009263003;0.3981054;0.03747063,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004948966;0.198818;0.02114036,0.01102503;0.4979692;0.04216907,0.1224071;0.3690864;0.01158252,0.1909676;0.0979175;0.02450049,0.2415323;-0.1746811;-0.01465616,-0.09898213;0.3602473;0.00135022,-0.2296287;0.286165;-0.2349616,-0.326412;0.2281782;-0.4912242,0.07267489;0.004088005;-0.03319109,0.08283916;-0.3749152;-0.007632365,0.08433706;-0.7197639;0.0521771,0.08779237;-0.7068375;-0.04629397,-0.06793826;0.002691816;-0.04215622,-0.1037259;-0.374447;-0.01239778,-0.1160214;-0.720126;0.04103294,-0.1041771;-0.7645149;-0.02473947,0.008934015;0.3980906;0.0377093,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004948966;0.198818;0.02114036,0.01102503;0.4979692;0.04216907,0.1224071;0.3690864;0.01158252,0.1909676;0.0979175;0.02450049,0.2415323;-0.1746811;-0.01465616,-0.09898213;0.3602473;0.00135022,-0.2296287;0.286165;-0.2349616,-0.326412;0.2281782;-0.4912242,0.07267489;0.004088005;-0.03319109,0.08283916;-0.3749152;-0.007632365,0.08433706;-0.7197639;0.0521771,0.08779237;-0.7068375;-0.04629397,-0.06793826;0.002691816;-0.04215622,-0.1037259;-0.374447;-0.01239778,-0.1160214;-0.720126;0.04103294,-0.1041771;-0.7645149;-0.02473947,0.008934015;0.3980906;0.0377093,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004948966;0.198818;0.02114036,0.01102503;0.4979692;0.04216907,0.1224071;0.3690864;0.01158252,0.1909676;0.0979175;0.02450049,0.2415323;-0.1746811;-0.01465616,-0.09898213;0.3602473;0.00135022,-0.2296287;0.286165;-0.2349616,-0.326412;0.2281782;-0.4912242,0.07267489;0.004088005;-0.03319109,0.08283916;-0.3749152;-0.007632365,0.08433706;-0.7197639;0.0521771,0.08779237;-0.7068375;-0.04629397,-0.06793826;0.002691816;-0.04215622,-0.1037259;-0.374447;-0.01239778,-0.1160214;-0.720126;0.04103294,-0.1041771;-0.7645149;-0.02473947,0.008934015;0.3980906;0.0377093,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004655322;0.1988114;0.02126842,0.01059919;0.4979558;0.04243958,0.1220205;0.3691573;0.01164663,0.1907668;0.09804067;0.02467328,0.2413493;-0.1744685;-0.01507799,-0.09909587;0.3600836;0.0009538308,-0.2257254;0.2875035;-0.2379962,-0.3180884;0.2251409;-0.4948618,0.07281217;0.004192243;-0.03287572,0.08237994;-0.3748402;-0.007520754,0.08387946;-0.7196791;0.05234437,0.08747265;-0.7067448;-0.04612315,-0.06773836;0.002605296;-0.04248207,-0.1041295;-0.3744587;-0.01250841,-0.116524;-0.7200942;0.04118009,-0.1047017;-0.7647598;-0.02428201,0.008560233;0.3980787;0.03792046,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004655322;0.1988114;0.02126842,0.01059919;0.4979558;0.04243958,0.1220205;0.3691573;0.01164663,0.1907668;0.09804067;0.02467328,0.2413493;-0.1744685;-0.01507799,-0.09909587;0.3600836;0.0009538308,-0.2257254;0.2875035;-0.2379962,-0.3180884;0.2251409;-0.4948618,0.07281217;0.004192243;-0.03287572,0.08237994;-0.3748402;-0.007520754,0.08387946;-0.7196791;0.05234437,0.08747265;-0.7067448;-0.04612315,-0.06773836;0.002605296;-0.04248207,-0.1041295;-0.3744587;-0.01250841,-0.116524;-0.7200942;0.04118009,-0.1047017;-0.7647598;-0.02428201,0.008560233;0.3980787;0.03792046,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004655322;0.1988114;0.02126842,0.01059919;0.4979558;0.04243958,0.1220205;0.3691573;0.01164663,0.1907668;0.09804067;0.02467328,0.2413493;-0.1744685;-0.01507799,-0.09909587;0.3600836;0.0009538308,-0.2257254;0.2875035;-0.2379962,-0.3180884;0.2251409;-0.4948618,0.07281217;0.004192243;-0.03287572,0.08237994;-0.3748402;-0.007520754,0.08387946;-0.7196791;0.05234437,0.08747265;-0.7067448;-0.04612315,-0.06773836;0.002605296;-0.04248207,-0.1041295;-0.3744587;-0.01250841,-0.116524;-0.7200942;0.04118009,-0.1047017;-0.7647598;-0.02428201,0.008560233;0.3980787;0.03792046,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004611138;0.1987918;0.0214611,0.01059837;0.4979239;0.04279137,0.121915;0.3690767;0.01167211,0.1908776;0.0980325;0.0250586,0.2414937;-0.174412;-0.01509163,-0.09880417;0.3598509;0.0005397797,-0.2198813;0.2862264;-0.2409551,-0.3085092;0.219636;-0.4980753,0.07300062;0.004176998;-0.03245707,0.08237513;-0.374885;-0.007475207,0.08394299;-0.7197448;0.05226807,0.09655989;-0.7666065;-0.01044635,-0.06770197;0.002631153;-0.04253846,-0.1038779;-0.3744403;-0.01239921,-0.1166211;-0.7200844;0.04115218,-0.1044829;-0.7646757;-0.02433683,0.008531828;0.3980498;0.03822042,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004611138;0.1987918;0.0214611,0.01059837;0.4979239;0.04279137,0.121915;0.3690767;0.01167211,0.1908776;0.0980325;0.0250586,0.2414937;-0.174412;-0.01509163,-0.09880417;0.3598509;0.0005397797,-0.2198813;0.2862264;-0.2409551,-0.3085092;0.219636;-0.4980753,0.07300062;0.004176998;-0.03245707,0.08237513;-0.374885;-0.007475207,0.08394299;-0.7197448;0.05226807,0.09655989;-0.7666065;-0.01044635,-0.06770197;0.002631153;-0.04253846,-0.1038779;-0.3744403;-0.01239921,-0.1166211;-0.7200844;0.04115218,-0.1044829;-0.7646757;-0.02433683,0.008531828;0.3980498;0.03822042,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004611138;0.1987918;0.0214611,0.01059837;0.4979239;0.04279137,0.121915;0.3690767;0.01167211,0.1908776;0.0980325;0.0250586,0.2414937;-0.174412;-0.01509163,-0.09880417;0.3598509;0.0005397797,-0.2198813;0.2862264;-0.2409551,-0.3085092;0.219636;-0.4980753,0.07300062;0.004176998;-0.03245707,0.08237513;-0.374885;-0.007475207,0.08394299;-0.7197448;0.05226807,0.09655989;-0.7666065;-0.01044635,-0.06770197;0.002631153;-0.04253846,-0.1038779;-0.3744403;-0.01239921,-0.1166211;-0.7200844;0.04115218,-0.1044829;-0.7646757;-0.02433683,0.008531828;0.3980498;0.03822042,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004500248;0.1987898;0.02150296,0.01044429;0.4979225;0.0428353,0.1217967;0.3690442;0.01183256,0.1909466;0.09803677;0.02499511,0.2416206;-0.1743944;-0.01517202,-0.09873268;0.3598256;1.955032E-05,-0.2110975;0.2802946;-0.2438021,-0.3007583;0.2178542;-0.5016046,0.07303713;0.004180303;-0.03237442,0.08220801;-0.3748955;-0.007525455,0.08391591;-0.7197546;0.05221811,0.09642045;-0.765885;-0.0114042,-0.06763681;0.00267967;-0.04263897,-0.1041063;-0.3744061;-0.01303634,-0.1167869;-0.7199442;0.04120917,-0.1044902;-0.7640785;-0.02476737,0.008394532;0.398048;0.03826625,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004500248;0.1987898;0.02150296,0.01044429;0.4979225;0.0428353,0.1217967;0.3690442;0.01183256,0.1909466;0.09803677;0.02499511,0.2416206;-0.1743944;-0.01517202,-0.09873268;0.3598256;1.955032E-05,-0.2110975;0.2802946;-0.2438021,-0.3007583;0.2178542;-0.5016046,0.07303713;0.004180303;-0.03237442,0.08220801;-0.3748955;-0.007525455,0.08391591;-0.7197546;0.05221811,0.09642045;-0.765885;-0.0114042,-0.06763681;0.00267967;-0.04263897,-0.1041063;-0.3744061;-0.01303634,-0.1167869;-0.7199442;0.04120917,-0.1044902;-0.7640785;-0.02476737,0.008394532;0.398048;0.03826625,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004500248;0.1987898;0.02150296,0.01044429;0.4979225;0.0428353,0.1217967;0.3690442;0.01183256,0.1909466;0.09803677;0.02499511,0.2416206;-0.1743944;-0.01517202,-0.09873268;0.3598256;1.955032E-05,-0.2110975;0.2802946;-0.2438021,-0.3007583;0.2178542;-0.5016046,0.07303713;0.004180303;-0.03237442,0.08220801;-0.3748955;-0.007525455,0.08391591;-0.7197546;0.05221811,0.09642045;-0.765885;-0.0114042,-0.06763681;0.00267967;-0.04263897,-0.1041063;-0.3744061;-0.01303634,-0.1167869;-0.7199442;0.04120917,-0.1044902;-0.7640785;-0.02476737,0.008394532;0.398048;0.03826625,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004454913;0.1987842;0.02156343,0.01036388;0.4979124;0.04296704,0.1217911;0.3691167;0.01215567,0.1909391;0.09809297;0.02499,0.2418616;-0.1742656;-0.01535505,-0.09872527;0.3597714;-5.624071E-05,-0.2077273;0.2754335;-0.243789,-0.2947848;0.2049475;-0.5004069,0.0730681;0.004182086;-0.03230424,0.08221194;-0.3748975;-0.007504828,0.08396906;-0.7197663;0.05218141,0.09595455;-0.7665966;-0.01069506,-0.06753217;0.002727551;-0.04280147,-0.1040079;-0.3743934;-0.01365813,-0.1167755;-0.7198439;0.04112244,-0.1048011;-0.7644975;-0.0243257,0.008318959;0.3980387;0.03837739,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004454913;0.1987842;0.02156343,0.01036388;0.4979124;0.04296704,0.1217911;0.3691167;0.01215567,0.1909391;0.09809297;0.02499,0.2418616;-0.1742656;-0.01535505,-0.09872527;0.3597714;-5.624071E-05,-0.2077273;0.2754335;-0.243789,-0.2947848;0.2049475;-0.5004069,0.0730681;0.004182086;-0.03230424,0.08221194;-0.3748975;-0.007504828,0.08396906;-0.7197663;0.05218141,0.09595455;-0.7665966;-0.01069506,-0.06753217;0.002727551;-0.04280147,-0.1040079;-0.3743934;-0.01365813,-0.1167755;-0.7198439;0.04112244,-0.1048011;-0.7644975;-0.0243257,0.008318959;0.3980387;0.03837739,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.004454913;0.1987842;0.02156343,0.01036388;0.4979124;0.04296704,0.1217911;0.3691167;0.01215567,0.1909391;0.09809297;0.02499,0.2418616;-0.1742656;-0.01535505,-0.09872527;0.3597714;-5.624071E-05,-0.2077273;0.2754335;-0.243789,-0.2947848;0.2049475;-0.5004069,0.0730681;0.004182086;-0.03230424,0.08221194;-0.3748975;-0.007504828,0.08396906;-0.7197663;0.05218141,0.09595455;-0.7665966;-0.01069506,-0.06753217;0.002727551;-0.04280147,-0.1040079;-0.3743934;-0.01365813,-0.1167755;-0.7198439;0.04112244,-0.1048011;-0.7644975;-0.0243257,0.008318959;0.3980387;0.03837739,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00422672;0.1987711;0.02172977,0.009751295;0.4978861;0.04342244,0.1214794;0.3695135;0.01272122,0.1907984;0.09851208;0.02509522,0.2417641;-0.1737763;-0.01566679,-0.09899091;0.3598074;-0.0003221929,-0.2086294;0.2755217;-0.2437874,-0.2910487;0.2004276;-0.5006297,0.07309777;0.00425204;-0.03222787,0.08203939;-0.3748409;-0.007558236,0.08394396;-0.7197536;0.05186901,0.09632742;-0.766909;-0.01053044,-0.06748423;0.002721628;-0.04287739,-0.1043391;-0.3743553;-0.01364251,-0.1172114;-0.7197759;0.04130238,-0.1051351;-0.7647356;-0.02377616,0.00785138;0.3980144;0.03872841,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00422672;0.1987711;0.02172977,0.009751295;0.4978861;0.04342244,0.1214794;0.3695135;0.01272122,0.1907984;0.09851208;0.02509522,0.2417641;-0.1737763;-0.01566679,-0.09899091;0.3598074;-0.0003221929,-0.2086294;0.2755217;-0.2437874,-0.2910487;0.2004276;-0.5006297,0.07309777;0.00425204;-0.03222787,0.08203939;-0.3748409;-0.007558236,0.08394396;-0.7197536;0.05186901,0.09632742;-0.766909;-0.01053044,-0.06748423;0.002721628;-0.04287739,-0.1043391;-0.3743553;-0.01364251,-0.1172114;-0.7197759;0.04130238,-0.1051351;-0.7647356;-0.02377616,0.00785138;0.3980144;0.03872841,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00422672;0.1987711;0.02172977,0.009751295;0.4978861;0.04342244,0.1214794;0.3695135;0.01272122,0.1907984;0.09851208;0.02509522,0.2417641;-0.1737763;-0.01566679,-0.09899091;0.3598074;-0.0003221929,-0.2086294;0.2755217;-0.2437874,-0.2910487;0.2004276;-0.5006297,0.07309777;0.00425204;-0.03222787,0.08203939;-0.3748409;-0.007558236,0.08394396;-0.7197536;0.05186901,0.09632742;-0.766909;-0.01053044,-0.06748423;0.002721628;-0.04287739,-0.1043391;-0.3743553;-0.01364251,-0.1172114;-0.7197759;0.04130238,-0.1051351;-0.7647356;-0.02377616,0.00785138;0.3980144;0.03872841,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00347111;0.198795;0.02164474,0.008670354;0.4979211;0.04326024,0.120579;0.3695348;0.01261187,0.1898987;0.0985361;0.02504172,0.2411554;-0.1737481;-0.0153817,-0.09959909;0.3595088;-0.0009238012,-0.2072963;0.270191;-0.2434597,-0.2885759;0.1933861;-0.5001591,0.07325193;0.004417154;-0.03185346,0.08085428;-0.3747227;-0.007456822,0.08285625;-0.7196714;0.05175792,0.09500092;-0.766553;-0.01102518,-0.06736659;0.002655418;-0.04306612,-0.1054253;-0.3742855;-0.01361944,-0.1178504;-0.7197477;0.0411662,-0.1057882;-0.7637674;-0.02498206,0.006949577;0.3980444;0.03860323,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00347111;0.198795;0.02164474,0.008670354;0.4979211;0.04326024,0.120579;0.3695348;0.01261187,0.1898987;0.0985361;0.02504172,0.2411554;-0.1737481;-0.0153817,-0.09959909;0.3595088;-0.0009238012,-0.2072963;0.270191;-0.2434597,-0.2885759;0.1933861;-0.5001591,0.07325193;0.004417154;-0.03185346,0.08085428;-0.3747227;-0.007456822,0.08285625;-0.7196714;0.05175792,0.09500092;-0.766553;-0.01102518,-0.06736659;0.002655418;-0.04306612,-0.1054253;-0.3742855;-0.01361944,-0.1178504;-0.7197477;0.0411662,-0.1057882;-0.7637674;-0.02498206,0.006949577;0.3980444;0.03860323,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00347111;0.198795;0.02164474,0.008670354;0.4979211;0.04326024,0.120579;0.3695348;0.01261187,0.1898987;0.0985361;0.02504172,0.2411554;-0.1737481;-0.0153817,-0.09959909;0.3595088;-0.0009238012,-0.2072963;0.270191;-0.2434597,-0.2885759;0.1933861;-0.5001591,0.07325193;0.004417154;-0.03185346,0.08085428;-0.3747227;-0.007456822,0.08285625;-0.7196714;0.05175792,0.09500092;-0.766553;-0.01102518,-0.06736659;0.002655418;-0.04306612,-0.1054253;-0.3742855;-0.01361944,-0.1178504;-0.7197477;0.0411662,-0.1057882;-0.7637674;-0.02498206,0.006949577;0.3980444;0.03860323,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003358129;0.1987849;0.02175514,0.008336162;0.4979108;0.04341868,0.1203756;0.3698526;0.0127059,0.1896233;0.09885991;0.0256549,0.2408741;-0.1733803;-0.01507125,-0.0997611;0.3595486;-0.001116186,-0.2058448;0.2672912;-0.2432625,-0.2819045;0.1858927;-0.5001462,0.07334181;0.004420942;-0.03164545,0.08090696;-0.3747281;-0.007380292,0.08297193;-0.7196897;0.05175717,0.09492985;-0.7667217;-0.01087736,-0.0673288;0.002640695;-0.04312608,-0.1050899;-0.3743186;-0.01353277,-0.1177677;-0.7197704;0.04126081,-0.1059822;-0.764161;-0.02452019,0.006677448;0.3980334;0.03875554,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003358129;0.1987849;0.02175514,0.008336162;0.4979108;0.04341868,0.1203756;0.3698526;0.0127059,0.1896233;0.09885991;0.0256549,0.2408741;-0.1733803;-0.01507125,-0.0997611;0.3595486;-0.001116186,-0.2058448;0.2672912;-0.2432625,-0.2819045;0.1858927;-0.5001462,0.07334181;0.004420942;-0.03164545,0.08090696;-0.3747281;-0.007380292,0.08297193;-0.7196897;0.05175717,0.09492985;-0.7667217;-0.01087736,-0.0673288;0.002640695;-0.04312608,-0.1050899;-0.3743186;-0.01353277,-0.1177677;-0.7197704;0.04126081,-0.1059822;-0.764161;-0.02452019,0.006677448;0.3980334;0.03875554,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003358129;0.1987849;0.02175514,0.008336162;0.4979108;0.04341868,0.1203756;0.3698526;0.0127059,0.1896233;0.09885991;0.0256549,0.2408741;-0.1733803;-0.01507125,-0.0997611;0.3595486;-0.001116186,-0.2058448;0.2672912;-0.2432625,-0.2819045;0.1858927;-0.5001462,0.07334181;0.004420942;-0.03164545,0.08090696;-0.3747281;-0.007380292,0.08297193;-0.7196897;0.05175717,0.09492985;-0.7667217;-0.01087736,-0.0673288;0.002640695;-0.04312608,-0.1050899;-0.3743186;-0.01353277,-0.1177677;-0.7197704;0.04126081,-0.1059822;-0.764161;-0.02452019,0.006677448;0.3980334;0.03875554,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003308204;0.198778;0.02182536,0.008289687;0.4979095;0.04341134,0.120466;0.3697885;0.0134578,0.1894831;0.09871352;0.02590712,0.240705;-0.1734492;-0.0153697,-0.09972856;0.3597045;-0.001490984,-0.2058421;0.2658134;-0.2429954,-0.275884;0.1601129;-0.4926382,0.0734155;0.004395464;-0.03147769,0.08099576;-0.3747626;-0.007359523,0.0829182;-0.7196434;0.05225226,0.0876807;-0.7067093;-0.04616559,-0.06729433;0.002671055;-0.04317798,-0.1049187;-0.3743005;-0.01356617,-0.1177087;-0.7197644;0.04112537,-0.1051332;-0.7638004;-0.02490889,0.006618117;0.3980309;0.03877641,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003308204;0.198778;0.02182536,0.008289687;0.4979095;0.04341134,0.120466;0.3697885;0.0134578,0.1894831;0.09871352;0.02590712,0.240705;-0.1734492;-0.0153697,-0.09972856;0.3597045;-0.001490984,-0.2058421;0.2658134;-0.2429954,-0.275884;0.1601129;-0.4926382,0.0734155;0.004395464;-0.03147769,0.08099576;-0.3747626;-0.007359523,0.0829182;-0.7196434;0.05225226,0.0876807;-0.7067093;-0.04616559,-0.06729433;0.002671055;-0.04317798,-0.1049187;-0.3743005;-0.01356617,-0.1177087;-0.7197644;0.04112537,-0.1051332;-0.7638004;-0.02490889,0.006618117;0.3980309;0.03877641,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003308204;0.198778;0.02182536,0.008289687;0.4979095;0.04341134,0.120466;0.3697885;0.0134578,0.1894831;0.09871352;0.02590712,0.240705;-0.1734492;-0.0153697,-0.09972856;0.3597045;-0.001490984,-0.2058421;0.2658134;-0.2429954,-0.275884;0.1601129;-0.4926382,0.0734155;0.004395464;-0.03147769,0.08099576;-0.3747626;-0.007359523,0.0829182;-0.7196434;0.05225226,0.0876807;-0.7067093;-0.04616559,-0.06729433;0.002671055;-0.04317798,-0.1049187;-0.3743005;-0.01356617,-0.1177087;-0.7197644;0.04112537,-0.1051332;-0.7638004;-0.02490889,0.006618117;0.3980309;0.03877641,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003196604;0.1987761;0.02185964,0.008059246;0.4979167;0.04333966,0.1203097;0.3700302;0.01338947,0.1894408;0.09900624;0.02630951,0.2406613;-0.1731736;-0.01485596,-0.09983354;0.3596388;-0.001715705,-0.2018526;0.2106244;-0.2156942,-0.273526;0.1438558;-0.4780011,0.07348315;0.004384139;-0.031321,0.08117265;-0.37478;-0.007333415,0.08299768;-0.7196535;0.05232359,0.08776499;-0.7067182;-0.04609425,-0.06725282;0.002670431;-0.04324264,-0.1044924;-0.3743303;-0.01351582,-0.1175018;-0.7197598;0.04134026,-0.1046748;-0.763185;-0.02532466,0.006412582;0.3980357;0.03874958,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003196604;0.1987761;0.02185964,0.008059246;0.4979167;0.04333966,0.1203097;0.3700302;0.01338947,0.1894408;0.09900624;0.02630951,0.2406613;-0.1731736;-0.01485596,-0.09983354;0.3596388;-0.001715705,-0.2018526;0.2106244;-0.2156942,-0.273526;0.1438558;-0.4780011,0.07348315;0.004384139;-0.031321,0.08117265;-0.37478;-0.007333415,0.08299768;-0.7196535;0.05232359,0.08776499;-0.7067182;-0.04609425,-0.06725282;0.002670431;-0.04324264,-0.1044924;-0.3743303;-0.01351582,-0.1175018;-0.7197598;0.04134026,-0.1046748;-0.763185;-0.02532466,0.006412582;0.3980357;0.03874958,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003196604;0.1987761;0.02185964,0.008059246;0.4979167;0.04333966,0.1203097;0.3700302;0.01338947,0.1894408;0.09900624;0.02630951,0.2406613;-0.1731736;-0.01485596,-0.09983354;0.3596388;-0.001715705,-0.2018526;0.2106244;-0.2156942,-0.273526;0.1438558;-0.4780011,0.07348315;0.004384139;-0.031321,0.08117265;-0.37478;-0.007333415,0.08299768;-0.7196535;0.05232359,0.08776499;-0.7067182;-0.04609425,-0.06725282;0.002670431;-0.04324264,-0.1044924;-0.3743303;-0.01351582,-0.1175018;-0.7197598;0.04134026,-0.1046748;-0.763185;-0.02532466,0.006412582;0.3980357;0.03874958,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003064128;0.1987831;0.02181469,0.007599229;0.4979495;0.04298859,0.1200618;0.3702884;0.01333303,0.1893982;0.09933811;0.02669009,0.2407994;-0.1729631;-0.01343447,-0.09996049;0.3593629;-0.00220691,-0.1992966;0.2500588;-0.2400828,-0.2722931;0.1494546;-0.4909818,0.07358722;0.004324448;-0.03108409,0.08149249;-0.3748172;-0.006812377,0.08315323;-0.7198504;0.05191871,0.08799656;-0.7069143;-0.04649556,-0.06718808;0.00271605;-0.04334033,-0.1043646;-0.3742844;-0.01353272,-0.117444;-0.7197065;0.04135405,-0.1048645;-0.7635687;-0.02487385,0.006071795;0.3980606;0.03853176,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003064128;0.1987831;0.02181469,0.007599229;0.4979495;0.04298859,0.1200618;0.3702884;0.01333303,0.1893982;0.09933811;0.02669009,0.2407994;-0.1729631;-0.01343447,-0.09996049;0.3593629;-0.00220691,-0.1992966;0.2500588;-0.2400828,-0.2722931;0.1494546;-0.4909818,0.07358722;0.004324448;-0.03108409,0.08149249;-0.3748172;-0.006812377,0.08315323;-0.7198504;0.05191871,0.08799656;-0.7069143;-0.04649556,-0.06718808;0.00271605;-0.04334033,-0.1043646;-0.3742844;-0.01353272,-0.117444;-0.7197065;0.04135405,-0.1048645;-0.7635687;-0.02487385,0.006071795;0.3980606;0.03853176,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.003064128;0.1987831;0.02181469,0.007599229;0.4979495;0.04298859,0.1200618;0.3702884;0.01333303,0.1893982;0.09933811;0.02669009,0.2407994;-0.1729631;-0.01343447,-0.09996049;0.3593629;-0.00220691,-0.1992966;0.2500588;-0.2400828,-0.2722931;0.1494546;-0.4909818,0.07358722;0.004324448;-0.03108409,0.08149249;-0.3748172;-0.006812377,0.08315323;-0.7198504;0.05191871,0.08799656;-0.7069143;-0.04649556,-0.06718808;0.00271605;-0.04334033,-0.1043646;-0.3742844;-0.01353272,-0.117444;-0.7197065;0.04135405,-0.1048645;-0.7635687;-0.02487385,0.006071795;0.3980606;0.03853176,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00295069;0.198785;0.02181308,0.0074262;0.4979555;0.04294262,0.1199141;0.3703309;0.01330951,0.189343;0.09943336;0.02724338,0.2408036;-0.1730078;-0.01184104,-0.1001035;0.3593764;-0.002289593,-0.2010185;0.2470561;-0.2380868,-0.2734927;0.144959;-0.4885337,0.07359081;0.004356043;-0.03107117,0.08153579;-0.3747908;-0.006893724,0.0829995;-0.7198293;0.05181152,0.08785552;-0.7068939;-0.046602,-0.06718776;0.002747285;-0.04333886,-0.1044284;-0.3742461;-0.01352026,-0.1175952;-0.7196653;0.04136351,-0.1046116;-0.7628346;-0.02555196,0.005912826;0.3980658;0.03849848,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00295069;0.198785;0.02181308,0.0074262;0.4979555;0.04294262,0.1199141;0.3703309;0.01330951,0.189343;0.09943336;0.02724338,0.2408036;-0.1730078;-0.01184104,-0.1001035;0.3593764;-0.002289593,-0.2010185;0.2470561;-0.2380868,-0.2734927;0.144959;-0.4885337,0.07359081;0.004356043;-0.03107117,0.08153579;-0.3747908;-0.006893724,0.0829995;-0.7198293;0.05181152,0.08785552;-0.7068939;-0.046602,-0.06718776;0.002747285;-0.04333886,-0.1044284;-0.3742461;-0.01352026,-0.1175952;-0.7196653;0.04136351,-0.1046116;-0.7628346;-0.02555196,0.005912826;0.3980658;0.03849848,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00295069;0.198785;0.02181308,0.0074262;0.4979555;0.04294262,0.1199141;0.3703309;0.01330951,0.189343;0.09943336;0.02724338,0.2408036;-0.1730078;-0.01184104,-0.1001035;0.3593764;-0.002289593,-0.2010185;0.2470561;-0.2380868,-0.2734927;0.144959;-0.4885337,0.07359081;0.004356043;-0.03107117,0.08153579;-0.3747908;-0.006893724,0.0829995;-0.7198293;0.05181152,0.08785552;-0.7068939;-0.046602,-0.06718776;0.002747285;-0.04333886,-0.1044284;-0.3742461;-0.01352026,-0.1175952;-0.7196653;0.04136351,-0.1046116;-0.7628346;-0.02555196,0.005912826;0.3980658;0.03849848,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00266626;0.1988012;0.02170156,0.00698335;0.4979832;0.04271315,0.1194909;0.3703617;0.01307647,0.1888585;0.09946433;0.02731621,0.2406782;-0.1729673;-0.01135888,-0.1005331;0.359422;-0.002494093,-0.2035932;0.2418308;-0.2347675,-0.2739467;0.1407811;-0.4862418,0.07367028;0.004449304;-0.03086896,0.08094009;-0.374742;-0.007180942,0.08237701;-0.7197838;0.0515057,0.08722957;-0.7068527;-0.04690722,-0.06714847;0.002728315;-0.04340091,-0.1046038;-0.3742369;-0.01349615,-0.117996;-0.7196485;0.04138081,-0.1061042;-0.7638702;-0.02457158,0.005493185;0.3980924;0.03828611,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00266626;0.1988012;0.02170156,0.00698335;0.4979832;0.04271315,0.1194909;0.3703617;0.01307647,0.1888585;0.09946433;0.02731621,0.2406782;-0.1729673;-0.01135888,-0.1005331;0.359422;-0.002494093,-0.2035932;0.2418308;-0.2347675,-0.2739467;0.1407811;-0.4862418,0.07367028;0.004449304;-0.03086896,0.08094009;-0.374742;-0.007180942,0.08237701;-0.7197838;0.0515057,0.08722957;-0.7068527;-0.04690722,-0.06714847;0.002728315;-0.04340091,-0.1046038;-0.3742369;-0.01349615,-0.117996;-0.7196485;0.04138081,-0.1061042;-0.7638702;-0.02457158,0.005493185;0.3980924;0.03828611,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00266626;0.1988012;0.02170156,0.00698335;0.4979832;0.04271315,0.1194909;0.3703617;0.01307647,0.1888585;0.09946433;0.02731621,0.2406782;-0.1729673;-0.01135888,-0.1005331;0.359422;-0.002494093,-0.2035932;0.2418308;-0.2347675,-0.2739467;0.1407811;-0.4862418,0.07367028;0.004449304;-0.03086896,0.08094009;-0.374742;-0.007180942,0.08237701;-0.7197838;0.0515057,0.08722957;-0.7068527;-0.04690722,-0.06714847;0.002728315;-0.04340091,-0.1046038;-0.3742369;-0.01349615,-0.117996;-0.7196485;0.04138081,-0.1061042;-0.7638702;-0.02457158,0.005493185;0.3980924;0.03828611,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002629479;0.198806;0.02166237,0.006921236;0.4979942;0.04259568,0.1194641;0.3704535;0.01305257,0.1890879;0.0996781;0.02832307,0.2409828;-0.1727118;-0.01054452,-0.1005789;0.3594499;-0.002659097,-0.205712;0.193307;-0.2020169,-0.2727647;0.1313741;-0.466721,0.07365928;0.004496602;-0.03088836,0.08079879;-0.3747021;-0.007279446,0.08232316;-0.7197468;0.05138753,0.08721792;-0.7068188;-0.04702278,-0.06714832;0.002704446;-0.04340264,-0.1045173;-0.3742828;-0.013668,-0.1181027;-0.7196752;0.04128228,-0.1056036;-0.7637126;-0.02476493,0.00542941;0.3981027;0.03818456,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002629479;0.198806;0.02166237,0.006921236;0.4979942;0.04259568,0.1194641;0.3704535;0.01305257,0.1890879;0.0996781;0.02832307,0.2409828;-0.1727118;-0.01054452,-0.1005789;0.3594499;-0.002659097,-0.205712;0.193307;-0.2020169,-0.2727647;0.1313741;-0.466721,0.07365928;0.004496602;-0.03088836,0.08079879;-0.3747021;-0.007279446,0.08232316;-0.7197468;0.05138753,0.08721792;-0.7068188;-0.04702278,-0.06714832;0.002704446;-0.04340264,-0.1045173;-0.3742828;-0.013668,-0.1181027;-0.7196752;0.04128228,-0.1056036;-0.7637126;-0.02476493,0.00542941;0.3981027;0.03818456,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002629479;0.198806;0.02166237,0.006921236;0.4979942;0.04259568,0.1194641;0.3704535;0.01305257,0.1890879;0.0996781;0.02832307,0.2409828;-0.1727118;-0.01054452,-0.1005789;0.3594499;-0.002659097,-0.205712;0.193307;-0.2020169,-0.2727647;0.1313741;-0.466721,0.07365928;0.004496602;-0.03088836,0.08079879;-0.3747021;-0.007279446,0.08232316;-0.7197468;0.05138753,0.08721792;-0.7068188;-0.04702278,-0.06714832;0.002704446;-0.04340264,-0.1045173;-0.3742828;-0.013668,-0.1181027;-0.7196752;0.04128228,-0.1056036;-0.7637126;-0.02476493,0.00542941;0.3981027;0.03818456,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002488574;0.1988081;0.02166024,0.006567553;0.4980018;0.04255237,0.1192244;0.3705814;0.01299998,0.1885627;0.09977543;0.02900935,0.2411126;-0.1725721;-0.009270448,-0.1008404;0.3593947;-0.002624817,-0.2061957;0.1933259;-0.2019271,-0.2728609;0.1230573;-0.46464,0.0736711;0.004547661;-0.0308527,0.08076755;-0.374672;-0.007569727,0.08207952;-0.7196915;0.05125074,0.08690919;-0.7067615;-0.04716314,-0.06717;0.00268875;-0.04337005,-0.1046222;-0.3742915;-0.01365102,-0.1182597;-0.7197011;0.04117846,-0.10627;-0.764802;-0.02375308,0.005167046;0.398108;0.03816371,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002488574;0.1988081;0.02166024,0.006567553;0.4980018;0.04255237,0.1192244;0.3705814;0.01299998,0.1885627;0.09977543;0.02900935,0.2411126;-0.1725721;-0.009270448,-0.1008404;0.3593947;-0.002624817,-0.2061957;0.1933259;-0.2019271,-0.2728609;0.1230573;-0.46464,0.0736711;0.004547661;-0.0308527,0.08076755;-0.374672;-0.007569727,0.08207952;-0.7196915;0.05125074,0.08690919;-0.7067615;-0.04716314,-0.06717;0.00268875;-0.04337005,-0.1046222;-0.3742915;-0.01365102,-0.1182597;-0.7197011;0.04117846,-0.10627;-0.764802;-0.02375308,0.005167046;0.398108;0.03816371,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002488574;0.1988081;0.02166024,0.006567553;0.4980018;0.04255237,0.1192244;0.3705814;0.01299998,0.1885627;0.09977543;0.02900935,0.2411126;-0.1725721;-0.009270448,-0.1008404;0.3593947;-0.002624817,-0.2061957;0.1933259;-0.2019271,-0.2728609;0.1230573;-0.46464,0.0736711;0.004547661;-0.0308527,0.08076755;-0.374672;-0.007569727,0.08207952;-0.7196915;0.05125074,0.08690919;-0.7067615;-0.04716314,-0.06717;0.00268875;-0.04337005,-0.1046222;-0.3742915;-0.01365102,-0.1182597;-0.7197011;0.04117846,-0.10627;-0.764802;-0.02375308,0.005167046;0.398108;0.03816371,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002294835;0.1988172;0.02159729,0.006316654;0.4980215;0.04233687,0.1189678;0.3705231;0.01291236,0.1882772;0.0997237;0.02915763,0.2410373;-0.1727878;-0.007636799,-0.1010851;0.359226;-0.002607521,-0.2068868;0.1928862;-0.2014469,-0.2734339;0.1131911;-0.4614857,0.07370936;0.00464898;-0.030746,0.08031068;-0.3745866;-0.007576684,0.08162776;-0.7195863;0.05135913,0.08641103;-0.7066571;-0.04705688,-0.0671443;0.002625979;-0.04341368,-0.1048952;-0.3743235;-0.01368169,-0.1188803;-0.7196827;0.04137646,-0.1063007;-0.7646045;-0.02365032,0.004916242;0.3981246;0.0380201,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002294835;0.1988172;0.02159729,0.006316654;0.4980215;0.04233687,0.1189678;0.3705231;0.01291236,0.1882772;0.0997237;0.02915763,0.2410373;-0.1727878;-0.007636799,-0.1010851;0.359226;-0.002607521,-0.2068868;0.1928862;-0.2014469,-0.2734339;0.1131911;-0.4614857,0.07370936;0.00464898;-0.030746,0.08031068;-0.3745866;-0.007576684,0.08162776;-0.7195863;0.05135913,0.08641103;-0.7066571;-0.04705688,-0.0671443;0.002625979;-0.04341368,-0.1048952;-0.3743235;-0.01368169,-0.1188803;-0.7196827;0.04137646,-0.1063007;-0.7646045;-0.02365032,0.004916242;0.3981246;0.0380201,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002294835;0.1988172;0.02159729,0.006316654;0.4980215;0.04233687,0.1189678;0.3705231;0.01291236,0.1882772;0.0997237;0.02915763,0.2410373;-0.1727878;-0.007636799,-0.1010851;0.359226;-0.002607521,-0.2068868;0.1928862;-0.2014469,-0.2734339;0.1131911;-0.4614857,0.07370936;0.00464898;-0.030746,0.08031068;-0.3745866;-0.007576684,0.08162776;-0.7195863;0.05135913,0.08641103;-0.7066571;-0.04705688,-0.0671443;0.002625979;-0.04341368,-0.1048952;-0.3743235;-0.01368169,-0.1188803;-0.7196827;0.04137646,-0.1063007;-0.7646045;-0.02365032,0.004916242;0.3981246;0.0380201,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00221305;0.1988524;0.02127964,0.006405191;0.4981396;0.04066724,0.1191406;0.3706484;0.01255006,0.1882717;0.09982917;0.02921886,0.241567;-0.1726764;-0.006841062,-0.1014699;0.3594482;-0.002769589,-0.2024513;0.2154913;-0.2206666,-0.2685749;0.1139893;-0.4731048,0.0737516;0.004752687;-0.03062864,0.07986162;-0.3745041;-0.007672263,0.0810483;-0.7195059;0.05125418,0.08580342;-0.7066063;-0.04715805,-0.06711435;0.002565798;-0.04346355,-0.1053703;-0.3743279;-0.01367062,-0.1194289;-0.7196829;0.04139506,-0.1069497;-0.7648256;-0.02339575,0.004925814;0.3982201;0.03693815,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00221305;0.1988524;0.02127964,0.006405191;0.4981396;0.04066724,0.1191406;0.3706484;0.01255006,0.1882717;0.09982917;0.02921886,0.241567;-0.1726764;-0.006841062,-0.1014699;0.3594482;-0.002769589,-0.2024513;0.2154913;-0.2206666,-0.2685749;0.1139893;-0.4731048,0.0737516;0.004752687;-0.03062864,0.07986162;-0.3745041;-0.007672263,0.0810483;-0.7195059;0.05125418,0.08580342;-0.7066063;-0.04715805,-0.06711435;0.002565798;-0.04346355,-0.1053703;-0.3743279;-0.01367062,-0.1194289;-0.7196829;0.04139506,-0.1069497;-0.7648256;-0.02339575,0.004925814;0.3982201;0.03693815,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00221305;0.1988524;0.02127964,0.006405191;0.4981396;0.04066724,0.1191406;0.3706484;0.01255006,0.1882717;0.09982917;0.02921886,0.241567;-0.1726764;-0.006841062,-0.1014699;0.3594482;-0.002769589,-0.2024513;0.2154913;-0.2206666,-0.2685749;0.1139893;-0.4731048,0.0737516;0.004752687;-0.03062864,0.07986162;-0.3745041;-0.007672263,0.0810483;-0.7195059;0.05125418,0.08580342;-0.7066063;-0.04715805,-0.06711435;0.002565798;-0.04346355,-0.1053703;-0.3743279;-0.01367062,-0.1194289;-0.7196829;0.04139506,-0.1069497;-0.7648256;-0.02339575,0.004925814;0.3982201;0.03693815,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002117898;0.1988613;0.02120648,0.00623195;0.4981575;0.04046623,0.119008;0.3707077;0.01241787,0.1881093;0.09990022;0.02939743,0.2417735;-0.1726771;-0.005555894,-0.1017141;0.3594246;-0.002621885,-0.2028781;0.2136186;-0.2192009,-0.2696616;0.1022899;-0.4672853,0.07378619;0.004820642;-0.03053455,0.0796903;-0.3744462;-0.007690752,0.0808432;-0.7194587;0.05117399,0.08549567;-0.7065607;-0.04724287,-0.06710357;0.002527673;-0.04348242,-0.1057098;-0.3743446;-0.01387123,-0.1195114;-0.7196705;0.04144118,-0.1069996;-0.7644911;-0.02371513,0.004778528;0.3982358;0.03678653,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002117898;0.1988613;0.02120648,0.00623195;0.4981575;0.04046623,0.119008;0.3707077;0.01241787,0.1881093;0.09990022;0.02939743,0.2417735;-0.1726771;-0.005555894,-0.1017141;0.3594246;-0.002621885,-0.2028781;0.2136186;-0.2192009,-0.2696616;0.1022899;-0.4672853,0.07378619;0.004820642;-0.03053455,0.0796903;-0.3744462;-0.007690752,0.0808432;-0.7194587;0.05117399,0.08549567;-0.7065607;-0.04724287,-0.06710357;0.002527673;-0.04348242,-0.1057098;-0.3743446;-0.01387123,-0.1195114;-0.7196705;0.04144118,-0.1069996;-0.7644911;-0.02371513,0.004778528;0.3982358;0.03678653,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002085971;0.1988634;0.02118941,0.006151325;0.4981619;0.04042487,0.1188886;0.3705202;0.01233228,0.1881224;0.09978476;0.02991118,0.2414824;-0.1728489;-0.005069148,-0.1018478;0.3594709;-0.002507228,-0.2022986;0.2103396;-0.2171452,-0.2700585;0.09104492;-0.46123,0.07381361;0.004822102;-0.03046799,0.07975923;-0.3744523;-0.007761704,0.08083019;-0.7194777;0.05102915,0.08539385;-0.7065783;-0.0473921,-0.06709421;0.002532058;-0.04349663,-0.1057193;-0.3743394;-0.01389972,-0.1194908;-0.7196587;0.04146169,-0.1071091;-0.764733;-0.02342714,0.004715964;0.3982398;0.03675022,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002085971;0.1988634;0.02118941,0.006151325;0.4981619;0.04042487,0.1188886;0.3705202;0.01233228,0.1881224;0.09978476;0.02991118,0.2414824;-0.1728489;-0.005069148,-0.1018478;0.3594709;-0.002507228,-0.2022986;0.2103396;-0.2171452,-0.2700585;0.09104492;-0.46123,0.07381361;0.004822102;-0.03046799,0.07975923;-0.3744523;-0.007761704,0.08083019;-0.7194777;0.05102915,0.08539385;-0.7065783;-0.0473921,-0.06709421;0.002532058;-0.04349663,-0.1057193;-0.3743394;-0.01389972,-0.1194908;-0.7196587;0.04146169,-0.1071091;-0.764733;-0.02342714,0.004715964;0.3982398;0.03675022,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002085971;0.1988634;0.02118941,0.006151325;0.4981619;0.04042487,0.1188886;0.3705202;0.01233228,0.1881224;0.09978476;0.02991118,0.2414824;-0.1728489;-0.005069148,-0.1018478;0.3594709;-0.002507228,-0.2022986;0.2103396;-0.2171452,-0.2700585;0.09104492;-0.46123,0.07381361;0.004822102;-0.03046799,0.07975923;-0.3744523;-0.007761704,0.08083019;-0.7194777;0.05102915,0.08539385;-0.7065783;-0.0473921,-0.06709421;0.002532058;-0.04349663,-0.1057193;-0.3743394;-0.01389972,-0.1194908;-0.7196587;0.04146169,-0.1071091;-0.764733;-0.02342714,0.004715964;0.3982398;0.03675022,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002228104;0.1988847;0.02097426,0.006701581;0.4982225;0.0394835,0.1193394;0.3704915;0.0120525,0.1886549;0.09978926;0.02981866,0.2420964;-0.1728547;-0.004956424,-0.1017734;0.3595755;-0.002385352,-0.2022995;0.2074671;-0.2148883,-0.2679195;0.07160945;-0.4507627,0.07380567;0.004861858;-0.03048088,0.07998134;-0.3744213;-0.007983016,0.08043843;-0.7193404;0.05143525,0.08491179;-0.7064673;-0.04698558,-0.06710454;0.002496594;-0.04348273,-0.1048775;-0.3744385;-0.01359729,-0.1192081;-0.7197092;0.04192591,-0.1067834;-0.7645778;-0.0231918,0.0051015;0.3982936;0.03606807,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002228104;0.1988847;0.02097426,0.006701581;0.4982225;0.0394835,0.1193394;0.3704915;0.0120525,0.1886549;0.09978926;0.02981866,0.2420964;-0.1728547;-0.004956424,-0.1017734;0.3595755;-0.002385352,-0.2022995;0.2074671;-0.2148883,-0.2679195;0.07160945;-0.4507627,0.07380567;0.004861858;-0.03048088,0.07998134;-0.3744213;-0.007983016,0.08043843;-0.7193404;0.05143525,0.08491179;-0.7064673;-0.04698558,-0.06710454;0.002496594;-0.04348273,-0.1048775;-0.3744385;-0.01359729,-0.1192081;-0.7197092;0.04192591,-0.1067834;-0.7645778;-0.0231918,0.0051015;0.3982936;0.03606807,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002228104;0.1988847;0.02097426,0.006701581;0.4982225;0.0394835,0.1193394;0.3704915;0.0120525,0.1886549;0.09978926;0.02981866,0.2420964;-0.1728547;-0.004956424,-0.1017734;0.3595755;-0.002385352,-0.2022995;0.2074671;-0.2148883,-0.2679195;0.07160945;-0.4507627,0.07380567;0.004861858;-0.03048088,0.07998134;-0.3744213;-0.007983016,0.08043843;-0.7193404;0.05143525,0.08491179;-0.7064673;-0.04698558,-0.06710454;0.002496594;-0.04348273,-0.1048775;-0.3744385;-0.01359729,-0.1192081;-0.7197092;0.04192591,-0.1067834;-0.7645778;-0.0231918,0.0051015;0.3982936;0.03606807,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002280583;0.1989057;0.02076844,0.006827598;0.4982837;0.03858253,0.1195794;0.3706887;0.01191,0.1890315;0.1000109;0.02951368,0.2425346;-0.17263;-0.005190808,-0.1020453;0.3597915;-0.002150621,-0.2037352;0.2005081;-0.2087612,-0.2673996;0.06644924;-0.4461956,0.07378983;0.004922254;-0.03050952,0.0798988;-0.3743609;-0.007993193,0.08037061;-0.7192907;0.05136298,0.08472345;-0.7064332;-0.04706055,-0.06710666;0.002455794;-0.04348177,-0.105118;-0.3744604;-0.01366019,-0.1193483;-0.7197135;0.04199743,-0.106796;-0.7646036;-0.02307112,0.005201613;0.3983469;0.0354204,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002280583;0.1989057;0.02076844,0.006827598;0.4982837;0.03858253,0.1195794;0.3706887;0.01191,0.1890315;0.1000109;0.02951368,0.2425346;-0.17263;-0.005190808,-0.1020453;0.3597915;-0.002150621,-0.2037352;0.2005081;-0.2087612,-0.2673996;0.06644924;-0.4461956,0.07378983;0.004922254;-0.03050952,0.0798988;-0.3743609;-0.007993193,0.08037061;-0.7192907;0.05136298,0.08472345;-0.7064332;-0.04706055,-0.06710666;0.002455794;-0.04348177,-0.105118;-0.3744604;-0.01366019,-0.1193483;-0.7197135;0.04199743,-0.106796;-0.7646036;-0.02307112,0.005201613;0.3983469;0.0354204,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002280583;0.1989057;0.02076844,0.006827598;0.4982837;0.03858253,0.1195794;0.3706887;0.01191,0.1890315;0.1000109;0.02951368,0.2425346;-0.17263;-0.005190808,-0.1020453;0.3597915;-0.002150621,-0.2037352;0.2005081;-0.2087612,-0.2673996;0.06644924;-0.4461956,0.07378983;0.004922254;-0.03050952,0.0798988;-0.3743609;-0.007993193,0.08037061;-0.7192907;0.05136298,0.08472345;-0.7064332;-0.04706055,-0.06710666;0.002455794;-0.04348177,-0.105118;-0.3744604;-0.01366019,-0.1193483;-0.7197135;0.04199743,-0.106796;-0.7646036;-0.02307112,0.005201613;0.3983469;0.0354204,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002116634;0.1988923;0.02091369,0.006525266;0.4982644;0.03886064,0.1192983;0.3709493;0.01177609,0.1890479;0.1003324;0.02913889,0.2420621;-0.1724799;-0.004963642,-0.1023862;0.359867;-0.001817338,-0.2046373;0.1960956;-0.204607,-0.2692367;0.05678247;-0.4387411,0.0737167;0.004977687;-0.03067688,0.0794136;-0.3743103;-0.008134179,0.07998904;-0.7192218;0.05132717,0.08416414;-0.7063547;-0.04710572,-0.06720677;0.002428596;-0.04332842,-0.1055967;-0.3744476;-0.01348614,-0.1197749;-0.7196971;0.04220726,-0.1073663;-0.765072;-0.02232687,0.004929435;0.3983285;0.03565349,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002116634;0.1988923;0.02091369,0.006525266;0.4982644;0.03886064,0.1192983;0.3709493;0.01177609,0.1890479;0.1003324;0.02913889,0.2420621;-0.1724799;-0.004963642,-0.1023862;0.359867;-0.001817338,-0.2046373;0.1960956;-0.204607,-0.2692367;0.05678247;-0.4387411,0.0737167;0.004977687;-0.03067688,0.0794136;-0.3743103;-0.008134179,0.07998904;-0.7192218;0.05132717,0.08416414;-0.7063547;-0.04710572,-0.06720677;0.002428596;-0.04332842,-0.1055967;-0.3744476;-0.01348614,-0.1197749;-0.7196971;0.04220726,-0.1073663;-0.765072;-0.02232687,0.004929435;0.3983285;0.03565349,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.002116634;0.1988923;0.02091369,0.006525266;0.4982644;0.03886064,0.1192983;0.3709493;0.01177609,0.1890479;0.1003324;0.02913889,0.2420621;-0.1724799;-0.004963642,-0.1023862;0.359867;-0.001817338,-0.2046373;0.1960956;-0.204607,-0.2692367;0.05678247;-0.4387411,0.0737167;0.004977687;-0.03067688,0.0794136;-0.3743103;-0.008134179,0.07998904;-0.7192218;0.05132717,0.08416414;-0.7063547;-0.04710572,-0.06720677;0.002428596;-0.04332842,-0.1055967;-0.3744476;-0.01348614,-0.1197749;-0.7196971;0.04220726,-0.1073663;-0.765072;-0.02232687,0.004929435;0.3983285;0.03565349,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001584375;0.1989154;0.02074062,0.005686924;0.4982976;0.03858189,0.1185558;0.3711117;0.01133269,0.1887068;0.100639;0.029315,0.2413239;-0.1722136;-0.005078206,-0.1031696;0.3597813;-0.001773134,-0.2065902;0.1904353;-0.1993235,-0.2696183;0.04313105;-0.4289513,0.07379086;0.005089019;-0.03047968,0.07834414;-0.3742406;-0.008381741,0.07900493;-0.7191538;0.05106971,0.08297904;-0.7062885;-0.04737119,-0.06719015;0.002353766;-0.04335831,-0.1064312;-0.3744443;-0.01363687,-0.1206383;-0.7196846;0.04210598,-0.1080287;-0.7648872;-0.02258999,0.004199963;0.3983585;0.0354232,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001584375;0.1989154;0.02074062,0.005686924;0.4982976;0.03858189,0.1185558;0.3711117;0.01133269,0.1887068;0.100639;0.029315,0.2413239;-0.1722136;-0.005078206,-0.1031696;0.3597813;-0.001773134,-0.2065902;0.1904353;-0.1993235,-0.2696183;0.04313105;-0.4289513,0.07379086;0.005089019;-0.03047968,0.07834414;-0.3742406;-0.008381741,0.07900493;-0.7191538;0.05106971,0.08297904;-0.7062885;-0.04737119,-0.06719015;0.002353766;-0.04335831,-0.1064312;-0.3744443;-0.01363687,-0.1206383;-0.7196846;0.04210598,-0.1080287;-0.7648872;-0.02258999,0.004199963;0.3983585;0.0354232,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001584375;0.1989154;0.02074062,0.005686924;0.4982976;0.03858189,0.1185558;0.3711117;0.01133269,0.1887068;0.100639;0.029315,0.2413239;-0.1722136;-0.005078206,-0.1031696;0.3597813;-0.001773134,-0.2065902;0.1904353;-0.1993235,-0.2696183;0.04313105;-0.4289513,0.07379086;0.005089019;-0.03047968,0.07834414;-0.3742406;-0.008381741,0.07900493;-0.7191538;0.05106971,0.08297904;-0.7062885;-0.04737119,-0.06719015;0.002353766;-0.04335831,-0.1064312;-0.3744443;-0.01363687,-0.1206383;-0.7196846;0.04210598,-0.1080287;-0.7648872;-0.02258999,0.004199963;0.3983585;0.0354232,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001504668;0.1989135;0.02076465,0.005507102;0.4982966;0.03861374,0.118367;0.3710123;0.01130676,0.1890365;0.1006679;0.02918758,0.2415575;-0.1721533;-0.005599681,-0.1033304;0.3595148;-0.001448069,-0.2071787;0.1853363;-0.1945216,-0.2717286;0.0315233;-0.4194102,0.07377569;0.005181323;-0.03050081,0.078195;-0.3741425;-0.008276135,0.07877938;-0.7190907;0.05097271,0.08261752;-0.7062271;-0.04747328,-0.0671996;0.002271743;-0.04334803,-0.1061623;-0.3745269;-0.01326952,-0.1208133;-0.7197637;0.04238029,-0.1081613;-0.7647482;-0.0225601,0.004045974;0.3983573;0.03545144,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001504668;0.1989135;0.02076465,0.005507102;0.4982966;0.03861374,0.118367;0.3710123;0.01130676,0.1890365;0.1006679;0.02918758,0.2415575;-0.1721533;-0.005599681,-0.1033304;0.3595148;-0.001448069,-0.2071787;0.1853363;-0.1945216,-0.2717286;0.0315233;-0.4194102,0.07377569;0.005181323;-0.03050081,0.078195;-0.3741425;-0.008276135,0.07877938;-0.7190907;0.05097271,0.08261752;-0.7062271;-0.04747328,-0.0671996;0.002271743;-0.04334803,-0.1061623;-0.3745269;-0.01326952,-0.1208133;-0.7197637;0.04238029,-0.1081613;-0.7647482;-0.0225601,0.004045974;0.3983573;0.03545144,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001504668;0.1989135;0.02076465,0.005507102;0.4982966;0.03861374,0.118367;0.3710123;0.01130676,0.1890365;0.1006679;0.02918758,0.2415575;-0.1721533;-0.005599681,-0.1033304;0.3595148;-0.001448069,-0.2071787;0.1853363;-0.1945216,-0.2717286;0.0315233;-0.4194102,0.07377569;0.005181323;-0.03050081,0.078195;-0.3741425;-0.008276135,0.07877938;-0.7190907;0.05097271,0.08261752;-0.7062271;-0.04747328,-0.0671996;0.002271743;-0.04334803,-0.1061623;-0.3745269;-0.01326952,-0.1208133;-0.7197637;0.04238029,-0.1081613;-0.7647482;-0.0225601,0.004045974;0.3983573;0.03545144,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001317617;0.1989157;0.02075584,0.005032256;0.4983068;0.03853588,0.1179993;0.3710591;0.01122473,0.1889003;0.1007678;0.02899046,0.241209;-0.1720358;-0.006251493,-0.1037764;0.3594296;-0.001188874,-0.2078906;0.1768344;-0.1861733,-0.2723747;0.02111651;-0.4097661,0.07376704;0.005224128;-0.03051444,0.07777827;-0.3740918;-0.008080354,0.07825615;-0.7190371;0.0511865,0.08193359;-0.7061706;-0.04726613,-0.06723781;0.002245195;-0.04329014,-0.106127;-0.3745414;-0.01296724,-0.1213315;-0.719779;0.04252867,-0.1088914;-0.764493;-0.02276348,0.003674381;0.3983654;0.03539451,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001317617;0.1989157;0.02075584,0.005032256;0.4983068;0.03853588,0.1179993;0.3710591;0.01122473,0.1889003;0.1007678;0.02899046,0.241209;-0.1720358;-0.006251493,-0.1037764;0.3594296;-0.001188874,-0.2078906;0.1768344;-0.1861733,-0.2723747;0.02111651;-0.4097661,0.07376704;0.005224128;-0.03051444,0.07777827;-0.3740918;-0.008080354,0.07825615;-0.7190371;0.0511865,0.08193359;-0.7061706;-0.04726613,-0.06723781;0.002245195;-0.04329014,-0.106127;-0.3745414;-0.01296724,-0.1213315;-0.719779;0.04252867,-0.1088914;-0.764493;-0.02276348,0.003674381;0.3983654;0.03539451,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001317617;0.1989157;0.02075584,0.005032256;0.4983068;0.03853588,0.1179993;0.3710591;0.01122473,0.1889003;0.1007678;0.02899046,0.241209;-0.1720358;-0.006251493,-0.1037764;0.3594296;-0.001188874,-0.2078906;0.1768344;-0.1861733,-0.2723747;0.02111651;-0.4097661,0.07376704;0.005224128;-0.03051444,0.07777827;-0.3740918;-0.008080354,0.07825615;-0.7190371;0.0511865,0.08193359;-0.7061706;-0.04726613,-0.06723781;0.002245195;-0.04329014,-0.106127;-0.3745414;-0.01296724,-0.1213315;-0.719779;0.04252867,-0.1088914;-0.764493;-0.02276348,0.003674381;0.3983654;0.03539451,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001154753;0.198925;0.02067597,0.004559576;0.4983305;0.03827142,0.1177162;0.371336;0.01104456,0.188852;0.1010996;0.0287072,0.24158;-0.1714912;-0.007542236,-0.1040984;0.3591693;-0.001163088,-0.2042235;0.1392701;-0.1426525,-0.2766539;0.0104129;-0.3804543,0.07375817;0.005247651;-0.03053186,0.07753406;-0.3740743;-0.008158442,0.07808522;-0.7189903;0.05127793,0.08164451;-0.7061291;-0.04717814,-0.06724831;0.002241926;-0.043274,-0.1062833;-0.3745168;-0.01279208,-0.1216587;-0.7197767;0.04251741,-0.1091451;-0.7642163;-0.0230735,0.003326401;0.3983854;0.03519644,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001154753;0.198925;0.02067597,0.004559576;0.4983305;0.03827142,0.1177162;0.371336;0.01104456,0.188852;0.1010996;0.0287072,0.24158;-0.1714912;-0.007542236,-0.1040984;0.3591693;-0.001163088,-0.2042235;0.1392701;-0.1426525,-0.2766539;0.0104129;-0.3804543,0.07375817;0.005247651;-0.03053186,0.07753406;-0.3740743;-0.008158442,0.07808522;-0.7189903;0.05127793,0.08164451;-0.7061291;-0.04717814,-0.06724831;0.002241926;-0.043274,-0.1062833;-0.3745168;-0.01279208,-0.1216587;-0.7197767;0.04251741,-0.1091451;-0.7642163;-0.0230735,0.003326401;0.3983854;0.03519644,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001154753;0.198925;0.02067597,0.004559576;0.4983305;0.03827142,0.1177162;0.371336;0.01104456,0.188852;0.1010996;0.0287072,0.24158;-0.1714912;-0.007542236,-0.1040984;0.3591693;-0.001163088,-0.2042235;0.1392701;-0.1426525,-0.2766539;0.0104129;-0.3804543,0.07375817;0.005247651;-0.03053186,0.07753406;-0.3740743;-0.008158442,0.07808522;-0.7189903;0.05127793,0.08164451;-0.7061291;-0.04717814,-0.06724831;0.002241926;-0.043274,-0.1062833;-0.3745168;-0.01279208,-0.1216587;-0.7197767;0.04251741,-0.1091451;-0.7642163;-0.0230735,0.003326401;0.3983854;0.03519644,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001111198;0.1989284;0.02064578,0.004437975;0.4983357;0.03822948,0.1175866;0.371366;0.01086114,0.1892832;0.1012687;0.02838383,0.2421861;-0.1712633;-0.008052431,-0.104244;0.3591455;-0.001055442,-0.2038783;0.1384753;-0.1416886,-0.2787604;-5.204976E-05;-0.3732115,0.0737558;0.00523257;-0.03054017,0.07760308;-0.3740856;-0.008114347,0.07747604;-0.7189642;0.05154093,0.08094659;-0.7060804;-0.04692222,-0.06724804;0.002265622;-0.04327318,-0.1063078;-0.3744696;-0.01253426,-0.1217923;-0.7197448;0.04264941,-0.1105669;-0.7653517;-0.02183004,0.003220866;0.3983904;0.03515425,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001111198;0.1989284;0.02064578,0.004437975;0.4983357;0.03822948,0.1175866;0.371366;0.01086114,0.1892832;0.1012687;0.02838383,0.2421861;-0.1712633;-0.008052431,-0.104244;0.3591455;-0.001055442,-0.2038783;0.1384753;-0.1416886,-0.2787604;-5.204976E-05;-0.3732115,0.0737558;0.00523257;-0.03054017,0.07760308;-0.3740856;-0.008114347,0.07747604;-0.7189642;0.05154093,0.08094659;-0.7060804;-0.04692222,-0.06724804;0.002265622;-0.04327318,-0.1063078;-0.3744696;-0.01253426,-0.1217923;-0.7197448;0.04264941,-0.1105669;-0.7653517;-0.02183004,0.003220866;0.3983904;0.03515425,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001111198;0.1989284;0.02064578,0.004437975;0.4983357;0.03822948,0.1175866;0.371366;0.01086114,0.1892832;0.1012687;0.02838383,0.2421861;-0.1712633;-0.008052431,-0.104244;0.3591455;-0.001055442,-0.2038783;0.1384753;-0.1416886,-0.2787604;-5.204976E-05;-0.3732115,0.0737558;0.00523257;-0.03054017,0.07760308;-0.3740856;-0.008114347,0.07747604;-0.7189642;0.05154093,0.08094659;-0.7060804;-0.04692222,-0.06724804;0.002265622;-0.04327318,-0.1063078;-0.3744696;-0.01253426,-0.1217923;-0.7197448;0.04264941,-0.1105669;-0.7653517;-0.02183004,0.003220866;0.3983904;0.03515425,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001174802;0.1989428;0.02050358,0.004521118;0.4983671;0.03779746,0.1174737;0.370927;0.01015662,0.189583;0.1009706;0.02815072,0.2423968;-0.1715428;-0.008552358,-0.104212;0.3588718;-0.0009412058,-0.2030577;0.1357332;-0.1381953,-0.2811042;-0.01537655;-0.3606242,0.0737325;0.005163599;-0.03060809,0.07730929;-0.3741416;-0.007920412,0.07767803;-0.7190086;0.05180085,0.08088639;-0.7061564;-0.04666569,-0.06730565;0.002313219;-0.043181,-0.1062028;-0.3744397;-0.01245209,-0.1220105;-0.7196944;0.04276847,-0.109975;-0.7646928;-0.02227294,0.003296231;0.3984193;0.03480762,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001174802;0.1989428;0.02050358,0.004521118;0.4983671;0.03779746,0.1174737;0.370927;0.01015662,0.189583;0.1009706;0.02815072,0.2423968;-0.1715428;-0.008552358,-0.104212;0.3588718;-0.0009412058,-0.2030577;0.1357332;-0.1381953,-0.2811042;-0.01537655;-0.3606242,0.0737325;0.005163599;-0.03060809,0.07730929;-0.3741416;-0.007920412,0.07767803;-0.7190086;0.05180085,0.08088639;-0.7061564;-0.04666569,-0.06730565;0.002313219;-0.043181,-0.1062028;-0.3744397;-0.01245209,-0.1220105;-0.7196944;0.04276847,-0.109975;-0.7646928;-0.02227294,0.003296231;0.3984193;0.03480762,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001174802;0.1989428;0.02050358,0.004521118;0.4983671;0.03779746,0.1174737;0.370927;0.01015662,0.189583;0.1009706;0.02815072,0.2423968;-0.1715428;-0.008552358,-0.104212;0.3588718;-0.0009412058,-0.2030577;0.1357332;-0.1381953,-0.2811042;-0.01537655;-0.3606242,0.0737325;0.005163599;-0.03060809,0.07730929;-0.3741416;-0.007920412,0.07767803;-0.7190086;0.05180085,0.08088639;-0.7061564;-0.04666569,-0.06730565;0.002313219;-0.043181,-0.1062028;-0.3744397;-0.01245209,-0.1220105;-0.7196944;0.04276847,-0.109975;-0.7646928;-0.02227294,0.003296231;0.3984193;0.03480762,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.0008506661;0.1989552;0.02039885,0.003806627;0.4983977;0.0374323,0.1169879;0.3710735;0.01009603,0.1892912;0.1011495;0.02779689,0.2421146;-0.1712745;-0.009550974,-0.1048117;0.3588037;-0.0009637885,-0.2028118;0.1320803;-0.1328443,-0.2824911;-0.02381709;-0.3513556,0.07372912;0.005237811;-0.03060362,0.07685094;-0.3740765;-0.007999156,0.07711833;-0.7189528;0.05166886,0.08027396;-0.7061051;-0.04679859,-0.06731994;0.002256365;-0.04316172,-0.1069137;-0.374423;-0.01242093,-0.1226867;-0.7196651;0.04288843,-0.1100572;-0.7641016;-0.0226837,0.002739387;0.3984449;0.03455163,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.0008506661;0.1989552;0.02039885,0.003806627;0.4983977;0.0374323,0.1169879;0.3710735;0.01009603,0.1892912;0.1011495;0.02779689,0.2421146;-0.1712745;-0.009550974,-0.1048117;0.3588037;-0.0009637885,-0.2028118;0.1320803;-0.1328443,-0.2824911;-0.02381709;-0.3513556,0.07372912;0.005237811;-0.03060362,0.07685094;-0.3740765;-0.007999156,0.07711833;-0.7189528;0.05166886,0.08027396;-0.7061051;-0.04679859,-0.06731994;0.002256365;-0.04316172,-0.1069137;-0.374423;-0.01242093,-0.1226867;-0.7196651;0.04288843,-0.1100572;-0.7641016;-0.0226837,0.002739387;0.3984449;0.03455163,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.0008506661;0.1989552;0.02039885,0.003806627;0.4983977;0.0374323,0.1169879;0.3710735;0.01009603,0.1892912;0.1011495;0.02779689,0.2421146;-0.1712745;-0.009550974,-0.1048117;0.3588037;-0.0009637885,-0.2028118;0.1320803;-0.1328443,-0.2824911;-0.02381709;-0.3513556,0.07372912;0.005237811;-0.03060362,0.07685094;-0.3740765;-0.007999156,0.07711833;-0.7189528;0.05166886,0.08027396;-0.7061051;-0.04679859,-0.06731994;0.002256365;-0.04316172,-0.1069137;-0.374423;-0.01242093,-0.1226867;-0.7196651;0.04288843,-0.1100572;-0.7641016;-0.0226837,0.002739387;0.3984449;0.03455163,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.0008855423;0.1989719;0.0202335,0.003764255;0.498438;0.03686928,0.1170186;0.3713342;0.009615172,0.1892388;0.101408;0.02761882,0.2432917;-0.1706062;-0.01093688,-0.1049847;0.3588562;-0.0009401813,-0.2023887;0.1283153;-0.1264925,-0.2838419;-0.03415759;-0.33949,0.07374164;0.005235011;-0.03057391,0.07687508;-0.3740753;-0.007904574,0.07709164;-0.7189616;0.05170548,0.08004939;-0.7061218;-0.04676675,-0.06729158;0.002263149;-0.04320557,-0.1065159;-0.3744183;-0.01202085,-0.1227289;-0.7196918;0.04296454,-0.1098757;-0.7639897;-0.0227211,0.002724908;0.3984815;0.03410938,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.0008855423;0.1989719;0.0202335,0.003764255;0.498438;0.03686928,0.1170186;0.3713342;0.009615172,0.1892388;0.101408;0.02761882,0.2432917;-0.1706062;-0.01093688,-0.1049847;0.3588562;-0.0009401813,-0.2023887;0.1283153;-0.1264925,-0.2838419;-0.03415759;-0.33949,0.07374164;0.005235011;-0.03057391,0.07687508;-0.3740753;-0.007904574,0.07709164;-0.7189616;0.05170548,0.08004939;-0.7061218;-0.04676675,-0.06729158;0.002263149;-0.04320557,-0.1065159;-0.3744183;-0.01202085,-0.1227289;-0.7196918;0.04296454,-0.1098757;-0.7639897;-0.0227211,0.002724908;0.3984815;0.03410938,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.0008855423;0.1989719;0.0202335,0.003764255;0.498438;0.03686928,0.1170186;0.3713342;0.009615172,0.1892388;0.101408;0.02761882,0.2432917;-0.1706062;-0.01093688,-0.1049847;0.3588562;-0.0009401813,-0.2023887;0.1283153;-0.1264925,-0.2838419;-0.03415759;-0.33949,0.07374164;0.005235011;-0.03057391,0.07687508;-0.3740753;-0.007904574,0.07709164;-0.7189616;0.05170548,0.08004939;-0.7061218;-0.04676675,-0.06729158;0.002263149;-0.04320557,-0.1065159;-0.3744183;-0.01202085,-0.1227289;-0.7196918;0.04296454,-0.1098757;-0.7639897;-0.0227211,0.002724908;0.3984815;0.03410938,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001018759;0.1990008;0.01994084,0.003979407;0.4984977;0.03600448,0.1172056;0.3711936;0.009170264,0.1894094;0.1012436;0.02688,0.2437487;-0.1706325;-0.0122433,-0.1050527;0.3589957;-0.0009395778,-0.2039133;0.1259566;-0.120603,-0.283396;-0.04438491;-0.3281272,0.07371237;0.005285033;-0.03063583,0.07658362;-0.3740181;-0.00781247,0.07686482;-0.7188658;0.0520207,0.07969312;-0.7060499;-0.04645117,-0.06736034;0.002224101;-0.04310032,-0.1070381;-0.3744023;-0.0118229,-0.1230041;-0.7196872;0.04316257,-0.1101221;-0.7639771;-0.02252655,0.002907836;0.3985367;0.03342646,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001018759;0.1990008;0.01994084,0.003979407;0.4984977;0.03600448,0.1172056;0.3711936;0.009170264,0.1894094;0.1012436;0.02688,0.2437487;-0.1706325;-0.0122433,-0.1050527;0.3589957;-0.0009395778,-0.2039133;0.1259566;-0.120603,-0.283396;-0.04438491;-0.3281272,0.07371237;0.005285033;-0.03063583,0.07658362;-0.3740181;-0.00781247,0.07686482;-0.7188658;0.0520207,0.07969312;-0.7060499;-0.04645117,-0.06736034;0.002224101;-0.04310032,-0.1070381;-0.3744023;-0.0118229,-0.1230041;-0.7196872;0.04316257,-0.1101221;-0.7639771;-0.02252655,0.002907836;0.3985367;0.03342646,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001018759;0.1990008;0.01994084,0.003979407;0.4984977;0.03600448,0.1172056;0.3711936;0.009170264,0.1894094;0.1012436;0.02688,0.2437487;-0.1706325;-0.0122433,-0.1050527;0.3589957;-0.0009395778,-0.2039133;0.1259566;-0.120603,-0.283396;-0.04438491;-0.3281272,0.07371237;0.005285033;-0.03063583,0.07658362;-0.3740181;-0.00781247,0.07686482;-0.7188658;0.0520207,0.07969312;-0.7060499;-0.04645117,-0.06736034;0.002224101;-0.04310032,-0.1070381;-0.3744023;-0.0118229,-0.1230041;-0.7196872;0.04316257,-0.1101221;-0.7639771;-0.02252655,0.002907836;0.3985367;0.03342646,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00107396;0.199015;0.01979606,0.003975592;0.4985192;0.03574944,0.1171271;0.3710698;0.008683685,0.189408;0.1011627;0.02672923,0.2438143;-0.170623;-0.01292517,-0.1051722;0.3590168;-0.0007709041,-0.2042194;0.1228866;-0.1140501,-0.2843235;-0.05327165;-0.3164151,0.07374384;0.005345961;-0.03054943,0.07614101;-0.3739602;-0.007721905,0.07651117;-0.7187762;0.05229252,0.0791606;-0.7059692;-0.04618276,-0.06730552;0.002167954;-0.04318875,-0.1075403;-0.3743786;-0.01166234,-0.1234712;-0.7196485;0.04342724,-0.1097195;-0.7637085;-0.02234519,0.002917028;0.3985576;0.03318848,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00107396;0.199015;0.01979606,0.003975592;0.4985192;0.03574944,0.1171271;0.3710698;0.008683685,0.189408;0.1011627;0.02672923,0.2438143;-0.170623;-0.01292517,-0.1051722;0.3590168;-0.0007709041,-0.2042194;0.1228866;-0.1140501,-0.2843235;-0.05327165;-0.3164151,0.07374384;0.005345961;-0.03054943,0.07614101;-0.3739602;-0.007721905,0.07651117;-0.7187762;0.05229252,0.0791606;-0.7059692;-0.04618276,-0.06730552;0.002167954;-0.04318875,-0.1075403;-0.3743786;-0.01166234,-0.1234712;-0.7196485;0.04342724,-0.1097195;-0.7637085;-0.02234519,0.002917028;0.3985576;0.03318848,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00107396;0.199015;0.01979606,0.003975592;0.4985192;0.03574944,0.1171271;0.3710698;0.008683685,0.189408;0.1011627;0.02672923,0.2438143;-0.170623;-0.01292517,-0.1051722;0.3590168;-0.0007709041,-0.2042194;0.1228866;-0.1140501,-0.2843235;-0.05327165;-0.3164151,0.07374384;0.005345961;-0.03054943,0.07614101;-0.3739602;-0.007721905,0.07651117;-0.7187762;0.05229252,0.0791606;-0.7059692;-0.04618276,-0.06730552;0.002167954;-0.04318875,-0.1075403;-0.3743786;-0.01166234,-0.1234712;-0.7196485;0.04342724,-0.1097195;-0.7637085;-0.02234519,0.002917028;0.3985576;0.03318848,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00109502;0.1990246;0.01969812,0.003997411;0.4985372;0.03549653,0.1170268;0.3706675;0.008401671,0.1891543;0.1007361;0.02669641,0.2431222;-0.1711203;-0.0130722,-0.1052067;0.3590382;-0.0008167699,-0.2030018;0.1196765;-0.1082511,-0.2853493;-0.06115584;-0.3055289,0.07377344;0.005333219;-0.03048008,0.07598729;-0.3739754;-0.007675515,0.07598384;-0.7188056;0.05225892,0.07854304;-0.7059975;-0.04621896,-0.06728828;0.002178257;-0.04321508,-0.1075473;-0.3742725;-0.01059502,-0.122977;-0.719658;0.04390948,-0.1092321;-0.7630204;-0.02264158,0.002934636;0.3985745;0.03298172,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00109502;0.1990246;0.01969812,0.003997411;0.4985372;0.03549653,0.1170268;0.3706675;0.008401671,0.1891543;0.1007361;0.02669641,0.2431222;-0.1711203;-0.0130722,-0.1052067;0.3590382;-0.0008167699,-0.2030018;0.1196765;-0.1082511,-0.2853493;-0.06115584;-0.3055289,0.07377344;0.005333219;-0.03048008,0.07598729;-0.3739754;-0.007675515,0.07598384;-0.7188056;0.05225892,0.07854304;-0.7059975;-0.04621896,-0.06728828;0.002178257;-0.04321508,-0.1075473;-0.3742725;-0.01059502,-0.122977;-0.719658;0.04390948,-0.1092321;-0.7630204;-0.02264158,0.002934636;0.3985745;0.03298172,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00109502;0.1990246;0.01969812,0.003997411;0.4985372;0.03549653,0.1170268;0.3706675;0.008401671,0.1891543;0.1007361;0.02669641,0.2431222;-0.1711203;-0.0130722,-0.1052067;0.3590382;-0.0008167699,-0.2030018;0.1196765;-0.1082511,-0.2853493;-0.06115584;-0.3055289,0.07377344;0.005333219;-0.03048008,0.07598729;-0.3739754;-0.007675515,0.07598384;-0.7188056;0.05225892,0.07854304;-0.7059975;-0.04621896,-0.06728828;0.002178257;-0.04321508,-0.1075473;-0.3742725;-0.01059502,-0.122977;-0.719658;0.04390948,-0.1092321;-0.7630204;-0.02264158,0.002934636;0.3985745;0.03298172,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001374387;0.1990554;0.01936634,0.004846537;0.4985988;0.03444507,0.117634;0.3705969;0.007638711,0.1896583;0.1006113;0.02553359,0.2439891;-0.1712087;-0.01398935,-0.1048259;0.3590801;-0.0007965304,-0.2025624;0.1174879;-0.1031723,-0.2854141;-0.06634022;-0.2974474,0.0737731;0.005338266;-0.03048002,0.07585663;-0.3739635;-0.007548954,0.0758175;-0.7187953;0.05237618,0.07819199;-0.7060089;-0.04610253,-0.06730731;0.002186071;-0.04318504,-0.1078157;-0.3742367;-0.01055084,-0.1231242;-0.7196097;0.04406703,-0.1090249;-0.7627469;-0.02265761,0.003564188;0.3986328;0.03217591,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001374387;0.1990554;0.01936634,0.004846537;0.4985988;0.03444507,0.117634;0.3705969;0.007638711,0.1896583;0.1006113;0.02553359,0.2439891;-0.1712087;-0.01398935,-0.1048259;0.3590801;-0.0007965304,-0.2025624;0.1174879;-0.1031723,-0.2854141;-0.06634022;-0.2974474,0.0737731;0.005338266;-0.03048002,0.07585663;-0.3739635;-0.007548954,0.0758175;-0.7187953;0.05237618,0.07819199;-0.7060089;-0.04610253,-0.06730731;0.002186071;-0.04318504,-0.1078157;-0.3742367;-0.01055084,-0.1231242;-0.7196097;0.04406703,-0.1090249;-0.7627469;-0.02265761,0.003564188;0.3986328;0.03217591,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001374387;0.1990554;0.01936634,0.004846537;0.4985988;0.03444507,0.117634;0.3705969;0.007638711,0.1896583;0.1006113;0.02553359,0.2439891;-0.1712087;-0.01398935,-0.1048259;0.3590801;-0.0007965304,-0.2025624;0.1174879;-0.1031723,-0.2854141;-0.06634022;-0.2974474,0.0737731;0.005338266;-0.03048002,0.07585663;-0.3739635;-0.007548954,0.0758175;-0.7187953;0.05237618,0.07819199;-0.7060089;-0.04610253,-0.06730731;0.002186071;-0.04318504,-0.1078157;-0.3742367;-0.01055084,-0.1231242;-0.7196097;0.04406703,-0.1090249;-0.7627469;-0.02265761,0.003564188;0.3986328;0.03217591,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001435235;0.1990859;0.01904549,0.004871089;0.4986514;0.0337074,0.1176506;0.3706238;0.006942393,0.1896682;0.1006525;0.02508007,0.2442407;-0.1712685;-0.01340145,-0.1048755;0.3590578;-0.001042519,-0.2045897;0.1164124;-0.09892169,-0.2863229;-0.07706997;-0.2840817,0.07377251;0.005327733;-0.0304833,0.07569184;-0.3739651;-0.007390147,0.07527795;-0.7187693;0.05269173,0.07749912;-0.7060092;-0.04578595,-0.06733164;0.002195371;-0.0431466,-0.1071355;-0.3743043;-0.01053259,-0.1230249;-0.7196126;0.04432806,-0.1093504;-0.7629373;-0.02227902,0.00360225;0.3986827;0.03155255,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001435235;0.1990859;0.01904549,0.004871089;0.4986514;0.0337074,0.1176506;0.3706238;0.006942393,0.1896682;0.1006525;0.02508007,0.2442407;-0.1712685;-0.01340145,-0.1048755;0.3590578;-0.001042519,-0.2045897;0.1164124;-0.09892169,-0.2863229;-0.07706997;-0.2840817,0.07377251;0.005327733;-0.0304833,0.07569184;-0.3739651;-0.007390147,0.07527795;-0.7187693;0.05269173,0.07749912;-0.7060092;-0.04578595,-0.06733164;0.002195371;-0.0431466,-0.1071355;-0.3743043;-0.01053259,-0.1230249;-0.7196126;0.04432806,-0.1093504;-0.7629373;-0.02227902,0.00360225;0.3986827;0.03155255,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001435235;0.1990859;0.01904549,0.004871089;0.4986514;0.0337074,0.1176506;0.3706238;0.006942393,0.1896682;0.1006525;0.02508007,0.2442407;-0.1712685;-0.01340145,-0.1048755;0.3590578;-0.001042519,-0.2045897;0.1164124;-0.09892169,-0.2863229;-0.07706997;-0.2840817,0.07377251;0.005327733;-0.0304833,0.07569184;-0.3739651;-0.007390147,0.07527795;-0.7187693;0.05269173,0.07749912;-0.7060092;-0.04578595,-0.06733164;0.002195371;-0.0431466,-0.1071355;-0.3743043;-0.01053259,-0.1230249;-0.7196126;0.04432806,-0.1093504;-0.7629373;-0.02227902,0.00360225;0.3986827;0.03155255,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001373527;0.1991163;0.01873027,0.00451845;0.498722;0.03259307,0.1175537;0.3710446;0.006356193,0.1901282;0.1012257;0.02454124,0.2450624;-0.1706706;-0.01359815,-0.1056294;0.3601429;-0.001354109,-0.2075189;0.1169929;-0.09567569,-0.2872742;-0.08169325;-0.2761277,0.07372756;0.005398097;-0.03057951,0.07525859;-0.3738904;-0.007387277,0.07487979;-0.7186581;0.05290447,0.07694869;-0.7059193;-0.0455728,-0.06741162;0.002132641;-0.04302472,-0.1076092;-0.3743699;-0.01093123,-0.1234587;-0.7196294;0.04424708,-0.1091713;-0.7628559;-0.02233931,0.003367538;0.3987459;0.03073153,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001373527;0.1991163;0.01873027,0.00451845;0.498722;0.03259307,0.1175537;0.3710446;0.006356193,0.1901282;0.1012257;0.02454124,0.2450624;-0.1706706;-0.01359815,-0.1056294;0.3601429;-0.001354109,-0.2075189;0.1169929;-0.09567569,-0.2872742;-0.08169325;-0.2761277,0.07372756;0.005398097;-0.03057951,0.07525859;-0.3738904;-0.007387277,0.07487979;-0.7186581;0.05290447,0.07694869;-0.7059193;-0.0455728,-0.06741162;0.002132641;-0.04302472,-0.1076092;-0.3743699;-0.01093123,-0.1234587;-0.7196294;0.04424708,-0.1091713;-0.7628559;-0.02233931,0.003367538;0.3987459;0.03073153,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001456431;0.1991324;0.01855156,0.00476531;0.4987469;0.03219822,0.1177099;0.3710559;0.00590813,0.1904505;0.1012915;0.02423759,0.245321;-0.1706751;-0.01349068,-0.1055366;0.3601881;-0.001407351,-0.2071808;0.1154037;-0.09167922,-0.2870826;-0.08964656;-0.264798,0.07364224;0.005426887;-0.03077936,0.07516709;-0.3738545;-0.007470118,0.07509655;-0.7185848;0.05303594,0.0770291;-0.7058689;-0.04544009,-0.06745236;0.002121786;-0.04296133,-0.1072588;-0.3745134;-0.01195503,-0.1236732;-0.719579;0.04426158,-0.109905;-0.7632694;-0.02192118,0.003550746;0.3987705;0.03039452,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001456431;0.1991324;0.01855156,0.00476531;0.4987469;0.03219822,0.1177099;0.3710559;0.00590813,0.1904505;0.1012915;0.02423759,0.245321;-0.1706751;-0.01349068,-0.1055366;0.3601881;-0.001407351,-0.2071808;0.1154037;-0.09167922,-0.2870826;-0.08964656;-0.264798,0.07364224;0.005426887;-0.03077936,0.07516709;-0.3738545;-0.007470118,0.07509655;-0.7185848;0.05303594,0.0770291;-0.7058689;-0.04544009,-0.06745236;0.002121786;-0.04296133,-0.1072588;-0.3745134;-0.01195503,-0.1236732;-0.719579;0.04426158,-0.109905;-0.7632694;-0.02192118,0.003550746;0.3987705;0.03039452,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001456431;0.1991324;0.01855156,0.00476531;0.4987469;0.03219822,0.1177099;0.3710559;0.00590813,0.1904505;0.1012915;0.02423759,0.245321;-0.1706751;-0.01349068,-0.1055366;0.3601881;-0.001407351,-0.2071808;0.1154037;-0.09167922,-0.2870826;-0.08964656;-0.264798,0.07364224;0.005426887;-0.03077936,0.07516709;-0.3738545;-0.007470118,0.07509655;-0.7185848;0.05303594,0.0770291;-0.7058689;-0.04544009,-0.06745236;0.002121786;-0.04296133,-0.1072588;-0.3745134;-0.01195503,-0.1236732;-0.719579;0.04426158,-0.109905;-0.7632694;-0.02192118,0.003550746;0.3987705;0.03039452,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00140545;0.1991757;0.01808455,0.004436465;0.498827;0.03097812,0.117632;0.3714523;0.005294539,0.1915868;0.1020083;0.02347793,0.2475292;-0.1697576;-0.01412134,-0.1060222;0.3602519;-0.001499679,-0.2083018;0.1126864;-0.08304857,-0.2897107;-0.1033461;-0.2414864,0.0735274;0.005546585;-0.03103154,0.07525089;-0.3737145;-0.007408099,0.07500666;-0.7184414;0.05311737,0.07674751;-0.7057493;-0.04535802,-0.0675585;0.002029531;-0.04279871,-0.1072052;-0.374645;-0.0120667,-0.1239915;-0.7196552;0.04437964,-0.1103704;-0.763303;-0.02188099,0.003316763;0.3988456;0.02941159,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00140545;0.1991757;0.01808455,0.004436465;0.498827;0.03097812,0.117632;0.3714523;0.005294539,0.1915868;0.1020083;0.02347793,0.2475292;-0.1697576;-0.01412134,-0.1060222;0.3602519;-0.001499679,-0.2083018;0.1126864;-0.08304857,-0.2897107;-0.1033461;-0.2414864,0.0735274;0.005546585;-0.03103154,0.07525089;-0.3737145;-0.007408099,0.07500666;-0.7184414;0.05311737,0.07674751;-0.7057493;-0.04535802,-0.0675585;0.002029531;-0.04279871,-0.1072052;-0.374645;-0.0120667,-0.1239915;-0.7196552;0.04437964,-0.1103704;-0.763303;-0.02188099,0.003316763;0.3988456;0.02941159,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00140545;0.1991757;0.01808455,0.004436465;0.498827;0.03097812,0.117632;0.3714523;0.005294539,0.1915868;0.1020083;0.02347793,0.2475292;-0.1697576;-0.01412134,-0.1060222;0.3602519;-0.001499679,-0.2083018;0.1126864;-0.08304857,-0.2897107;-0.1033461;-0.2414864,0.0735274;0.005546585;-0.03103154,0.07525089;-0.3737145;-0.007408099,0.07500666;-0.7184414;0.05311737,0.07674751;-0.7057493;-0.04535802,-0.0675585;0.002029531;-0.04279871,-0.1072052;-0.374645;-0.0120667,-0.1239915;-0.7196552;0.04437964,-0.1103704;-0.763303;-0.02188099,0.003316763;0.3988456;0.02941159,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001366336;0.1992113;0.0176912,0.004183429;0.498896;0.02983077,0.1175358;0.3714742;0.00484072,0.1919154;0.1021588;0.02319412,0.2484262;-0.1695009;-0.01432358,-0.1063636;0.3602308;-0.001693143,-0.2089697;0.1113232;-0.07861494,-0.2899028;-0.1090204;-0.2312535,0.07350869;0.005595504;-0.03106704,0.07524398;-0.3736629;-0.007400667,0.07511976;-0.718398;0.05307781,0.07675402;-0.7057357;-0.04539419,-0.0675853;0.001989897;-0.04275824,-0.1073442;-0.374687;-0.01220111,-0.1241584;-0.7196496;0.04452721,-0.1104383;-0.7634414;-0.02155245,0.003139647;0.39891;0.0285221,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001366336;0.1992113;0.0176912,0.004183429;0.498896;0.02983077,0.1175358;0.3714742;0.00484072,0.1919154;0.1021588;0.02319412,0.2484262;-0.1695009;-0.01432358,-0.1063636;0.3602308;-0.001693143,-0.2089697;0.1113232;-0.07861494,-0.2899028;-0.1090204;-0.2312535,0.07350869;0.005595504;-0.03106704,0.07524398;-0.3736629;-0.007400667,0.07511976;-0.718398;0.05307781,0.07675402;-0.7057357;-0.04539419,-0.0675853;0.001989897;-0.04275824,-0.1073442;-0.374687;-0.01220111,-0.1241584;-0.7196496;0.04452721,-0.1104383;-0.7634414;-0.02155245,0.003139647;0.39891;0.0285221,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001366336;0.1992113;0.0176912,0.004183429;0.498896;0.02983077,0.1175358;0.3714742;0.00484072,0.1919154;0.1021588;0.02319412,0.2484262;-0.1695009;-0.01432358,-0.1063636;0.3602308;-0.001693143,-0.2089697;0.1113232;-0.07861494,-0.2899028;-0.1090204;-0.2312535,0.07350869;0.005595504;-0.03106704,0.07524398;-0.3736629;-0.007400667,0.07511976;-0.718398;0.05307781,0.07675402;-0.7057357;-0.04539419,-0.0675853;0.001989897;-0.04275824,-0.1073442;-0.374687;-0.01220111,-0.1241584;-0.7196496;0.04452721,-0.1104383;-0.7634414;-0.02155245,0.003139647;0.39891;0.0285221,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001384838;0.199237;0.01739782,0.004233101;0.4989347;0.02921976,0.1175121;0.3713271;0.004268456,0.1922738;0.102134;0.02286275,0.2498629;-0.1693651;-0.01417414,-0.1064678;0.3602872;-0.001740964,-0.2092223;0.110338;-0.0750004,-0.2902499;-0.1149006;-0.2202659,0.07342785;0.00565285;-0.03124734,0.0752406;-0.3735844;-0.007250939,0.07500257;-0.7183242;0.05320112,0.07646903;-0.7056766;-0.04527092,-0.0676662;0.001965459;-0.04263122,-0.1075662;-0.3747075;-0.01220948,-0.1241907;-0.7196448;0.04472759,-0.1105366;-0.7634434;-0.02135835,0.003171266;0.3989477;0.02800169,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001384838;0.199237;0.01739782,0.004233101;0.4989347;0.02921976,0.1175121;0.3713271;0.004268456,0.1922738;0.102134;0.02286275,0.2498629;-0.1693651;-0.01417414,-0.1064678;0.3602872;-0.001740964,-0.2092223;0.110338;-0.0750004,-0.2902499;-0.1149006;-0.2202659,0.07342785;0.00565285;-0.03124734,0.0752406;-0.3735844;-0.007250939,0.07500257;-0.7183242;0.05320112,0.07646903;-0.7056766;-0.04527092,-0.0676662;0.001965459;-0.04263122,-0.1075662;-0.3747075;-0.01220948,-0.1241907;-0.7196448;0.04472759,-0.1105366;-0.7634434;-0.02135835,0.003171266;0.3989477;0.02800169,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001384838;0.199237;0.01739782,0.004233101;0.4989347;0.02921976,0.1175121;0.3713271;0.004268456,0.1922738;0.102134;0.02286275,0.2498629;-0.1693651;-0.01417414,-0.1064678;0.3602872;-0.001740964,-0.2092223;0.110338;-0.0750004,-0.2902499;-0.1149006;-0.2202659,0.07342785;0.00565285;-0.03124734,0.0752406;-0.3735844;-0.007250939,0.07500257;-0.7183242;0.05320112,0.07646903;-0.7056766;-0.04527092,-0.0676662;0.001965459;-0.04263122,-0.1075662;-0.3747075;-0.01220948,-0.1241907;-0.7196448;0.04472759,-0.1105366;-0.7634434;-0.02135835,0.003171266;0.3989477;0.02800169,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00138801;0.1992546;0.01719591,0.004290878;0.4989601;0.02881543,0.11749;0.3711458;0.003908971,0.1924742;0.1020314;0.02274494,0.2514224;-0.1691732;-0.014311,-0.1065189;0.3607392;-0.002339872,-0.2092978;0.1094995;-0.07100659,-0.2899307;-0.1216982;-0.2068224,0.07336799;0.005648744;-0.03138836,0.07526115;-0.3735803;-0.0072683,0.07514756;-0.718259;0.05353083,0.07667563;-0.7056246;-0.04493797,-0.0677291;0.001970736;-0.04253099,-0.1073126;-0.3747215;-0.01193552,-0.1240124;-0.7196447;0.04506596,-0.1108895;-0.7632187;-0.0213769,0.003201554;0.3989727;0.0276536,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00138801;0.1992546;0.01719591,0.004290878;0.4989601;0.02881543,0.11749;0.3711458;0.003908971,0.1924742;0.1020314;0.02274494,0.2514224;-0.1691732;-0.014311,-0.1065189;0.3607392;-0.002339872,-0.2092978;0.1094995;-0.07100659,-0.2899307;-0.1216982;-0.2068224,0.07336799;0.005648744;-0.03138836,0.07526115;-0.3735803;-0.0072683,0.07514756;-0.718259;0.05353083,0.07667563;-0.7056246;-0.04493797,-0.0677291;0.001970736;-0.04253099,-0.1073126;-0.3747215;-0.01193552,-0.1240124;-0.7196447;0.04506596,-0.1108895;-0.7632187;-0.0213769,0.003201554;0.3989727;0.0276536,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00138801;0.1992546;0.01719591,0.004290878;0.4989601;0.02881543,0.11749;0.3711458;0.003908971,0.1924742;0.1020314;0.02274494,0.2514224;-0.1691732;-0.014311,-0.1065189;0.3607392;-0.002339872,-0.2092978;0.1094995;-0.07100659,-0.2899307;-0.1216982;-0.2068224,0.07336799;0.005648744;-0.03138836,0.07526115;-0.3735803;-0.0072683,0.07514756;-0.718259;0.05353083,0.07667563;-0.7056246;-0.04493797,-0.0677291;0.001970736;-0.04253099,-0.1073126;-0.3747215;-0.01193552,-0.1240124;-0.7196447;0.04506596,-0.1108895;-0.7632187;-0.0213769,0.003201554;0.3989727;0.0276536,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00128622;0.1992808;0.01689741,0.003872056;0.4990098;0.02796239,0.117385;0.3713622;0.004021941,0.1927745;0.1023257;0.0223474,0.2531024;-0.1685645;-0.01478803,-0.1069711;0.3613739;-0.003200913,-0.2093949;0.1082939;-0.06532881,-0.2890768;-0.1268607;-0.1947625,0.07338269;0.005714026;-0.03134214,0.07525644;-0.3735329;-0.007503146,0.07519968;-0.718154;0.05362219,0.07701815;-0.7055441;-0.04483733,-0.06769864;0.001885044;-0.04258333,-0.1070463;-0.3748122;-0.01174631,-0.1240113;-0.7197009;0.04538483,-0.1106213;-0.7628405;-0.02148308,0.002897525;0.3990193;0.02699371,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.00128622;0.1992808;0.01689741,0.003872056;0.4990098;0.02796239,0.117385;0.3713622;0.004021941,0.1927745;0.1023257;0.0223474,0.2531024;-0.1685645;-0.01478803,-0.1069711;0.3613739;-0.003200913,-0.2093949;0.1082939;-0.06532881,-0.2890768;-0.1268607;-0.1947625,0.07338269;0.005714026;-0.03134214,0.07525644;-0.3735329;-0.007503146,0.07519968;-0.718154;0.05362219,0.07701815;-0.7055441;-0.04483733,-0.06769864;0.001885044;-0.04258333,-0.1070463;-0.3748122;-0.01174631,-0.1240113;-0.7197009;0.04538483,-0.1106213;-0.7628405;-0.02148308,0.002897525;0.3990193;0.02699371,0;0;0,0.003916339;0.1994484;0.0143175,0.008970172;0.4992378;0.02255921,0.1188064;0.3726398;-0.01314047,0.1995328;0.1057429;0.01234101,0.2364869;-0.1675882;-0.03587188,-0.1026534;0.3557435;0.002401015,-0.1912618;0.09289372;-0.03578945,-0.2872635;-0.1635375;-0.09432741,0.07072555;0.007631551;-0.03660132,0.08213823;-0.3690908;0.01187597,0.08467373;-0.7093047;0.09402267,0.08975499;-0.7595105;0.03451462,-0.07134954;-0.001436676;-0.03615493,-0.1061853;-0.375582;0.02042917,-0.1211052;-0.7164037;0.09864639,-0.1243578;-0.7048067;0.0004081577,0.00735848;0.3992508;0.02251358,27.61633
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,-0.003956767;0.1992139;0.01726715,-0.01163484;0.4987781;0.03042894,0.1041647;0.3760797;-0.004368752,0.1902117;0.1106685;0.01914351,0.2480195;-0.1604391;-0.02033961,-0.1185618;0.3550384;0.00692039,-0.2140518;0.1048127;-0.07474209,-0.3001631;-0.1386177;-0.1830311,0.07027438;0.007471924;-0.03749244,0.0921053;-0.370166;-0.001256444,0.10067;-0.7133567;0.06691059,0.1095361;-0.759895;0.003166594,-0.0710904;-0.001472021;-0.03666044,-0.09663714;-0.3785594;0.002740834,-0.1038972;-0.7218221;0.07069655,-0.1068899;-0.7099123;-0.02760804,-0.008957856;0.3988311;0.02858064,36.70844
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,-0.003953393;0.1992156;0.01724887,-0.01139315;0.4987909;0.03027561,0.1044043;0.3765045;-0.004328132,0.1903577;0.1110813;0.01938972,0.247871;-0.1601532;-0.01964934,-0.1185059;0.3551712;0.006905375,-0.2138937;0.1048999;-0.07473705,-0.3003586;-0.1383308;-0.1831926,0.07028124;0.00748759;-0.03747644,0.09206061;-0.3701469;-0.001174342,0.1008056;-0.7133368;0.06697388,0.109275;-0.7593583;0.002561115,-0.0710855;-0.001488784;-0.03666928,-0.0968837;-0.3785221;0.003084041,-0.1037446;-0.7217991;0.07100894,-0.1067129;-0.7098898;-0.0272963,-0.008838177;0.3988394;0.02849394,36.72647
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,-0.003953393;0.1992156;0.01724887,-0.01139315;0.4987909;0.03027561,0.1044043;0.3765045;-0.004328132,0.1903577;0.1110813;0.01938972,0.247871;-0.1601532;-0.01964934,-0.1185059;0.3551712;0.006905375,-0.2138937;0.1048999;-0.07473705,-0.3003586;-0.1383308;-0.1831926,0.07028124;0.00748759;-0.03747644,0.09206061;-0.3701469;-0.001174342,0.1008056;-0.7133368;0.06697388,0.109275;-0.7593583;0.002561115,-0.0710855;-0.001488784;-0.03666928,-0.0968837;-0.3785221;0.003084041,-0.1037446;-0.7217991;0.07100894,-0.1067129;-0.7098898;-0.0272963,-0.008838177;0.3988394;0.02849394,36.74258
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,-0.004187402;0.1992026;0.01734279,-0.01216681;0.4987561;0.03057776,0.1037944;0.3762212;-0.004069297,0.1893766;0.110691;0.0197934,0.2468765;-0.1605985;-0.01888114,-0.1188154;0.3546972;0.006670868,-0.2143783;0.1044039;-0.07469852,-0.3010609;-0.1383982;-0.1839379,0.07026072;0.007462866;-0.03751982,0.09197451;-0.3701426;-0.0008783638,0.1007346;-0.7133499;0.06718063,0.1094126;-0.7595612;0.003020398,-0.07111901;-0.001469013;-0.03660503,-0.09697493;-0.3784835;0.003289018,-0.1038553;-0.7217321;0.07135536,-0.1067568;-0.7098177;-0.0269528,-0.009413531;0.3988117;0.02869695,36.75961
+0;0;0,0.001223234;0.1993254;0.01636722,0.003802906;0.4990737;0.02692482,0.1172412;0.3709711;0.00339113,0.1934272;0.1021997;0.02230227,0.2550824;-0.1684304;-0.01454841,-0.1076291;0.3627224;-0.003574118,-0.2085212;0.1068753;-0.05613893,-0.2839496;-0.1384148;-0.1681359,0.07328121;0.005960709;-0.03153307,0.07561997;-0.3732578;-0.007287402,0.07574879;-0.717784;0.05436973,0.07752714;-0.7052009;-0.04408581,-0.06783176;0.001656841;-0.0423805,-0.10684;-0.3750718;-0.01149564,-0.123644;-0.7198941;0.04608236,-0.1098973;-0.7631378;-0.02059883,0.002812224;0.399082;0.02610227,0;0;0,-0.00405441;0.1992138;0.01724561,-0.01115534;0.4988067;0.03003827,0.1044175;0.3762775;-0.004414907,0.190089;0.1107901;0.01960277,0.2476952;-0.1605639;-0.0184568,-0.1183639;0.3550452;0.006551716,-0.2140291;0.1048002;-0.07484616,-0.3013952;-0.1376617;-0.1842966,0.07032046;0.007462955;-0.03740771,0.09187184;-0.3701751;-0.001006398,0.1006279;-0.7133934;0.0669972,0.109119;-0.7601639;0.00348179,-0.0710776;-0.001470196;-0.03668533,-0.0972579;-0.3784879;0.002966467,-0.1039165;-0.721691;0.07128413,-0.106806;-0.7097868;-0.02702251,-0.008792899;0.3988488;0.02835623,36.78187
+0;0;0,0.001223234;0.1993254;0.01636722,0.003802906;0.4990737;0.02692482,0.1172412;0.3709711;0.00339113,0.1934272;0.1021997;0.02230227,0.2550824;-0.1684304;-0.01454841,-0.1076291;0.3627224;-0.003574118,-0.2085212;0.1068753;-0.05613893,-0.2839496;-0.1384148;-0.1681359,0.07328121;0.005960709;-0.03153307,0.07561997;-0.3732578;-0.007287402,0.07574879;-0.717784;0.05436973,0.07752714;-0.7052009;-0.04408581,-0.06783176;0.001656841;-0.0423805,-0.10684;-0.3750718;-0.01149564,-0.123644;-0.7198941;0.04608236,-0.1098973;-0.7631378;-0.02059883,0.002812224;0.399082;0.02610227,0;0;0,-0.00405441;0.1992138;0.01724561,-0.01115534;0.4988067;0.03003827,0.1044175;0.3762775;-0.004414907,0.190089;0.1107901;0.01960277,0.2476952;-0.1605639;-0.0184568,-0.1183639;0.3550452;0.006551716,-0.2140291;0.1048002;-0.07484616,-0.3013952;-0.1376617;-0.1842966,0.07032046;0.007462955;-0.03740771,0.09187184;-0.3701751;-0.001006398,0.1006279;-0.7133934;0.0669972,0.109119;-0.7601639;0.00348179,-0.0710776;-0.001470196;-0.03668533,-0.0972579;-0.3784879;0.002966467,-0.1039165;-0.721691;0.07128413,-0.106806;-0.7097868;-0.02702251,-0.008792899;0.3988488;0.02835623,36.79324
+0;0;0,0.001223234;0.1993254;0.01636722,0.003802906;0.4990737;0.02692482,0.1172412;0.3709711;0.00339113,0.1934272;0.1021997;0.02230227,0.2550824;-0.1684304;-0.01454841,-0.1076291;0.3627224;-0.003574118,-0.2085212;0.1068753;-0.05613893,-0.2839496;-0.1384148;-0.1681359,0.07328121;0.005960709;-0.03153307,0.07561997;-0.3732578;-0.007287402,0.07574879;-0.717784;0.05436973,0.07752714;-0.7052009;-0.04408581,-0.06783176;0.001656841;-0.0423805,-0.10684;-0.3750718;-0.01149564,-0.123644;-0.7198941;0.04608236,-0.1098973;-0.7631378;-0.02059883,0.002812224;0.399082;0.02610227,0;0;0,-0.004024575;0.1992187;0.01719671,-0.01089251;0.4988225;0.02985294,0.104627;0.3764564;-0.004504919,0.1903769;0.1110077;0.01965998,0.2479381;-0.1604271;-0.01788839,-0.1182207;0.3550664;0.006508136,-0.2137883;0.104844;-0.07507357,-0.3025011;-0.1369342;-0.1849524,0.07033097;0.007466529;-0.03738724,0.09186824;-0.3701498;-0.000753019,0.1005011;-0.713385;0.06718104,0.109258;-0.7598572;0.003342859,-0.0710574;-0.001465494;-0.03672463,-0.09726515;-0.3784426;0.003293142,-0.1039535;-0.7216938;0.07136611,-0.1068378;-0.7097943;-0.02693981,-0.00862864;0.3988613;0.02822388,36.81529
+0;0;0,0.001290419;0.1993415;0.01616538,0.004039441;0.4990945;0.02655529,0.1173028;0.3713999;0.002039997,0.1941863;0.1029027;0.02199394,0.2559176;-0.1679023;-0.01341668,-0.1076575;0.3631269;-0.003618505,-0.207114;0.1059692;-0.05238677,-0.2812782;-0.1434184;-0.155854,0.07338079;0.006051874;-0.03128314,0.07629079;-0.3731491;-0.006825367,0.07625999;-0.7176611;0.05491135,0.07762956;-0.7050725;-0.04355169,-0.06777547;0.001530714;-0.0424752,-0.1059005;-0.3752444;-0.01105912,-0.1229051;-0.7200016;0.04684884,-0.1092949;-0.7629438;-0.02018994,0.002983436;0.399103;0.02578056,0;0;0,-0.004024575;0.1992187;0.01719671,-0.01089251;0.4988225;0.02985294,0.104627;0.3764564;-0.004504919,0.1903769;0.1110077;0.01965998,0.2479381;-0.1604271;-0.01788839,-0.1182207;0.3550664;0.006508136,-0.2137883;0.104844;-0.07507357,-0.3025011;-0.1369342;-0.1849524,0.07033097;0.007466529;-0.03738724,0.09186824;-0.3701498;-0.000753019,0.1005011;-0.713385;0.06718104,0.109258;-0.7598572;0.003342859,-0.0710574;-0.001465494;-0.03672463,-0.09726515;-0.3784426;0.003293142,-0.1039535;-0.7216938;0.07136611,-0.1068378;-0.7097943;-0.02693981,-0.00862864;0.3988613;0.02822388,36.83814
+0;0;0,0.001290419;0.1993415;0.01616538,0.004039441;0.4990945;0.02655529,0.1173028;0.3713999;0.002039997,0.1941863;0.1029027;0.02199394,0.2559176;-0.1679023;-0.01341668,-0.1076575;0.3631269;-0.003618505,-0.207114;0.1059692;-0.05238677,-0.2812782;-0.1434184;-0.155854,0.07338079;0.006051874;-0.03128314,0.07629079;-0.3731491;-0.006825367,0.07625999;-0.7176611;0.05491135,0.07762956;-0.7050725;-0.04355169,-0.06777547;0.001530714;-0.0424752,-0.1059005;-0.3752444;-0.01105912,-0.1229051;-0.7200016;0.04684884,-0.1092949;-0.7629438;-0.02018994,0.002983436;0.399103;0.02578056,0;0;0,-0.003982405;0.1992228;0.01715847,-0.01051922;0.4988403;0.02965288,0.1048894;0.3765984;-0.004607458,0.1906905;0.1111915;0.01983413,0.2481175;-0.1602602;-0.01779724,-0.1182341;0.3556074;0.006533781,-0.2135474;0.1052819;-0.0750293,-0.3024606;-0.1363682;-0.1850277,0.07032118;0.007459315;-0.03740709,0.09186769;-0.3701517;-0.0007241555,0.1005094;-0.7133821;0.06723322,0.1090692;-0.7596158;0.003083706,-0.07106175;-0.001455838;-0.03671657,-0.09720264;-0.37841;0.003559683,-0.1039148;-0.7216824;0.07152273,-0.1067956;-0.7097858;-0.02678277,-0.008400998;0.398875;0.02808866,36.84893
+0;0;0,0.001234614;0.1993507;0.01605492,0.003888526;0.4991086;0.02633205,0.1170891;0.3713055;0.001531309,0.1940038;0.1028647;0.02211515,0.256274;-0.1677653;-0.01368675,-0.1078267;0.3632302;-0.00373489,-0.2058685;0.1046644;-0.04768404,-0.279076;-0.1490951;-0.1406722,0.07338203;0.006086888;-0.03127343,0.07620218;-0.3731626;-0.00756925,0.07626592;-0.7175156;0.05504834,0.07749611;-0.7049448;-0.0434134,-0.0677927;0.001496866;-0.04244889,-0.1057387;-0.3753145;-0.01125182,-0.1232433;-0.720017;0.04683294,-0.1093338;-0.7633454;-0.01972135,0.002862764;0.3991166;0.02559112,0;0;0,-0.003982405;0.1992228;0.01715847,-0.01051922;0.4988403;0.02965288,0.1048894;0.3765984;-0.004607458,0.1906905;0.1111915;0.01983413,0.2481175;-0.1602602;-0.01779724,-0.1182341;0.3556074;0.006533781,-0.2135474;0.1052819;-0.0750293,-0.3024606;-0.1363682;-0.1850277,0.07032118;0.007459315;-0.03740709,0.09186769;-0.3701517;-0.0007241555,0.1005094;-0.7133821;0.06723322,0.1090692;-0.7596158;0.003083706,-0.07106175;-0.001455838;-0.03671657,-0.09720264;-0.37841;0.003559683,-0.1039148;-0.7216824;0.07152273,-0.1067956;-0.7097858;-0.02678277,-0.008400998;0.398875;0.02808866,36.8605
+0;0;0,0.001234614;0.1993507;0.01605492,0.003888526;0.4991086;0.02633205,0.1170891;0.3713055;0.001531309,0.1940038;0.1028647;0.02211515,0.256274;-0.1677653;-0.01368675,-0.1078267;0.3632302;-0.00373489,-0.2058685;0.1046644;-0.04768404,-0.279076;-0.1490951;-0.1406722,0.07338203;0.006086888;-0.03127343,0.07620218;-0.3731626;-0.00756925,0.07626592;-0.7175156;0.05504834,0.07749611;-0.7049448;-0.0434134,-0.0677927;0.001496866;-0.04244889,-0.1057387;-0.3753145;-0.01125182,-0.1232433;-0.720017;0.04683294,-0.1093338;-0.7633454;-0.01972135,0.002862764;0.3991166;0.02559112,0;0;0,-0.003902791;0.1992339;0.01704802,-0.01010228;0.4988706;0.02923546,0.1052302;0.3768652;-0.00488618,0.1912467;0.111563;0.01993093,0.2486674;-0.159839;-0.01806673,-0.1180729;0.3559735;0.006196173,-0.2137226;0.1056022;-0.07483073,-0.3025146;-0.1360924;-0.1848295,0.0703282;0.007452009;-0.03739535,0.09182131;-0.37016;-0.0006908737,0.1004538;-0.7133914;0.06726255,0.108725;-0.7595333;0.002966359,-0.07103463;-0.001444269;-0.03676948,-0.0974009;-0.3783906;0.003433488,-0.1041112;-0.7216368;0.07152923,-0.1069323;-0.7097511;-0.02677598,-0.008113676;0.3989009;0.02778788,36.88242
+0;0;0,0.001234614;0.1993507;0.01605492,0.003888526;0.4991086;0.02633205,0.1170891;0.3713055;0.001531309,0.1940038;0.1028647;0.02211515,0.256274;-0.1677653;-0.01368675,-0.1078267;0.3632302;-0.00373489,-0.2058685;0.1046644;-0.04768404,-0.279076;-0.1490951;-0.1406722,0.07338203;0.006086888;-0.03127343,0.07620218;-0.3731626;-0.00756925,0.07626592;-0.7175156;0.05504834,0.07749611;-0.7049448;-0.0434134,-0.0677927;0.001496866;-0.04244889,-0.1057387;-0.3753145;-0.01125182,-0.1232433;-0.720017;0.04683294,-0.1093338;-0.7633454;-0.01972135,0.002862764;0.3991166;0.02559112,0;0;0,-0.003902791;0.1992339;0.01704802,-0.01010228;0.4988706;0.02923546,0.1052302;0.3768652;-0.00488618,0.1912467;0.111563;0.01993093,0.2486674;-0.159839;-0.01806673,-0.1180729;0.3559735;0.006196173,-0.2137226;0.1056022;-0.07483073,-0.3025146;-0.1360924;-0.1848295,0.0703282;0.007452009;-0.03739535,0.09182131;-0.37016;-0.0006908737,0.1004538;-0.7133914;0.06726255,0.108725;-0.7595333;0.002966359,-0.07103463;-0.001444269;-0.03676948,-0.0974009;-0.3783906;0.003433488,-0.1041112;-0.7216368;0.07152923,-0.1069323;-0.7097511;-0.02677598,-0.008113676;0.3989009;0.02778788,36.90483
+0;0;0,0.001159396;0.1993839;0.01564298,0.003749608;0.499163;0.02529381,0.1173723;0.3717365;0.002272224,0.1944088;0.1032213;0.02137711,0.257207;-0.1672415;-0.01476453,-0.1080954;0.3635689;-0.004367709,-0.2042201;0.1035136;-0.04349977,-0.275722;-0.1533174;-0.1290877,0.07319923;0.006261064;-0.031665,0.07673712;-0.3729083;-0.006803194,0.07695483;-0.7173916;0.05509306,0.07856917;-0.7048473;-0.04335842,-0.06790385;0.001392621;-0.04227442,-0.1053122;-0.3755073;-0.01149999,-0.1229885;-0.7200411;0.04752535,-0.1087921;-0.7632677;-0.01908044,0.002736477;0.3991695;0.02476786,0;0;0,-0.003866924;0.199234;0.01705503,-0.009897834;0.498875;0.02922357,0.1053752;0.3769841;-0.004934039,0.191515;0.1117336;0.02000789,0.24891;-0.159686;-0.01790278,-0.1182447;0.356649;0.006422224,-0.2133301;0.1060825;-0.07466515,-0.3022126;-0.1356107;-0.1845938,0.07034715;0.007445442;-0.03736098,0.09185396;-0.3701596;-0.0005931892,0.100567;-0.7133564;0.06752466,0.1083822;-0.7594095;0.003066599,-0.07101865;-0.001439889;-0.03680051,-0.09756015;-0.3783605;0.003528338,-0.1040845;-0.7216128;0.07161164,-0.1069412;-0.7097272;-0.02669251,-0.007979658;0.3989038;0.02777989,36.9159
+0;0;0,0.001159396;0.1993839;0.01564298,0.003749608;0.499163;0.02529381,0.1173723;0.3717365;0.002272224,0.1944088;0.1032213;0.02137711,0.257207;-0.1672415;-0.01476453,-0.1080954;0.3635689;-0.004367709,-0.2042201;0.1035136;-0.04349977,-0.275722;-0.1533174;-0.1290877,0.07319923;0.006261064;-0.031665,0.07673712;-0.3729083;-0.006803194,0.07695483;-0.7173916;0.05509306,0.07856917;-0.7048473;-0.04335842,-0.06790385;0.001392621;-0.04227442,-0.1053122;-0.3755073;-0.01149999,-0.1229885;-0.7200411;0.04752535,-0.1087921;-0.7632677;-0.01908044,0.002736477;0.3991695;0.02476786,0;0;0,-0.003866924;0.199234;0.01705503,-0.009897834;0.498875;0.02922357,0.1053752;0.3769841;-0.004934039,0.191515;0.1117336;0.02000789,0.24891;-0.159686;-0.01790278,-0.1182447;0.356649;0.006422224,-0.2133301;0.1060825;-0.07466515,-0.3022126;-0.1356107;-0.1845938,0.07034715;0.007445442;-0.03736098,0.09185396;-0.3701596;-0.0005931892,0.100567;-0.7133564;0.06752466,0.1083822;-0.7594095;0.003066599,-0.07101865;-0.001439889;-0.03680051,-0.09756015;-0.3783605;0.003528338,-0.1040845;-0.7216128;0.07161164,-0.1069412;-0.7097272;-0.02669251,-0.007979658;0.3989038;0.02777989,36.92725
+0;0;0,0.001159396;0.1993839;0.01564298,0.003749608;0.499163;0.02529381,0.1173723;0.3717365;0.002272224,0.1944088;0.1032213;0.02137711,0.257207;-0.1672415;-0.01476453,-0.1080954;0.3635689;-0.004367709,-0.2042201;0.1035136;-0.04349977,-0.275722;-0.1533174;-0.1290877,0.07319923;0.006261064;-0.031665,0.07673712;-0.3729083;-0.006803194,0.07695483;-0.7173916;0.05509306,0.07856917;-0.7048473;-0.04335842,-0.06790385;0.001392621;-0.04227442,-0.1053122;-0.3755073;-0.01149999,-0.1229885;-0.7200411;0.04752535,-0.1087921;-0.7632677;-0.01908044,0.002736477;0.3991695;0.02476786,0;0;0,-0.004109115;0.199219;0.01717276,-0.01147739;0.4988005;0.03015992,0.104235;0.376634;-0.004677314,0.1902998;0.1113797;0.02048213,0.247688;-0.1600771;-0.01717215,-0.1187633;0.355642;0.006399745,-0.2140846;0.1051768;-0.07472376,-0.3024938;-0.1373264;-0.1832411,0.07036141;0.007457604;-0.0373317,0.09177847;-0.3700872;0.0001012869,0.1004901;-0.7133563;0.06785429,0.1076776;-0.7586251;0.002410159,-0.07100583;-0.001441992;-0.03682517,-0.09735367;-0.3783702;0.003559198,-0.1041256;-0.7215972;0.07174547,-0.1070303;-0.7096977;-0.02655984,-0.008979221;0.3988485;0.02832339,36.9494
+0;0;0,0.001236594;0.1993907;0.01555086,0.003955083;0.4991713;0.02511958,0.1176199;0.371591;0.002769254,0.1947162;0.103067;0.0215044,0.2575214;-0.1673619;-0.01487875,-0.1078229;0.3631387;-0.004407242,-0.2016369;0.1016505;-0.03937709,-0.2703097;-0.1597463;-0.1125599,0.07312898;0.006232598;-0.03183248,0.0771683;-0.3728946;-0.006410023,0.07749046;-0.7173876;0.05543245,0.0792719;-0.7048463;-0.04301562,-0.06796477;0.001411814;-0.04217579,-0.1050286;-0.3755092;-0.01124357,-0.1227538;-0.7200041;0.0479942,-0.1083414;-0.7633038;-0.01848473,0.002896012;0.3991781;0.02461841,0;0;0,-0.004109115;0.199219;0.01717276,-0.01147739;0.4988005;0.03015992,0.104235;0.376634;-0.004677314,0.1902998;0.1113797;0.02048213,0.247688;-0.1600771;-0.01717215,-0.1187633;0.355642;0.006399745,-0.2140846;0.1051768;-0.07472376,-0.3024938;-0.1373264;-0.1832411,0.07036141;0.007457604;-0.0373317,0.09177847;-0.3700872;0.0001012869,0.1004901;-0.7133563;0.06785429,0.1076776;-0.7586251;0.002410159,-0.07100583;-0.001441992;-0.03682517,-0.09735367;-0.3783702;0.003559198,-0.1041256;-0.7215972;0.07174547,-0.1070303;-0.7096977;-0.02655984,-0.008979221;0.3988485;0.02832339,36.96067
+0;0;0,0.001236594;0.1993907;0.01555086,0.003955083;0.4991713;0.02511958,0.1176199;0.371591;0.002769254,0.1947162;0.103067;0.0215044,0.2575214;-0.1673619;-0.01487875,-0.1078229;0.3631387;-0.004407242,-0.2016369;0.1016505;-0.03937709,-0.2703097;-0.1597463;-0.1125599,0.07312898;0.006232598;-0.03183248,0.0771683;-0.3728946;-0.006410023,0.07749046;-0.7173876;0.05543245,0.0792719;-0.7048463;-0.04301562,-0.06796477;0.001411814;-0.04217579,-0.1050286;-0.3755092;-0.01124357,-0.1227538;-0.7200041;0.0479942,-0.1083414;-0.7633038;-0.01848473,0.002896012;0.3991781;0.02461841,0;0;0,-0.004109115;0.199219;0.01717276,-0.01147739;0.4988005;0.03015992,0.104235;0.376634;-0.004677314,0.1902998;0.1113797;0.02048213,0.247688;-0.1600771;-0.01717215,-0.1187633;0.355642;0.006399745,-0.2140846;0.1051768;-0.07472376,-0.3024938;-0.1373264;-0.1832411,0.07036141;0.007457604;-0.0373317,0.09177847;-0.3700872;0.0001012869,0.1004901;-0.7133563;0.06785429,0.1076776;-0.7586251;0.002410159,-0.07100583;-0.001441992;-0.03682517,-0.09735367;-0.3783702;0.003559198,-0.1041256;-0.7215972;0.07174547,-0.1070303;-0.7096977;-0.02655984,-0.008979221;0.3988485;0.02832339,36.97189
+0;0;0,0.001236594;0.1993907;0.01555086,0.003955083;0.4991713;0.02511958,0.1176199;0.371591;0.002769254,0.1947162;0.103067;0.0215044,0.2575214;-0.1673619;-0.01487875,-0.1078229;0.3631387;-0.004407242,-0.2016369;0.1016505;-0.03937709,-0.2703097;-0.1597463;-0.1125599,0.07312898;0.006232598;-0.03183248,0.0771683;-0.3728946;-0.006410023,0.07749046;-0.7173876;0.05543245,0.0792719;-0.7048463;-0.04301562,-0.06796477;0.001411814;-0.04217579,-0.1050286;-0.3755092;-0.01124357,-0.1227538;-0.7200041;0.0479942,-0.1083414;-0.7633038;-0.01848473,0.002896012;0.3991781;0.02461841,0;0;0,-0.003961754;0.1992273;0.01711146,-0.01048743;0.4988371;0.02986226,0.1048924;0.3768465;-0.004849551,0.1908942;0.1115707;0.02029871,0.248088;-0.1599359;-0.01729187,-0.118302;0.3559579;0.006425338,-0.2138801;0.1055156;-0.07446662,-0.301841;-0.1372124;-0.1828455,0.07036524;0.007480162;-0.03731997,0.09155042;-0.3700749;0.0001418181,0.1003985;-0.713337;0.06791213,0.1075423;-0.7585008;0.002342515,-0.07099627;-0.001469947;-0.03684248,-0.09730721;-0.3783942;0.003602296,-0.1041658;-0.7216233;0.07176945,-0.1070626;-0.7097276;-0.02653539,-0.008362293;0.3988746;0.02813744,36.9945
+0;0;0,0.00128631;0.1993961;0.01547647,0.004106707;0.4991764;0.02503354,0.1174766;0.3715031;0.001489967,0.1949662;0.1032885;0.02285129,0.2576608;-0.1671302;-0.01379689,-0.1076009;0.3625682;-0.004189486,-0.1994029;0.0999184;-0.03561337,-0.2677507;-0.1630333;-0.1033257,0.07294048;0.006080875;-0.032291,0.07817575;-0.3729487;-0.005660823,0.07785033;-0.717357;0.05665119,0.07910981;-0.7047713;-0.04181281,-0.0681067;0.001535394;-0.04194187,-0.1043853;-0.3754136;-0.01042493,-0.1221518;-0.7198749;0.04899529,-0.1075471;-0.7630938;-0.01753061,0.003008661;0.3991837;0.02453047,0;0;0,-0.003878658;0.1992305;0.01709254,-0.01004804;0.4988501;0.02978454,0.1052136;0.3769497;-0.004873868,0.1912049;0.1116756;0.02032894,0.2482705;-0.1598558;-0.01727718,-0.117974;0.3558249;0.006493812,-0.2136258;0.1052603;-0.07393056,-0.3015706;-0.1374909;-0.1822707,0.07037722;0.007503907;-0.0372926,0.09145849;-0.3700518;0.0002209283,0.100329;-0.71331;0.06800827,0.1071134;-0.7591645;0.003200337,-0.07099073;-0.001489378;-0.03685238,-0.09736548;-0.3783704;0.003952831,-0.1041565;-0.7216067;0.07209007,-0.1070515;-0.7097115;-0.02621476,-0.008066677;0.3988842;0.02808752,37.01649
+0;0;0,0.00128631;0.1993961;0.01547647,0.004106707;0.4991764;0.02503354,0.1174766;0.3715031;0.001489967,0.1949662;0.1032885;0.02285129,0.2576608;-0.1671302;-0.01379689,-0.1076009;0.3625682;-0.004189486,-0.1994029;0.0999184;-0.03561337,-0.2677507;-0.1630333;-0.1033257,0.07294048;0.006080875;-0.032291,0.07817575;-0.3729487;-0.005660823,0.07785033;-0.717357;0.05665119,0.07910981;-0.7047713;-0.04181281,-0.0681067;0.001535394;-0.04194187,-0.1043853;-0.3754136;-0.01042493,-0.1221518;-0.7198749;0.04899529,-0.1075471;-0.7630938;-0.01753061,0.003008661;0.3991837;0.02453047,0;0;0,-0.003878658;0.1992305;0.01709254,-0.01004804;0.4988501;0.02978454,0.1052136;0.3769497;-0.004873868,0.1912049;0.1116756;0.02032894,0.2482705;-0.1598558;-0.01727718,-0.117974;0.3558249;0.006493812,-0.2136258;0.1052603;-0.07393056,-0.3015706;-0.1374909;-0.1822707,0.07037722;0.007503907;-0.0372926,0.09145849;-0.3700518;0.0002209283,0.100329;-0.71331;0.06800827,0.1071134;-0.7591645;0.003200337,-0.07099073;-0.001489378;-0.03685238,-0.09736548;-0.3783704;0.003952831,-0.1041565;-0.7216067;0.07209007,-0.1070515;-0.7097115;-0.02621476,-0.008066677;0.3988842;0.02808752,37.03881
+0;0;0,0.00128631;0.1993961;0.01547647,0.004106707;0.4991764;0.02503354,0.1174766;0.3715031;0.001489967,0.1949662;0.1032885;0.02285129,0.2576608;-0.1671302;-0.01379689,-0.1076009;0.3625682;-0.004189486,-0.1994029;0.0999184;-0.03561337,-0.2677507;-0.1630333;-0.1033257,0.07294048;0.006080875;-0.032291,0.07817575;-0.3729487;-0.005660823,0.07785033;-0.717357;0.05665119,0.07910981;-0.7047713;-0.04181281,-0.0681067;0.001535394;-0.04194187,-0.1043853;-0.3754136;-0.01042493,-0.1221518;-0.7198749;0.04899529,-0.1075471;-0.7630938;-0.01753061,0.003008661;0.3991837;0.02453047,0;0;0,-0.003773983;0.1992283;0.01714123,-0.009402856;0.4988569;0.02988093,0.1055465;0.376809;-0.004910722,0.1915025;0.111511;0.02015946,0.2485783;-0.1600391;-0.01729631,-0.117918;0.3565998;0.006746661,-0.213106;0.1057101;-0.07321332,-0.3002434;-0.1387842;-0.1782352,0.07039791;0.007472613;-0.03725981,0.09161223;-0.3700666;0.0003441013,0.100384;-0.7133294;0.06812111,0.1070818;-0.7587889;0.002844632,-0.07097951;-0.001448817;-0.0368756,-0.0972058;-0.3783083;0.004223194,-0.1039937;-0.7215656;0.07225512,-0.1069139;-0.7096669;-0.02604959,-0.007675244;0.3988867;0.02815598,37.06112
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,-0.003704086;0.1992324;0.01710941,-0.009017745;0.498872;0.02971032,0.1058391;0.3768706;-0.004969569,0.1917126;0.1115384;0.02002165,0.2485473;-0.1600443;-0.01756393,-0.1178553;0.3571041;0.006730687,-0.2131911;0.105962;-0.07225519,-0.2999961;-0.1385459;-0.1775204,0.07040419;0.007489927;-0.03724447,0.09157525;-0.3700595;0.0002810098,0.100329;-0.7132924;0.06821203,0.1070138;-0.7585677;0.00272204,-0.07097928;-0.001462567;-0.03687549,-0.09693684;-0.3783606;0.004039705,-0.1040664;-0.7215701;0.07227736,-0.1069684;-0.7096759;-0.02602707,-0.007406998;0.3988988;0.02804676,37.08365
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,-0.003704086;0.1992324;0.01710941,-0.009017745;0.498872;0.02971032,0.1058391;0.3768706;-0.004969569,0.1917126;0.1115384;0.02002165,0.2485473;-0.1600443;-0.01756393,-0.1178553;0.3571041;0.006730687,-0.2131911;0.105962;-0.07225519,-0.2999961;-0.1385459;-0.1775204,0.07040419;0.007489927;-0.03724447,0.09157525;-0.3700595;0.0002810098,0.100329;-0.7132924;0.06821203,0.1070138;-0.7585677;0.00272204,-0.07097928;-0.001462567;-0.03687549,-0.09693684;-0.3783606;0.004039705,-0.1040664;-0.7215701;0.07227736,-0.1069684;-0.7096759;-0.02602707,-0.007406998;0.3988988;0.02804676,37.09517
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,-0.003704086;0.1992324;0.01710941,-0.009017745;0.498872;0.02971032,0.1058391;0.3768706;-0.004969569,0.1917126;0.1115384;0.02002165,0.2485473;-0.1600443;-0.01756393,-0.1178553;0.3571041;0.006730687,-0.2131911;0.105962;-0.07225519,-0.2999961;-0.1385459;-0.1775204,0.07040419;0.007489927;-0.03724447,0.09157525;-0.3700595;0.0002810098,0.100329;-0.7132924;0.06821203,0.1070138;-0.7585677;0.00272204,-0.07097928;-0.001462567;-0.03687549,-0.09693684;-0.3783606;0.004039705,-0.1040664;-0.7215701;0.07227736,-0.1069684;-0.7096759;-0.02602707,-0.007406998;0.3988988;0.02804676,37.10657
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,-0.003634769;0.199239;0.01704708,-0.00874981;0.4988886;0.02947979,0.1060529;0.3767972;-0.005013984,0.1916017;0.1113209;0.01955701,0.2483667;-0.1602473;-0.0182381,-0.1177561;0.3572715;0.006777531,-0.2130542;0.1055695;-0.07045167,-0.2999487;-0.1391012;-0.1752641,0.0704156;0.007519172;-0.03721701,0.09159191;-0.370046;0.0001468398,0.1003096;-0.713214;0.06840931,0.1073796;-0.7588841;0.00341665,-0.07097727;-0.001492096;-0.03687818,-0.09677726;-0.3783656;0.004361577,-0.1038868;-0.7216138;0.07240661,-0.1067977;-0.7097257;-0.02589642,-0.007210056;0.3989131;0.0278857,37.11792
+0;0;0,0.001265314;0.1994093;0.01530807,0.004017068;0.4992006;0.0245155,0.1174339;0.3722205;0.0004073493,0.194343;0.1040196;0.02392875,0.2553297;-0.1669245;-0.01170764,-0.1076077;0.3620897;-0.004160017,-0.1959974;0.09743747;-0.0275369,-0.2604723;-0.1700926;-0.07921535,0.072617;0.006210596;-0.03298787,0.07894207;-0.3726979;-0.00491029,0.07883953;-0.7170445;0.05774258,0.07970633;-0.7044774;-0.04072236,-0.06833418;0.001440783;-0.04157359,-0.1038392;-0.3755558;-0.009746745,-0.1217225;-0.7200288;0.04957106,-0.1062303;-0.7630628;-0.01695734,0.002942122;0.3992071;0.0241425,0;0;0,-0.003634769;0.199239;0.01704708,-0.00874981;0.4988886;0.02947979,0.1060529;0.3767972;-0.005013984,0.1916017;0.1113209;0.01955701,0.2483667;-0.1602473;-0.0182381,-0.1177561;0.3572715;0.006777531,-0.2130542;0.1055695;-0.07045167,-0.2999487;-0.1391012;-0.1752641,0.0704156;0.007519172;-0.03721701,0.09159191;-0.370046;0.0001468398,0.1003096;-0.713214;0.06840931,0.1073796;-0.7588841;0.00341665,-0.07097727;-0.001492096;-0.03687818,-0.09677726;-0.3783656;0.004361577,-0.1038868;-0.7216138;0.07240661,-0.1067977;-0.7097257;-0.02589642,-0.007210056;0.3989131;0.0278857,37.12933
+0;0;0,0.001265314;0.1994093;0.01530807,0.004017068;0.4992006;0.0245155,0.1174339;0.3722205;0.0004073493,0.194343;0.1040196;0.02392875,0.2553297;-0.1669245;-0.01170764,-0.1076077;0.3620897;-0.004160017,-0.1959974;0.09743747;-0.0275369,-0.2604723;-0.1700926;-0.07921535,0.072617;0.006210596;-0.03298787,0.07894207;-0.3726979;-0.00491029,0.07883953;-0.7170445;0.05774258,0.07970633;-0.7044774;-0.04072236,-0.06833418;0.001440783;-0.04157359,-0.1038392;-0.3755558;-0.009746745,-0.1217225;-0.7200288;0.04957106,-0.1062303;-0.7630628;-0.01695734,0.002942122;0.3992071;0.0241425,0;0;0,-0.004154133;0.1992201;0.01714944,-0.01173205;0.4987877;0.03034758,0.1040673;0.3768384;-0.004716067,0.1897828;0.1113925;0.01960115,0.2458192;-0.1601166;-0.01967618,-0.1192129;0.3563626;0.006483929,-0.2144519;0.1036355;-0.06739808,-0.3012026;-0.1412698;-0.1717806,0.07041717;0.007522778;-0.0372133,0.09155682;-0.370047;0.0001254193,0.1003279;-0.7132109;0.06840126,0.1073339;-0.7587509;0.00325045,-0.07097398;-0.001497171;-0.03688432,-0.09682492;-0.3783536;0.004479218,-0.10381;-0.72162;0.07244556,-0.09705251;-0.7676136;0.007798053,-0.009147801;0.3988396;0.02842428,37.15199
+0;0;0,0.001265314;0.1994093;0.01530807,0.004017068;0.4992006;0.0245155,0.1174339;0.3722205;0.0004073493,0.194343;0.1040196;0.02392875,0.2553297;-0.1669245;-0.01170764,-0.1076077;0.3620897;-0.004160017,-0.1959974;0.09743747;-0.0275369,-0.2604723;-0.1700926;-0.07921535,0.072617;0.006210596;-0.03298787,0.07894207;-0.3726979;-0.00491029,0.07883953;-0.7170445;0.05774258,0.07970633;-0.7044774;-0.04072236,-0.06833418;0.001440783;-0.04157359,-0.1038392;-0.3755558;-0.009746745,-0.1217225;-0.7200288;0.04957106,-0.1062303;-0.7630628;-0.01695734,0.002942122;0.3992071;0.0241425,0;0;0,-0.004154133;0.1992201;0.01714944,-0.01173205;0.4987877;0.03034758,0.1040673;0.3768384;-0.004716067,0.1897828;0.1113925;0.01960115,0.2458192;-0.1601166;-0.01967618,-0.1192129;0.3563626;0.006483929,-0.2144519;0.1036355;-0.06739808,-0.3012026;-0.1412698;-0.1717806,0.07041717;0.007522778;-0.0372133,0.09155682;-0.370047;0.0001254193,0.1003279;-0.7132109;0.06840126,0.1073339;-0.7587509;0.00325045,-0.07097398;-0.001497171;-0.03688432,-0.09682492;-0.3783536;0.004479218,-0.10381;-0.72162;0.07244556,-0.09705251;-0.7676136;0.007798053,-0.009147801;0.3988396;0.02842428,37.16346
+0;0;0,0.001286082;0.1994163;0.0152146,0.004097871;0.4992091;0.02436326,0.1173209;0.3733123;-0.001675811,0.1937951;0.1053353;0.02552824,0.2520891;-0.1664748;-0.007954519,-0.1076477;0.3620932;-0.003913118,-0.1948204;0.09678566;-0.02423195,-0.2567408;-0.1726128;-0.0688455,0.07249318;0.006223532;-0.03325667,0.0795828;-0.3726288;-0.004610494,0.07930226;-0.7169091;0.05840553,0.07937673;-0.704332;-0.04006497,-0.06845576;0.001421278;-0.04137377,-0.1033624;-0.3756162;-0.009369381,-0.121166;-0.720065;0.05011221,-0.1061083;-0.7636774;-0.01587631,0.002998533;0.3992158;0.02400309,0;0;0,-0.004154133;0.1992201;0.01714944,-0.01173205;0.4987877;0.03034758,0.1040673;0.3768384;-0.004716067,0.1897828;0.1113925;0.01960115,0.2458192;-0.1601166;-0.01967618,-0.1192129;0.3563626;0.006483929,-0.2144519;0.1036355;-0.06739808,-0.3012026;-0.1412698;-0.1717806,0.07041717;0.007522778;-0.0372133,0.09155682;-0.370047;0.0001254193,0.1003279;-0.7132109;0.06840126,0.1073339;-0.7587509;0.00325045,-0.07097398;-0.001497171;-0.03688432,-0.09682492;-0.3783536;0.004479218,-0.10381;-0.72162;0.07244556,-0.09705251;-0.7676136;0.007798053,-0.009147801;0.3988396;0.02842428,37.17507
+0;0;0,0.001286082;0.1994163;0.0152146,0.004097871;0.4992091;0.02436326,0.1173209;0.3733123;-0.001675811,0.1937951;0.1053353;0.02552824,0.2520891;-0.1664748;-0.007954519,-0.1076477;0.3620932;-0.003913118,-0.1948204;0.09678566;-0.02423195,-0.2567408;-0.1726128;-0.0688455,0.07249318;0.006223532;-0.03325667,0.0795828;-0.3726288;-0.004610494,0.07930226;-0.7169091;0.05840553,0.07937673;-0.704332;-0.04006497,-0.06845576;0.001421278;-0.04137377,-0.1033624;-0.3756162;-0.009369381,-0.121166;-0.720065;0.05011221,-0.1061083;-0.7636774;-0.01587631,0.002998533;0.3992158;0.02400309,0;0;0,-0.00400754;0.1992307;0.0170609,-0.01057408;0.4988412;0.02976529,0.1047651;0.3768001;-0.004993841,0.1902665;0.1112446;0.01887732,0.2455125;-0.1600757;-0.02275382,-0.118667;0.3565568;0.006552974,-0.2136232;0.103155;-0.06535553,-0.2994206;-0.1437156;-0.165823,0.07039328;0.007546361;-0.03725369,0.0914012;-0.3700364;2.802908E-05,0.1003296;-0.7131439;0.06856617,0.1078408;-0.7585563;0.003323816,-0.07099482;-0.001535657;-0.03684262,-0.0968696;-0.3783979;0.004452784,-0.1037781;-0.7216431;0.07253391,-0.096675;-0.7681356;0.008514769,-0.008457987;0.398878;0.02806804,37.19777
+0;0;0,0.001337012;0.1994206;0.01515415,0.004240012;0.4992137;0.02426883,0.1174661;0.3736807;-0.001960658,0.19279;0.1055946;0.02729985,0.2502433;-0.1665681;-0.004740287,-0.1075214;0.3618329;-0.003716914,-0.1933102;0.09584919;-0.02083306,-0.2540787;-0.1749117;-0.05819251,0.07239506;0.006210608;-0.03347213,0.08048354;-0.3725953;-0.004478224,0.08040605;-0.7168148;0.05886967,0.08026545;-0.7042331;-0.03960156,-0.0685532;0.001434637;-0.04121164,-0.1024923;-0.3756897;-0.00919006,-0.120519;-0.7201028;0.05043092,-0.1047433;-0.7636246;-0.01549081,0.003106602;0.3992207;0.02391617,0;0;0,-0.00400754;0.1992307;0.0170609,-0.01057408;0.4988412;0.02976529,0.1047651;0.3768001;-0.004993841,0.1902665;0.1112446;0.01887732,0.2455125;-0.1600757;-0.02275382,-0.118667;0.3565568;0.006552974,-0.2136232;0.103155;-0.06535553,-0.2994206;-0.1437156;-0.165823,0.07039328;0.007546361;-0.03725369,0.0914012;-0.3700364;2.802908E-05,0.1003296;-0.7131439;0.06856617,0.1078408;-0.7585563;0.003323816,-0.07099482;-0.001535657;-0.03684262,-0.0968696;-0.3783979;0.004452784,-0.1037781;-0.7216431;0.07253391,-0.096675;-0.7681356;0.008514769,-0.008457987;0.398878;0.02806804,37.20918
+0;0;0,0.001337012;0.1994206;0.01515415,0.004240012;0.4992137;0.02426883,0.1174661;0.3736807;-0.001960658,0.19279;0.1055946;0.02729985,0.2502433;-0.1665681;-0.004740287,-0.1075214;0.3618329;-0.003716914,-0.1933102;0.09584919;-0.02083306,-0.2540787;-0.1749117;-0.05819251,0.07239506;0.006210608;-0.03347213,0.08048354;-0.3725953;-0.004478224,0.08040605;-0.7168148;0.05886967,0.08026545;-0.7042331;-0.03960156,-0.0685532;0.001434637;-0.04121164,-0.1024923;-0.3756897;-0.00919006,-0.120519;-0.7201028;0.05043092,-0.1047433;-0.7636246;-0.01549081,0.003106602;0.3992207;0.02391617,0;0;0,-0.003945769;0.1992303;0.0170798,-0.01016557;0.4988493;0.02975411,0.1050066;0.3767959;-0.00504984,0.190377;0.1111196;0.01792734,0.2441813;-0.1600734;-0.0263385,-0.1186683;0.3572149;0.006621929,-0.212849;0.1021025;-0.06006875,-0.2961533;-0.1479007;-0.1547197,0.07036759;0.007561177;-0.0372992,0.0912872;-0.3700309;-6.267056E-05,0.10039;-0.7131604;0.06834261,0.1073735;-0.758892;0.00341218,-0.07102397;-0.001557635;-0.03678545,-0.09667905;-0.3784466;0.004402991,-0.1038935;-0.7216503;0.07266136,-0.09780346;-0.7682233;0.008634157,-0.008197721;0.3988828;0.02807057,37.22054
+0;0;0,0.001337012;0.1994206;0.01515415,0.004240012;0.4992137;0.02426883,0.1174661;0.3736807;-0.001960658,0.19279;0.1055946;0.02729985,0.2502433;-0.1665681;-0.004740287,-0.1075214;0.3618329;-0.003716914,-0.1933102;0.09584919;-0.02083306,-0.2540787;-0.1749117;-0.05819251,0.07239506;0.006210608;-0.03347213,0.08048354;-0.3725953;-0.004478224,0.08040605;-0.7168148;0.05886967,0.08026545;-0.7042331;-0.03960156,-0.0685532;0.001434637;-0.04121164,-0.1024923;-0.3756897;-0.00919006,-0.120519;-0.7201028;0.05043092,-0.1047433;-0.7636246;-0.01549081,0.003106602;0.3992207;0.02391617,0;0;0,-0.003945769;0.1992303;0.0170798,-0.01016557;0.4988493;0.02975411,0.1050066;0.3767959;-0.00504984,0.190377;0.1111196;0.01792734,0.2441813;-0.1600734;-0.0263385,-0.1186683;0.3572149;0.006621929,-0.212849;0.1021025;-0.06006875,-0.2961533;-0.1479007;-0.1547197,0.07036759;0.007561177;-0.0372992,0.0912872;-0.3700309;-6.267056E-05,0.10039;-0.7131604;0.06834261,0.1073735;-0.758892;0.00341218,-0.07102397;-0.001557635;-0.03678545,-0.09667905;-0.3784466;0.004402991,-0.1038935;-0.7216503;0.07266136,-0.09780346;-0.7682233;0.008634157,-0.008197721;0.3988828;0.02807057,37.23209
+0;0;0,0.001226942;0.1994303;0.01503469,0.003949782;0.4992303;0.02397782,0.1171985;0.3740635;-0.002712799,0.1925977;0.1061414;0.02782816,0.2482109;-0.1667754;-0.0008697342,-0.1076417;0.3615326;-0.003963511,-0.1921509;0.09489188;-0.01664865,-0.2521018;-0.1765939;-0.04983537,0.07226718;0.006252537;-0.03373959,0.0808771;-0.372532;-0.004617006,0.0809987;-0.7166663;0.05919158,0.08065885;-0.7040907;-0.0392781,-0.0686715;0.001384035;-0.04101597,-0.102043;-0.3758062;-0.009174895,-0.1201231;-0.720181;0.0506503,-0.1042927;-0.7638509;-0.01509283,0.002876005;0.3992365;0.0236818,0;0;0,-0.003945769;0.1992303;0.0170798,-0.01016557;0.4988493;0.02975411,0.1050066;0.3767959;-0.00504984,0.190377;0.1111196;0.01792734,0.2441813;-0.1600734;-0.0263385,-0.1186683;0.3572149;0.006621929,-0.212849;0.1021025;-0.06006875,-0.2961533;-0.1479007;-0.1547197,0.07036759;0.007561177;-0.0372992,0.0912872;-0.3700309;-6.267056E-05,0.10039;-0.7131604;0.06834261,0.1073735;-0.758892;0.00341218,-0.07102397;-0.001557635;-0.03678545,-0.09667905;-0.3784466;0.004402991,-0.1038935;-0.7216503;0.07266136,-0.09780346;-0.7682233;0.008634157,-0.008197721;0.3988828;0.02807057,37.24337
+0;0;0,0.001226942;0.1994303;0.01503469,0.003949782;0.4992303;0.02397782,0.1171985;0.3740635;-0.002712799,0.1925977;0.1061414;0.02782816,0.2482109;-0.1667754;-0.0008697342,-0.1076417;0.3615326;-0.003963511,-0.1921509;0.09489188;-0.01664865,-0.2521018;-0.1765939;-0.04983537,0.07226718;0.006252537;-0.03373959,0.0808771;-0.372532;-0.004617006,0.0809987;-0.7166663;0.05919158,0.08065885;-0.7040907;-0.0392781,-0.0686715;0.001384035;-0.04101597,-0.102043;-0.3758062;-0.009174895,-0.1201231;-0.720181;0.0506503,-0.1042927;-0.7638509;-0.01509283,0.002876005;0.3992365;0.0236818,0;0;0,-0.003905543;0.1992329;0.0170586,-0.009923038;0.4988576;0.0296879,0.1052283;0.3772207;-0.005176298,0.1904262;0.1114741;0.01762922,0.2436407;-0.1596779;-0.02759021,-0.1185591;0.357306;0.006702274,-0.2108193;0.1001167;-0.05446757,-0.2951128;-0.1502485;-0.1472678,0.07037176;0.007591543;-0.03728516,0.09125841;-0.3699853;0.0001241751,0.10037;-0.7131255;0.06847472,0.1075594;-0.7589422;0.003666267,-0.07101433;-0.001589316;-0.03680271,-0.09667904;-0.3784774;0.004388195,-0.1037708;-0.7216793;0.07266836,-0.1068707;-0.7097886;-0.02562939,-0.008032666;0.3988893;0.02802658,37.25497
+0;0;0,0.001226942;0.1994303;0.01503469,0.003949782;0.4992303;0.02397782,0.1171985;0.3740635;-0.002712799,0.1925977;0.1061414;0.02782816,0.2482109;-0.1667754;-0.0008697342,-0.1076417;0.3615326;-0.003963511,-0.1921509;0.09489188;-0.01664865,-0.2521018;-0.1765939;-0.04983537,0.07226718;0.006252537;-0.03373959,0.0808771;-0.372532;-0.004617006,0.0809987;-0.7166663;0.05919158,0.08065885;-0.7040907;-0.0392781,-0.0686715;0.001384035;-0.04101597,-0.102043;-0.3758062;-0.009174895,-0.1201231;-0.720181;0.0506503,-0.1042927;-0.7638509;-0.01509283,0.002876005;0.3992365;0.0236818,0;0;0,-0.003905543;0.1992329;0.0170586,-0.009923038;0.4988576;0.0296879,0.1052283;0.3772207;-0.005176298,0.1904262;0.1114741;0.01762922,0.2436407;-0.1596779;-0.02759021,-0.1185591;0.357306;0.006702274,-0.2108193;0.1001167;-0.05446757,-0.2951128;-0.1502485;-0.1472678,0.07037176;0.007591543;-0.03728516,0.09125841;-0.3699853;0.0001241751,0.10037;-0.7131255;0.06847472,0.1075594;-0.7589422;0.003666267,-0.07101433;-0.001589316;-0.03680271,-0.09667904;-0.3784774;0.004388195,-0.1037708;-0.7216793;0.07266836,-0.1068707;-0.7097886;-0.02562939,-0.008032666;0.3988893;0.02802658,37.27745
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,-0.003811891;0.1992339;0.01706793,-0.009433446;0.4988666;0.02969215,0.1054771;0.3771344;-0.00539322,0.1900566;0.1110075;0.01516827,0.2434635;-0.1600834;-0.03019055,-0.1182753;0.3574566;0.006671686,-0.2094136;0.09881553;-0.04988417,-0.2916177;-0.1543842;-0.1366736,0.07034697;0.007590813;-0.03733208,0.09116597;-0.3699828;0.0001481622,0.1003467;-0.7131122;0.06854312,0.1085408;-0.7595484;0.004587017,-0.07104696;-0.001588288;-0.03673973,-0.09663378;-0.3785153;0.004142214,-0.1038067;-0.7216579;0.07271156,-0.106953;-0.709767;-0.02558473,-0.007701172;0.3988954;0.02803056,37.28895
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,-0.003811891;0.1992339;0.01706793,-0.009433446;0.4988666;0.02969215,0.1054771;0.3771344;-0.00539322,0.1900566;0.1110075;0.01516827,0.2434635;-0.1600834;-0.03019055,-0.1182753;0.3574566;0.006671686,-0.2094136;0.09881553;-0.04988417,-0.2916177;-0.1543842;-0.1366736,0.07034697;0.007590813;-0.03733208,0.09116597;-0.3699828;0.0001481622,0.1003467;-0.7131122;0.06854312,0.1085408;-0.7595484;0.004587017,-0.07104696;-0.001588288;-0.03673973,-0.09663378;-0.3785153;0.004142214,-0.1038067;-0.7216579;0.07271156,-0.106953;-0.709767;-0.02558473,-0.007701172;0.3988954;0.02803056,37.30004
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,-0.003811891;0.1992339;0.01706793,-0.009433446;0.4988666;0.02969215,0.1054771;0.3771344;-0.00539322,0.1900566;0.1110075;0.01516827,0.2434635;-0.1600834;-0.03019055,-0.1182753;0.3574566;0.006671686,-0.2094136;0.09881553;-0.04988417,-0.2916177;-0.1543842;-0.1366736,0.07034697;0.007590813;-0.03733208,0.09116597;-0.3699828;0.0001481622,0.1003467;-0.7131122;0.06854312,0.1085408;-0.7595484;0.004587017,-0.07104696;-0.001588288;-0.03673973,-0.09663378;-0.3785153;0.004142214,-0.1038067;-0.7216579;0.07271156,-0.106953;-0.709767;-0.02558473,-0.007701172;0.3988954;0.02803056,37.31147
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,-0.003702964;0.1992376;0.01704888,-0.009052139;0.4988818;0.02949785,0.1057192;0.3769837;-0.005470017,0.1901747;0.110762;0.01436085,0.2432871;-0.1600573;-0.03292504,-0.1179887;0.3573669;0.006625658,-0.207135;0.09689084;-0.04441481,-0.2886622;-0.1589654;-0.1237301,0.07028173;0.007577789;-0.03745738,0.09125788;-0.3699772;0.0001221485,0.1004517;-0.7130951;0.06857346,0.1080769;-0.7589424;0.003850587,-0.07109451;-0.001598838;-0.03664715,-0.09643869;-0.3785481;0.004181463,-0.1037962;-0.7217055;0.07265651,-0.1069427;-0.7098171;-0.02563933,-0.007439227;0.3989073;0.02791455,37.3227
+0;0;0,0.00111579;0.1994666;0.01455388,0.003663604;0.4992935;0.02256876,0.116818;0.3742963;-0.004583489,0.1906294;0.1062937;0.02897997,0.2451102;-0.1675694;0.008222528,-0.1077263;0.3608555;-0.004608953,-0.1884756;0.0927597;-0.006652395,-0.2469697;-0.1800212;-0.03050623,0.0720737;0.006321724;-0.03413822,0.08156924;-0.3724475;-0.00509196,0.08197495;-0.7164167;0.05959958,0.08121994;-0.7038738;-0.03886199,-0.06883734;0.001334987;-0.04073864,-0.1010519;-0.3759729;-0.009100176,-0.1192055;-0.7202975;0.05099173,-0.1032562;-0.7645829;-0.01402588,0.002643913;0.3992987;0.02260382,0;0;0,-0.003702964;0.1992376;0.01704888,-0.009052139;0.4988818;0.02949785,0.1057192;0.3769837;-0.005470017,0.1901747;0.110762;0.01436085,0.2432871;-0.1600573;-0.03292504,-0.1179887;0.3573669;0.006625658,-0.207135;0.09689084;-0.04441481,-0.2886622;-0.1589654;-0.1237301,0.07028173;0.007577789;-0.03745738,0.09125788;-0.3699772;0.0001221485,0.1004517;-0.7130951;0.06857346,0.1080769;-0.7589424;0.003850587,-0.07109451;-0.001598838;-0.03664715,-0.09643869;-0.3785481;0.004181463,-0.1037962;-0.7217055;0.07265651,-0.1069427;-0.7098171;-0.02563933,-0.007439227;0.3989073;0.02791455,37.33391
+0;0;0,0.00111579;0.1994666;0.01455388,0.003663604;0.4992935;0.02256876,0.116818;0.3742963;-0.004583489,0.1906294;0.1062937;0.02897997,0.2451102;-0.1675694;0.008222528,-0.1077263;0.3608555;-0.004608953,-0.1884756;0.0927597;-0.006652395,-0.2469697;-0.1800212;-0.03050623,0.0720737;0.006321724;-0.03413822,0.08156924;-0.3724475;-0.00509196,0.08197495;-0.7164167;0.05959958,0.08121994;-0.7038738;-0.03886199,-0.06883734;0.001334987;-0.04073864,-0.1010519;-0.3759729;-0.009100176,-0.1192055;-0.7202975;0.05099173,-0.1032562;-0.7645829;-0.01402588,0.002643913;0.3992987;0.02260382,0;0;0,-0.00329831;0.1992353;0.01715856,-0.00756169;0.4988993;0.0295493,0.106621;0.3767638;-0.005507488,0.1909321;0.1104212;0.01328786,0.2433537;-0.1604446;-0.03450046,-0.1170537;0.3573949;0.006852223,-0.2042335;0.09527752;-0.03890984,-0.2853984;-0.1623475;-0.112677,0.07009763;0.00749475;-0.03781734,0.09163523;-0.3699737;0.000310231,0.1008516;-0.7130637;0.06889801,0.1093144;-0.7588663;0.004226826,-0.0712081;-0.001553103;-0.03642794,-0.09601521;-0.3785422;0.004361667,-0.10338;-0.7216945;0.07286209,-0.1065568;-0.7098024;-0.02543344,-0.006464903;0.3989177;0.02797051,37.35613
+0;0;0,0.00111579;0.1994666;0.01455388,0.003663604;0.4992935;0.02256876,0.116818;0.3742963;-0.004583489,0.1906294;0.1062937;0.02897997,0.2451102;-0.1675694;0.008222528,-0.1077263;0.3608555;-0.004608953,-0.1884756;0.0927597;-0.006652395,-0.2469697;-0.1800212;-0.03050623,0.0720737;0.006321724;-0.03413822,0.08156924;-0.3724475;-0.00509196,0.08197495;-0.7164167;0.05959958,0.08121994;-0.7038738;-0.03886199,-0.06883734;0.001334987;-0.04073864,-0.1010519;-0.3759729;-0.009100176,-0.1192055;-0.7202975;0.05099173,-0.1032562;-0.7645829;-0.01402588,0.002643913;0.3992987;0.02260382,0;0;0,-0.00329831;0.1992353;0.01715856,-0.00756169;0.4988993;0.0295493,0.106621;0.3767638;-0.005507488,0.1909321;0.1104212;0.01328786,0.2433537;-0.1604446;-0.03450046,-0.1170537;0.3573949;0.006852223,-0.2042335;0.09527752;-0.03890984,-0.2853984;-0.1623475;-0.112677,0.07009763;0.00749475;-0.03781734,0.09163523;-0.3699737;0.000310231,0.1008516;-0.7130637;0.06889801,0.1093144;-0.7588663;0.004226826,-0.0712081;-0.001553103;-0.03642794,-0.09601521;-0.3785422;0.004361667,-0.10338;-0.7216945;0.07286209,-0.1065568;-0.7098024;-0.02543344,-0.006464903;0.3989177;0.02797051,37.36725
+0;0;0,0.001486447;0.1994646;0.01454921,0.004498441;0.499285;0.02265832,0.1174072;0.3741012;-0.004777076,0.1904278;0.1059701;0.02948202,0.244966;-0.1682623;0.014575,-0.1070917;0.360734;-0.004173448,-0.1869117;0.09236765;-0.001293489,-0.2439202;-0.1810991;-0.02042359,0.07179683;0.006463836;-0.03469055,0.08332702;-0.3721808;-0.004769349,0.08378354;-0.716072;0.06033568,0.09513997;-0.7636886;-0.001686122,-0.06902627;0.00121881;-0.04042139,-0.0998536;-0.3762031;-0.00876148,-0.1178566;-0.7204875;0.05160531,-0.1017802;-0.764893;-0.01324359,0.003332829;0.3992918;0.02265402,0;0;0,-0.003027734;0.1992381;0.01717577,-0.006710431;0.4989177;0.02935951,0.1071209;0.3766235;-0.00589513,0.1912469;0.1101701;0.01214451,0.2430779;-0.16059;-0.03687097,-0.1164122;0.3572064;0.006990772,-0.2011951;0.09330666;-0.03261727,-0.2807311;-0.1669379;-0.09854757,0.06986962;0.007511758;-0.0382336,0.09178071;-0.3698909;0.0003299229,0.1011438;-0.7129674;0.0689652,0.1091822;-0.7587729;0.004243366,-0.07134506;-0.001624004;-0.03615584,-0.09612443;-0.3785892;0.004871592,-0.1031174;-0.7217692;0.07327181,-0.1064455;-0.7098827;-0.02501769,-0.005852477;0.3989326;0.02785854,37.38975
+0;0;0,0.001486447;0.1994646;0.01454921,0.004498441;0.499285;0.02265832,0.1174072;0.3741012;-0.004777076,0.1904278;0.1059701;0.02948202,0.244966;-0.1682623;0.014575,-0.1070917;0.360734;-0.004173448,-0.1869117;0.09236765;-0.001293489,-0.2439202;-0.1810991;-0.02042359,0.07179683;0.006463836;-0.03469055,0.08332702;-0.3721808;-0.004769349,0.08378354;-0.716072;0.06033568,0.09513997;-0.7636886;-0.001686122,-0.06902627;0.00121881;-0.04042139,-0.0998536;-0.3762031;-0.00876148,-0.1178566;-0.7204875;0.05160531,-0.1017802;-0.764893;-0.01324359,0.003332829;0.3992918;0.02265402,0;0;0,-0.003027734;0.1992381;0.01717577,-0.006710431;0.4989177;0.02935951,0.1071209;0.3766235;-0.00589513,0.1912469;0.1101701;0.01214451,0.2430779;-0.16059;-0.03687097,-0.1164122;0.3572064;0.006990772,-0.2011951;0.09330666;-0.03261727,-0.2807311;-0.1669379;-0.09854757,0.06986962;0.007511758;-0.0382336,0.09178071;-0.3698909;0.0003299229,0.1011438;-0.7129674;0.0689652,0.1091822;-0.7587729;0.004243366,-0.07134506;-0.001624004;-0.03615584,-0.09612443;-0.3785892;0.004871592,-0.1031174;-0.7217692;0.07327181,-0.1064455;-0.7098827;-0.02501769,-0.005852477;0.3989326;0.02785854,37.41207
+0;0;0,0.001559564;0.1994842;0.01426968,0.00471569;0.4993154;0.02189917,0.1175373;0.3742825;-0.00563884,0.1905807;0.1062786;0.02955421,0.2451375;-0.1681287;0.0184089,-0.1069508;0.360366;-0.004093956,-0.1862223;0.09194693;0.004103519,-0.241594;-0.1821377;-0.01044224,0.07150926;0.006571835;-0.03525955,0.08422145;-0.3719563;-0.004359255,0.08430046;-0.7159081;0.06042653,0.09667626;-0.7625025;-0.00266178,-0.06921404;0.001135438;-0.04010145,-0.09951922;-0.3763875;-0.009149961,-0.1173119;-0.7204918;0.05229667,-0.1009501;-0.764289;-0.01317292,0.003494902;0.399323;0.02206141,0;0;0,-0.002612212;0.1992401;0.0172204,-0.005968999;0.4989253;0.02934162,0.1074894;0.3763345;-0.006491346,0.191592;0.1097858;0.01019739,0.2425727;-0.16101;-0.03950778,-0.115767;0.3570596;0.007151609,-0.1980505;0.09176621;-0.02818749,-0.2762033;-0.1712536;-0.08397929,0.06968765;0.007578736;-0.03855119,0.09222773;-0.3697334;0.0005324781,0.101662;-0.7127961;0.06922715,0.1092735;-0.758643;0.004502289,-0.071518;-0.001739504;-0.03580711,-0.09551509;-0.3788;0.004807349,-0.1026141;-0.7219424;0.07338476,-0.106177;-0.7100572;-0.02489628,-0.005238825;0.3989386;0.0278802,37.42344
+0;0;0,0.001559564;0.1994842;0.01426968,0.00471569;0.4993154;0.02189917,0.1175373;0.3742825;-0.00563884,0.1905807;0.1062786;0.02955421,0.2451375;-0.1681287;0.0184089,-0.1069508;0.360366;-0.004093956,-0.1862223;0.09194693;0.004103519,-0.241594;-0.1821377;-0.01044224,0.07150926;0.006571835;-0.03525955,0.08422145;-0.3719563;-0.004359255,0.08430046;-0.7159081;0.06042653,0.09667626;-0.7625025;-0.00266178,-0.06921404;0.001135438;-0.04010145,-0.09951922;-0.3763875;-0.009149961,-0.1173119;-0.7204918;0.05229667,-0.1009501;-0.764289;-0.01317292,0.003494902;0.399323;0.02206141,0;0;0,-0.002612212;0.1992401;0.0172204,-0.005968999;0.4989253;0.02934162,0.1074894;0.3763345;-0.006491346,0.191592;0.1097858;0.01019739,0.2425727;-0.16101;-0.03950778,-0.115767;0.3570596;0.007151609,-0.1980505;0.09176621;-0.02818749,-0.2762033;-0.1712536;-0.08397929,0.06968765;0.007578736;-0.03855119,0.09222773;-0.3697334;0.0005324781,0.101662;-0.7127961;0.06922715,0.1092735;-0.758643;0.004502289,-0.071518;-0.001739504;-0.03580711,-0.09551509;-0.3788;0.004807349,-0.1026141;-0.7219424;0.07338476,-0.106177;-0.7100572;-0.02489628,-0.005238825;0.3989386;0.0278802,37.44562
+0;0;0,0.001559564;0.1994842;0.01426968,0.00471569;0.4993154;0.02189917,0.1175373;0.3742825;-0.00563884,0.1905807;0.1062786;0.02955421,0.2451375;-0.1681287;0.0184089,-0.1069508;0.360366;-0.004093956,-0.1862223;0.09194693;0.004103519,-0.241594;-0.1821377;-0.01044224,0.07150926;0.006571835;-0.03525955,0.08422145;-0.3719563;-0.004359255,0.08430046;-0.7159081;0.06042653,0.09667626;-0.7625025;-0.00266178,-0.06921404;0.001135438;-0.04010145,-0.09951922;-0.3763875;-0.009149961,-0.1173119;-0.7204918;0.05229667,-0.1009501;-0.764289;-0.01317292,0.003494902;0.399323;0.02206141,0;0;0,-0.002185414;0.19925;0.01716617,-0.005192237;0.4989442;0.02912142,0.1079764;0.3764144;-0.007233499,0.1918615;0.1097836;0.009238197,0.2415961;-0.1607577;-0.04304806,-0.1151569;0.3571735;0.007102774,-0.1951464;0.09028059;-0.02064371,-0.2726994;-0.1729174;-0.07643228,0.06952957;0.007591594;-0.03883306,0.09283453;-0.3696033;0.0009272024,0.1019662;-0.7127988;0.06899663,0.1103039;-0.758392;0.004064605,-0.07164922;-0.001753584;-0.03554312,-0.09494305;-0.3788981;0.004698422,-0.1020643;-0.7220749;0.0731018,-0.1058598;-0.7101865;-0.02517109,-0.00457654;0.3989555;0.02774844,37.46777
+0;0;0,0.001497444;0.1994954;0.01411955,0.00458225;0.4993323;0.02155524,0.1174119;0.3742999;-0.005973388,0.18999;0.1063194;0.03034306,0.243875;-0.1683377;0.02260273,-0.1070405;0.3601799;-0.004172517,-0.1858321;0.09178165;0.008247942,-0.2387736;-0.1829796;-0.001923683,0.07145446;0.00654886;-0.03537475,0.08461922;-0.3719932;-0.004836589,0.08504809;-0.7157618;0.06091263,0.09706468;-0.7620664;-0.002595015,-0.06928416;0.00115451;-0.03997965,-0.09876078;-0.3764257;-0.008925816,-0.116739;-0.7205126;0.05256369,-0.100007;-0.7643041;-0.01281869,0.003381748;0.3993398;0.02177787,0;0;0,-0.002185414;0.19925;0.01716617,-0.005192237;0.4989442;0.02912142,0.1079764;0.3764144;-0.007233499,0.1918615;0.1097836;0.009238197,0.2415961;-0.1607577;-0.04304806,-0.1151569;0.3571735;0.007102774,-0.1951464;0.09028059;-0.02064371,-0.2726994;-0.1729174;-0.07643228,0.06952957;0.007591594;-0.03883306,0.09283453;-0.3696033;0.0009272024,0.1019662;-0.7127988;0.06899663,0.1103039;-0.758392;0.004064605,-0.07164922;-0.001753584;-0.03554312,-0.09494305;-0.3788981;0.004698422,-0.1020643;-0.7220749;0.0731018,-0.1058598;-0.7101865;-0.02517109,-0.00457654;0.3989555;0.02774844,37.47905
+0;0;0,0.001497444;0.1994954;0.01411955,0.00458225;0.4993323;0.02155524,0.1174119;0.3742999;-0.005973388,0.18999;0.1063194;0.03034306,0.243875;-0.1683377;0.02260273,-0.1070405;0.3601799;-0.004172517,-0.1858321;0.09178165;0.008247942,-0.2387736;-0.1829796;-0.001923683,0.07145446;0.00654886;-0.03537475,0.08461922;-0.3719932;-0.004836589,0.08504809;-0.7157618;0.06091263,0.09706468;-0.7620664;-0.002595015,-0.06928416;0.00115451;-0.03997965,-0.09876078;-0.3764257;-0.008925816,-0.116739;-0.7205126;0.05256369,-0.100007;-0.7643041;-0.01281869,0.003381748;0.3993398;0.02177787,0;0;0,-0.002636564;0.1992241;0.01740139,-0.006821014;0.4988698;0.03029483,0.1067718;0.3760284;-0.006756851,0.1904855;0.1092776;0.008606692,0.2402957;-0.1610709;-0.04459682,-0.1158468;0.3564318;0.007339086,-0.1939073;0.08847106;-0.01510167,-0.2646535;-0.1789413;-0.05852542,0.06926759;0.007405286;-0.03933398,0.09381899;-0.369667;0.0008369274,0.1029283;-0.7127869;0.06928933,0.1109793;-0.7582119;0.004126035,-0.07178583;-0.001601531;-0.03527365,-0.09422419;-0.3788301;0.004665546,-0.1014125;-0.7219651;0.07327065,-0.1053567;-0.7100577;-0.02499992,-0.005625678;0.3988928;0.02851405,37.50129
+0;0;0,0.001497444;0.1994954;0.01411955,0.00458225;0.4993323;0.02155524,0.1174119;0.3742999;-0.005973388,0.18999;0.1063194;0.03034306,0.243875;-0.1683377;0.02260273,-0.1070405;0.3601799;-0.004172517,-0.1858321;0.09178165;0.008247942,-0.2387736;-0.1829796;-0.001923683,0.07145446;0.00654886;-0.03537475,0.08461922;-0.3719932;-0.004836589,0.08504809;-0.7157618;0.06091263,0.09706468;-0.7620664;-0.002595015,-0.06928416;0.00115451;-0.03997965,-0.09876078;-0.3764257;-0.008925816,-0.116739;-0.7205126;0.05256369,-0.100007;-0.7643041;-0.01281869,0.003381748;0.3993398;0.02177787,0;0;0,-0.002636564;0.1992241;0.01740139,-0.006821014;0.4988698;0.03029483,0.1067718;0.3760284;-0.006756851,0.1904855;0.1092776;0.008606692,0.2402957;-0.1610709;-0.04459682,-0.1158468;0.3564318;0.007339086,-0.1939073;0.08847106;-0.01510167,-0.2646535;-0.1789413;-0.05852542,0.06926759;0.007405286;-0.03933398,0.09381899;-0.369667;0.0008369274,0.1029283;-0.7127869;0.06928933,0.1109793;-0.7582119;0.004126035,-0.07178583;-0.001601531;-0.03527365,-0.09422419;-0.3788301;0.004665546,-0.1014125;-0.7219651;0.07327065,-0.1053567;-0.7100577;-0.02499992,-0.005625678;0.3988928;0.02851405,37.51247
+0;0;0,0.001464295;0.1995063;0.01396725,0.004531837;0.4993482;0.02121934,0.1172898;0.3741477;-0.00640318,0.1894727;0.1061661;0.0306847,0.2432558;-0.1685867;0.02640859,-0.1069322;0.3596386;-0.004271453,-0.1848934;0.09123522;0.01251162,-0.2363032;-0.183946;0.00682682,0.07144594;0.006676125;-0.03536815,0.08517171;-0.3718306;-0.004639937,0.08582267;-0.7155616;0.06130365,0.09763361;-0.7619108;-0.002188958,-0.0692943;0.001029717;-0.03996548,-0.09790576;-0.3766265;-0.009027911,-0.1158418;-0.7206833;0.05264264,-0.09927446;-0.7647765;-0.01243975,0.00333331;0.3993558;0.02149801,0;0;0,-0.00211736;0.1992412;0.01727637,-0.005563932;0.4989166;0.02959602,0.1076193;0.3758009;-0.0073369,0.1912132;0.108956;0.007009786,0.2405058;-0.1614759;-0.04625215,-0.115017;0.3565305;0.007463016,-0.1920518;0.08789006;-0.009798912,-0.2579399;-0.1816417;-0.04736756,0.06896012;0.007272314;-0.03989507,0.09483981;-0.3696523;0.0008244142,0.1038754;-0.7127566;0.06936477,0.1118866;-0.7584006;0.004450813,-0.07197338;-0.001493974;-0.03489414,-0.09352173;-0.3788177;0.004633542,-0.1007328;-0.721933;0.07333514,-0.1048694;-0.7100416;-0.02492456,-0.00467109;0.3989317;0.02810087,37.524
+0;0;0,0.001464295;0.1995063;0.01396725,0.004531837;0.4993482;0.02121934,0.1172898;0.3741477;-0.00640318,0.1894727;0.1061661;0.0306847,0.2432558;-0.1685867;0.02640859,-0.1069322;0.3596386;-0.004271453,-0.1848934;0.09123522;0.01251162,-0.2363032;-0.183946;0.00682682,0.07144594;0.006676125;-0.03536815,0.08517171;-0.3718306;-0.004639937,0.08582267;-0.7155616;0.06130365,0.09763361;-0.7619108;-0.002188958,-0.0692943;0.001029717;-0.03996548,-0.09790576;-0.3766265;-0.009027911,-0.1158418;-0.7206833;0.05264264,-0.09927446;-0.7647765;-0.01243975,0.00333331;0.3993558;0.02149801,0;0;0,-0.00211736;0.1992412;0.01727637,-0.005563932;0.4989166;0.02959602,0.1076193;0.3758009;-0.0073369,0.1912132;0.108956;0.007009786,0.2405058;-0.1614759;-0.04625215,-0.115017;0.3565305;0.007463016,-0.1920518;0.08789006;-0.009798912,-0.2579399;-0.1816417;-0.04736756,0.06896012;0.007272314;-0.03989507,0.09483981;-0.3696523;0.0008244142,0.1038754;-0.7127566;0.06936477,0.1118866;-0.7584006;0.004450813,-0.07197338;-0.001493974;-0.03489414,-0.09352173;-0.3788177;0.004633542,-0.1007328;-0.721933;0.07333514,-0.1048694;-0.7100416;-0.02492456,-0.00467109;0.3989317;0.02810087,37.54596
+0;0;0,0.001464295;0.1995063;0.01396725,0.004531837;0.4993482;0.02121934,0.1172898;0.3741477;-0.00640318,0.1894727;0.1061661;0.0306847,0.2432558;-0.1685867;0.02640859,-0.1069322;0.3596386;-0.004271453,-0.1848934;0.09123522;0.01251162,-0.2363032;-0.183946;0.00682682,0.07144594;0.006676125;-0.03536815,0.08517171;-0.3718306;-0.004639937,0.08582267;-0.7155616;0.06130365,0.09763361;-0.7619108;-0.002188958,-0.0692943;0.001029717;-0.03996548,-0.09790576;-0.3766265;-0.009027911,-0.1158418;-0.7206833;0.05264264,-0.09927446;-0.7647765;-0.01243975,0.00333331;0.3993558;0.02149801,0;0;0,-0.002509909;0.1992214;0.01745041,-0.006651912;0.498865;0.03037391,0.1066398;0.3755941;-0.007369291,0.1900896;0.1086792;0.006506969,0.2390826;-0.1617723;-0.0469316,-0.1157237;0.3563723;0.007881841,-0.1904376;0.08663964;-7.543713E-07,-0.2530791;-0.1840044;-0.03504127,0.06877676;0.007299669;-0.04020538,0.09520574;-0.3694786;0.001503855,0.1042534;-0.7126805;0.06955238,0.1121594;-0.7583547;0.004660912,-0.07230427;-0.001579715;-0.03419938,-0.09300567;-0.379049;0.004380174,-0.100288;-0.7221469;0.07316115,-0.1047687;-0.7102436;-0.02508563,-0.005440821;0.3988877;0.02862161,37.55744
+0;0;0,0.001385865;0.1995187;0.01379735,0.004311648;0.4993684;0.02077984,0.1170248;0.3740647;-0.00704346,0.1892451;0.1062289;0.03101178,0.2433399;-0.1684823;0.02826713,-0.1069316;0.3591166;-0.004511079,-0.185045;0.09107727;0.01677762,-0.2338259;-0.1846303;0.01437674,0.0713036;0.006638643;-0.03566126,0.08480231;-0.3718479;-0.004585516,0.08592974;-0.715459;0.06197405,0.09764618;-0.7621038;-0.001178976,-0.0694375;0.001070382;-0.03971507,-0.09805676;-0.3766256;-0.009273566,-0.1156872;-0.7205501;0.05321776,-0.09892832;-0.7645301;-0.01194429,0.003162807;0.3993756;0.02114867,0;0;0,-0.002509909;0.1992214;0.01745041,-0.006651912;0.498865;0.03037391,0.1066398;0.3755941;-0.007369291,0.1900896;0.1086792;0.006506969,0.2390826;-0.1617723;-0.0469316,-0.1157237;0.3563723;0.007881841,-0.1904376;0.08663964;-7.543713E-07,-0.2530791;-0.1840044;-0.03504127,0.06877676;0.007299669;-0.04020538,0.09520574;-0.3694786;0.001503855,0.1042534;-0.7126805;0.06955238,0.1121594;-0.7583547;0.004660912,-0.07230427;-0.001579715;-0.03419938,-0.09300567;-0.379049;0.004380174,-0.100288;-0.7221469;0.07316115,-0.1047687;-0.7102436;-0.02508563,-0.005440821;0.3988877;0.02862161,37.57946
+0;0;0,0.001385865;0.1995187;0.01379735,0.004311648;0.4993684;0.02077984,0.1170248;0.3740647;-0.00704346,0.1892451;0.1062289;0.03101178,0.2433399;-0.1684823;0.02826713,-0.1069316;0.3591166;-0.004511079,-0.185045;0.09107727;0.01677762,-0.2338259;-0.1846303;0.01437674,0.0713036;0.006638643;-0.03566126,0.08480231;-0.3718479;-0.004585516,0.08592974;-0.715459;0.06197405,0.09764618;-0.7621038;-0.001178976,-0.0694375;0.001070382;-0.03971507,-0.09805676;-0.3766256;-0.009273566,-0.1156872;-0.7205501;0.05321776,-0.09892832;-0.7645301;-0.01194429,0.003162807;0.3993756;0.02114867,0;0;0,-0.002182906;0.1992348;0.01734132,-0.005507533;0.4989086;0.02971894,0.1072239;0.3753624;-0.008157041,0.1904892;0.1083622;0.005176338,0.2392686;-0.1621449;-0.04817618,-0.1150256;0.3563606;0.00792503,-0.1892945;0.08640417;0.005153497,-0.2468319;-0.1861539;-0.02315814,0.06860631;0.007203192;-0.04051282,0.09575278;-0.369586;0.0006333143,0.1046515;-0.7126473;0.06940626,0.112658;-0.7585126;0.004750513,-0.07246508;-0.001534807;-0.03385936,-0.09293529;-0.3790412;0.004479881,-0.1002526;-0.7220752;0.0735752,-0.1049532;-0.7101966;-0.02465677,-0.0046775;0.3989234;0.02821537,37.59104
+0;0;0,0.001385865;0.1995187;0.01379735,0.004311648;0.4993684;0.02077984,0.1170248;0.3740647;-0.00704346,0.1892451;0.1062289;0.03101178,0.2433399;-0.1684823;0.02826713,-0.1069316;0.3591166;-0.004511079,-0.185045;0.09107727;0.01677762,-0.2338259;-0.1846303;0.01437674,0.0713036;0.006638643;-0.03566126,0.08480231;-0.3718479;-0.004585516,0.08592974;-0.715459;0.06197405,0.09764618;-0.7621038;-0.001178976,-0.0694375;0.001070382;-0.03971507,-0.09805676;-0.3766256;-0.009273566,-0.1156872;-0.7205501;0.05321776,-0.09892832;-0.7645301;-0.01194429,0.003162807;0.3993756;0.02114867,0;0;0,-0.001880986;0.1992562;0.0171299,-0.00468215;0.4989576;0.02888992,0.107687;0.3753471;-0.009139817,0.191176;0.1084054;0.003965656,0.2388353;-0.1620838;-0.05047859,-0.1147535;0.3569404;0.008121012,-0.1875387;0.0865669;0.008820134,-0.2389566;-0.1880621;-0.009485214,0.0682604;0.007231694;-0.04108795,0.09603286;-0.3694482;0.000636816,0.1050669;-0.7125;0.06943975,0.1131739;-0.7583144;0.004736915,-0.0727542;-0.001672506;-0.03322694,-0.09285278;-0.3792214;0.004889131,-0.09987197;-0.7222823;0.07388163,-0.1048765;-0.710422;-0.02433196,-0.004063874;0.3989671;0.02765468,37.61312
+0;0;0,0.001076618;0.1995373;0.01355332,0.003279267;0.4994037;0.02005883,0.1162667;0.3738773;-0.007387359,0.1891165;0.1062832;0.03116502,0.2431096;-0.1684591;0.02995538,-0.1078523;0.3591582;-0.004379105,-0.1857199;0.09128401;0.019705,-0.2324952;-0.1847737;0.0217551,0.07117548;0.006686058;-0.03590749,0.08426985;-0.3717961;-0.004606385,0.08581208;-0.7152606;0.06269725,0.09813527;-0.7606719;-0.001810826,-0.06959473;0.001046642;-0.03943955,-0.09813645;-0.3766524;-0.008962791,-0.1156834;-0.720531;0.05380318,-0.0991204;-0.7645543;-0.01135993,0.002402501;0.3994089;0.020596,0;0;0,-0.001880986;0.1992562;0.0171299,-0.00468215;0.4989576;0.02888992,0.107687;0.3753471;-0.009139817,0.191176;0.1084054;0.003965656,0.2388353;-0.1620838;-0.05047859,-0.1147535;0.3569404;0.008121012,-0.1875387;0.0865669;0.008820134,-0.2389566;-0.1880621;-0.009485214,0.0682604;0.007231694;-0.04108795,0.09603286;-0.3694482;0.000636816,0.1050669;-0.7125;0.06943975,0.1131739;-0.7583144;0.004736915,-0.0727542;-0.001672506;-0.03322694,-0.09285278;-0.3792214;0.004889131,-0.09987197;-0.7222823;0.07388163,-0.1048765;-0.710422;-0.02433196,-0.004063874;0.3989671;0.02765468,37.62442
+0;0;0,0.001076618;0.1995373;0.01355332,0.003279267;0.4994037;0.02005883,0.1162667;0.3738773;-0.007387359,0.1891165;0.1062832;0.03116502,0.2431096;-0.1684591;0.02995538,-0.1078523;0.3591582;-0.004379105,-0.1857199;0.09128401;0.019705,-0.2324952;-0.1847737;0.0217551,0.07117548;0.006686058;-0.03590749,0.08426985;-0.3717961;-0.004606385,0.08581208;-0.7152606;0.06269725,0.09813527;-0.7606719;-0.001810826,-0.06959473;0.001046642;-0.03943955,-0.09813645;-0.3766524;-0.008962791,-0.1156834;-0.720531;0.05380318,-0.0991204;-0.7645543;-0.01135993,0.002402501;0.3994089;0.020596,0;0;0,-0.001880986;0.1992562;0.0171299,-0.00468215;0.4989576;0.02888992,0.107687;0.3753471;-0.009139817,0.191176;0.1084054;0.003965656,0.2388353;-0.1620838;-0.05047859,-0.1147535;0.3569404;0.008121012,-0.1875387;0.0865669;0.008820134,-0.2389566;-0.1880621;-0.009485214,0.0682604;0.007231694;-0.04108795,0.09603286;-0.3694482;0.000636816,0.1050669;-0.7125;0.06943975,0.1131739;-0.7583144;0.004736915,-0.0727542;-0.001672506;-0.03322694,-0.09285278;-0.3792214;0.004889131,-0.09987197;-0.7222823;0.07388163,-0.1048765;-0.710422;-0.02433196,-0.004063874;0.3989671;0.02765468,37.63549
+0;0;0,0.001076618;0.1995373;0.01355332,0.003279267;0.4994037;0.02005883,0.1162667;0.3738773;-0.007387359,0.1891165;0.1062832;0.03116502,0.2431096;-0.1684591;0.02995538,-0.1078523;0.3591582;-0.004379105,-0.1857199;0.09128401;0.019705,-0.2324952;-0.1847737;0.0217551,0.07117548;0.006686058;-0.03590749,0.08426985;-0.3717961;-0.004606385,0.08581208;-0.7152606;0.06269725,0.09813527;-0.7606719;-0.001810826,-0.06959473;0.001046642;-0.03943955,-0.09813645;-0.3766524;-0.008962791,-0.1156834;-0.720531;0.05380318,-0.0991204;-0.7645543;-0.01135993,0.002402501;0.3994089;0.020596,0;0;0,-0.001445539;0.1992705;0.01700556,-0.003445774;0.4989964;0.02824546,0.1083839;0.3754686;-0.01022389,0.1917433;0.108474;0.002626569,0.2396879;-0.1618823;-0.05222583,-0.1141683;0.3574888;0.00835583,-0.1861135;0.08696726;0.0148346,-0.2295158;-0.1893793;0.002635631,0.06781041;0.007189286;-0.04183375,0.09654246;-0.3693305;0.0006787665,0.1057111;-0.712334;0.06970401,0.1135651;-0.7582409;0.005078383,-0.07300507;-0.001664388;-0.03267246,-0.09246691;-0.3793024;0.004887812,-0.09955534;-0.722376;0.07380986,-0.1049112;-0.7105334;-0.02438191,-0.003169268;0.399002;0.02722025,37.65791
+0;0;0,0.001180812;0.1995383;0.01353118,0.003581735;0.4994022;0.02008406,0.1164488;0.3736162;-0.007350182,0.18934;0.1060547;0.03135032,0.2430352;-0.1687485;0.03153057,-0.107696;0.3590737;-0.003899686,-0.1855393;0.09142372;0.02263115,-0.2310593;-0.1848008;0.02791585,0.0711773;0.006763013;-0.03588947,0.08398195;-0.3716947;-0.004174929,0.08612242;-0.7150564;0.06363453,0.09822838;-0.7602219;-0.001200646,-0.06964785;0.0009532179;-0.03934804,-0.09773143;-0.3767543;-0.00855211,-0.115343;-0.7205617;0.05458464,-0.09856874;-0.7646126;-0.01049303,0.00263498;0.399408;0.02059963,0;0;0,-0.001802214;0.1992617;0.01707434,-0.004692429;0.4989636;0.02886003,0.1073709;0.3754354;-0.01053467,0.1910851;0.1085189;0.001610066,0.2385907;-0.1620209;-0.05271699,-0.1146165;0.356661;0.00847996,-0.1869995;0.08648345;0.02131704,-0.2273636;-0.1904368;0.01204688,0.06740399;0.00714353;-0.04249318,0.09709714;-0.369227;0.0006756037,0.1062689;-0.7122152;0.06977706,0.1140376;-0.7581708;0.005198427,-0.07334386;-0.001729384;-0.03190121,-0.0922527;-0.3794555;0.005050879,-0.09932023;-0.7225448;0.07389644,-0.1050335;-0.7106979;-0.02427599,-0.003958267;0.3989747;0.0275667,37.68007
+0;0;0,0.001180812;0.1995383;0.01353118,0.003581735;0.4994022;0.02008406,0.1164488;0.3736162;-0.007350182,0.18934;0.1060547;0.03135032,0.2430352;-0.1687485;0.03153057,-0.107696;0.3590737;-0.003899686,-0.1855393;0.09142372;0.02263115,-0.2310593;-0.1848008;0.02791585,0.0711773;0.006763013;-0.03588947,0.08398195;-0.3716947;-0.004174929,0.08612242;-0.7150564;0.06363453,0.09822838;-0.7602219;-0.001200646,-0.06964785;0.0009532179;-0.03934804,-0.09773143;-0.3767543;-0.00855211,-0.115343;-0.7205617;0.05458464,-0.09856874;-0.7646126;-0.01049303,0.00263498;0.399408;0.02059963,0;0;0,-0.001802214;0.1992617;0.01707434,-0.004692429;0.4989636;0.02886003,0.1073709;0.3754354;-0.01053467,0.1910851;0.1085189;0.001610066,0.2385907;-0.1620209;-0.05271699,-0.1146165;0.356661;0.00847996,-0.1869995;0.08648345;0.02131704,-0.2273636;-0.1904368;0.01204688,0.06740399;0.00714353;-0.04249318,0.09709714;-0.369227;0.0006756037,0.1062689;-0.7122152;0.06977706,0.1140376;-0.7581708;0.005198427,-0.07334386;-0.001729384;-0.03190121,-0.0922527;-0.3794555;0.005050879,-0.09932023;-0.7225448;0.07389644,-0.1050335;-0.7106979;-0.02427599,-0.003958267;0.3989747;0.0275667,37.69171
+0;0;0,0.001180812;0.1995383;0.01353118,0.003581735;0.4994022;0.02008406,0.1164488;0.3736162;-0.007350182,0.18934;0.1060547;0.03135032,0.2430352;-0.1687485;0.03153057,-0.107696;0.3590737;-0.003899686,-0.1855393;0.09142372;0.02263115,-0.2310593;-0.1848008;0.02791585,0.0711773;0.006763013;-0.03588947,0.08398195;-0.3716947;-0.004174929,0.08612242;-0.7150564;0.06363453,0.09822838;-0.7602219;-0.001200646,-0.06964785;0.0009532179;-0.03934804,-0.09773143;-0.3767543;-0.00855211,-0.115343;-0.7205617;0.05458464,-0.09856874;-0.7646126;-0.01049303,0.00263498;0.399408;0.02059963,0;0;0,-0.001455112;0.1992777;0.01691929,-0.003451322;0.4990089;0.02805642,0.1079537;0.3757064;-0.01192976,0.1919326;0.1088558;-0.0001704413,0.2397249;-0.1618523;-0.05339651,-0.1139902;0.3568322;0.008890431,-0.1842192;0.08626899;0.02512146,-0.2221182;-0.1911189;0.02069179,0.06687383;0.00716957;-0.04331845,0.09741639;-0.3690043;0.0009577423,0.1065419;-0.7120245;0.06990638,0.1148734;-0.7579195;0.005326755,-0.07376102;-0.001918624;-0.03091327,-0.09220288;-0.3797097;0.005607741,-0.09943264;-0.722849;0.07418758,-0.1056704;-0.7110264;-0.0239484,-0.003124014;0.3990147;0.02703776,37.71365
+0;0;0,0.0010959;0.1995285;0.0136821,0.00342394;0.4993878;0.02046666,0.1161702;0.3734166;-0.007442761,0.1892503;0.1058915;0.03115304,0.2428582;-0.1689249;0.03262113,-0.1077703;0.3589105;-0.003635366,-0.1854341;0.09138718;0.02464174,-0.2297462;-0.1849862;0.0320026,0.0709257;0.006805937;-0.03637616,0.08404176;-0.3715584;-0.003689542,0.08622446;-0.7148356;0.06454499,0.08432262;-0.7023299;-0.03389452,-0.06984624;0.0009275272;-0.03899542,-0.09861681;-0.3768515;-0.009751447,-0.1154293;-0.7203925;0.05503249,-0.09854958;-0.7645291;-0.009920105,0.002497085;0.3993931;0.02090569,0;0;0,-0.001455112;0.1992777;0.01691929,-0.003451322;0.4990089;0.02805642,0.1079537;0.3757064;-0.01192976,0.1919326;0.1088558;-0.0001704413,0.2397249;-0.1618523;-0.05339651,-0.1139902;0.3568322;0.008890431,-0.1842192;0.08626899;0.02512146,-0.2221182;-0.1911189;0.02069179,0.06687383;0.00716957;-0.04331845,0.09741639;-0.3690043;0.0009577423,0.1065419;-0.7120245;0.06990638,0.1148734;-0.7579195;0.005326755,-0.07376102;-0.001918624;-0.03091327,-0.09220288;-0.3797097;0.005607741,-0.09943264;-0.722849;0.07418758,-0.1056704;-0.7110264;-0.0239484,-0.003124014;0.3990147;0.02703776,37.73595
+0;0;0,0.0010959;0.1995285;0.0136821,0.00342394;0.4993878;0.02046666,0.1161702;0.3734166;-0.007442761,0.1892503;0.1058915;0.03115304,0.2428582;-0.1689249;0.03262113,-0.1077703;0.3589105;-0.003635366,-0.1854341;0.09138718;0.02464174,-0.2297462;-0.1849862;0.0320026,0.0709257;0.006805937;-0.03637616,0.08404176;-0.3715584;-0.003689542,0.08622446;-0.7148356;0.06454499,0.08432262;-0.7023299;-0.03389452,-0.06984624;0.0009275272;-0.03899542,-0.09861681;-0.3768515;-0.009751447,-0.1154293;-0.7203925;0.05503249,-0.09854958;-0.7645291;-0.009920105,0.002497085;0.3993931;0.02090569,0;0;0,-0.001455112;0.1992777;0.01691929,-0.003451322;0.4990089;0.02805642,0.1079537;0.3757064;-0.01192976,0.1919326;0.1088558;-0.0001704413,0.2397249;-0.1618523;-0.05339651,-0.1139902;0.3568322;0.008890431,-0.1842192;0.08626899;0.02512146,-0.2221182;-0.1911189;0.02069179,0.06687383;0.00716957;-0.04331845,0.09741639;-0.3690043;0.0009577423,0.1065419;-0.7120245;0.06990638,0.1148734;-0.7579195;0.005326755,-0.07376102;-0.001918624;-0.03091327,-0.09220288;-0.3797097;0.005607741,-0.09943264;-0.722849;0.07418758,-0.1056704;-0.7110264;-0.0239484,-0.003124014;0.3990147;0.02703776,37.74733
+0;0;0,0.0010959;0.1995285;0.0136821,0.00342394;0.4993878;0.02046666,0.1161702;0.3734166;-0.007442761,0.1892503;0.1058915;0.03115304,0.2428582;-0.1689249;0.03262113,-0.1077703;0.3589105;-0.003635366,-0.1854341;0.09138718;0.02464174,-0.2297462;-0.1849862;0.0320026,0.0709257;0.006805937;-0.03637616,0.08404176;-0.3715584;-0.003689542,0.08622446;-0.7148356;0.06454499,0.08432262;-0.7023299;-0.03389452,-0.06984624;0.0009275272;-0.03899542,-0.09861681;-0.3768515;-0.009751447,-0.1154293;-0.7203925;0.05503249,-0.09854958;-0.7645291;-0.009920105,0.002497085;0.3993931;0.02090569,0;0;0,-0.0009079108;0.1993043;0.01664263,-0.001795668;0.4990698;0.02686191,0.1086265;0.3755943;-0.0140326,0.1933624;0.1090309;-0.001234173,0.240528;-0.1617526;-0.05463544,-0.1131049;0.3572858;0.008913649,-0.1866964;0.08936578;0.04360015,-0.2173681;-0.1886942;0.03168852,0.0666824;0.007186346;-0.0436098,0.09798646;-0.3689026;0.0008556768,0.1071525;-0.7119126;0.06984928,0.1154627;-0.75789;0.005363792,-0.07393305;-0.001890198;-0.03050133,-0.09137233;-0.3797477;0.005824795,-0.09902237;-0.7229089;0.07424888,-0.1058531;-0.7111195;-0.02384146,-0.001954996;0.3990719;0.02622314,37.76943
+0;0;0,0.001245473;0.1995056;0.01399922,0.003817315;0.4993525;0.0212158,0.116418;0.3737558;-0.007421967,0.189117;0.1061446;0.03129601,0.2433606;-0.1685386;0.03389979,-0.1077659;0.3596068;-0.002831478,-0.1847604;0.09201279;0.02658425,-0.227971;-0.184465;0.03622336,0.07095681;0.007102408;-0.03625862,0.08505866;-0.3711532;-0.00273503,0.08733697;-0.7143815;0.06574209,0.08521192;-0.7018498;-0.03269745,-0.06983485;0.000586668;-0.03902242,-0.09733449;-0.3772404;-0.009181065,-0.1144948;-0.7206575;0.05616605,-0.09752378;-0.7650409;-0.008479834,0.002809344;0.399358;0.02151934,0;0;0,-0.0004148448;0.1993228;0.01643976,-0.0004864868;0.499102;0.02625511,0.1092444;0.3754926;-0.01533565,0.1935744;0.1087556;-0.003509698,0.241251;-0.1619624;-0.05678926,-0.1123018;0.3573573;0.00937281,-0.1864977;0.08979595;0.04550979,-0.2129336;-0.1888973;0.03992156,0.06639017;0.00713402;-0.0440619,0.09831145;-0.3689336;0.0001439266,0.1076574;-0.7118279;0.06968689,0.1155531;-0.75784;0.005190216,-0.07426797;-0.001845606;-0.02967933,-0.09104486;-0.379813;0.005804896,-0.09860723;-0.7230006;0.07410631,-0.1059684;-0.7112307;-0.02394205,-0.0009980283;0.3991045;0.02576293,37.78072
+0;0;0,0.001245473;0.1995056;0.01399922,0.003817315;0.4993525;0.0212158,0.116418;0.3737558;-0.007421967,0.189117;0.1061446;0.03129601,0.2433606;-0.1685386;0.03389979,-0.1077659;0.3596068;-0.002831478,-0.1847604;0.09201279;0.02658425,-0.227971;-0.184465;0.03622336,0.07095681;0.007102408;-0.03625862,0.08505866;-0.3711532;-0.00273503,0.08733697;-0.7143815;0.06574209,0.08521192;-0.7018498;-0.03269745,-0.06983485;0.000586668;-0.03902242,-0.09733449;-0.3772404;-0.009181065,-0.1144948;-0.7206575;0.05616605,-0.09752378;-0.7650409;-0.008479834,0.002809344;0.399358;0.02151934,0;0;0,-0.0004148448;0.1993228;0.01643976,-0.0004864868;0.499102;0.02625511,0.1092444;0.3754926;-0.01533565,0.1935744;0.1087556;-0.003509698,0.241251;-0.1619624;-0.05678926,-0.1123018;0.3573573;0.00937281,-0.1864977;0.08979595;0.04550979,-0.2129336;-0.1888973;0.03992156,0.06639017;0.00713402;-0.0440619,0.09831145;-0.3689336;0.0001439266,0.1076574;-0.7118279;0.06968689,0.1155531;-0.75784;0.005190216,-0.07426797;-0.001845606;-0.02967933,-0.09104486;-0.379813;0.005804896,-0.09860723;-0.7230006;0.07410631,-0.1059684;-0.7112307;-0.02394205,-0.0009980283;0.3991045;0.02576293,37.792
+0;0;0,0.001245473;0.1995056;0.01399922,0.003817315;0.4993525;0.0212158,0.116418;0.3737558;-0.007421967,0.189117;0.1061446;0.03129601,0.2433606;-0.1685386;0.03389979,-0.1077659;0.3596068;-0.002831478,-0.1847604;0.09201279;0.02658425,-0.227971;-0.184465;0.03622336,0.07095681;0.007102408;-0.03625862,0.08505866;-0.3711532;-0.00273503,0.08733697;-0.7143815;0.06574209,0.08521192;-0.7018498;-0.03269745,-0.06983485;0.000586668;-0.03902242,-0.09733449;-0.3772404;-0.009181065,-0.1144948;-0.7206575;0.05616605,-0.09752378;-0.7650409;-0.008479834,0.002809344;0.399358;0.02151934,0;0;0,-0.0004148448;0.1993228;0.01643976,-0.0004864868;0.499102;0.02625511,0.1092444;0.3754926;-0.01533565,0.1935744;0.1087556;-0.003509698,0.241251;-0.1619624;-0.05678926,-0.1123018;0.3573573;0.00937281,-0.1864977;0.08979595;0.04550979,-0.2129336;-0.1888973;0.03992156,0.06639017;0.00713402;-0.0440619,0.09831145;-0.3689336;0.0001439266,0.1076574;-0.7118279;0.06968689,0.1155531;-0.75784;0.005190216,-0.07426797;-0.001845606;-0.02967933,-0.09104486;-0.379813;0.005804896,-0.09860723;-0.7230006;0.07410631,-0.1059684;-0.7112307;-0.02394205,-0.0009980283;0.3991045;0.02576293,37.80366
+0;0;0,0.001372994;0.1995016;0.01404446,0.004136571;0.4993436;0.02139886,0.1166395;0.373625;-0.007318735,0.1892731;0.105902;0.03074392,0.2433933;-0.1687974;0.03409473,-0.1074604;0.3595073;-0.002774481,-0.1852209;0.09232786;0.02834547,-0.2269741;-0.1842784;0.04041297,0.07088812;0.007122129;-0.03638887,0.08547337;-0.3710714;-0.002374981,0.08783333;-0.7142298;0.06644878,0.08574163;-0.7016931;-0.03199237,-0.06990066;0.0005665291;-0.03890472,-0.09699333;-0.3772821;-0.008965444,-0.1141415;-0.7206284;0.05675558,-0.09770239;-0.7654088;-0.007569078,0.003065642;0.3993497;0.02165065,0;0;0,0.0003519831;0.199375;0.01579491,0.0006541285;0.499166;0.02516389,0.1099915;0.3752631;-0.01679439,0.1945197;0.1085745;-0.005297978,0.2419349;-0.162169;-0.0586809,-0.1114064;0.357625;0.008865509,-0.1871114;0.09173802;0.05328238,-0.2077114;-0.1874814;0.04979428,0.06615189;0.007116985;-0.04442156,0.09922785;-0.368874;-0.0004132316,0.1086747;-0.7117822;0.06904735,0.116462;-0.7580906;0.004888304,-0.07448243;-0.001719046;-0.02914467,-0.09029733;-0.3797472;0.006134026,-0.09764031;-0.7231065;0.07359159,-0.1052443;-0.7113695;-0.0244321,2.841419E-05;0.3991684;0.0248789,37.8255
+0;0;0,0.001372994;0.1995016;0.01404446,0.004136571;0.4993436;0.02139886,0.1166395;0.373625;-0.007318735,0.1892731;0.105902;0.03074392,0.2433933;-0.1687974;0.03409473,-0.1074604;0.3595073;-0.002774481,-0.1852209;0.09232786;0.02834547,-0.2269741;-0.1842784;0.04041297,0.07088812;0.007122129;-0.03638887,0.08547337;-0.3710714;-0.002374981,0.08783333;-0.7142298;0.06644878,0.08574163;-0.7016931;-0.03199237,-0.06990066;0.0005665291;-0.03890472,-0.09699333;-0.3772821;-0.008965444,-0.1141415;-0.7206284;0.05675558,-0.09770239;-0.7654088;-0.007569078,0.003065642;0.3993497;0.02165065,0;0;0,-7.665406E-06;0.1993911;0.01559459,-0.0004034482;0.499186;0.02500717,0.1092576;0.375264;-0.0173905,0.1938107;0.1085624;-0.006387772,0.2405132;-0.1619627;-0.06147896,-0.1116211;0.356776;0.008166008,-0.1870462;0.09112599;0.05443849,-0.2053387;-0.1881063;0.06417009,0.06585806;0.006992802;-0.04487556,0.1002128;-0.3689371;-0.001327842,0.1097233;-0.7118341;0.06817899,0.1172666;-0.7580131;0.003837198,-0.07476291;-0.001511617;-0.02842924,-0.08939161;-0.3797642;0.004902683,-0.09690689;-0.723156;0.07217499,-0.1047487;-0.7114378;-0.02582647,-0.0005766455;0.3991869;0.02461115,37.8475
+0;0;0,0.001372994;0.1995016;0.01404446,0.004136571;0.4993436;0.02139886,0.1166395;0.373625;-0.007318735,0.1892731;0.105902;0.03074392,0.2433933;-0.1687974;0.03409473,-0.1074604;0.3595073;-0.002774481,-0.1852209;0.09232786;0.02834547,-0.2269741;-0.1842784;0.04041297,0.07088812;0.007122129;-0.03638887,0.08547337;-0.3710714;-0.002374981,0.08783333;-0.7142298;0.06644878,0.08574163;-0.7016931;-0.03199237,-0.06990066;0.0005665291;-0.03890472,-0.09699333;-0.3772821;-0.008965444,-0.1141415;-0.7206284;0.05675558,-0.09770239;-0.7654088;-0.007569078,0.003065642;0.3993497;0.02165065,0;0;0,-7.665406E-06;0.1993911;0.01559459,-0.0004034482;0.499186;0.02500717,0.1092576;0.375264;-0.0173905,0.1938107;0.1085624;-0.006387772,0.2405132;-0.1619627;-0.06147896,-0.1116211;0.356776;0.008166008,-0.1870462;0.09112599;0.05443849,-0.2053387;-0.1881063;0.06417009,0.06585806;0.006992802;-0.04487556,0.1002128;-0.3689371;-0.001327842,0.1097233;-0.7118341;0.06817899,0.1172666;-0.7580131;0.003837198,-0.07476291;-0.001511617;-0.02842924,-0.08939161;-0.3797642;0.004902683,-0.09690689;-0.723156;0.07217499,-0.1047487;-0.7114378;-0.02582647,-0.0005766455;0.3991869;0.02461115,37.85903
+0;0;0,0.001282445;0.1994967;0.01412158,0.003953733;0.4993357;0.02164246,0.1164652;0.3737928;-0.00735333,0.1896073;0.1059581;0.02890654,0.2425676;-0.1689378;0.03414464,-0.1075691;0.3593519;-0.002577072,-0.1853563;0.09229413;0.0295051,-0.2269772;-0.1842875;0.04255461,0.07082386;0.00704897;-0.03652798,0.08565903;-0.3710797;-0.001906939,0.08768025;-0.7141227;0.06750109,0.1002619;-0.7613553;0.00523692,-0.06994691;0.0006244212;-0.03882061,-0.09749089;-0.3772134;-0.009157073,-0.1139418;-0.7204399;0.05736265,-0.09740104;-0.7652398;-0.006913234,0.002907163;0.3993414;0.02183298,0;0;0,-0.0002362429;0.199399;0.01549138,-0.0009645738;0.499193;0.02500287,0.1085071;0.3751265;-0.01842314,0.1926554;0.1082791;-0.007862226,0.2392956;-0.1622147;-0.06315952,-0.1117654;0.3563435;0.007774787,-0.1708569;0.08435717;0.03829746,-0.1923106;-0.194138;0.05779535,0.06554192;0.006919682;-0.04534726,0.1011886;-0.3689973;-0.002736259,0.1105514;-0.7118182;0.06716518,0.0998067;-0.7000107;-0.03057728,-0.07503861;-0.001403438;-0.02769904,-0.08916151;-0.3797617;0.004636249,-0.09660427;-0.7232002;0.07167786,-0.1048493;-0.7114974;-0.02628761,-0.0009336957;0.3991942;0.02451229,37.88117
+0;0;0,0.001282445;0.1994967;0.01412158,0.003953733;0.4993357;0.02164246,0.1164652;0.3737928;-0.00735333,0.1896073;0.1059581;0.02890654,0.2425676;-0.1689378;0.03414464,-0.1075691;0.3593519;-0.002577072,-0.1853563;0.09229413;0.0295051,-0.2269772;-0.1842875;0.04255461,0.07082386;0.00704897;-0.03652798,0.08565903;-0.3710797;-0.001906939,0.08768025;-0.7141227;0.06750109,0.1002619;-0.7613553;0.00523692,-0.06994691;0.0006244212;-0.03882061,-0.09749089;-0.3772134;-0.009157073,-0.1139418;-0.7204399;0.05736265,-0.09740104;-0.7652398;-0.006913234,0.002907163;0.3993414;0.02183298,0;0;0,-0.0002362429;0.199399;0.01549138,-0.0009645738;0.499193;0.02500287,0.1085071;0.3751265;-0.01842314,0.1926554;0.1082791;-0.007862226,0.2392956;-0.1622147;-0.06315952,-0.1117654;0.3563435;0.007774787,-0.1708569;0.08435717;0.03829746,-0.1923106;-0.194138;0.05779535,0.06554192;0.006919682;-0.04534726,0.1011886;-0.3689973;-0.002736259,0.1105514;-0.7118182;0.06716518,0.0998067;-0.7000107;-0.03057728,-0.07503861;-0.001403438;-0.02769904,-0.08916151;-0.3797617;0.004636249,-0.09660427;-0.7232002;0.07167786,-0.1048493;-0.7114974;-0.02628761,-0.0009336957;0.3991942;0.02451229,37.8925
+0;0;0,0.001282445;0.1994967;0.01412158,0.003953733;0.4993357;0.02164246,0.1164652;0.3737928;-0.00735333,0.1896073;0.1059581;0.02890654,0.2425676;-0.1689378;0.03414464,-0.1075691;0.3593519;-0.002577072,-0.1853563;0.09229413;0.0295051,-0.2269772;-0.1842875;0.04255461,0.07082386;0.00704897;-0.03652798,0.08565903;-0.3710797;-0.001906939,0.08768025;-0.7141227;0.06750109,0.1002619;-0.7613553;0.00523692,-0.06994691;0.0006244212;-0.03882061,-0.09749089;-0.3772134;-0.009157073,-0.1139418;-0.7204399;0.05736265,-0.09740104;-0.7652398;-0.006913234,0.002907163;0.3993414;0.02183298,0;0;0,-1.174117E-05;0.1994106;0.01534369,0.000473076;0.4992216;0.02423582,0.109197;0.3748687;-0.01933947,0.1927119;0.1077777;-0.009975516,0.2392758;-0.1628746;-0.06455671,-0.1110222;0.3565302;0.008002937,-0.1695066;0.08496043;0.04306602,-0.2042809;-0.1922912;0.06101831,0.06541979;0.00687601;-0.04552989,0.1011124;-0.3689618;-0.002263959,0.110618;-0.7118078;0.06749468,0.09959325;-0.7000216;-0.03021263,-0.0751407;-0.001381842;-0.02742198,-0.0889866;-0.3797462;0.004962007,-0.0966373;-0.7232432;0.07167979,-0.1051614;-0.7115578;-0.02625854,-2.052902E-05;0.3992231;0.024001,37.9146
+0;0;0,0.001218779;0.1994969;0.01412499,0.003822764;0.4993353;0.02170206,0.1162365;0.3739237;-0.007875608,0.189124;0.105801;0.0267309,0.2410638;-0.1692749;0.03269319,-0.1075781;0.3590974;-0.002596943,-0.1851456;0.09206557;0.03022496,-0.2260294;-0.1845981;0.04385376,0.07068262;0.006973011;-0.03681498,0.08558077;-0.3711425;-0.002077945,0.08818422;-0.7140723;0.06786758,0.1002489;-0.7611807;0.005347587,-0.07002582;0.0006869404;-0.03867704,-0.09765062;-0.3771858;-0.009537894,-0.1140676;-0.720355;0.05728529,-0.09728941;-0.7650242;-0.007080991,0.002793669;0.3993407;0.02186819,0;0;0,-1.174117E-05;0.1994106;0.01534369,0.000473076;0.4992216;0.02423582,0.109197;0.3748687;-0.01933947,0.1927119;0.1077777;-0.009975516,0.2392758;-0.1628746;-0.06455671,-0.1110222;0.3565302;0.008002937,-0.1695066;0.08496043;0.04306602,-0.2042809;-0.1922912;0.06101831,0.06541979;0.00687601;-0.04552989,0.1011124;-0.3689618;-0.002263959,0.110618;-0.7118078;0.06749468,0.09959325;-0.7000216;-0.03021263,-0.0751407;-0.001381842;-0.02742198,-0.0889866;-0.3797462;0.004962007,-0.0966373;-0.7232432;0.07167979,-0.1051614;-0.7115578;-0.02625854,-2.052902E-05;0.3992231;0.024001,37.92648
+0;0;0,0.001218779;0.1994969;0.01412499,0.003822764;0.4993353;0.02170206,0.1162365;0.3739237;-0.007875608,0.189124;0.105801;0.0267309,0.2410638;-0.1692749;0.03269319,-0.1075781;0.3590974;-0.002596943,-0.1851456;0.09206557;0.03022496,-0.2260294;-0.1845981;0.04385376,0.07068262;0.006973011;-0.03681498,0.08558077;-0.3711425;-0.002077945,0.08818422;-0.7140723;0.06786758,0.1002489;-0.7611807;0.005347587,-0.07002582;0.0006869404;-0.03867704,-0.09765062;-0.3771858;-0.009537894,-0.1140676;-0.720355;0.05728529,-0.09728941;-0.7650242;-0.007080991,0.002793669;0.3993407;0.02186819,0;0;0,0.002285254;0.1995846;0.01268008,0.004469654;0.4994135;0.0197715,0.111938;0.3746456;-0.02325872,0.1955629;0.1075617;-0.01471221,0.2418655;-0.1629845;-0.07003733,-0.1080561;0.3567189;0.005100896,-0.1661412;0.08526301;0.04167739,-0.2004694;-0.1920183;0.06002469,0.064859;0.006199429;-0.04642064,0.1038077;-0.3695857;-0.005573116,0.1131668;-0.7124474;0.06412809,0.120739;-0.759789;0.001192078,-0.07573683;-0.0003850177;-0.02576401,-0.08609737;-0.3792728;0.001377627,-0.09368303;-0.722807;0.06791095,-0.1024268;-0.7112527;-0.0299834,0.003013843;0.3994274;0.02057504,37.94807
+0;0;0,0.001218779;0.1994969;0.01412499,0.003822764;0.4993353;0.02170206,0.1162365;0.3739237;-0.007875608,0.189124;0.105801;0.0267309,0.2410638;-0.1692749;0.03269319,-0.1075781;0.3590974;-0.002596943,-0.1851456;0.09206557;0.03022496,-0.2260294;-0.1845981;0.04385376,0.07068262;0.006973011;-0.03681498,0.08558077;-0.3711425;-0.002077945,0.08818422;-0.7140723;0.06786758,0.1002489;-0.7611807;0.005347587,-0.07002582;0.0006869404;-0.03867704,-0.09765062;-0.3771858;-0.009537894,-0.1140676;-0.720355;0.05728529,-0.09728941;-0.7650242;-0.007080991,0.002793669;0.3993407;0.02186819,0;0;0,0.002285254;0.1995846;0.01268008,0.004469654;0.4994135;0.0197715,0.111938;0.3746456;-0.02325872,0.1955629;0.1075617;-0.01471221,0.2418655;-0.1629845;-0.07003733,-0.1080561;0.3567189;0.005100896,-0.1661412;0.08526301;0.04167739,-0.2004694;-0.1920183;0.06002469,0.064859;0.006199429;-0.04642064,0.1038077;-0.3695857;-0.005573116,0.1131668;-0.7124474;0.06412809,0.120739;-0.759789;0.001192078,-0.07573683;-0.0003850177;-0.02576401,-0.08609737;-0.3792728;0.001377627,-0.09368303;-0.722807;0.06791095,-0.1024268;-0.7112527;-0.0299834,0.003013843;0.3994274;0.02057504,37.97079
+0;0;0,0.001127232;0.1994977;0.0141204,0.003597279;0.4993367;0.02172755,0.1159582;0.3738935;-0.008200312,0.1877853;0.1051957;0.02408537,0.2393513;-0.1699444;0.03032292,-0.1078099;0.3592379;-0.002594354,-0.1852267;0.09221998;0.03069323,-0.2259315;-0.1844537;0.04464979,0.07069287;0.006919855;-0.03680534,0.08551043;-0.3712027;-0.002110373,0.08846486;-0.7140359;0.06829344,0.1003803;-0.7612012;0.005815133,-0.07003582;0.0007491966;-0.03865775,-0.09744303;-0.3771209;-0.009280503,-0.1137716;-0.7203587;0.05721127,-0.09669331;-0.7650532;-0.007046558,0.002610838;0.3993417;0.02187885,0;0;0,0.004168569;0.1996911;0.01029923,0.00753861;0.4995282;0.01557282,0.1143212;0.374486;-0.02669644,0.1974799;0.1072354;-0.01884048,0.2439386;-0.1632376;-0.07439187,-0.1057404;0.3570962;0.002682292,-0.1634708;0.08604831;0.04268569,-0.196555;-0.1911604;0.06415162,0.06448328;0.005544989;-0.04702296,0.1067989;-0.3701887;-0.009159673,0.1161988;-0.7130548;0.06051451,0.1241444;-0.7603741;-0.002402883,-0.07589211;0.0004215184;-0.02530235,-0.08347739;-0.3788309;-0.002716707,-0.09111147;-0.7223654;0.06380941,-0.1000921;-0.710947;-0.03403777,0.005536025;0.3995634;0.01731382,37.98182
+0;0;0,0.001127232;0.1994977;0.0141204,0.003597279;0.4993367;0.02172755,0.1159582;0.3738935;-0.008200312,0.1877853;0.1051957;0.02408537,0.2393513;-0.1699444;0.03032292,-0.1078099;0.3592379;-0.002594354,-0.1852267;0.09221998;0.03069323,-0.2259315;-0.1844537;0.04464979,0.07069287;0.006919855;-0.03680534,0.08551043;-0.3712027;-0.002110373,0.08846486;-0.7140359;0.06829344,0.1003803;-0.7612012;0.005815133,-0.07003582;0.0007491966;-0.03865775,-0.09744303;-0.3771209;-0.009280503,-0.1137716;-0.7203587;0.05721127,-0.09669331;-0.7650532;-0.007046558,0.002610838;0.3993417;0.02187885,0;0;0,0.004168569;0.1996911;0.01029923,0.00753861;0.4995282;0.01557282,0.1143212;0.374486;-0.02669644,0.1974799;0.1072354;-0.01884048,0.2439386;-0.1632376;-0.07439187,-0.1057404;0.3570962;0.002682292,-0.1634708;0.08604831;0.04268569,-0.196555;-0.1911604;0.06415162,0.06448328;0.005544989;-0.04702296,0.1067989;-0.3701887;-0.009159673,0.1161988;-0.7130548;0.06051451,0.1241444;-0.7603741;-0.002402883,-0.07589211;0.0004215184;-0.02530235,-0.08347739;-0.3788309;-0.002716707,-0.09111147;-0.7223654;0.06380941,-0.1000921;-0.710947;-0.03403777,0.005536025;0.3995634;0.01731382,37.99305
+0;0;0,0.001127232;0.1994977;0.0141204,0.003597279;0.4993367;0.02172755,0.1159582;0.3738935;-0.008200312,0.1877853;0.1051957;0.02408537,0.2393513;-0.1699444;0.03032292,-0.1078099;0.3592379;-0.002594354,-0.1852267;0.09221998;0.03069323,-0.2259315;-0.1844537;0.04464979,0.07069287;0.006919855;-0.03680534,0.08551043;-0.3712027;-0.002110373,0.08846486;-0.7140359;0.06829344,0.1003803;-0.7612012;0.005815133,-0.07003582;0.0007491966;-0.03865775,-0.09744303;-0.3771209;-0.009280503,-0.1137716;-0.7203587;0.05721127,-0.09669331;-0.7650532;-0.007046558,0.002610838;0.3993417;0.02187885,0;0;0,0.004168569;0.1996911;0.01029923,0.00753861;0.4995282;0.01557282,0.1143212;0.374486;-0.02669644,0.1974799;0.1072354;-0.01884048,0.2439386;-0.1632376;-0.07439187,-0.1057404;0.3570962;0.002682292,-0.1634708;0.08604831;0.04268569,-0.196555;-0.1911604;0.06415162,0.06448328;0.005544989;-0.04702296,0.1067989;-0.3701887;-0.009159673,0.1161988;-0.7130548;0.06051451,0.1241444;-0.7603741;-0.002402883,-0.07589211;0.0004215184;-0.02530235,-0.08347739;-0.3788309;-0.002716707,-0.09111147;-0.7223654;0.06380941,-0.1000921;-0.710947;-0.03403777,0.005536025;0.3995634;0.01731382,38.00452
+0;0;0,0.001012381;0.1995011;0.01408158,0.003325033;0.4993421;0.02166798,0.1155969;0.3738085;-0.008700766,0.1867887;0.1047128;0.0216189,0.2367343;-0.1707462;0.0268879,-0.1080524;0.3591329;-0.002383202,-0.1852124;0.09211591;0.03150287,-0.2257252;-0.1845897;0.04538602,0.07060455;0.006895674;-0.03697901,0.08557328;-0.3711356;-0.00136603,0.08863868;-0.7138885;0.0694225,0.1000853;-0.7608703;0.006630845,-0.07015754;0.0007857837;-0.0384357,-0.0974248;-0.3770417;-0.008387484,-0.1136178;-0.7202749;0.05816143,-0.09693804;-0.7646009;-0.006626181,0.002387896;0.3993466;0.02182022,0;0;0,0.003267345;0.199684;0.01075285,0.005534571;0.4995427;0.01638995,0.1126292;0.3744411;-0.02734412,0.1953754;0.1070412;-0.0202473,0.24209;-0.1633464;-0.07599954,-0.1067133;0.3566661;0.002313253,-0.1631826;0.08562592;0.04412737,-0.194919;-0.191663;0.06656985,0.06445668;0.00554312;-0.04705965,0.106861;-0.3701795;-0.00918645,0.11623;-0.7130402;0.06051821,0.1241428;-0.759582;-0.003346842,-0.07591333;0.0004146352;-0.02523874,-0.08346418;-0.3788464;-0.00278746,-0.09117652;-0.7223794;0.06373747,-0.1004768;-0.7109514;-0.0340817,0.004292529;0.3995594;0.01773625,38.02654
+0;0;0,0.001012381;0.1995011;0.01408158,0.003325033;0.4993421;0.02166798,0.1155969;0.3738085;-0.008700766,0.1867887;0.1047128;0.0216189,0.2367343;-0.1707462;0.0268879,-0.1080524;0.3591329;-0.002383202,-0.1852124;0.09211591;0.03150287,-0.2257252;-0.1845897;0.04538602,0.07060455;0.006895674;-0.03697901,0.08557328;-0.3711356;-0.00136603,0.08863868;-0.7138885;0.0694225,0.1000853;-0.7608703;0.006630845,-0.07015754;0.0007857837;-0.0384357,-0.0974248;-0.3770417;-0.008387484,-0.1136178;-0.7202749;0.05816143,-0.09693804;-0.7646009;-0.006626181,0.002387896;0.3993466;0.02182022,0;0;0,0.003267345;0.199684;0.01075285,0.005534571;0.4995427;0.01638995,0.1126292;0.3744411;-0.02734412,0.1953754;0.1070412;-0.0202473,0.24209;-0.1633464;-0.07599954,-0.1067133;0.3566661;0.002313253,-0.1631826;0.08562592;0.04412737,-0.194919;-0.191663;0.06656985,0.06445668;0.00554312;-0.04705965,0.106861;-0.3701795;-0.00918645,0.11623;-0.7130402;0.06051821,0.1241428;-0.759582;-0.003346842,-0.07591333;0.0004146352;-0.02523874,-0.08346418;-0.3788464;-0.00278746,-0.09117652;-0.7223794;0.06373747,-0.1004768;-0.7109514;-0.0340817,0.004292529;0.3995594;0.01773625,38.03809
+0;0;0,0.001012381;0.1995011;0.01408158,0.003325033;0.4993421;0.02166798,0.1155969;0.3738085;-0.008700766,0.1867887;0.1047128;0.0216189,0.2367343;-0.1707462;0.0268879,-0.1080524;0.3591329;-0.002383202,-0.1852124;0.09211591;0.03150287,-0.2257252;-0.1845897;0.04538602,0.07060455;0.006895674;-0.03697901,0.08557328;-0.3711356;-0.00136603,0.08863868;-0.7138885;0.0694225,0.1000853;-0.7608703;0.006630845,-0.07015754;0.0007857837;-0.0384357,-0.0974248;-0.3770417;-0.008387484,-0.1136178;-0.7202749;0.05816143,-0.09693804;-0.7646009;-0.006626181,0.002387896;0.3993466;0.02182022,0;0;0,0.002655178;0.1996776;0.01103619,0.003299751;0.4995396;0.01748757,0.1109432;0.3742522;-0.02736061,0.1939874;0.1069312;-0.02079178,0.2413776;-0.16314;-0.07749888,-0.1079236;0.3564024;0.002365392,-0.1642481;0.08578381;0.04700979,-0.1957474;-0.1915727;0.06894508,0.06433354;0.005585714;-0.04722283,0.1064536;-0.3701495;-0.009157427,0.1156888;-0.7130316;0.06045958,0.1237328;-0.7593957;-0.003601596,-0.07588878;0.0003561281;-0.02531334,-0.08454543;-0.3788705;-0.002679972,-0.09210189;-0.7224317;0.06371729,-0.1016087;-0.7109852;-0.03408551,0.002907655;0.399544;0.01834121,38.05998
+0;0;0,0.001024987;0.1994964;0.0141466,0.003406151;0.4993333;0.02188041,0.1155072;0.3738177;-0.009077933,0.1856704;0.1041371;0.01829866,0.2345224;-0.171554;0.02110785,-0.1080634;0.3593248;-0.002270255,-0.1928134;0.09483835;0.03328716,-0.2270639;-0.1827974;0.04534101,0.07052246;0.006900224;-0.03713448,0.08529306;-0.3710473;-0.0005629063,0.0893843;-0.713665;0.07082637,0.1004953;-0.7606269;0.007950157,-0.07025106;0.0007780974;-0.03826464,-0.09703693;-0.3770726;-0.008076167,-0.1126279;-0.7202342;0.05898423,-0.09627555;-0.7647176;-0.005706012,0.002439821;0.399338;0.02197829,0;0;0,0.002655178;0.1996776;0.01103619,0.003299751;0.4995396;0.01748757,0.1109432;0.3742522;-0.02736061,0.1939874;0.1069312;-0.02079178,0.2413776;-0.16314;-0.07749888,-0.1079236;0.3564024;0.002365392,-0.1642481;0.08578381;0.04700979,-0.1957474;-0.1915727;0.06894508,0.06433354;0.005585714;-0.04722283,0.1064536;-0.3701495;-0.009157427,0.1156888;-0.7130316;0.06045958,0.1237328;-0.7593957;-0.003601596,-0.07588878;0.0003561281;-0.02531334,-0.08454543;-0.3788705;-0.002679972,-0.09210189;-0.7224317;0.06371729,-0.1016087;-0.7109852;-0.03408551,0.002907655;0.399544;0.01834121,38.07133
+0;0;0,0.001024987;0.1994964;0.0141466,0.003406151;0.4993333;0.02188041,0.1155072;0.3738177;-0.009077933,0.1856704;0.1041371;0.01829866,0.2345224;-0.171554;0.02110785,-0.1080634;0.3593248;-0.002270255,-0.1928134;0.09483835;0.03328716,-0.2270639;-0.1827974;0.04534101,0.07052246;0.006900224;-0.03713448,0.08529306;-0.3710473;-0.0005629063,0.0893843;-0.713665;0.07082637,0.1004953;-0.7606269;0.007950157,-0.07025106;0.0007780974;-0.03826464,-0.09703693;-0.3770726;-0.008076167,-0.1126279;-0.7202342;0.05898423,-0.09627555;-0.7647176;-0.005706012,0.002439821;0.399338;0.02197829,0;0;0,0.002198363;0.1996671;0.01132428,0.002395923;0.4995332;0.01777828,0.1101686;0.3741751;-0.02731275,0.1932618;0.1068559;-0.02131687,0.2406801;-0.1623963;-0.08177143,-0.1084375;0.3560136;0.002398612,-0.1649023;0.085848;0.04953974,-0.1959936;-0.191512;0.0720061,0.06429959;0.005605657;-0.04726667,0.1063934;-0.3701313;-0.009190299,0.1155581;-0.7129728;0.06063657,0.1235966;-0.7591432;-0.003655314,-0.07591937;0.0003246906;-0.02522187,-0.08443641;-0.3789648;-0.003613329,-0.09216411;-0.7224643;0.06308256,-0.1018133;-0.7110195;-0.034706,0.002218784;0.3995364;0.01855284,38.09349
+0;0;0,0.001024987;0.1994964;0.0141466,0.003406151;0.4993333;0.02188041,0.1155072;0.3738177;-0.009077933,0.1856704;0.1041371;0.01829866,0.2345224;-0.171554;0.02110785,-0.1080634;0.3593248;-0.002270255,-0.1928134;0.09483835;0.03328716,-0.2270639;-0.1827974;0.04534101,0.07052246;0.006900224;-0.03713448,0.08529306;-0.3710473;-0.0005629063,0.0893843;-0.713665;0.07082637,0.1004953;-0.7606269;0.007950157,-0.07025106;0.0007780974;-0.03826464,-0.09703693;-0.3770726;-0.008076167,-0.1126279;-0.7202342;0.05898423,-0.09627555;-0.7647176;-0.005706012,0.002439821;0.399338;0.02197829,0;0;0,0.002198363;0.1996671;0.01132428,0.002395923;0.4995332;0.01777828,0.1101686;0.3741751;-0.02731275,0.1932618;0.1068559;-0.02131687,0.2406801;-0.1623963;-0.08177143,-0.1084375;0.3560136;0.002398612,-0.1649023;0.085848;0.04953974,-0.1959936;-0.191512;0.0720061,0.06429959;0.005605657;-0.04726667,0.1063934;-0.3701313;-0.009190299,0.1155581;-0.7129728;0.06063657,0.1235966;-0.7591432;-0.003655314,-0.07591937;0.0003246906;-0.02522187,-0.08443641;-0.3789648;-0.003613329,-0.09216411;-0.7224643;0.06308256,-0.1018133;-0.7110195;-0.034706,0.002218784;0.3995364;0.01855284,38.10483
+0;0;0,0.001099453;0.1994887;0.01424963,0.00360103;0.4993201;0.02215582,0.1155327;0.3737634;-0.009291209,0.1853197;0.1038182;0.01638673,0.2331645;-0.1720615;0.01750871,-0.1082525;0.3601265;-0.001818389,-0.1916807;0.09512469;0.03302075,-0.2265392;-0.1824379;0.04501536,0.07034298;0.006810022;-0.03748985,0.0856939;-0.3710018;0.0002277792,0.08988488;-0.7135971;0.07171844,0.1010822;-0.7605023;0.008788198,-0.07037286;0.00083788;-0.03803889,-0.09720767;-0.3770266;-0.008066742,-0.1122533;-0.7200976;0.05957875,-0.0958655;-0.7649307;-0.004697673,0.002593517;0.3993253;0.02219438,0;0;0,0.001916343;0.1996634;0.01143919,0.001689473;0.4995314;0.01788845,0.1093417;0.3738556;-0.02776995,0.1925588;0.1065574;-0.02261485,0.2393047;-0.1619095;-0.08696029,-0.1089134;0.3559406;0.002328126,-0.1647493;0.08572733;0.04994266,-0.1953687;-0.1916533;0.07279892,0.06421343;0.005590721;-0.04738542,0.1062118;-0.370146;-0.009200383,0.1155092;-0.7129911;0.06059053,0.122986;-0.7589283;-0.004044201,-0.07599524;0.0003370914;-0.0249922,-0.08493645;-0.378962;-0.003725497,-0.0922903;-0.7224277;0.06318641,-0.1021286;-0.7109943;-0.03458113,0.001693941;0.3995341;0.01862593,38.12703
+0;0;0,0.001099453;0.1994887;0.01424963,0.00360103;0.4993201;0.02215582,0.1155327;0.3737634;-0.009291209,0.1853197;0.1038182;0.01638673,0.2331645;-0.1720615;0.01750871,-0.1082525;0.3601265;-0.001818389,-0.1916807;0.09512469;0.03302075,-0.2265392;-0.1824379;0.04501536,0.07034298;0.006810022;-0.03748985,0.0856939;-0.3710018;0.0002277792,0.08988488;-0.7135971;0.07171844,0.1010822;-0.7605023;0.008788198,-0.07037286;0.00083788;-0.03803889,-0.09720767;-0.3770266;-0.008066742,-0.1122533;-0.7200976;0.05957875,-0.0958655;-0.7649307;-0.004697673,0.002593517;0.3993253;0.02219438,0;0;0,0.001916343;0.1996634;0.01143919,0.001689473;0.4995314;0.01788845,0.1093417;0.3738556;-0.02776995,0.1925588;0.1065574;-0.02261485,0.2393047;-0.1619095;-0.08696029,-0.1089134;0.3559406;0.002328126,-0.1647493;0.08572733;0.04994266,-0.1953687;-0.1916533;0.07279892,0.06421343;0.005590721;-0.04738542,0.1062118;-0.370146;-0.009200383,0.1155092;-0.7129911;0.06059053,0.122986;-0.7589283;-0.004044201,-0.07599524;0.0003370914;-0.0249922,-0.08493645;-0.378962;-0.003725497,-0.0922903;-0.7224277;0.06318641,-0.1021286;-0.7109943;-0.03458113,0.001693941;0.3995341;0.01862593,38.13842
+0;0;0,0.001099453;0.1994887;0.01424963,0.00360103;0.4993201;0.02215582,0.1155327;0.3737634;-0.009291209,0.1853197;0.1038182;0.01638673,0.2331645;-0.1720615;0.01750871,-0.1082525;0.3601265;-0.001818389,-0.1916807;0.09512469;0.03302075,-0.2265392;-0.1824379;0.04501536,0.07034298;0.006810022;-0.03748985,0.0856939;-0.3710018;0.0002277792,0.08988488;-0.7135971;0.07171844,0.1010822;-0.7605023;0.008788198,-0.07037286;0.00083788;-0.03803889,-0.09720767;-0.3770266;-0.008066742,-0.1122533;-0.7200976;0.05957875,-0.0958655;-0.7649307;-0.004697673,0.002593517;0.3993253;0.02219438,0;0;0,0.001948228;0.1996685;0.01134406,0.002717308;0.4995564;0.01643782,0.1100191;0.3740558;-0.02853877,0.1934813;0.1068189;-0.02424414,0.2399964;-0.1613144;-0.09012954,-0.1088218;0.3566976;0.002973649,-0.1644922;0.08641744;0.05040197,-0.1950011;-0.1909699;0.0733248,0.06412631;0.005554957;-0.04750746,0.1061552;-0.3701527;-0.009071376,0.1155467;-0.7130663;0.06036954,0.1231179;-0.75932;-0.003880408,-0.07610758;0.0004555275;-0.02464607,-0.0853553;-0.3788557;-0.003729435,-0.09268617;-0.7223066;0.06326085,-0.1028219;-0.7109162;-0.03446813,0.002282463;0.3995658;0.01774362,38.1605
+0;0;0,0.00105916;0.1994945;0.01417203,0.003474521;0.4993307;0.02192073,0.115541;0.3736277;-0.008974023,0.1847372;0.1033208;0.01439438,0.2316803;-0.1727138;0.01330119,-0.1083727;0.3597441;-0.001232911,-0.189875;0.09362745;0.02941504,-0.2245457;-0.1839394;0.04184762,0.07034224;0.00710968;-0.03743557,0.08607035;-0.37058;0.001335066,0.09005131;-0.7130488;0.07344081,0.101655;-0.7590137;0.009450994,-0.07044063;0.0004877389;-0.03791939,-0.09652691;-0.3773278;-0.006695328,-0.11133;-0.7203842;0.06107711,-0.09484135;-0.7651799;-0.003217109,0.002497197;0.3993355;0.02201321,0;0;0,0.001948228;0.1996685;0.01134406,0.002717308;0.4995564;0.01643782,0.1100191;0.3740558;-0.02853877,0.1934813;0.1068189;-0.02424414,0.2399964;-0.1613144;-0.09012954,-0.1088218;0.3566976;0.002973649,-0.1644922;0.08641744;0.05040197,-0.1950011;-0.1909699;0.0733248,0.06412631;0.005554957;-0.04750746,0.1061552;-0.3701527;-0.009071376,0.1155467;-0.7130663;0.06036954,0.1231179;-0.75932;-0.003880408,-0.07610758;0.0004555275;-0.02464607,-0.0853553;-0.3788557;-0.003729435,-0.09268617;-0.7223066;0.06326085,-0.1028219;-0.7109162;-0.03446813,0.002282463;0.3995658;0.01774362,38.1719
+0;0;0,0.00105916;0.1994945;0.01417203,0.003474521;0.4993307;0.02192073,0.115541;0.3736277;-0.008974023,0.1847372;0.1033208;0.01439438,0.2316803;-0.1727138;0.01330119,-0.1083727;0.3597441;-0.001232911,-0.189875;0.09362745;0.02941504,-0.2245457;-0.1839394;0.04184762,0.07034224;0.00710968;-0.03743557,0.08607035;-0.37058;0.001335066,0.09005131;-0.7130488;0.07344081,0.101655;-0.7590137;0.009450994,-0.07044063;0.0004877389;-0.03791939,-0.09652691;-0.3773278;-0.006695328,-0.11133;-0.7203842;0.06107711,-0.09484135;-0.7651799;-0.003217109,0.002497197;0.3993355;0.02201321,0;0;0,0.001873769;0.1996882;0.01100451,0.003193556;0.4995834;0.01521486,0.1101221;0.3740541;-0.02968502,0.1939396;0.1069099;-0.02675521,0.2407485;-0.1608772;-0.09382976,-0.1087189;0.3568752;0.002815912,-0.1645079;0.08671099;0.05076285,-0.1947128;-0.1906702;0.074158,0.06390838;0.005527375;-0.04780341,0.1059111;-0.3701293;-0.00884483,0.1152224;-0.7131516;0.06006837,0.1225084;-0.7602414;-0.003209352,-0.07623295;0.0005741171;-0.02425296,-0.08545149;-0.3787871;-0.004250497,-0.09319774;-0.7222568;0.06259667,-0.1035756;-0.7109091;-0.03509874,0.002528449;0.3996;0.01690909,38.19401
+0;0;0,0.00105916;0.1994945;0.01417203,0.003474521;0.4993307;0.02192073,0.115541;0.3736277;-0.008974023,0.1847372;0.1033208;0.01439438,0.2316803;-0.1727138;0.01330119,-0.1083727;0.3597441;-0.001232911,-0.189875;0.09362745;0.02941504,-0.2245457;-0.1839394;0.04184762,0.07034224;0.00710968;-0.03743557,0.08607035;-0.37058;0.001335066,0.09005131;-0.7130488;0.07344081,0.101655;-0.7590137;0.009450994,-0.07044063;0.0004877389;-0.03791939,-0.09652691;-0.3773278;-0.006695328,-0.11133;-0.7203842;0.06107711,-0.09484135;-0.7651799;-0.003217109,0.002497197;0.3993355;0.02201321,0;0;0,0.001873769;0.1996882;0.01100451,0.003193556;0.4995834;0.01521486,0.1101221;0.3740541;-0.02968502,0.1939396;0.1069099;-0.02675521,0.2407485;-0.1608772;-0.09382976,-0.1087189;0.3568752;0.002815912,-0.1645079;0.08671099;0.05076285,-0.1947128;-0.1906702;0.074158,0.06390838;0.005527375;-0.04780341,0.1059111;-0.3701293;-0.00884483,0.1152224;-0.7131516;0.06006837,0.1225084;-0.7602414;-0.003209352,-0.07623295;0.0005741171;-0.02425296,-0.08545149;-0.3787871;-0.004250497,-0.09319774;-0.7222568;0.06259667,-0.1035756;-0.7109091;-0.03509874,0.002528449;0.3996;0.01690909,38.20523
+0;0;0,0.001417124;0.199476;0.01439806,0.004186382;0.4993019;0.02241488,0.1160415;0.3735514;-0.008934297,0.1854388;0.1031636;0.01284791,0.2315873;-0.1729893;0.009707215,-0.1077795;0.3596897;-0.0006692186,-0.1891642;0.0935618;0.03019345,-0.2303701;-0.1832079;0.04022244,0.07031596;0.007255646;-0.03745694,0.08707312;-0.3702989;0.002188589,0.09112496;-0.7127542;0.07435416,0.1022552;-0.7587255;0.01028778,-0.07048096;0.0003558344;-0.03784584,-0.09625507;-0.3774327;-0.006041754,-0.1103662;-0.7204705;0.06197225,-0.09397729;-0.765406;-0.002184425,0.003112092;0.3993076;0.02242771,0;0;0,0.001641479;0.1996957;0.01090524,0.003165103;0.4996029;0.01455984,0.110111;0.3737405;-0.0300602,0.194015;0.1066079;-0.02949212,0.2404491;-0.1599255;-0.1016298,-0.1089861;0.3570895;0.003633025,-0.1642619;0.0869503;0.05230938,-0.1945652;-0.1904503;0.07534452,0.06359305;0.005601709;-0.04821353,0.1044864;-0.3700685;-0.008217778,0.1138915;-0.713084;0.06071595,0.1212166;-0.7601421;-0.002595972,-0.07634071;0.0004561735;-0.02391415,-0.08707643;-0.3788255;-0.003174687,-0.09472924;-0.7222931;0.06369417,-0.1053267;-0.7109692;-0.03397311,0.002504536;0.3996206;0.01631946,38.22742
+0;0;0,0.001417124;0.199476;0.01439806,0.004186382;0.4993019;0.02241488,0.1160415;0.3735514;-0.008934297,0.1854388;0.1031636;0.01284791,0.2315873;-0.1729893;0.009707215,-0.1077795;0.3596897;-0.0006692186,-0.1891642;0.0935618;0.03019345,-0.2303701;-0.1832079;0.04022244,0.07031596;0.007255646;-0.03745694,0.08707312;-0.3702989;0.002188589,0.09112496;-0.7127542;0.07435416,0.1022552;-0.7587255;0.01028778,-0.07048096;0.0003558344;-0.03784584,-0.09625507;-0.3774327;-0.006041754,-0.1103662;-0.7204705;0.06197225,-0.09397729;-0.765406;-0.002184425,0.003112092;0.3993076;0.02242771,0;0;0,0.001641479;0.1996957;0.01090524,0.003165103;0.4996029;0.01455984,0.110111;0.3737405;-0.0300602,0.194015;0.1066079;-0.02949212,0.2404491;-0.1599255;-0.1016298,-0.1089861;0.3570895;0.003633025,-0.1642619;0.0869503;0.05230938,-0.1945652;-0.1904503;0.07534452,0.06359305;0.005601709;-0.04821353,0.1044864;-0.3700685;-0.008217778,0.1138915;-0.713084;0.06071595,0.1212166;-0.7601421;-0.002595972,-0.07634071;0.0004561735;-0.02391415,-0.08707643;-0.3788255;-0.003174687,-0.09472924;-0.7222931;0.06369417,-0.1053267;-0.7109692;-0.03397311,0.002504536;0.3996206;0.01631946,38.23898
+0;0;0,0.001417124;0.199476;0.01439806,0.004186382;0.4993019;0.02241488,0.1160415;0.3735514;-0.008934297,0.1854388;0.1031636;0.01284791,0.2315873;-0.1729893;0.009707215,-0.1077795;0.3596897;-0.0006692186,-0.1891642;0.0935618;0.03019345,-0.2303701;-0.1832079;0.04022244,0.07031596;0.007255646;-0.03745694,0.08707312;-0.3702989;0.002188589,0.09112496;-0.7127542;0.07435416,0.1022552;-0.7587255;0.01028778,-0.07048096;0.0003558344;-0.03784584,-0.09625507;-0.3774327;-0.006041754,-0.1103662;-0.7204705;0.06197225,-0.09397729;-0.765406;-0.002184425,0.003112092;0.3993076;0.02242771,0;0;0,0.001518282;0.1996922;0.01098704,0.003058072;0.4996021;0.01463839,0.1099333;0.3735991;-0.03017169,0.1942174;0.1065893;-0.03156879,0.2407913;-0.158708;-0.1080423,-0.1091944;0.357261;0.004137693,-0.1647747;0.08723095;0.05307206,-0.1952389;-0.1901364;0.07629471,0.06346121;0.005698846;-0.04837558,0.1036191;-0.3699868;-0.007784769,0.1132049;-0.7130094;0.06108918,0.1206617;-0.760022;-0.00226257,-0.07643844;0.0003365743;-0.02360191,-0.08741859;-0.3789099;-0.002352059,-0.09517858;-0.7224077;0.06434877,-0.1059335;-0.7110866;-0.03330079,0.0024165;0.3996186;0.01633767,38.26097
+0;0;0,0.001260006;0.1994694;0.01450395,0.003825224;0.4992913;0.02274317,0.1157192;0.373736;-0.008935485,0.1852207;0.1032841;0.01168708,0.2304237;-0.1729909;0.00631843,-0.108097;0.3596301;-0.0002460759,-0.1891554;0.09342307;0.03079196,-0.2301577;-0.1833943;0.04033035,0.07018033;0.007362246;-0.03768976,0.08752616;-0.3700815;0.002749152,0.09195178;-0.7125136;0.0750036,0.1024432;-0.7581338;0.01041638,-0.07058677;0.0002624196;-0.03764888,-0.09679794;-0.3775338;-0.006296117,-0.1097348;-0.7204405;0.06260683,-0.09366999;-0.7658871;-0.001030758,0.00281414;0.3992965;0.02267312,0;0;0,0.001199503;0.1996802;0.01124156,0.001350656;0.499588;0.01594163,0.1086676;0.3733486;-0.02974328,0.1936905;0.1066007;-0.03382802,0.2398015;-0.1582345;-0.1121614,-0.1101077;0.3567961;0.005004219,-0.1659257;0.08675793;0.05362228,-0.1968022;-0.1903376;0.07940432,0.06329446;0.005706145;-0.04859272,0.1029741;-0.369963;-0.007383112,0.1126788;-0.7129458;0.06167221,0.1203121;-0.7599739;-0.001639772,-0.076529;0.0002995078;-0.0233071,-0.08764015;-0.3789071;-0.001423279,-0.09551927;-0.7224695;0.06493013,-0.1065544;-0.7111311;-0.03269145,0.001347158;0.3995946;0.01709123,38.28322
+0;0;0,0.001260006;0.1994694;0.01450395,0.003825224;0.4992913;0.02274317,0.1157192;0.373736;-0.008935485,0.1852207;0.1032841;0.01168708,0.2304237;-0.1729909;0.00631843,-0.108097;0.3596301;-0.0002460759,-0.1891554;0.09342307;0.03079196,-0.2301577;-0.1833943;0.04033035,0.07018033;0.007362246;-0.03768976,0.08752616;-0.3700815;0.002749152,0.09195178;-0.7125136;0.0750036,0.1024432;-0.7581338;0.01041638,-0.07058677;0.0002624196;-0.03764888,-0.09679794;-0.3775338;-0.006296117,-0.1097348;-0.7204405;0.06260683,-0.09366999;-0.7658871;-0.001030758,0.00281414;0.3992965;0.02267312,0;0;0,0.001199503;0.1996802;0.01124156,0.001350656;0.499588;0.01594163,0.1086676;0.3733486;-0.02974328,0.1936905;0.1066007;-0.03382802,0.2398015;-0.1582345;-0.1121614,-0.1101077;0.3567961;0.005004219,-0.1659257;0.08675793;0.05362228,-0.1968022;-0.1903376;0.07940432,0.06329446;0.005706145;-0.04859272,0.1029741;-0.369963;-0.007383112,0.1126788;-0.7129458;0.06167221,0.1203121;-0.7599739;-0.001639772,-0.076529;0.0002995078;-0.0233071,-0.08764015;-0.3789071;-0.001423279,-0.09551927;-0.7224695;0.06493013,-0.1065544;-0.7111311;-0.03269145,0.001347158;0.3995946;0.01709123,38.29445
+0;0;0,0.001260006;0.1994694;0.01450395,0.003825224;0.4992913;0.02274317,0.1157192;0.373736;-0.008935485,0.1852207;0.1032841;0.01168708,0.2304237;-0.1729909;0.00631843,-0.108097;0.3596301;-0.0002460759,-0.1891554;0.09342307;0.03079196,-0.2301577;-0.1833943;0.04033035,0.07018033;0.007362246;-0.03768976,0.08752616;-0.3700815;0.002749152,0.09195178;-0.7125136;0.0750036,0.1024432;-0.7581338;0.01041638,-0.07058677;0.0002624196;-0.03764888,-0.09679794;-0.3775338;-0.006296117,-0.1097348;-0.7204405;0.06260683,-0.09366999;-0.7658871;-0.001030758,0.00281414;0.3992965;0.02267312,0;0;0,0.001199503;0.1996802;0.01124156,0.001350656;0.499588;0.01594163,0.1086676;0.3733486;-0.02974328,0.1936905;0.1066007;-0.03382802,0.2398015;-0.1582345;-0.1121614,-0.1101077;0.3567961;0.005004219,-0.1659257;0.08675793;0.05362228,-0.1968022;-0.1903376;0.07940432,0.06329446;0.005706145;-0.04859272,0.1029741;-0.369963;-0.007383112,0.1126788;-0.7129458;0.06167221,0.1203121;-0.7599739;-0.001639772,-0.076529;0.0002995078;-0.0233071,-0.08764015;-0.3789071;-0.001423279,-0.09551927;-0.7224695;0.06493013,-0.1065544;-0.7111311;-0.03269145,0.001347158;0.3995946;0.01709123,38.30585
+0;0;0,0.001471014;0.1994415;0.01486303,0.004359158;0.4992478;0.02353466,0.11593;0.3736219;-0.008984927,0.1854867;0.1030716;0.01010542,0.2293541;-0.1733529;0.002036626,-0.1076582;0.359468;0.0005711112,-0.1885638;0.09321052;0.03157523,-0.2291441;-0.1837354;0.03893694,0.07026105;0.007184375;-0.03757352,0.08851641;-0.3701544;0.003440764,0.09334322;-0.71251;0.076031,0.1036284;-0.7583896;0.01171529,-0.07058665;0.0004675959;-0.03764712,-0.09558873;-0.3773223;-0.005247634,-0.1084649;-0.7201701;0.06395876,-0.09214567;-0.7655904;0.0003547445,0.00324232;0.3992543;0.02333338,0;0;0,0.001265261;0.1996917;0.01102884,0.002230873;0.4996105;0.01481407,0.1091993;0.372918;-0.03035545,0.1948225;0.1064505;-0.03833861,0.2419755;-0.1568047;-0.121244,-0.1098483;0.3571749;0.005798399,-0.166513;0.0872671;0.05416035,-0.200295;-0.1898046;0.07629685,0.06315204;0.005732879;-0.04877452,0.1023105;-0.3699167;-0.006893303,0.1120183;-0.7129066;0.06212612,0.118885;-0.7592722;-0.002070013,-0.07648901;0.0002507793;-0.02343863,-0.08886068;-0.3788812;-0.0009473134,-0.09670261;-0.7224513;0.06537089,-0.1079573;-0.7111498;-0.03221856,0.001903579;0.3996218;0.01627646,38.32796
+0;0;0,0.001471014;0.1994415;0.01486303,0.004359158;0.4992478;0.02353466,0.11593;0.3736219;-0.008984927,0.1854867;0.1030716;0.01010542,0.2293541;-0.1733529;0.002036626,-0.1076582;0.359468;0.0005711112,-0.1885638;0.09321052;0.03157523,-0.2291441;-0.1837354;0.03893694,0.07026105;0.007184375;-0.03757352,0.08851641;-0.3701544;0.003440764,0.09334322;-0.71251;0.076031,0.1036284;-0.7583896;0.01171529,-0.07058665;0.0004675959;-0.03764712,-0.09558873;-0.3773223;-0.005247634,-0.1084649;-0.7201701;0.06395876,-0.09214567;-0.7655904;0.0003547445,0.00324232;0.3992543;0.02333338,0;0;0,0.001265261;0.1996917;0.01102884,0.002230873;0.4996105;0.01481407,0.1091993;0.372918;-0.03035545,0.1948225;0.1064505;-0.03833861,0.2419755;-0.1568047;-0.121244,-0.1098483;0.3571749;0.005798399,-0.166513;0.0872671;0.05416035,-0.200295;-0.1898046;0.07629685,0.06315204;0.005732879;-0.04877452,0.1023105;-0.3699167;-0.006893303,0.1120183;-0.7129066;0.06212612,0.118885;-0.7592722;-0.002070013,-0.07648901;0.0002507793;-0.02343863,-0.08886068;-0.3788812;-0.0009473134,-0.09670261;-0.7224513;0.06537089,-0.1079573;-0.7111498;-0.03221856,0.001903579;0.3996218;0.01627646,38.33928
+0;0;0,0.001471014;0.1994415;0.01486303,0.004359158;0.4992478;0.02353466,0.11593;0.3736219;-0.008984927,0.1854867;0.1030716;0.01010542,0.2293541;-0.1733529;0.002036626,-0.1076582;0.359468;0.0005711112,-0.1885638;0.09321052;0.03157523,-0.2291441;-0.1837354;0.03893694,0.07026105;0.007184375;-0.03757352,0.08851641;-0.3701544;0.003440764,0.09334322;-0.71251;0.076031,0.1036284;-0.7583896;0.01171529,-0.07058665;0.0004675959;-0.03764712,-0.09558873;-0.3773223;-0.005247634,-0.1084649;-0.7201701;0.06395876,-0.09214567;-0.7655904;0.0003547445,0.00324232;0.3992543;0.02333338,0;0;0,0.001369588;0.1996983;0.01089635,0.00277327;0.4996186;0.01415892,0.1096176;0.373116;-0.0306401,0.1955192;0.1068516;-0.04178292,0.2441584;-0.1538903;-0.131493,-0.1096159;0.3572941;0.005877036,-0.1671149;0.0875586;0.05421551,-0.2007351;-0.1896619;0.07467159,0.06306435;0.005652714;-0.04889717,0.1023114;-0.369975;-0.006903056,0.1122071;-0.7129695;0.06206665,0.1182369;-0.7592705;-0.00229023,-0.07663687;0.0004168247;-0.02294813,-0.08876857;-0.3787584;-0.001063293,-0.09666618;-0.7222654;0.0655745,-0.1079878;-0.7109879;-0.03200258,0.002221057;0.3996347;0.01586515,38.36144
+0;0;0,0.002013252;0.1994052;0.01528117,0.00540969;0.4991926;0.02436955,0.1167057;0.3731602;-0.008435849,0.1854845;0.1022346;0.007959403,0.2288846;-0.1742209;-0.001465217,-0.1067019;0.3592273;0.001451729,-0.1956181;0.09640887;0.0391398,-0.2288064;-0.1816151;0.04023082,0.07015604;0.00693058;-0.03781662,0.08975657;-0.3702249;0.00424945,0.0948706;-0.7125156;0.0771255,0.1051799;-0.758306;0.01270852,-0.07067273;0.0007167105;-0.03748134,-0.09523631;-0.3770835;-0.004869048,-0.107122;-0.7198576;0.06487814,-0.09104419;-0.7653224;0.001265459,0.004162787;0.3992009;0.02405975,0;0;0,0.001369588;0.1996983;0.01089635,0.00277327;0.4996186;0.01415892,0.1096176;0.373116;-0.0306401,0.1955192;0.1068516;-0.04178292,0.2441584;-0.1538903;-0.131493,-0.1096159;0.3572941;0.005877036,-0.1671149;0.0875586;0.05421551,-0.2007351;-0.1896619;0.07467159,0.06306435;0.005652714;-0.04889717,0.1023114;-0.369975;-0.006903056,0.1122071;-0.7129695;0.06206665,0.1182369;-0.7592705;-0.00229023,-0.07663687;0.0004168247;-0.02294813,-0.08876857;-0.3787584;-0.001063293,-0.09666618;-0.7222654;0.0655745,-0.1079878;-0.7109879;-0.03200258,0.002221057;0.3996347;0.01586515,38.37285
+0;0;0,0.002013252;0.1994052;0.01528117,0.00540969;0.4991926;0.02436955,0.1167057;0.3731602;-0.008435849,0.1854845;0.1022346;0.007959403,0.2288846;-0.1742209;-0.001465217,-0.1067019;0.3592273;0.001451729,-0.1956181;0.09640887;0.0391398,-0.2288064;-0.1816151;0.04023082,0.07015604;0.00693058;-0.03781662,0.08975657;-0.3702249;0.00424945,0.0948706;-0.7125156;0.0771255,0.1051799;-0.758306;0.01270852,-0.07067273;0.0007167105;-0.03748134,-0.09523631;-0.3770835;-0.004869048,-0.107122;-0.7198576;0.06487814,-0.09104419;-0.7653224;0.001265459,0.004162787;0.3992009;0.02405975,0;0;0,0.001349165;0.1996982;0.01090009,0.002732052;0.499619;0.01417964,0.109453;0.3730692;-0.03091305,0.1961167;0.1071876;-0.04492622,0.2467412;-0.151455;-0.1394839,-0.1098234;0.3575785;0.006660484,-0.1681022;0.08776706;0.0536221,-0.2027117;-0.1893455;0.07389051,0.0630166;0.005643332;-0.04895978,0.1022314;-0.3699639;-0.006753162,0.1120962;-0.7129717;0.06215508,0.1177264;-0.7594774;-0.001994617,-0.0766458;0.0004145549;-0.0229183,-0.08887935;-0.3787508;-0.0009198841,-0.09661388;-0.7222809;0.06561794,-0.1082831;-0.7110087;-0.03191718,0.002187769;0.3996347;0.01586766,38.39491
+0;0;0,0.002013252;0.1994052;0.01528117,0.00540969;0.4991926;0.02436955,0.1167057;0.3731602;-0.008435849,0.1854845;0.1022346;0.007959403,0.2288846;-0.1742209;-0.001465217,-0.1067019;0.3592273;0.001451729,-0.1956181;0.09640887;0.0391398,-0.2288064;-0.1816151;0.04023082,0.07015604;0.00693058;-0.03781662,0.08975657;-0.3702249;0.00424945,0.0948706;-0.7125156;0.0771255,0.1051799;-0.758306;0.01270852,-0.07067273;0.0007167105;-0.03748134,-0.09523631;-0.3770835;-0.004869048,-0.107122;-0.7198576;0.06487814,-0.09104419;-0.7653224;0.001265459,0.004162787;0.3992009;0.02405975,0;0;0,0.001349165;0.1996982;0.01090009,0.002732052;0.499619;0.01417964,0.109453;0.3730692;-0.03091305,0.1961167;0.1071876;-0.04492622,0.2467412;-0.151455;-0.1394839,-0.1098234;0.3575785;0.006660484,-0.1681022;0.08776706;0.0536221,-0.2027117;-0.1893455;0.07389051,0.0630166;0.005643332;-0.04895978,0.1022314;-0.3699639;-0.006753162,0.1120962;-0.7129717;0.06215508,0.1177264;-0.7594774;-0.001994617,-0.0766458;0.0004145549;-0.0229183,-0.08887935;-0.3787508;-0.0009198841,-0.09661388;-0.7222809;0.06561794,-0.1082831;-0.7110087;-0.03191718,0.002187769;0.3996347;0.01586766,38.40618
+0;0;0,0.002120049;0.1993871;0.01550056,0.005805837;0.4991587;0.0249962,0.1169203;0.3729795;-0.008082358,0.1857141;0.1019501;0.006425853,0.2286261;-0.1745219;-0.004610919,-0.1064835;0.3592237;0.002229039,-0.1949708;0.09626254;0.03993104,-0.2281773;-0.1817612;0.04030106,0.06994825;0.006830465;-0.03821764,0.09030987;-0.3701511;0.005029183,0.09577397;-0.7123709;0.07821208,0.1059697;-0.7583007;0.01394142,-0.07082392;0.0007958862;-0.03719325,-0.09494497;-0.3769816;-0.003991589,-0.1064551;-0.7197319;0.06593484,-0.09091659;-0.7651159;0.002092689,0.004450358;0.3991689;0.0245463,0;0;0,0.001505491;0.1996991;0.01086334,0.003377876;0.4996207;0.01386257,0.1098304;0.373122;-0.03136379,0.1974957;0.1077732;-0.04882235,0.2492539;-0.1482719;-0.149629,-0.1100278;0.3589964;0.008369451,-0.1685798;0.08871678;0.05219416,-0.2041824;-0.1884046;0.07052907,0.06269704;0.005847112;-0.04934463,0.1019927;-0.3696379;-0.006137639,0.1118259;-0.7126473;0.06276702,0.117583;-0.7592087;-0.001304813,-0.07676084;0.0001773993;-0.02253313,-0.08884504;-0.3789791;-0.0003010724,-0.09668198;-0.7225424;0.06605289,-0.1088864;-0.7112848;-0.03141391,0.002646325;0.399639;0.01563007,38.42857
+0;0;0,0.002120049;0.1993871;0.01550056,0.005805837;0.4991587;0.0249962,0.1169203;0.3729795;-0.008082358,0.1857141;0.1019501;0.006425853,0.2286261;-0.1745219;-0.004610919,-0.1064835;0.3592237;0.002229039,-0.1949708;0.09626254;0.03993104,-0.2281773;-0.1817612;0.04030106,0.06994825;0.006830465;-0.03821764,0.09030987;-0.3701511;0.005029183,0.09577397;-0.7123709;0.07821208,0.1059697;-0.7583007;0.01394142,-0.07082392;0.0007958862;-0.03719325,-0.09494497;-0.3769816;-0.003991589,-0.1064551;-0.7197319;0.06593484,-0.09091659;-0.7651159;0.002092689,0.004450358;0.3991689;0.0245463,0;0;0,0.001505491;0.1996991;0.01086334,0.003377876;0.4996207;0.01386257,0.1098304;0.373122;-0.03136379,0.1974957;0.1077732;-0.04882235,0.2492539;-0.1482719;-0.149629,-0.1100278;0.3589964;0.008369451,-0.1685798;0.08871678;0.05219416,-0.2041824;-0.1884046;0.07052907,0.06269704;0.005847112;-0.04934463,0.1019927;-0.3696379;-0.006137639,0.1118259;-0.7126473;0.06276702,0.117583;-0.7592087;-0.001304813,-0.07676084;0.0001773993;-0.02253313,-0.08884504;-0.3789791;-0.0003010724,-0.09668198;-0.7225424;0.06605289,-0.1088864;-0.7112848;-0.03141391,0.002646325;0.399639;0.01563007,38.43982
+0;0;0,0.002120049;0.1993871;0.01550056,0.005805837;0.4991587;0.0249962,0.1169203;0.3729795;-0.008082358,0.1857141;0.1019501;0.006425853,0.2286261;-0.1745219;-0.004610919,-0.1064835;0.3592237;0.002229039,-0.1949708;0.09626254;0.03993104,-0.2281773;-0.1817612;0.04030106,0.06994825;0.006830465;-0.03821764,0.09030987;-0.3701511;0.005029183,0.09577397;-0.7123709;0.07821208,0.1059697;-0.7583007;0.01394142,-0.07082392;0.0007958862;-0.03719325,-0.09494497;-0.3769816;-0.003991589,-0.1064551;-0.7197319;0.06593484,-0.09091659;-0.7651159;0.002092689,0.004450358;0.3991689;0.0245463,0;0;0,0.001506126;0.1996991;0.01086299,0.003460905;0.4996207;0.01384925,0.1096448;0.3728539;-0.03178074,0.1981651;0.1080152;-0.05238673,0.2512285;-0.1431075;-0.1642869,-0.1100381;0.3591249;0.008675495,-0.1678109;0.08847564;0.05123471,-0.1922003;-0.1899362;0.06832355,0.06266657;0.005880868;-0.04937931,0.1018348;-0.3695929;-0.005958997,0.1116426;-0.7126232;0.06284507,0.1175391;-0.7599041;-0.0003443137,-0.07677939;0.0001317925;-0.02247017,-0.08890367;-0.3790184;-0.0001515988,-0.09682363;-0.7225901;0.06614923,-0.1092487;-0.7113373;-0.03128875,0.00270277;0.3996391;0.01561083,38.45079
+0;0;0,0.002251922;0.1993537;0.01590743,0.006066479;0.4991109;0.02578358,0.11698;0.3726126;-0.00776146,0.1849215;0.1012836;0.005066622,0.2276929;-0.1751173;-0.008091592,-0.1065108;0.3597937;0.003122974,-0.1936763;0.09628746;0.04009093,-0.2271611;-0.1817023;0.04076003,0.06984447;0.00668761;-0.03843208,0.09055346;-0.3702266;0.005235434,0.09631508;-0.7123084;0.07903775,0.1067005;-0.7582648;0.01482897,-0.07091907;0.0009286605;-0.0370084,-0.09459868;-0.3768103;-0.003058884,-0.1059583;-0.7195637;0.06687719,-0.09028615;-0.7647653;0.002852902,0.004687611;0.399122;0.02521834,0;0;0,0.001506126;0.1996991;0.01086299,0.003460905;0.4996207;0.01384925,0.1096448;0.3728539;-0.03178074,0.1981651;0.1080152;-0.05238673,0.2512285;-0.1431075;-0.1642869,-0.1100381;0.3591249;0.008675495,-0.1678109;0.08847564;0.05123471,-0.1922003;-0.1899362;0.06832355,0.06266657;0.005880868;-0.04937931,0.1018348;-0.3695929;-0.005958997,0.1116426;-0.7126232;0.06284507,0.1175391;-0.7599041;-0.0003443137,-0.07677939;0.0001317925;-0.02247017,-0.08890367;-0.3790184;-0.0001515988,-0.09682363;-0.7225901;0.06614923,-0.1092487;-0.7113373;-0.03128875,0.00270277;0.3996391;0.01561083,38.46201
+0;0;0,0.002251922;0.1993537;0.01590743,0.006066479;0.4991109;0.02578358,0.11698;0.3726126;-0.00776146,0.1849215;0.1012836;0.005066622,0.2276929;-0.1751173;-0.008091592,-0.1065108;0.3597937;0.003122974,-0.1936763;0.09628746;0.04009093,-0.2271611;-0.1817023;0.04076003,0.06984447;0.00668761;-0.03843208,0.09055346;-0.3702266;0.005235434,0.09631508;-0.7123084;0.07903775,0.1067005;-0.7582648;0.01482897,-0.07091907;0.0009286605;-0.0370084,-0.09459868;-0.3768103;-0.003058884,-0.1059583;-0.7195637;0.06687719,-0.09028615;-0.7647653;0.002852902,0.004687611;0.399122;0.02521834,0;0;0,0.001506126;0.1996991;0.01086299,0.003460905;0.4996207;0.01384925,0.1096448;0.3728539;-0.03178074,0.1981651;0.1080152;-0.05238673,0.2512285;-0.1431075;-0.1642869,-0.1100381;0.3591249;0.008675495,-0.1678109;0.08847564;0.05123471,-0.1922003;-0.1899362;0.06832355,0.06266657;0.005880868;-0.04937931,0.1018348;-0.3695929;-0.005958997,0.1116426;-0.7126232;0.06284507,0.1175391;-0.7599041;-0.0003443137,-0.07677939;0.0001317925;-0.02247017,-0.08890367;-0.3790184;-0.0001515988,-0.09682363;-0.7225901;0.06614923,-0.1092487;-0.7113373;-0.03128875,0.00270277;0.3996391;0.01561083,38.47331
+0;0;0,0.002251922;0.1993537;0.01590743,0.006066479;0.4991109;0.02578358,0.11698;0.3726126;-0.00776146,0.1849215;0.1012836;0.005066622,0.2276929;-0.1751173;-0.008091592,-0.1065108;0.3597937;0.003122974,-0.1936763;0.09628746;0.04009093,-0.2271611;-0.1817023;0.04076003,0.06984447;0.00668761;-0.03843208,0.09055346;-0.3702266;0.005235434,0.09631508;-0.7123084;0.07903775,0.1067005;-0.7582648;0.01482897,-0.07091907;0.0009286605;-0.0370084,-0.09459868;-0.3768103;-0.003058884,-0.1059583;-0.7195637;0.06687719,-0.09028615;-0.7647653;0.002852902,0.004687611;0.399122;0.02521834,0;0;0,0.001560536;0.1996996;0.01084554,0.003752878;0.4996205;0.01379939,0.1096053;0.3729568;-0.03243894,0.2002878;0.1092285;-0.05742051,0.2527079;-0.1390389;-0.1758073,-0.1098404;0.3590849;0.00899142,-0.16949;0.08885565;0.05163008,-0.1936308;-0.1895931;0.06846805,0.0625303;0.006009684;-0.0495363,0.1015989;-0.3694938;-0.006283656,0.111473;-0.7124716;0.06277232,0.09625849;-0.7010655;-0.03429872,-0.07681967;6.702778E-05;-0.02233233,-0.08914049;-0.3790716;7.457286E-05,-0.09726913;-0.7226018;0.06656513,-0.1099897;-0.71136;-0.03083262,0.002907992;0.3996395;0.01555815,38.49548
+0;0;0,0.002652786;0.1993237;0.01621809,0.007050036;0.4990577;0.02652822,0.1175693;0.3722014;-0.007561501,0.1851192;0.1007494;0.004718252,0.2279725;-0.175565;-0.009910219,-0.1057606;0.3597344;0.003997454,-0.1922572;0.09596825;0.04068214,-0.2257758;-0.1820176;0.04129546,0.06971139;0.006759583;-0.03866044,0.09157205;-0.3700013;0.005761988,0.09778255;-0.7119784;0.08001211,0.108038;-0.7580242;0.01588826,-0.07102171;0.0008850209;-0.03681213,-0.09321387;-0.3768623;-0.001962669,-0.1045284;-0.7196412;0.06785566,-0.08860175;-0.7646812;0.003704742,0.005485621;0.3990724;0.02583306,0;0;0,0.001560536;0.1996996;0.01084554,0.003752878;0.4996205;0.01379939,0.1096053;0.3729568;-0.03243894,0.2002878;0.1092285;-0.05742051,0.2527079;-0.1390389;-0.1758073,-0.1098404;0.3590849;0.00899142,-0.16949;0.08885565;0.05163008,-0.1936308;-0.1895931;0.06846805,0.0625303;0.006009684;-0.0495363,0.1015989;-0.3694938;-0.006283656,0.111473;-0.7124716;0.06277232,0.09625849;-0.7010655;-0.03429872,-0.07681967;6.702778E-05;-0.02233233,-0.08914049;-0.3790716;7.457286E-05,-0.09726913;-0.7226018;0.06656513,-0.1099897;-0.71136;-0.03083262,0.002907992;0.3996395;0.01555815,38.50672
+0;0;0,0.002652786;0.1993237;0.01621809,0.007050036;0.4990577;0.02652822,0.1175693;0.3722014;-0.007561501,0.1851192;0.1007494;0.004718252,0.2279725;-0.175565;-0.009910219,-0.1057606;0.3597344;0.003997454,-0.1922572;0.09596825;0.04068214,-0.2257758;-0.1820176;0.04129546,0.06971139;0.006759583;-0.03866044,0.09157205;-0.3700013;0.005761988,0.09778255;-0.7119784;0.08001211,0.108038;-0.7580242;0.01588826,-0.07102171;0.0008850209;-0.03681213,-0.09321387;-0.3768623;-0.001962669,-0.1045284;-0.7196412;0.06785566,-0.08860175;-0.7646812;0.003704742,0.005485621;0.3990724;0.02583306,0;0;0,0.00155394;0.1996995;0.01084921,0.003781782;0.4996204;0.013798,0.1098894;0.3734256;-0.03210891,0.2015789;0.1107152;-0.06335424,0.2538829;-0.1334059;-0.1901185,-0.1098305;0.3590354;0.009443628,-0.1699201;0.08875811;0.05114983,-0.1944528;-0.1896738;0.06769656,0.06246011;0.006147857;-0.04960784,0.1014116;-0.369334;-0.006063439,0.111202;-0.7123218;0.06295524,0.1195768;-0.7601308;0.0007006787,-0.07684486;-3.408784E-05;-0.02224561,-0.08906497;-0.3790952;0.001488712,-0.0972798;-0.7227739;0.067196,-0.1100085;-0.7115321;-0.03020068,0.002925872;0.3996395;0.01555275,38.52912
+0;0;0,0.002652786;0.1993237;0.01621809,0.007050036;0.4990577;0.02652822,0.1175693;0.3722014;-0.007561501,0.1851192;0.1007494;0.004718252,0.2279725;-0.175565;-0.009910219,-0.1057606;0.3597344;0.003997454,-0.1922572;0.09596825;0.04068214,-0.2257758;-0.1820176;0.04129546,0.06971139;0.006759583;-0.03866044,0.09157205;-0.3700013;0.005761988,0.09778255;-0.7119784;0.08001211,0.108038;-0.7580242;0.01588826,-0.07102171;0.0008850209;-0.03681213,-0.09321387;-0.3768623;-0.001962669,-0.1045284;-0.7196412;0.06785566,-0.08860175;-0.7646812;0.003704742,0.005485621;0.3990724;0.02583306,0;0;0,0.001651183;0.1997055;0.01072334,0.004014194;0.4996258;0.01358684,0.1099999;0.3735649;-0.03247701,0.2036035;0.1122556;-0.0692986,0.2566567;-0.1274295;-0.20397,-0.1096537;0.3589567;0.009628013,-0.1700456;0.08864668;0.0506806,-0.1952838;-0.1898745;0.06442796,0.06242884;0.006134953;-0.04964879,0.101626;-0.3693521;-0.006370373,0.1114703;-0.7123704;0.06248853,0.1195179;-0.759798;-0.0002824888,-0.07686988;-5.114292E-05;-0.02215897,-0.08903524;-0.3791467;0.001048123,-0.097256;-0.7228042;0.06686533,-0.1101359;-0.7115746;-0.03050912,0.003090655;0.3996461;0.01537878,38.55133
+0;0;0,0.002536567;0.1993176;0.01631194,0.006881182;0.4990436;0.02689029,0.1171445;0.3718569;-0.007880624,0.1856234;0.1006279;0.004179737,0.227459;-0.1757241;-0.01253407,-0.1059981;0.3597258;0.004587101,-0.192176;0.09583601;0.04113217,-0.2253366;-0.182193;0.04062129,0.06951023;0.006837092;-0.03900747,0.09152319;-0.369818;0.006228805,0.09795127;-0.711718;0.08081516,0.1075685;-0.7578003;0.01663581,-0.07116971;0.0008399144;-0.03652624,-0.09451008;-0.3768457;-0.001758557,-0.1045163;-0.7195517;0.06861524,-0.08928715;-0.76491;0.004668422,0.005314411;0.399059;0.02609111,0;0;0,0.001651183;0.1997055;0.01072334,0.004014194;0.4996258;0.01358684,0.1099999;0.3735649;-0.03247701,0.2036035;0.1122556;-0.0692986,0.2566567;-0.1274295;-0.20397,-0.1096537;0.3589567;0.009628013,-0.1700456;0.08864668;0.0506806,-0.1952838;-0.1898745;0.06442796,0.06242884;0.006134953;-0.04964879,0.101626;-0.3693521;-0.006370373,0.1114703;-0.7123704;0.06248853,0.1195179;-0.759798;-0.0002824888,-0.07686988;-5.114292E-05;-0.02215897,-0.08903524;-0.3791467;0.001048123,-0.097256;-0.7228042;0.06686533,-0.1101359;-0.7115746;-0.03050912,0.003090655;0.3996461;0.01537878,38.56263
+0;0;0,0.002536567;0.1993176;0.01631194,0.006881182;0.4990436;0.02689029,0.1171445;0.3718569;-0.007880624,0.1856234;0.1006279;0.004179737,0.227459;-0.1757241;-0.01253407,-0.1059981;0.3597258;0.004587101,-0.192176;0.09583601;0.04113217,-0.2253366;-0.182193;0.04062129,0.06951023;0.006837092;-0.03900747,0.09152319;-0.369818;0.006228805,0.09795127;-0.711718;0.08081516,0.1075685;-0.7578003;0.01663581,-0.07116971;0.0008399144;-0.03652624,-0.09451008;-0.3768457;-0.001758557,-0.1045163;-0.7195517;0.06861524,-0.08928715;-0.76491;0.004668422,0.005314411;0.399059;0.02609111,0;0;0,0.001651183;0.1997055;0.01072334,0.004014194;0.4996258;0.01358684,0.1099999;0.3735649;-0.03247701,0.2036035;0.1122556;-0.0692986,0.2566567;-0.1274295;-0.20397,-0.1096537;0.3589567;0.009628013,-0.1700456;0.08864668;0.0506806,-0.1952838;-0.1898745;0.06442796,0.06242884;0.006134953;-0.04964879,0.101626;-0.3693521;-0.006370373,0.1114703;-0.7123704;0.06248853,0.1195179;-0.759798;-0.0002824888,-0.07686988;-5.114292E-05;-0.02215897,-0.08903524;-0.3791467;0.001048123,-0.097256;-0.7228042;0.06686533,-0.1101359;-0.7115746;-0.03050912,0.003090655;0.3996461;0.01537878,38.5747
+0;0;0,0.002536567;0.1993176;0.01631194,0.006881182;0.4990436;0.02689029,0.1171445;0.3718569;-0.007880624,0.1856234;0.1006279;0.004179737,0.227459;-0.1757241;-0.01253407,-0.1059981;0.3597258;0.004587101,-0.192176;0.09583601;0.04113217,-0.2253366;-0.182193;0.04062129,0.06951023;0.006837092;-0.03900747,0.09152319;-0.369818;0.006228805,0.09795127;-0.711718;0.08081516,0.1075685;-0.7578003;0.01663581,-0.07116971;0.0008399144;-0.03652624,-0.09451008;-0.3768457;-0.001758557,-0.1045163;-0.7195517;0.06861524,-0.08928715;-0.76491;0.004668422,0.005314411;0.399059;0.02609111,0;0;0,0.001726442;0.1997058;0.01070643,0.004338989;0.4996249;0.01354744,0.1103292;0.3735408;-0.03231205,0.2046694;0.1133751;-0.07489985,0.257915;-0.1216434;-0.2174875,-0.1093949;0.3588773;0.00977603,-0.1684997;0.08803761;0.04917756,-0.1939909;-0.1904204;0.06371406,0.06236086;0.006286961;-0.04971516,0.1013972;-0.3691821;-0.006136362,0.1111952;-0.7122225;0.06261897,0.1189215;-0.7592669;-0.0006619394,-0.0768989;-0.000200571;-0.02205717,-0.08912371;-0.3792888;0.001237407,-0.09736972;-0.7229916;0.06681465,-0.1101932;-0.7117656;-0.03056655,0.003330698;0.3996459;0.01533089,38.59601
+0;0;0,0.002394981;0.1993133;0.01638519,0.006594719;0.4990342;0.02718209,0.1169039;0.372158;-0.007886309,0.1855369;0.1009044;0.002648752,0.2278391;-0.1752872;-0.01548262,-0.1062125;0.3594862;0.005021721,-0.1926596;0.09571731;0.04180286,-0.2254455;-0.1823562;0.04133281,0.06924961;0.006973496;-0.03944442,0.09126803;-0.3696156;0.006335653,0.09786828;-0.7113992;0.0814386,0.1074992;-0.7576061;0.01740921,-0.07134073;0.0007452479;-0.03619315,-0.09484382;-0.3768891;-0.0009810291,-0.1043884;-0.7196618;0.06913173,-0.08929544;-0.765348;0.005540706,0.005062687;0.3990498;0.02629495,0;0;0,0.001685353;0.1997055;0.01071786,0.004281471;0.4996247;0.01357265,0.1103553;0.3736632;-0.03218467,0.2064553;0.115478;-0.08223639,0.2586081;-0.1164797;-0.2301408,-0.1095735;0.3591009;0.01080343,-0.1682802;0.08795196;0.04864224,-0.1916277;-0.1906992;0.06307939,0.0623519;0.006274117;-0.04972802,0.1013103;-0.3691809;-0.005958591,0.1110091;-0.7122698;0.06256884,0.1194519;-0.7596875;-0.000162445,-0.07691021;-0.0002514493;-0.02201718,-0.08935379;-0.3793221;0.001447527,-0.09742653;-0.7230531;0.06689837,-0.1104926;-0.7118306;-0.03044988,0.00327808;0.3996455;0.01534841,38.61824
+0;0;0,0.002394981;0.1993133;0.01638519,0.006594719;0.4990342;0.02718209,0.1169039;0.372158;-0.007886309,0.1855369;0.1009044;0.002648752,0.2278391;-0.1752872;-0.01548262,-0.1062125;0.3594862;0.005021721,-0.1926596;0.09571731;0.04180286,-0.2254455;-0.1823562;0.04133281,0.06924961;0.006973496;-0.03944442,0.09126803;-0.3696156;0.006335653,0.09786828;-0.7113992;0.0814386,0.1074992;-0.7576061;0.01740921,-0.07134073;0.0007452479;-0.03619315,-0.09484382;-0.3768891;-0.0009810291,-0.1043884;-0.7196618;0.06913173,-0.08929544;-0.765348;0.005540706,0.005062687;0.3990498;0.02629495,0;0;0,0.001685353;0.1997055;0.01071786,0.004281471;0.4996247;0.01357265,0.1103553;0.3736632;-0.03218467,0.2064553;0.115478;-0.08223639,0.2586081;-0.1164797;-0.2301408,-0.1095735;0.3591009;0.01080343,-0.1682802;0.08795196;0.04864224,-0.1916277;-0.1906992;0.06307939,0.0623519;0.006274117;-0.04972802,0.1013103;-0.3691809;-0.005958591,0.1110091;-0.7122698;0.06256884,0.1194519;-0.7596875;-0.000162445,-0.07691021;-0.0002514493;-0.02201718,-0.08935379;-0.3793221;0.001447527,-0.09742653;-0.7230531;0.06689837,-0.1104926;-0.7118306;-0.03044988,0.00327808;0.3996455;0.01534841,38.6296
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.001697674;0.1997039;0.01074504,0.004372632;0.4996225;0.01365625,0.1104501;0.3737395;-0.03208499,0.2082125;0.1173964;-0.08803788,0.2598589;-0.1081221;-0.245753,-0.1095202;0.359091;0.01095241,-0.168236;0.08794287;0.04878259,-0.1930873;-0.1906292;0.06219982,0.0622844;0.006386022;-0.04979831,0.1011802;-0.3690557;-0.005859483,0.1109584;-0.7121558;0.06260024,0.118611;-0.7593496;-0.0005072504,-0.0769259;-0.0003410384;-0.02196107,-0.0893736;-0.3793775;0.002046915,-0.09728248;-0.7232478;0.06678226,-0.1103577;-0.7120149;-0.03056679,0.003332595;0.3996431;0.01540015,38.65185
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.001697674;0.1997039;0.01074504,0.004372632;0.4996225;0.01365625,0.1104501;0.3737395;-0.03208499,0.2082125;0.1173964;-0.08803788,0.2598589;-0.1081221;-0.245753,-0.1095202;0.359091;0.01095241,-0.168236;0.08794287;0.04878259,-0.1930873;-0.1906292;0.06219982,0.0622844;0.006386022;-0.04979831,0.1011802;-0.3690557;-0.005859483,0.1109584;-0.7121558;0.06260024,0.118611;-0.7593496;-0.0005072504,-0.0769259;-0.0003410384;-0.02196107,-0.0893736;-0.3793775;0.002046915,-0.09728248;-0.7232478;0.06678226,-0.1103577;-0.7120149;-0.03056679,0.003332595;0.3996431;0.01540015,38.66299
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.001697674;0.1997039;0.01074504,0.004372632;0.4996225;0.01365625,0.1104501;0.3737395;-0.03208499,0.2082125;0.1173964;-0.08803788,0.2598589;-0.1081221;-0.245753,-0.1095202;0.359091;0.01095241,-0.168236;0.08794287;0.04878259,-0.1930873;-0.1906292;0.06219982,0.0622844;0.006386022;-0.04979831,0.1011802;-0.3690557;-0.005859483,0.1109584;-0.7121558;0.06260024,0.118611;-0.7593496;-0.0005072504,-0.0769259;-0.0003410384;-0.02196107,-0.0893736;-0.3793775;0.002046915,-0.09728248;-0.7232478;0.06678226,-0.1103577;-0.7120149;-0.03056679,0.003332595;0.3996431;0.01540015,38.67427
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.001691565;0.1997022;0.01077894,0.004343827;0.4996204;0.01386916,0.1098999;0.3736223;-0.03308897,0.2095475;0.1189028;-0.09299138,0.2610738;-0.1027739;-0.2561002,-0.109508;0.359005;0.01110629,-0.1685415;0.08790094;0.04875804,-0.1936294;-0.1906594;0.06197633,0.06222764;0.00641026;-0.04986612,0.1011713;-0.3690151;-0.005829781,0.110833;-0.7121373;0.062535,0.1190155;-0.7588274;-0.001117788,-0.07693405;-0.0003623644;-0.02193217,-0.08939246;-0.3793932;0.002159605,-0.09730794;-0.7232721;0.0668482,-0.1107734;-0.7120401;-0.03044745,0.003316403;0.3996393;0.01552259,38.68531
+0;0;0,0.002408861;0.1992783;0.01680361,0.006633406;0.498975;0.02825377,0.1165854;0.371859;-0.007983722,0.1861499;0.1007749;0.000628137,0.2286088;-0.1750826;-0.02173074,-0.1061063;0.3591192;0.006054187,-0.192718;0.09543037;0.04302203,-0.2247528;-0.1827298;0.04220672,0.06874923;0.007196603;-0.04027097,0.09156744;-0.3692092;0.00661144,0.09858967;-0.7107438;0.08280082,0.1090652;-0.7577325;0.01984842,-0.07168137;0.0005622053;-0.0355171,-0.0948337;-0.3770837;-0.0001961626,-0.1036892;-0.7198242;0.07016374,-0.08824793;-0.7656158;0.006782331,0.005094325;0.3989931;0.02713723,0;0;0,0.001691565;0.1997022;0.01077894,0.004343827;0.4996204;0.01386916,0.1098999;0.3736223;-0.03308897,0.2095475;0.1189028;-0.09299138,0.2610738;-0.1027739;-0.2561002,-0.109508;0.359005;0.01110629,-0.1685415;0.08790094;0.04875804,-0.1936294;-0.1906594;0.06197633,0.06222764;0.00641026;-0.04986612,0.1011713;-0.3690151;-0.005829781,0.110833;-0.7121373;0.062535,0.1190155;-0.7588274;-0.001117788,-0.07693405;-0.0003623644;-0.02193217,-0.08939246;-0.3793932;0.002159605,-0.09730794;-0.7232721;0.0668482,-0.1107734;-0.7120401;-0.03044745,0.003316403;0.3996393;0.01552259,38.69663
+0;0;0,0.002408861;0.1992783;0.01680361,0.006633406;0.498975;0.02825377,0.1165854;0.371859;-0.007983722,0.1861499;0.1007749;0.000628137,0.2286088;-0.1750826;-0.02173074,-0.1061063;0.3591192;0.006054187,-0.192718;0.09543037;0.04302203,-0.2247528;-0.1827298;0.04220672,0.06874923;0.007196603;-0.04027097,0.09156744;-0.3692092;0.00661144,0.09858967;-0.7107438;0.08280082,0.1090652;-0.7577325;0.01984842,-0.07168137;0.0005622053;-0.0355171,-0.0948337;-0.3770837;-0.0001961626,-0.1036892;-0.7198242;0.07016374,-0.08824793;-0.7656158;0.006782331,0.005094325;0.3989931;0.02713723,0;0;0,0.001691565;0.1997022;0.01077894,0.004343827;0.4996204;0.01386916,0.1098999;0.3736223;-0.03308897,0.2095475;0.1189028;-0.09299138,0.2610738;-0.1027739;-0.2561002,-0.109508;0.359005;0.01110629,-0.1685415;0.08790094;0.04875804,-0.1936294;-0.1906594;0.06197633,0.06222764;0.00641026;-0.04986612,0.1011713;-0.3690151;-0.005829781,0.110833;-0.7121373;0.062535,0.1190155;-0.7588274;-0.001117788,-0.07693405;-0.0003623644;-0.02193217,-0.08939246;-0.3793932;0.002159605,-0.09730794;-0.7232721;0.0668482,-0.1107734;-0.7120401;-0.03044745,0.003316403;0.3996393;0.01552259,38.70785
+0;0;0,0.002408861;0.1992783;0.01680361,0.006633406;0.498975;0.02825377,0.1165854;0.371859;-0.007983722,0.1861499;0.1007749;0.000628137,0.2286088;-0.1750826;-0.02173074,-0.1061063;0.3591192;0.006054187,-0.192718;0.09543037;0.04302203,-0.2247528;-0.1827298;0.04220672,0.06874923;0.007196603;-0.04027097,0.09156744;-0.3692092;0.00661144,0.09858967;-0.7107438;0.08280082,0.1090652;-0.7577325;0.01984842,-0.07168137;0.0005622053;-0.0355171,-0.0948337;-0.3770837;-0.0001961626,-0.1036892;-0.7198242;0.07016374,-0.08824793;-0.7656158;0.006782331,0.005094325;0.3989931;0.02713723,0;0;0,0.001702373;0.1997007;0.01080348,0.004426497;0.4996181;0.01393922,0.1101222;0.3739523;-0.03284807,0.2095755;0.1204125;-0.09786023,0.2601554;-0.09620242;-0.2679181,-0.1094716;0.3591125;0.01061207,-0.1697878;0.08873513;0.05133142,-0.1973157;-0.1896957;0.06221663,0.06215518;0.006470719;-0.0499486,0.1009549;-0.3688956;-0.005286142,0.1106993;-0.7120896;0.06270566,0.1188834;-0.7588251;-0.0008921847,-0.0769612;-0.0004048047;-0.02183596,-0.08932781;-0.3795103;0.001101328,-0.09729805;-0.7232609;0.06646132,-0.1104692;-0.7120219;-0.03087597,0.003369786;0.399637;0.01556913,38.73001
+0;0;0,0.002366058;0.1992705;0.01690239,0.006592407;0.49896;0.02854373,0.1164574;0.3717966;-0.007968277,0.1861008;0.1006905;-0.0008080075,0.2287514;-0.1751212;-0.02336441,-0.1061468;0.3589686;0.00648099,-0.1945369;0.09605619;0.04474638,-0.2196333;-0.1828167;0.04447158,0.06861575;0.007040069;-0.04052551,0.0906752;-0.3693632;0.006739222,0.0980049;-0.7108637;0.08305226,0.1093268;-0.7578099;0.02019446,-0.0717736;0.0006529238;-0.03532878,-0.09491597;-0.3769847;8.705258E-05,-0.1038925;-0.7197546;0.07028819,-0.08808891;-0.7655807;0.007037498,0.005043378;0.3989789;0.02735945,0;0;0,0.001702373;0.1997007;0.01080348,0.004426497;0.4996181;0.01393922,0.1101222;0.3739523;-0.03284807,0.2095755;0.1204125;-0.09786023,0.2601554;-0.09620242;-0.2679181,-0.1094716;0.3591125;0.01061207,-0.1697878;0.08873513;0.05133142,-0.1973157;-0.1896957;0.06221663,0.06215518;0.006470719;-0.0499486,0.1009549;-0.3688956;-0.005286142,0.1106993;-0.7120896;0.06270566,0.1188834;-0.7588251;-0.0008921847,-0.0769612;-0.0004048047;-0.02183596,-0.08932781;-0.3795103;0.001101328,-0.09729805;-0.7232609;0.06646132,-0.1104692;-0.7120219;-0.03087597,0.003369786;0.399637;0.01556913,38.74156
+0;0;0,0.002366058;0.1992705;0.01690239,0.006592407;0.49896;0.02854373,0.1164574;0.3717966;-0.007968277,0.1861008;0.1006905;-0.0008080075,0.2287514;-0.1751212;-0.02336441,-0.1061468;0.3589686;0.00648099,-0.1945369;0.09605619;0.04474638,-0.2196333;-0.1828167;0.04447158,0.06861575;0.007040069;-0.04052551,0.0906752;-0.3693632;0.006739222,0.0980049;-0.7108637;0.08305226,0.1093268;-0.7578099;0.02019446,-0.0717736;0.0006529238;-0.03532878,-0.09491597;-0.3769847;8.705258E-05,-0.1038925;-0.7197546;0.07028819,-0.08808891;-0.7655807;0.007037498,0.005043378;0.3989789;0.02735945,0;0;0,0.001710066;0.1996971;0.01087028,0.004489217;0.4996132;0.01417025,0.1101671;0.3739723;-0.0327017,0.2092723;0.1215195;-0.1023132,0.2581038;-0.08693875;-0.2827589,-0.1095549;0.359372;0.01148278,-0.1687174;0.08858705;0.05117312,-0.2009709;-0.1893494;0.06171005,0.06205956;0.006533023;-0.05005927,0.1006596;-0.3688146;-0.005068555,0.1101985;-0.7119999;0.06299675,0.119235;-0.7578601;-0.001529008,-0.07699201;-0.0004857666;-0.02172546,-0.08945639;-0.379588;0.001212277,-0.09728449;-0.7233329;0.06662014,-0.1106588;-0.7120878;-0.03069061,0.003410782;0.399631;0.01572066,38.76383
+0;0;0,0.002366058;0.1992705;0.01690239,0.006592407;0.49896;0.02854373,0.1164574;0.3717966;-0.007968277,0.1861008;0.1006905;-0.0008080075,0.2287514;-0.1751212;-0.02336441,-0.1061468;0.3589686;0.00648099,-0.1945369;0.09605619;0.04474638,-0.2196333;-0.1828167;0.04447158,0.06861575;0.007040069;-0.04052551,0.0906752;-0.3693632;0.006739222,0.0980049;-0.7108637;0.08305226,0.1093268;-0.7578099;0.02019446,-0.0717736;0.0006529238;-0.03532878,-0.09491597;-0.3769847;8.705258E-05,-0.1038925;-0.7197546;0.07028819,-0.08808891;-0.7655807;0.007037498,0.005043378;0.3989789;0.02735945,0;0;0,0.002032107;0.1997035;0.0106945,0.004957712;0.4996202;0.01390528,0.1104027;0.3738548;-0.03333905,0.2105313;0.1232702;-0.1080491,0.2568277;-0.0813421;-0.2934957,-0.1091951;0.3595645;0.01155497,-0.1681553;0.08856297;0.05004991,-0.2016515;-0.1891909;0.06148743,0.06190905;0.006376951;-0.05026533,0.1012817;-0.3688607;-0.005026773,0.1105906;-0.7121174;0.06270892,0.1190533;-0.7581683;-0.001670107,-0.07717528;-0.0003380779;-0.021068,-0.08903389;-0.3794945;0.001288109,-0.09679192;-0.7232674;0.06655684,-0.1103794;-0.712033;-0.03072233,0.003848358;0.3996385;0.0154604,38.78572
+0;0;0,0.002239431;0.199261;0.01703107,0.006158227;0.4989477;0.02886897,0.1159435;0.3719905;-0.008526545,0.1859048;0.100922;-0.003301388,0.2292752;-0.1746952;-0.02684161,-0.1063914;0.3587494;0.006781157,-0.1962431;0.09644124;0.04578229,-0.2193889;-0.1826001;0.04530516,0.06850972;0.007188262;-0.04067858,0.09008422;-0.3692067;0.006875262,0.09800014;-0.7106721;0.08328663,0.1092948;-0.7575611;0.02035392,-0.07186304;0.0004725232;-0.03514939,-0.09498448;-0.3771448;0.000495743,-0.1039389;-0.7199151;0.07069784,-0.08808874;-0.7657226;0.007436521,0.00473562;0.3989659;0.0276002,0;0;0,0.002032107;0.1997035;0.0106945,0.004957712;0.4996202;0.01390528,0.1104027;0.3738548;-0.03333905,0.2105313;0.1232702;-0.1080491,0.2568277;-0.0813421;-0.2934957,-0.1091951;0.3595645;0.01155497,-0.1681553;0.08856297;0.05004991,-0.2016515;-0.1891909;0.06148743,0.06190905;0.006376951;-0.05026533,0.1012817;-0.3688607;-0.005026773,0.1105906;-0.7121174;0.06270892,0.1190533;-0.7581683;-0.001670107,-0.07717528;-0.0003380779;-0.021068,-0.08903389;-0.3794945;0.001288109,-0.09679192;-0.7232674;0.06655684,-0.1103794;-0.712033;-0.03072233,0.003848358;0.3996385;0.0154604,38.79711
+0;0;0,0.002239431;0.199261;0.01703107,0.006158227;0.4989477;0.02886897,0.1159435;0.3719905;-0.008526545,0.1859048;0.100922;-0.003301388,0.2292752;-0.1746952;-0.02684161,-0.1063914;0.3587494;0.006781157,-0.1962431;0.09644124;0.04578229,-0.2193889;-0.1826001;0.04530516,0.06850972;0.007188262;-0.04067858,0.09008422;-0.3692067;0.006875262,0.09800014;-0.7106721;0.08328663,0.1092948;-0.7575611;0.02035392,-0.07186304;0.0004725232;-0.03514939,-0.09498448;-0.3771448;0.000495743,-0.1039389;-0.7199151;0.07069784,-0.08808874;-0.7657226;0.007436521,0.00473562;0.3989659;0.0276002,0;0;0,0.002068982;0.1996999;0.0107556,0.005096453;0.4996148;0.01410035,0.1105241;0.3739319;-0.03319314,0.2106574;0.1247973;-0.1125988,0.254963;-0.07517041;-0.3035174,-0.109117;0.3596645;0.01113449,-0.1672006;0.08857054;0.05030556,-0.2015459;-0.1890827;0.06166711,0.06185093;0.006428052;-0.05033033,0.1012382;-0.3687892;-0.00493627,0.1104248;-0.7120814;0.06263615,0.1191862;-0.7576454;-0.002273984,-0.07719721;-0.000425353;-0.02098593,-0.08851865;-0.3795517;0.00214438,-0.09674486;-0.7233924;0.06699716,-0.1101102;-0.7121464;-0.03031501,0.00394345;0.3996326;0.01559259,38.81927
+0;0;0,0.002239431;0.199261;0.01703107,0.006158227;0.4989477;0.02886897,0.1159435;0.3719905;-0.008526545,0.1859048;0.100922;-0.003301388,0.2292752;-0.1746952;-0.02684161,-0.1063914;0.3587494;0.006781157,-0.1962431;0.09644124;0.04578229,-0.2193889;-0.1826001;0.04530516,0.06850972;0.007188262;-0.04067858,0.09008422;-0.3692067;0.006875262,0.09800014;-0.7106721;0.08328663,0.1092948;-0.7575611;0.02035392,-0.07186304;0.0004725232;-0.03514939,-0.09498448;-0.3771448;0.000495743,-0.1039389;-0.7199151;0.07069784,-0.08808874;-0.7657226;0.007436521,0.00473562;0.3989659;0.0276002,0;0;0,0.002068982;0.1996999;0.0107556,0.005096453;0.4996148;0.01410035,0.1105241;0.3739319;-0.03319314,0.2106574;0.1247973;-0.1125988,0.254963;-0.07517041;-0.3035174,-0.109117;0.3596645;0.01113449,-0.1672006;0.08857054;0.05030556,-0.2015459;-0.1890827;0.06166711,0.06185093;0.006428052;-0.05033033,0.1012382;-0.3687892;-0.00493627,0.1104248;-0.7120814;0.06263615,0.1191862;-0.7576454;-0.002273984,-0.07719721;-0.000425353;-0.02098593,-0.08851865;-0.3795517;0.00214438,-0.09674486;-0.7233924;0.06699716,-0.1101102;-0.7121464;-0.03031501,0.00394345;0.3996326;0.01559259,38.83075
+0;0;0,0.002144332;0.1992546;0.01711758,0.005912715;0.4989352;0.0291699,0.1157831;0.3721548;-0.008319013,0.1859614;0.1011232;-0.004209562,0.228705;-0.1742115;-0.03184602,-0.1068005;0.3589783;0.00766477,-0.1970125;0.09691897;0.04749853,-0.2178703;-0.182301;0.04640879,0.06836833;0.007092023;-0.04093256,0.0902094;-0.3693024;0.00650369,0.09842119;-0.710667;0.08333308,0.1093285;-0.7580243;0.02090803,-0.07190444;0.0005287021;-0.03506384,-0.09540004;-0.3770998;0.0002166666,-0.1039324;-0.7197917;0.07085286,-0.08809359;-0.765574;0.007558443,0.00453593;0.3989538;0.02781794,0;0;0,0.001819705;0.1996917;0.01095016,0.004731332;0.4996074;0.01444608,0.1100426;0.3738742;-0.03329012,0.2103215;0.1264098;-0.1175843,0.2510265;-0.06911229;-0.3138347,-0.1097272;0.3603785;0.01301524,-0.1683439;0.08945712;0.05258387,-0.2021108;-0.1883439;0.06187984,0.06169736;0.006540534;-0.05050402,0.1009026;-0.3686538;-0.004763868,0.1100498;-0.7119374;0.06285734,0.1190839;-0.7575271;-0.001985542,-0.07718778;-0.0006229857;-0.02101566,-0.08936588;-0.3797081;0.002354247,-0.09754733;-0.7235553;0.06717835,-0.1114677;-0.7123102;-0.0300558,0.003638522;0.3996233;0.01585404,38.8528
+0;0;0,0.002144332;0.1992546;0.01711758,0.005912715;0.4989352;0.0291699,0.1157831;0.3721548;-0.008319013,0.1859614;0.1011232;-0.004209562,0.228705;-0.1742115;-0.03184602,-0.1068005;0.3589783;0.00766477,-0.1970125;0.09691897;0.04749853,-0.2178703;-0.182301;0.04640879,0.06836833;0.007092023;-0.04093256,0.0902094;-0.3693024;0.00650369,0.09842119;-0.710667;0.08333308,0.1093285;-0.7580243;0.02090803,-0.07190444;0.0005287021;-0.03506384,-0.09540004;-0.3770998;0.0002166666,-0.1039324;-0.7197917;0.07085286,-0.08809359;-0.765574;0.007558443,0.00453593;0.3989538;0.02781794,0;0;0,0.001819705;0.1996917;0.01095016,0.004731332;0.4996074;0.01444608,0.1100426;0.3738742;-0.03329012,0.2103215;0.1264098;-0.1175843,0.2510265;-0.06911229;-0.3138347,-0.1097272;0.3603785;0.01301524,-0.1683439;0.08945712;0.05258387,-0.2021108;-0.1883439;0.06187984,0.06169736;0.006540534;-0.05050402,0.1009026;-0.3686538;-0.004763868,0.1100498;-0.7119374;0.06285734,0.1190839;-0.7575271;-0.001985542,-0.07718778;-0.0006229857;-0.02101566,-0.08936588;-0.3797081;0.002354247,-0.09754733;-0.7235553;0.06717835,-0.1114677;-0.7123102;-0.0300558,0.003638522;0.3996233;0.01585404,38.87518
+0;0;0,0.002144332;0.1992546;0.01711758,0.005912715;0.4989352;0.0291699,0.1157831;0.3721548;-0.008319013,0.1859614;0.1011232;-0.004209562,0.228705;-0.1742115;-0.03184602,-0.1068005;0.3589783;0.00766477,-0.1970125;0.09691897;0.04749853,-0.2178703;-0.182301;0.04640879,0.06836833;0.007092023;-0.04093256,0.0902094;-0.3693024;0.00650369,0.09842119;-0.710667;0.08333308,0.1093285;-0.7580243;0.02090803,-0.07190444;0.0005287021;-0.03506384,-0.09540004;-0.3770998;0.0002166666,-0.1039324;-0.7197917;0.07085286,-0.08809359;-0.765574;0.007558443,0.00453593;0.3989538;0.02781794,0;0;0,0.00186377;0.1996778;0.01119486,0.004810914;0.4995926;0.0148649,0.109083;0.3723142;-0.03431749,0.2093166;0.1256147;-0.1208772,0.2465865;-0.06510963;-0.3224589,-0.1096537;0.3603119;0.01355415,-0.1684391;0.08933109;0.05246035,-0.1910547;-0.1895533;0.06304548,0.06154338;0.00659134;-0.05068497,0.1008797;-0.368548;-0.004607949,0.110154;-0.7118092;0.0631104,0.1194834;-0.7574204;-0.001665473,-0.07724209;-0.0007023058;-0.02081265,-0.08951226;-0.3797659;0.002856601,-0.09755766;-0.7236436;0.06753559,-0.1120676;-0.7123919;-0.02961361,0.003699681;0.3996074;0.01617447,38.88665
+0;0;0,0.002164113;0.1992465;0.01720935,0.00597914;0.4989214;0.02938588,0.1157741;0.3720618;-0.008270167,0.1857854;0.100965;-0.006050813,0.2291302;-0.1740175;-0.03614835,-0.1067026;0.3587471;0.00802166,-0.1969863;0.09672517;0.04793892,-0.2168509;-0.1825687;0.04734388,0.06834211;0.006935013;-0.04100318,0.09030578;-0.3694708;0.006285939,0.09878924;-0.7107295;0.08355525,0.1095237;-0.7577417;0.02067532,-0.07190625;0.0006877959;-0.03505734,-0.09568757;-0.3769155;0.0003003962,-0.1041038;-0.7195833;0.07106756,-0.08776528;-0.7656592;0.008254275,0.004587784;0.3989407;0.0279946,0;0;0,0.00186377;0.1996778;0.01119486,0.004810914;0.4995926;0.0148649,0.109083;0.3723142;-0.03431749,0.2093166;0.1256147;-0.1208772,0.2465865;-0.06510963;-0.3224589,-0.1096537;0.3603119;0.01355415,-0.1684391;0.08933109;0.05246035,-0.1910547;-0.1895533;0.06304548,0.06154338;0.00659134;-0.05068497,0.1008797;-0.368548;-0.004607949,0.110154;-0.7118092;0.0631104,0.1194834;-0.7574204;-0.001665473,-0.07724209;-0.0007023058;-0.02081265,-0.08951226;-0.3797659;0.002856601,-0.09755766;-0.7236436;0.06753559,-0.1120676;-0.7123919;-0.02961361,0.003699681;0.3996074;0.01617447,38.90869
+0;0;0,0.002164113;0.1992465;0.01720935,0.00597914;0.4989214;0.02938588,0.1157741;0.3720618;-0.008270167,0.1857854;0.100965;-0.006050813,0.2291302;-0.1740175;-0.03614835,-0.1067026;0.3587471;0.00802166,-0.1969863;0.09672517;0.04793892,-0.2168509;-0.1825687;0.04734388,0.06834211;0.006935013;-0.04100318,0.09030578;-0.3694708;0.006285939,0.09878924;-0.7107295;0.08355525,0.1095237;-0.7577417;0.02067532,-0.07190625;0.0006877959;-0.03505734,-0.09568757;-0.3769155;0.0003003962,-0.1041038;-0.7195833;0.07106756,-0.08776528;-0.7656592;0.008254275,0.004587784;0.3989407;0.0279946,0;0;0,0.001756625;0.1996648;0.01143993,0.004791729;0.499575;0.01553627,0.1088578;0.3722469;-0.03416529,0.2092519;0.128079;-0.1274554,0.2434591;-0.06247975;-0.3297355,-0.1097142;0.3603756;0.01321692,-0.1671047;0.08923486;0.05307972,-0.1896967;-0.1896571;0.0635138,0.06144968;0.006705691;-0.05078357,0.1005208;-0.3683832;-0.004074011,0.1098267;-0.7116846;0.06343524,0.1191175;-0.7573835;-0.001243681,-0.07726391;-0.0008969732;-0.02072395,-0.09005085;-0.3799245;0.003247112,-0.09797995;-0.7238205;0.06784301,-0.1123087;-0.7125436;-0.02933792,0.003646085;0.3995878;0.01665764,38.91985
+0;0;0,0.002164113;0.1992465;0.01720935,0.00597914;0.4989214;0.02938588,0.1157741;0.3720618;-0.008270167,0.1857854;0.100965;-0.006050813,0.2291302;-0.1740175;-0.03614835,-0.1067026;0.3587471;0.00802166,-0.1969863;0.09672517;0.04793892,-0.2168509;-0.1825687;0.04734388,0.06834211;0.006935013;-0.04100318,0.09030578;-0.3694708;0.006285939,0.09878924;-0.7107295;0.08355525,0.1095237;-0.7577417;0.02067532,-0.07190625;0.0006877959;-0.03505734,-0.09568757;-0.3769155;0.0003003962,-0.1041038;-0.7195833;0.07106756,-0.08776528;-0.7656592;0.008254275,0.004587784;0.3989407;0.0279946,0;0;0,0.001756625;0.1996648;0.01143993,0.004791729;0.499575;0.01553627,0.1088578;0.3722469;-0.03416529,0.2092519;0.128079;-0.1274554,0.2434591;-0.06247975;-0.3297355,-0.1097142;0.3603756;0.01321692,-0.1671047;0.08923486;0.05307972,-0.1896967;-0.1896571;0.0635138,0.06144968;0.006705691;-0.05078357,0.1005208;-0.3683832;-0.004074011,0.1098267;-0.7116846;0.06343524,0.1191175;-0.7573835;-0.001243681,-0.07726391;-0.0008969732;-0.02072395,-0.09005085;-0.3799245;0.003247112,-0.09797995;-0.7238205;0.06784301,-0.1123087;-0.7125436;-0.02933792,0.003646085;0.3995878;0.01665764,38.9311
+0;0;0,0.002248408;0.1992445;0.01722157,0.006266333;0.4989132;0.02949092,0.1158451;0.3722937;-0.008799326,0.1862722;0.1012957;-0.008504777,0.2303617;-0.173268;-0.04122949,-0.1064867;0.3585663;0.008410092,-0.1973048;0.09677613;0.0486339,-0.2163769;-0.1825723;0.0477908,0.06810562;0.006802119;-0.04141685,0.09040967;-0.3695127;0.006433371,0.09931712;-0.7107307;0.08383486,0.1103926;-0.7572498;0.02041429,-0.07203269;0.0007940403;-0.03479456,-0.09580348;-0.3768314;0.0003332384,-0.1037787;-0.7195163;0.07106847,-0.1075859;-0.7067866;-0.02735533,0.004797767;0.3989342;0.02806216,0;0;0,0.001756625;0.1996648;0.01143993,0.004791729;0.499575;0.01553627,0.1088578;0.3722469;-0.03416529,0.2092519;0.128079;-0.1274554,0.2434591;-0.06247975;-0.3297355,-0.1097142;0.3603756;0.01321692,-0.1671047;0.08923486;0.05307972,-0.1896967;-0.1896571;0.0635138,0.06144968;0.006705691;-0.05078357,0.1005208;-0.3683832;-0.004074011,0.1098267;-0.7116846;0.06343524,0.1191175;-0.7573835;-0.001243681,-0.07726391;-0.0008969732;-0.02072395,-0.09005085;-0.3799245;0.003247112,-0.09797995;-0.7238205;0.06784301,-0.1123087;-0.7125436;-0.02933792,0.003646085;0.3995878;0.01665764,38.94237
+0;0;0,0.002248408;0.1992445;0.01722157,0.006266333;0.4989132;0.02949092,0.1158451;0.3722937;-0.008799326,0.1862722;0.1012957;-0.008504777,0.2303617;-0.173268;-0.04122949,-0.1064867;0.3585663;0.008410092,-0.1973048;0.09677613;0.0486339,-0.2163769;-0.1825723;0.0477908,0.06810562;0.006802119;-0.04141685,0.09040967;-0.3695127;0.006433371,0.09931712;-0.7107307;0.08383486,0.1103926;-0.7572498;0.02041429,-0.07203269;0.0007940403;-0.03479456,-0.09580348;-0.3768314;0.0003332384,-0.1037787;-0.7195163;0.07106847,-0.1075859;-0.7067866;-0.02735533,0.004797767;0.3989342;0.02806216,0;0;0,0.001622407;0.1996403;0.01187998,0.004448312;0.4995465;0.01671974,0.1084956;0.3722976;-0.0336913,0.2067468;0.1290102;-0.1314563,0.2394209;-0.05464117;-0.3402733,-0.1101619;0.3608588;0.01600258,-0.1675019;0.08936453;0.05345897,-0.2010928;-0.1885823;0.05761027,0.06117227;0.006808747;-0.05110376,0.1002589;-0.3681659;-0.003499053,0.1095482;-0.711446;0.0641211,0.1186509;-0.7570593;-0.0006846413,-0.07732977;-0.00105218;-0.02046947,-0.09066801;-0.3800406;0.003818082,-0.09835844;-0.7239218;0.06852164,-0.1133955;-0.7126257;-0.02855591,0.003418623;0.3995545;0.01745443,38.95337
+0;0;0,0.002248408;0.1992445;0.01722157,0.006266333;0.4989132;0.02949092,0.1158451;0.3722937;-0.008799326,0.1862722;0.1012957;-0.008504777,0.2303617;-0.173268;-0.04122949,-0.1064867;0.3585663;0.008410092,-0.1973048;0.09677613;0.0486339,-0.2163769;-0.1825723;0.0477908,0.06810562;0.006802119;-0.04141685,0.09040967;-0.3695127;0.006433371,0.09931712;-0.7107307;0.08383486,0.1103926;-0.7572498;0.02041429,-0.07203269;0.0007940403;-0.03479456,-0.09580348;-0.3768314;0.0003332384,-0.1037787;-0.7195163;0.07106847,-0.1075859;-0.7067866;-0.02735533,0.004797767;0.3989342;0.02806216,0;0;0,0.001622407;0.1996403;0.01187998,0.004448312;0.4995465;0.01671974,0.1084956;0.3722976;-0.0336913,0.2067468;0.1290102;-0.1314563,0.2394209;-0.05464117;-0.3402733,-0.1101619;0.3608588;0.01600258,-0.1675019;0.08936453;0.05345897,-0.2010928;-0.1885823;0.05761027,0.06117227;0.006808747;-0.05110376,0.1002589;-0.3681659;-0.003499053,0.1095482;-0.711446;0.0641211,0.1186509;-0.7570593;-0.0006846413,-0.07732977;-0.00105218;-0.02046947,-0.09066801;-0.3800406;0.003818082,-0.09835844;-0.7239218;0.06852164,-0.1133955;-0.7126257;-0.02855591,0.003418623;0.3995545;0.01745443,38.96476
+0;0;0,0.002577013;0.1992103;0.01756717,0.006868496;0.4988554;0.0303314,0.1163189;0.3723557;-0.008395189,0.1868646;0.1013961;-0.01043972,0.2324087;-0.1726263;-0.04561781,-0.1060625;0.3584929;0.009716246,-0.1972749;0.09684014;0.04994195,-0.2157145;-0.1825479;0.04842271,0.06801064;0.006924416;-0.04155244,0.09132485;-0.3692555;0.006873753,0.1006033;-0.710427;0.08443584,0.1114366;-0.7568367;0.02084169,-0.07220192;0.0006637104;-0.03444478,-0.09475449;-0.3770168;0.0008942336,-0.10245;-0.7196881;0.07172608,-0.1065757;-0.7069361;-0.02668878,0.005327736;0.3988803;0.02871837,0;0;0,0.001607887;0.1996196;0.01222404,0.004372268;0.4995199;0.01761468,0.1081829;0.3720949;-0.03351099,0.2040677;0.130469;-0.1375448,0.2341475;-0.04862422;-0.3506664,-0.1100523;0.3603605;0.01692314,-0.1678003;0.08898404;0.05460573,-0.2011676;-0.189001;0.05791121,0.06093229;0.006833002;-0.05138644,0.1002092;-0.3680269;-0.00304031,0.1095787;-0.7112535;0.06483997,0.1186615;-0.7570069;0.0001953393,-0.07738226;-0.001117662;-0.02026662,-0.09081803;-0.3800861;0.004276877,-0.09866678;-0.7239634;0.06898221,-0.1139971;-0.712644;-0.02805398,0.003370468;0.3995261;0.01808253,38.98691
+0;0;0,0.002577013;0.1992103;0.01756717,0.006868496;0.4988554;0.0303314,0.1163189;0.3723557;-0.008395189,0.1868646;0.1013961;-0.01043972,0.2324087;-0.1726263;-0.04561781,-0.1060625;0.3584929;0.009716246,-0.1972749;0.09684014;0.04994195,-0.2157145;-0.1825479;0.04842271,0.06801064;0.006924416;-0.04155244,0.09132485;-0.3692555;0.006873753,0.1006033;-0.710427;0.08443584,0.1114366;-0.7568367;0.02084169,-0.07220192;0.0006637104;-0.03444478,-0.09475449;-0.3770168;0.0008942336,-0.10245;-0.7196881;0.07172608,-0.1065757;-0.7069361;-0.02668878,0.005327736;0.3988803;0.02871837,0;0;0,0.001607887;0.1996196;0.01222404,0.004372268;0.4995199;0.01761468,0.1081829;0.3720949;-0.03351099,0.2040677;0.130469;-0.1375448,0.2341475;-0.04862422;-0.3506664,-0.1100523;0.3603605;0.01692314,-0.1678003;0.08898404;0.05460573,-0.2011676;-0.189001;0.05791121,0.06093229;0.006833002;-0.05138644,0.1002092;-0.3680269;-0.00304031,0.1095787;-0.7112535;0.06483997,0.1186615;-0.7570069;0.0001953393,-0.07738226;-0.001117662;-0.02026662,-0.09081803;-0.3800861;0.004276877,-0.09866678;-0.7239634;0.06898221,-0.1139971;-0.712644;-0.02805398,0.003370468;0.3995261;0.01808253,38.99814
+0;0;0,0.002577013;0.1992103;0.01756717,0.006868496;0.4988554;0.0303314,0.1163189;0.3723557;-0.008395189,0.1868646;0.1013961;-0.01043972,0.2324087;-0.1726263;-0.04561781,-0.1060625;0.3584929;0.009716246,-0.1972749;0.09684014;0.04994195,-0.2157145;-0.1825479;0.04842271,0.06801064;0.006924416;-0.04155244,0.09132485;-0.3692555;0.006873753,0.1006033;-0.710427;0.08443584,0.1114366;-0.7568367;0.02084169,-0.07220192;0.0006637104;-0.03444478,-0.09475449;-0.3770168;0.0008942336,-0.10245;-0.7196881;0.07172608,-0.1065757;-0.7069361;-0.02668878,0.005327736;0.3988803;0.02871837,0;0;0,0.001607887;0.1996196;0.01222404,0.004372268;0.4995199;0.01761468,0.1081829;0.3720949;-0.03351099,0.2040677;0.130469;-0.1375448,0.2341475;-0.04862422;-0.3506664,-0.1100523;0.3603605;0.01692314,-0.1678003;0.08898404;0.05460573,-0.2011676;-0.189001;0.05791121,0.06093229;0.006833002;-0.05138644,0.1002092;-0.3680269;-0.00304031,0.1095787;-0.7112535;0.06483997,0.1186615;-0.7570069;0.0001953393,-0.07738226;-0.001117662;-0.02026662,-0.09081803;-0.3800861;0.004276877,-0.09866678;-0.7239634;0.06898221,-0.1139971;-0.712644;-0.02805398,0.003370468;0.3995261;0.01808253,39.00931
+0;0;0,0.002674029;0.1992011;0.0176569,0.007125115;0.4988381;0.03055155,0.1164761;0.3724816;-0.008455334,0.1880722;0.1018202;-0.0125062,0.2353811;-0.1710597;-0.05371796,-0.1059194;0.3584639;0.01029057,-0.1968092;0.09660548;0.04990351,-0.2150024;-0.1828009;0.04887062,0.06804948;0.006859633;-0.04149956,0.09128699;-0.3693046;0.007085435,0.1007627;-0.7105479;0.08430722,0.1114604;-0.7574728;0.02131407,-0.07222988;0.0007505171;-0.03438431,-0.09471454;-0.3769032;0.001282386,-0.1020103;-0.7195974;0.07204572,-0.1063276;-0.7068388;-0.02636208,0.005532315;0.3988644;0.02890003,0;0;0,0.001961814;0.1995856;0.01271728,0.004874339;0.4994789;0.01831693,0.1084376;0.3719044;-0.03321157,0.2044327;0.1328078;-0.142837,0.2301731;-0.04439107;-0.3580996,-0.1094557;0.3599869;0.01800481,-0.1674102;0.08860877;0.05535686,-0.2007302;-0.1893805;0.05878371,0.06075226;0.006781335;-0.05160597,0.1007436;-0.3678758;-0.002283599,0.110239;-0.7110578;0.06580447,0.1184325;-0.7562378;0.0003763512,-0.07748162;-0.001167185;-0.01988054,-0.09042905;-0.3801947;0.00400462,-0.09819289;-0.7239403;0.06941608,-0.1138363;-0.7125973;-0.02757466,0.003854938;0.3994851;0.01876697,39.02055
+0;0;0,0.002674029;0.1992011;0.0176569,0.007125115;0.4988381;0.03055155,0.1164761;0.3724816;-0.008455334,0.1880722;0.1018202;-0.0125062,0.2353811;-0.1710597;-0.05371796,-0.1059194;0.3584639;0.01029057,-0.1968092;0.09660548;0.04990351,-0.2150024;-0.1828009;0.04887062,0.06804948;0.006859633;-0.04149956,0.09128699;-0.3693046;0.007085435,0.1007627;-0.7105479;0.08430722,0.1114604;-0.7574728;0.02131407,-0.07222988;0.0007505171;-0.03438431,-0.09471454;-0.3769032;0.001282386,-0.1020103;-0.7195974;0.07204572,-0.1063276;-0.7068388;-0.02636208,0.005532315;0.3988644;0.02890003,0;0;0,0.001961814;0.1995856;0.01271728,0.004874339;0.4994789;0.01831693,0.1084376;0.3719044;-0.03321157,0.2044327;0.1328078;-0.142837,0.2301731;-0.04439107;-0.3580996,-0.1094557;0.3599869;0.01800481,-0.1674102;0.08860877;0.05535686,-0.2007302;-0.1893805;0.05878371,0.06075226;0.006781335;-0.05160597,0.1007436;-0.3678758;-0.002283599,0.110239;-0.7110578;0.06580447,0.1184325;-0.7562378;0.0003763512,-0.07748162;-0.001167185;-0.01988054,-0.09042905;-0.3801947;0.00400462,-0.09819289;-0.7239403;0.06941608,-0.1138363;-0.7125973;-0.02757466,0.003854938;0.3994851;0.01876697,39.04295
+0;0;0,0.002674029;0.1992011;0.0176569,0.007125115;0.4988381;0.03055155,0.1164761;0.3724816;-0.008455334,0.1880722;0.1018202;-0.0125062,0.2353811;-0.1710597;-0.05371796,-0.1059194;0.3584639;0.01029057,-0.1968092;0.09660548;0.04990351,-0.2150024;-0.1828009;0.04887062,0.06804948;0.006859633;-0.04149956,0.09128699;-0.3693046;0.007085435,0.1007627;-0.7105479;0.08430722,0.1114604;-0.7574728;0.02131407,-0.07222988;0.0007505171;-0.03438431,-0.09471454;-0.3769032;0.001282386,-0.1020103;-0.7195974;0.07204572,-0.1063276;-0.7068388;-0.02636208,0.005532315;0.3988644;0.02890003,0;0;0,0.002241233;0.1995607;0.01305751,0.005447973;0.4994454;0.0189796,0.1087592;0.3719045;-0.03292179,0.2114011;0.1453724;-0.1615603,0.2265129;-0.03926328;-0.3715158,-0.1090149;0.3599388;0.0188049,-0.1680024;0.08892304;0.05715749,-0.1901738;-0.1900781;0.06532869,0.06051725;0.006777797;-0.05188183,0.101074;-0.3677109;-0.001748309,0.1103819;-0.7109075;0.06629207,0.1189246;-0.7560885;0.0009097904,-0.0775658;-0.001278616;-0.01954259,-0.08990316;-0.3803112;0.004583877,-0.09795322;-0.7239997;0.07026049,-0.11379;-0.712634;-0.02670322,0.004291778;0.3994526;0.01930514,39.06517
+0;0;0,0.002795423;0.1991823;0.017849,0.007401894;0.498808;0.03093349,0.1165456;0.3721436;-0.008388868,0.1894792;0.1019082;-0.01570606,0.2382059;-0.1697506;-0.06289917,-0.1057184;0.3583512;0.01101444,-0.1974769;0.0969519;0.05164479,-0.2146251;-0.1825179;0.05003434,0.06819127;0.006746155;-0.04128487,0.09138685;-0.3694181;0.007319849,0.1006508;-0.7106076;0.08480449,0.1120048;-0.75641;0.02057763,-0.07218209;0.0009518376;-0.03447956,-0.09466009;-0.376653;0.00170546,-0.1013758;-0.7193233;0.07264179,-0.1058636;-0.7065528;-0.02576046,0.005766914;0.3988358;0.02923556,0;0;0,0.002516006;0.1995273;0.01350959,0.005966126;0.499402;0.01972837,0.108795;0.3715948;-0.03282863,0.2132986;0.1477136;-0.1645717,0.2172766;-0.02871847;-0.3819559,-0.1085587;0.3597492;0.01960232,-0.1677136;0.08877367;0.05798168,-0.1995928;-0.1893978;0.05590157,0.06048422;0.006691414;-0.05193154,0.1014279;-0.3676243;-0.0008302443,0.1106683;-0.71084;0.06712255,0.1193097;-0.7561693;0.001924083,-0.07762326;-0.001237951;-0.01931574,-0.08962927;-0.3802374;0.005488897,-0.09733614;-0.7238966;0.07135937,-0.1134493;-0.7125108;-0.02556265,0.00469687;0.3994104;0.01999052,39.08754
+0;0;0,0.002795423;0.1991823;0.017849,0.007401894;0.498808;0.03093349,0.1165456;0.3721436;-0.008388868,0.1894792;0.1019082;-0.01570606,0.2382059;-0.1697506;-0.06289917,-0.1057184;0.3583512;0.01101444,-0.1974769;0.0969519;0.05164479,-0.2146251;-0.1825179;0.05003434,0.06819127;0.006746155;-0.04128487,0.09138685;-0.3694181;0.007319849,0.1006508;-0.7106076;0.08480449,0.1120048;-0.75641;0.02057763,-0.07218209;0.0009518376;-0.03447956,-0.09466009;-0.376653;0.00170546,-0.1013758;-0.7193233;0.07264179,-0.1058636;-0.7065528;-0.02576046,0.005766914;0.3988358;0.02923556,0;0;0,0.002516006;0.1995273;0.01350959,0.005966126;0.499402;0.01972837,0.108795;0.3715948;-0.03282863,0.2132986;0.1477136;-0.1645717,0.2172766;-0.02871847;-0.3819559,-0.1085587;0.3597492;0.01960232,-0.1677136;0.08877367;0.05798168,-0.1995928;-0.1893978;0.05590157,0.06048422;0.006691414;-0.05193154,0.1014279;-0.3676243;-0.0008302443,0.1106683;-0.71084;0.06712255,0.1193097;-0.7561693;0.001924083,-0.07762326;-0.001237951;-0.01931574,-0.08962927;-0.3802374;0.005488897,-0.09733614;-0.7238966;0.07135937,-0.1134493;-0.7125108;-0.02556265,0.00469687;0.3994104;0.01999052,39.0987
+0;0;0,0.002795423;0.1991823;0.017849,0.007401894;0.498808;0.03093349,0.1165456;0.3721436;-0.008388868,0.1894792;0.1019082;-0.01570606,0.2382059;-0.1697506;-0.06289917,-0.1057184;0.3583512;0.01101444,-0.1974769;0.0969519;0.05164479,-0.2146251;-0.1825179;0.05003434,0.06819127;0.006746155;-0.04128487,0.09138685;-0.3694181;0.007319849,0.1006508;-0.7106076;0.08480449,0.1120048;-0.75641;0.02057763,-0.07218209;0.0009518376;-0.03447956,-0.09466009;-0.376653;0.00170546,-0.1013758;-0.7193233;0.07264179,-0.1058636;-0.7065528;-0.02576046,0.005766914;0.3988358;0.02923556,0;0;0,0.002582796;0.1995049;0.01382409,0.006123954;0.4993747;0.02026615,0.1084813;0.3712893;-0.03306516,0.2142162;0.1492213;-0.1668783,0.2132509;-0.02253136;-0.3880119,-0.1083888;0.3595387;0.02046149,-0.1672417;0.08836344;0.05788201,-0.1991506;-0.1898104;0.05681159,0.06036618;0.006657762;-0.05207301,0.1015893;-0.3675595;-0.0004775859,0.1109399;-0.7107463;0.067606,0.1194972;-0.7561956;0.002535373,-0.07763578;-0.001213282;-0.01926691,-0.08976332;-0.3801806;0.00596578,-0.09730777;-0.7238513;0.07179557,-0.1138322;-0.7124561;-0.02505898,0.00480301;0.3993835;0.02042804,39.1211
+0;0;0,0.002939945;0.1991681;0.0179837,0.007813263;0.4987794;0.03130071,0.1168549;0.3722612;-0.008218281,0.1917436;0.1027308;-0.0202619,0.2418582;-0.1672387;-0.07508011,-0.1054281;0.3582116;0.01171566,-0.1971478;0.09678677;0.05226859,-0.2141499;-0.1826894;0.05026693,0.06813648;0.006447955;-0.04142274,0.09217413;-0.3696169;0.007540539,0.1018242;-0.7108135;0.08494709,0.1130603;-0.7564345;0.0204861,-0.07226194;0.001274596;-0.03430142,-0.09415903;-0.3763788;0.001732949,-0.1004127;-0.7190254;0.07282591,-0.1051078;-0.7062439;-0.0255686,0.006082367;0.3988101;0.02952547,0;0;0,0.002582796;0.1995049;0.01382409,0.006123954;0.4993747;0.02026615,0.1084813;0.3712893;-0.03306516,0.2142162;0.1492213;-0.1668783,0.2132509;-0.02253136;-0.3880119,-0.1083888;0.3595387;0.02046149,-0.1672417;0.08836344;0.05788201,-0.1991506;-0.1898104;0.05681159,0.06036618;0.006657762;-0.05207301,0.1015893;-0.3675595;-0.0004775859,0.1109399;-0.7107463;0.067606,0.1194972;-0.7561956;0.002535373,-0.07763578;-0.001213282;-0.01926691,-0.08976332;-0.3801806;0.00596578,-0.09730777;-0.7238513;0.07179557,-0.1138322;-0.7124561;-0.02505898,0.00480301;0.3993835;0.02042804,39.13218
+0;0;0,0.002939945;0.1991681;0.0179837,0.007813263;0.4987794;0.03130071,0.1168549;0.3722612;-0.008218281,0.1917436;0.1027308;-0.0202619,0.2418582;-0.1672387;-0.07508011,-0.1054281;0.3582116;0.01171566,-0.1971478;0.09678677;0.05226859,-0.2141499;-0.1826894;0.05026693,0.06813648;0.006447955;-0.04142274,0.09217413;-0.3696169;0.007540539,0.1018242;-0.7108135;0.08494709,0.1130603;-0.7564345;0.0204861,-0.07226194;0.001274596;-0.03430142,-0.09415903;-0.3763788;0.001732949,-0.1004127;-0.7190254;0.07282591,-0.1051078;-0.7062439;-0.0255686,0.006082367;0.3988101;0.02952547,0;0;0,0.002727903;0.1994905;0.0140028,0.006701272;0.4993493;0.02068558,0.1087379;0.3711898;-0.0329073,0.2130482;0.150337;-0.1698138,0.2088976;-0.01697139;-0.3942924,-0.1080132;0.3595108;0.02088112,-0.1669527;0.08835012;0.05827131,-0.199154;-0.1897877;0.05670052,0.06019023;0.006518373;-0.05229385,0.1016567;-0.3675924;-0.0001243018,0.1110148;-0.7107923;0.06789221,0.1194092;-0.75621;0.002763778,-0.07768287;-0.001105802;-0.01908267,-0.08987917;-0.380053;0.006418115,-0.09735274;-0.7237192;0.07227875,-0.1140033;-0.7123089;-0.02455711,0.005176673;0.399361;0.02077195,39.15453
+0;0;0,0.002939945;0.1991681;0.0179837,0.007813263;0.4987794;0.03130071,0.1168549;0.3722612;-0.008218281,0.1917436;0.1027308;-0.0202619,0.2418582;-0.1672387;-0.07508011,-0.1054281;0.3582116;0.01171566,-0.1971478;0.09678677;0.05226859,-0.2141499;-0.1826894;0.05026693,0.06813648;0.006447955;-0.04142274,0.09217413;-0.3696169;0.007540539,0.1018242;-0.7108135;0.08494709,0.1130603;-0.7564345;0.0204861,-0.07226194;0.001274596;-0.03430142,-0.09415903;-0.3763788;0.001732949,-0.1004127;-0.7190254;0.07282591,-0.1051078;-0.7062439;-0.0255686,0.006082367;0.3988101;0.02952547,0;0;0,0.002727903;0.1994905;0.0140028,0.006701272;0.4993493;0.02068558,0.1087379;0.3711898;-0.0329073,0.2130482;0.150337;-0.1698138,0.2088976;-0.01697139;-0.3942924,-0.1080132;0.3595108;0.02088112,-0.1669527;0.08835012;0.05827131,-0.199154;-0.1897877;0.05670052,0.06019023;0.006518373;-0.05229385,0.1016567;-0.3675924;-0.0001243018,0.1110148;-0.7107923;0.06789221,0.1194092;-0.75621;0.002763778,-0.07768287;-0.001105802;-0.01908267,-0.08987917;-0.380053;0.006418115,-0.09735274;-0.7237192;0.07227875,-0.1140033;-0.7123089;-0.02455711,0.005176673;0.399361;0.02077195,39.1659
+0;0;0,0.002943784;0.1991613;0.01805858,0.007873004;0.4987655;0.03151232,0.1167567;0.37236;-0.008512782,0.1935527;0.1035191;-0.02357788,0.2438209;-0.164574;-0.08681718,-0.1055636;0.3585583;0.01212252,-0.1977144;0.0973385;0.05301832,-0.2145296;-0.1821439;0.05039831,0.06818002;0.006386371;-0.04136059,0.09209058;-0.3696757;0.007686246,0.1020949;-0.7108303;0.08523281,0.1128261;-0.7568547;0.02116141,-0.07228471;0.001321436;-0.03425162,-0.09408802;-0.376325;0.001911823,-0.1005754;-0.71899;0.07289508,-0.1054635;-0.7062142;-0.02548902,0.006115184;0.3987975;0.02969082,0;0;0,0.003000281;0.1994576;0.01441049,0.007338703;0.4993016;0.02146438,0.1091058;0.3711101;-0.03239849,0.2128779;0.1542728;-0.1759705,0.2049012;-0.01032993;-0.4023382,-0.1075896;0.3595946;0.02165668,-0.1665644;0.08831036;0.05808241,-0.1990134;-0.1898017;0.05721761,0.06027372;0.006379372;-0.05221478,0.1019592;-0.3676067;0.0006691068,0.1111674;-0.7108039;0.06871968,0.1201389;-0.7561253;0.003556743,-0.07768134;-0.0009348908;-0.01909804,-0.08967399;-0.3798424;0.007079529,-0.09698685;-0.7234942;0.07303401,-0.1137321;-0.7120526;-0.02379154,0.005645455;0.399316;0.02145679,39.18814
+0;0;0,0.002943784;0.1991613;0.01805858,0.007873004;0.4987655;0.03151232,0.1167567;0.37236;-0.008512782,0.1935527;0.1035191;-0.02357788,0.2438209;-0.164574;-0.08681718,-0.1055636;0.3585583;0.01212252,-0.1977144;0.0973385;0.05301832,-0.2145296;-0.1821439;0.05039831,0.06818002;0.006386371;-0.04136059,0.09209058;-0.3696757;0.007686246,0.1020949;-0.7108303;0.08523281,0.1128261;-0.7568547;0.02116141,-0.07228471;0.001321436;-0.03425162,-0.09408802;-0.376325;0.001911823,-0.1005754;-0.71899;0.07289508,-0.1054635;-0.7062142;-0.02548902,0.006115184;0.3987975;0.02969082,0;0;0,0.003000281;0.1994576;0.01441049,0.007338703;0.4993016;0.02146438,0.1091058;0.3711101;-0.03239849,0.2128779;0.1542728;-0.1759705,0.2049012;-0.01032993;-0.4023382,-0.1075896;0.3595946;0.02165668,-0.1665644;0.08831036;0.05808241,-0.1990134;-0.1898017;0.05721761,0.06027372;0.006379372;-0.05221478,0.1019592;-0.3676067;0.0006691068,0.1111674;-0.7108039;0.06871968,0.1201389;-0.7561253;0.003556743,-0.07768134;-0.0009348908;-0.01909804,-0.08967399;-0.3798424;0.007079529,-0.09698685;-0.7234942;0.07303401,-0.1137321;-0.7120526;-0.02379154,0.005645455;0.399316;0.02145679,39.19915
+0;0;0,0.002943784;0.1991613;0.01805858,0.007873004;0.4987655;0.03151232,0.1167567;0.37236;-0.008512782,0.1935527;0.1035191;-0.02357788,0.2438209;-0.164574;-0.08681718,-0.1055636;0.3585583;0.01212252,-0.1977144;0.0973385;0.05301832,-0.2145296;-0.1821439;0.05039831,0.06818002;0.006386371;-0.04136059,0.09209058;-0.3696757;0.007686246,0.1020949;-0.7108303;0.08523281,0.1128261;-0.7568547;0.02116141,-0.07228471;0.001321436;-0.03425162,-0.09408802;-0.376325;0.001911823,-0.1005754;-0.71899;0.07289508,-0.1054635;-0.7062142;-0.02548902,0.006115184;0.3987975;0.02969082,0;0;0,0.003000281;0.1994576;0.01441049,0.007338703;0.4993016;0.02146438,0.1091058;0.3711101;-0.03239849,0.2128779;0.1542728;-0.1759705,0.2049012;-0.01032993;-0.4023382,-0.1075896;0.3595946;0.02165668,-0.1665644;0.08831036;0.05808241,-0.1990134;-0.1898017;0.05721761,0.06027372;0.006379372;-0.05221478,0.1019592;-0.3676067;0.0006691068,0.1111674;-0.7108039;0.06871968,0.1201389;-0.7561253;0.003556743,-0.07768134;-0.0009348908;-0.01909804,-0.08967399;-0.3798424;0.007079529,-0.09698685;-0.7234942;0.07303401,-0.1137321;-0.7120526;-0.02379154,0.005645455;0.399316;0.02145679,39.21058
+0;0;0,0.003018351;0.1991547;0.01811866,0.008034913;0.4987538;0.03165276,0.1167844;0.3722112;-0.008607768,0.1961025;0.1044336;-0.02870244,0.2447645;-0.1627078;-0.09702162,-0.1056086;0.3587207;0.0129928,-0.1973368;0.09718278;0.0527909,-0.2145539;-0.1822761;0.05028032,0.06813154;0.006375771;-0.04144203,0.09183645;-0.3697045;0.007564802,0.1015869;-0.7108554;0.08516024,0.1133801;-0.7551377;0.0192584,-0.07232745;0.001328267;-0.03416101,-0.09476145;-0.3763136;0.001662936,-0.1004191;-0.7189229;0.07298504,-0.1055732;-0.7061422;-0.02538634,0.006248567;0.3987868;0.02980538,0;0;0,0.003454563;0.1994261;0.01474085,0.008406385;0.4992531;0.02208524,0.1093991;0.3705674;-0.03253492,0.2122583;0.1554427;-0.1793047,0.2009589;-0.00279966;-0.4100246,-0.1068586;0.3596942;0.02227334,-0.1670558;0.0887163;0.05897881,-0.1993868;-0.1894107;0.0587776,0.06030986;0.006308584;-0.05218163,0.1024669;-0.3676409;0.0005874112,0.111897;-0.7106992;0.0693047,0.1205848;-0.756021;0.004103869,-0.07769353;-0.0008640492;-0.01905174,-0.08892652;-0.379757;0.007667562,-0.09631371;-0.7233827;0.07374927,-0.1133279;-0.7119187;-0.02303366,0.006426185;0.3992727;0.0219864,39.23272
+0;0;0,0.003018351;0.1991547;0.01811866,0.008034913;0.4987538;0.03165276,0.1167844;0.3722112;-0.008607768,0.1961025;0.1044336;-0.02870244,0.2447645;-0.1627078;-0.09702162,-0.1056086;0.3587207;0.0129928,-0.1973368;0.09718278;0.0527909,-0.2145539;-0.1822761;0.05028032,0.06813154;0.006375771;-0.04144203,0.09183645;-0.3697045;0.007564802,0.1015869;-0.7108554;0.08516024,0.1133801;-0.7551377;0.0192584,-0.07232745;0.001328267;-0.03416101,-0.09476145;-0.3763136;0.001662936,-0.1004191;-0.7189229;0.07298504,-0.1055732;-0.7061422;-0.02538634,0.006248567;0.3987868;0.02980538,0;0;0,0.003454563;0.1994261;0.01474085,0.008406385;0.4992531;0.02208524,0.1093991;0.3705674;-0.03253492,0.2122583;0.1554427;-0.1793047,0.2009589;-0.00279966;-0.4100246,-0.1068586;0.3596942;0.02227334,-0.1670558;0.0887163;0.05897881,-0.1993868;-0.1894107;0.0587776,0.06030986;0.006308584;-0.05218163,0.1024669;-0.3676409;0.0005874112,0.111897;-0.7106992;0.0693047,0.1205848;-0.756021;0.004103869,-0.07769353;-0.0008640492;-0.01905174,-0.08892652;-0.379757;0.007667562,-0.09631371;-0.7233827;0.07374927,-0.1133279;-0.7119187;-0.02303366,0.006426185;0.3992727;0.0219864,39.24394
+0;0;0,0.003018351;0.1991547;0.01811866,0.008034913;0.4987538;0.03165276,0.1167844;0.3722112;-0.008607768,0.1961025;0.1044336;-0.02870244,0.2447645;-0.1627078;-0.09702162,-0.1056086;0.3587207;0.0129928,-0.1973368;0.09718278;0.0527909,-0.2145539;-0.1822761;0.05028032,0.06813154;0.006375771;-0.04144203,0.09183645;-0.3697045;0.007564802,0.1015869;-0.7108554;0.08516024,0.1133801;-0.7551377;0.0192584,-0.07232745;0.001328267;-0.03416101,-0.09476145;-0.3763136;0.001662936,-0.1004191;-0.7189229;0.07298504,-0.1055732;-0.7061422;-0.02538634,0.006248567;0.3987868;0.02980538,0;0;0,0.003584624;0.1993997;0.0150641,0.008928918;0.4992108;0.02282271,0.1096942;0.3706531;-0.03212634,0.2116842;0.1587591;-0.1841098,0.197348;0.006241277;-0.4184873,-0.1065954;0.359869;0.02293817,-0.1671011;0.08892757;0.05940463,-0.1997249;-0.1891654;0.05935984,0.06022108;0.006206139;-0.05229632,0.1024829;-0.3676412;0.001109064,0.1119971;-0.7106856;0.06988393,0.1205448;-0.7571573;0.006016687,-0.07774209;-0.0007798898;-0.01885625,-0.0889481;-0.3796769;0.007817039,-0.09627965;-0.7232677;0.07408682,-0.1133884;-0.7117794;-0.0226841,0.006763269;0.3992346;0.02253915,39.26607
+0;0;0,0.002942212;0.1991464;0.01822269,0.007768707;0.4987351;0.03207392,0.116549;0.3722641;-0.008447381,0.1975126;0.1053742;-0.03324085,0.2466025;-0.158783;-0.1120516,-0.1060722;0.3592964;0.01359432,-0.197588;0.09759337;0.05279073,-0.2154139;-0.1818255;0.05008791,0.06810421;0.006330038;-0.04149393,0.09213725;-0.3696967;0.00776308,0.1018955;-0.7108878;0.08518027,0.1145901;-0.7565193;0.0210029,-0.07236928;0.001375659;-0.03407042,-0.09561566;-0.3762829;0.001052886,-0.1001758;-0.718787;0.07295655,-0.1054817;-0.7059956;-0.02540864,0.006041846;0.3987695;0.03009649,0;0;0,0.003680359;0.1993854;0.01522944,0.009144357;0.4991896;0.02318237,0.1097583;0.3706989;-0.03206197,0.2091143;0.1618818;-0.1899348,0.193036;0.01384033;-0.4270533,-0.1064965;0.3600335;0.02351889,-0.1674233;0.08907649;0.05915913,-0.1909395;-0.189814;0.06734826,0.06014873;0.006220143;-0.05237786,0.102568;-0.3675797;0.001234766,0.1121226;-0.7106109;0.07006998,0.1206539;-0.7570662;0.006181009,-0.0777739;-0.0008199459;-0.01872293,-0.08892272;-0.3797296;0.007795133,-0.09625992;-0.7232754;0.07429639,-0.1135353;-0.7117763;-0.02244698,0.006924503;0.3992149;0.02282013,39.28857
+0;0;0,0.002942212;0.1991464;0.01822269,0.007768707;0.4987351;0.03207392,0.116549;0.3722641;-0.008447381,0.1975126;0.1053742;-0.03324085,0.2466025;-0.158783;-0.1120516,-0.1060722;0.3592964;0.01359432,-0.197588;0.09759337;0.05279073,-0.2154139;-0.1818255;0.05008791,0.06810421;0.006330038;-0.04149393,0.09213725;-0.3696967;0.00776308,0.1018955;-0.7108878;0.08518027,0.1145901;-0.7565193;0.0210029,-0.07236928;0.001375659;-0.03407042,-0.09561566;-0.3762829;0.001052886,-0.1001758;-0.718787;0.07295655,-0.1054817;-0.7059956;-0.02540864,0.006041846;0.3987695;0.03009649,0;0;0,0.003680359;0.1993854;0.01522944,0.009144357;0.4991896;0.02318237,0.1097583;0.3706989;-0.03206197,0.2091143;0.1618818;-0.1899348,0.193036;0.01384033;-0.4270533,-0.1064965;0.3600335;0.02351889,-0.1674233;0.08907649;0.05915913,-0.1909395;-0.189814;0.06734826,0.06014873;0.006220143;-0.05237786,0.102568;-0.3675797;0.001234766,0.1121226;-0.7106109;0.07006998,0.1206539;-0.7570662;0.006181009,-0.0777739;-0.0008199459;-0.01872293,-0.08892272;-0.3797296;0.007795133,-0.09625992;-0.7232754;0.07429639,-0.1135353;-0.7117763;-0.02244698,0.006924503;0.3992149;0.02282013,39.31085
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.004050436;0.1993544;0.01553727,0.009970595;0.499138;0.02400353,0.110002;0.3701879;-0.03194013,0.2081446;0.1634968;-0.1933304,0.1899449;0.02175058;-0.4341141,-0.1059106;0.3600911;0.0242747,-0.1664319;0.08895385;0.05922825,-0.1902027;-0.1899224;0.06716369,0.06014428;0.006054814;-0.05240233,0.1031195;-0.3676816;0.001209281,0.1127353;-0.7106087;0.07055304,0.1218794;-0.7570434;0.006724052,-0.07780209;-0.0006059016;-0.01861363,-0.08829663;-0.3795097;0.008251499,-0.09563282;-0.7230399;0.07483381,-0.1131589;-0.7115171;-0.021869,0.007544856;0.3991692;0.02340072,39.33321
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.004050436;0.1993544;0.01553727,0.009970595;0.499138;0.02400353,0.110002;0.3701879;-0.03194013,0.2081446;0.1634968;-0.1933304,0.1899449;0.02175058;-0.4341141,-0.1059106;0.3600911;0.0242747,-0.1664319;0.08895385;0.05922825,-0.1902027;-0.1899224;0.06716369,0.06014428;0.006054814;-0.05240233,0.1031195;-0.3676816;0.001209281,0.1127353;-0.7106087;0.07055304,0.1218794;-0.7570434;0.006724052,-0.07780209;-0.0006059016;-0.01861363,-0.08829663;-0.3795097;0.008251499,-0.09563282;-0.7230399;0.07483381,-0.1131589;-0.7115171;-0.021869,0.007544856;0.3991692;0.02340072,39.34439
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.0041602;0.1993515;0.01554573,0.01032144;0.4991262;0.02412734,0.1101283;0.3701005;-0.03206537,0.2069826;0.1658302;-0.1972711,0.1900132;0.02856207;-0.4407244,-0.1056656;0.3601681;0.02438892,-0.1665724;0.08899939;0.05841695,-0.1911324;-0.1897941;0.06684301,0.06011005;0.006015942;-0.05244606,0.1032086;-0.3676904;0.001276284,0.1128768;-0.7105927;0.07073484,0.1219304;-0.7567983;0.006619662,-0.07781495;-0.0005699813;-0.01856093,-0.08831961;-0.3794767;0.008259848,-0.09561227;-0.7229786;0.07499237,-0.1132272;-0.7114532;-0.02169476,0.007819642;0.3991594;0.02350898,39.3556
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.0041602;0.1993515;0.01554573,0.01032144;0.4991262;0.02412734,0.1101283;0.3701005;-0.03206537,0.2069826;0.1658302;-0.1972711,0.1900132;0.02856207;-0.4407244,-0.1056656;0.3601681;0.02438892,-0.1665724;0.08899939;0.05841695,-0.1911324;-0.1897941;0.06684301,0.06011005;0.006015942;-0.05244606,0.1032086;-0.3676904;0.001276284,0.1128768;-0.7105927;0.07073484,0.1219304;-0.7567983;0.006619662,-0.07781495;-0.0005699813;-0.01856093,-0.08831961;-0.3794767;0.008259848,-0.09561227;-0.7229786;0.07499237,-0.1132272;-0.7114532;-0.02169476,0.007819642;0.3991594;0.02350898,39.37775
+0;0;0,0.003357103;0.199119;0.01844807,0.008486756;0.4986851;0.03269777,0.1170872;0.3720457;-0.008166395,0.2006385;0.1071881;-0.04379845,0.2482861;-0.1509739;-0.1411745,-0.105779;0.3598753;0.01499072,-0.1969474;0.09794128;0.05344739,-0.2151111;-0.1814447;0.04976452,0.06803881;0.006311846;-0.04160386,0.0927002;-0.3696021;0.00820075,0.1030772;-0.7108433;0.08531605,0.1148779;-0.7578401;0.02260844,-0.07244027;0.001396607;-0.03391838,-0.09527561;-0.3763424;0.0006034821,-0.09880948;-0.718751;0.07301825,-0.1044412;-0.7059408;-0.02533212,0.006685826;0.3987242;0.03056072,0;0;0,0.004493151;0.1993316;0.01570796,0.01123073;0.4990876;0.02451593,0.1103281;0.3699241;-0.03249592,0.2057128;0.1690171;-0.2026081,0.1882975;0.03674912;-0.4487826,-0.1054929;0.3615323;0.02544658,-0.1671533;0.09041348;0.0585009,-0.1916196;-0.1883922;0.06679601,0.05995227;0.005964807;-0.05263218,0.1036261;-0.3676304;0.001397379,0.1133305;-0.7105042;0.07099189,0.122099;-0.7568309;0.006981313,-0.07785731;-0.0005164668;-0.01838405,-0.0876726;-0.3795201;0.007304762,-0.09527713;-0.7228692;0.07478525,-0.1133464;-0.7113343;-0.02181984,0.008453438;0.3991287;0.02379485,39.38909
+0;0;0,0.003357103;0.199119;0.01844807,0.008486756;0.4986851;0.03269777,0.1170872;0.3720457;-0.008166395,0.2006385;0.1071881;-0.04379845,0.2482861;-0.1509739;-0.1411745,-0.105779;0.3598753;0.01499072,-0.1969474;0.09794128;0.05344739,-0.2151111;-0.1814447;0.04976452,0.06803881;0.006311846;-0.04160386,0.0927002;-0.3696021;0.00820075,0.1030772;-0.7108433;0.08531605,0.1148779;-0.7578401;0.02260844,-0.07244027;0.001396607;-0.03391838,-0.09527561;-0.3763424;0.0006034821,-0.09880948;-0.718751;0.07301825,-0.1044412;-0.7059408;-0.02533212,0.006685826;0.3987242;0.03056072,0;0;0,0.004493151;0.1993316;0.01570796,0.01123073;0.4990876;0.02451593,0.1103281;0.3699241;-0.03249592,0.2057128;0.1690171;-0.2026081,0.1882975;0.03674912;-0.4487826,-0.1054929;0.3615323;0.02544658,-0.1671533;0.09041348;0.0585009,-0.1916196;-0.1883922;0.06679601,0.05995227;0.005964807;-0.05263218,0.1036261;-0.3676304;0.001397379,0.1133305;-0.7105042;0.07099189,0.122099;-0.7568309;0.006981313,-0.07785731;-0.0005164668;-0.01838405,-0.0876726;-0.3795201;0.007304762,-0.09527713;-0.7228692;0.07478525,-0.1133464;-0.7113343;-0.02181984,0.008453438;0.3991287;0.02379485,39.4006
+0;0;0,0.003357103;0.199119;0.01844807,0.008486756;0.4986851;0.03269777,0.1170872;0.3720457;-0.008166395,0.2006385;0.1071881;-0.04379845,0.2482861;-0.1509739;-0.1411745,-0.105779;0.3598753;0.01499072,-0.1969474;0.09794128;0.05344739,-0.2151111;-0.1814447;0.04976452,0.06803881;0.006311846;-0.04160386,0.0927002;-0.3696021;0.00820075,0.1030772;-0.7108433;0.08531605,0.1148779;-0.7578401;0.02260844,-0.07244027;0.001396607;-0.03391838,-0.09527561;-0.3763424;0.0006034821,-0.09880948;-0.718751;0.07301825,-0.1044412;-0.7059408;-0.02533212,0.006685826;0.3987242;0.03056072,0;0;0,0.004616945;0.1993222;0.01579022,0.0115408;0.499067;0.02481936,0.1102194;0.3694982;-0.03271562,0.2052666;0.1725171;-0.2075426,0.1873243;0.04284447;-0.4550564,-0.1052021;0.3614435;0.02566842,-0.1673224;0.09043035;0.05872757,-0.1920809;-0.1883699;0.06630669,0.05983092;0.005919504;-0.05277518,0.1038065;-0.3675961;0.001558848,0.1134087;-0.7104505;0.07126293,0.1223245;-0.7567573;0.007248983,-0.07788969;-0.0004904814;-0.01824705,-0.08750796;-0.3795405;0.006823925,-0.09522655;-0.7228013;0.07473899,-0.1134871;-0.7112589;-0.02183156,0.008721616;0.3991098;0.02404133,39.42262
+0;0;0,0.003223439;0.1991136;0.01853037,0.008105448;0.4986702;0.03307657,0.116784;0.3720921;-0.007934701,0.2016444;0.1082245;-0.0475908,0.2483933;-0.1448507;-0.1578972,-0.1062482;0.3601268;0.01577992,-0.1969192;0.09786752;0.05318099,-0.2152247;-0.181508;0.04941257,0.06804454;0.006280955;-0.04159915,0.09218526;-0.3696653;0.008216541,0.1031927;-0.7108732;0.08539166,0.1144386;-0.7573043;0.02189489,-0.07246923;0.001429613;-0.03385508,-0.09559357;-0.3762997;0.00058081,-0.09874292;-0.7186934;0.07308345,-0.1045594;-0.7058755;-0.02525751,0.006379338;0.3987105;0.03082454,0;0;0,0.004801193;0.1993166;0.01580652,0.01200983;0.4990508;0.02493485,0.1104082;0.3693662;-0.03288897,0.1993651;0.1741419;-0.2128171,0.1866371;0.05123563;-0.464078,-0.1049524;0.3618283;0.02564501,-0.1683832;0.0910905;0.05847142,-0.2057441;-0.1864038;0.05743422,0.05978011;0.005815223;-0.05284431,0.1042037;-0.3676251;0.001642797,0.1137625;-0.7104199;0.07164523,0.122526;-0.7567252;0.007608458,-0.07791647;-0.0003566212;-0.0181355,-0.08690285;-0.3794172;0.007010186,-0.09498187;-0.7226251;0.07515023,-0.1133245;-0.7110764;-0.02140597,0.009104066;0.3990961;0.02415138,39.4449
+0;0;0,0.003223439;0.1991136;0.01853037,0.008105448;0.4986702;0.03307657,0.116784;0.3720921;-0.007934701,0.2016444;0.1082245;-0.0475908,0.2483933;-0.1448507;-0.1578972,-0.1062482;0.3601268;0.01577992,-0.1969192;0.09786752;0.05318099,-0.2152247;-0.181508;0.04941257,0.06804454;0.006280955;-0.04159915,0.09218526;-0.3696653;0.008216541,0.1031927;-0.7108732;0.08539166,0.1144386;-0.7573043;0.02189489,-0.07246923;0.001429613;-0.03385508,-0.09559357;-0.3762997;0.00058081,-0.09874292;-0.7186934;0.07308345,-0.1045594;-0.7058755;-0.02525751,0.006379338;0.3987105;0.03082454,0;0;0,0.004801193;0.1993166;0.01580652,0.01200983;0.4990508;0.02493485,0.1104082;0.3693662;-0.03288897,0.1993651;0.1741419;-0.2128171,0.1866371;0.05123563;-0.464078,-0.1049524;0.3618283;0.02564501,-0.1683832;0.0910905;0.05847142,-0.2057441;-0.1864038;0.05743422,0.05978011;0.005815223;-0.05284431,0.1042037;-0.3676251;0.001642797,0.1137625;-0.7104199;0.07164523,0.122526;-0.7567252;0.007608458,-0.07791647;-0.0003566212;-0.0181355,-0.08690285;-0.3794172;0.007010186,-0.09498187;-0.7226251;0.07515023,-0.1133245;-0.7110764;-0.02140597,0.009104066;0.3990961;0.02415138,39.45618
+0;0;0,0.003223439;0.1991136;0.01853037,0.008105448;0.4986702;0.03307657,0.116784;0.3720921;-0.007934701,0.2016444;0.1082245;-0.0475908,0.2483933;-0.1448507;-0.1578972,-0.1062482;0.3601268;0.01577992,-0.1969192;0.09786752;0.05318099,-0.2152247;-0.181508;0.04941257,0.06804454;0.006280955;-0.04159915,0.09218526;-0.3696653;0.008216541,0.1031927;-0.7108732;0.08539166,0.1144386;-0.7573043;0.02189489,-0.07246923;0.001429613;-0.03385508,-0.09559357;-0.3762997;0.00058081,-0.09874292;-0.7186934;0.07308345,-0.1045594;-0.7058755;-0.02525751,0.006379338;0.3987105;0.03082454,0;0;0,0.004801193;0.1993166;0.01580652,0.01200983;0.4990508;0.02493485,0.1104082;0.3693662;-0.03288897,0.1993651;0.1741419;-0.2128171,0.1866371;0.05123563;-0.464078,-0.1049524;0.3618283;0.02564501,-0.1683832;0.0910905;0.05847142,-0.2057441;-0.1864038;0.05743422,0.05978011;0.005815223;-0.05284431,0.1042037;-0.3676251;0.001642797,0.1137625;-0.7104199;0.07164523,0.122526;-0.7567252;0.007608458,-0.07791647;-0.0003566212;-0.0181355,-0.08690285;-0.3794172;0.007010186,-0.09498187;-0.7226251;0.07515023,-0.1133245;-0.7110764;-0.02140597,0.009104066;0.3990961;0.02415138,39.47846
+0;0;0,0.003200646;0.1991093;0.01858054,0.008085553;0.4986595;0.0332635,0.1166634;0.3716571;-0.00777128,0.2024591;0.1089655;-0.05285119,0.2471698;-0.1395255;-0.1739016,-0.1063027;0.3600414;0.01631377,-0.196686;0.09750712;0.05246064,-0.2240412;-0.1810828;0.04618487,0.06804145;0.006261021;-0.0416072,0.09147106;-0.3697611;0.007975083,0.1032124;-0.7109094;0.08530562,0.1142478;-0.7571331;0.02152351,-0.07248785;0.001449417;-0.03381437,-0.09578057;-0.3762466;0.0008719787,-0.0986312;-0.7186799;0.07319965,-0.104553;-0.7058572;-0.02513587,0.006351565;0.3987011;0.03095742,0;0;0,0.004877466;0.1993076;0.01589566,0.01227652;0.4990321;0.02518844,0.1105502;0.3694391;-0.03284679,0.1970819;0.17749;-0.2174215,0.1867157;0.05766538;-0.4702744,-0.1047864;0.3619339;0.0258452,-0.1691559;0.09137496;0.05831752,-0.1951408;-0.1873808;0.06279127,0.05979226;0.005740174;-0.05283877,0.1043289;-0.3677069;0.001509979,0.1138461;-0.7104685;0.07168051,0.1220789;-0.7566675;0.007447042,-0.07790887;-0.0002522413;-0.01816982,-0.08709709;-0.379296;0.007156195,-0.0950473;-0.7224698;0.07548268,-0.1134524;-0.7109113;-0.0210635,0.009309886;0.3990796;0.02435324,39.50063
+0;0;0,0.003200646;0.1991093;0.01858054,0.008085553;0.4986595;0.0332635,0.1166634;0.3716571;-0.00777128,0.2024591;0.1089655;-0.05285119,0.2471698;-0.1395255;-0.1739016,-0.1063027;0.3600414;0.01631377,-0.196686;0.09750712;0.05246064,-0.2240412;-0.1810828;0.04618487,0.06804145;0.006261021;-0.0416072,0.09147106;-0.3697611;0.007975083,0.1032124;-0.7109094;0.08530562,0.1142478;-0.7571331;0.02152351,-0.07248785;0.001449417;-0.03381437,-0.09578057;-0.3762466;0.0008719787,-0.0986312;-0.7186799;0.07319965,-0.104553;-0.7058572;-0.02513587,0.006351565;0.3987011;0.03095742,0;0;0,0.004877466;0.1993076;0.01589566,0.01227652;0.4990321;0.02518844,0.1105502;0.3694391;-0.03284679,0.1970819;0.17749;-0.2174215,0.1867157;0.05766538;-0.4702744,-0.1047864;0.3619339;0.0258452,-0.1691559;0.09137496;0.05831752,-0.1951408;-0.1873808;0.06279127,0.05979226;0.005740174;-0.05283877,0.1043289;-0.3677069;0.001509979,0.1138461;-0.7104685;0.07168051,0.1220789;-0.7566675;0.007447042,-0.07790887;-0.0002522413;-0.01816982,-0.08709709;-0.379296;0.007156195,-0.0950473;-0.7224698;0.07548268,-0.1134524;-0.7109113;-0.0210635,0.009309886;0.3990796;0.02435324,39.51188
+0;0;0,0.003200646;0.1991093;0.01858054,0.008085553;0.4986595;0.0332635,0.1166634;0.3716571;-0.00777128,0.2024591;0.1089655;-0.05285119,0.2471698;-0.1395255;-0.1739016,-0.1063027;0.3600414;0.01631377,-0.196686;0.09750712;0.05246064,-0.2240412;-0.1810828;0.04618487,0.06804145;0.006261021;-0.0416072,0.09147106;-0.3697611;0.007975083,0.1032124;-0.7109094;0.08530562,0.1142478;-0.7571331;0.02152351,-0.07248785;0.001449417;-0.03381437,-0.09578057;-0.3762466;0.0008719787,-0.0986312;-0.7186799;0.07319965,-0.104553;-0.7058572;-0.02513587,0.006351565;0.3987011;0.03095742,0;0;0,0.005002102;0.1993015;0.01593332,0.01250872;0.4990185;0.02534754,0.1106837;0.3696207;-0.03293998,0.1963472;0.1821825;-0.2224886,0.1862382;0.06284917;-0.4755841,-0.1047434;0.3624489;0.02588216,-0.1693916;0.09188971;0.05779319,-0.1955463;-0.1868549;0.06196366,0.05975346;0.005686202;-0.05288848,0.1046862;-0.3677221;0.001400296,0.1139961;-0.7104492;0.07176675,0.1222286;-0.756712;0.00760892,-0.07793462;-0.0001910255;-0.01805982,-0.0868684;-0.379273;0.00678077,-0.09489539;-0.7223613;0.07552673,-0.1133375;-0.7107962;-0.02101365,0.009524876;0.3990666;0.02450416,39.52348
+0;0;0,0.003067685;0.1990929;0.01877738,0.007830259;0.4986203;0.03396927,0.116248;0.3712925;-0.007541738,0.2036722;0.1099901;-0.05732202,0.2459977;-0.134322;-0.1873995,-0.1065343;0.3599092;0.01709272,-0.1965122;0.09709284;0.05218599,-0.2249332;-0.1813827;0.04557862,0.06800281;0.006247884;-0.0416723,0.0913448;-0.3697656;0.008016933,0.1033304;-0.7109315;0.08523208,0.1153509;-0.7575715;0.02213039,-0.07256666;0.001469901;-0.03364401,-0.09598277;-0.3762548;0.0006450713,-0.0987066;-0.7186268;0.07326718,-0.1048225;-0.7057925;-0.02505848,0.006119965;0.398666;0.03147753,0;0;0,0.005168209;0.1992815;0.0161292,0.0128472;0.4989827;0.0258557,0.110839;0.3695718;-0.03274946,0.1968773;0.1857717;-0.2256612,0.1846355;0.08228088;-0.4855454,-0.1045054;0.3626325;0.02630034,-0.1678831;0.09134576;0.05434945,-0.1945025;-0.1873069;0.06099126,0.05965504;0.005725197;-0.05299526,0.1047657;-0.3675771;0.001872018,0.1140247;-0.7102614;0.07245325,0.1219775;-0.7563601;0.008065782,-0.07799067;-0.0002804174;-0.01781506,-0.08627341;-0.3793713;0.007113766,-0.09484113;-0.7224062;0.07606073,-0.1133657;-0.7108241;-0.0204671,0.009832956;0.3990322;0.0249555,39.54524
+0;0;0,0.003067685;0.1990929;0.01877738,0.007830259;0.4986203;0.03396927,0.116248;0.3712925;-0.007541738,0.2036722;0.1099901;-0.05732202,0.2459977;-0.134322;-0.1873995,-0.1065343;0.3599092;0.01709272,-0.1965122;0.09709284;0.05218599,-0.2249332;-0.1813827;0.04557862,0.06800281;0.006247884;-0.0416723,0.0913448;-0.3697656;0.008016933,0.1033304;-0.7109315;0.08523208,0.1153509;-0.7575715;0.02213039,-0.07256666;0.001469901;-0.03364401,-0.09598277;-0.3762548;0.0006450713,-0.0987066;-0.7186268;0.07326718,-0.1048225;-0.7057925;-0.02505848,0.006119965;0.398666;0.03147753,0;0;0,0.005168209;0.1992815;0.0161292,0.0128472;0.4989827;0.0258557,0.110839;0.3695718;-0.03274946,0.1968773;0.1857717;-0.2256612,0.1846355;0.08228088;-0.4855454,-0.1045054;0.3626325;0.02630034,-0.1678831;0.09134576;0.05434945,-0.1945025;-0.1873069;0.06099126,0.05965504;0.005725197;-0.05299526,0.1047657;-0.3675771;0.001872018,0.1140247;-0.7102614;0.07245325,0.1219775;-0.7563601;0.008065782,-0.07799067;-0.0002804174;-0.01781506,-0.08627341;-0.3793713;0.007113766,-0.09484113;-0.7224062;0.07606073,-0.1133657;-0.7108241;-0.0204671,0.009832956;0.3990322;0.0249555,39.56778
+0;0;0,0.003067685;0.1990929;0.01877738,0.007830259;0.4986203;0.03396927,0.116248;0.3712925;-0.007541738,0.2036722;0.1099901;-0.05732202,0.2459977;-0.134322;-0.1873995,-0.1065343;0.3599092;0.01709272,-0.1965122;0.09709284;0.05218599,-0.2249332;-0.1813827;0.04557862,0.06800281;0.006247884;-0.0416723,0.0913448;-0.3697656;0.008016933,0.1033304;-0.7109315;0.08523208,0.1153509;-0.7575715;0.02213039,-0.07256666;0.001469901;-0.03364401,-0.09598277;-0.3762548;0.0006450713,-0.0987066;-0.7186268;0.07326718,-0.1048225;-0.7057925;-0.02505848,0.006119965;0.398666;0.03147753,0;0;0,0.005168209;0.1992815;0.0161292,0.0128472;0.4989827;0.0258557,0.110839;0.3695718;-0.03274946,0.1968773;0.1857717;-0.2256612,0.1846355;0.08228088;-0.4855454,-0.1045054;0.3626325;0.02630034,-0.1678831;0.09134576;0.05434945,-0.1945025;-0.1873069;0.06099126,0.05965504;0.005725197;-0.05299526,0.1047657;-0.3675771;0.001872018,0.1140247;-0.7102614;0.07245325,0.1219775;-0.7563601;0.008065782,-0.07799067;-0.0002804174;-0.01781506,-0.08627341;-0.3793713;0.007113766,-0.09484113;-0.7224062;0.07606073,-0.1133657;-0.7108241;-0.0204671,0.009832956;0.3990322;0.0249555,39.57891
+0;0;0,0.003115455;0.1990817;0.01888801,0.007969176;0.4985911;0.03442423,0.1160809;0.3706629;-0.007543024,0.2046818;0.1108668;-0.06282336,0.2421674;-0.1268983;-0.2058708,-0.1065734;0.3600642;0.01798858,-0.1974335;0.09764516;0.0537754,-0.2249516;-0.1808561;0.0448413,0.0679703;0.006408209;-0.04170101,0.09132455;-0.3695965;0.008049067,0.1035253;-0.7107663;0.08521302,0.118708;-0.7590958;0.02493054,-0.07270794;0.001128015;-0.03335089,-0.09611803;-0.37663;0.0005729496,-0.09846595;-0.7189856;0.07328573,-0.1048475;-0.7061414;-0.02502479,0.006215787;0.3986412;0.03178719,0;0;0,0.005358816;0.1992673;0.01624338,0.01367666;0.4989422;0.02626439,0.1112673;0.3694558;-0.03270603,0.1979151;0.189801;-0.2292163,0.1905929;0.08654247;-0.4893779,-0.103941;0.3626946;0.02648263,-0.1684219;0.09173986;0.05521899,-0.1953903;-0.1868816;0.06176016,0.05954062;0.00574194;-0.05312198,0.1047605;-0.3675067;0.002019897,0.1140745;-0.7101324;0.07287788,0.1221344;-0.756475;0.008793168,-0.07804172;-0.0003215782;-0.01758941,-0.08625826;-0.3793998;0.00755327,-0.09484683;-0.7224476;0.07643346,-0.1133805;-0.7108475;-0.02009606,0.01042847;0.3990001;0.02524804,39.59025
+0;0;0,0.003115455;0.1990817;0.01888801,0.007969176;0.4985911;0.03442423,0.1160809;0.3706629;-0.007543024,0.2046818;0.1108668;-0.06282336,0.2421674;-0.1268983;-0.2058708,-0.1065734;0.3600642;0.01798858,-0.1974335;0.09764516;0.0537754,-0.2249516;-0.1808561;0.0448413,0.0679703;0.006408209;-0.04170101,0.09132455;-0.3695965;0.008049067,0.1035253;-0.7107663;0.08521302,0.118708;-0.7590958;0.02493054,-0.07270794;0.001128015;-0.03335089,-0.09611803;-0.37663;0.0005729496,-0.09846595;-0.7189856;0.07328573,-0.1048475;-0.7061414;-0.02502479,0.006215787;0.3986412;0.03178719,0;0;0,0.005358816;0.1992673;0.01624338,0.01367666;0.4989422;0.02626439,0.1112673;0.3694558;-0.03270603,0.1979151;0.189801;-0.2292163,0.1905929;0.08654247;-0.4893779,-0.103941;0.3626946;0.02648263,-0.1684219;0.09173986;0.05521899,-0.1953903;-0.1868816;0.06176016,0.05954062;0.00574194;-0.05312198,0.1047605;-0.3675067;0.002019897,0.1140745;-0.7101324;0.07287788,0.1221344;-0.756475;0.008793168,-0.07804172;-0.0003215782;-0.01758941,-0.08625826;-0.3793998;0.00755327,-0.09484683;-0.7224476;0.07643346,-0.1133805;-0.7108475;-0.02009606,0.01042847;0.3990001;0.02524804,39.61234
+0;0;0,0.003115455;0.1990817;0.01888801,0.007969176;0.4985911;0.03442423,0.1160809;0.3706629;-0.007543024,0.2046818;0.1108668;-0.06282336,0.2421674;-0.1268983;-0.2058708,-0.1065734;0.3600642;0.01798858,-0.1974335;0.09764516;0.0537754,-0.2249516;-0.1808561;0.0448413,0.0679703;0.006408209;-0.04170101,0.09132455;-0.3695965;0.008049067,0.1035253;-0.7107663;0.08521302,0.118708;-0.7590958;0.02493054,-0.07270794;0.001128015;-0.03335089,-0.09611803;-0.37663;0.0005729496,-0.09846595;-0.7189856;0.07328573,-0.1048475;-0.7061414;-0.02502479,0.006215787;0.3986412;0.03178719,0;0;0,0.005508706;0.1992684;0.01617955,0.01415856;0.4989316;0.02624689,0.1127938;0.3700512;-0.03101711,0.1900179;0.1936634;-0.2342997,0.1932435;0.09158439;-0.4950092,-0.1035927;0.362841;0.02651228,-0.1687343;0.09206733;0.05546451,-0.1960441;-0.1865469;0.06078263,0.05955924;0.00574085;-0.05310122,0.1048578;-0.3675247;0.001860823,0.1140711;-0.7100677;0.07313091,0.1223065;-0.7564585;0.009125911,-0.07806182;-0.000329052;-0.01749982,-0.08573145;-0.3794597;0.007017357,-0.09462679;-0.7224009;0.07638776,-0.1124301;-0.7107823;-0.02028263,0.01082517;0.3989923;0.0252395,39.62377
+0;0;0,0.002867994;0.1990578;0.01917738,0.007455753;0.498545;0.03520676,0.1154741;0.3708942;-0.007567775,0.2040378;0.1117655;-0.06595282,0.2408871;-0.1200935;-0.2185422,-0.1070651;0.3600513;0.01894572,-0.1977003;0.09742767;0.05378954,-0.2271757;-0.1808255;0.0434756,0.06782836;0.006687412;-0.04188785,0.09156191;-0.3692981;0.007827315,0.1037882;-0.7104623;0.08501242,0.1191547;-0.7589588;0.02499434,-0.07296398;0.0005055803;-0.03280248,-0.09624711;-0.3773084;0.0005816594,-0.09841535;-0.7197206;0.07303289,-0.1051782;-0.7068589;-0.02525519,0.005774435;0.3985982;0.03241318,0;0;0,0.005648446;0.1992576;0.01626334,0.01453648;0.4989095;0.02645171,0.1127186;0.3702567;-0.03163012,0.1896017;0.1954444;-0.2363974,0.1957798;0.1030172;-0.5006304,-0.1036575;0.3639871;0.02633762,-0.1690986;0.09324685;0.05492374,-0.1965294;-0.1853614;0.05992107,0.05946825;0.005672928;-0.05321038,0.1050001;-0.3675897;0.001579288,0.1140928;-0.7100399;0.07330917,0.1224739;-0.7565612;0.009479366,-0.07809913;-0.0002803188;-0.01733338,-0.08550262;-0.3793783;0.007763878,-0.09453259;-0.7222481;0.07746848,-0.1124835;-0.7106234;-0.01917579,0.01112551;0.398973;0.02541554,39.64585
+0;0;0,0.002867994;0.1990578;0.01917738,0.007455753;0.498545;0.03520676,0.1154741;0.3708942;-0.007567775,0.2040378;0.1117655;-0.06595282,0.2408871;-0.1200935;-0.2185422,-0.1070651;0.3600513;0.01894572,-0.1977003;0.09742767;0.05378954,-0.2271757;-0.1808255;0.0434756,0.06782836;0.006687412;-0.04188785,0.09156191;-0.3692981;0.007827315,0.1037882;-0.7104623;0.08501242,0.1191547;-0.7589588;0.02499434,-0.07296398;0.0005055803;-0.03280248,-0.09624711;-0.3773084;0.0005816594,-0.09841535;-0.7197206;0.07303289,-0.1051782;-0.7068589;-0.02525519,0.005774435;0.3985982;0.03241318,0;0;0,0.005648446;0.1992576;0.01626334,0.01453648;0.4989095;0.02645171,0.1127186;0.3702567;-0.03163012,0.1896017;0.1954444;-0.2363974,0.1957798;0.1030172;-0.5006304,-0.1036575;0.3639871;0.02633762,-0.1690986;0.09324685;0.05492374,-0.1965294;-0.1853614;0.05992107,0.05946825;0.005672928;-0.05321038,0.1050001;-0.3675897;0.001579288,0.1140928;-0.7100399;0.07330917,0.1224739;-0.7565612;0.009479366,-0.07809913;-0.0002803188;-0.01733338,-0.08550262;-0.3793783;0.007763878,-0.09453259;-0.7222481;0.07746848,-0.1124835;-0.7106234;-0.01917579,0.01112551;0.398973;0.02541554,39.65725
+0;0;0,0.002867994;0.1990578;0.01917738,0.007455753;0.498545;0.03520676,0.1154741;0.3708942;-0.007567775,0.2040378;0.1117655;-0.06595282,0.2408871;-0.1200935;-0.2185422,-0.1070651;0.3600513;0.01894572,-0.1977003;0.09742767;0.05378954,-0.2271757;-0.1808255;0.0434756,0.06782836;0.006687412;-0.04188785,0.09156191;-0.3692981;0.007827315,0.1037882;-0.7104623;0.08501242,0.1191547;-0.7589588;0.02499434,-0.07296398;0.0005055803;-0.03280248,-0.09624711;-0.3773084;0.0005816594,-0.09841535;-0.7197206;0.07303289,-0.1051782;-0.7068589;-0.02525519,0.005774435;0.3985982;0.03241318,0;0;0,0.005648446;0.1992576;0.01626334,0.01453648;0.4989095;0.02645171,0.1127186;0.3702567;-0.03163012,0.1896017;0.1954444;-0.2363974,0.1957798;0.1030172;-0.5006304,-0.1036575;0.3639871;0.02633762,-0.1690986;0.09324685;0.05492374,-0.1965294;-0.1853614;0.05992107,0.05946825;0.005672928;-0.05321038,0.1050001;-0.3675897;0.001579288,0.1140928;-0.7100399;0.07330917,0.1224739;-0.7565612;0.009479366,-0.07809913;-0.0002803188;-0.01733338,-0.08550262;-0.3793783;0.007763878,-0.09453259;-0.7222481;0.07746848,-0.1124835;-0.7106234;-0.01917579,0.01112551;0.398973;0.02541554,39.67936
+0;0;0,0.002783173;0.199051;0.01925982,0.007278344;0.4985302;0.03546472,0.1152328;0.3707743;-0.007539015,0.2040343;0.1128117;-0.07054365,0.2378053;-0.1131568;-0.2324008,-0.1073496;0.3602487;0.0196598,-0.1987495;0.09784237;0.0541416,-0.2260561;-0.1805995;0.04298487,0.06779172;0.006762545;-0.04193506,0.09147605;-0.3692211;0.007818073,0.1034853;-0.7104396;0.08479641,0.1185008;-0.758256;0.0238115,-0.07299574;0.0003980446;-0.03273322,-0.09640092;-0.3774124;0.0006053895,-0.09832024;-0.7198335;0.07302173,-0.1053006;-0.706967;-0.02525195,0.005622054;0.3985847;0.03261159,0;0;0,0.005775578;0.1992342;0.01650405,0.01472575;0.4988679;0.02710724,0.1127107;0.3704696;-0.03155777,0.1797542;0.1989771;-0.2424973,0.2136501;0.08217385;-0.4947037,-0.1037792;0.3650484;0.02730563,-0.168966;0.0941332;0.054794,-0.1967622;-0.1844482;0.05924493,0.05934909;0.005649933;-0.05334571,0.1049388;-0.367542;0.001875393,0.1140149;-0.7098936;0.07407688,0.1222981;-0.7566217;0.01048286,-0.07816437;-0.0003061428;-0.01703637,-0.08555854;-0.3793714;0.008553045,-0.09445515;-0.7222251;0.07835432,-0.1126357;-0.710584;-0.01825012,0.01133032;0.3989318;0.02599161,39.69086
+0;0;0,0.002783173;0.199051;0.01925982,0.007278344;0.4985302;0.03546472,0.1152328;0.3707743;-0.007539015,0.2040343;0.1128117;-0.07054365,0.2378053;-0.1131568;-0.2324008,-0.1073496;0.3602487;0.0196598,-0.1987495;0.09784237;0.0541416,-0.2260561;-0.1805995;0.04298487,0.06779172;0.006762545;-0.04193506,0.09147605;-0.3692211;0.007818073,0.1034853;-0.7104396;0.08479641,0.1185008;-0.758256;0.0238115,-0.07299574;0.0003980446;-0.03273322,-0.09640092;-0.3774124;0.0006053895,-0.09832024;-0.7198335;0.07302173,-0.1053006;-0.706967;-0.02525195,0.005622054;0.3985847;0.03261159,0;0;0,0.005775578;0.1992342;0.01650405,0.01472575;0.4988679;0.02710724,0.1127107;0.3704696;-0.03155777,0.1797542;0.1989771;-0.2424973,0.2136501;0.08217385;-0.4947037,-0.1037792;0.3650484;0.02730563,-0.168966;0.0941332;0.054794,-0.1967622;-0.1844482;0.05924493,0.05934909;0.005649933;-0.05334571,0.1049388;-0.367542;0.001875393,0.1140149;-0.7098936;0.07407688,0.1222981;-0.7566217;0.01048286,-0.07816437;-0.0003061428;-0.01703637,-0.08555854;-0.3793714;0.008553045,-0.09445515;-0.7222251;0.07835432,-0.1126357;-0.710584;-0.01825012,0.01133032;0.3989318;0.02599161,39.71283
+0;0;0,0.002783173;0.199051;0.01925982,0.007278344;0.4985302;0.03546472,0.1152328;0.3707743;-0.007539015,0.2040343;0.1128117;-0.07054365,0.2378053;-0.1131568;-0.2324008,-0.1073496;0.3602487;0.0196598,-0.1987495;0.09784237;0.0541416,-0.2260561;-0.1805995;0.04298487,0.06779172;0.006762545;-0.04193506,0.09147605;-0.3692211;0.007818073,0.1034853;-0.7104396;0.08479641,0.1185008;-0.758256;0.0238115,-0.07299574;0.0003980446;-0.03273322,-0.09640092;-0.3774124;0.0006053895,-0.09832024;-0.7198335;0.07302173,-0.1053006;-0.706967;-0.02525195,0.005622054;0.3985847;0.03261159,0;0;0,0.005925394;0.1992189;0.01663463,0.01500835;0.4988388;0.02747679,0.1127932;0.3705408;-0.03159329,0.1876923;0.1937967;-0.2354355,0.2202914;0.1130261;-0.5015434,-0.1035954;0.3652961;0.0277291,-0.1692291;0.09449008;0.0552303,-0.1968874;-0.1841131;0.05914097,0.05917844;0.005576096;-0.05354268,0.104774;-0.367519;0.002324175,0.1140416;-0.7098281;0.0747022,0.1220619;-0.7566734;0.01121608,-0.07823721;-0.0002674276;-0.01669929,-0.08536239;-0.379405;0.007875327,-0.09437194;-0.7220892;0.07848932,-0.1126857;-0.7104377;-0.01809194,0.01159378;0.3989037;0.02632229,39.72441
+0;0;0,0.00268462;0.1990396;0.01939177,0.007041192;0.498506;0.03587052,0.1148702;0.3704278;-0.007460676,0.202571;0.1126934;-0.07289402,0.2363834;-0.1067443;-0.2434925,-0.1074044;0.3598238;0.01995395,-0.1987387;0.09736595;0.0542165,-0.2268985;-0.1809856;0.04292701,0.06775095;0.006894676;-0.04197942,0.09141514;-0.3690939;0.007745665,0.1034084;-0.7103279;0.08465786,0.1178701;-0.7574278;0.02263782,-0.07309134;4.584495E-05;-0.03252161,-0.09652959;-0.3777848;0.0005639195,-0.09800777;-0.7202623;0.07272329,-0.1050827;-0.7073801;-0.02554639,0.005427881;0.3985625;0.03292263,0;0;0,0.005985281;0.199204;0.0167912,0.01509825;0.4988148;0.02782159,0.1126022;0.3705546;-0.0317947,0.1895333;0.1908054;-0.2322238,0.2169003;0.1225381;-0.5023916,-0.1037241;0.3660566;0.02800742,-0.1694968;0.09520572;0.05472317,-0.1972759;-0.1833819;0.05887892,0.05903718;0.005611963;-0.05369468,0.1046718;-0.3674166;0.00258312,0.1139499;-0.7096796;0.07517749,0.1217444;-0.7559528;0.01097745,-0.0782954;-0.0003410548;-0.01642295,-0.08554809;-0.3794819;0.008065319,-0.09440248;-0.722095;0.07904305,-0.1128602;-0.7104369;-0.01751205,0.01169156;0.3988798;0.02664103,39.74644
+0;0;0,0.00268462;0.1990396;0.01939177,0.007041192;0.498506;0.03587052,0.1148702;0.3704278;-0.007460676,0.202571;0.1126934;-0.07289402,0.2363834;-0.1067443;-0.2434925,-0.1074044;0.3598238;0.01995395,-0.1987387;0.09736595;0.0542165,-0.2268985;-0.1809856;0.04292701,0.06775095;0.006894676;-0.04197942,0.09141514;-0.3690939;0.007745665,0.1034084;-0.7103279;0.08465786,0.1178701;-0.7574278;0.02263782,-0.07309134;4.584495E-05;-0.03252161,-0.09652959;-0.3777848;0.0005639195,-0.09800777;-0.7202623;0.07272329,-0.1050827;-0.7073801;-0.02554639,0.005427881;0.3985625;0.03292263,0;0;0,0.005985281;0.199204;0.0167912,0.01509825;0.4988148;0.02782159,0.1126022;0.3705546;-0.0317947,0.1895333;0.1908054;-0.2322238,0.2169003;0.1225381;-0.5023916,-0.1037241;0.3660566;0.02800742,-0.1694968;0.09520572;0.05472317,-0.1972759;-0.1833819;0.05887892,0.05903718;0.005611963;-0.05369468,0.1046718;-0.3674166;0.00258312,0.1139499;-0.7096796;0.07517749,0.1217444;-0.7559528;0.01097745,-0.0782954;-0.0003410548;-0.01642295,-0.08554809;-0.3794819;0.008065319,-0.09440248;-0.722095;0.07904305,-0.1128602;-0.7104369;-0.01751205,0.01169156;0.3988798;0.02664103,39.75785
+0;0;0,0.00268462;0.1990396;0.01939177,0.007041192;0.498506;0.03587052,0.1148702;0.3704278;-0.007460676,0.202571;0.1126934;-0.07289402,0.2363834;-0.1067443;-0.2434925,-0.1074044;0.3598238;0.01995395,-0.1987387;0.09736595;0.0542165,-0.2268985;-0.1809856;0.04292701,0.06775095;0.006894676;-0.04197942,0.09141514;-0.3690939;0.007745665,0.1034084;-0.7103279;0.08465786,0.1178701;-0.7574278;0.02263782,-0.07309134;4.584495E-05;-0.03252161,-0.09652959;-0.3777848;0.0005639195,-0.09800777;-0.7202623;0.07272329,-0.1050827;-0.7073801;-0.02554639,0.005427881;0.3985625;0.03292263,0;0;0,0.006070935;0.1991878;0.0169523,0.01528072;0.4987821;0.02830919,0.1125354;0.3706624;-0.0318685,0.1870433;0.1884694;-0.2310024,0.1854761;0.1383989;-0.5064846,-0.1035534;0.3660487;0.02822592,-0.1698939;0.09538969;0.05547731,-0.197351;-0.1832335;0.05937646,0.05905436;0.005498637;-0.0536875,0.1047549;-0.3674142;0.003298692,0.1141097;-0.7096825;0.07585848,0.1221614;-0.7561353;0.01190428,-0.07831757;-0.0001841824;-0.01631946,-0.08560205;-0.379311;0.008374929,-0.09423412;-0.7218569;0.07970354,-0.1128228;-0.7101848;-0.0168291,0.0118712;0.3988481;0.02705761,39.77987
+0;0;0,0.002573907;0.1990197;0.01960951,0.006786354;0.4984639;0.03652653,0.1145163;0.370463;-0.007388461,0.2016243;0.1131381;-0.07518288,0.2363935;-0.1015745;-0.2515053,-0.1072921;0.3593096;0.01914058,-0.1997143;0.09744903;0.05501777,-0.2265508;-0.1810333;0.04373253,0.06770203;0.006987515;-0.04204296,0.09134368;-0.3690056;0.007658549,0.1031968;-0.7101696;0.08490273,0.1171803;-0.7570792;0.02253791,-0.0732192;-0.0001013545;-0.03223258,-0.09671332;-0.3779444;0.0006712265,-0.09825023;-0.7204179;0.07284832,-0.1051646;-0.707525;-0.02543464,0.005215998;0.3985243;0.03342826,0;0;0,0.006070935;0.1991878;0.0169523,0.01528072;0.4987821;0.02830919,0.1125354;0.3706624;-0.0318685,0.1870433;0.1884694;-0.2310024,0.1854761;0.1383989;-0.5064846,-0.1035534;0.3660487;0.02822592,-0.1698939;0.09538969;0.05547731,-0.197351;-0.1832335;0.05937646,0.05905436;0.005498637;-0.0536875,0.1047549;-0.3674142;0.003298692,0.1141097;-0.7096825;0.07585848,0.1221614;-0.7561353;0.01190428,-0.07831757;-0.0001841824;-0.01631946,-0.08560205;-0.379311;0.008374929,-0.09423412;-0.7218569;0.07970354,-0.1128228;-0.7101848;-0.0168291,0.0118712;0.3988481;0.02705761,39.80227
+0;0;0,0.002573907;0.1990197;0.01960951,0.006786354;0.4984639;0.03652653,0.1145163;0.370463;-0.007388461,0.2016243;0.1131381;-0.07518288,0.2363935;-0.1015745;-0.2515053,-0.1072921;0.3593096;0.01914058,-0.1997143;0.09744903;0.05501777,-0.2265508;-0.1810333;0.04373253,0.06770203;0.006987515;-0.04204296,0.09134368;-0.3690056;0.007658549,0.1031968;-0.7101696;0.08490273,0.1171803;-0.7570792;0.02253791,-0.0732192;-0.0001013545;-0.03223258,-0.09671332;-0.3779444;0.0006712265,-0.09825023;-0.7204179;0.07284832,-0.1051646;-0.707525;-0.02543464,0.005215998;0.3985243;0.03342826,0;0;0,0.006070935;0.1991878;0.0169523,0.01528072;0.4987821;0.02830919,0.1125354;0.3706624;-0.0318685,0.1870433;0.1884694;-0.2310024,0.1854761;0.1383989;-0.5064846,-0.1035534;0.3660487;0.02822592,-0.1698939;0.09538969;0.05547731,-0.197351;-0.1832335;0.05937646,0.05905436;0.005498637;-0.0536875,0.1047549;-0.3674142;0.003298692,0.1141097;-0.7096825;0.07585848,0.1221614;-0.7561353;0.01190428,-0.07831757;-0.0001841824;-0.01631946,-0.08560205;-0.379311;0.008374929,-0.09423412;-0.7218569;0.07970354,-0.1128228;-0.7101848;-0.0168291,0.0118712;0.3988481;0.02705761,39.81341
+0;0;0,0.002573907;0.1990197;0.01960951,0.006786354;0.4984639;0.03652653,0.1145163;0.370463;-0.007388461,0.2016243;0.1131381;-0.07518288,0.2363935;-0.1015745;-0.2515053,-0.1072921;0.3593096;0.01914058,-0.1997143;0.09744903;0.05501777,-0.2265508;-0.1810333;0.04373253,0.06770203;0.006987515;-0.04204296,0.09134368;-0.3690056;0.007658549,0.1031968;-0.7101696;0.08490273,0.1171803;-0.7570792;0.02253791,-0.0732192;-0.0001013545;-0.03223258,-0.09671332;-0.3779444;0.0006712265,-0.09825023;-0.7204179;0.07284832,-0.1051646;-0.707525;-0.02543464,0.005215998;0.3985243;0.03342826,0;0;0,0.006196728;0.1991782;0.0170188,0.01558959;0.498757;0.02861632,0.1123802;0.3704534;-0.03226127,0.1847143;0.1864276;-0.2305093,0.2282917;0.1330718;-0.5019023,-0.1033316;0.3662217;0.02872662,-0.1699877;0.09566531;0.05622613,-0.1979019;-0.1829142;0.05999966,0.05916704;0.005419605;-0.05357135,0.1048792;-0.3674391;0.003759246,0.1143112;-0.70968;0.07643811,0.1221681;-0.7561156;0.01243913,-0.0782776;-2.382806E-05;-0.01651113,-0.08532242;-0.3790989;0.009031871,-0.09396461;-0.7216437;0.08036488,-0.1128184;-0.709967;-0.01611722,0.0121457;0.3988249;0.02730473,39.82494
+0;0;0,0.002405277;0.1990074;0.01975503,0.006293425;0.4984423;0.03690911,0.1139827;0.370334;-0.007418722,0.2011531;0.1141933;-0.07948267,0.236166;-0.09438649;-0.2629727,-0.107833;0.3595209;0.0201075,-0.1993365;0.09714988;0.05458328,-0.2247018;-0.1814602;0.04305051,0.06760748;0.00715644;-0.0421665,0.0910205;-0.3688546;0.00750757,0.1030389;-0.7100258;0.08469433,0.1168097;-0.7569166;0.02225901,-0.07335332;-0.0004357233;-0.03192335,-0.09710903;-0.3783036;0.0005041361,-0.09857795;-0.7208055;0.07254764,-0.1057848;-0.7079076;-0.02571518,0.004837373;0.3985032;0.03373707,0;0;0,0.006244957;0.1991811;0.01696773,0.01574888;0.4987545;0.02860818,0.1122759;0.3703279;-0.03262429,0.1537966;0.1771442;-0.231008,0.2220163;0.1322836;-0.4988393,-0.1033381;0.3667504;0.02894703,-0.1701158;0.09620044;0.05621398,-0.1980419;-0.1823761;0.06011495,0.05907272;0.005360042;-0.05368131,0.104802;-0.3674582;0.003898162,0.1144104;-0.7096641;0.07671852,0.1220804;-0.7565975;0.01329585,-0.07831308;1.282232E-05;-0.01634197,-0.08529049;-0.3791378;0.008074004,-0.0939197;-0.7215198;0.08018538,-0.1129268;-0.7098451;-0.01626626,0.01228448;0.3988232;0.02729004,39.84689
+0;0;0,0.002405277;0.1990074;0.01975503,0.006293425;0.4984423;0.03690911,0.1139827;0.370334;-0.007418722,0.2011531;0.1141933;-0.07948267,0.236166;-0.09438649;-0.2629727,-0.107833;0.3595209;0.0201075,-0.1993365;0.09714988;0.05458328,-0.2247018;-0.1814602;0.04305051,0.06760748;0.00715644;-0.0421665,0.0910205;-0.3688546;0.00750757,0.1030389;-0.7100258;0.08469433,0.1168097;-0.7569166;0.02225901,-0.07335332;-0.0004357233;-0.03192335,-0.09710903;-0.3783036;0.0005041361,-0.09857795;-0.7208055;0.07254764,-0.1057848;-0.7079076;-0.02571518,0.004837373;0.3985032;0.03373707,0;0;0,0.006244957;0.1991811;0.01696773,0.01574888;0.4987545;0.02860818,0.1122759;0.3703279;-0.03262429,0.1537966;0.1771442;-0.231008,0.2220163;0.1322836;-0.4988393,-0.1033381;0.3667504;0.02894703,-0.1701158;0.09620044;0.05621398,-0.1980419;-0.1823761;0.06011495,0.05907272;0.005360042;-0.05368131,0.104802;-0.3674582;0.003898162,0.1144104;-0.7096641;0.07671852,0.1220804;-0.7565975;0.01329585,-0.07831308;1.282232E-05;-0.01634197,-0.08529049;-0.3791378;0.008074004,-0.0939197;-0.7215198;0.08018538,-0.1129268;-0.7098451;-0.01626626,0.01228448;0.3988232;0.02729004,39.8585
+0;0;0,0.002405277;0.1990074;0.01975503,0.006293425;0.4984423;0.03690911,0.1139827;0.370334;-0.007418722,0.2011531;0.1141933;-0.07948267,0.236166;-0.09438649;-0.2629727,-0.107833;0.3595209;0.0201075,-0.1993365;0.09714988;0.05458328,-0.2247018;-0.1814602;0.04305051,0.06760748;0.00715644;-0.0421665,0.0910205;-0.3688546;0.00750757,0.1030389;-0.7100258;0.08469433,0.1168097;-0.7569166;0.02225901,-0.07335332;-0.0004357233;-0.03192335,-0.09710903;-0.3783036;0.0005041361,-0.09857795;-0.7208055;0.07254764,-0.1057848;-0.7079076;-0.02571518,0.004837373;0.3985032;0.03373707,0;0;0,0.006630791;0.1991749;0.0168937,0.01650025;0.4987413;0.02836939,0.1125164;0.3701321;-0.03329112,0.1632312;0.1798993;-0.2323878,0.207896;0.117098;-0.5015737,-0.1028881;0.3673147;0.02881188,-0.1697053;0.09677473;0.05608092,-0.1972449;-0.1818448;0.05965125,0.05901042;0.00525414;-0.05376025,0.1054024;-0.3675105;0.003635544,0.1151168;-0.7096766;0.07662892,0.1227367;-0.7568107;0.01344454,-0.07835598;0.0001537068;-0.01613433,-0.08482394;-0.3790202;0.008058099,-0.09314208;-0.721382;0.08030211,-0.1122652;-0.7097088;-0.0161263,0.01289194;0.3988139;0.02714328,39.88049
+0;0;0,0.002494777;0.1990096;0.0197222,0.006589436;0.4984491;0.03674363,0.114219;0.3703841;-0.007549435,0.2027941;0.1171683;-0.0877756,0.2325705;-0.08646961;-0.2776307,-0.1076745;0.3596499;0.02023611,-0.1986603;0.09705541;0.05437911,-0.2230964;-0.1816406;0.04291616,0.06753221;0.007384854;-0.04224765,0.09146982;-0.3686286;0.007157594,0.1035277;-0.7098238;0.0842315,0.116629;-0.7573481;0.02243874,-0.07334174;-0.0005966902;-0.03194734,-0.09687515;-0.3784788;0.0004760921,-0.09819402;-0.7210526;0.07218004,-0.1054664;-0.7081544;-0.026078,0.005067616;0.3985095;0.03362016,0;0;0,0.006630791;0.1991749;0.0168937,0.01650025;0.4987413;0.02836939,0.1125164;0.3701321;-0.03329112,0.1632312;0.1798993;-0.2323878,0.207896;0.117098;-0.5015737,-0.1028881;0.3673147;0.02881188,-0.1697053;0.09677473;0.05608092,-0.1972449;-0.1818448;0.05965125,0.05901042;0.00525414;-0.05376025,0.1054024;-0.3675105;0.003635544,0.1151168;-0.7096766;0.07662892,0.1227367;-0.7568107;0.01344454,-0.07835598;0.0001537068;-0.01613433,-0.08482394;-0.3790202;0.008058099,-0.09314208;-0.721382;0.08030211,-0.1122652;-0.7097088;-0.0161263,0.01289194;0.3988139;0.02714328,39.90273
+0;0;0,0.002494777;0.1990096;0.0197222,0.006589436;0.4984491;0.03674363,0.114219;0.3703841;-0.007549435,0.2027941;0.1171683;-0.0877756,0.2325705;-0.08646961;-0.2776307,-0.1076745;0.3596499;0.02023611,-0.1986603;0.09705541;0.05437911,-0.2230964;-0.1816406;0.04291616,0.06753221;0.007384854;-0.04224765,0.09146982;-0.3686286;0.007157594,0.1035277;-0.7098238;0.0842315,0.116629;-0.7573481;0.02243874,-0.07334174;-0.0005966902;-0.03194734,-0.09687515;-0.3784788;0.0004760921,-0.09819402;-0.7210526;0.07218004,-0.1054664;-0.7081544;-0.026078,0.005067616;0.3985095;0.03362016,0;0;0,0.006759196;0.199153;0.01709935,0.01680287;0.4987;0.02891668,0.1126837;0.3700676;-0.03301026,0.1656084;0.186675;-0.2378666,0.2251126;0.1425429;-0.5078881,-0.1026639;0.3674657;0.0293102,-0.1695993;0.0969595;0.05662433,-0.1969141;-0.1816755;0.06067904,0.05923668;0.00528013;-0.05350827,0.1056661;-0.367491;0.003814958,0.1156633;-0.7095143;0.0774366,0.1228445;-0.7566421;0.0141932,-0.0782454;0.0002132953;-0.01666166,-0.08470406;-0.3788587;0.0090815,-0.09309895;-0.7212168;0.08133435,-0.1122544;-0.7095296;-0.01509029,0.01316688;0.3987749;0.02758912,39.92548
+0;0;0,0.002494777;0.1990096;0.0197222,0.006589436;0.4984491;0.03674363,0.114219;0.3703841;-0.007549435,0.2027941;0.1171683;-0.0877756,0.2325705;-0.08646961;-0.2776307,-0.1076745;0.3596499;0.02023611,-0.1986603;0.09705541;0.05437911,-0.2230964;-0.1816406;0.04291616,0.06753221;0.007384854;-0.04224765,0.09146982;-0.3686286;0.007157594,0.1035277;-0.7098238;0.0842315,0.116629;-0.7573481;0.02243874,-0.07334174;-0.0005966902;-0.03194734,-0.09687515;-0.3784788;0.0004760921,-0.09819402;-0.7210526;0.07218004,-0.1054664;-0.7081544;-0.026078,0.005067616;0.3985095;0.03362016,0;0;0,0.005869823;0.1991333;0.01764869,0.01153767;0.4986804;0.03238703,0.1095263;0.370488;-0.03087096,0.1449453;0.1828982;-0.2357015,0.2202084;0.1292041;-0.4999976,-0.1057317;0.3664663;0.02997952,-0.1728536;0.09598991;0.05713014,-0.1997026;-0.1826941;0.06091446,0.0592433;0.005166043;-0.05351208,0.1053981;-0.3675384;0.004462872,0.1156122;-0.7095275;0.07821344,0.123214;-0.75681;0.0152084,-0.07825785;0.0003672671;-0.0166004,-0.08481125;-0.3786649;0.009698965,-0.09301227;-0.720977;0.08219178,-0.1122165;-0.7092461;-0.01423145,0.009848954;0.3987313;0.02968273,39.94745
+0;0;0,0.002452591;0.1989997;0.01982723,0.006581996;0.498432;0.0369623,0.1141542;0.3704477;-0.007514864,0.2019503;0.1191274;-0.09429005,0.2350381;-0.07771833;-0.2906493,-0.1073696;0.3589833;0.01956083,-0.1994013;0.09696048;0.05525714,-0.2229967;-0.181803;0.04367346,0.06750944;0.007372261;-0.04228624,0.09132234;-0.3686173;0.007360369,0.1032237;-0.7097916;0.08455148,0.1188654;-0.7579585;0.02417533,-0.07333921;-0.0005385864;-0.03195419,-0.09676407;-0.3784342;0.0003899634,-0.0982253;-0.721072;0.07178506,-0.1053518;-0.7081703;-0.02648427,0.005040179;0.3984936;0.03380762,0;0;0,0.005869823;0.1991333;0.01764869,0.01153767;0.4986804;0.03238703,0.1095263;0.370488;-0.03087096,0.1449453;0.1828982;-0.2357015,0.2202084;0.1292041;-0.4999976,-0.1057317;0.3664663;0.02997952,-0.1728536;0.09598991;0.05713014,-0.1997026;-0.1826941;0.06091446,0.0592433;0.005166043;-0.05351208,0.1053981;-0.3675384;0.004462872,0.1156122;-0.7095275;0.07821344,0.123214;-0.75681;0.0152084,-0.07825785;0.0003672671;-0.0166004,-0.08481125;-0.3786649;0.009698965,-0.09301227;-0.720977;0.08219178,-0.1122165;-0.7092461;-0.01423145,0.009848954;0.3987313;0.02968273,39.95891
+0;0;0,0.002452591;0.1989997;0.01982723,0.006581996;0.498432;0.0369623,0.1141542;0.3704477;-0.007514864,0.2019503;0.1191274;-0.09429005,0.2350381;-0.07771833;-0.2906493,-0.1073696;0.3589833;0.01956083,-0.1994013;0.09696048;0.05525714,-0.2229967;-0.181803;0.04367346,0.06750944;0.007372261;-0.04228624,0.09132234;-0.3686173;0.007360369,0.1032237;-0.7097916;0.08455148,0.1188654;-0.7579585;0.02417533,-0.07333921;-0.0005385864;-0.03195419,-0.09676407;-0.3784342;0.0003899634,-0.0982253;-0.721072;0.07178506,-0.1053518;-0.7081703;-0.02648427,0.005040179;0.3984936;0.03380762,0;0;0,0.006017778;0.1991231;0.0177136,0.0124528;0.4986666;0.03214286,0.1099077;0.3704783;-0.03106507,0.148709;0.1903021;-0.2418517,0.2230021;0.1317779;-0.5053958,-0.1052888;0.3665769;0.02975224,-0.1726262;0.09614837;0.05684557,-0.1992612;-0.1825556;0.06067659,0.05921497;0.005109517;-0.05354885,0.105304;-0.3675786;0.004583232,0.1157183;-0.7095128;0.07855996,0.1231778;-0.7567814;0.01552088,-0.07827421;0.0004335556;-0.01652153,-0.08459483;-0.3785941;0.009898759,-0.09278517;-0.720916;0.08234647,-0.1119498;-0.7091808;-0.01408545,0.01032604;0.3987204;0.02964634,39.98095
+0;0;0,0.002452591;0.1989997;0.01982723,0.006581996;0.498432;0.0369623,0.1141542;0.3704477;-0.007514864,0.2019503;0.1191274;-0.09429005,0.2350381;-0.07771833;-0.2906493,-0.1073696;0.3589833;0.01956083,-0.1994013;0.09696048;0.05525714,-0.2229967;-0.181803;0.04367346,0.06750944;0.007372261;-0.04228624,0.09132234;-0.3686173;0.007360369,0.1032237;-0.7097916;0.08455148,0.1188654;-0.7579585;0.02417533,-0.07333921;-0.0005385864;-0.03195419,-0.09676407;-0.3784342;0.0003899634,-0.0982253;-0.721072;0.07178506,-0.1053518;-0.7081703;-0.02648427,0.005040179;0.3984936;0.03380762,0;0;0,0.006017778;0.1991231;0.0177136,0.0124528;0.4986666;0.03214286,0.1099077;0.3704783;-0.03106507,0.148709;0.1903021;-0.2418517,0.2230021;0.1317779;-0.5053958,-0.1052888;0.3665769;0.02975224,-0.1726262;0.09614837;0.05684557,-0.1992612;-0.1825556;0.06067659,0.05921497;0.005109517;-0.05354885,0.105304;-0.3675786;0.004583232,0.1157183;-0.7095128;0.07855996,0.1231778;-0.7567814;0.01552088,-0.07827421;0.0004335556;-0.01652153,-0.08459483;-0.3785941;0.009898759,-0.09278517;-0.720916;0.08234647,-0.1119498;-0.7091808;-0.01408545,0.01032604;0.3987204;0.02964634,39.9925
+0;0;0,0.00231549;0.198984;0.02000024,0.006304786;0.4984041;0.03737555,0.1138165;0.3705558;-0.007528678,0.2015868;0.1207531;-0.0986054,0.237581;-0.06943275;-0.3009263,-0.1075592;0.3587987;0.01995899,-0.1997009;0.09690499;0.05631253,-0.2214659;-0.1820058;0.04469131,0.06746007;0.007468321;-0.04234812,0.09130833;-0.3685326;0.007195719,0.1031729;-0.7096981;0.08443123,0.09344523;-0.6966124;-0.0136467,-0.07331728;-0.0005885946;-0.03200358,-0.09644762;-0.3785014;0.0003521331,-0.09779053;-0.7211971;0.07147074,-0.1050958;-0.7082811;-0.02678796,0.004802267;0.3984676;0.03414655,0;0;0,0.006154997;0.1991392;0.01748425,0.01360501;0.4986982;0.03094268,0.1122095;0.3709731;-0.02927179,0.1749144;0.1934444;-0.2365196,0.2237754;0.1571259;-0.5098208,-0.1045069;0.3662768;0.0289072,-0.1719119;0.0959582;0.05691415,-0.1961111;-0.1829588;0.06135621,0.05936607;0.005082709;-0.05338385,0.1054362;-0.3676379;0.004554767,0.1160336;-0.7094803;0.07892847,0.1232197;-0.7568691;0.01600506,-0.07825077;0.0004757691;-0.016631,-0.08397935;-0.3785316;0.01021369,-0.0923031;-0.7207654;0.08306094,-0.1103611;-0.7090226;-0.01358576,0.01101526;0.3987519;0.02893526,40.01445
+0;0;0,0.00231549;0.198984;0.02000024,0.006304786;0.4984041;0.03737555,0.1138165;0.3705558;-0.007528678,0.2015868;0.1207531;-0.0986054,0.237581;-0.06943275;-0.3009263,-0.1075592;0.3587987;0.01995899,-0.1997009;0.09690499;0.05631253,-0.2214659;-0.1820058;0.04469131,0.06746007;0.007468321;-0.04234812,0.09130833;-0.3685326;0.007195719,0.1031729;-0.7096981;0.08443123,0.09344523;-0.6966124;-0.0136467,-0.07331728;-0.0005885946;-0.03200358,-0.09644762;-0.3785014;0.0003521331,-0.09779053;-0.7211971;0.07147074,-0.1050958;-0.7082811;-0.02678796,0.004802267;0.3984676;0.03414655,0;0;0,0.006154997;0.1991392;0.01748425,0.01360501;0.4986982;0.03094268,0.1122095;0.3709731;-0.02927179,0.1749144;0.1934444;-0.2365196,0.2237754;0.1571259;-0.5098208,-0.1045069;0.3662768;0.0289072,-0.1719119;0.0959582;0.05691415,-0.1961111;-0.1829588;0.06135621,0.05936607;0.005082709;-0.05338385,0.1054362;-0.3676379;0.004554767,0.1160336;-0.7094803;0.07892847,0.1232197;-0.7568691;0.01600506,-0.07825077;0.0004757691;-0.016631,-0.08397935;-0.3785316;0.01021369,-0.0923031;-0.7207654;0.08306094,-0.1103611;-0.7090226;-0.01358576,0.01101526;0.3987519;0.02893526,40.03685
+0;0;0,0.002207713;0.1989917;0.01993527,0.006110712;0.4984204;0.03718092,0.1136634;0.3707901;-0.007777803,0.2015532;0.1232251;-0.104664,0.2397678;-0.06096242;-0.3120636,-0.1076938;0.3584788;0.02048096,-0.1993874;0.09629327;0.05585043,-0.2207924;-0.1826465;0.04425671,0.06735677;0.007499377;-0.04250676,0.09110692;-0.3685316;0.006855644,0.1032018;-0.7097588;0.08378197,0.09321377;-0.6966771;-0.01426911,-0.07340728;-0.0005937418;-0.0317965,-0.0963642;-0.378535;0.0003499389,-0.09766574;-0.7213576;0.07085525,-0.1052329;-0.7084447;-0.02738309,0.004631761;0.398482;0.03399843,0;0;0,0.006311283;0.1991401;0.01741767,0.01440663;0.4986928;0.03059639,0.1123126;0.3706482;-0.03009779,0.1760093;0.1930429;-0.2369772,0.2080164;0.1794546;-0.5148097,-0.1033346;0.3643092;0.02548368,-0.169322;0.09405556;0.05724286,-0.1939953;-0.184823;0.06148273,0.0593264;0.005196169;-0.05341703,0.1056917;-0.3674219;0.004944496,0.116168;-0.7091225;0.0799838,0.1235269;-0.7573221;0.01809132,-0.07829446;0.0003402743;-0.01642748,-0.08383831;-0.3786354;0.01089831,-0.09203308;-0.7208514;0.0838442,-0.10928;-0.7090943;-0.0129532,0.01157075;0.3987504;0.02873533,40.0593
+0;0;0,0.002207713;0.1989917;0.01993527,0.006110712;0.4984204;0.03718092,0.1136634;0.3707901;-0.007777803,0.2015532;0.1232251;-0.104664,0.2397678;-0.06096242;-0.3120636,-0.1076938;0.3584788;0.02048096,-0.1993874;0.09629327;0.05585043,-0.2207924;-0.1826465;0.04425671,0.06735677;0.007499377;-0.04250676,0.09110692;-0.3685316;0.006855644,0.1032018;-0.7097588;0.08378197,0.09321377;-0.6966771;-0.01426911,-0.07340728;-0.0005937418;-0.0317965,-0.0963642;-0.378535;0.0003499389,-0.09766574;-0.7213576;0.07085525,-0.1052329;-0.7084447;-0.02738309,0.004631761;0.398482;0.03399843,0;0;0,0.006311283;0.1991401;0.01741767,0.01440663;0.4986928;0.03059639,0.1123126;0.3706482;-0.03009779,0.1760093;0.1930429;-0.2369772,0.2080164;0.1794546;-0.5148097,-0.1033346;0.3643092;0.02548368,-0.169322;0.09405556;0.05724286,-0.1939953;-0.184823;0.06148273,0.0593264;0.005196169;-0.05341703,0.1056917;-0.3674219;0.004944496,0.116168;-0.7091225;0.0799838,0.1235269;-0.7573221;0.01809132,-0.07829446;0.0003402743;-0.01642748,-0.08383831;-0.3786354;0.01089831,-0.09203308;-0.7208514;0.0838442,-0.10928;-0.7090943;-0.0129532,0.01157075;0.3987504;0.02873533,40.07082
+0;0;0,0.002207713;0.1989917;0.01993527,0.006110712;0.4984204;0.03718092,0.1136634;0.3707901;-0.007777803,0.2015532;0.1232251;-0.104664,0.2397678;-0.06096242;-0.3120636,-0.1076938;0.3584788;0.02048096,-0.1993874;0.09629327;0.05585043,-0.2207924;-0.1826465;0.04425671,0.06735677;0.007499377;-0.04250676,0.09110692;-0.3685316;0.006855644,0.1032018;-0.7097588;0.08378197,0.09321377;-0.6966771;-0.01426911,-0.07340728;-0.0005937418;-0.0317965,-0.0963642;-0.378535;0.0003499389,-0.09766574;-0.7213576;0.07085525,-0.1052329;-0.7084447;-0.02738309,0.004631761;0.398482;0.03399843,0;0;0,0.006253937;0.1991188;0.01768004,0.01451231;0.4986511;0.03119909,0.1121395;0.3705877;-0.02997894,0.1491922;0.1763533;-0.2282214,0.2219937;0.1464675;-0.4969346,-0.1033679;0.3645476;0.02649589,-0.1693354;0.09412324;0.05681018,-0.1949479;-0.1846746;0.06078102,0.05938026;0.00535172;-0.05334177,0.1055791;-0.3672186;0.005454496,0.1160942;-0.7087432;0.08128577,0.1231102;-0.756534;0.01884086,-0.07828232;0.0001155983;-0.01648832,-0.08355244;-0.3787638;0.01219292,-0.09176683;-0.7210423;0.08484215,-0.109272;-0.7092624;-0.01191321,0.01163319;0.3987117;0.02924543,40.09293
+0;0;0,0.002266857;0.1989857;0.0199885,0.006305969;0.4984087;0.03730072,0.1136142;0.3705909;-0.008061454,0.2022394;0.1266594;-0.1131472,0.2400281;-0.04841639;-0.3283692,-0.107595;0.3585966;0.02059276,-0.1991316;0.09638351;0.05616468,-0.220134;-0.1825674;0.04411027,0.0673871;0.007601053;-0.04244058,0.09127379;-0.3684953;0.006354291,0.1035555;-0.7097232;0.08324839,0.1200718;-0.7580498;0.02331379,-0.07332585;-0.0006575976;-0.03198262,-0.09612946;-0.378613;0.0001064241,-0.09735796;-0.7214497;0.07054381,-0.1050427;-0.7085328;-0.0276861,0.004777674;0.3984718;0.03409625,0;0;0,0.006253937;0.1991188;0.01768004,0.01451231;0.4986511;0.03119909,0.1121395;0.3705877;-0.02997894,0.1491922;0.1763533;-0.2282214,0.2219937;0.1464675;-0.4969346,-0.1033679;0.3645476;0.02649589,-0.1693354;0.09412324;0.05681018,-0.1949479;-0.1846746;0.06078102,0.05938026;0.00535172;-0.05334177,0.1055791;-0.3672186;0.005454496,0.1160942;-0.7087432;0.08128577,0.1231102;-0.756534;0.01884086,-0.07828232;0.0001155983;-0.01648832,-0.08355244;-0.3787638;0.01219292,-0.09176683;-0.7210423;0.08484215,-0.109272;-0.7092624;-0.01191321,0.01163319;0.3987117;0.02924543,40.10408
+0;0;0,0.002266857;0.1989857;0.0199885,0.006305969;0.4984087;0.03730072,0.1136142;0.3705909;-0.008061454,0.2022394;0.1266594;-0.1131472,0.2400281;-0.04841639;-0.3283692,-0.107595;0.3585966;0.02059276,-0.1991316;0.09638351;0.05616468,-0.220134;-0.1825674;0.04411027,0.0673871;0.007601053;-0.04244058,0.09127379;-0.3684953;0.006354291,0.1035555;-0.7097232;0.08324839,0.1200718;-0.7580498;0.02331379,-0.07332585;-0.0006575976;-0.03198262,-0.09612946;-0.378613;0.0001064241,-0.09735796;-0.7214497;0.07054381,-0.1050427;-0.7085328;-0.0276861,0.004777674;0.3984718;0.03409625,0;0;0,0.006166241;0.1991182;0.01771789,0.0144785;0.4986447;0.03133104,0.1118682;0.3703646;-0.03015235,0.1500103;0.1786145;-0.2305945,0.2254698;0.1450261;-0.4981346,-0.1034336;0.364576;0.02698916,-0.1694258;0.09413338;0.05708581,-0.1953925;-0.1846326;0.06099118,0.05942694;0.005425169;-0.05328233,0.1054942;-0.3670773;0.006044704,0.1160314;-0.708572;0.08200747,0.1234869;-0.7567568;0.02010792,-0.07825781;2.789022E-05;-0.01660464,-0.08352198;-0.3788134;0.01257611,-0.09171803;-0.72096;0.0858465,-0.1094217;-0.7091647;-0.01087565,0.01158623;0.3987062;0.02934798,40.12645
+0;0;0,0.002266857;0.1989857;0.0199885,0.006305969;0.4984087;0.03730072,0.1136142;0.3705909;-0.008061454,0.2022394;0.1266594;-0.1131472,0.2400281;-0.04841639;-0.3283692,-0.107595;0.3585966;0.02059276,-0.1991316;0.09638351;0.05616468,-0.220134;-0.1825674;0.04411027,0.0673871;0.007601053;-0.04244058,0.09127379;-0.3684953;0.006354291,0.1035555;-0.7097232;0.08324839,0.1200718;-0.7580498;0.02331379,-0.07332585;-0.0006575976;-0.03198262,-0.09612946;-0.378613;0.0001064241,-0.09735796;-0.7214497;0.07054381,-0.1050427;-0.7085328;-0.0276861,0.004777674;0.3984718;0.03409625,0;0;0,0.00605433;0.1991252;0.01767746,0.0143907;0.4986514;0.03128237,0.1116118;0.3703042;-0.03044201,0.1538869;0.1847484;-0.2358242,0.2292619;0.1439676;-0.5023867,-0.1035819;0.3647418;0.02746955,-0.1695031;0.09422845;0.05708271,-0.195634;-0.1845258;0.06072454,0.0596431;0.005533349;-0.05302908,0.1053147;-0.3669777;0.006550044,0.1162262;-0.7084457;0.08257984,0.1229538;-0.7570083;0.02107653,-0.07809947;-8.041968E-05;-0.01733395,-0.08340731;-0.3788167;0.0131729,-0.09098863;-0.7210802;0.08596128,-0.108925;-0.709279;-0.0107191,0.01149458;0.3987129;0.02930328,40.14862
+0;0;0,0.002134536;0.1989896;0.01996456,0.006024928;0.4984156;0.03725919,0.1140508;0.3715442;-0.006971285,0.2002664;0.1299115;-0.1191344,0.2389033;-0.0400475;-0.3382716,-0.1078872;0.3586937;0.02080102,-0.1992978;0.09647974;0.05668866,-0.2193444;-0.1825124;0.04397994,0.06735429;0.007644359;-0.04248486,0.0911797;-0.3685187;0.005823642,0.1034754;-0.7097844;0.08254723,0.1197311;-0.7580351;0.02244243,-0.07331742;-0.0006758376;-0.03200154,-0.09603749;-0.3786545;-0.0001278929,-0.09736048;-0.7215568;0.06998791,-0.1048167;-0.7086396;-0.02825966,0.004546993;0.3984778;0.03405922,0;0;0,0.00605433;0.1991252;0.01767746,0.0143907;0.4986514;0.03128237,0.1116118;0.3703042;-0.03044201,0.1538869;0.1847484;-0.2358242,0.2292619;0.1439676;-0.5023867,-0.1035819;0.3647418;0.02746955,-0.1695031;0.09422845;0.05708271,-0.195634;-0.1845258;0.06072454,0.0596431;0.005533349;-0.05302908,0.1053147;-0.3669777;0.006550044,0.1162262;-0.7084457;0.08257984,0.1229538;-0.7570083;0.02107653,-0.07809947;-8.041968E-05;-0.01733395,-0.08340731;-0.3788167;0.0131729,-0.09098863;-0.7210802;0.08596128,-0.108925;-0.709279;-0.0107191,0.01149458;0.3987129;0.02930328,40.16003
+0;0;0,0.002134536;0.1989896;0.01996456,0.006024928;0.4984156;0.03725919,0.1140508;0.3715442;-0.006971285,0.2002664;0.1299115;-0.1191344,0.2389033;-0.0400475;-0.3382716,-0.1078872;0.3586937;0.02080102,-0.1992978;0.09647974;0.05668866,-0.2193444;-0.1825124;0.04397994,0.06735429;0.007644359;-0.04248486,0.0911797;-0.3685187;0.005823642,0.1034754;-0.7097844;0.08254723,0.1197311;-0.7580351;0.02244243,-0.07331742;-0.0006758376;-0.03200154,-0.09603749;-0.3786545;-0.0001278929,-0.09736048;-0.7215568;0.06998791,-0.1048167;-0.7086396;-0.02825966,0.004546993;0.3984778;0.03405922,0;0;0,0.00605433;0.1991252;0.01767746,0.0143907;0.4986514;0.03128237,0.1116118;0.3703042;-0.03044201,0.1538869;0.1847484;-0.2358242,0.2292619;0.1439676;-0.5023867,-0.1035819;0.3647418;0.02746955,-0.1695031;0.09422845;0.05708271,-0.195634;-0.1845258;0.06072454,0.0596431;0.005533349;-0.05302908,0.1053147;-0.3669777;0.006550044,0.1162262;-0.7084457;0.08257984,0.1229538;-0.7570083;0.02107653,-0.07809947;-8.041968E-05;-0.01733395,-0.08340731;-0.3788167;0.0131729,-0.09098863;-0.7210802;0.08596128,-0.108925;-0.709279;-0.0107191,0.01149458;0.3987129;0.02930328,40.17124
+0;0;0,0.002134536;0.1989896;0.01996456,0.006024928;0.4984156;0.03725919,0.1140508;0.3715442;-0.006971285,0.2002664;0.1299115;-0.1191344,0.2389033;-0.0400475;-0.3382716,-0.1078872;0.3586937;0.02080102,-0.1992978;0.09647974;0.05668866,-0.2193444;-0.1825124;0.04397994,0.06735429;0.007644359;-0.04248486,0.0911797;-0.3685187;0.005823642,0.1034754;-0.7097844;0.08254723,0.1197311;-0.7580351;0.02244243,-0.07331742;-0.0006758376;-0.03200154,-0.09603749;-0.3786545;-0.0001278929,-0.09736048;-0.7215568;0.06998791,-0.1048167;-0.7086396;-0.02825966,0.004546993;0.3984778;0.03405922,0;0;0,0.005782464;0.1991027;0.01801844,0.01400212;0.4986169;0.03193495,0.1112345;0.3701557;-0.02986071,0.169431;0.190293;-0.2364099,0.2313028;0.1777161;-0.5091987,-0.1035898;0.3636752;0.02657606,-0.1681468;0.09290993;0.05688366,-0.1921494;-0.1860093;0.06216495,0.05975243;0.005676541;-0.05289068,0.1050419;-0.3667632;0.007420886,0.1160277;-0.7081887;0.08363096,0.1225409;-0.7568102;0.02217986,-0.07805933;-0.0002609349;-0.01751206,-0.0837553;-0.3789075;0.01402167,-0.09182328;-0.7210698;0.08723278,-0.1092792;-0.7092416;-0.009540565,0.01114408;0.398679;0.0298747,40.19334
+0;0;0,0.002138596;0.1989793;0.02006646,0.006082344;0.4983951;0.03752545,0.1138389;0.3714518;-0.00736646,0.1998124;0.1323573;-0.1250201,0.238478;-0.02676561;-0.352143,-0.1079577;0.3589686;0.02103401,-0.1990373;0.09655428;0.0562937,-0.2185069;-0.1824797;0.04360554,0.06727599;0.007653071;-0.04260718,0.09111862;-0.3685297;0.00553925,0.1033996;-0.7098156;0.08217551,0.1183706;-0.7575694;0.02110004,-0.07337124;-0.0006566495;-0.03187836,-0.09618896;-0.3785889;0.0004721023,-0.09740172;-0.7216415;0.0698508,-0.1050369;-0.7087175;-0.02838421,0.004582432;0.3984593;0.03427035,0;0;0,0.005782464;0.1991027;0.01801844,0.01400212;0.4986169;0.03193495,0.1112345;0.3701557;-0.02986071,0.169431;0.190293;-0.2364099,0.2313028;0.1777161;-0.5091987,-0.1035898;0.3636752;0.02657606,-0.1681468;0.09290993;0.05688366,-0.1921494;-0.1860093;0.06216495,0.05975243;0.005676541;-0.05289068,0.1050419;-0.3667632;0.007420886,0.1160277;-0.7081887;0.08363096,0.1225409;-0.7568102;0.02217986,-0.07805933;-0.0002609349;-0.01751206,-0.0837553;-0.3789075;0.01402167,-0.09182328;-0.7210698;0.08723278,-0.1092792;-0.7092416;-0.009540565,0.01114408;0.398679;0.0298747,40.20465
+0;0;0,0.002138596;0.1989793;0.02006646,0.006082344;0.4983951;0.03752545,0.1138389;0.3714518;-0.00736646,0.1998124;0.1323573;-0.1250201,0.238478;-0.02676561;-0.352143,-0.1079577;0.3589686;0.02103401,-0.1990373;0.09655428;0.0562937,-0.2185069;-0.1824797;0.04360554,0.06727599;0.007653071;-0.04260718,0.09111862;-0.3685297;0.00553925,0.1033996;-0.7098156;0.08217551,0.1183706;-0.7575694;0.02110004,-0.07337124;-0.0006566495;-0.03187836,-0.09618896;-0.3785889;0.0004721023,-0.09740172;-0.7216415;0.0698508,-0.1050369;-0.7087175;-0.02838421,0.004582432;0.3984593;0.03427035,0;0;0,0.005697812;0.1991029;0.01804374,0.01389485;0.4986129;0.03206421,0.111087;0.3701728;-0.02985987,0.1670653;0.1844525;-0.2317866,0.231756;0.1425597;-0.5009708,-0.1037582;0.3638755;0.0269934,-0.1682745;0.09295452;0.05596694,-0.1931013;-0.1859141;0.05995782,0.05992823;0.005646826;-0.0526946,0.1050729;-0.3668825;0.007170539,0.116255;-0.7082106;0.08378693,0.1226954;-0.756825;0.02231897,-0.07791514;-0.0001752353;-0.01814389,-0.08361345;-0.3787559;0.0141702,-0.0915824;-0.7208887;0.08753008,-0.1091515;-0.7090607;-0.009222724,0.01104644;0.3986754;0.0299689,40.2272
+0;0;0,0.002138596;0.1989793;0.02006646,0.006082344;0.4983951;0.03752545,0.1138389;0.3714518;-0.00736646,0.1998124;0.1323573;-0.1250201,0.238478;-0.02676561;-0.352143,-0.1079577;0.3589686;0.02103401,-0.1990373;0.09655428;0.0562937,-0.2185069;-0.1824797;0.04360554,0.06727599;0.007653071;-0.04260718,0.09111862;-0.3685297;0.00553925,0.1033996;-0.7098156;0.08217551,0.1183706;-0.7575694;0.02110004,-0.07337124;-0.0006566495;-0.03187836,-0.09618896;-0.3785889;0.0004721023,-0.09740172;-0.7216415;0.0698508,-0.1050369;-0.7087175;-0.02838421,0.004582432;0.3984593;0.03427035,0;0;0,0.006005381;0.1991081;0.01788563,0.01452879;0.498621;0.03161183,0.1114426;0.3701269;-0.03042598,0.15907;0.1904676;-0.2398398,0.2338639;0.1358609;-0.5040821,-0.1030353;0.3633088;0.02584782,-0.1671611;0.09240291;0.05581208,-0.2072858;-0.1846956;0.0532752,0.06002263;0.005644239;-0.05258733,0.1058623;-0.3668652;0.006872293,0.1171394;-0.708106;0.08386262,0.1233832;-0.7570324;0.02277539,-0.07790016;-0.0001526615;-0.0182083,-0.0828183;-0.3787328;0.01424045,-0.09075499;-0.7208654;0.08760457,-0.1081428;-0.7090409;-0.009180337,0.01156885;0.398684;0.02965503,40.24903
+0;0;0,0.002042972;0.1989887;0.01998303,0.005892674;0.4984102;0.03736911,0.1134878;0.3713891;-0.007963996,0.2007074;0.1362447;-0.1324623,0.2369085;-0.01758729;-0.3636012,-0.1083278;0.3594221;0.0214266,-0.1993521;0.0971036;0.05753167,-0.2171802;-0.1820197;0.04440354,0.06713723;0.007657168;-0.04282477,0.09103498;-0.368542;0.005165797,0.1034127;-0.7098245;0.08180147,0.1182487;-0.7564221;0.01924985,-0.07349451;-0.0006425582;-0.03159342,-0.09627235;-0.3786078;0.0003974214,-0.09760061;-0.7217599;0.06928075,-0.1055178;-0.7088391;-0.02893139,0.004426608;0.3984733;0.03413245,0;0;0,0.006005381;0.1991081;0.01788563,0.01452879;0.498621;0.03161183,0.1114426;0.3701269;-0.03042598,0.15907;0.1904676;-0.2398398,0.2338639;0.1358609;-0.5040821,-0.1030353;0.3633088;0.02584782,-0.1671611;0.09240291;0.05581208,-0.2072858;-0.1846956;0.0532752,0.06002263;0.005644239;-0.05258733,0.1058623;-0.3668652;0.006872293,0.1171394;-0.708106;0.08386262,0.1233832;-0.7570324;0.02277539,-0.07790016;-0.0001526615;-0.0182083,-0.0828183;-0.3787328;0.01424045,-0.09075499;-0.7208654;0.08760457,-0.1081428;-0.7090409;-0.009180337,0.01156885;0.398684;0.02965503,40.26048
+0;0;0,0.002042972;0.1989887;0.01998303,0.005892674;0.4984102;0.03736911,0.1134878;0.3713891;-0.007963996,0.2007074;0.1362447;-0.1324623,0.2369085;-0.01758729;-0.3636012,-0.1083278;0.3594221;0.0214266,-0.1993521;0.0971036;0.05753167,-0.2171802;-0.1820197;0.04440354,0.06713723;0.007657168;-0.04282477,0.09103498;-0.368542;0.005165797,0.1034127;-0.7098245;0.08180147,0.1182487;-0.7564221;0.01924985,-0.07349451;-0.0006425582;-0.03159342,-0.09627235;-0.3786078;0.0003974214,-0.09760061;-0.7217599;0.06928075,-0.1055178;-0.7088391;-0.02893139,0.004426608;0.3984733;0.03413245,0;0;0,0.006005381;0.1991081;0.01788563,0.01452879;0.498621;0.03161183,0.1114426;0.3701269;-0.03042598,0.15907;0.1904676;-0.2398398,0.2338639;0.1358609;-0.5040821,-0.1030353;0.3633088;0.02584782,-0.1671611;0.09240291;0.05581208,-0.2072858;-0.1846956;0.0532752,0.06002263;0.005644239;-0.05258733,0.1058623;-0.3668652;0.006872293,0.1171394;-0.708106;0.08386262,0.1233832;-0.7570324;0.02277539,-0.07790016;-0.0001526615;-0.0182083,-0.0828183;-0.3787328;0.01424045,-0.09075499;-0.7208654;0.08760457,-0.1081428;-0.7090409;-0.009180337,0.01156885;0.398684;0.02965503,40.27167
+0;0;0,0.002042972;0.1989887;0.01998303,0.005892674;0.4984102;0.03736911,0.1134878;0.3713891;-0.007963996,0.2007074;0.1362447;-0.1324623,0.2369085;-0.01758729;-0.3636012,-0.1083278;0.3594221;0.0214266,-0.1993521;0.0971036;0.05753167,-0.2171802;-0.1820197;0.04440354,0.06713723;0.007657168;-0.04282477,0.09103498;-0.368542;0.005165797,0.1034127;-0.7098245;0.08180147,0.1182487;-0.7564221;0.01924985,-0.07349451;-0.0006425582;-0.03159342,-0.09627235;-0.3786078;0.0003974214,-0.09760061;-0.7217599;0.06928075,-0.1055178;-0.7088391;-0.02893139,0.004426608;0.3984733;0.03413245,0;0;0,0.005941998;0.199111;0.01787405,0.01446666;0.4986225;0.03164034,0.1112048;0.370037;-0.03067153,0.1594489;0.1901139;-0.2397174,0.2350345;0.1364852;-0.5039347,-0.1029029;0.362767;0.02520617,-0.1669516;0.09187597;0.05546917,-0.193913;-0.1867935;0.05952085,0.06003139;0.005669931;-0.05257455,0.1057728;-0.3668875;0.006659336,0.1171268;-0.7080032;0.08419125,0.1239224;-0.7570146;0.02327318,-0.07791147;-0.0001594574;-0.01815977,-0.08282754;-0.3787365;0.01432567,-0.09098301;-0.7208144;0.08792019,-0.08217066;-0.7682177;0.02522182,0.01150855;0.3986859;0.02966005,40.29381
+0;0;0,0.001975117;0.1989794;0.02008272,0.005748425;0.4983965;0.03755501,0.113103;0.3713145;-0.008433469,0.2014351;0.140242;-0.1395933,0.2324314;-0.005749032;-0.3765023,-0.1083489;0.35915;0.02149359,-0.1991186;0.09680545;0.05804761,-0.2167875;-0.1823057;0.0444539,0.06708605;0.007910997;-0.04285881,0.0912653;-0.3683063;0.004847601,0.1036056;-0.7096534;0.08120088,0.1180407;-0.7558317;0.01804628,-0.0734903;-0.0009451001;-0.0315956,-0.09587418;-0.3789521;0.0001788549,-0.09744266;-0.7221306;0.06892538,-0.08251367;-0.7701383;0.00816416,0.004304399;0.3984599;0.03429824,0;0;0,0.005941998;0.199111;0.01787405,0.01446666;0.4986225;0.03164034,0.1112048;0.370037;-0.03067153,0.1594489;0.1901139;-0.2397174,0.2350345;0.1364852;-0.5039347,-0.1029029;0.362767;0.02520617,-0.1669516;0.09187597;0.05546917,-0.193913;-0.1867935;0.05952085,0.06003139;0.005669931;-0.05257455,0.1057728;-0.3668875;0.006659336,0.1171268;-0.7080032;0.08419125,0.1239224;-0.7570146;0.02327318,-0.07791147;-0.0001594574;-0.01815977,-0.08282754;-0.3787365;0.01432567,-0.09098301;-0.7208144;0.08792019,-0.08217066;-0.7682177;0.02522182,0.01150855;0.3986859;0.02966005,40.3052
+0;0;0,0.001975117;0.1989794;0.02008272,0.005748425;0.4983965;0.03755501,0.113103;0.3713145;-0.008433469,0.2014351;0.140242;-0.1395933,0.2324314;-0.005749032;-0.3765023,-0.1083489;0.35915;0.02149359,-0.1991186;0.09680545;0.05804761,-0.2167875;-0.1823057;0.0444539,0.06708605;0.007910997;-0.04285881,0.0912653;-0.3683063;0.004847601,0.1036056;-0.7096534;0.08120088,0.1180407;-0.7558317;0.01804628,-0.0734903;-0.0009451001;-0.0315956,-0.09587418;-0.3789521;0.0001788549,-0.09744266;-0.7221306;0.06892538,-0.08251367;-0.7701383;0.00816416,0.004304399;0.3984599;0.03429824,0;0;0,0.005969879;0.1991213;0.01774993,0.01466468;0.4986358;0.03134824,0.1114618;0.3700647;-0.03072676,0.1569915;0.1862952;-0.2370175,0.235649;0.1367915;-0.5011432,-0.1027435;0.3627256;0.02492137,-0.1664535;0.09166729;0.05439022,-0.1932334;-0.1870295;0.05769661,0.06017905;0.005739372;-0.05239791,0.1059641;-0.3668581;0.006549995,0.117264;-0.7078933;0.08444321,0.1239848;-0.7570241;0.02367194,-0.07782646;-0.0002196931;-0.0185201,-0.08248626;-0.3787429;0.01462366,-0.09079177;-0.7208189;0.08821059,-0.1079433;-0.7090023;-0.008614965,0.01164898;0.3986999;0.02941832,40.31615
+0;0;0,0.001975117;0.1989794;0.02008272,0.005748425;0.4983965;0.03755501,0.113103;0.3713145;-0.008433469,0.2014351;0.140242;-0.1395933,0.2324314;-0.005749032;-0.3765023,-0.1083489;0.35915;0.02149359,-0.1991186;0.09680545;0.05804761,-0.2167875;-0.1823057;0.0444539,0.06708605;0.007910997;-0.04285881,0.0912653;-0.3683063;0.004847601,0.1036056;-0.7096534;0.08120088,0.1180407;-0.7558317;0.01804628,-0.0734903;-0.0009451001;-0.0315956,-0.09587418;-0.3789521;0.0001788549,-0.09744266;-0.7221306;0.06892538,-0.08251367;-0.7701383;0.00816416,0.004304399;0.3984599;0.03429824,0;0;0,0.005969879;0.1991213;0.01774993,0.01466468;0.4986358;0.03134824,0.1114618;0.3700647;-0.03072676,0.1569915;0.1862952;-0.2370175,0.235649;0.1367915;-0.5011432,-0.1027435;0.3627256;0.02492137,-0.1664535;0.09166729;0.05439022,-0.1932334;-0.1870295;0.05769661,0.06017905;0.005739372;-0.05239791,0.1059641;-0.3668581;0.006549995,0.117264;-0.7078933;0.08444321,0.1239848;-0.7570241;0.02367194,-0.07782646;-0.0002196931;-0.0185201,-0.08248626;-0.3787429;0.01462366,-0.09079177;-0.7208189;0.08821059,-0.1079433;-0.7090023;-0.008614965,0.01164898;0.3986999;0.02941832,40.33863
+0;0;0,0.001699477;0.1989922;0.01998042,0.005106902;0.4984145;0.03744791,0.1123099;0.3712042;-0.00921135,0.2009344;0.1432377;-0.1455087,0.2345445;0.02237795;-0.3958351,-0.1088071;0.3591151;0.02117162,-0.1995851;0.09691119;0.05870141,-0.2162838;-0.1822273;0.0444593,0.06700326;0.007958959;-0.04297927,0.09100439;-0.3682946;0.004530881,0.1033006;-0.709715;0.08056338,0.1175873;-0.756108;0.01763479,-0.07351325;-0.0009997829;-0.03154046,-0.0959295;-0.3789866;0.0004515536,-0.0977744;-0.7222666;0.06868228,-0.1060525;-0.709344;-0.02950037,0.00380489;0.3984763;0.03418091,0;0;0,0.005603717;0.1991164;0.01792383,0.01387665;0.4986364;0.03165773,0.1108544;0.3702436;-0.03050171,0.15704;0.1862805;-0.2364737,0.2375418;0.1364432;-0.4999803,-0.1033999;0.3627593;0.02553529,-0.1676679;0.09174657;0.05420077,-0.1947563;-0.1869235;0.05723134,0.06025357;0.005853733;-0.05229953,0.1057095;-0.3666793;0.007306833,0.116939;-0.7076632;0.08543366,0.124853;-0.7571311;0.02524868,-0.0777882;-0.0003559311;-0.01867802,-0.08284805;-0.378818;0.0150978,-0.09112158;-0.7208153;0.08905326,-0.1084284;-0.7089976;-0.007744886,0.01101716;0.3986966;0.02968926,40.36087
+0;0;0,0.001699477;0.1989922;0.01998042,0.005106902;0.4984145;0.03744791,0.1123099;0.3712042;-0.00921135,0.2009344;0.1432377;-0.1455087,0.2345445;0.02237795;-0.3958351,-0.1088071;0.3591151;0.02117162,-0.1995851;0.09691119;0.05870141,-0.2162838;-0.1822273;0.0444593,0.06700326;0.007958959;-0.04297927,0.09100439;-0.3682946;0.004530881,0.1033006;-0.709715;0.08056338,0.1175873;-0.756108;0.01763479,-0.07351325;-0.0009997829;-0.03154046,-0.0959295;-0.3789866;0.0004515536,-0.0977744;-0.7222666;0.06868228,-0.1060525;-0.709344;-0.02950037,0.00380489;0.3984763;0.03418091,0;0;0,0.005603717;0.1991164;0.01792383,0.01387665;0.4986364;0.03165773,0.1108544;0.3702436;-0.03050171,0.15704;0.1862805;-0.2364737,0.2375418;0.1364432;-0.4999803,-0.1033999;0.3627593;0.02553529,-0.1676679;0.09174657;0.05420077,-0.1947563;-0.1869235;0.05723134,0.06025357;0.005853733;-0.05229953,0.1057095;-0.3666793;0.007306833,0.116939;-0.7076632;0.08543366,0.124853;-0.7571311;0.02524868,-0.0777882;-0.0003559311;-0.01867802,-0.08284805;-0.378818;0.0150978,-0.09112158;-0.7208153;0.08905326,-0.1084284;-0.7089976;-0.007744886,0.01101716;0.3986966;0.02968926,40.37227
+0;0;0,0.001699477;0.1989922;0.01998042,0.005106902;0.4984145;0.03744791,0.1123099;0.3712042;-0.00921135,0.2009344;0.1432377;-0.1455087,0.2345445;0.02237795;-0.3958351,-0.1088071;0.3591151;0.02117162,-0.1995851;0.09691119;0.05870141,-0.2162838;-0.1822273;0.0444593,0.06700326;0.007958959;-0.04297927,0.09100439;-0.3682946;0.004530881,0.1033006;-0.709715;0.08056338,0.1175873;-0.756108;0.01763479,-0.07351325;-0.0009997829;-0.03154046,-0.0959295;-0.3789866;0.0004515536,-0.0977744;-0.7222666;0.06868228,-0.1060525;-0.709344;-0.02950037,0.00380489;0.3984763;0.03418091,0;0;0,0.005540665;0.1991184;0.01792081,0.01377164;0.4986373;0.03170859,0.110663;0.3701723;-0.03060666,0.1569396;0.1859079;-0.2362887,0.2379127;0.1367292;-0.4997746,-0.1035619;0.362974;0.02568178,-0.1679609;0.09191871;0.05364202,-0.1954068;-0.186723;0.05599158,0.06032735;0.005878358;-0.05221164,0.105823;-0.3667015;0.007070422,0.1171811;-0.7075995;0.08555339,0.1247975;-0.7573603;0.02571857,-0.07773627;-0.000367808;-0.01889282,-0.08276299;-0.3787958;0.01526825,-0.09111844;-0.720763;0.08935356,-0.1085218;-0.7089498;-0.007426418,0.01092631;0.3986976;0.02971664,40.3943
+0;0;0,0.00154344;0.1989878;0.02003721,0.004551642;0.498409;0.03759298,0.1116093;0.3708919;-0.00962906,0.2005056;0.1468946;-0.1521865,0.2346982;0.02377564;-0.4013303,-0.1091189;0.358892;0.02112977,-0.1999042;0.09672892;0.05892628,-0.2163714;-0.18241;0.04442422,0.06695078;0.008099237;-0.04303481,0.09114575;-0.3680783;0.004976112,0.1033207;-0.709637;0.08040448,0.1187286;-0.7565669;0.0184014,-0.07356527;-0.001237517;-0.03141047,-0.09579661;-0.3792107;0.000870429,-0.09774923;-0.7225803;0.06864581,-0.1061943;-0.7096574;-0.0295227,0.003398247;0.3984699;0.0343007,0;0;0,0.005540665;0.1991184;0.01792081,0.01377164;0.4986373;0.03170859,0.110663;0.3701723;-0.03060666,0.1569396;0.1859079;-0.2362887,0.2379127;0.1367292;-0.4997746,-0.1035619;0.362974;0.02568178,-0.1679609;0.09191871;0.05364202,-0.1954068;-0.186723;0.05599158,0.06032735;0.005878358;-0.05221164,0.105823;-0.3667015;0.007070422,0.1171811;-0.7075995;0.08555339,0.1247975;-0.7573603;0.02571857,-0.07773627;-0.000367808;-0.01889282,-0.08276299;-0.3787958;0.01526825,-0.09111844;-0.720763;0.08935356,-0.1085218;-0.7089498;-0.007426418,0.01092631;0.3986976;0.02971664,40.40563
+0;0;0,0.00154344;0.1989878;0.02003721,0.004551642;0.498409;0.03759298,0.1116093;0.3708919;-0.00962906,0.2005056;0.1468946;-0.1521865,0.2346982;0.02377564;-0.4013303,-0.1091189;0.358892;0.02112977,-0.1999042;0.09672892;0.05892628,-0.2163714;-0.18241;0.04442422,0.06695078;0.008099237;-0.04303481,0.09114575;-0.3680783;0.004976112,0.1033207;-0.709637;0.08040448,0.1187286;-0.7565669;0.0184014,-0.07356527;-0.001237517;-0.03141047,-0.09579661;-0.3792107;0.000870429,-0.09774923;-0.7225803;0.06864581,-0.1061943;-0.7096574;-0.0295227,0.003398247;0.3984699;0.0343007,0;0;0,0.005293033;0.1991063;0.01812905,0.01330624;0.4986203;0.03214345,0.110337;0.3700009;-0.03005766,0.1565815;0.185648;-0.2356676,0.2377227;0.1367158;-0.4991477,-0.1038386;0.362625;0.02573286,-0.1690047;0.0916796;0.05297172,-0.1969306;-0.1869192;0.05465977,0.06046113;0.005950615;-0.05204846,0.1056417;-0.3666028;0.007639889,0.1170296;-0.7074327;0.08641319,0.1246619;-0.7575961;0.02712083,-0.07765326;-0.0004529963;-0.01922929,-0.08295873;-0.3787712;0.0160865,-0.09130537;-0.7207237;0.09024,-0.1086111;-0.7089009;-0.00655929,0.01053411;0.39868;0.03008305,40.4279
+0;0;0,0.00154344;0.1989878;0.02003721,0.004551642;0.498409;0.03759298,0.1116093;0.3708919;-0.00962906,0.2005056;0.1468946;-0.1521865,0.2346982;0.02377564;-0.4013303,-0.1091189;0.358892;0.02112977,-0.1999042;0.09672892;0.05892628,-0.2163714;-0.18241;0.04442422,0.06695078;0.008099237;-0.04303481,0.09114575;-0.3680783;0.004976112,0.1033207;-0.709637;0.08040448,0.1187286;-0.7565669;0.0184014,-0.07356527;-0.001237517;-0.03141047,-0.09579661;-0.3792107;0.000870429,-0.09774923;-0.7225803;0.06864581,-0.1061943;-0.7096574;-0.0295227,0.003398247;0.3984699;0.0343007,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001456467;0.1989922;0.01999969,0.004378082;0.4984191;0.03747176,0.1111741;0.3705313;-0.01018536,0.200436;0.153615;-0.1630894,0.2357133;0.03557156;-0.4145278,-0.1094172;0.3592488;0.02126465,-0.199635;0.09685969;0.05885086,-0.215851;-0.1822796;0.04407627,0.06683943;0.008082826;-0.04321062,0.09117392;-0.3680413;0.005147073,0.1032219;-0.7097019;0.08013318,0.1180888;-0.7567171;0.01810391,-0.07364109;-0.001213047;-0.03123329,-0.09582362;-0.379211;0.0007900298,-0.09799718;-0.72263;0.06830762,-0.1066337;-0.7097129;-0.02984321,0.003247965;0.3984787;0.03420934,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001456467;0.1989922;0.01999969,0.004378082;0.4984191;0.03747176,0.1111741;0.3705313;-0.01018536,0.200436;0.153615;-0.1630894,0.2357133;0.03557156;-0.4145278,-0.1094172;0.3592488;0.02126465,-0.199635;0.09685969;0.05885086,-0.215851;-0.1822796;0.04407627,0.06683943;0.008082826;-0.04321062,0.09117392;-0.3680413;0.005147073,0.1032219;-0.7097019;0.08013318,0.1180888;-0.7567171;0.01810391,-0.07364109;-0.001213047;-0.03123329,-0.09582362;-0.379211;0.0007900298,-0.09799718;-0.72263;0.06830762,-0.1066337;-0.7097129;-0.02984321,0.003247965;0.3984787;0.03420934,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001456467;0.1989922;0.01999969,0.004378082;0.4984191;0.03747176,0.1111741;0.3705313;-0.01018536,0.200436;0.153615;-0.1630894,0.2357133;0.03557156;-0.4145278,-0.1094172;0.3592488;0.02126465,-0.199635;0.09685969;0.05885086,-0.215851;-0.1822796;0.04407627,0.06683943;0.008082826;-0.04321062,0.09117392;-0.3680413;0.005147073,0.1032219;-0.7097019;0.08013318,0.1180888;-0.7567171;0.01810391,-0.07364109;-0.001213047;-0.03123329,-0.09582362;-0.379211;0.0007900298,-0.09799718;-0.72263;0.06830762,-0.1066337;-0.7097129;-0.02984321,0.003247965;0.3984787;0.03420934,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001265509;0.1989954;0.01998116,0.003853701;0.4984233;0.03749315,0.1107219;0.3707868;-0.01048786,0.2026368;0.1570775;-0.1663082,0.2370971;0.04097511;-0.4187617,-0.1101275;0.3600041;0.02180235,-0.1973548;0.09601346;0.05497423,-0.2148072;-0.1831619;0.04246349,0.06680614;0.008133054;-0.04325265,0.0913103;-0.367975;0.005144503,0.1036303;-0.7096107;0.08019939,0.1173712;-0.7570975;0.01849864,-0.07362624;-0.001250345;-0.0312668,-0.09574539;-0.3792597;0.0006657504,-0.09818446;-0.722721;0.06795862,-0.1070501;-0.7098069;-0.03017126,0.002856753;0.3984821;0.03421203,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001265509;0.1989954;0.01998116,0.003853701;0.4984233;0.03749315,0.1107219;0.3707868;-0.01048786,0.2026368;0.1570775;-0.1663082,0.2370971;0.04097511;-0.4187617,-0.1101275;0.3600041;0.02180235,-0.1973548;0.09601346;0.05497423,-0.2148072;-0.1831619;0.04246349,0.06680614;0.008133054;-0.04325265,0.0913103;-0.367975;0.005144503,0.1036303;-0.7096107;0.08019939,0.1173712;-0.7570975;0.01849864,-0.07362624;-0.001250345;-0.0312668,-0.09574539;-0.3792597;0.0006657504,-0.09818446;-0.722721;0.06795862,-0.1070501;-0.7098069;-0.03017126,0.002856753;0.3984821;0.03421203,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001265509;0.1989954;0.01998116,0.003853701;0.4984233;0.03749315,0.1107219;0.3707868;-0.01048786,0.2026368;0.1570775;-0.1663082,0.2370971;0.04097511;-0.4187617,-0.1101275;0.3600041;0.02180235,-0.1973548;0.09601346;0.05497423,-0.2148072;-0.1831619;0.04246349,0.06680614;0.008133054;-0.04325265,0.0913103;-0.367975;0.005144503,0.1036303;-0.7096107;0.08019939,0.1173712;-0.7570975;0.01849864,-0.07362624;-0.001250345;-0.0312668,-0.09574539;-0.3792597;0.0006657504,-0.09818446;-0.722721;0.06795862,-0.1070501;-0.7098069;-0.03017126,0.002856753;0.3984821;0.03421203,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001137728;0.1989982;0.01996097,0.003577609;0.4984323;0.03738378,0.1101748;0.3707638;-0.01128843,0.2077953;0.1800826;-0.1915963,0.2345981;0.05893551;-0.4426042,-0.1103213;0.3599645;0.0214978,-0.1979905;0.09620491;0.05533539,-0.2148302;-0.1829759;0.04212442,0.06675585;0.00815194;-0.0433267,0.09124422;-0.367941;0.005195785,0.1034739;-0.7097164;0.07962692,0.1179126;-0.7574096;0.01834643,-0.07361589;-0.001257118;-0.0312909,-0.09573191;-0.3792617;0.0006994046,-0.09829844;-0.7228266;0.06745736,-0.1073618;-0.7099162;-0.0306538,0.002621348;0.3984895;0.03413784,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001137728;0.1989982;0.01996097,0.003577609;0.4984323;0.03738378,0.1101748;0.3707638;-0.01128843,0.2077953;0.1800826;-0.1915963,0.2345981;0.05893551;-0.4426042,-0.1103213;0.3599645;0.0214978,-0.1979905;0.09620491;0.05533539,-0.2148302;-0.1829759;0.04212442,0.06675585;0.00815194;-0.0433267,0.09124422;-0.367941;0.005195785,0.1034739;-0.7097164;0.07962692,0.1179126;-0.7574096;0.01834643,-0.07361589;-0.001257118;-0.0312909,-0.09573191;-0.3792617;0.0006994046,-0.09829844;-0.7228266;0.06745736,-0.1073618;-0.7099162;-0.0306538,0.002621348;0.3984895;0.03413784,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001137728;0.1989982;0.01996097,0.003577609;0.4984323;0.03738378,0.1101748;0.3707638;-0.01128843,0.2077953;0.1800826;-0.1915963,0.2345981;0.05893551;-0.4426042,-0.1103213;0.3599645;0.0214978,-0.1979905;0.09620491;0.05533539,-0.2148302;-0.1829759;0.04212442,0.06675585;0.00815194;-0.0433267,0.09124422;-0.367941;0.005195785,0.1034739;-0.7097164;0.07962692,0.1179126;-0.7574096;0.01834643,-0.07361589;-0.001257118;-0.0312909,-0.09573191;-0.3792617;0.0006994046,-0.09829844;-0.7228266;0.06745736,-0.1073618;-0.7099162;-0.0306538,0.002621348;0.3984895;0.03413784,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001035015;0.1990094;0.01985427,0.003376547;0.4984546;0.03709907,0.1097577;0.3708041;-0.01209303,0.2079583;0.1796328;-0.191565,0.2374834;0.0666405;-0.4460468,-0.1104849;0.3600034;0.02110226,-0.1981419;0.0962323;0.05488207,-0.2148511;-0.1829565;0.04167624,0.06671632;0.008424015;-0.04333552,0.09141971;-0.3676698;0.005070731,0.1033864;-0.7095907;0.07887408,0.1176403;-0.7572161;0.01746458,-0.07363265;-0.001564213;-0.03123757,-0.09571376;-0.379582;0.0006208923,-0.09826814;-0.7232636;0.06677538,-0.1074816;-0.7103508;-0.03132224,0.0024451;0.3985098;0.0339113,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001035015;0.1990094;0.01985427,0.003376547;0.4984546;0.03709907,0.1097577;0.3708041;-0.01209303,0.2079583;0.1796328;-0.191565,0.2374834;0.0666405;-0.4460468,-0.1104849;0.3600034;0.02110226,-0.1981419;0.0962323;0.05488207,-0.2148511;-0.1829565;0.04167624,0.06671632;0.008424015;-0.04333552,0.09141971;-0.3676698;0.005070731,0.1033864;-0.7095907;0.07887408,0.1176403;-0.7572161;0.01746458,-0.07363265;-0.001564213;-0.03123757,-0.09571376;-0.379582;0.0006208923,-0.09826814;-0.7232636;0.06677538,-0.1074816;-0.7103508;-0.03132224,0.0024451;0.3985098;0.0339113,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001035015;0.1990094;0.01985427,0.003376547;0.4984546;0.03709907,0.1097577;0.3708041;-0.01209303,0.2079583;0.1796328;-0.191565,0.2374834;0.0666405;-0.4460468,-0.1104849;0.3600034;0.02110226,-0.1981419;0.0962323;0.05488207,-0.2148511;-0.1829565;0.04167624,0.06671632;0.008424015;-0.04333552,0.09141971;-0.3676698;0.005070731,0.1033864;-0.7095907;0.07887408,0.1176403;-0.7572161;0.01746458,-0.07363265;-0.001564213;-0.03123757,-0.09571376;-0.379582;0.0006208923,-0.09826814;-0.7232636;0.06677538,-0.1074816;-0.7103508;-0.03132224,0.0024451;0.3985098;0.0339113,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001007098;0.1990065;0.0198846,0.003328618;0.4984488;0.03718496,0.1094172;0.3709504;-0.01279482,0.2115166;0.1838378;-0.1943564,0.263204;0.09481085;-0.4547458,-0.1106504;0.3601332;0.0218204,-0.1918512;0.09328681;0.046304,-0.2132696;-0.1857927;0.03883021,0.06654669;0.008680272;-0.04354529,0.09146108;-0.3673412;0.005312756,0.1034866;-0.7093939;0.078493,0.1174297;-0.7567683;0.01669665,-0.07377352;-0.002092563;-0.03087214,-0.09587772;-0.3801637;0.0003305897,-0.09862507;-0.7239074;0.06615415,-0.1082249;-0.710997;-0.03190597,0.002397596;0.3985046;0.03397653,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001007098;0.1990065;0.0198846,0.003328618;0.4984488;0.03718496,0.1094172;0.3709504;-0.01279482,0.2115166;0.1838378;-0.1943564,0.263204;0.09481085;-0.4547458,-0.1106504;0.3601332;0.0218204,-0.1918512;0.09328681;0.046304,-0.2132696;-0.1857927;0.03883021,0.06654669;0.008680272;-0.04354529,0.09146108;-0.3673412;0.005312756,0.1034866;-0.7093939;0.078493,0.1174297;-0.7567683;0.01669665,-0.07377352;-0.002092563;-0.03087214,-0.09587772;-0.3801637;0.0003305897,-0.09862507;-0.7239074;0.06615415,-0.1082249;-0.710997;-0.03190597,0.002397596;0.3985046;0.03397653,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001007098;0.1990065;0.0198846,0.003328618;0.4984488;0.03718496,0.1094172;0.3709504;-0.01279482,0.2115166;0.1838378;-0.1943564,0.263204;0.09481085;-0.4547458,-0.1106504;0.3601332;0.0218204,-0.1918512;0.09328681;0.046304,-0.2132696;-0.1857927;0.03883021,0.06654669;0.008680272;-0.04354529,0.09146108;-0.3673412;0.005312756,0.1034866;-0.7093939;0.078493,0.1174297;-0.7567683;0.01669665,-0.07377352;-0.002092563;-0.03087214,-0.09587772;-0.3801637;0.0003305897,-0.09862507;-0.7239074;0.06615415,-0.1082249;-0.710997;-0.03190597,0.002397596;0.3985046;0.03397653,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0009384067;0.1990029;0.01992423,0.00318073;0.4984453;0.03722828,0.1089982;0.3709829;-0.01342763,0.2139754;0.1888953;-0.1984247,0.2569792;0.09391051;-0.4582872,-0.1107965;0.3602457;0.02167097,-0.1938327;0.09432229;0.04977346,-0.2136235;-0.1847944;0.03966485,0.06653655;0.008602936;-0.04357611,0.0917924;-0.3673811;0.005394842,0.1038495;-0.7094952;0.07828222,0.1171272;-0.7564908;0.01586929,-0.07375854;-0.001928935;-0.03091858,-0.09546014;-0.3800286;0.0002204031,-0.09853613;-0.7237862;0.06595654,-0.1083277;-0.7108769;-0.03208445,0.002269527;0.3985007;0.03402504,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0009384067;0.1990029;0.01992423,0.00318073;0.4984453;0.03722828,0.1089982;0.3709829;-0.01342763,0.2139754;0.1888953;-0.1984247,0.2569792;0.09391051;-0.4582872,-0.1107965;0.3602457;0.02167097,-0.1938327;0.09432229;0.04977346,-0.2136235;-0.1847944;0.03966485,0.06653655;0.008602936;-0.04357611,0.0917924;-0.3673811;0.005394842,0.1038495;-0.7094952;0.07828222,0.1171272;-0.7564908;0.01586929,-0.07375854;-0.001928935;-0.03091858,-0.09546014;-0.3800286;0.0002204031,-0.09853613;-0.7237862;0.06595654,-0.1083277;-0.7108769;-0.03208445,0.002269527;0.3985007;0.03402504,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0009384067;0.1990029;0.01992423,0.00318073;0.4984453;0.03722828,0.1089982;0.3709829;-0.01342763,0.2139754;0.1888953;-0.1984247,0.2569792;0.09391051;-0.4582872,-0.1107965;0.3602457;0.02167097,-0.1938327;0.09432229;0.04977346,-0.2136235;-0.1847944;0.03966485,0.06653655;0.008602936;-0.04357611,0.0917924;-0.3673811;0.005394842,0.1038495;-0.7094952;0.07828222,0.1171272;-0.7564908;0.01586929,-0.07375854;-0.001928935;-0.03091858,-0.09546014;-0.3800286;0.0002204031,-0.09853613;-0.7237862;0.06595654,-0.1083277;-0.7108769;-0.03208445,0.002269527;0.3985007;0.03402504,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0009624888;0.1990037;0.01991504,0.003220527;0.4984477;0.03719061,0.1088461;0.3712552;-0.01403347,0.214403;0.1908774;-0.2003708,0.2572941;0.1062853;-0.4638182,-0.1107919;0.3603053;0.02175664,-0.1961671;0.0955748;0.05383156,-0.2135229;-0.1835874;0.04089843,0.06652292;0.008475088;-0.04362194,0.09228871;-0.3674339;0.005658511,0.1039343;-0.709643;0.07816547,0.1173155;-0.7564849;0.01558527,-0.07379337;-0.001688404;-0.03084942,-0.09517819;-0.3798092;0.0002529882,-0.09854025;-0.7236095;0.0657514,-0.108563;-0.7107033;-0.03226569,0.002306113;0.3985029;0.03399559,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0009624888;0.1990037;0.01991504,0.003220527;0.4984477;0.03719061,0.1088461;0.3712552;-0.01403347,0.214403;0.1908774;-0.2003708,0.2572941;0.1062853;-0.4638182,-0.1107919;0.3603053;0.02175664,-0.1961671;0.0955748;0.05383156,-0.2135229;-0.1835874;0.04089843,0.06652292;0.008475088;-0.04362194,0.09228871;-0.3674339;0.005658511,0.1039343;-0.709643;0.07816547,0.1173155;-0.7564849;0.01558527,-0.07379337;-0.001688404;-0.03084942,-0.09517819;-0.3798092;0.0002529882,-0.09854025;-0.7236095;0.0657514,-0.108563;-0.7107033;-0.03226569,0.002306113;0.3985029;0.03399559,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0009624888;0.1990037;0.01991504,0.003220527;0.4984477;0.03719061,0.1088461;0.3712552;-0.01403347,0.214403;0.1908774;-0.2003708,0.2572941;0.1062853;-0.4638182,-0.1107919;0.3603053;0.02175664,-0.1961671;0.0955748;0.05383156,-0.2135229;-0.1835874;0.04089843,0.06652292;0.008475088;-0.04362194,0.09228871;-0.3674339;0.005658511,0.1039343;-0.709643;0.07816547,0.1173155;-0.7564849;0.01558527,-0.07379337;-0.001688404;-0.03084942,-0.09517819;-0.3798092;0.0002529882,-0.09854025;-0.7236095;0.0657514,-0.108563;-0.7107033;-0.03226569,0.002306113;0.3985029;0.03399559,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.00116451;0.1990266;0.01967339,0.004326428;0.4985334;0.03556575,0.1095195;0.3712861;-0.01515973,0.2021443;0.2371331;-0.2428077,0.2494891;0.1334717;-0.4985669,-0.1102953;0.3607329;0.02182215,-0.1964543;0.09637025;0.05482259,-0.2131404;-0.1827912;0.04102184,0.06648507;0.008533008;-0.04366833,0.09265722;-0.3673233;0.005799089,0.1041941;-0.709561;0.07818913,0.117076;-0.7568794;0.01609309,-0.07382526;-0.001736976;-0.03077032,-0.09504205;-0.3798828;0.000142185,-0.09870283;-0.7236634;0.06572741,-0.1089407;-0.7107893;-0.03226183,0.003034743;0.3985755;0.03296819,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.00116451;0.1990266;0.01967339,0.004326428;0.4985334;0.03556575,0.1095195;0.3712861;-0.01515973,0.2021443;0.2371331;-0.2428077,0.2494891;0.1334717;-0.4985669,-0.1102953;0.3607329;0.02182215,-0.1964543;0.09637025;0.05482259,-0.2131404;-0.1827912;0.04102184,0.06648507;0.008533008;-0.04366833,0.09265722;-0.3673233;0.005799089,0.1041941;-0.709561;0.07818913,0.117076;-0.7568794;0.01609309,-0.07382526;-0.001736976;-0.03077032,-0.09504205;-0.3798828;0.000142185,-0.09870283;-0.7236634;0.06572741,-0.1089407;-0.7107893;-0.03226183,0.003034743;0.3985755;0.03296819,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.00116451;0.1990266;0.01967339,0.004326428;0.4985334;0.03556575,0.1095195;0.3712861;-0.01515973,0.2021443;0.2371331;-0.2428077,0.2494891;0.1334717;-0.4985669,-0.1102953;0.3607329;0.02182215,-0.1964543;0.09637025;0.05482259,-0.2131404;-0.1827912;0.04102184,0.06648507;0.008533008;-0.04366833,0.09265722;-0.3673233;0.005799089,0.1041941;-0.709561;0.07818913,0.117076;-0.7568794;0.01609309,-0.07382526;-0.001736976;-0.03077032,-0.09504205;-0.3798828;0.000142185,-0.09870283;-0.7236634;0.06572741,-0.1089407;-0.7107893;-0.03226183,0.003034743;0.3985755;0.03296819,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001217937;0.1990221;0.01971582,0.004380368;0.4985207;0.03577851,0.1094143;0.3714058;-0.0154685,0.2170066;0.2074616;-0.2153339,0.2630065;0.1283733;-0.479964,-0.1102853;0.360918;0.02183417,-0.1961765;0.0964317;0.05454041,-0.2129534;-0.1827223;0.040699,0.06640834;0.008392928;-0.04381199,0.09347649;-0.3674238;0.00547374,0.1042002;-0.7096431;0.07807533,0.1175498;-0.7565965;0.01562567,-0.07392423;-0.001520592;-0.03054335,-0.09449451;-0.3797513;-0.0002382994,-0.09834699;-0.7234998;0.06550432,-0.1087091;-0.7106214;-0.03247263,0.003097822;0.3985647;0.03310315,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001217937;0.1990221;0.01971582,0.004380368;0.4985207;0.03577851,0.1094143;0.3714058;-0.0154685,0.2170066;0.2074616;-0.2153339,0.2630065;0.1283733;-0.479964,-0.1102853;0.360918;0.02183417,-0.1961765;0.0964317;0.05454041,-0.2129534;-0.1827223;0.040699,0.06640834;0.008392928;-0.04381199,0.09347649;-0.3674238;0.00547374,0.1042002;-0.7096431;0.07807533,0.1175498;-0.7565965;0.01562567,-0.07392423;-0.001520592;-0.03054335,-0.09449451;-0.3797513;-0.0002382994,-0.09834699;-0.7234998;0.06550432,-0.1087091;-0.7106214;-0.03247263,0.003097822;0.3985647;0.03310315,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001217937;0.1990221;0.01971582,0.004380368;0.4985207;0.03577851,0.1094143;0.3714058;-0.0154685,0.2170066;0.2074616;-0.2153339,0.2630065;0.1283733;-0.479964,-0.1102853;0.360918;0.02183417,-0.1961765;0.0964317;0.05454041,-0.2129534;-0.1827223;0.040699,0.06640834;0.008392928;-0.04381199,0.09347649;-0.3674238;0.00547374,0.1042002;-0.7096431;0.07807533,0.1175498;-0.7565965;0.01562567,-0.07392423;-0.001520592;-0.03054335,-0.09449451;-0.3797513;-0.0002382994,-0.09834699;-0.7234998;0.06550432,-0.1087091;-0.7106214;-0.03247263,0.003097822;0.3985647;0.03310315,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001229525;0.199017;0.01976701,0.004333158;0.4985065;0.03602761,0.1092058;0.3719607;-0.01603456,0.2307418;0.222156;-0.2189818,0.269211;0.1336823;-0.4818363,-0.1103169;0.3609289;0.02205185,-0.1961972;0.09640616;0.05449092,-0.2130073;-0.1827363;0.04045925,0.06635048;0.008372881;-0.04390339,0.0942647;-0.367381;0.00538937,0.1050028;-0.7095978;0.07800067,0.1172881;-0.757544;0.01657213,-0.07396293;-0.001461642;-0.03045242,-0.09429649;-0.3797227;-0.0003673788,-0.09830321;-0.7234572;0.06543965,-0.1089114;-0.7105765;-0.03251135,0.00307976;0.3985526;0.03326185,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001229525;0.199017;0.01976701,0.004333158;0.4985065;0.03602761,0.1092058;0.3719607;-0.01603456,0.2307418;0.222156;-0.2189818,0.269211;0.1336823;-0.4818363,-0.1103169;0.3609289;0.02205185,-0.1961972;0.09640616;0.05449092,-0.2130073;-0.1827363;0.04045925,0.06635048;0.008372881;-0.04390339,0.0942647;-0.367381;0.00538937,0.1050028;-0.7095978;0.07800067,0.1172881;-0.757544;0.01657213,-0.07396293;-0.001461642;-0.03045242,-0.09429649;-0.3797227;-0.0003673788,-0.09830321;-0.7234572;0.06543965,-0.1089114;-0.7105765;-0.03251135,0.00307976;0.3985526;0.03326185,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001229525;0.199017;0.01976701,0.004333158;0.4985065;0.03602761,0.1092058;0.3719607;-0.01603456,0.2307418;0.222156;-0.2189818,0.269211;0.1336823;-0.4818363,-0.1103169;0.3609289;0.02205185,-0.1961972;0.09640616;0.05449092,-0.2130073;-0.1827363;0.04045925,0.06635048;0.008372881;-0.04390339,0.0942647;-0.367381;0.00538937,0.1050028;-0.7095978;0.07800067,0.1172881;-0.757544;0.01657213,-0.07396293;-0.001461642;-0.03045242,-0.09429649;-0.3797227;-0.0003673788,-0.09830321;-0.7234572;0.06543965,-0.1089114;-0.7105765;-0.03251135,0.00307976;0.3985526;0.03326185,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001281566;0.1990177;0.0197561,0.004429441;0.4985059;0.0360337,0.1091302;0.3726591;-0.01674666,0.2293199;0.2241873;-0.2214673,0.2621377;0.1296201;-0.4829631,-0.1102748;0.361023;0.02215929,-0.1965898;0.09661648;0.05439118,-0.2137297;-0.1824906;0.04005837,0.06619489;0.008330741;-0.04414561,0.09452274;-0.3673486;0.005479101,0.1052076;-0.7096296;0.07779469,0.1170758;-0.7574683;0.01614822,-0.07410264;-0.001219456;-0.0301216,-0.09402044;-0.3795478;-0.0006101243,-0.09817037;-0.7232599;0.06530485,-0.1090513;-0.7103797;-0.03261614,0.003163808;0.3985524;0.03325997,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001281566;0.1990177;0.0197561,0.004429441;0.4985059;0.0360337,0.1091302;0.3726591;-0.01674666,0.2293199;0.2241873;-0.2214673,0.2621377;0.1296201;-0.4829631,-0.1102748;0.361023;0.02215929,-0.1965898;0.09661648;0.05439118,-0.2137297;-0.1824906;0.04005837,0.06619489;0.008330741;-0.04414561,0.09452274;-0.3673486;0.005479101,0.1052076;-0.7096296;0.07779469,0.1170758;-0.7574683;0.01614822,-0.07410264;-0.001219456;-0.0301216,-0.09402044;-0.3795478;-0.0006101243,-0.09817037;-0.7232599;0.06530485,-0.1090513;-0.7103797;-0.03261614,0.003163808;0.3985524;0.03325997,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001281566;0.1990177;0.0197561,0.004429441;0.4985059;0.0360337,0.1091302;0.3726591;-0.01674666,0.2293199;0.2241873;-0.2214673,0.2621377;0.1296201;-0.4829631,-0.1102748;0.361023;0.02215929,-0.1965898;0.09661648;0.05439118,-0.2137297;-0.1824906;0.04005837,0.06619489;0.008330741;-0.04414561,0.09452274;-0.3673486;0.005479101,0.1052076;-0.7096296;0.07779469,0.1170758;-0.7574683;0.01614822,-0.07410264;-0.001219456;-0.0301216,-0.09402044;-0.3795478;-0.0006101243,-0.09817037;-0.7232599;0.06530485,-0.1090513;-0.7103797;-0.03261614,0.003163808;0.3985524;0.03325997,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001098225;0.1990137;0.01980772,0.003797014;0.4984939;0.03633828,0.1086997;0.3734899;-0.01697202,0.1531659;0.1679565;-0.2018471,0.2441024;0.1373505;-0.4648944,-0.1106391;0.3608487;0.02215994,-0.1987696;0.09702477;0.05425294,-0.2163996;-0.182066;0.04019761,0.06614173;0.008341844;-0.04422312,0.09442186;-0.3673425;0.00539045,0.1049424;-0.7096285;0.07770666,0.1168134;-0.7574366;0.01602215,-0.07412165;-0.001269342;-0.03007275,-0.09403808;-0.3796147;-0.0007793624,-0.09835164;-0.7233224;0.06514826,-0.1093259;-0.710438;-0.03276304,0.002726827;0.3985414;0.03344782,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001098225;0.1990137;0.01980772,0.003797014;0.4984939;0.03633828,0.1086997;0.3734899;-0.01697202,0.1531659;0.1679565;-0.2018471,0.2441024;0.1373505;-0.4648944,-0.1106391;0.3608487;0.02215994,-0.1987696;0.09702477;0.05425294,-0.2163996;-0.182066;0.04019761,0.06614173;0.008341844;-0.04422312,0.09442186;-0.3673425;0.00539045,0.1049424;-0.7096285;0.07770666,0.1168134;-0.7574366;0.01602215,-0.07412165;-0.001269342;-0.03007275,-0.09403808;-0.3796147;-0.0007793624,-0.09835164;-0.7233224;0.06514826,-0.1093259;-0.710438;-0.03276304,0.002726827;0.3985414;0.03344782,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001098225;0.1990137;0.01980772,0.003797014;0.4984939;0.03633828,0.1086997;0.3734899;-0.01697202,0.1531659;0.1679565;-0.2018471,0.2441024;0.1373505;-0.4648944,-0.1106391;0.3608487;0.02215994,-0.1987696;0.09702477;0.05425294,-0.2163996;-0.182066;0.04019761,0.06614173;0.008341844;-0.04422312,0.09442186;-0.3673425;0.00539045,0.1049424;-0.7096285;0.07770666,0.1168134;-0.7574366;0.01602215,-0.07412165;-0.001269342;-0.03007275,-0.09403808;-0.3796147;-0.0007793624,-0.09835164;-0.7233224;0.06514826,-0.1093259;-0.710438;-0.03276304,0.002726827;0.3985414;0.03344782,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001081128;0.1990112;0.01983355,0.00373719;0.4984879;0.03643722,0.1084326;0.3734293;-0.01733892,0.1564364;0.1809069;-0.214901,0.227749;0.1673846;-0.4853297,-0.1106728;0.3608301;0.02215439,-0.1992992;0.09720919;0.05454861,-0.2167905;-0.1818498;0.03971249,0.06601226;0.008351103;-0.04441441,0.09439415;-0.3672891;0.005474653,0.1047637;-0.7095335;0.07800892,0.1164638;-0.7574696;0.01645348,-0.07417223;-0.001236886;-0.02994915,-0.09349561;-0.3796203;-0.0007495061,-0.09820417;-0.7233247;0.06516805,-0.1092985;-0.7104388;-0.03272996,0.002681303;0.3985362;0.03351681,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001081128;0.1990112;0.01983355,0.00373719;0.4984879;0.03643722,0.1084326;0.3734293;-0.01733892,0.1564364;0.1809069;-0.214901,0.227749;0.1673846;-0.4853297,-0.1106728;0.3608301;0.02215439,-0.1992992;0.09720919;0.05454861,-0.2167905;-0.1818498;0.03971249,0.06601226;0.008351103;-0.04441441,0.09439415;-0.3672891;0.005474653,0.1047637;-0.7095335;0.07800892,0.1164638;-0.7574696;0.01645348,-0.07417223;-0.001236886;-0.02994915,-0.09349561;-0.3796203;-0.0007495061,-0.09820417;-0.7233247;0.06516805,-0.1092985;-0.7104388;-0.03272996,0.002681303;0.3985362;0.03351681,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.001081128;0.1990112;0.01983355,0.00373719;0.4984879;0.03643722,0.1084326;0.3734293;-0.01733892,0.1564364;0.1809069;-0.214901,0.227749;0.1673846;-0.4853297,-0.1106728;0.3608301;0.02215439,-0.1992992;0.09720919;0.05454861,-0.2167905;-0.1818498;0.03971249,0.06601226;0.008351103;-0.04441441,0.09439415;-0.3672891;0.005474653,0.1047637;-0.7095335;0.07800892,0.1164638;-0.7574696;0.01645348,-0.07417223;-0.001236886;-0.02994915,-0.09349561;-0.3796203;-0.0007495061,-0.09820417;-0.7233247;0.06516805,-0.1092985;-0.7104388;-0.03272996,0.002681303;0.3985362;0.03351681,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0011152;0.1990028;0.01991593,0.00377195;0.4984724;0.03665784,0.1083228;0.3738911;-0.01771782,0.1561874;0.1820157;-0.2159421,0.2270765;0.1719889;-0.4866341,-0.110635;0.3608372;0.02225211,-0.2010461;0.09816173;0.05728713,-0.2171049;-0.1808305;0.03980963,0.06575066;0.008500162;-0.04477274,0.0944896;-0.3670644;0.005479544,0.1049678;-0.709283;0.07812004,0.116526;-0.7567856;0.01599313,-0.07428142;-0.001246963;-0.02967686,-0.0932866;-0.3796819;-0.0009408556,-0.09822209;-0.7233539;0.0651288,-0.1094557;-0.7104616;-0.03275447,0.002719798;0.3985224;0.03367571,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0011152;0.1990028;0.01991593,0.00377195;0.4984724;0.03665784,0.1083228;0.3738911;-0.01771782,0.1561874;0.1820157;-0.2159421,0.2270765;0.1719889;-0.4866341,-0.110635;0.3608372;0.02225211,-0.2010461;0.09816173;0.05728713,-0.2171049;-0.1808305;0.03980963,0.06575066;0.008500162;-0.04477274,0.0944896;-0.3670644;0.005479544,0.1049678;-0.709283;0.07812004,0.116526;-0.7567856;0.01599313,-0.07428142;-0.001246963;-0.02967686,-0.0932866;-0.3796819;-0.0009408556,-0.09822209;-0.7233539;0.0651288,-0.1094557;-0.7104616;-0.03275447,0.002719798;0.3985224;0.03367571,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.0011152;0.1990028;0.01991593,0.00377195;0.4984724;0.03665784,0.1083228;0.3738911;-0.01771782,0.1561874;0.1820157;-0.2159421,0.2270765;0.1719889;-0.4866341,-0.110635;0.3608372;0.02225211,-0.2010461;0.09816173;0.05728713,-0.2171049;-0.1808305;0.03980963,0.06575066;0.008500162;-0.04477274,0.0944896;-0.3670644;0.005479544,0.1049678;-0.709283;0.07812004,0.116526;-0.7567856;0.01599313,-0.07428142;-0.001246963;-0.02967686,-0.0932866;-0.3796819;-0.0009408556,-0.09822209;-0.7233539;0.0651288,-0.1094557;-0.7104616;-0.03275447,0.002719798;0.3985224;0.03367571,0;0;0,0.005137234;0.1990963;0.01828272,0.01300976;0.498601;0.03257839,0.11015;0.37015;-0.02969881,0.1570303;0.1851896;-0.234618,0.238654;0.1369497;-0.4980768,-0.1042789;0.3631181;0.02696352,-0.169396;0.09200463;0.05260051,-0.1974207;-0.1865811;0.05474918,0.06083784;0.00597843;-0.05160441,0.1057631;-0.3665081;0.008690648,0.1172001;-0.7072861;0.08768126,0.1248047;-0.7573493;0.02825011,-0.07731248;-0.0004555469;-0.0205566,-0.08301503;-0.3785846;0.01667112,-0.09140899;-0.720386;0.09151308,-0.1089283;-0.7085606;-0.005248278,0.01028429;0.3986616;0.03041718,40.45007
+0;0;0,0.00115595;0.1989986;0.01995555,0.00383979;0.4984609;0.03683534,0.1082277;0.3742363;-0.01807268,0.1347259;0.1745267;-0.2125307,0.2188239;0.188372;-0.4792438,-0.1107;0.3611358;0.02252278,-0.2017682;0.09877765;0.05822721,-0.2161272;-0.1801919;0.03899654,0.06556015;0.008661938;-0.0450204,0.09448532;-0.3668512;0.005509086,0.1050366;-0.7090561;0.07820304,0.115913;-0.7572353;0.01680498,-0.07436597;-0.001362631;-0.02945921,-0.09297341;-0.3798443;-0.001080388,-0.09816176;-0.7234773;0.06517245,-0.1095546;-0.7105817;-0.03269301,0.002772386;0.398513;0.03379068,0;0;0,0.01060364;0.199499;0.009364632,0.02562403;0.4990641;0.009719601,0.1153224;0.3671951;-0.05386804,0.166757;0.1549207;-0.2290653,0.2325595;0.1514224;-0.5012009,-0.09632617;0.3738499;0.02229851,-0.1892066;0.1177634;0.08705139,-0.1480784;-0.1159743;-0.06152558,0.0546858;0.003650075;-0.05827641,0.1073783;-0.3669807;0.006963998,0.1175041;-0.7052746;0.09615335,0.1218106;-0.7563784;0.03781272,-0.07977477;0.002432388;-0.005483689,-0.08186246;-0.376461;0.02342001,-0.09180378;-0.717503;0.1014683,-0.1153013;-0.7063444;0.006111726,0.02054003;0.3992292;0.01238987,48.40296
+0;0;0,0.00115595;0.1989986;0.01995555,0.00383979;0.4984609;0.03683534,0.1082277;0.3742363;-0.01807268,0.1347259;0.1745267;-0.2125307,0.2188239;0.188372;-0.4792438,-0.1107;0.3611358;0.02252278,-0.2017682;0.09877765;0.05822721,-0.2161272;-0.1801919;0.03899654,0.06556015;0.008661938;-0.0450204,0.09448532;-0.3668512;0.005509086,0.1050366;-0.7090561;0.07820304,0.115913;-0.7572353;0.01680498,-0.07436597;-0.001362631;-0.02945921,-0.09297341;-0.3798443;-0.001080388,-0.09816176;-0.7234773;0.06517245,-0.1095546;-0.7105817;-0.03269301,0.002772386;0.398513;0.03379068,0;0;0,0.01045245;0.1994979;0.009556985,0.02542819;0.4990652;0.01000308,0.1150858;0.3670402;-0.0536431,0.1677017;0.1548685;-0.2286138,0.2319426;0.1635926;-0.5010051,-0.09649237;0.3740503;0.02306452,-0.1887438;0.1174225;0.08656117,-0.1462021;-0.1139579;-0.06527203,0.05478449;0.003717453;-0.05817937,0.1072758;-0.3668817;0.007402297,0.1172362;-0.7052484;0.09633352,0.1222143;-0.756826;0.03871145,-0.07973678;0.002296142;-0.006064083,-0.08209816;-0.3765354;0.02361954,-0.09201541;-0.7175996;0.1015734,-0.1155872;-0.7064322;0.006233484,0.02037253;0.3992279;0.01263928,48.42327
+0;0;0,0.00115595;0.1989986;0.01995555,0.00383979;0.4984609;0.03683534,0.1082277;0.3742363;-0.01807268,0.1347259;0.1745267;-0.2125307,0.2188239;0.188372;-0.4792438,-0.1107;0.3611358;0.02252278,-0.2017682;0.09877765;0.05822721,-0.2161272;-0.1801919;0.03899654,0.06556015;0.008661938;-0.0450204,0.09448532;-0.3668512;0.005509086,0.1050366;-0.7090561;0.07820304,0.115913;-0.7572353;0.01680498,-0.07436597;-0.001362631;-0.02945921,-0.09297341;-0.3798443;-0.001080388,-0.09816176;-0.7234773;0.06517245,-0.1095546;-0.7105817;-0.03269301,0.002772386;0.398513;0.03379068,0;0;0,0.01045245;0.1994979;0.009556985,0.02542819;0.4990652;0.01000308,0.1150858;0.3670402;-0.0536431,0.1677017;0.1548685;-0.2286138,0.2319426;0.1635926;-0.5010051,-0.09649237;0.3740503;0.02306452,-0.1887438;0.1174225;0.08656117,-0.1462021;-0.1139579;-0.06527203,0.05478449;0.003717453;-0.05817937,0.1072758;-0.3668817;0.007402297,0.1172362;-0.7052484;0.09633352,0.1222143;-0.756826;0.03871145,-0.07973678;0.002296142;-0.006064083,-0.08209816;-0.3765354;0.02361954,-0.09201541;-0.7175996;0.1015734,-0.1155872;-0.7064322;0.006233484,0.02037253;0.3992279;0.01263928,48.44263
+0;0;0,0.001168966;0.1989901;0.02003961,0.003861007;0.4984501;0.03695504,0.1077659;0.3749456;-0.01925364,0.1333452;0.1742291;-0.2127959,0.2225228;0.196276;-0.4772979,-0.1106802;0.3611394;0.02259119,-0.2023847;0.09900525;0.05831231,-0.2158391;-0.1799144;0.03775058,0.06527121;0.008609328;-0.04544831,0.09455836;-0.3668076;0.005584996,0.1049977;-0.7089673;0.07850794,0.09080417;-0.6959558;-0.01901097,-0.07446203;-0.001147554;-0.0292248,-0.09311201;-0.3796672;-0.001384931,-0.09837051;-0.7232578;0.06508206,-0.1101429;-0.7103606;-0.03273872,0.002792498;0.3985024;0.03390324,0;0;0,0.01005638;0.1995019;0.009893619,0.02347257;0.4991454;0.01222501,0.1153708;0.3676842;-0.05040041,0.1665976;0.1630544;-0.2345267,0.2313462;0.1725504;-0.5067718,-0.09775858;0.3735384;0.02262546,-0.1895123;0.1167582;0.08622685,-0.1476035;-0.1150819;-0.06508017,0.05497227;0.003791376;-0.05799719,0.1067761;-0.3668641;0.007812295,0.116774;-0.7052374;0.09671435,0.1216433;-0.7565198;0.0386673,-0.07971933;0.002145898;-0.006342242,-0.08244272;-0.3766395;0.02389326,-0.09231272;-0.717695;0.1018918,-0.1147791;-0.706461;0.006272182,0.01913233;0.3992546;0.01395385,48.45403
+0;0;0,0.001168966;0.1989901;0.02003961,0.003861007;0.4984501;0.03695504,0.1077659;0.3749456;-0.01925364,0.1333452;0.1742291;-0.2127959,0.2225228;0.196276;-0.4772979,-0.1106802;0.3611394;0.02259119,-0.2023847;0.09900525;0.05831231,-0.2158391;-0.1799144;0.03775058,0.06527121;0.008609328;-0.04544831,0.09455836;-0.3668076;0.005584996,0.1049977;-0.7089673;0.07850794,0.09080417;-0.6959558;-0.01901097,-0.07446203;-0.001147554;-0.0292248,-0.09311201;-0.3796672;-0.001384931,-0.09837051;-0.7232578;0.06508206,-0.1101429;-0.7103606;-0.03273872,0.002792498;0.3985024;0.03390324,0;0;0,0.01005638;0.1995019;0.009893619,0.02347257;0.4991454;0.01222501,0.1153708;0.3676842;-0.05040041,0.1665976;0.1630544;-0.2345267,0.2313462;0.1725504;-0.5067718,-0.09775858;0.3735384;0.02262546,-0.1895123;0.1167582;0.08622685,-0.1476035;-0.1150819;-0.06508017,0.05497227;0.003791376;-0.05799719,0.1067761;-0.3668641;0.007812295,0.116774;-0.7052374;0.09671435,0.1216433;-0.7565198;0.0386673,-0.07971933;0.002145898;-0.006342242,-0.08244272;-0.3766395;0.02389326,-0.09231272;-0.717695;0.1018918,-0.1147791;-0.706461;0.006272182,0.01913233;0.3992546;0.01395385,48.47609
+0;0;0,0.001168966;0.1989901;0.02003961,0.003861007;0.4984501;0.03695504,0.1077659;0.3749456;-0.01925364,0.1333452;0.1742291;-0.2127959,0.2225228;0.196276;-0.4772979,-0.1106802;0.3611394;0.02259119,-0.2023847;0.09900525;0.05831231,-0.2158391;-0.1799144;0.03775058,0.06527121;0.008609328;-0.04544831,0.09455836;-0.3668076;0.005584996,0.1049977;-0.7089673;0.07850794,0.09080417;-0.6959558;-0.01901097,-0.07446203;-0.001147554;-0.0292248,-0.09311201;-0.3796672;-0.001384931,-0.09837051;-0.7232578;0.06508206,-0.1101429;-0.7103606;-0.03273872,0.002792498;0.3985024;0.03390324,0;0;0,0.009888626;0.1995091;0.009916358,0.0231724;0.4991587;0.012181,0.114987;0.3675461;-0.05050408,0.1670319;0.1647809;-0.2364547,0.2318861;0.1791037;-0.5084635,-0.09796473;0.3731632;0.02233835,-0.1875479;0.1147933;0.08250325,-0.1455448;-0.1150565;-0.07178495,0.05504106;0.003803323;-0.05793113,0.1067368;-0.3668391;0.008036561,0.1169861;-0.7051765;0.09704625,0.1216315;-0.7567073;0.03933012,-0.07971127;0.002148465;-0.006441927,-0.08254128;-0.3766105;0.02411357,-0.09206286;-0.7177987;0.1015729,-0.1145361;-0.7065463;0.005951397,0.01886037;0.3992672;0.0139431,48.48753
+0;0;0,0.001357707;0.1989755;0.02017215,0.004247121;0.4984304;0.03713492,0.1072218;0.3748889;-0.0206824,0.1369187;0.1780879;-0.2176277,0.2187533;0.2180996;-0.4823958,-0.1105102;0.361458;0.02289651,-0.2024146;0.09933954;0.05821645,-0.2153916;-0.1795509;0.03696293,0.06488463;0.00880269;-0.04596192,0.09466095;-0.3664477;0.006005093,0.1052244;-0.7086059;0.07891726,0.09052854;-0.6955931;-0.01852743,-0.07457745;-0.001322404;-0.02892151,-0.09290469;-0.3798814;-0.001403512,-0.09831053;-0.7233498;0.06568009,-0.1105864;-0.7104514;-0.03207901,0.003085615;0.3984838;0.03408011,0;0;0,0.009888626;0.1995091;0.009916358,0.0231724;0.4991587;0.012181,0.114987;0.3675461;-0.05050408,0.1670319;0.1647809;-0.2364547,0.2318861;0.1791037;-0.5084635,-0.09796473;0.3731632;0.02233835,-0.1875479;0.1147933;0.08250325,-0.1455448;-0.1150565;-0.07178495,0.05504106;0.003803323;-0.05793113,0.1067368;-0.3668391;0.008036561,0.1169861;-0.7051765;0.09704625,0.1216315;-0.7567073;0.03933012,-0.07971127;0.002148465;-0.006441927,-0.08254128;-0.3766105;0.02411357,-0.09206286;-0.7177987;0.1015729,-0.1145361;-0.7065463;0.005951397,0.01886037;0.3992672;0.0139431,48.49856
+0;0;0,0.001357707;0.1989755;0.02017215,0.004247121;0.4984304;0.03713492,0.1072218;0.3748889;-0.0206824,0.1369187;0.1780879;-0.2176277,0.2187533;0.2180996;-0.4823958,-0.1105102;0.361458;0.02289651,-0.2024146;0.09933954;0.05821645,-0.2153916;-0.1795509;0.03696293,0.06488463;0.00880269;-0.04596192,0.09466095;-0.3664477;0.006005093,0.1052244;-0.7086059;0.07891726,0.09052854;-0.6955931;-0.01852743,-0.07457745;-0.001322404;-0.02892151,-0.09290469;-0.3798814;-0.001403512,-0.09831053;-0.7233498;0.06568009,-0.1105864;-0.7104514;-0.03207901,0.003085615;0.3984838;0.03408011,0;0;0,0.009888626;0.1995091;0.009916358,0.0231724;0.4991587;0.012181,0.114987;0.3675461;-0.05050408,0.1670319;0.1647809;-0.2364547,0.2318861;0.1791037;-0.5084635,-0.09796473;0.3731632;0.02233835,-0.1875479;0.1147933;0.08250325,-0.1455448;-0.1150565;-0.07178495,0.05504106;0.003803323;-0.05793113,0.1067368;-0.3668391;0.008036561,0.1169861;-0.7051765;0.09704625,0.1216315;-0.7567073;0.03933012,-0.07971127;0.002148465;-0.006441927,-0.08254128;-0.3766105;0.02411357,-0.09206286;-0.7177987;0.1015729,-0.1145361;-0.7065463;0.005951397,0.01886037;0.3992672;0.0139431,48.50969
+0;0;0,0.001357707;0.1989755;0.02017215,0.004247121;0.4984304;0.03713492,0.1072218;0.3748889;-0.0206824,0.1369187;0.1780879;-0.2176277,0.2187533;0.2180996;-0.4823958,-0.1105102;0.361458;0.02289651,-0.2024146;0.09933954;0.05821645,-0.2153916;-0.1795509;0.03696293,0.06488463;0.00880269;-0.04596192,0.09466095;-0.3664477;0.006005093,0.1052244;-0.7086059;0.07891726,0.09052854;-0.6955931;-0.01852743,-0.07457745;-0.001322404;-0.02892151,-0.09290469;-0.3798814;-0.001403512,-0.09831053;-0.7233498;0.06568009,-0.1105864;-0.7104514;-0.03207901,0.003085615;0.3984838;0.03408011,0;0;0,0.009723181;0.1995209;0.009841809,0.02277401;0.4991817;0.01179977,0.1148205;0.3676484;-0.05054921,0.1677145;0.1622474;-0.2333405,0.2306235;0.1796038;-0.5056294,-0.09823816;0.3731983;0.02288004,-0.1873897;0.1146255;0.08281437,-0.1449735;-0.1150456;-0.07162669,0.05508915;0.003842563;-0.05788281,0.1066467;-0.3668011;0.008186202,0.1169201;-0.7051389;0.09719141,0.1218009;-0.7566075;0.03940683,-0.07969657;0.002075988;-0.006644273,-0.08270595;-0.3766655;0.02410949,-0.09222636;-0.7178133;0.1017472,-0.114788;-0.7065783;0.006149843,0.01853007;0.3992898;0.01369232,48.52098
+0;0;0,0.00148259;0.1989653;0.02026347,0.004526372;0.4984142;0.03730962,0.1068778;0.374974;-0.02161548,0.1922866;0.2569653;-0.2607374,0.2210623;0.2529339;-0.5392257,-0.1103489;0.3615268;0.02319807,-0.2021068;0.09933016;0.05831832,-0.2148946;-0.1795242;0.0364842,0.06489342;0.008678768;-0.04597306,0.09497191;-0.3665135;0.006238744,0.1055385;-0.7086725;0.07914674,0.09049871;-0.6956565;-0.01824602,-0.07460828;-0.001242438;-0.02884546,-0.09262107;-0.379816;-0.001320841,-0.09787122;-0.7232552;0.06592453,-0.110496;-0.7103481;-0.03179164,0.00328984;0.3984697;0.03421893,0;0;0,0.009723181;0.1995209;0.009841809,0.02277401;0.4991817;0.01179977,0.1148205;0.3676484;-0.05054921,0.1677145;0.1622474;-0.2333405,0.2306235;0.1796038;-0.5056294,-0.09823816;0.3731983;0.02288004,-0.1873897;0.1146255;0.08281437,-0.1449735;-0.1150456;-0.07162669,0.05508915;0.003842563;-0.05788281,0.1066467;-0.3668011;0.008186202,0.1169201;-0.7051389;0.09719141,0.1218009;-0.7566075;0.03940683,-0.07969657;0.002075988;-0.006644273,-0.08270595;-0.3766655;0.02410949,-0.09222636;-0.7178133;0.1017472,-0.114788;-0.7065783;0.006149843,0.01853007;0.3992898;0.01369232,48.53248
+0;0;0,0.00148259;0.1989653;0.02026347,0.004526372;0.4984142;0.03730962,0.1068778;0.374974;-0.02161548,0.1922866;0.2569653;-0.2607374,0.2210623;0.2529339;-0.5392257,-0.1103489;0.3615268;0.02319807,-0.2021068;0.09933016;0.05831832,-0.2148946;-0.1795242;0.0364842,0.06489342;0.008678768;-0.04597306,0.09497191;-0.3665135;0.006238744,0.1055385;-0.7086725;0.07914674,0.09049871;-0.6956565;-0.01824602,-0.07460828;-0.001242438;-0.02884546,-0.09262107;-0.379816;-0.001320841,-0.09787122;-0.7232552;0.06592453,-0.110496;-0.7103481;-0.03179164,0.00328984;0.3984697;0.03421893,0;0;0,0.009513718;0.1995266;0.009930146,0.02223129;0.4992017;0.01191705,0.1144494;0.3676875;-0.05037988,0.1681826;0.1630966;-0.2338337,0.2213203;0.2094162;-0.504815,-0.09862158;0.3729502;0.02272331,-0.1878118;0.1144336;0.08284229,-0.1439088;-0.1133365;-0.0739803,0.05522517;0.003829869;-0.05775389,0.1061715;-0.3667741;0.009008165,0.1164307;-0.7052386;0.09753232,0.1215649;-0.7565769;0.03958646,-0.07967167;0.002089673;-0.00693231,-0.08285792;-0.376611;0.02430335,-0.09244983;-0.7177716;0.1018753,-0.1149538;-0.7065374;0.00626456,0.01810793;0.3993045;0.01379713,48.55437
+0;0;0,0.00148259;0.1989653;0.02026347,0.004526372;0.4984142;0.03730962,0.1068778;0.374974;-0.02161548,0.1922866;0.2569653;-0.2607374,0.2210623;0.2529339;-0.5392257,-0.1103489;0.3615268;0.02319807,-0.2021068;0.09933016;0.05831832,-0.2148946;-0.1795242;0.0364842,0.06489342;0.008678768;-0.04597306,0.09497191;-0.3665135;0.006238744,0.1055385;-0.7086725;0.07914674,0.09049871;-0.6956565;-0.01824602,-0.07460828;-0.001242438;-0.02884546,-0.09262107;-0.379816;-0.001320841,-0.09787122;-0.7232552;0.06592453,-0.110496;-0.7103481;-0.03179164,0.00328984;0.3984697;0.03421893,0;0;0,0.009513718;0.1995266;0.009930146,0.02223129;0.4992017;0.01191705,0.1144494;0.3676875;-0.05037988,0.1681826;0.1630966;-0.2338337,0.2213203;0.2094162;-0.504815,-0.09862158;0.3729502;0.02272331,-0.1878118;0.1144336;0.08284229,-0.1439088;-0.1133365;-0.0739803,0.05522517;0.003829869;-0.05775389,0.1061715;-0.3667741;0.009008165,0.1164307;-0.7052386;0.09753232,0.1215649;-0.7565769;0.03958646,-0.07967167;0.002089673;-0.00693231,-0.08285792;-0.376611;0.02430335,-0.09244983;-0.7177716;0.1018753,-0.1149538;-0.7065374;0.00626456,0.01810793;0.3993045;0.01379713,48.56565
+0;0;0,0.001503762;0.1989427;0.02048298,0.004552715;0.4983793;0.03772628,0.106546;0.3751169;-0.02196748,0.1660383;0.2584732;-0.2694648,0.2335455;0.2321579;-0.5399279,-0.110404;0.3617385;0.0235611,-0.2009608;0.09882975;0.05640107,-0.2150512;-0.1800296;0.03545005,0.06479634;0.008538889;-0.04613592,0.09488565;-0.3665469;0.006828751,0.1053112;-0.7086912;0.07982591,0.0900728;-0.6956659;-0.01753759,-0.07472582;-0.001248278;-0.02853932,-0.0925654;-0.3798321;-0.001043022,-0.09793236;-0.723224;0.06643392,-0.1107588;-0.7103071;-0.03125769,0.003313096;0.3984361;0.03459378,0;0;0,0.009513718;0.1995266;0.009930146,0.02223129;0.4992017;0.01191705,0.1144494;0.3676875;-0.05037988,0.1681826;0.1630966;-0.2338337,0.2213203;0.2094162;-0.504815,-0.09862158;0.3729502;0.02272331,-0.1878118;0.1144336;0.08284229,-0.1439088;-0.1133365;-0.0739803,0.05522517;0.003829869;-0.05775389,0.1061715;-0.3667741;0.009008165,0.1164307;-0.7052386;0.09753232,0.1215649;-0.7565769;0.03958646,-0.07967167;0.002089673;-0.00693231,-0.08285792;-0.376611;0.02430335,-0.09244983;-0.7177716;0.1018753,-0.1149538;-0.7065374;0.00626456,0.01810793;0.3993045;0.01379713,48.57674
+0;0;0,0.001503762;0.1989427;0.02048298,0.004552715;0.4983793;0.03772628,0.106546;0.3751169;-0.02196748,0.1660383;0.2584732;-0.2694648,0.2335455;0.2321579;-0.5399279,-0.110404;0.3617385;0.0235611,-0.2009608;0.09882975;0.05640107,-0.2150512;-0.1800296;0.03545005,0.06479634;0.008538889;-0.04613592,0.09488565;-0.3665469;0.006828751,0.1053112;-0.7086912;0.07982591,0.0900728;-0.6956659;-0.01753759,-0.07472582;-0.001248278;-0.02853932,-0.0925654;-0.3798321;-0.001043022,-0.09793236;-0.723224;0.06643392,-0.1107588;-0.7103071;-0.03125769,0.003313096;0.3984361;0.03459378,0;0;0,0.009400924;0.1995338;0.009893357,0.02205241;0.4992122;0.0117419,0.1154046;0.3679132;-0.04887588,0.1677511;0.1657863;-0.2354356,0.2222326;0.2127393;-0.5060408,-0.09860705;0.3723259;0.02316258,-0.1862803;0.1129846;0.0819459,-0.1426904;-0.1146628;-0.07514189,0.05524627;0.003844571;-0.05773273,0.1061796;-0.366765;0.0090083,0.1164011;-0.7052489;0.09746264,0.1213812;-0.7566552;0.03959893,-0.07967401;0.002016104;-0.006927219,-0.08279718;-0.3766425;0.02482051,-0.09252309;-0.7178618;0.1021172,-0.1145055;-0.7066224;0.006384112,0.01793314;0.3993159;0.01367965,48.58812
+0;0;0,0.001503762;0.1989427;0.02048298,0.004552715;0.4983793;0.03772628,0.106546;0.3751169;-0.02196748,0.1660383;0.2584732;-0.2694648,0.2335455;0.2321579;-0.5399279,-0.110404;0.3617385;0.0235611,-0.2009608;0.09882975;0.05640107,-0.2150512;-0.1800296;0.03545005,0.06479634;0.008538889;-0.04613592,0.09488565;-0.3665469;0.006828751,0.1053112;-0.7086912;0.07982591,0.0900728;-0.6956659;-0.01753759,-0.07472582;-0.001248278;-0.02853932,-0.0925654;-0.3798321;-0.001043022,-0.09793236;-0.723224;0.06643392,-0.1107588;-0.7103071;-0.03125769,0.003313096;0.3984361;0.03459378,0;0;0,0.009400924;0.1995338;0.009893357,0.02205241;0.4992122;0.0117419,0.1154046;0.3679132;-0.04887588,0.1677511;0.1657863;-0.2354356,0.2222326;0.2127393;-0.5060408,-0.09860705;0.3723259;0.02316258,-0.1862803;0.1129846;0.0819459,-0.1426904;-0.1146628;-0.07514189,0.05524627;0.003844571;-0.05773273,0.1061796;-0.366765;0.0090083,0.1164011;-0.7052489;0.09746264,0.1213812;-0.7566552;0.03959893,-0.07967401;0.002016104;-0.006927219,-0.08279718;-0.3766425;0.02482051,-0.09252309;-0.7178618;0.1021172,-0.1145055;-0.7066224;0.006384112,0.01793314;0.3993159;0.01367965,48.59922
+0;0;0,0.001485052;0.1989286;0.02062016,0.004564551;0.498354;0.03804199,0.106401;0.3754687;-0.02211301,0.1669626;0.2583346;-0.2691188,0.2356129;0.2416448;-0.540059,-0.1105731;0.3622112;0.02394337,-0.2007767;0.09911421;0.05624363,-0.2149956;-0.1796939;0.03470603,0.06474903;0.00842154;-0.0462238,0.09479783;-0.3665958;0.007246111,0.1054942;-0.7087325;0.08024013,0.09010509;-0.6957083;-0.01709948,-0.07480606;-0.001243049;-0.02832857,-0.09247278;-0.379861;-0.001192531,-0.0979618;-0.7231452;0.06682061,-0.1109378;-0.7102214;-0.03085246,0.003313639;0.3984123;0.03486589,0;0;0,0.009215597;0.1995382;0.009978797,0.02169943;0.4992235;0.01181819,0.1150656;0.3678138;-0.04880018,0.1485842;0.1433059;-0.2127291,0.2156173;0.2055315;-0.4773695,-0.09885079;0.3718634;0.02253173,-0.1868087;0.1127821;0.08203184,-0.143139;-0.1143694;-0.07575016,0.05539695;0.003898164;-0.05758457,0.1058635;-0.3666833;0.009665027,0.116111;-0.7052811;0.09767935,0.1222623;-0.7569839;0.04034855,-0.07964022;0.001882886;-0.007340954,-0.0828295;-0.3767274;0.02497153,-0.09279765;-0.7179458;0.1022415,-0.1146298;-0.7067018;0.006473221,0.01763525;0.399325;0.01376475,48.62164
+0;0;0,0.001485052;0.1989286;0.02062016,0.004564551;0.498354;0.03804199,0.106401;0.3754687;-0.02211301,0.1669626;0.2583346;-0.2691188,0.2356129;0.2416448;-0.540059,-0.1105731;0.3622112;0.02394337,-0.2007767;0.09911421;0.05624363,-0.2149956;-0.1796939;0.03470603,0.06474903;0.00842154;-0.0462238,0.09479783;-0.3665958;0.007246111,0.1054942;-0.7087325;0.08024013,0.09010509;-0.6957083;-0.01709948,-0.07480606;-0.001243049;-0.02832857,-0.09247278;-0.379861;-0.001192531,-0.0979618;-0.7231452;0.06682061,-0.1109378;-0.7102214;-0.03085246,0.003313639;0.3984123;0.03486589,0;0;0,0.009215597;0.1995382;0.009978797,0.02169943;0.4992235;0.01181819,0.1150656;0.3678138;-0.04880018,0.1485842;0.1433059;-0.2127291,0.2156173;0.2055315;-0.4773695,-0.09885079;0.3718634;0.02253173,-0.1868087;0.1127821;0.08203184,-0.143139;-0.1143694;-0.07575016,0.05539695;0.003898164;-0.05758457,0.1058635;-0.3666833;0.009665027,0.116111;-0.7052811;0.09767935,0.1222623;-0.7569839;0.04034855,-0.07964022;0.001882886;-0.007340954,-0.0828295;-0.3767274;0.02497153,-0.09279765;-0.7179458;0.1022415,-0.1146298;-0.7067018;0.006473221,0.01763525;0.399325;0.01376475,48.64381
+0;0;0,0.001485052;0.1989286;0.02062016,0.004564551;0.498354;0.03804199,0.106401;0.3754687;-0.02211301,0.1669626;0.2583346;-0.2691188,0.2356129;0.2416448;-0.540059,-0.1105731;0.3622112;0.02394337,-0.2007767;0.09911421;0.05624363,-0.2149956;-0.1796939;0.03470603,0.06474903;0.00842154;-0.0462238,0.09479783;-0.3665958;0.007246111,0.1054942;-0.7087325;0.08024013,0.09010509;-0.6957083;-0.01709948,-0.07480606;-0.001243049;-0.02832857,-0.09247278;-0.379861;-0.001192531,-0.0979618;-0.7231452;0.06682061,-0.1109378;-0.7102214;-0.03085246,0.003313639;0.3984123;0.03486589,0;0;0,0.009132099;0.1995484;0.009851705,0.02166741;0.4992321;0.01146568,0.114916;0.3677019;-0.04911687,0.1657712;0.1645157;-0.234937,0.2236512;0.2115073;-0.5048289,-0.09890951;0.3720239;0.02288661,-0.1865641;0.1127677;0.08207221,-0.1430396;-0.1143621;-0.07578112,0.05552838;0.003969856;-0.05745292,0.105892;-0.3666243;0.009803798,0.1161077;-0.7052225;0.09782019,0.1236314;-0.7564365;0.03996088,-0.07958782;0.001806973;-0.007906488,-0.08300834;-0.376763;0.0248519,-0.09268738;-0.7179537;0.1022807,-0.1146708;-0.7067258;0.006550141,0.01756368;0.3993371;0.01350698,48.66601
+0;0;0,0.001417533;0.1988977;0.02092168,0.004454989;0.4983079;0.03862024,0.1060776;0.3761551;-0.02234859,0.1976145;0.2676626;-0.2636997,0.2049728;0.3127393;-0.5399495,-0.1106117;0.3620162;0.02436088,-0.200915;0.09891278;0.05632806,-0.2151178;-0.1798659;0.03440269,0.06462438;0.008280054;-0.04642336,0.09470123;-0.3666548;0.007606491,0.105229;-0.7087631;0.08075746,0.08959539;-0.6957264;-0.01654536,-0.07493383;-0.001180426;-0.02799154,-0.09267589;-0.3797915;-0.0008096583,-0.09812097;-0.7230405;0.06738488,-0.1113433;-0.7101033;-0.03025747,0.00322167;0.3983696;0.03533299,0;0;0,0.008900412;0.199554;0.009949214,0.02111699;0.4992503;0.01170451,0.1145622;0.3679711;-0.04894333,0.1683848;0.1664597;-0.2357489,0.2383134;0.1666675;-0.5068761,-0.09938134;0.3719924;0.02240349,-0.1878722;0.1132514;0.08259055,-0.1445714;-0.1143305;-0.074672,0.05568092;0.004031213;-0.05730083,0.1056857;-0.3666193;0.009913236,0.1158961;-0.7052106;0.09795682,0.1225155;-0.7562917;0.03980153,-0.07955048;0.001671562;-0.008302202,-0.08337933;-0.3768538;0.02492337,-0.09295569;-0.7180578;0.1023065,-0.1148044;-0.7068226;0.006543666,0.01713336;0.3993495;0.0136906,48.68849
+0;0;0,0.001417533;0.1988977;0.02092168,0.004454989;0.4983079;0.03862024,0.1060776;0.3761551;-0.02234859,0.1976145;0.2676626;-0.2636997,0.2049728;0.3127393;-0.5399495,-0.1106117;0.3620162;0.02436088,-0.200915;0.09891278;0.05632806,-0.2151178;-0.1798659;0.03440269,0.06462438;0.008280054;-0.04642336,0.09470123;-0.3666548;0.007606491,0.105229;-0.7087631;0.08075746,0.08959539;-0.6957264;-0.01654536,-0.07493383;-0.001180426;-0.02799154,-0.09267589;-0.3797915;-0.0008096583,-0.09812097;-0.7230405;0.06738488,-0.1113433;-0.7101033;-0.03025747,0.00322167;0.3983696;0.03533299,0;0;0,0.008900412;0.199554;0.009949214,0.02111699;0.4992503;0.01170451,0.1145622;0.3679711;-0.04894333,0.1683848;0.1664597;-0.2357489,0.2383134;0.1666675;-0.5068761,-0.09938134;0.3719924;0.02240349,-0.1878722;0.1132514;0.08259055,-0.1445714;-0.1143305;-0.074672,0.05568092;0.004031213;-0.05730083,0.1056857;-0.3666193;0.009913236,0.1158961;-0.7052106;0.09795682,0.1225155;-0.7562917;0.03980153,-0.07955048;0.001671562;-0.008302202,-0.08337933;-0.3768538;0.02492337,-0.09295569;-0.7180578;0.1023065,-0.1148044;-0.7068226;0.006543666,0.01713336;0.3993495;0.0136906,48.69964
+0;0;0,0.001417533;0.1988977;0.02092168,0.004454989;0.4983079;0.03862024,0.1060776;0.3761551;-0.02234859,0.1976145;0.2676626;-0.2636997,0.2049728;0.3127393;-0.5399495,-0.1106117;0.3620162;0.02436088,-0.200915;0.09891278;0.05632806,-0.2151178;-0.1798659;0.03440269,0.06462438;0.008280054;-0.04642336,0.09470123;-0.3666548;0.007606491,0.105229;-0.7087631;0.08075746,0.08959539;-0.6957264;-0.01654536,-0.07493383;-0.001180426;-0.02799154,-0.09267589;-0.3797915;-0.0008096583,-0.09812097;-0.7230405;0.06738488,-0.1113433;-0.7101033;-0.03025747,0.00322167;0.3983696;0.03533299,0;0;0,0.008900412;0.199554;0.009949214,0.02111699;0.4992503;0.01170451,0.1145622;0.3679711;-0.04894333,0.1683848;0.1664597;-0.2357489,0.2383134;0.1666675;-0.5068761,-0.09938134;0.3719924;0.02240349,-0.1878722;0.1132514;0.08259055,-0.1445714;-0.1143305;-0.074672,0.05568092;0.004031213;-0.05730083,0.1056857;-0.3666193;0.009913236,0.1158961;-0.7052106;0.09795682,0.1225155;-0.7562917;0.03980153,-0.07955048;0.001671562;-0.008302202,-0.08337933;-0.3768538;0.02492337,-0.09295569;-0.7180578;0.1023065,-0.1148044;-0.7068226;0.006543666,0.01713336;0.3993495;0.0136906,48.71082
+0;0;0,0.001392375;0.1988805;0.02108563,0.004412959;0.4982767;0.03901018,0.1060081;0.3762538;-0.02211945,0.1974198;0.2693397;-0.2642212,0.2228104;0.3082616;-0.5403379,-0.1106723;0.3620651;0.02468,-0.2006886;0.09890312;0.05697332,-0.2141273;-0.1798213;0.03390612,0.06451758;0.008179903;-0.04658939,0.09466024;-0.3666596;0.008061595,0.1053309;-0.7087291;0.08137297,0.1163215;-0.7571189;0.02026442,-0.07502796;-0.001154528;-0.02773936,-0.09279431;-0.3797605;-0.0005016867,-0.0982822;-0.723006;0.0677067,-0.1115405;-0.7100599;-0.02993234,0.003184514;0.39834;0.03566906,0;0;0,0.008820749;0.1995552;0.009995887,0.0210542;0.4992503;0.0118202,0.1142712;0.3676252;-0.04899934,0.1692118;0.1665537;-0.2359534,0.2387826;0.1699756;-0.5071511,-0.09946492;0.3718839;0.02210962,-0.1884087;0.1135081;0.08319105,-0.1449684;-0.1135872;-0.07473519,0.05577151;0.004102101;-0.05720761,0.1056643;-0.3665546;0.01005516,0.1160935;-0.705127;0.09814572,0.1223916;-0.7564006;0.04022385,-0.07953411;0.001595339;-0.008472359,-0.0833251;-0.3768926;0.02517982,-0.09308799;-0.7181368;0.102362,-0.1148875;-0.7068917;0.006586097,0.01705272;0.3993497;0.0137869,48.72202
+0;0;0,0.001392375;0.1988805;0.02108563,0.004412959;0.4982767;0.03901018,0.1060081;0.3762538;-0.02211945,0.1974198;0.2693397;-0.2642212,0.2228104;0.3082616;-0.5403379,-0.1106723;0.3620651;0.02468,-0.2006886;0.09890312;0.05697332,-0.2141273;-0.1798213;0.03390612,0.06451758;0.008179903;-0.04658939,0.09466024;-0.3666596;0.008061595,0.1053309;-0.7087291;0.08137297,0.1163215;-0.7571189;0.02026442,-0.07502796;-0.001154528;-0.02773936,-0.09279431;-0.3797605;-0.0005016867,-0.0982822;-0.723006;0.0677067,-0.1115405;-0.7100599;-0.02993234,0.003184514;0.39834;0.03566906,0;0;0,0.008820749;0.1995552;0.009995887,0.0210542;0.4992503;0.0118202,0.1142712;0.3676252;-0.04899934,0.1692118;0.1665537;-0.2359534,0.2387826;0.1699756;-0.5071511,-0.09946492;0.3718839;0.02210962,-0.1884087;0.1135081;0.08319105,-0.1449684;-0.1135872;-0.07473519,0.05577151;0.004102101;-0.05720761,0.1056643;-0.3665546;0.01005516,0.1160935;-0.705127;0.09814572,0.1223916;-0.7564006;0.04022385,-0.07953411;0.001595339;-0.008472359,-0.0833251;-0.3768926;0.02517982,-0.09308799;-0.7181368;0.102362,-0.1148875;-0.7068917;0.006586097,0.01705272;0.3993497;0.0137869,48.73324
+0;0;0,0.001392375;0.1988805;0.02108563,0.004412959;0.4982767;0.03901018,0.1060081;0.3762538;-0.02211945,0.1974198;0.2693397;-0.2642212,0.2228104;0.3082616;-0.5403379,-0.1106723;0.3620651;0.02468,-0.2006886;0.09890312;0.05697332,-0.2141273;-0.1798213;0.03390612,0.06451758;0.008179903;-0.04658939,0.09466024;-0.3666596;0.008061595,0.1053309;-0.7087291;0.08137297,0.1163215;-0.7571189;0.02026442,-0.07502796;-0.001154528;-0.02773936,-0.09279431;-0.3797605;-0.0005016867,-0.0982822;-0.723006;0.0677067,-0.1115405;-0.7100599;-0.02993234,0.003184514;0.39834;0.03566906,0;0;0,0.008725825;0.1995553;0.01007709,0.02084346;0.4992545;0.01203293,0.1141282;0.3677076;-0.0488227,0.1695538;0.1640097;-0.2327661,0.2378175;0.1706311;-0.5042366,-0.09967998;0.3720615;0.02233018,-0.1882147;0.1135106;0.08326499,-0.1448909;-0.113536;-0.07476309,0.05581149;0.004127867;-0.05716676,0.1056004;-0.3665116;0.01026824,0.1159283;-0.7050986;0.09831451,0.1221778;-0.756573;0.04067003,-0.07953492;0.001586846;-0.008466304,-0.08346491;-0.3769031;0.02514736,-0.09310067;-0.7180872;0.1026108,-0.1148889;-0.7068399;0.00683181,0.01687482;0.3993517;0.01395022,48.75538
+0;0;0,0.001329963;0.1988541;0.02133721,0.0043424;0.4982343;0.03950448,0.1059281;0.3763084;-0.02173224,0.1965534;0.2732085;-0.2657763,0.2237435;0.3082703;-0.5422385,-0.1107807;0.3621314;0.02521944,-0.200328;0.09867737;0.05641706,-0.2135425;-0.179965;0.03225467,0.06458476;0.008106486;-0.04650907,0.09460963;-0.366694;0.008473478,0.1058939;-0.7087666;0.08167868,0.09015773;-0.6957238;-0.01560865,-0.07503356;-0.001164453;-0.0277238,-0.09269299;-0.3797397;6.223097E-06,-0.09812845;-0.7229795;0.06824758,-0.1114476;-0.7100176;-0.02938595,0.003118814;0.3982992;0.03611799,0;0;0,0.008725825;0.1995553;0.01007709,0.02084346;0.4992545;0.01203293,0.1141282;0.3677076;-0.0488227,0.1695538;0.1640097;-0.2327661,0.2378175;0.1706311;-0.5042366,-0.09967998;0.3720615;0.02233018,-0.1882147;0.1135106;0.08326499,-0.1448909;-0.113536;-0.07476309,0.05581149;0.004127867;-0.05716676,0.1056004;-0.3665116;0.01026824,0.1159283;-0.7050986;0.09831451,0.1221778;-0.756573;0.04067003,-0.07953492;0.001586846;-0.008466304,-0.08346491;-0.3769031;0.02514736,-0.09310067;-0.7180872;0.1026108,-0.1148889;-0.7068399;0.00683181,0.01687482;0.3993517;0.01395022,48.76672
+0;0;0,0.001329963;0.1988541;0.02133721,0.0043424;0.4982343;0.03950448,0.1059281;0.3763084;-0.02173224,0.1965534;0.2732085;-0.2657763,0.2237435;0.3082703;-0.5422385,-0.1107807;0.3621314;0.02521944,-0.200328;0.09867737;0.05641706,-0.2135425;-0.179965;0.03225467,0.06458476;0.008106486;-0.04650907,0.09460963;-0.366694;0.008473478,0.1058939;-0.7087666;0.08167868,0.09015773;-0.6957238;-0.01560865,-0.07503356;-0.001164453;-0.0277238,-0.09269299;-0.3797397;6.223097E-06,-0.09812845;-0.7229795;0.06824758,-0.1114476;-0.7100176;-0.02938595,0.003118814;0.3982992;0.03611799,0;0;0,0.008725825;0.1995553;0.01007709,0.02084346;0.4992545;0.01203293,0.1141282;0.3677076;-0.0488227,0.1695538;0.1640097;-0.2327661,0.2378175;0.1706311;-0.5042366,-0.09967998;0.3720615;0.02233018,-0.1882147;0.1135106;0.08326499,-0.1448909;-0.113536;-0.07476309,0.05581149;0.004127867;-0.05716676,0.1056004;-0.3665116;0.01026824,0.1159283;-0.7050986;0.09831451,0.1221778;-0.756573;0.04067003,-0.07953492;0.001586846;-0.008466304,-0.08346491;-0.3769031;0.02514736,-0.09310067;-0.7180872;0.1026108,-0.1148889;-0.7068399;0.00683181,0.01687482;0.3993517;0.01395022,48.77795
+0;0;0,0.001329963;0.1988541;0.02133721,0.0043424;0.4982343;0.03950448,0.1059281;0.3763084;-0.02173224,0.1965534;0.2732085;-0.2657763,0.2237435;0.3082703;-0.5422385,-0.1107807;0.3621314;0.02521944,-0.200328;0.09867737;0.05641706,-0.2135425;-0.179965;0.03225467,0.06458476;0.008106486;-0.04650907,0.09460963;-0.366694;0.008473478,0.1058939;-0.7087666;0.08167868,0.09015773;-0.6957238;-0.01560865,-0.07503356;-0.001164453;-0.0277238,-0.09269299;-0.3797397;6.223097E-06,-0.09812845;-0.7229795;0.06824758,-0.1114476;-0.7100176;-0.02938595,0.003118814;0.3982992;0.03611799,0;0;0,0.008555591;0.1995587;0.01015548,0.02057077;0.4992609;0.01223607,0.1136962;0.3676746;-0.04889076,0.1720145;0.1601339;-0.2275689,0.2363462;0.1676637;-0.4999743,-0.09996866;0.3719557;0.02178349,-0.1888069;0.1136525;0.08332413,-0.1454053;-0.1134884;-0.07454708,0.05584854;0.004107833;-0.05713201,0.1056696;-0.3665648;0.01009641,0.116175;-0.7051591;0.09809373,0.121935;-0.756705;0.04049955,-0.07953635;0.001624063;-0.008445799,-0.08334092;-0.376895;0.02485356,-0.0928371;-0.7180375;0.102517,-0.1145806;-0.7067874;0.006727383,0.01660935;0.3993571;0.01411999,48.8002
+0;0;0,0.001327919;0.1988458;0.02141432,0.004340127;0.4982174;0.03971657,0.1059152;0.3765421;-0.02166808,0.1973283;0.2754385;-0.2662529,0.2253004;0.3101146;-0.5426857,-0.1098249;0.360383;0.02188475,-0.2022166;0.09855428;0.0580717,-0.2148057;-0.1800178;0.03279069,0.06451186;0.008258861;-0.04658338,0.09466422;-0.3664875;0.008697562,0.105858;-0.7085242;0.08208399,0.1162245;-0.7572248;0.02126653,-0.07509313;-0.001318224;-0.02755511,-0.09255416;-0.3799014;0.0001914687,-0.09804334;-0.7231302;0.0684844,-0.08256219;-0.7684867;0.004595943,0.003116969;0.3982834;0.03629608,0;0;0,0.008555591;0.1995587;0.01015548,0.02057077;0.4992609;0.01223607,0.1136962;0.3676746;-0.04889076,0.1720145;0.1601339;-0.2275689,0.2363462;0.1676637;-0.4999743,-0.09996866;0.3719557;0.02178349,-0.1888069;0.1136525;0.08332413,-0.1454053;-0.1134884;-0.07454708,0.05584854;0.004107833;-0.05713201,0.1056696;-0.3665648;0.01009641,0.116175;-0.7051591;0.09809373,0.121935;-0.756705;0.04049955,-0.07953635;0.001624063;-0.008445799,-0.08334092;-0.376895;0.02485356,-0.0928371;-0.7180375;0.102517,-0.1145806;-0.7067874;0.006727383,0.01660935;0.3993571;0.01411999,48.81141
+0;0;0,0.001327919;0.1988458;0.02141432,0.004340127;0.4982174;0.03971657,0.1059152;0.3765421;-0.02166808,0.1973283;0.2754385;-0.2662529,0.2253004;0.3101146;-0.5426857,-0.1098249;0.360383;0.02188475,-0.2022166;0.09855428;0.0580717,-0.2148057;-0.1800178;0.03279069,0.06451186;0.008258861;-0.04658338,0.09466422;-0.3664875;0.008697562,0.105858;-0.7085242;0.08208399,0.1162245;-0.7572248;0.02126653,-0.07509313;-0.001318224;-0.02755511,-0.09255416;-0.3799014;0.0001914687,-0.09804334;-0.7231302;0.0684844,-0.08256219;-0.7684867;0.004595943,0.003116969;0.3982834;0.03629608,0;0;0,0.008394296;0.199554;0.01037934,0.01973076;0.4992743;0.01378316,0.1140929;0.3683217;-0.04666352,0.1742524;0.1609061;-0.2248758,0.2364355;0.1690539;-0.497762,-0.1006257;0.3719825;0.02186966,-0.1890061;0.1134948;0.08329438,-0.1455316;-0.1136314;-0.07457802,0.05590224;0.004129397;-0.0570779,0.1055271;-0.3665164;0.01044317,0.1158691;-0.705166;0.0982465,0.1218763;-0.7565117;0.04039492,-0.07952175;0.001595593;-0.008587404,-0.08334039;-0.3769172;0.02478121,-0.0929681;-0.7181013;0.1022458,-0.1140521;-0.7067987;0.006298579,0.0160167;0.3993523;0.01512777,48.82262
+0;0;0,0.001327919;0.1988458;0.02141432,0.004340127;0.4982174;0.03971657,0.1059152;0.3765421;-0.02166808,0.1973283;0.2754385;-0.2662529,0.2253004;0.3101146;-0.5426857,-0.1098249;0.360383;0.02188475,-0.2022166;0.09855428;0.0580717,-0.2148057;-0.1800178;0.03279069,0.06451186;0.008258861;-0.04658338,0.09466422;-0.3664875;0.008697562,0.105858;-0.7085242;0.08208399,0.1162245;-0.7572248;0.02126653,-0.07509313;-0.001318224;-0.02755511,-0.09255416;-0.3799014;0.0001914687,-0.09804334;-0.7231302;0.0684844,-0.08256219;-0.7684867;0.004595943,0.003116969;0.3982834;0.03629608,0;0;0,0.008394296;0.199554;0.01037934,0.01973076;0.4992743;0.01378316,0.1140929;0.3683217;-0.04666352,0.1742524;0.1609061;-0.2248758,0.2364355;0.1690539;-0.497762,-0.1006257;0.3719825;0.02186966,-0.1890061;0.1134948;0.08329438,-0.1455316;-0.1136314;-0.07457802,0.05590224;0.004129397;-0.0570779,0.1055271;-0.3665164;0.01044317,0.1158691;-0.705166;0.0982465,0.1218763;-0.7565117;0.04039492,-0.07952175;0.001595593;-0.008587404,-0.08334039;-0.3769172;0.02478121,-0.0929681;-0.7181013;0.1022458,-0.1140521;-0.7067987;0.006298579,0.0160167;0.3993523;0.01512777,48.84487
+0;0;0,0.001446586;0.1988101;0.02173609,0.004576092;0.4981598;0.04034613,0.1064136;0.3775156;-0.02097115,0.1985512;0.2771279;-0.2655789,0.2282988;0.3143566;-0.541494,-0.1095983;0.360101;0.02296248,-0.2018004;0.09814754;0.05872779,-0.2133845;-0.1803784;0.03247648,0.06443149;0.008201175;-0.04670464,0.09515411;-0.3663892;0.009314917,0.1062567;-0.7084026;0.08282365,0.1161744;-0.7569394;0.02172036,-0.07515846;-0.001360794;-0.02737433,-0.09200542;-0.3799449;0.0007366836,-0.09778652;-0.7231421;0.06916346,-0.08268222;-0.7688041;0.005546324,0.003331056;0.3982282;0.03686469,0;0;0,0.008320391;0.1995552;0.01041608,0.01959446;0.4992777;0.0138068,0.1138187;0.3682491;-0.04682764,0.1769743;0.1648458;-0.2285925,0.2388911;0.175745;-0.5014432,-0.1008293;0.3724491;0.02237479,-0.1883353;0.1135201;0.08319004,-0.1384767;-0.1030735;-0.08710766,0.05598024;0.004131135;-0.05700129,0.1056101;-0.3665263;0.0104515,0.1159397;-0.7051757;0.09825762,0.1218882;-0.756464;0.04031944,-0.07944798;0.001630019;-0.009239102,-0.08337696;-0.3768394;0.02460519,-0.09305379;-0.7180149;0.1021014,-0.1142702;-0.7067158;0.006183997,0.01589284;0.3993554;0.01516364,48.85617
+0;0;0,0.001446586;0.1988101;0.02173609,0.004576092;0.4981598;0.04034613,0.1064136;0.3775156;-0.02097115,0.1985512;0.2771279;-0.2655789,0.2282988;0.3143566;-0.541494,-0.1095983;0.360101;0.02296248,-0.2018004;0.09814754;0.05872779,-0.2133845;-0.1803784;0.03247648,0.06443149;0.008201175;-0.04670464,0.09515411;-0.3663892;0.009314917,0.1062567;-0.7084026;0.08282365,0.1161744;-0.7569394;0.02172036,-0.07515846;-0.001360794;-0.02737433,-0.09200542;-0.3799449;0.0007366836,-0.09778652;-0.7231421;0.06916346,-0.08268222;-0.7688041;0.005546324,0.003331056;0.3982282;0.03686469,0;0;0,0.008320391;0.1995552;0.01041608,0.01959446;0.4992777;0.0138068,0.1138187;0.3682491;-0.04682764,0.1769743;0.1648458;-0.2285925,0.2388911;0.175745;-0.5014432,-0.1008293;0.3724491;0.02237479,-0.1883353;0.1135201;0.08319004,-0.1384767;-0.1030735;-0.08710766,0.05598024;0.004131135;-0.05700129,0.1056101;-0.3665263;0.0104515,0.1159397;-0.7051757;0.09825762,0.1218882;-0.756464;0.04031944,-0.07944798;0.001630019;-0.009239102,-0.08337696;-0.3768394;0.02460519,-0.09305379;-0.7180149;0.1021014,-0.1142702;-0.7067158;0.006183997,0.01589284;0.3993554;0.01516364,48.86753
+0;0;0,0.001446586;0.1988101;0.02173609,0.004576092;0.4981598;0.04034613,0.1064136;0.3775156;-0.02097115,0.1985512;0.2771279;-0.2655789,0.2282988;0.3143566;-0.541494,-0.1095983;0.360101;0.02296248,-0.2018004;0.09814754;0.05872779,-0.2133845;-0.1803784;0.03247648,0.06443149;0.008201175;-0.04670464,0.09515411;-0.3663892;0.009314917,0.1062567;-0.7084026;0.08282365,0.1161744;-0.7569394;0.02172036,-0.07515846;-0.001360794;-0.02737433,-0.09200542;-0.3799449;0.0007366836,-0.09778652;-0.7231421;0.06916346,-0.08268222;-0.7688041;0.005546324,0.003331056;0.3982282;0.03686469,0;0;0,0.008105167;0.1995631;0.01043465,0.01930578;0.4992894;0.01365594,0.1135819;0.3683633;-0.04686476,0.1828751;0.1711408;-0.2331487,0.2397638;0.2054196;-0.5051572,-0.1010865;0.3722031;0.02188527,-0.1864478;0.1113572;0.07731861,-0.1355726;-0.1045612;-0.09353496,0.05630446;0.00413696;-0.05668062,0.1060464;-0.3666705;0.009859692,0.1169458;-0.7052117;0.09801309,0.1222204;-0.7566124;0.04016745,-0.07941163;0.001646464;-0.009543685,-0.08303282;-0.3768331;0.02422119,-0.09288872;-0.7179875;0.1017876,-0.114007;-0.7066929;0.005849406,0.01560049;0.3993684;0.0150895,48.89059
+0;0;0,0.00143133;0.1987981;0.02184668,0.004373037;0.498132;0.0407708,0.1062986;0.3775101;-0.02070353,0.201711;0.2782544;-0.2645165,0.2166487;0.3432107;-0.5364679,-0.1097153;0.3600692;0.02327618,-0.2016646;0.09785721;0.05777503,-0.2128695;-0.1807464;0.0321921,0.0643983;0.008288029;-0.04673507,0.09536622;-0.3662691;0.009371154,0.1064619;-0.7082357;0.08309861,0.116276;-0.757018;0.02229526,-0.07517751;-0.001491151;-0.02731515,-0.0917922;-0.38008;0.0008703861,-0.09753791;-0.7232686;0.0693436,-0.08234404;-0.7689614;0.005784519,0.00321615;0.3982046;0.03713883,0;0;0,0.008105167;0.1995631;0.01043465,0.01930578;0.4992894;0.01365594,0.1135819;0.3683633;-0.04686476,0.1828751;0.1711408;-0.2331487,0.2397638;0.2054196;-0.5051572,-0.1010865;0.3722031;0.02188527,-0.1864478;0.1113572;0.07731861,-0.1355726;-0.1045612;-0.09353496,0.05630446;0.00413696;-0.05668062,0.1060464;-0.3666705;0.009859692,0.1169458;-0.7052117;0.09801309,0.1222204;-0.7566124;0.04016745,-0.07941163;0.001646464;-0.009543685,-0.08303282;-0.3768331;0.02422119,-0.09288872;-0.7179875;0.1017876,-0.114007;-0.7066929;0.005849406,0.01560049;0.3993684;0.0150895,48.90207
+0;0;0,0.00143133;0.1987981;0.02184668,0.004373037;0.498132;0.0407708,0.1062986;0.3775101;-0.02070353,0.201711;0.2782544;-0.2645165,0.2166487;0.3432107;-0.5364679,-0.1097153;0.3600692;0.02327618,-0.2016646;0.09785721;0.05777503,-0.2128695;-0.1807464;0.0321921,0.0643983;0.008288029;-0.04673507,0.09536622;-0.3662691;0.009371154,0.1064619;-0.7082357;0.08309861,0.116276;-0.757018;0.02229526,-0.07517751;-0.001491151;-0.02731515,-0.0917922;-0.38008;0.0008703861,-0.09753791;-0.7232686;0.0693436,-0.08234404;-0.7689614;0.005784519,0.00321615;0.3982046;0.03713883,0;0;0,0.008063561;0.199566;0.01041108,0.0194582;0.4992864;0.01345995,0.1136526;0.3685209;-0.04707733,0.189346;0.1808557;-0.2406033,0.2382918;0.2311711;-0.5116616,-0.1010576;0.3722602;0.02115799,-0.1873793;0.1117884;0.07686254,-0.1342484;-0.1008222;-0.09741846,0.05643667;0.004052446;-0.05655511,0.1066422;-0.3666649;0.01013808,0.1173746;-0.7053658;0.09769702,0.1239065;-0.7566944;0.03987839,-0.07939849;0.001777572;-0.009629115,-0.08242808;-0.3767298;0.02388241,-0.09251055;-0.717877;0.101451,-0.113556;-0.706586;0.0054975,0.01567591;0.3993693;0.01496256,48.91342
+0;0;0,0.00143133;0.1987981;0.02184668,0.004373037;0.498132;0.0407708,0.1062986;0.3775101;-0.02070353,0.201711;0.2782544;-0.2645165,0.2166487;0.3432107;-0.5364679,-0.1097153;0.3600692;0.02327618,-0.2016646;0.09785721;0.05777503,-0.2128695;-0.1807464;0.0321921,0.0643983;0.008288029;-0.04673507,0.09536622;-0.3662691;0.009371154,0.1064619;-0.7082357;0.08309861,0.116276;-0.757018;0.02229526,-0.07517751;-0.001491151;-0.02731515,-0.0917922;-0.38008;0.0008703861,-0.09753791;-0.7232686;0.0693436,-0.08234404;-0.7689614;0.005784519,0.00321615;0.3982046;0.03713883,0;0;0,0.008063561;0.199566;0.01041108,0.0194582;0.4992864;0.01345995,0.1136526;0.3685209;-0.04707733,0.189346;0.1808557;-0.2406033,0.2382918;0.2311711;-0.5116616,-0.1010576;0.3722602;0.02115799,-0.1873793;0.1117884;0.07686254,-0.1342484;-0.1008222;-0.09741846,0.05643667;0.004052446;-0.05655511,0.1066422;-0.3666649;0.01013808,0.1173746;-0.7053658;0.09769702,0.1239065;-0.7566944;0.03987839,-0.07939849;0.001777572;-0.009629115,-0.08242808;-0.3767298;0.02388241,-0.09251055;-0.717877;0.101451,-0.113556;-0.706586;0.0054975,0.01567591;0.3993693;0.01496256,48.9251
+0;0;0,0.001428873;0.1987838;0.02197661,0.004240612;0.4981015;0.04119651,0.1062636;0.3774783;-0.02035291,0.2033522;0.2788673;-0.2637655,0.2221401;0.3481403;-0.5344096,-0.1099219;0.3603048;0.02399277,-0.2011624;0.09775755;0.05781781,-0.2116635;-0.1808157;0.03161383,0.06441786;0.008369665;-0.04669355,0.09577349;-0.3661539;0.009421464,0.1066525;-0.7081184;0.08319075,0.116577;-0.7568876;0.02238837,-0.07515736;-0.001619549;-0.02736327,-0.09127977;-0.3802381;0.0007090289,-0.09721492;-0.7233214;0.06969129,-0.08212666;-0.7688335;0.005892597,0.003148964;0.3981785;0.03743002,0;0;0,0.008045485;0.1995679;0.01038885,0.01942347;0.499289;0.01334653,0.113631;0.3685729;-0.0471441,0.1895631;0.1816195;-0.2412645,0.2421918;0.2355267;-0.5109388,-0.1012729;0.3730169;0.02091798,-0.1865843;0.1120019;0.07562767,-0.1326629;-0.09961152;-0.09962142,0.05657343;0.004107398;-0.05641433,0.1068887;-0.3665586;0.0104818,0.1174458;-0.7053781;0.09760195,0.1237266;-0.7568502;0.03995781,-0.07939027;0.00176307;-0.009699286,-0.08250335;-0.3767535;0.0236997,-0.09284624;-0.7177747;0.1017868,-0.1137679;-0.7064915;0.005807802,0.01564232;0.3993726;0.01490105,48.94776
+0;0;0,0.001428873;0.1987838;0.02197661,0.004240612;0.4981015;0.04119651,0.1062636;0.3774783;-0.02035291,0.2033522;0.2788673;-0.2637655,0.2221401;0.3481403;-0.5344096,-0.1099219;0.3603048;0.02399277,-0.2011624;0.09775755;0.05781781,-0.2116635;-0.1808157;0.03161383,0.06441786;0.008369665;-0.04669355,0.09577349;-0.3661539;0.009421464,0.1066525;-0.7081184;0.08319075,0.116577;-0.7568876;0.02238837,-0.07515736;-0.001619549;-0.02736327,-0.09127977;-0.3802381;0.0007090289,-0.09721492;-0.7233214;0.06969129,-0.08212666;-0.7688335;0.005892597,0.003148964;0.3981785;0.03743002,0;0;0,0.008045485;0.1995679;0.01038885,0.01942347;0.499289;0.01334653,0.113631;0.3685729;-0.0471441,0.1895631;0.1816195;-0.2412645,0.2421918;0.2355267;-0.5109388,-0.1012729;0.3730169;0.02091798,-0.1865843;0.1120019;0.07562767,-0.1326629;-0.09961152;-0.09962142,0.05657343;0.004107398;-0.05641433,0.1068887;-0.3665586;0.0104818,0.1174458;-0.7053781;0.09760195,0.1237266;-0.7568502;0.03995781,-0.07939027;0.00176307;-0.009699286,-0.08250335;-0.3767535;0.0236997,-0.09284624;-0.7177747;0.1017868,-0.1137679;-0.7064915;0.005807802,0.01564232;0.3993726;0.01490105,48.95943
+0;0;0,0.001428873;0.1987838;0.02197661,0.004240612;0.4981015;0.04119651,0.1062636;0.3774783;-0.02035291,0.2033522;0.2788673;-0.2637655,0.2221401;0.3481403;-0.5344096,-0.1099219;0.3603048;0.02399277,-0.2011624;0.09775755;0.05781781,-0.2116635;-0.1808157;0.03161383,0.06441786;0.008369665;-0.04669355,0.09577349;-0.3661539;0.009421464,0.1066525;-0.7081184;0.08319075,0.116577;-0.7568876;0.02238837,-0.07515736;-0.001619549;-0.02736327,-0.09127977;-0.3802381;0.0007090289,-0.09721492;-0.7233214;0.06969129,-0.08212666;-0.7688335;0.005892597,0.003148964;0.3981785;0.03743002,0;0;0,0.008045485;0.1995679;0.01038885,0.01942347;0.499289;0.01334653,0.113631;0.3685729;-0.0471441,0.1895631;0.1816195;-0.2412645,0.2421918;0.2355267;-0.5109388,-0.1012729;0.3730169;0.02091798,-0.1865843;0.1120019;0.07562767,-0.1326629;-0.09961152;-0.09962142,0.05657343;0.004107398;-0.05641433,0.1068887;-0.3665586;0.0104818,0.1174458;-0.7053781;0.09760195,0.1237266;-0.7568502;0.03995781,-0.07939027;0.00176307;-0.009699286,-0.08250335;-0.3767535;0.0236997,-0.09284624;-0.7177747;0.1017868,-0.1137679;-0.7064915;0.005807802,0.01564232;0.3993726;0.01490105,48.97117
+0;0;0,0.001550539;0.1987516;0.02225784,0.004514468;0.4980503;0.04173253,0.1066495;0.3772825;-0.01955837,0.2073317;0.28062;-0.2622916,0.2538522;0.332164;-0.5335462,-0.1096861;0.3602521;0.0245153,-0.2009174;0.0976716;0.05810592,-0.2099122;-0.1808342;0.03065394,0.06450636;0.008289942;-0.04658548,0.09624676;-0.3661659;0.009764798,0.1071788;-0.7080966;0.0836828,0.09194908;-0.6950074;-0.01369319,-0.07512894;-0.001528325;-0.02744639,-0.0904924;-0.3801685;0.0007594489,-0.09671356;-0.7232046;0.06995153,-0.08126672;-0.7689386;0.006502666,0.003388562;0.3981297;0.03790968,0;0;0,0.0079965;0.1995721;0.01034601,0.01934622;0.4992952;0.01312931,0.1135403;0.3686147;-0.04732839,0.19042;0.1828846;-0.2422485,0.2442999;0.2462883;-0.5096002,-0.1014286;0.3732972;0.02034198,-0.1863757;0.1120533;0.07452317,-0.1332217;-0.1016612;-0.09839515,0.05666061;0.004076896;-0.05632897,0.1070956;-0.3665757;0.01055137,0.1174484;-0.7054142;0.0976218,0.1233207;-0.7571161;0.04026048,-0.07935651;0.001906819;-0.009945181,-0.08231188;-0.3766101;0.02346457,-0.09275737;-0.7176368;0.1015135,-0.1135429;-0.7063524;0.005504742,0.01556949;0.3993798;0.01476205,48.99382
+0;0;0,0.001550539;0.1987516;0.02225784,0.004514468;0.4980503;0.04173253,0.1066495;0.3772825;-0.01955837,0.2073317;0.28062;-0.2622916,0.2538522;0.332164;-0.5335462,-0.1096861;0.3602521;0.0245153,-0.2009174;0.0976716;0.05810592,-0.2099122;-0.1808342;0.03065394,0.06450636;0.008289942;-0.04658548,0.09624676;-0.3661659;0.009764798,0.1071788;-0.7080966;0.0836828,0.09194908;-0.6950074;-0.01369319,-0.07512894;-0.001528325;-0.02744639,-0.0904924;-0.3801685;0.0007594489,-0.09671356;-0.7232046;0.06995153,-0.08126672;-0.7689386;0.006502666,0.003388562;0.3981297;0.03790968,0;0;0,0.0079965;0.1995721;0.01034601,0.01934622;0.4992952;0.01312931,0.1135403;0.3686147;-0.04732839,0.19042;0.1828846;-0.2422485,0.2442999;0.2462883;-0.5096002,-0.1014286;0.3732972;0.02034198,-0.1863757;0.1120533;0.07452317,-0.1332217;-0.1016612;-0.09839515,0.05666061;0.004076896;-0.05632897,0.1070956;-0.3665757;0.01055137,0.1174484;-0.7054142;0.0976218,0.1233207;-0.7571161;0.04026048,-0.07935651;0.001906819;-0.009945181,-0.08231188;-0.3766101;0.02346457,-0.09275737;-0.7176368;0.1015135,-0.1135429;-0.7063524;0.005504742,0.01556949;0.3993798;0.01476205,49.00523
+0;0;0,0.001550539;0.1987516;0.02225784,0.004514468;0.4980503;0.04173253,0.1066495;0.3772825;-0.01955837,0.2073317;0.28062;-0.2622916,0.2538522;0.332164;-0.5335462,-0.1096861;0.3602521;0.0245153,-0.2009174;0.0976716;0.05810592,-0.2099122;-0.1808342;0.03065394,0.06450636;0.008289942;-0.04658548,0.09624676;-0.3661659;0.009764798,0.1071788;-0.7080966;0.0836828,0.09194908;-0.6950074;-0.01369319,-0.07512894;-0.001528325;-0.02744639,-0.0904924;-0.3801685;0.0007594489,-0.09671356;-0.7232046;0.06995153,-0.08126672;-0.7689386;0.006502666,0.003388562;0.3981297;0.03790968,0;0;0,0.007973012;0.1995751;0.01030604,0.01932495;0.4992988;0.01291046,0.1134269;0.3685971;-0.04758729,0.1926211;0.1875358;-0.2459432,0.2434602;0.2575487;-0.5122392,-0.1014382;0.3731134;0.01968262,-0.1873981;0.1123888;0.0747605,-0.1337556;-0.1008962;-0.09853688,0.05672027;0.004029018;-0.05627236,0.1070972;-0.3666288;0.01062256,0.1174472;-0.7054909;0.0976017,0.1233576;-0.7572434;0.04031644,-0.07935172;0.001937591;-0.009977457,-0.08235719;-0.3765898;0.02330872,-0.09275909;-0.7175869;0.1014931,-0.1134974;-0.7063067;0.00547491,0.01554139;0.3993852;0.01462633,49.01677
+0;0;0,0.001494721;0.19874;0.02236476,0.004381455;0.4980296;0.04201426,0.1066179;0.3771411;-0.019212,0.210928;0.2803507;-0.2603572,0.2513565;0.3340589;-0.5321678,-0.1097478;0.3601416;0.02466791,-0.2008043;0.0974656;0.05798518,-0.2094125;-0.1810315;0.03032194,0.06454337;0.008295148;-0.04653326,0.09629814;-0.3661872;0.009632349,0.1072432;-0.7080655;0.08379082,0.1177781;-0.7574155;0.02385261,-0.07502374;-0.001494415;-0.02773453,-0.09058439;-0.3800984;0.0008468702,-0.09689336;-0.7231098;0.07015318,-0.1096656;-0.710085;-0.02756434,0.003291834;0.3981124;0.03809362,0;0;0,0.007973012;0.1995751;0.01030604,0.01932495;0.4992988;0.01291046,0.1134269;0.3685971;-0.04758729,0.1926211;0.1875358;-0.2459432,0.2434602;0.2575487;-0.5122392,-0.1014382;0.3731134;0.01968262,-0.1873981;0.1123888;0.0747605,-0.1337556;-0.1008962;-0.09853688,0.05672027;0.004029018;-0.05627236,0.1070972;-0.3666288;0.01062256,0.1174472;-0.7054909;0.0976017,0.1233576;-0.7572434;0.04031644,-0.07935172;0.001937591;-0.009977457,-0.08235719;-0.3765898;0.02330872,-0.09275909;-0.7175869;0.1014931,-0.1134974;-0.7063067;0.00547491,0.01554139;0.3993852;0.01462633,49.0393
+0;0;0,0.001494721;0.19874;0.02236476,0.004381455;0.4980296;0.04201426,0.1066179;0.3771411;-0.019212,0.210928;0.2803507;-0.2603572,0.2513565;0.3340589;-0.5321678,-0.1097478;0.3601416;0.02466791,-0.2008043;0.0974656;0.05798518,-0.2094125;-0.1810315;0.03032194,0.06454337;0.008295148;-0.04653326,0.09629814;-0.3661872;0.009632349,0.1072432;-0.7080655;0.08379082,0.1177781;-0.7574155;0.02385261,-0.07502374;-0.001494415;-0.02773453,-0.09058439;-0.3800984;0.0008468702,-0.09689336;-0.7231098;0.07015318,-0.1096656;-0.710085;-0.02756434,0.003291834;0.3981124;0.03809362,0;0;0,0.007792084;0.1995859;0.01023555,0.01892653;0.499319;0.0126223,0.1131616;0.3688542;-0.04779764,0.192816;0.1956904;-0.2529061,0.2434618;0.2631796;-0.5198897,-0.1017798;0.3732132;0.01970581,-0.188624;0.1130241;0.07591691,-0.1341225;-0.1003381;-0.09701703,0.05677472;0.003931493;-0.05622433,0.1074315;-0.3667237;0.01047379,0.1177171;-0.7056111;0.09736159,0.1237467;-0.7573183;0.04002414,-0.07933953;0.002109245;-0.01003944,-0.08205266;-0.3764489;0.02292099,-0.09241092;-0.7174426;0.1011257,-0.1132354;-0.7061766;0.005128935,0.01520793;0.3994044;0.01442584,49.05082
+0;0;0,0.001494721;0.19874;0.02236476,0.004381455;0.4980296;0.04201426,0.1066179;0.3771411;-0.019212,0.210928;0.2803507;-0.2603572,0.2513565;0.3340589;-0.5321678,-0.1097478;0.3601416;0.02466791,-0.2008043;0.0974656;0.05798518,-0.2094125;-0.1810315;0.03032194,0.06454337;0.008295148;-0.04653326,0.09629814;-0.3661872;0.009632349,0.1072432;-0.7080655;0.08379082,0.1177781;-0.7574155;0.02385261,-0.07502374;-0.001494415;-0.02773453,-0.09058439;-0.3800984;0.0008468702,-0.09689336;-0.7231098;0.07015318,-0.1096656;-0.710085;-0.02756434,0.003291834;0.3981124;0.03809362,0;0;0,0.007792084;0.1995859;0.01023555,0.01892653;0.499319;0.0126223,0.1131616;0.3688542;-0.04779764,0.192816;0.1956904;-0.2529061,0.2434618;0.2631796;-0.5198897,-0.1017798;0.3732132;0.01970581,-0.188624;0.1130241;0.07591691,-0.1341225;-0.1003381;-0.09701703,0.05677472;0.003931493;-0.05622433,0.1074315;-0.3667237;0.01047379,0.1177171;-0.7056111;0.09736159,0.1237467;-0.7573183;0.04002414,-0.07933953;0.002109245;-0.01003944,-0.08205266;-0.3764489;0.02292099,-0.09241092;-0.7174426;0.1011257,-0.1132354;-0.7061766;0.005128935,0.01520793;0.3994044;0.01442584,49.06218
+0;0;0,0.001365513;0.198727;0.02248787,0.003781501;0.4980036;0.04243017,0.1063474;0.3771033;-0.0187195,0.2170014;0.2774945;-0.2558561,0.254644;0.3336094;-0.5275805,-0.1101125;0.3600621;0.02485183,-0.2011326;0.09737876;0.05821094,-0.2090054;-0.1810681;0.02983219,0.0645548;0.008275349;-0.04652093,0.09638919;-0.3661876;0.009729113,0.107222;-0.7080461;0.0839946,0.1176503;-0.7573171;0.02393317,-0.07498986;-0.001452494;-0.02782826,-0.09073219;-0.3800434;0.0008267574,-0.09715268;-0.7230163;0.07031327,-0.1098611;-0.7099885;-0.02741308,0.002898234;0.3980905;0.03835776,0;0;0,0.007792481;0.1995877;0.01019917,0.01899024;0.4993189;0.01242411,0.1131484;0.3691035;-0.04810848,0.1937417;0.198774;-0.2552137,0.2391797;0.2738732;-0.5210999,-0.1017507;0.3731373;0.01917096,-0.1896365;0.1134771;0.07620324,-0.1399036;-0.1080732;-0.08763225,0.05680386;0.00392481;-0.05619534,0.1074067;-0.3666903;0.01076564,0.1177426;-0.7056402;0.09740357,0.1242354;-0.7576303;0.04052247,-0.07933503;0.002121386;-0.0100723,-0.08195292;-0.376436;0.02290417,-0.09232376;-0.7174789;0.1008925,-0.1131477;-0.7062135;0.004895687,0.01523736;0.399407;0.0143025,49.08426
+0;0;0,0.001365513;0.198727;0.02248787,0.003781501;0.4980036;0.04243017,0.1063474;0.3771033;-0.0187195,0.2170014;0.2774945;-0.2558561,0.254644;0.3336094;-0.5275805,-0.1101125;0.3600621;0.02485183,-0.2011326;0.09737876;0.05821094,-0.2090054;-0.1810681;0.02983219,0.0645548;0.008275349;-0.04652093,0.09638919;-0.3661876;0.009729113,0.107222;-0.7080461;0.0839946,0.1176503;-0.7573171;0.02393317,-0.07498986;-0.001452494;-0.02782826,-0.09073219;-0.3800434;0.0008267574,-0.09715268;-0.7230163;0.07031327,-0.1098611;-0.7099885;-0.02741308,0.002898234;0.3980905;0.03835776,0;0;0,0.007792481;0.1995877;0.01019917,0.01899024;0.4993189;0.01242411,0.1131484;0.3691035;-0.04810848,0.1937417;0.198774;-0.2552137,0.2391797;0.2738732;-0.5210999,-0.1017507;0.3731373;0.01917096,-0.1896365;0.1134771;0.07620324,-0.1399036;-0.1080732;-0.08763225,0.05680386;0.00392481;-0.05619534,0.1074067;-0.3666903;0.01076564,0.1177426;-0.7056402;0.09740357,0.1242354;-0.7576303;0.04052247,-0.07933503;0.002121386;-0.0100723,-0.08195292;-0.376436;0.02290417,-0.09232376;-0.7174789;0.1008925,-0.1131477;-0.7062135;0.004895687,0.01523736;0.399407;0.0143025,49.10686
+0;0;0,0.001365513;0.198727;0.02248787,0.003781501;0.4980036;0.04243017,0.1063474;0.3771033;-0.0187195,0.2170014;0.2774945;-0.2558561,0.254644;0.3336094;-0.5275805,-0.1101125;0.3600621;0.02485183,-0.2011326;0.09737876;0.05821094,-0.2090054;-0.1810681;0.02983219,0.0645548;0.008275349;-0.04652093,0.09638919;-0.3661876;0.009729113,0.107222;-0.7080461;0.0839946,0.1176503;-0.7573171;0.02393317,-0.07498986;-0.001452494;-0.02782826,-0.09073219;-0.3800434;0.0008267574,-0.09715268;-0.7230163;0.07031327,-0.1098611;-0.7099885;-0.02741308,0.002898234;0.3980905;0.03835776,0;0;0,0.007796493;0.1995911;0.01012933,0.01904008;0.4993212;0.01221581,0.113091;0.3693037;-0.04849888,0.1950835;0.2025898;-0.2579832,0.2359118;0.2820777;-0.5233409,-0.1016648;0.3728536;0.01870311,-0.1860425;0.1110271;0.07092668,-0.1290172;-0.09935871;-0.1048173,0.05683229;0.003891109;-0.05616893,0.1075446;-0.3667121;0.01077513,0.1180441;-0.7057066;0.09721873,0.1253114;-0.7584774;0.04157535,-0.07933954;0.002184892;-0.01002313,-0.08180984;-0.3763602;0.02310555,-0.09205392;-0.7174636;0.1008455,-0.112932;-0.7061943;0.004859686,0.015271;0.399411;0.0141493,49.11786
+0;0;0,0.001328322;0.1987041;0.02269154,0.003538236;0.4979503;0.04314338,0.1064676;0.3770537;-0.01771818,0.2233044;0.270231;-0.2486686,0.2607714;0.3359673;-0.5182515,-0.1103596;0.3602481;0.02539291,-0.2001821;0.09689587;0.05665878,-0.2078436;-0.1816621;0.02933238,0.0646918;0.008394236;-0.04630883,0.0966313;-0.3660513;0.009997353,0.1075402;-0.7079058;0.08427078,0.1175587;-0.7574584;0.02451278,-0.07485027;-0.001626872;-0.02819204,-0.09023115;-0.3801897;0.001025023,-0.09679237;-0.7231257;0.07068009,-0.1093448;-0.7100855;-0.02706859,0.00273528;0.3980461;0.03884077,0;0;0,0.007796493;0.1995911;0.01012933,0.01904008;0.4993212;0.01221581,0.113091;0.3693037;-0.04849888,0.1950835;0.2025898;-0.2579832,0.2359118;0.2820777;-0.5233409,-0.1016648;0.3728536;0.01870311,-0.1860425;0.1110271;0.07092668,-0.1290172;-0.09935871;-0.1048173,0.05683229;0.003891109;-0.05616893,0.1075446;-0.3667121;0.01077513,0.1180441;-0.7057066;0.09721873,0.1253114;-0.7584774;0.04157535,-0.07933954;0.002184892;-0.01002313,-0.08180984;-0.3763602;0.02310555,-0.09205392;-0.7174636;0.1008455,-0.112932;-0.7061943;0.004859686,0.015271;0.399411;0.0141493,49.14019
+0;0;0,0.001328322;0.1987041;0.02269154,0.003538236;0.4979503;0.04314338,0.1064676;0.3770537;-0.01771818,0.2233044;0.270231;-0.2486686,0.2607714;0.3359673;-0.5182515,-0.1103596;0.3602481;0.02539291,-0.2001821;0.09689587;0.05665878,-0.2078436;-0.1816621;0.02933238,0.0646918;0.008394236;-0.04630883,0.0966313;-0.3660513;0.009997353,0.1075402;-0.7079058;0.08427078,0.1175587;-0.7574584;0.02451278,-0.07485027;-0.001626872;-0.02819204,-0.09023115;-0.3801897;0.001025023,-0.09679237;-0.7231257;0.07068009,-0.1093448;-0.7100855;-0.02706859,0.00273528;0.3980461;0.03884077,0;0;0,0.007885076;0.199593;0.01002336,0.01927651;0.4993177;0.01173425,0.113133;0.3695044;-0.04907244,0.1942223;0.2028163;-0.2589286,0.2335407;0.2937594;-0.5208129,-0.1015541;0.373141;0.01886521,-0.1864276;0.111307;0.07024067,-0.1381772;-0.1110691;-0.09291814,0.05684352;0.003884296;-0.05615805,0.1077435;-0.3667541;0.01044812,0.1187315;-0.7057418;0.09685774,0.09522493;-0.6943671;0.001460984,-0.07933161;0.00219288;-0.01008394,-0.08160281;-0.3763601;0.02296783,-0.09206863;-0.7174629;0.1006812,-0.1131286;-0.7062046;0.004737318,0.01542683;0.3994142;0.01384746,49.16245
+0;0;0,0.001328322;0.1987041;0.02269154,0.003538236;0.4979503;0.04314338,0.1064676;0.3770537;-0.01771818,0.2233044;0.270231;-0.2486686,0.2607714;0.3359673;-0.5182515,-0.1103596;0.3602481;0.02539291,-0.2001821;0.09689587;0.05665878,-0.2078436;-0.1816621;0.02933238,0.0646918;0.008394236;-0.04630883,0.0966313;-0.3660513;0.009997353,0.1075402;-0.7079058;0.08427078,0.1175587;-0.7574584;0.02451278,-0.07485027;-0.001626872;-0.02819204,-0.09023115;-0.3801897;0.001025023,-0.09679237;-0.7231257;0.07068009,-0.1093448;-0.7100855;-0.02706859,0.00273528;0.3980461;0.03884077,0;0;0,0.007886101;0.1995846;0.01018747,0.01924064;0.4993096;0.01258427,0.1122712;0.3699898;-0.05004296,0.1935288;0.2083727;-0.263765,0.2320372;0.3126217;-0.5207655,-0.1015962;0.3730341;0.01862161,-0.187694;0.1119801;0.07189408,-0.1379159;-0.1084206;-0.09347124,0.05680377;0.003928371;-0.05619519,0.1077149;-0.3666309;0.01084122,0.1186644;-0.7056665;0.09706758,0.09475943;-0.6942749;0.001766577,-0.07934327;0.002122176;-0.01000701,-0.08157591;-0.3764691;0.02260677,-0.09184578;-0.7174551;0.1008568,-0.1133099;-0.7061899;0.005001202,0.01539456;0.3993997;0.01437729,49.18476
+0;0;0,0.001231977;0.1986925;0.02279891,0.003198436;0.4979162;0.04360896,0.1063648;0.3763452;-0.01682981,0.2258968;0.2737672;-0.2483247,0.2730443;0.3367006;-0.517056,-0.1106974;0.3604526;0.02567772,-0.1992565;0.09640235;0.05456939,-0.2069559;-0.1822625;0.02836606,0.06477889;0.008516497;-0.04616455,0.09696518;-0.365914;0.01010113,0.1077721;-0.7077444;0.0845003,0.1177555;-0.7571488;0.02453973,-0.07477874;-0.001847527;-0.02836771,-0.08981961;-0.3804038;0.001109324,-0.09643376;-0.7233237;0.07083868,-0.1087839;-0.7102758;-0.02693709,0.002469768;0.3980173;0.0391715,0;0;0,0.007886101;0.1995846;0.01018747,0.01924064;0.4993096;0.01258427,0.1122712;0.3699898;-0.05004296,0.1935288;0.2083727;-0.263765,0.2320372;0.3126217;-0.5207655,-0.1015962;0.3730341;0.01862161,-0.187694;0.1119801;0.07189408,-0.1379159;-0.1084206;-0.09347124,0.05680377;0.003928371;-0.05619519,0.1077149;-0.3666309;0.01084122,0.1186644;-0.7056665;0.09706758,0.09475943;-0.6942749;0.001766577,-0.07934327;0.002122176;-0.01000701,-0.08157591;-0.3764691;0.02260677,-0.09184578;-0.7174551;0.1008568,-0.1133099;-0.7061899;0.005001202,0.01539456;0.3993997;0.01437729,49.20723
+0;0;0,0.001231977;0.1986925;0.02279891,0.003198436;0.4979162;0.04360896,0.1063648;0.3763452;-0.01682981,0.2258968;0.2737672;-0.2483247,0.2730443;0.3367006;-0.517056,-0.1106974;0.3604526;0.02567772,-0.1992565;0.09640235;0.05456939,-0.2069559;-0.1822625;0.02836606,0.06477889;0.008516497;-0.04616455,0.09696518;-0.365914;0.01010113,0.1077721;-0.7077444;0.0845003,0.1177555;-0.7571488;0.02453973,-0.07477874;-0.001847527;-0.02836771,-0.08981961;-0.3804038;0.001109324,-0.09643376;-0.7233237;0.07083868,-0.1087839;-0.7102758;-0.02693709,0.002469768;0.3980173;0.0391715,0;0;0,0.007873166;0.1995931;0.01002962,0.01931554;0.499317;0.01185046,0.1120445;0.3699363;-0.05089665,0.1941477;0.2099987;-0.265557,0.2314287;0.3217906;-0.5195504,-0.1015532;0.3731483;0.01894533,-0.186886;0.1117501;0.07175907,-0.1362524;-0.1071831;-0.09528728,0.05674157;0.003937902;-0.05625733,0.1075042;-0.3666039;0.01098805,0.1186124;-0.7056684;0.09708019,0.1256613;-0.7576533;0.04025765,-0.07935286;0.002120836;-0.009930979,-0.08160463;-0.3764723;0.02265982,-0.09189757;-0.7173303;0.1014624,-0.1136749;-0.7060928;0.005682915,0.01542766;0.3994133;0.01388218,49.21858
+0;0;0,0.001231977;0.1986925;0.02279891,0.003198436;0.4979162;0.04360896,0.1063648;0.3763452;-0.01682981,0.2258968;0.2737672;-0.2483247,0.2730443;0.3367006;-0.517056,-0.1106974;0.3604526;0.02567772,-0.1992565;0.09640235;0.05456939,-0.2069559;-0.1822625;0.02836606,0.06477889;0.008516497;-0.04616455,0.09696518;-0.365914;0.01010113,0.1077721;-0.7077444;0.0845003,0.1177555;-0.7571488;0.02453973,-0.07477874;-0.001847527;-0.02836771,-0.08981961;-0.3804038;0.001109324,-0.09643376;-0.7233237;0.07083868,-0.1087839;-0.7102758;-0.02693709,0.002469768;0.3980173;0.0391715,0;0;0,0.007873166;0.1995931;0.01002962,0.01931554;0.499317;0.01185046,0.1120445;0.3699363;-0.05089665,0.1941477;0.2099987;-0.265557,0.2314287;0.3217906;-0.5195504,-0.1015532;0.3731483;0.01894533,-0.186886;0.1117501;0.07175907,-0.1362524;-0.1071831;-0.09528728,0.05674157;0.003937902;-0.05625733,0.1075042;-0.3666039;0.01098805,0.1186124;-0.7056684;0.09708019,0.1256613;-0.7576533;0.04025765,-0.07935286;0.002120836;-0.009930979,-0.08160463;-0.3764723;0.02265982,-0.09189757;-0.7173303;0.1014624,-0.1136749;-0.7060928;0.005682915,0.01542766;0.3994133;0.01388218,49.24072
+0;0;0,0.00105663;0.1986833;0.02288749,0.002488809;0.4978858;0.04406086,0.1058565;0.376339;-0.01656266,0.2389198;0.2551512;-0.2310567,0.2791345;0.3374692;-0.4956442,-0.111144;0.3604192;0.02559481,-0.1996464;0.09633616;0.05436065,-0.2059664;-0.1823096;0.02759132,0.06479365;0.008675332;-0.04611422,0.09705879;-0.3657592;0.01007954,0.10706;-0.7075062;0.08497265,0.1176747;-0.7565703;0.02467182,-0.07466932;-0.002139769;-0.02863415,-0.09004876;-0.3806605;0.001123698,-0.09671419;-0.7235723;0.07088824,-0.1089684;-0.7105186;-0.02690061,0.001974209;0.3979926;0.03946932,0;0;0,0.007755013;0.199592;0.01014426,0.01915961;0.4993167;0.01202038,0.1116769;0.3700273;-0.05110958,0.2012534;0.2273707;-0.2747726,0.2288834;0.333866;-0.5322514,-0.1017383;0.3734391;0.01967453,-0.1871484;0.1121924;0.07310905,-0.1372723;-0.107378;-0.09332781,0.05658262;0.004030412;-0.05641066,0.1069778;-0.3663703;0.01188026,0.1180653;-0.7054116;0.09806639,0.1240919;-0.7573217;0.04101883,-0.07940505;0.001984995;-0.009534066,-0.08194035;-0.3765908;0.02323724,-0.09224413;-0.7174032;0.1022355,-0.1142891;-0.7061665;0.006517328,0.01528155;0.3994123;0.01403994,49.25181
+0;0;0,0.00105663;0.1986833;0.02288749,0.002488809;0.4978858;0.04406086,0.1058565;0.376339;-0.01656266,0.2389198;0.2551512;-0.2310567,0.2791345;0.3374692;-0.4956442,-0.111144;0.3604192;0.02559481,-0.1996464;0.09633616;0.05436065,-0.2059664;-0.1823096;0.02759132,0.06479365;0.008675332;-0.04611422,0.09705879;-0.3657592;0.01007954,0.10706;-0.7075062;0.08497265,0.1176747;-0.7565703;0.02467182,-0.07466932;-0.002139769;-0.02863415,-0.09004876;-0.3806605;0.001123698,-0.09671419;-0.7235723;0.07088824,-0.1089684;-0.7105186;-0.02690061,0.001974209;0.3979926;0.03946932,0;0;0,0.007755013;0.199592;0.01014426,0.01915961;0.4993167;0.01202038,0.1116769;0.3700273;-0.05110958,0.2012534;0.2273707;-0.2747726,0.2288834;0.333866;-0.5322514,-0.1017383;0.3734391;0.01967453,-0.1871484;0.1121924;0.07310905,-0.1372723;-0.107378;-0.09332781,0.05658262;0.004030412;-0.05641066,0.1069778;-0.3663703;0.01188026,0.1180653;-0.7054116;0.09806639,0.1240919;-0.7573217;0.04101883,-0.07940505;0.001984995;-0.009534066,-0.08194035;-0.3765908;0.02323724,-0.09224413;-0.7174032;0.1022355,-0.1142891;-0.7061665;0.006517328,0.01528155;0.3994123;0.01403994,49.26308
+0;0;0,0.00105663;0.1986833;0.02288749,0.002488809;0.4978858;0.04406086,0.1058565;0.376339;-0.01656266,0.2389198;0.2551512;-0.2310567,0.2791345;0.3374692;-0.4956442,-0.111144;0.3604192;0.02559481,-0.1996464;0.09633616;0.05436065,-0.2059664;-0.1823096;0.02759132,0.06479365;0.008675332;-0.04611422,0.09705879;-0.3657592;0.01007954,0.10706;-0.7075062;0.08497265,0.1176747;-0.7565703;0.02467182,-0.07466932;-0.002139769;-0.02863415,-0.09004876;-0.3806605;0.001123698,-0.09671419;-0.7235723;0.07088824,-0.1089684;-0.7105186;-0.02690061,0.001974209;0.3979926;0.03946932,0;0;0,0.007755013;0.199592;0.01014426,0.01915961;0.4993167;0.01202038,0.1116769;0.3700273;-0.05110958,0.2012534;0.2273707;-0.2747726,0.2288834;0.333866;-0.5322514,-0.1017383;0.3734391;0.01967453,-0.1871484;0.1121924;0.07310905,-0.1372723;-0.107378;-0.09332781,0.05658262;0.004030412;-0.05641066,0.1069778;-0.3663703;0.01188026,0.1180653;-0.7054116;0.09806639,0.1240919;-0.7573217;0.04101883,-0.07940505;0.001984995;-0.009534066,-0.08194035;-0.3765908;0.02323724,-0.09224413;-0.7174032;0.1022355,-0.1142891;-0.7061665;0.006517328,0.01528155;0.3994123;0.01403994,49.27429
+0;0;0,0.0007436769;0.1986784;0.02294191,0.001358207;0.4978761;0.04422763,0.1054654;0.3757565;-0.01547194,0.2563542;0.223056;-0.195236,0.3099442;0.288668;-0.4621127,-0.1119241;0.360465;0.02549993,-0.1997968;0.09604403;0.05306634,-0.2051117;-0.1826516;0.02659988,0.06479836;0.008862969;-0.0460719,0.09688088;-0.3655954;0.0100673,0.1068615;-0.7073355;0.08499458,0.1175626;-0.7560604;0.02426665,-0.07456321;-0.002441947;-0.02888537,-0.09057947;-0.3809262;0.001000224,-0.09716161;-0.723783;0.07104217,-0.1090429;-0.7107276;-0.02679297,0.001185755;0.3979839;0.03958889,0;0;0,0.007576266;0.199595;0.01021987,0.01883209;0.4993249;0.01214379,0.1112459;0.3698767;-0.05115047,0.2026466;0.229854;-0.275738,0.22813;0.3461623;-0.5291606,-0.1019762;0.3733618;0.02024746,-0.1877336;0.1126036;0.07548197,-0.1387177;-0.1075426;-0.09044911,0.0564081;0.004077934;-0.05658177,0.106184;-0.3662428;0.01259103,0.1174444;-0.7052696;0.09881189,0.1232173;-0.757187;0.04174856,-0.07946093;0.001917991;-0.009070969,-0.08228572;-0.3766268;0.02403317,-0.09255588;-0.717418;0.1031274,-0.1147784;-0.7061845;0.00745099,0.015002;0.3994184;0.0141519,49.29658
+0;0;0,0.0007436769;0.1986784;0.02294191,0.001358207;0.4978761;0.04422763,0.1054654;0.3757565;-0.01547194,0.2563542;0.223056;-0.195236,0.3099442;0.288668;-0.4621127,-0.1119241;0.360465;0.02549993,-0.1997968;0.09604403;0.05306634,-0.2051117;-0.1826516;0.02659988,0.06479836;0.008862969;-0.0460719,0.09688088;-0.3655954;0.0100673,0.1068615;-0.7073355;0.08499458,0.1175626;-0.7560604;0.02426665,-0.07456321;-0.002441947;-0.02888537,-0.09057947;-0.3809262;0.001000224,-0.09716161;-0.723783;0.07104217,-0.1090429;-0.7107276;-0.02679297,0.001185755;0.3979839;0.03958889,0;0;0,0.007555587;0.1995961;0.01021229,0.01883454;0.4993253;0.01211031,0.1111265;0.3700387;-0.0514136,0.2038807;0.2330402;-0.2773075,0.2290897;0.3600049;-0.5255906,-0.1019683;0.3733792;0.02056228,-0.1877238;0.1128692;0.07695829,-0.1384513;-0.1062524;-0.09024804,0.05626896;0.00417809;-0.05671285,0.1058882;-0.3660524;0.01305348,0.1171651;-0.7050619;0.09933986,0.1224325;-0.7568219;0.04200264,-0.07949995;0.00179223;-0.008749079,-0.0824003;-0.3767434;0.02445319,-0.09266195;-0.7175202;0.1036102,-0.1150473;-0.7062868;0.007971779,0.01499543;0.3994194;0.01412722,49.31876
+0;0;0,0.0007436769;0.1986784;0.02294191,0.001358207;0.4978761;0.04422763,0.1054654;0.3757565;-0.01547194,0.2563542;0.223056;-0.195236,0.3099442;0.288668;-0.4621127,-0.1119241;0.360465;0.02549993,-0.1997968;0.09604403;0.05306634,-0.2051117;-0.1826516;0.02659988,0.06479836;0.008862969;-0.0460719,0.09688088;-0.3655954;0.0100673,0.1068615;-0.7073355;0.08499458,0.1175626;-0.7560604;0.02426665,-0.07456321;-0.002441947;-0.02888537,-0.09057947;-0.3809262;0.001000224,-0.09716161;-0.723783;0.07104217,-0.1090429;-0.7107276;-0.02679297,0.001185755;0.3979839;0.03958889,0;0;0,0.007555587;0.1995961;0.01021229,0.01883454;0.4993253;0.01211031,0.1111265;0.3700387;-0.0514136,0.2038807;0.2330402;-0.2773075,0.2290897;0.3600049;-0.5255906,-0.1019683;0.3733792;0.02056228,-0.1877238;0.1128692;0.07695829,-0.1384513;-0.1062524;-0.09024804,0.05626896;0.00417809;-0.05671285,0.1058882;-0.3660524;0.01305348,0.1171651;-0.7050619;0.09933986,0.1224325;-0.7568219;0.04200264,-0.07949995;0.00179223;-0.008749079,-0.0824003;-0.3767434;0.02445319,-0.09266195;-0.7175202;0.1036102,-0.1150473;-0.7062868;0.007971779,0.01499543;0.3994194;0.01412722,49.33023
+0;0;0,0.0003647832;0.1986687;0.02303546,0.000359335;0.4978467;0.04461579,0.105058;0.3754403;-0.01443626,0.2542887;0.2270036;-0.1990893,0.315579;0.2914978;-0.4645776,-0.1124192;0.359903;0.02519969,-0.1997904;0.09528181;0.05243777,-0.2046775;-0.183449;0.02626062,0.06492591;0.009042893;-0.04585687,0.0966543;-0.3654707;0.01011495,0.106551;-0.7071954;0.08512348,0.1171507;-0.7562183;0.02476596,-0.07434355;-0.002753008;-0.02941867,-0.09105982;-0.3811768;0.0008475073,-0.09762316;-0.7239823;0.07114203,-0.109099;-0.7109203;-0.02674265,0.0004384734;0.3979601;0.03985576,0;0;0,0.007318891;0.1995637;0.01099025,0.01824608;0.4993066;0.01398901,0.1103135;0.3701301;-0.05081481,0.2046581;0.2359791;-0.2777567,0.229735;0.3670805;-0.523894,-0.1023125;0.3728641;0.02083956,-0.188856;0.1128493;0.07830739,-0.1444648;-0.1159728;-0.07683727,0.05611559;0.004268203;-0.05685792,0.1052936;-0.3657484;0.01434052,0.1165063;-0.7047303;0.1007441,0.1219586;-0.757067;0.04425566,-0.07956492;0.001684329;-0.008160065,-0.08275089;-0.3767932;0.02567134,-0.09288011;-0.7175934;0.1047448,-0.1153774;-0.7063086;0.009122506,0.01459317;0.3993831;0.01538096,49.3523
+0;0;0,0.0003647832;0.1986687;0.02303546,0.000359335;0.4978467;0.04461579,0.105058;0.3754403;-0.01443626,0.2542887;0.2270036;-0.1990893,0.315579;0.2914978;-0.4645776,-0.1124192;0.359903;0.02519969,-0.1997904;0.09528181;0.05243777,-0.2046775;-0.183449;0.02626062,0.06492591;0.009042893;-0.04585687,0.0966543;-0.3654707;0.01011495,0.106551;-0.7071954;0.08512348,0.1171507;-0.7562183;0.02476596,-0.07434355;-0.002753008;-0.02941867,-0.09105982;-0.3811768;0.0008475073,-0.09762316;-0.7239823;0.07114203,-0.109099;-0.7109203;-0.02674265,0.0004384734;0.3979601;0.03985576,0;0;0,0.007318891;0.1995637;0.01099025,0.01824608;0.4993066;0.01398901,0.1103135;0.3701301;-0.05081481,0.2046581;0.2359791;-0.2777567,0.229735;0.3670805;-0.523894,-0.1023125;0.3728641;0.02083956,-0.188856;0.1128493;0.07830739,-0.1444648;-0.1159728;-0.07683727,0.05611559;0.004268203;-0.05685792,0.1052936;-0.3657484;0.01434052,0.1165063;-0.7047303;0.1007441,0.1219586;-0.757067;0.04425566,-0.07956492;0.001684329;-0.008160065,-0.08275089;-0.3767932;0.02567134,-0.09288011;-0.7175934;0.1047448,-0.1153774;-0.7063086;0.009122506,0.01459317;0.3993831;0.01538096,49.36357
+0;0;0,0.0003647832;0.1986687;0.02303546,0.000359335;0.4978467;0.04461579,0.105058;0.3754403;-0.01443626,0.2542887;0.2270036;-0.1990893,0.315579;0.2914978;-0.4645776,-0.1124192;0.359903;0.02519969,-0.1997904;0.09528181;0.05243777,-0.2046775;-0.183449;0.02626062,0.06492591;0.009042893;-0.04585687,0.0966543;-0.3654707;0.01011495,0.106551;-0.7071954;0.08512348,0.1171507;-0.7562183;0.02476596,-0.07434355;-0.002753008;-0.02941867,-0.09105982;-0.3811768;0.0008475073,-0.09762316;-0.7239823;0.07114203,-0.109099;-0.7109203;-0.02674265,0.0004384734;0.3979601;0.03985576,0;0;0,0.007318891;0.1995637;0.01099025,0.01824608;0.4993066;0.01398901,0.1103135;0.3701301;-0.05081481,0.2046581;0.2359791;-0.2777567,0.229735;0.3670805;-0.523894,-0.1023125;0.3728641;0.02083956,-0.188856;0.1128493;0.07830739,-0.1444648;-0.1159728;-0.07683727,0.05611559;0.004268203;-0.05685792,0.1052936;-0.3657484;0.01434052,0.1165063;-0.7047303;0.1007441,0.1219586;-0.757067;0.04425566,-0.07956492;0.001684329;-0.008160065,-0.08275089;-0.3767932;0.02567134,-0.09288011;-0.7175934;0.1047448,-0.1153774;-0.7063086;0.009122506,0.01459317;0.3993831;0.01538096,49.37498
+0;0;0,-2.827064E-05;0.1986508;0.02319174,-0.0008929772;0.4978037;0.04511437,0.1042879;0.3745674;-0.01344356,0.2516419;0.2420448;-0.2112428,0.3200874;0.307394;-0.4747664,-0.1132318;0.3598207;0.02490165,-0.1993002;0.09450889;0.04943497,-0.2051541;-0.18435;0.02487018,0.06512097;0.009101341;-0.04556779,0.09651174;-0.3654833;0.01011884,0.1064508;-0.7072023;0.08514766,0.1169055;-0.756289;0.02484846,-0.07407211;-0.002847755;-0.03008677,-0.09145214;-0.3812164;0.0004929248,-0.09786392;-0.7239301;0.07124766,-0.1089562;-0.7108576;-0.02668304,-0.0004767722;0.3979249;0.04021081,0;0;0,0.007177592;0.1995385;0.01152653,0.01803613;0.4992803;0.0152848,0.1099768;0.3702952;-0.05023199,0.2061204;0.237964;-0.277487,0.2321035;0.3797079;-0.5175569,-0.1024968;0.3727856;0.02127702,-0.1896797;0.1132016;0.07971721,-0.1448006;-0.1142317;-0.07731768,0.05607236;0.004291679;-0.05689879,0.1047733;-0.3656341;0.0150953,0.1161026;-0.7046127;0.1014962,0.1215421;-0.7570269;0.04511948,-0.07958278;0.00162886;-0.007995448,-0.08304402;-0.3767933;0.0264244,-0.09327127;-0.7174958;0.1059052,-0.1158105;-0.7061882;0.01028838,0.01441931;0.3993507;0.01628535,49.39704
+0;0;0,-2.827064E-05;0.1986508;0.02319174,-0.0008929772;0.4978037;0.04511437,0.1042879;0.3745674;-0.01344356,0.2516419;0.2420448;-0.2112428,0.3200874;0.307394;-0.4747664,-0.1132318;0.3598207;0.02490165,-0.1993002;0.09450889;0.04943497,-0.2051541;-0.18435;0.02487018,0.06512097;0.009101341;-0.04556779,0.09651174;-0.3654833;0.01011884,0.1064508;-0.7072023;0.08514766,0.1169055;-0.756289;0.02484846,-0.07407211;-0.002847755;-0.03008677,-0.09145214;-0.3812164;0.0004929248,-0.09786392;-0.7239301;0.07124766,-0.1089562;-0.7108576;-0.02668304,-0.0004767722;0.3979249;0.04021081,0;0;0,0.007240863;0.1995585;0.0111344,0.01835857;0.4992939;0.01410482,0.1105634;0.3703388;-0.05043851,0.2082516;0.2393476;-0.2778112,0.2349252;0.3838313;-0.5161659,-0.1022279;0.3726634;0.02126055,-0.1898292;0.113389;0.08044502,-0.1418178;-0.1087618;-0.08309066,0.05616453;0.004239563;-0.05681172,0.1048906;-0.3656897;0.01514727,0.1163278;-0.7046053;0.1017808,0.1221618;-0.7566753;0.04494341,-0.0795652;0.00169063;-0.008155998,-0.08295694;-0.3766914;0.02670865,-0.09304385;-0.7174528;0.1059547,-0.1155423;-0.706163;0.01033171,0.01462122;0.3993739;0.0155316,49.4193
+0;0;0,-2.827064E-05;0.1986508;0.02319174,-0.0008929772;0.4978037;0.04511437,0.1042879;0.3745674;-0.01344356,0.2516419;0.2420448;-0.2112428,0.3200874;0.307394;-0.4747664,-0.1132318;0.3598207;0.02490165,-0.1993002;0.09450889;0.04943497,-0.2051541;-0.18435;0.02487018,0.06512097;0.009101341;-0.04556779,0.09651174;-0.3654833;0.01011884,0.1064508;-0.7072023;0.08514766,0.1169055;-0.756289;0.02484846,-0.07407211;-0.002847755;-0.03008677,-0.09145214;-0.3812164;0.0004929248,-0.09786392;-0.7239301;0.07124766,-0.1089562;-0.7108576;-0.02668304,-0.0004767722;0.3979249;0.04021081,0;0;0,0.007240863;0.1995585;0.0111344,0.01835857;0.4992939;0.01410482,0.1105634;0.3703388;-0.05043851,0.2082516;0.2393476;-0.2778112,0.2349252;0.3838313;-0.5161659,-0.1022279;0.3726634;0.02126055,-0.1898292;0.113389;0.08044502,-0.1418178;-0.1087618;-0.08309066,0.05616453;0.004239563;-0.05681172,0.1048906;-0.3656897;0.01514727,0.1163278;-0.7046053;0.1017808,0.1221618;-0.7566753;0.04494341,-0.0795652;0.00169063;-0.008155998,-0.08295694;-0.3766914;0.02670865,-0.09304385;-0.7174528;0.1059547,-0.1155423;-0.706163;0.01033171,0.01462122;0.3993739;0.0155316,49.43068
+0;0;0,-0.0002369463;0.1986508;0.0231906,-0.001563407;0.497797;0.04518022,0.1039937;0.3738004;-0.0125301,0.2514621;0.2422782;-0.210911,0.3313037;0.3061381;-0.4715779,-0.1136211;0.3595596;0.02433695,-0.197016;0.09298414;0.04390233,-0.2044258;-0.1861389;0.02303619,0.06518178;0.009146196;-0.04547176,0.09658419;-0.365466;0.0100225,0.1064762;-0.7071549;0.08519451,0.1169627;-0.7561789;0.02481871,-0.07400142;-0.002926851;-0.03025264,-0.09126961;-0.3812839;0.0005332138,-0.09767175;-0.7239689;0.07142734,-0.08423278;-0.7722687;0.01069407,-0.001037732;0.3979195;0.04025884,0;0;0,0.007310186;0.1995633;0.01100303,0.0186076;0.4992919;0.01374148,0.1128028;0.3704332;-0.04758948,0.208087;0.2419731;-0.2774132,0.2381425;0.3881403;-0.5143347,-0.1020585;0.3727722;0.02150889,-0.1887745;0.1132272;0.08081061,-0.1398035;-0.1072143;-0.08474126,0.05620847;0.00423128;-0.05676886,0.1049444;-0.365703;0.01515775,0.1163769;-0.704573;0.1019705,0.1217926;-0.756498;0.04488324,-0.07956327;0.001671584;-0.008178632,-0.08240821;-0.3767473;0.02633341,-0.09290089;-0.7174041;0.1059753,-0.1142741;-0.7060867;0.01008914,0.01479059;0.399377;0.01530621,49.45286
+0;0;0,-0.0002369463;0.1986508;0.0231906,-0.001563407;0.497797;0.04518022,0.1039937;0.3738004;-0.0125301,0.2514621;0.2422782;-0.210911,0.3313037;0.3061381;-0.4715779,-0.1136211;0.3595596;0.02433695,-0.197016;0.09298414;0.04390233,-0.2044258;-0.1861389;0.02303619,0.06518178;0.009146196;-0.04547176,0.09658419;-0.365466;0.0100225,0.1064762;-0.7071549;0.08519451,0.1169627;-0.7561789;0.02481871,-0.07400142;-0.002926851;-0.03025264,-0.09126961;-0.3812839;0.0005332138,-0.09767175;-0.7239689;0.07142734,-0.08423278;-0.7722687;0.01069407,-0.001037732;0.3979195;0.04025884,0;0;0,0.007310186;0.1995633;0.01100303,0.0186076;0.4992919;0.01374148,0.1128028;0.3704332;-0.04758948,0.208087;0.2419731;-0.2774132,0.2381425;0.3881403;-0.5143347,-0.1020585;0.3727722;0.02150889,-0.1887745;0.1132272;0.08081061,-0.1398035;-0.1072143;-0.08474126,0.05620847;0.00423128;-0.05676886,0.1049444;-0.365703;0.01515775,0.1163769;-0.704573;0.1019705,0.1217926;-0.756498;0.04488324,-0.07956327;0.001671584;-0.008178632,-0.08240821;-0.3767473;0.02633341,-0.09290089;-0.7174041;0.1059753,-0.1142741;-0.7060867;0.01008914,0.01479059;0.399377;0.01530621,49.46414
+0;0;0,-0.0002369463;0.1986508;0.0231906,-0.001563407;0.497797;0.04518022,0.1039937;0.3738004;-0.0125301,0.2514621;0.2422782;-0.210911,0.3313037;0.3061381;-0.4715779,-0.1136211;0.3595596;0.02433695,-0.197016;0.09298414;0.04390233,-0.2044258;-0.1861389;0.02303619,0.06518178;0.009146196;-0.04547176,0.09658419;-0.365466;0.0100225,0.1064762;-0.7071549;0.08519451,0.1169627;-0.7561789;0.02481871,-0.07400142;-0.002926851;-0.03025264,-0.09126961;-0.3812839;0.0005332138,-0.09767175;-0.7239689;0.07142734,-0.08423278;-0.7722687;0.01069407,-0.001037732;0.3979195;0.04025884,0;0;0,0.007195221;0.1995666;0.01101737,0.01827746;0.4993025;0.01372922,0.1137307;0.3707815;-0.04586465,0.2090569;0.2439743;-0.276587,0.2431383;0.3912537;-0.5122716,-0.1023775;0.3731386;0.02159703,-0.1884023;0.1133989;0.08105309,-0.1392476;-0.1063741;-0.08533099,0.05630135;0.004204099;-0.05667877,0.105024;-0.3657798;0.01500076,0.1163753;-0.7046034;0.1020051,0.1218383;-0.756583;0.04500081,-0.07952593;0.001717997;-0.008524925,-0.08249052;-0.3767369;0.02557965,-0.09288051;-0.7173206;0.1055472,-0.113588;-0.7059808;0.009510815,0.01454927;0.3993849;0.0153309,49.48629
+0;0;0,-0.00053233;0.19865;0.02319208,-0.00235842;0.4977809;0.04535296,0.1036557;0.3732051;-0.01160006,0.2574371;0.2396041;-0.2036991,0.3400937;0.3012811;-0.464014,-0.1139313;0.3588778;0.02398235,-0.1973016;0.09236771;0.04451866,-0.2087816;-0.1859278;0.01588623,0.06541318;0.009233315;-0.04512051,0.0964794;-0.3654541;0.01005369,0.1068544;-0.7071329;0.08520664,0.0941012;-0.6940222;-0.01252824,-0.07379539;-0.003135049;-0.03073127,-0.09158957;-0.3814394;0.000400288,-0.09800563;-0.7241294;0.07126898,-0.08518812;-0.7727534;0.01082072,-0.001646032;0.3979075;0.04037436,0;0;0,0.007195221;0.1995666;0.01101737,0.01827746;0.4993025;0.01372922,0.1137307;0.3707815;-0.04586465,0.2090569;0.2439743;-0.276587,0.2431383;0.3912537;-0.5122716,-0.1023775;0.3731386;0.02159703,-0.1884023;0.1133989;0.08105309,-0.1392476;-0.1063741;-0.08533099,0.05630135;0.004204099;-0.05667877,0.105024;-0.3657798;0.01500076,0.1163753;-0.7046034;0.1020051,0.1218383;-0.756583;0.04500081,-0.07952593;0.001717997;-0.008524925,-0.08249052;-0.3767369;0.02557965,-0.09288051;-0.7173206;0.1055472,-0.113588;-0.7059808;0.009510815,0.01454927;0.3993849;0.0153309,49.49759
+0;0;0,-0.00053233;0.19865;0.02319208,-0.00235842;0.4977809;0.04535296,0.1036557;0.3732051;-0.01160006,0.2574371;0.2396041;-0.2036991,0.3400937;0.3012811;-0.464014,-0.1139313;0.3588778;0.02398235,-0.1973016;0.09236771;0.04451866,-0.2087816;-0.1859278;0.01588623,0.06541318;0.009233315;-0.04512051,0.0964794;-0.3654541;0.01005369,0.1068544;-0.7071329;0.08520664,0.0941012;-0.6940222;-0.01252824,-0.07379539;-0.003135049;-0.03073127,-0.09158957;-0.3814394;0.000400288,-0.09800563;-0.7241294;0.07126898,-0.08518812;-0.7727534;0.01082072,-0.001646032;0.3979075;0.04037436,0;0;0,0.007195221;0.1995666;0.01101737,0.01827746;0.4993025;0.01372922,0.1137307;0.3707815;-0.04586465,0.2090569;0.2439743;-0.276587,0.2431383;0.3912537;-0.5122716,-0.1023775;0.3731386;0.02159703,-0.1884023;0.1133989;0.08105309,-0.1392476;-0.1063741;-0.08533099,0.05630135;0.004204099;-0.05667877,0.105024;-0.3657798;0.01500076,0.1163753;-0.7046034;0.1020051,0.1218383;-0.756583;0.04500081,-0.07952593;0.001717997;-0.008524925,-0.08249052;-0.3767369;0.02557965,-0.09288051;-0.7173206;0.1055472,-0.113588;-0.7059808;0.009510815,0.01454927;0.3993849;0.0153309,49.50899
+0;0;0,-0.00053233;0.19865;0.02319208,-0.00235842;0.4977809;0.04535296,0.1036557;0.3732051;-0.01160006,0.2574371;0.2396041;-0.2036991,0.3400937;0.3012811;-0.464014,-0.1139313;0.3588778;0.02398235,-0.1973016;0.09236771;0.04451866,-0.2087816;-0.1859278;0.01588623,0.06541318;0.009233315;-0.04512051,0.0964794;-0.3654541;0.01005369,0.1068544;-0.7071329;0.08520664,0.0941012;-0.6940222;-0.01252824,-0.07379539;-0.003135049;-0.03073127,-0.09158957;-0.3814394;0.000400288,-0.09800563;-0.7241294;0.07126898,-0.08518812;-0.7727534;0.01082072,-0.001646032;0.3979075;0.04037436,0;0;0,0.00701855;0.1995682;0.01110311,0.01759434;0.4993212;0.01392982,0.1131078;0.3708824;-0.04598687,0.2113198;0.2448032;-0.2758965,0.2547863;0.3928085;-0.5095739,-0.1029805;0.3736728;0.02148187,-0.188564;0.1139832;0.08178768,-0.1405727;-0.1093239;-0.08017152,0.05637996;0.004268487;-0.05659576,0.1050978;-0.365707;0.01513089,0.1164482;-0.7045121;0.1022071,0.1211939;-0.756474;0.04511309,-0.07949089;0.001561007;-0.008874767,-0.08284093;-0.3768587;0.02558235,-0.09327946;-0.7173592;0.1058971,-0.1139926;-0.7060372;0.009865344,0.01407722;0.3993953;0.01549449,49.5311
+0;0;0,-0.000699571;0.1986469;0.02321469,-0.002966194;0.4977656;0.04549171,0.1036368;0.372548;-0.01019931,0.2615975;0.2371741;-0.1976088,0.3467712;0.3012677;-0.4565247,-0.1141222;0.3582847;0.02344446,-0.1971704;0.09174681;0.04490534,-0.2086138;-0.1865511;0.01628159,0.06558237;0.009206099;-0.04487983,0.09644242;-0.3655253;0.01011126,0.1068401;-0.7072155;0.08520935,0.09468333;-0.6941017;-0.01260205,-0.07376256;-0.003149166;-0.03080855,-0.09155875;-0.3814555;0.0002985634,-0.09801314;-0.7241127;0.07132186,-0.0834125;-0.7716087;0.009830311,-0.002137615;0.3978943;0.04048941,0;0;0,0.00701855;0.1995682;0.01110311,0.01759434;0.4993212;0.01392982,0.1131078;0.3708824;-0.04598687,0.2113198;0.2448032;-0.2758965,0.2547863;0.3928085;-0.5095739,-0.1029805;0.3736728;0.02148187,-0.188564;0.1139832;0.08178768,-0.1405727;-0.1093239;-0.08017152,0.05637996;0.004268487;-0.05659576,0.1050978;-0.365707;0.01513089,0.1164482;-0.7045121;0.1022071,0.1211939;-0.756474;0.04511309,-0.07949089;0.001561007;-0.008874767,-0.08284093;-0.3768587;0.02558235,-0.09327946;-0.7173592;0.1058971,-0.1139926;-0.7060372;0.009865344,0.01407722;0.3993953;0.01549449,49.54231
+0;0;0,-0.000699571;0.1986469;0.02321469,-0.002966194;0.4977656;0.04549171,0.1036368;0.372548;-0.01019931,0.2615975;0.2371741;-0.1976088,0.3467712;0.3012677;-0.4565247,-0.1141222;0.3582847;0.02344446,-0.1971704;0.09174681;0.04490534,-0.2086138;-0.1865511;0.01628159,0.06558237;0.009206099;-0.04487983,0.09644242;-0.3655253;0.01011126,0.1068401;-0.7072155;0.08520935,0.09468333;-0.6941017;-0.01260205,-0.07376256;-0.003149166;-0.03080855,-0.09155875;-0.3814555;0.0002985634,-0.09801314;-0.7241127;0.07132186,-0.0834125;-0.7716087;0.009830311,-0.002137615;0.3978943;0.04048941,0;0;0,0.00721757;0.19957;0.01094216,0.01798974;0.4993167;0.01341107,0.1132248;0.3707678;-0.04656708,0.2155142;0.246653;-0.2757666,0.2679988;0.3923083;-0.5090687,-0.1026504;0.3735044;0.02091504,-0.1887835;0.1139624;0.0810735,-0.1410544;-0.1112764;-0.07826691,0.05645451;0.004195285;-0.05652688,0.1056534;-0.3658157;0.01468613,0.1170581;-0.7045698;0.1019536,0.1216109;-0.7564204;0.04468432,-0.07947432;0.001666861;-0.009002971,-0.08255604;-0.3767969;0.02499194,-0.09266997;-0.7172588;0.1055114,-0.1134491;-0.7059419;0.009494886,0.01438153;0.3993971;0.01516107,49.56448
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,0.007038488;0.1995709;0.01104224,0.01758305;0.4993243;0.01361281,0.1129614;0.3708313;-0.04631782,0.2194827;0.2454554;-0.2728881,0.287581;0.3885536;-0.5037247,-0.1030326;0.3737006;0.02074571,-0.1829782;0.1105686;0.07337853,-0.1246404;-0.09795514;-0.1041449,0.05661436;0.004217085;-0.05636515,0.105563;-0.3658252;0.01485798,0.1169397;-0.70454;0.1022813,0.1221888;-0.7561094;0.04467148,-0.07932885;0.001674178;-0.01020441,-0.08272035;-0.3766716;0.02505139,-0.09288239;-0.717118;0.1056303,-0.1134949;-0.7057855;0.009574875,0.01405829;0.3994014;0.01534187,49.58698
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,0.007038488;0.1995709;0.01104224,0.01758305;0.4993243;0.01361281,0.1129614;0.3708313;-0.04631782,0.2194827;0.2454554;-0.2728881,0.287581;0.3885536;-0.5037247,-0.1030326;0.3737006;0.02074571,-0.1829782;0.1105686;0.07337853,-0.1246404;-0.09795514;-0.1041449,0.05661436;0.004217085;-0.05636515,0.105563;-0.3658252;0.01485798,0.1169397;-0.70454;0.1022813,0.1221888;-0.7561094;0.04467148,-0.07932885;0.001674178;-0.01020441,-0.08272035;-0.3766716;0.02505139,-0.09288239;-0.717118;0.1056303,-0.1134949;-0.7057855;0.009574875,0.01405829;0.3994014;0.01534187,49.59814
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,0.007038488;0.1995709;0.01104224,0.01758305;0.4993243;0.01361281,0.1129614;0.3708313;-0.04631782,0.2194827;0.2454554;-0.2728881,0.287581;0.3885536;-0.5037247,-0.1030326;0.3737006;0.02074571,-0.1829782;0.1105686;0.07337853,-0.1246404;-0.09795514;-0.1041449,0.05661436;0.004217085;-0.05636515,0.105563;-0.3658252;0.01485798,0.1169397;-0.70454;0.1022813,0.1221888;-0.7561094;0.04467148,-0.07932885;0.001674178;-0.01020441,-0.08272035;-0.3766716;0.02505139,-0.09288239;-0.717118;0.1056303,-0.1134949;-0.7057855;0.009574875,0.01405829;0.3994014;0.01534187,49.60915
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,0.00698366;0.1995736;0.0110284,0.01748195;0.4993283;0.01361764,0.1129095;0.3708188;-0.04623914,0.2256162;0.2453227;-0.2697296,0.2977719;0.3883873;-0.4993511,-0.1030872;0.3734549;0.02042291,-0.1818005;0.109951;0.07305267,-0.122444;-0.09760387;-0.1052667,0.05680517;0.00420427;-0.0561738,0.1059507;-0.3659127;0.01452382,0.1172205;-0.7046006;0.102065,0.1224774;-0.7561705;0.04445657,-0.07927271;0.001574302;-0.010647,-0.08249691;-0.3767567;0.02478237,-0.09276669;-0.7172196;0.1052779,-0.1131844;-0.7058712;0.009177729,0.01396314;0.3994052;0.01534359,49.62083
+0;0;0,-0.001262364;0.1986225;0.0233991,-0.004869109;0.497678;0.04633273,0.1026365;0.3724708;-0.00854094,0.2636069;0.2387845;-0.1945961,0.367754;0.3032768;-0.446378,-0.1143218;0.3565536;0.02009086,-0.1990137;0.09078923;0.04451583,-0.2105969;-0.1875575;0.01642824,0.06617564;0.009217833;-0.04399791,0.09630692;-0.3657039;0.0100927,0.1061207;-0.7074701;0.08492297,0.09522281;-0.6943337;-0.01304057,-0.07345457;-0.003409229;-0.03150879,-0.09160331;-0.3816575;9.706616E-05,-0.09779185;-0.7242001;0.07169443,-0.08345899;-0.7729468;0.01174833,-0.003621391;0.3978215;0.04112383,0;0;0,0.00698366;0.1995736;0.0110284,0.01748195;0.4993283;0.01361764,0.1129095;0.3708188;-0.04623914,0.2256162;0.2453227;-0.2697296,0.2977719;0.3883873;-0.4993511,-0.1030872;0.3734549;0.02042291,-0.1818005;0.109951;0.07305267,-0.122444;-0.09760387;-0.1052667,0.05680517;0.00420427;-0.0561738,0.1059507;-0.3659127;0.01452382,0.1172205;-0.7046006;0.102065,0.1224774;-0.7561705;0.04445657,-0.07927271;0.001574302;-0.010647,-0.08249691;-0.3767567;0.02478237,-0.09276669;-0.7172196;0.1052779,-0.1131844;-0.7058712;0.009177729,0.01396314;0.3994052;0.01534359,49.64275
+0;0;0,-0.001262364;0.1986225;0.0233991,-0.004869109;0.497678;0.04633273,0.1026365;0.3724708;-0.00854094,0.2636069;0.2387845;-0.1945961,0.367754;0.3032768;-0.446378,-0.1143218;0.3565536;0.02009086,-0.1990137;0.09078923;0.04451583,-0.2105969;-0.1875575;0.01642824,0.06617564;0.009217833;-0.04399791,0.09630692;-0.3657039;0.0100927,0.1061207;-0.7074701;0.08492297,0.09522281;-0.6943337;-0.01304057,-0.07345457;-0.003409229;-0.03150879,-0.09160331;-0.3816575;9.706616E-05,-0.09779185;-0.7242001;0.07169443,-0.08345899;-0.7729468;0.01174833,-0.003621391;0.3978215;0.04112383,0;0;0,0.006829376;0.1995732;0.01113068,0.01691891;0.4993404;0.01401478,0.1125789;0.3705306;-0.04572976,0.2323899;0.2398857;-0.2624721,0.3123801;0.3706647;-0.4967762,-0.1035276;0.3735769;0.02019825,-0.1873195;0.1117564;0.07338616,-0.1334154;-0.1085539;-0.09080176,0.05687259;0.00429869;-0.0560984,0.1060293;-0.3659143;0.01408703,0.1171143;-0.7044623;0.1021913,0.122735;-0.7559224;0.0444621,-0.07924686;0.001386756;-0.01086329,-0.08250372;-0.3769094;0.02493318,-0.09309422;-0.7173795;0.1053572,-0.1133492;-0.7060104;0.009218618,0.01356927;0.3994094;0.0156144,49.65418
+0;0;0,-0.001262364;0.1986225;0.0233991,-0.004869109;0.497678;0.04633273,0.1026365;0.3724708;-0.00854094,0.2636069;0.2387845;-0.1945961,0.367754;0.3032768;-0.446378,-0.1143218;0.3565536;0.02009086,-0.1990137;0.09078923;0.04451583,-0.2105969;-0.1875575;0.01642824,0.06617564;0.009217833;-0.04399791,0.09630692;-0.3657039;0.0100927,0.1061207;-0.7074701;0.08492297,0.09522281;-0.6943337;-0.01304057,-0.07345457;-0.003409229;-0.03150879,-0.09160331;-0.3816575;9.706616E-05,-0.09779185;-0.7242001;0.07169443,-0.08345899;-0.7729468;0.01174833,-0.003621391;0.3978215;0.04112383,0;0;0,0.006829376;0.1995732;0.01113068,0.01691891;0.4993404;0.01401478,0.1125789;0.3705306;-0.04572976,0.2323899;0.2398857;-0.2624721,0.3123801;0.3706647;-0.4967762,-0.1035276;0.3735769;0.02019825,-0.1873195;0.1117564;0.07338616,-0.1334154;-0.1085539;-0.09080176,0.05687259;0.00429869;-0.0560984,0.1060293;-0.3659143;0.01408703,0.1171143;-0.7044623;0.1021913,0.122735;-0.7559224;0.0444621,-0.07924686;0.001386756;-0.01086329,-0.08250372;-0.3769094;0.02493318,-0.09309422;-0.7173795;0.1053572,-0.1133492;-0.7060104;0.009218618,0.01356927;0.3994094;0.0156144,49.67627
+0;0;0,-0.001157693;0.1986601;0.02308299,-0.003610181;0.4978462;0.04428942,0.1038807;0.3723729;-0.008516081,0.2706351;0.2393131;-0.1898667,0.3824347;0.3012215;-0.4390016,-0.1139722;0.3569536;0.02026486,-0.1988888;0.09131402;0.04526085,-0.2091075;-0.1870083;0.01641219,0.06644396;0.009287495;-0.04357687,0.09624703;-0.3657586;0.009829111,0.1058578;-0.7074786;0.08489604,0.09521835;-0.6943729;-0.01309062,-0.07339453;-0.003420191;-0.03164719,-0.0916348;-0.3816603;3.404915E-06,-0.09800126;-0.7241871;0.07166079,-0.08228204;-0.770368;0.008816697,-0.002909297;0.397946;0.03987727,0;0;0,0.006516501;0.1995735;0.01131131,0.01555672;0.4993676;0.01484818,0.1120426;0.3707181;-0.04449178,0.2377527;0.237306;-0.2561476,0.3239559;0.3647135;-0.4901056,-0.1044125;0.3730479;0.01999152,-0.1871513;0.1108978;0.07320467,-0.1312581;-0.1075581;-0.09278621,0.05755679;0.004316305;-0.05539481,0.1065172;-0.3660402;0.01416756,0.1174574;-0.7047689;0.1015928,0.1222482;-0.7563409;0.04394685,-0.07918779;0.001287075;-0.01129769,-0.0824564;-0.3769962;0.02463379,-0.0931228;-0.71747;0.1050315,-0.1129837;-0.7060799;0.008806698,0.01259281;0.3994209;0.01621976,49.68783
+0;0;0,-0.001157693;0.1986601;0.02308299,-0.003610181;0.4978462;0.04428942,0.1038807;0.3723729;-0.008516081,0.2706351;0.2393131;-0.1898667,0.3824347;0.3012215;-0.4390016,-0.1139722;0.3569536;0.02026486,-0.1988888;0.09131402;0.04526085,-0.2091075;-0.1870083;0.01641219,0.06644396;0.009287495;-0.04357687,0.09624703;-0.3657586;0.009829111,0.1058578;-0.7074786;0.08489604,0.09521835;-0.6943729;-0.01309062,-0.07339453;-0.003420191;-0.03164719,-0.0916348;-0.3816603;3.404915E-06,-0.09800126;-0.7241871;0.07166079,-0.08228204;-0.770368;0.008816697,-0.002909297;0.397946;0.03987727,0;0;0,0.006516501;0.1995735;0.01131131,0.01555672;0.4993676;0.01484818,0.1120426;0.3707181;-0.04449178,0.2377527;0.237306;-0.2561476,0.3239559;0.3647135;-0.4901056,-0.1044125;0.3730479;0.01999152,-0.1871513;0.1108978;0.07320467,-0.1312581;-0.1075581;-0.09278621,0.05755679;0.004316305;-0.05539481,0.1065172;-0.3660402;0.01416756,0.1174574;-0.7047689;0.1015928,0.1222482;-0.7563409;0.04394685,-0.07918779;0.001287075;-0.01129769,-0.0824564;-0.3769962;0.02463379,-0.0931228;-0.71747;0.1050315,-0.1129837;-0.7060799;0.008806698,0.01259281;0.3994209;0.01621976,49.70969
+0;0;0,-0.001157693;0.1986601;0.02308299,-0.003610181;0.4978462;0.04428942,0.1038807;0.3723729;-0.008516081,0.2706351;0.2393131;-0.1898667,0.3824347;0.3012215;-0.4390016,-0.1139722;0.3569536;0.02026486,-0.1988888;0.09131402;0.04526085,-0.2091075;-0.1870083;0.01641219,0.06644396;0.009287495;-0.04357687,0.09624703;-0.3657586;0.009829111,0.1058578;-0.7074786;0.08489604,0.09521835;-0.6943729;-0.01309062,-0.07339453;-0.003420191;-0.03164719,-0.0916348;-0.3816603;3.404915E-06,-0.09800126;-0.7241871;0.07166079,-0.08228204;-0.770368;0.008816697,-0.002909297;0.397946;0.03987727,0;0;0,0.006124998;0.1995733;0.01153213,0.01408682;0.4993867;0.01618104,0.111568;0.3708341;-0.04282972,0.2450139;0.2307063;-0.2452066,0.3385139;0.3419066;-0.4845646,-0.1053645;0.3727005;0.01959275,-0.1871089;0.1102396;0.07281055,-0.1264909;-0.1038132;-0.0972097,0.05803044;0.004484167;-0.05488497,0.1066717;-0.3658082;0.01524037,0.1167751;-0.7047805;0.1018181,0.123311;-0.756897;0.04512451,-0.07895283;0.000947416;-0.01286677,-0.08291534;-0.3771923;0.02447891,-0.09348656;-0.7176239;0.1050672,-0.1127261;-0.7061907;0.008707911,0.0115954;0.3994217;0.01707205,49.73209
+0;0;0,-0.001533877;0.1986492;0.02315493,-0.005114859;0.4977956;0.0447833,0.1032158;0.3721934;-0.007208236,0.2714456;0.2415994;-0.1889883,0.3947003;0.3035775;-0.4326417,-0.1149509;0.3568501;0.02014413,-0.1990426;0.09095997;0.04526504,-0.2091821;-0.1873298;0.01607604,0.06668483;0.009202548;-0.04322553,0.09643685;-0.3658955;0.00984301,0.1060135;-0.7076437;0.08478574,0.09573095;-0.6945295;-0.01324047,-0.07321025;-0.003447471;-0.03206825,-0.09129621;-0.3816634;-4.278868E-05,-0.09762728;-0.7241629;0.07174819,-0.08398729;-0.7722118;0.01073729,-0.003988464;0.3979078;0.04018383,0;0;0,0.006124998;0.1995733;0.01153213,0.01408682;0.4993867;0.01618104,0.111568;0.3708341;-0.04282972,0.2450139;0.2307063;-0.2452066,0.3385139;0.3419066;-0.4845646,-0.1053645;0.3727005;0.01959275,-0.1871089;0.1102396;0.07281055,-0.1264909;-0.1038132;-0.0972097,0.05803044;0.004484167;-0.05488497,0.1066717;-0.3658082;0.01524037,0.1167751;-0.7047805;0.1018181,0.123311;-0.756897;0.04512451,-0.07895283;0.000947416;-0.01286677,-0.08291534;-0.3771923;0.02447891,-0.09348656;-0.7176239;0.1050672,-0.1127261;-0.7061907;0.008707911,0.0115954;0.3994217;0.01707205,49.74327
+0;0;0,-0.001533877;0.1986492;0.02315493,-0.005114859;0.4977956;0.0447833,0.1032158;0.3721934;-0.007208236,0.2714456;0.2415994;-0.1889883,0.3947003;0.3035775;-0.4326417,-0.1149509;0.3568501;0.02014413,-0.1990426;0.09095997;0.04526504,-0.2091821;-0.1873298;0.01607604,0.06668483;0.009202548;-0.04322553,0.09643685;-0.3658955;0.00984301,0.1060135;-0.7076437;0.08478574,0.09573095;-0.6945295;-0.01324047,-0.07321025;-0.003447471;-0.03206825,-0.09129621;-0.3816634;-4.278868E-05,-0.09762728;-0.7241629;0.07174819,-0.08398729;-0.7722118;0.01073729,-0.003988464;0.3979078;0.04018383,0;0;0,0.005617126;0.199572;0.01180918,0.01267327;0.4993958;0.01728546,0.1114055;0.3709096;-0.04060005,0.2486638;0.2323165;-0.2414784,0.3523486;0.3414622;-0.4775646,-0.1063687;0.3724601;0.01936101,-0.187624;0.1099589;0.07312613,-0.1264269;-0.1037354;-0.09713728,0.0584763;0.004674243;-0.05439369,0.1060796;-0.365841;0.01526486,0.1162593;-0.7047743;0.1019866,0.1219103;-0.7566836;0.04489952,-0.07877009;0.0006113507;-0.01396065,-0.08333447;-0.3774276;0.02432374,-0.0938203;-0.7178498;0.1049637,-0.1122412;-0.7063701;0.008435607,0.01055385;0.3994199;0.01784738,49.75473
+0;0;0,-0.001533877;0.1986492;0.02315493,-0.005114859;0.4977956;0.0447833,0.1032158;0.3721934;-0.007208236,0.2714456;0.2415994;-0.1889883,0.3947003;0.3035775;-0.4326417,-0.1149509;0.3568501;0.02014413,-0.1990426;0.09095997;0.04526504,-0.2091821;-0.1873298;0.01607604,0.06668483;0.009202548;-0.04322553,0.09643685;-0.3658955;0.00984301,0.1060135;-0.7076437;0.08478574,0.09573095;-0.6945295;-0.01324047,-0.07321025;-0.003447471;-0.03206825,-0.09129621;-0.3816634;-4.278868E-05,-0.09762728;-0.7241629;0.07174819,-0.08398729;-0.7722118;0.01073729,-0.003988464;0.3979078;0.04018383,0;0;0,0.005617126;0.199572;0.01180918,0.01267327;0.4993958;0.01728546,0.1114055;0.3709096;-0.04060005,0.2486638;0.2323165;-0.2414784,0.3523486;0.3414622;-0.4775646,-0.1063687;0.3724601;0.01936101,-0.187624;0.1099589;0.07312613,-0.1264269;-0.1037354;-0.09713728,0.0584763;0.004674243;-0.05439369,0.1060796;-0.365841;0.01526486,0.1162593;-0.7047743;0.1019866,0.1219103;-0.7566836;0.04489952,-0.07877009;0.0006113507;-0.01396065,-0.08333447;-0.3774276;0.02432374,-0.0938203;-0.7178498;0.1049637,-0.1122412;-0.7063701;0.008435607,0.01055385;0.3994199;0.01784738,49.7767
+0;0;0,-0.001781968;0.1986337;0.02326993,-0.005807844;0.4977522;0.04521199,0.1029604;0.372197;-0.00625249,0.2755319;0.2436414;-0.1853964,0.4083675;0.3034135;-0.424524,-0.1153606;0.3567419;0.01984219,-0.1993993;0.09084287;0.04504525,-0.2095519;-0.1873608;0.01505063,0.06692671;0.009225968;-0.04284504,0.09658878;-0.3659591;0.009655859,0.1061838;-0.7077192;0.08454211,0.09623972;-0.694595;-0.01352075,-0.07316144;-0.003417898;-0.03218262,-0.09109608;-0.3816684;-0.000482928,-0.09755753;-0.724094;0.07164894,-0.08358432;-0.7717584;0.01022432,-0.004536945;0.3978717;0.04049299,0;0;0,0.004912972;0.1995673;0.01219741,0.01131373;0.4993959;0.01826476,0.110702;0.3705802;-0.0390671,0.252112;0.2282873;-0.2344026,0.363754;0.3313701;-0.4695834,-0.1073605;0.3720722;0.01927236,-0.1902443;0.1089996;0.06747111,-0.1228649;-0.1006519;-0.1054631,0.05892053;0.004838989;-0.05389764,0.1054953;-0.365832;0.01562792,0.1154318;-0.7048365;0.1020987,0.1210254;-0.7563897;0.04449846,-0.07852642;0.0004019024;-0.01527871,-0.0840994;-0.3774915;0.02428759,-0.09453508;-0.7179613;0.1047328,-0.1125476;-0.7064477;0.008121185,0.009481182;0.3994132;0.01857834,49.78815
+0;0;0,-0.001781968;0.1986337;0.02326993,-0.005807844;0.4977522;0.04521199,0.1029604;0.372197;-0.00625249,0.2755319;0.2436414;-0.1853964,0.4083675;0.3034135;-0.424524,-0.1153606;0.3567419;0.01984219,-0.1993993;0.09084287;0.04504525,-0.2095519;-0.1873608;0.01505063,0.06692671;0.009225968;-0.04284504,0.09658878;-0.3659591;0.009655859,0.1061838;-0.7077192;0.08454211,0.09623972;-0.694595;-0.01352075,-0.07316144;-0.003417898;-0.03218262,-0.09109608;-0.3816684;-0.000482928,-0.09755753;-0.724094;0.07164894,-0.08358432;-0.7717584;0.01022432,-0.004536945;0.3978717;0.04049299,0;0;0,0.004912972;0.1995673;0.01219741,0.01131373;0.4993959;0.01826476,0.110702;0.3705802;-0.0390671,0.252112;0.2282873;-0.2344026,0.363754;0.3313701;-0.4695834,-0.1073605;0.3720722;0.01927236,-0.1902443;0.1089996;0.06747111,-0.1228649;-0.1006519;-0.1054631,0.05892053;0.004838989;-0.05389764,0.1054953;-0.365832;0.01562792,0.1154318;-0.7048365;0.1020987,0.1210254;-0.7563897;0.04449846,-0.07852642;0.0004019024;-0.01527871,-0.0840994;-0.3774915;0.02428759,-0.09453508;-0.7179613;0.1047328,-0.1125476;-0.7064477;0.008121185,0.009481182;0.3994132;0.01857834,49.81021
+0;0;0,-0.001781968;0.1986337;0.02326993,-0.005807844;0.4977522;0.04521199,0.1029604;0.372197;-0.00625249,0.2755319;0.2436414;-0.1853964,0.4083675;0.3034135;-0.424524,-0.1153606;0.3567419;0.01984219,-0.1993993;0.09084287;0.04504525,-0.2095519;-0.1873608;0.01505063,0.06692671;0.009225968;-0.04284504,0.09658878;-0.3659591;0.009655859,0.1061838;-0.7077192;0.08454211,0.09623972;-0.694595;-0.01352075,-0.07316144;-0.003417898;-0.03218262,-0.09109608;-0.3816684;-0.000482928,-0.09755753;-0.724094;0.07164894,-0.08358432;-0.7717584;0.01022432,-0.004536945;0.3978717;0.04049299,0;0;0,0.00444413;0.1995678;0.01236632,0.01045897;0.4993976;0.01874792,0.110946;0.3706613;-0.03697625,0.2572291;0.2241783;-0.2255073,0.3742949;0.318021;-0.4619161,-0.1077601;0.3707027;0.01813632,-0.1916422;0.1076767;0.06483893,-0.1291694;-0.112227;-0.0968381,0.05946299;0.004949622;-0.0532884,0.1050063;-0.3659138;0.01589322,0.114801;-0.7049472;0.102267,0.1207055;-0.7566704;0.04493931,-0.07843767;0.0002970449;-0.01573033,-0.0844111;-0.3775809;0.02392576,-0.09471186;-0.7180095;0.1045624,-0.1116637;-0.7064498;0.007750295,0.008751974;0.3994125;0.01896801,49.82148
+0;0;0,-0.002333319;0.1986184;0.02335124,-0.008210952;0.4976878;0.04554531,0.1019263;0.3725323;-0.004682865,0.2779773;0.2466852;-0.1823583,0.4245721;0.3055068;-0.4135509,-0.1170604;0.3568496;0.01982846,-0.2003224;0.09067172;0.04466416,-0.2111566;-0.187426;0.01393503,0.0671682;0.009197716;-0.04247158,0.0964672;-0.3660746;0.009607989,0.1058519;-0.7078312;0.08453667,0.09626943;-0.6946988;-0.0135636,-0.07311244;-0.003333627;-0.0323026,-0.09095291;-0.3816165;-0.0009370297,-0.09760784;-0.7239811;0.07146559,-0.08176352;-0.7699723;0.008423492,-0.006227543;0.3978231;0.04073878,0;0;0,0.00444413;0.1995678;0.01236632,0.01045897;0.4993976;0.01874792,0.110946;0.3706613;-0.03697625,0.2572291;0.2241783;-0.2255073,0.3742949;0.318021;-0.4619161,-0.1077601;0.3707027;0.01813632,-0.1916422;0.1076767;0.06483893,-0.1291694;-0.112227;-0.0968381,0.05946299;0.004949622;-0.0532884,0.1050063;-0.3659138;0.01589322,0.114801;-0.7049472;0.102267,0.1207055;-0.7566704;0.04493931,-0.07843767;0.0002970449;-0.01573033,-0.0844111;-0.3775809;0.02392576,-0.09471186;-0.7180095;0.1045624,-0.1116637;-0.7064498;0.007750295,0.008751974;0.3994125;0.01896801,49.83269
+0;0;0,-0.002333319;0.1986184;0.02335124,-0.008210952;0.4976878;0.04554531,0.1019263;0.3725323;-0.004682865,0.2779773;0.2466852;-0.1823583,0.4245721;0.3055068;-0.4135509,-0.1170604;0.3568496;0.01982846,-0.2003224;0.09067172;0.04466416,-0.2111566;-0.187426;0.01393503,0.0671682;0.009197716;-0.04247158,0.0964672;-0.3660746;0.009607989,0.1058519;-0.7078312;0.08453667,0.09626943;-0.6946988;-0.0135636,-0.07311244;-0.003333627;-0.0323026,-0.09095291;-0.3816165;-0.0009370297,-0.09760784;-0.7239811;0.07146559,-0.08176352;-0.7699723;0.008423492,-0.006227543;0.3978231;0.04073878,0;0;0,0.004133893;0.1995594;0.01260853,0.009541351;0.4993815;0.0198062,0.1108385;0.3703262;-0.03486006,0.2611269;0.2203022;-0.2173599,0.385621;0.3061876;-0.4529972,-0.1084804;0.3707187;0.01782579,-0.1939046;0.1079611;0.06322554,-0.1292546;-0.1110748;-0.0987734,0.06009715;0.004921283;-0.05257484,0.1048328;-0.3661355;0.01609545,0.1146411;-0.7052478;0.1021575,0.1206926;-0.7570621;0.04497538,-0.07830162;0.0002960266;-0.01639419,-0.08482318;-0.3775404;0.02356915,-0.09513428;-0.717911;0.1044487,-0.1113833;-0.7063099;0.00750827,0.008027057;0.399393;0.01977433,49.85501
+0;0;0,-0.002333319;0.1986184;0.02335124,-0.008210952;0.4976878;0.04554531,0.1019263;0.3725323;-0.004682865,0.2779773;0.2466852;-0.1823583,0.4245721;0.3055068;-0.4135509,-0.1170604;0.3568496;0.01982846,-0.2003224;0.09067172;0.04466416,-0.2111566;-0.187426;0.01393503,0.0671682;0.009197716;-0.04247158,0.0964672;-0.3660746;0.009607989,0.1058519;-0.7078312;0.08453667,0.09626943;-0.6946988;-0.0135636,-0.07311244;-0.003333627;-0.0323026,-0.09095291;-0.3816165;-0.0009370297,-0.09760784;-0.7239811;0.07146559,-0.08176352;-0.7699723;0.008423492,-0.006227543;0.3978231;0.04073878,0;0;0,0.004133893;0.1995594;0.01260853,0.009541351;0.4993815;0.0198062,0.1108385;0.3703262;-0.03486006,0.2611269;0.2203022;-0.2173599,0.385621;0.3061876;-0.4529972,-0.1084804;0.3707187;0.01782579,-0.1939046;0.1079611;0.06322554,-0.1292546;-0.1110748;-0.0987734,0.06009715;0.004921283;-0.05257484,0.1048328;-0.3661355;0.01609545,0.1146411;-0.7052478;0.1021575,0.1206926;-0.7570621;0.04497538,-0.07830162;0.0002960266;-0.01639419,-0.08482318;-0.3775404;0.02356915,-0.09513428;-0.717911;0.1044487,-0.1113833;-0.7063099;0.00750827,0.008027057;0.399393;0.01977433,49.86614
+0;0;0,-0.002098616;0.1986652;0.02297211,-0.006185891;0.4978926;0.04325695,0.1037977;0.3726091;-0.004515916,0.2849129;0.2493341;-0.1788734,0.4395083;0.3069044;-0.4051165,-0.1161781;0.3574143;0.01934808,-0.1984785;0.09094915;0.04430756,-0.2094463;-0.1871163;0.01333513,0.06744218;0.009257975;-0.04202193,0.09631613;-0.3661309;0.009451438,0.1057804;-0.7078606;0.08449264,0.0967223;-0.6947629;-0.01365148,-0.07293631;-0.003406752;-0.03269081,-0.09068556;-0.3817216;-0.001661479,-0.09752025;-0.7239645;0.0712982,-0.08122351;-0.7684197;0.006561443,-0.005012334;0.3979792;0.03926459,0;0;0,0.003149989;0.1995441;0.01312432,0.008115893;0.4993689;0.02055442,0.1099196;0.370104;-0.03349029,0.2627738;0.2168946;-0.2111486,0.3947648;0.2983385;-0.4442694,-0.1089507;0.3680106;0.0158252,-0.1936569;0.1046455;0.05899549,-0.1149881;-0.09969118;-0.115526,0.06071702;0.005227382;-0.05182776,0.1039841;-0.3660827;0.01641257,0.1137175;-0.7051926;0.1024927,0.1195408;-0.7566206;0.04473845,-0.07780758;-0.0002539902;-0.01859879,-0.08437864;-0.3777977;0.02403368,-0.0961326;-0.7181433;0.1048216,-0.1114473;-0.7064897;0.007719211,0.006785931;0.3993778;0.02042158,49.88849
+0;0;0,-0.002098616;0.1986652;0.02297211,-0.006185891;0.4978926;0.04325695,0.1037977;0.3726091;-0.004515916,0.2849129;0.2493341;-0.1788734,0.4395083;0.3069044;-0.4051165,-0.1161781;0.3574143;0.01934808,-0.1984785;0.09094915;0.04430756,-0.2094463;-0.1871163;0.01333513,0.06744218;0.009257975;-0.04202193,0.09631613;-0.3661309;0.009451438,0.1057804;-0.7078606;0.08449264,0.0967223;-0.6947629;-0.01365148,-0.07293631;-0.003406752;-0.03269081,-0.09068556;-0.3817216;-0.001661479,-0.09752025;-0.7239645;0.0712982,-0.08122351;-0.7684197;0.006561443,-0.005012334;0.3979792;0.03926459,0;0;0,0.003149989;0.1995441;0.01312432,0.008115893;0.4993689;0.02055442,0.1099196;0.370104;-0.03349029,0.2627738;0.2168946;-0.2111486,0.3947648;0.2983385;-0.4442694,-0.1089507;0.3680106;0.0158252,-0.1936569;0.1046455;0.05899549,-0.1149881;-0.09969118;-0.115526,0.06071702;0.005227382;-0.05182776,0.1039841;-0.3660827;0.01641257,0.1137175;-0.7051926;0.1024927,0.1195408;-0.7566206;0.04473845,-0.07780758;-0.0002539902;-0.01859879,-0.08437864;-0.3777977;0.02403368,-0.0961326;-0.7181433;0.1048216,-0.1114473;-0.7064897;0.007719211,0.006785931;0.3993778;0.02042158,49.9108
+0;0;0,-0.002098616;0.1986652;0.02297211,-0.006185891;0.4978926;0.04325695,0.1037977;0.3726091;-0.004515916,0.2849129;0.2493341;-0.1788734,0.4395083;0.3069044;-0.4051165,-0.1161781;0.3574143;0.01934808,-0.1984785;0.09094915;0.04430756,-0.2094463;-0.1871163;0.01333513,0.06744218;0.009257975;-0.04202193,0.09631613;-0.3661309;0.009451438,0.1057804;-0.7078606;0.08449264,0.0967223;-0.6947629;-0.01365148,-0.07293631;-0.003406752;-0.03269081,-0.09068556;-0.3817216;-0.001661479,-0.09752025;-0.7239645;0.0712982,-0.08122351;-0.7684197;0.006561443,-0.005012334;0.3979792;0.03926459,0;0;0,0.002612467;0.1995398;0.01330529,0.007115954;0.4993636;0.02108445,0.109718;0.3697625;-0.03171748,0.26446;0.2120226;-0.2036856,0.4011211;0.2911697;-0.4348986,-0.1096629;0.3678059;0.01511601,-0.1936718;0.1038168;0.05576427,-0.1110268;-0.09738351;-0.1205543,0.06123945;0.005322103;-0.05119966,0.1033981;-0.3661909;0.01662879,0.1129733;-0.7052814;0.1028031,0.1188231;-0.7563062;0.04448708,-0.07762586;-0.0002848757;-0.01934279,-0.08417051;-0.3780076;0.02167876,-0.09636896;-0.7179921;0.1039084,-0.1108319;-0.7063082;0.006669797,0.00597083;0.3993705;0.02081715,49.92207
+0;0;0,-0.002451859;0.1986622;0.02296326,-0.007441944;0.4978612;0.04349711,0.1033052;0.3728173;-0.003609695,0.2890019;0.2505898;-0.1738364,0.4514711;0.306828;-0.3948365,-0.1159902;0.3559493;0.01678213,-0.2019347;0.09091213;0.04450981,-0.2127943;-0.1871515;0.01348236,0.06762408;0.009257995;-0.04172856,0.09604365;-0.3662084;0.009430934,0.1054181;-0.7079977;0.08421181,0.1162054;-0.7558148;0.0223398,-0.07284112;-0.003354423;-0.03290774,-0.09059523;-0.3816869;-0.002096307,-0.0975958;-0.7238808;0.0710769,-0.08148785;-0.7680762;0.005995624,-0.005876593;0.3979587;0.03937002,0;0;0,0.002612467;0.1995398;0.01330529,0.007115954;0.4993636;0.02108445,0.109718;0.3697625;-0.03171748,0.26446;0.2120226;-0.2036856,0.4011211;0.2911697;-0.4348986,-0.1096629;0.3678059;0.01511601,-0.1936718;0.1038168;0.05576427,-0.1110268;-0.09738351;-0.1205543,0.06123945;0.005322103;-0.05119966,0.1033981;-0.3661909;0.01662879,0.1129733;-0.7052814;0.1028031,0.1188231;-0.7563062;0.04448708,-0.07762586;-0.0002848757;-0.01934279,-0.08417051;-0.3780076;0.02167876,-0.09636896;-0.7179921;0.1039084,-0.1108319;-0.7063082;0.006669797,0.00597083;0.3993705;0.02081715,49.94424
+0;0;0,-0.002451859;0.1986622;0.02296326,-0.007441944;0.4978612;0.04349711,0.1033052;0.3728173;-0.003609695,0.2890019;0.2505898;-0.1738364,0.4514711;0.306828;-0.3948365,-0.1159902;0.3559493;0.01678213,-0.2019347;0.09091213;0.04450981,-0.2127943;-0.1871515;0.01348236,0.06762408;0.009257995;-0.04172856,0.09604365;-0.3662084;0.009430934,0.1054181;-0.7079977;0.08421181,0.1162054;-0.7558148;0.0223398,-0.07284112;-0.003354423;-0.03290774,-0.09059523;-0.3816869;-0.002096307,-0.0975958;-0.7238808;0.0710769,-0.08148785;-0.7680762;0.005995624,-0.005876593;0.3979587;0.03937002,0;0;0,0.002329254;0.1995348;0.01343229,0.006660941;0.499359;0.02128778,0.110057;0.3702773;-0.03033569,0.2657387;0.2101521;-0.1992236,0.412489;0.2830315;-0.4262764,-0.1099179;0.3674062;0.01448731,-0.1884413;0.100419;0.04534069,-0.09014659;-0.08408128;-0.1409328,0.06154511;0.005331111;-0.05083087,0.1032162;-0.3662559;0.01689379,0.1127244;-0.7054477;0.1026757,0.1185993;-0.7569029;0.04496492,-0.07747471;-0.0001841548;-0.01994078,-0.08434265;-0.3778331;0.02170222,-0.09655452;-0.7177957;0.1040201,-0.11034;-0.7060957;0.006680124,0.005564582;0.3993655;0.02099864,49.95551
+0;0;0,-0.002451859;0.1986622;0.02296326,-0.007441944;0.4978612;0.04349711,0.1033052;0.3728173;-0.003609695,0.2890019;0.2505898;-0.1738364,0.4514711;0.306828;-0.3948365,-0.1159902;0.3559493;0.01678213,-0.2019347;0.09091213;0.04450981,-0.2127943;-0.1871515;0.01348236,0.06762408;0.009257995;-0.04172856,0.09604365;-0.3662084;0.009430934,0.1054181;-0.7079977;0.08421181,0.1162054;-0.7558148;0.0223398,-0.07284112;-0.003354423;-0.03290774,-0.09059523;-0.3816869;-0.002096307,-0.0975958;-0.7238808;0.0710769,-0.08148785;-0.7680762;0.005995624,-0.005876593;0.3979587;0.03937002,0;0;0,0.002329254;0.1995348;0.01343229,0.006660941;0.499359;0.02128778,0.110057;0.3702773;-0.03033569,0.2657387;0.2101521;-0.1992236,0.412489;0.2830315;-0.4262764,-0.1099179;0.3674062;0.01448731,-0.1884413;0.100419;0.04534069,-0.09014659;-0.08408128;-0.1409328,0.06154511;0.005331111;-0.05083087,0.1032162;-0.3662559;0.01689379,0.1127244;-0.7054477;0.1026757,0.1185993;-0.7569029;0.04496492,-0.07747471;-0.0001841548;-0.01994078,-0.08434265;-0.3778331;0.02170222,-0.09655452;-0.7177957;0.1040201,-0.11034;-0.7060957;0.006680124,0.005564582;0.3993655;0.02099864,49.96674
+0;0;0,-0.002295148;0.1986886;0.02275046,-0.005652332;0.4979866;0.04206544,0.1049343;0.3729196;-0.003049418,0.2970979;0.2510701;-0.1662238,0.4683672;0.3053404;-0.3809831,-0.1154515;0.3569991;0.01666067,-0.1980811;0.09058911;0.04111613,-0.2103727;-0.1875926;0.01172424,0.06804397;0.009271486;-0.04103727,0.09647673;-0.3663407;0.009033043,0.1059215;-0.7081472;0.08372676,0.1165957;-0.7560341;0.0219231,-0.07273062;-0.003246324;-0.033162,-0.09034863;-0.3815835;-0.002330018,-0.09761725;-0.7237544;0.07092443,-0.08120694;-0.7684811;0.006530076,-0.004819165;0.3980553;0.0384521,0;0;0,0.002329254;0.1995348;0.01343229,0.006660941;0.499359;0.02128778,0.110057;0.3702773;-0.03033569,0.2657387;0.2101521;-0.1992236,0.412489;0.2830315;-0.4262764,-0.1099179;0.3674062;0.01448731,-0.1884413;0.100419;0.04534069,-0.09014659;-0.08408128;-0.1409328,0.06154511;0.005331111;-0.05083087,0.1032162;-0.3662559;0.01689379,0.1127244;-0.7054477;0.1026757,0.1185993;-0.7569029;0.04496492,-0.07747471;-0.0001841548;-0.01994078,-0.08434265;-0.3778331;0.02170222,-0.09655452;-0.7177957;0.1040201,-0.11034;-0.7060957;0.006680124,0.005564582;0.3993655;0.02099864,49.97785
+0;0;0,-0.002295148;0.1986886;0.02275046,-0.005652332;0.4979866;0.04206544,0.1049343;0.3729196;-0.003049418,0.2970979;0.2510701;-0.1662238,0.4683672;0.3053404;-0.3809831,-0.1154515;0.3569991;0.01666067,-0.1980811;0.09058911;0.04111613,-0.2103727;-0.1875926;0.01172424,0.06804397;0.009271486;-0.04103727,0.09647673;-0.3663407;0.009033043,0.1059215;-0.7081472;0.08372676,0.1165957;-0.7560341;0.0219231,-0.07273062;-0.003246324;-0.033162,-0.09034863;-0.3815835;-0.002330018,-0.09761725;-0.7237544;0.07092443,-0.08120694;-0.7684811;0.006530076,-0.004819165;0.3980553;0.0384521,0;0;0,0.002159463;0.1995293;0.01354147,0.006311585;0.4993504;0.02161838,0.1106268;0.3699237;-0.02808178,0.2681246;0.2083343;-0.1938627,0.4198833;0.2771609;-0.4188787,-0.1098974;0.3665276;0.01359449,-0.1911509;0.1005543;0.04609127,-0.08964556;-0.08303648;-0.1393571,0.06198136;0.005307334;-0.05030053,0.1032492;-0.3663014;0.01755122,0.1126174;-0.7056079;0.1028938,0.1183705;-0.756847;0.04486702,-0.07725732;-0.0002304759;-0.02076663,-0.08405756;-0.3779742;0.02001853,-0.09623528;-0.7176982;0.1033209,-0.1089504;-0.7059683;0.005829714,0.00527045;0.3993565;0.02125132,50.00024
+0;0;0,-0.002731554;0.1986893;0.02269547,-0.007952662;0.4979361;0.04244247,0.1040452;0.3732975;-0.0015788,0.2998794;0.2535304;-0.161906,0.4786041;0.3075726;-0.370561,-0.1163873;0.3563343;0.01536673,-0.2005856;0.0905121;0.04084619,-0.212984;-0.187625;0.01108003,0.06831712;0.009223465;-0.04059186,0.09630927;-0.3665113;0.008802615,0.1059011;-0.7083857;0.08316606,0.1172078;-0.7568474;0.02220765,-0.07264855;-0.003092448;-0.03335604,-0.09020029;-0.3814542;-0.002789741,-0.09758145;-0.7235696;0.07071246,-0.08136346;-0.7685609;0.006577551,-0.006288394;0.3980234;0.03860988,0;0;0,0.001859008;0.1995225;0.01368587,0.005375461;0.4993382;0.02223375,0.1101619;0.3697401;-0.02696618,0.2706478;0.2049867;-0.1866552,0.4241911;0.2750973;-0.4100584,-0.1104587;0.3662211;0.01304189,-0.1914921;0.1001312;0.04513144,-0.08819801;-0.08268303;-0.1400962,0.06275713;0.005180536;-0.04934273,0.1031715;-0.3666894;0.01758596,0.1125333;-0.7060665;0.1026479,0.1183013;-0.7570936;0.04432693,-0.07700208;-0.000242328;-0.02169381,-0.08404301;-0.3778955;0.01988108,-0.09630941;-0.7176201;0.1031678,-0.1085344;-0.7058702;0.00561025,0.004552708;0.3993429;0.02172031,50.02243
+0;0;0,-0.002731554;0.1986893;0.02269547,-0.007952662;0.4979361;0.04244247,0.1040452;0.3732975;-0.0015788,0.2998794;0.2535304;-0.161906,0.4786041;0.3075726;-0.370561,-0.1163873;0.3563343;0.01536673,-0.2005856;0.0905121;0.04084619,-0.212984;-0.187625;0.01108003,0.06831712;0.009223465;-0.04059186,0.09630927;-0.3665113;0.008802615,0.1059011;-0.7083857;0.08316606,0.1172078;-0.7568474;0.02220765,-0.07264855;-0.003092448;-0.03335604,-0.09020029;-0.3814542;-0.002789741,-0.09758145;-0.7235696;0.07071246,-0.08136346;-0.7685609;0.006577551,-0.006288394;0.3980234;0.03860988,0;0;0,0.001859008;0.1995225;0.01368587,0.005375461;0.4993382;0.02223375,0.1101619;0.3697401;-0.02696618,0.2706478;0.2049867;-0.1866552,0.4241911;0.2750973;-0.4100584,-0.1104587;0.3662211;0.01304189,-0.1914921;0.1001312;0.04513144,-0.08819801;-0.08268303;-0.1400962,0.06275713;0.005180536;-0.04934273,0.1031715;-0.3666894;0.01758596,0.1125333;-0.7060665;0.1026479,0.1183013;-0.7570936;0.04432693,-0.07700208;-0.000242328;-0.02169381,-0.08404301;-0.3778955;0.01988108,-0.09630941;-0.7176201;0.1031678,-0.1085344;-0.7058702;0.00561025,0.004552708;0.3993429;0.02172031,50.0448
+0;0;0,-0.002731554;0.1986893;0.02269547,-0.007952662;0.4979361;0.04244247,0.1040452;0.3732975;-0.0015788,0.2998794;0.2535304;-0.161906,0.4786041;0.3075726;-0.370561,-0.1163873;0.3563343;0.01536673,-0.2005856;0.0905121;0.04084619,-0.212984;-0.187625;0.01108003,0.06831712;0.009223465;-0.04059186,0.09630927;-0.3665113;0.008802615,0.1059011;-0.7083857;0.08316606,0.1172078;-0.7568474;0.02220765,-0.07264855;-0.003092448;-0.03335604,-0.09020029;-0.3814542;-0.002789741,-0.09758145;-0.7235696;0.07071246,-0.08136346;-0.7685609;0.006577551,-0.006288394;0.3980234;0.03860988,0;0;0,0.001601964;0.1995143;0.01383802,0.004677305;0.499323;0.02279339,0.1099113;0.3695034;-0.02577448,0.2723409;0.2028867;-0.1815163,0.433274;0.269216;-0.4008356,-0.1108441;0.3659532;0.01243349,-0.1914899;0.09945276;0.04199347,-0.08611583;-0.08416839;-0.1412538,0.06314825;0.005143741;-0.04884506,0.1031692;-0.3667455;0.01821226,0.1123703;-0.7062442;0.1028052,0.1181159;-0.7573407;0.0445784,-0.07672735;-0.0002026261;-0.02264671,-0.08400077;-0.3777809;0.01956371,-0.09624501;-0.7174891;0.1029207,-0.1079077;-0.7057176;0.005290203,0.004012043;0.3993273;0.0221408,50.06722
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,0.001601964;0.1995143;0.01383802,0.004677305;0.499323;0.02279339,0.1099113;0.3695034;-0.02577448,0.2723409;0.2028867;-0.1815163,0.433274;0.269216;-0.4008356,-0.1108441;0.3659532;0.01243349,-0.1914899;0.09945276;0.04199347,-0.08611583;-0.08416839;-0.1412538,0.06314825;0.005143741;-0.04884506,0.1031692;-0.3667455;0.01821226,0.1123703;-0.7062442;0.1028052,0.1181159;-0.7573407;0.0445784,-0.07672735;-0.0002026261;-0.02264671,-0.08400077;-0.3777809;0.01956371,-0.09624501;-0.7174891;0.1029207,-0.1079077;-0.7057176;0.005290203,0.004012043;0.3993273;0.0221408,50.07831
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,0.00134197;0.1995067;0.01397449,0.003859784;0.4993104;0.02322222,0.1098275;0.3694801;-0.02408816,0.275291;0.2015212;-0.1751234,0.4385016;0.2673734;-0.392898,-0.1113708;0.365725;0.01195215,-0.1917734;0.09908992;0.04095523,-0.1309686;-0.128363;-0.1105966,0.06403738;0.00495104;-0.04769384,0.1034253;-0.3671409;0.01860981,0.1123667;-0.7068639;0.1023257,0.1181704;-0.7580283;0.04419936,-0.07659749;-2.920573E-05;-0.02308295,-0.08389666;-0.3776093;0.01910712,-0.09617867;-0.7173091;0.1024929,-0.1071759;-0.7055148;0.004780993,0.003347083;0.3993142;0.02251486,50.08979
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,0.00134197;0.1995067;0.01397449,0.003859784;0.4993104;0.02322222,0.1098275;0.3694801;-0.02408816,0.275291;0.2015212;-0.1751234,0.4385016;0.2673734;-0.392898,-0.1113708;0.365725;0.01195215,-0.1917734;0.09908992;0.04095523,-0.1309686;-0.128363;-0.1105966,0.06403738;0.00495104;-0.04769384,0.1034253;-0.3671409;0.01860981,0.1123667;-0.7068639;0.1023257,0.1181704;-0.7580283;0.04419936,-0.07659749;-2.920573E-05;-0.02308295,-0.08389666;-0.3776093;0.01910712,-0.09617867;-0.7173091;0.1024929,-0.1071759;-0.7055148;0.004780993,0.003347083;0.3993142;0.02251486,50.10061
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,0.00134197;0.1995067;0.01397449,0.003859784;0.4993104;0.02322222,0.1098275;0.3694801;-0.02408816,0.275291;0.2015212;-0.1751234,0.4385016;0.2673734;-0.392898,-0.1113708;0.365725;0.01195215,-0.1917734;0.09908992;0.04095523,-0.1309686;-0.128363;-0.1105966,0.06403738;0.00495104;-0.04769384,0.1034253;-0.3671409;0.01860981,0.1123667;-0.7068639;0.1023257,0.1181704;-0.7580283;0.04419936,-0.07659749;-2.920573E-05;-0.02308295,-0.08389666;-0.3776093;0.01910712,-0.09617867;-0.7173091;0.1024929,-0.1071759;-0.7055148;0.004780993,0.003347083;0.3993142;0.02251486,50.1119
+0;0;0,-0.003377436;0.1987088;0.02243671,-0.009994818;0.4979637;0.04158145,0.1032318;0.3737403;-0.0001810119,0.3079049;0.2556783;-0.1504151,0.5015829;0.3070701;-0.3459854,-0.1178569;0.356615;0.01370488,-0.2016134;0.09058714;0.03848455,-0.2140624;-0.1876436;0.009628385,0.06873062;0.009275111;-0.03987573,0.09610439;-0.3666812;0.00816071,0.1053026;-0.708468;0.08297512,0.0990008;-0.69539;-0.01538103,-0.07237878;-0.002980745;-0.0339474,-0.09018011;-0.381332;-0.00339458,-0.09722798;-0.7234759;0.07000721,-0.08245358;-0.7681492;0.00515642,-0.007895021;0.398049;0.03802793,0;0;0,0.001220502;0.1994989;0.0140955,0.003545172;0.4993019;0.02340092,0.1100741;0.3692217;-0.0225037,0.2825918;0.2091867;-0.1742484,0.4465182;0.2780941;-0.3905351,-0.1116243;0.3659107;0.01118043,-0.1919167;0.09923068;0.0400746,-0.2327188;-0.1771832;0.02189408,0.06459384;0.004730138;-0.04696021,0.1035292;-0.3675208;0.01871537,0.1122814;-0.7073087;0.1021874,0.1180555;-0.7584906;0.04408265,-0.07637437;0.0001311328;-0.02381043,-0.0839972;-0.3774288;0.01850261,-0.09598507;-0.7170701;0.1021692,-0.1061912;-0.7052565;0.004367933,0.00305894;0.3993056;0.02269254,50.13411
+0;0;0,-0.003377436;0.1987088;0.02243671,-0.009994818;0.4979637;0.04158145,0.1032318;0.3737403;-0.0001810119,0.3079049;0.2556783;-0.1504151,0.5015829;0.3070701;-0.3459854,-0.1178569;0.356615;0.01370488,-0.2016134;0.09058714;0.03848455,-0.2140624;-0.1876436;0.009628385,0.06873062;0.009275111;-0.03987573,0.09610439;-0.3666812;0.00816071,0.1053026;-0.708468;0.08297512,0.0990008;-0.69539;-0.01538103,-0.07237878;-0.002980745;-0.0339474,-0.09018011;-0.381332;-0.00339458,-0.09722798;-0.7234759;0.07000721,-0.08245358;-0.7681492;0.00515642,-0.007895021;0.398049;0.03802793,0;0;0,0.001279005;0.199459;0.01464469,0.003564747;0.4992164;0.02535603,0.1102331;0.3690745;-0.02057363,0.2864912;0.2206932;-0.1796838,0.455145;0.3051618;-0.3866161,-0.1113711;0.3655439;0.01090245,-0.1916444;0.09878635;0.03912632,-0.2324501;-0.1776928;0.02197573,0.06503744;0.00469891;-0.04634707,0.1035436;-0.3676237;0.01917508,0.1119439;-0.7075353;0.1021781,0.1180444;-0.7586206;0.0439719,-0.07623546;0.0002452891;-0.02425064,-0.08407421;-0.3771821;0.01919035,-0.09604818;-0.716898;0.1025551,-0.1055665;-0.705022;0.004672952,0.003040264;0.399225;0.02415497,50.14671
+0;0;0,-0.003377436;0.1987088;0.02243671,-0.009994818;0.4979637;0.04158145,0.1032318;0.3737403;-0.0001810119,0.3079049;0.2556783;-0.1504151,0.5015829;0.3070701;-0.3459854,-0.1178569;0.356615;0.01370488,-0.2016134;0.09058714;0.03848455,-0.2140624;-0.1876436;0.009628385,0.06873062;0.009275111;-0.03987573,0.09610439;-0.3666812;0.00816071,0.1053026;-0.708468;0.08297512,0.0990008;-0.69539;-0.01538103,-0.07237878;-0.002980745;-0.0339474,-0.09018011;-0.381332;-0.00339458,-0.09722798;-0.7234759;0.07000721,-0.08245358;-0.7681492;0.00515642,-0.007895021;0.398049;0.03802793,0;0;0,0.001279005;0.199459;0.01464469,0.003564747;0.4992164;0.02535603,0.1102331;0.3690745;-0.02057363,0.2864912;0.2206932;-0.1796838,0.455145;0.3051618;-0.3866161,-0.1113711;0.3655439;0.01090245,-0.1916444;0.09878635;0.03912632,-0.2324501;-0.1776928;0.02197573,0.06503744;0.00469891;-0.04634707,0.1035436;-0.3676237;0.01917508,0.1119439;-0.7075353;0.1021781,0.1180444;-0.7586206;0.0439719,-0.07623546;0.0002452891;-0.02425064,-0.08407421;-0.3771821;0.01919035,-0.09604818;-0.716898;0.1025551,-0.1055665;-0.705022;0.004672952,0.003040264;0.399225;0.02415497,50.1676
+0;0;0,-0.003213587;0.1987486;0.02210586,-0.00841919;0.4981054;0.04001085,0.1045554;0.3735779;-0.0001199171,0.3151231;0.2544181;-0.1410533,0.5127046;0.3052398;-0.3328311,-0.1173189;0.3573785;0.01358687,-0.1994596;0.0908851;0.03876975,-0.2115989;-0.1873016;0.00936226,0.06901365;0.009326063;-0.03937181,0.09606337;-0.3667422;0.007967193,0.1052392;-0.7085495;0.08269064,0.09932312;-0.6955001;-0.01568455,-0.07226717;-0.002948117;-0.03418718,-0.08992513;-0.3813019;-0.003583517,-0.09721716;-0.7234466;0.0697908,-0.08263834;-0.7682131;0.005003169,-0.006902913;0.3981645;0.0369279,0;0;0,0.001279005;0.199459;0.01464469,0.003564747;0.4992164;0.02535603,0.1102331;0.3690745;-0.02057363,0.2864912;0.2206932;-0.1796838,0.455145;0.3051618;-0.3866161,-0.1113711;0.3655439;0.01090245,-0.1916444;0.09878635;0.03912632,-0.2324501;-0.1776928;0.02197573,0.06503744;0.00469891;-0.04634707,0.1035436;-0.3676237;0.01917508,0.1119439;-0.7075353;0.1021781,0.1180444;-0.7586206;0.0439719,-0.07623546;0.0002452891;-0.02425064,-0.08407421;-0.3771821;0.01919035,-0.09604818;-0.716898;0.1025551,-0.1055665;-0.705022;0.004672952,0.003040264;0.399225;0.02415497,50.17878
+0;0;0,-0.003213587;0.1987486;0.02210586,-0.00841919;0.4981054;0.04001085,0.1045554;0.3735779;-0.0001199171,0.3151231;0.2544181;-0.1410533,0.5127046;0.3052398;-0.3328311,-0.1173189;0.3573785;0.01358687,-0.1994596;0.0908851;0.03876975,-0.2115989;-0.1873016;0.00936226,0.06901365;0.009326063;-0.03937181,0.09606337;-0.3667422;0.007967193,0.1052392;-0.7085495;0.08269064,0.09932312;-0.6955001;-0.01568455,-0.07226717;-0.002948117;-0.03418718,-0.08992513;-0.3813019;-0.003583517,-0.09721716;-0.7234466;0.0697908,-0.08263834;-0.7682131;0.005003169,-0.006902913;0.3981645;0.0369279,0;0;0,0.001110341;0.1994404;0.01490944,0.002939019;0.4991845;0.02604094,0.1102494;0.3696331;-0.01915763,0.2868723;0.2218245;-0.1783963,0.4625511;0.3097537;-0.3779092,-0.1118628;0.3658884;0.01055079,-0.1914608;0.09872276;0.03675571,-0.232853;-0.1777883;0.02164472,0.06550027;0.004686993;-0.04569187,0.1036759;-0.3678059;0.01905128,0.1118755;-0.7077743;0.1018415,0.1184446;-0.7590672;0.04397681,-0.07607536;0.0003463852;-0.0247471,-0.08412776;-0.3769958;0.01938971,-0.095689;-0.7167866;0.1025074,-0.1046294;-0.7048812;0.004565246,0.002547061;0.3991939;0.02473284,50.19028
+0;0;0,-0.003213587;0.1987486;0.02210586,-0.00841919;0.4981054;0.04001085,0.1045554;0.3735779;-0.0001199171,0.3151231;0.2544181;-0.1410533,0.5127046;0.3052398;-0.3328311,-0.1173189;0.3573785;0.01358687,-0.1994596;0.0908851;0.03876975,-0.2115989;-0.1873016;0.00936226,0.06901365;0.009326063;-0.03937181,0.09606337;-0.3667422;0.007967193,0.1052392;-0.7085495;0.08269064,0.09932312;-0.6955001;-0.01568455,-0.07226717;-0.002948117;-0.03418718,-0.08992513;-0.3813019;-0.003583517,-0.09721716;-0.7234466;0.0697908,-0.08263834;-0.7682131;0.005003169,-0.006902913;0.3981645;0.0369279,0;0;0,0.0008905138;0.1994341;0.01500822,0.002197066;0.4991743;0.02628962,0.1100449;0.3697594;-0.01812469,0.2957726;0.2187127;-0.163349,0.4667248;0.2940662;-0.3719088,-0.1124069;0.3660356;0.01023285,-0.1923618;0.0988903;0.03554298,-0.2335002;-0.1776907;0.021031,0.06597551;0.004601459;-0.04501176,0.103891;-0.3680094;0.01920358,0.1118733;-0.7080848;0.1015742,0.1008296;-0.6961412;0.003839888,-0.07588633;0.0005099541;-0.02531806,-0.08410401;-0.3767881;0.01916369,-0.09557425;-0.7165908;0.1022454,-0.1040974;-0.7046739;0.004264027,0.001980014;0.3991834;0.02495904,50.21235
+0;0;0,-0.003803304;0.1987524;0.0219781,-0.01147859;0.4980372;0.0402527,0.1030287;0.3739438;0.001100142,0.3157898;0.2551818;-0.136843,0.5242625;0.3043765;-0.3171732,-0.1191834;0.3572914;0.01308719,-0.2002938;0.09042528;0.03765517,-0.2117792;-0.1878478;0.008807423,0.06929592;0.009402937;-0.03885434,0.09586778;-0.3668127;0.007575568,0.1047423;-0.7085817;0.08251017,0.09925255;-0.6955248;-0.01589103,-0.07212;-0.002936316;-0.03449758,-0.08991809;-0.3812853;-0.003915213,-0.0970424;-0.723462;0.06932621,-0.08278318;-0.7687462;0.005069077,-0.008901503;0.3981242;0.03697389,0;0;0,0.0008905138;0.1994341;0.01500822,0.002197066;0.4991743;0.02628962,0.1100449;0.3697594;-0.01812469,0.2957726;0.2187127;-0.163349,0.4667248;0.2940662;-0.3719088,-0.1124069;0.3660356;0.01023285,-0.1923618;0.0988903;0.03554298,-0.2335002;-0.1776907;0.021031,0.06597551;0.004601459;-0.04501176,0.103891;-0.3680094;0.01920358,0.1118733;-0.7080848;0.1015742,0.1008296;-0.6961412;0.003839888,-0.07588633;0.0005099541;-0.02531806,-0.08410401;-0.3767881;0.01916369,-0.09557425;-0.7165908;0.1022454,-0.1040974;-0.7046739;0.004264027,0.001980014;0.3991834;0.02495904,50.22364
+0;0;0,-0.003803304;0.1987524;0.0219781,-0.01147859;0.4980372;0.0402527,0.1030287;0.3739438;0.001100142,0.3157898;0.2551818;-0.136843,0.5242625;0.3043765;-0.3171732,-0.1191834;0.3572914;0.01308719,-0.2002938;0.09042528;0.03765517,-0.2117792;-0.1878478;0.008807423,0.06929592;0.009402937;-0.03885434,0.09586778;-0.3668127;0.007575568,0.1047423;-0.7085817;0.08251017,0.09925255;-0.6955248;-0.01589103,-0.07212;-0.002936316;-0.03449758,-0.08991809;-0.3812853;-0.003915213,-0.0970424;-0.723462;0.06932621,-0.08278318;-0.7687462;0.005069077,-0.008901503;0.3981242;0.03697389,0;0;0,0.0008905138;0.1994341;0.01500822,0.002197066;0.4991743;0.02628962,0.1100449;0.3697594;-0.01812469,0.2957726;0.2187127;-0.163349,0.4667248;0.2940662;-0.3719088,-0.1124069;0.3660356;0.01023285,-0.1923618;0.0988903;0.03554298,-0.2335002;-0.1776907;0.021031,0.06597551;0.004601459;-0.04501176,0.103891;-0.3680094;0.01920358,0.1118733;-0.7080848;0.1015742,0.1008296;-0.6961412;0.003839888,-0.07588633;0.0005099541;-0.02531806,-0.08410401;-0.3767881;0.01916369,-0.09557425;-0.7165908;0.1022454,-0.1040974;-0.7046739;0.004264027,0.001980014;0.3991834;0.02495904,50.23493
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,0.0006484246;0.1994116;0.01531622,0.001264513;0.4991322;0.02714161,0.1095898;0.3700192;-0.01697232,0.2970462;0.2188475;-0.1598261,0.4724884;0.2955046;-0.3641389,-0.1129812;0.365912;0.01004118,-0.1931743;0.09872752;0.03415611,-0.2341713;-0.1779186;0.02051025,0.0662588;0.004698917;-0.04458354,0.104032;-0.3679998;0.01920394,0.1118427;-0.7081298;0.1013659,0.1011568;-0.6961654;0.003587976,-0.07575259;0.0005021676;-0.02571562,-0.08354888;-0.3768736;0.01817918,-0.09546206;-0.7165695;0.101634,-0.1036269;-0.7046257;0.003617078,0.001263508;0.3991432;0.02565644,50.25746
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,0.0006484246;0.1994116;0.01531622,0.001264513;0.4991322;0.02714161,0.1095898;0.3700192;-0.01697232,0.2970462;0.2188475;-0.1598261,0.4724884;0.2955046;-0.3641389,-0.1129812;0.365912;0.01004118,-0.1931743;0.09872752;0.03415611,-0.2341713;-0.1779186;0.02051025,0.0662588;0.004698917;-0.04458354,0.104032;-0.3679998;0.01920394,0.1118427;-0.7081298;0.1013659,0.1011568;-0.6961654;0.003587976,-0.07575259;0.0005021676;-0.02571562,-0.08354888;-0.3768736;0.01817918,-0.09546206;-0.7165695;0.101634,-0.1036269;-0.7046257;0.003617078,0.001263508;0.3991432;0.02565644,50.26819
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,0.0006484246;0.1994116;0.01531622,0.001264513;0.4991322;0.02714161,0.1095898;0.3700192;-0.01697232,0.2970462;0.2188475;-0.1598261,0.4724884;0.2955046;-0.3641389,-0.1129812;0.365912;0.01004118,-0.1931743;0.09872752;0.03415611,-0.2341713;-0.1779186;0.02051025,0.0662588;0.004698917;-0.04458354,0.104032;-0.3679998;0.01920394,0.1118427;-0.7081298;0.1013659,0.1011568;-0.6961654;0.003587976,-0.07575259;0.0005021676;-0.02571562,-0.08354888;-0.3768736;0.01817918,-0.09546206;-0.7165695;0.101634,-0.1036269;-0.7046257;0.003617078,0.001263508;0.3991432;0.02565644,50.27951
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,0.0004934495;0.199403;0.01543398,0.0008354908;0.499119;0.02736705,0.1095292;0.3704117;-0.01628584,0.2994453;0.2206689;-0.1573851,0.4813433;0.2978073;-0.3557856,-0.1131989;0.3655823;0.009924052,-0.1932831;0.09825596;0.03279578,-0.2342235;-0.178446;0.02015086,0.06650014;0.004618338;-0.04423122,0.1042653;-0.3680933;0.01948555,0.1118882;-0.708335;0.101201,0.1014463;-0.6963632;0.003395326,-0.0756105;0.0006322415;-0.02612761,-0.08261034;-0.3767965;0.01744496,-0.09509688;-0.7164329;0.1010579,-0.1030189;-0.704478;0.003019035,0.0009081359;0.3991303;0.02586499,50.29093
+0;0;0,-0.004527621;0.1988056;0.02135041,-0.01306466;0.4980882;0.03928569,0.1024677;0.3741945;0.002357945,0.323813;0.2583033;-0.1240363,0.5445682;0.3060427;-0.2895297,-0.1207099;0.3579128;0.01248417,-0.195633;0.08866626;0.02959611,-0.2097854;-0.1899538;0.005709348,0.06990453;0.009470521;-0.03773149,0.09525181;-0.3671227;0.006258193,0.1040904;-0.7089286;0.0810284,0.1159013;-0.7572736;0.02001553,-0.07168932;-0.002772779;-0.03539706,-0.08991684;-0.3811198;-0.005044907,-0.09710397;-0.7232325;0.06848893,-0.08188275;-0.7686702;0.004633866,-0.01016342;0.398181;0.03610507,0;0;0,0.000130585;0.1994052;0.01541273,-0.0001545316;0.4991255;0.02720935,0.1091038;0.3709315;-0.01582555,0.3021242;0.2217712;-0.153282,0.4873446;0.2977647;-0.3490329,-0.1139771;0.3657557;0.009562863,-0.1939707;0.09839329;0.03233079,-0.2346406;-0.1783553;0.01983467,0.06686312;0.004650261;-0.0436772,0.1042514;-0.3681956;0.01947416,0.1117767;-0.7084662;0.1010784,0.101556;-0.6964976;0.003249981,-0.07543655;0.0007302721;-0.02662315,-0.08265797;-0.3767036;0.01686876,-0.09510525;-0.7163016;0.1006437,-0.1028048;-0.7043493;0.002587631,0.0001396462;0.3991361;0.02578362,50.31294
+0;0;0,-0.004527621;0.1988056;0.02135041,-0.01306466;0.4980882;0.03928569,0.1024677;0.3741945;0.002357945,0.323813;0.2583033;-0.1240363,0.5445682;0.3060427;-0.2895297,-0.1207099;0.3579128;0.01248417,-0.195633;0.08866626;0.02959611,-0.2097854;-0.1899538;0.005709348,0.06990453;0.009470521;-0.03773149,0.09525181;-0.3671227;0.006258193,0.1040904;-0.7089286;0.0810284,0.1159013;-0.7572736;0.02001553,-0.07168932;-0.002772779;-0.03539706,-0.08991684;-0.3811198;-0.005044907,-0.09710397;-0.7232325;0.06848893,-0.08188275;-0.7686702;0.004633866,-0.01016342;0.398181;0.03610507,0;0;0,0.000130585;0.1994052;0.01541273,-0.0001545316;0.4991255;0.02720935,0.1091038;0.3709315;-0.01582555,0.3021242;0.2217712;-0.153282,0.4873446;0.2977647;-0.3490329,-0.1139771;0.3657557;0.009562863,-0.1939707;0.09839329;0.03233079,-0.2346406;-0.1783553;0.01983467,0.06686312;0.004650261;-0.0436772,0.1042514;-0.3681956;0.01947416,0.1117767;-0.7084662;0.1010784,0.101556;-0.6964976;0.003249981,-0.07543655;0.0007302721;-0.02662315,-0.08265797;-0.3767036;0.01686876,-0.09510525;-0.7163016;0.1006437,-0.1028048;-0.7043493;0.002587631,0.0001396462;0.3991361;0.02578362,50.32428
+0;0;0,-0.004527621;0.1988056;0.02135041,-0.01306466;0.4980882;0.03928569,0.1024677;0.3741945;0.002357945,0.323813;0.2583033;-0.1240363,0.5445682;0.3060427;-0.2895297,-0.1207099;0.3579128;0.01248417,-0.195633;0.08866626;0.02959611,-0.2097854;-0.1899538;0.005709348,0.06990453;0.009470521;-0.03773149,0.09525181;-0.3671227;0.006258193,0.1040904;-0.7089286;0.0810284,0.1159013;-0.7572736;0.02001553,-0.07168932;-0.002772779;-0.03539706,-0.08991684;-0.3811198;-0.005044907,-0.09710397;-0.7232325;0.06848893,-0.08188275;-0.7686702;0.004633866,-0.01016342;0.398181;0.03610507,0;0;0,-0.0003800839;0.1994077;0.01537661,-0.001165973;0.4991288;0.02713429,0.1083822;0.3710561;-0.01563841,0.3048357;0.2229098;-0.1492749,0.4927708;0.2999961;-0.3419874,-0.1147456;0.3656376;0.009187985,-0.1947059;0.09826759;0.03198326,-0.2349178;-0.1786079;0.0208954,0.06709623;0.004741488;-0.04330836,0.1037551;-0.3682867;0.01919047,0.1111329;-0.7085502;0.100838,0.1180353;-0.7600698;0.04333224,-0.07523099;0.0007957391;-0.02719681,-0.08280958;-0.3766338;0.01627167,-0.09542536;-0.7161807;0.1002286,-0.1029706;-0.7042325;0.00216125,-0.0007090166;0.3991398;0.02571875,50.34636
+0;0;0,-0.005041274;0.1988107;0.02118767,-0.01452018;0.4980545;0.03931553,0.101559;0.3743369;0.002913501,0.327511;0.2600977;-0.1166486,0.5540771;0.3068616;-0.2743854,-0.1216741;0.3578832;0.01169158,-0.1958381;0.08844909;0.02915563,-0.2097913;-0.1901756;0.00520575,0.07021698;0.009509155;-0.03713692,0.09518838;-0.3672506;0.005624671,0.1040367;-0.7090915;0.08023302,0.1158321;-0.7569469;0.01859355,-0.07146052;-0.002655048;-0.03586563,-0.08981472;-0.3809892;-0.00542829,-0.09703236;-0.7231452;0.06790048,-0.08163086;-0.7687843;0.004327409,-0.01128969;0.3981602;0.03604406,0;0;0,-0.0003800839;0.1994077;0.01537661,-0.001165973;0.4991288;0.02713429,0.1083822;0.3710561;-0.01563841,0.3048357;0.2229098;-0.1492749,0.4927708;0.2999961;-0.3419874,-0.1147456;0.3656376;0.009187985,-0.1947059;0.09826759;0.03198326,-0.2349178;-0.1786079;0.0208954,0.06709623;0.004741488;-0.04330836,0.1037551;-0.3682867;0.01919047,0.1111329;-0.7085502;0.100838,0.1180353;-0.7600698;0.04333224,-0.07523099;0.0007957391;-0.02719681,-0.08280958;-0.3766338;0.01627167,-0.09542536;-0.7161807;0.1002286,-0.1029706;-0.7042325;0.00216125,-0.0007090166;0.3991398;0.02571875,50.35785
+0;0;0,-0.005041274;0.1988107;0.02118767,-0.01452018;0.4980545;0.03931553,0.101559;0.3743369;0.002913501,0.327511;0.2600977;-0.1166486,0.5540771;0.3068616;-0.2743854,-0.1216741;0.3578832;0.01169158,-0.1958381;0.08844909;0.02915563,-0.2097913;-0.1901756;0.00520575,0.07021698;0.009509155;-0.03713692,0.09518838;-0.3672506;0.005624671,0.1040367;-0.7090915;0.08023302,0.1158321;-0.7569469;0.01859355,-0.07146052;-0.002655048;-0.03586563,-0.08981472;-0.3809892;-0.00542829,-0.09703236;-0.7231452;0.06790048,-0.08163086;-0.7687843;0.004327409,-0.01128969;0.3981602;0.03604406,0;0;0,-0.0006832173;0.1994122;0.01530694,-0.002061559;0.4991361;0.02690383,0.1080377;0.371536;-0.01521197,0.3072655;0.2238253;-0.1451728,0.4982881;0.302668;-0.3341019,-0.1154504;0.3658259;0.008851429,-0.1951943;0.09839809;0.03172695,-0.2342156;-0.1787113;0.02236083,0.06719267;0.004769575;-0.04315549,0.1038085;-0.3682964;0.0191428,0.1109327;-0.7086589;0.1003988,0.1182002;-0.7600673;0.04278054,-0.07511789;0.0008546266;-0.02750585,-0.08258089;-0.3766004;0.0157612,-0.09537826;-0.7161285;0.0997666,-0.1027032;-0.7041857;0.001683563,-0.001388774;0.3991473;0.02557368,50.37984
+0;0;0,-0.005041274;0.1988107;0.02118767,-0.01452018;0.4980545;0.03931553,0.101559;0.3743369;0.002913501,0.327511;0.2600977;-0.1166486,0.5540771;0.3068616;-0.2743854,-0.1216741;0.3578832;0.01169158,-0.1958381;0.08844909;0.02915563,-0.2097913;-0.1901756;0.00520575,0.07021698;0.009509155;-0.03713692,0.09518838;-0.3672506;0.005624671,0.1040367;-0.7090915;0.08023302,0.1158321;-0.7569469;0.01859355,-0.07146052;-0.002655048;-0.03586563,-0.08981472;-0.3809892;-0.00542829,-0.09703236;-0.7231452;0.06790048,-0.08163086;-0.7687843;0.004327409,-0.01128969;0.3981602;0.03604406,0;0;0,-0.0006832173;0.1994122;0.01530694,-0.002061559;0.4991361;0.02690383,0.1080377;0.371536;-0.01521197,0.3072655;0.2238253;-0.1451728,0.4982881;0.302668;-0.3341019,-0.1154504;0.3658259;0.008851429,-0.1951943;0.09839809;0.03172695,-0.2342156;-0.1787113;0.02236083,0.06719267;0.004769575;-0.04315549,0.1038085;-0.3682964;0.0191428,0.1109327;-0.7086589;0.1003988,0.1182002;-0.7600673;0.04278054,-0.07511789;0.0008546266;-0.02750585,-0.08258089;-0.3766004;0.0157612,-0.09537826;-0.7161285;0.0997666,-0.1027032;-0.7041857;0.001683563,-0.001388774;0.3991473;0.02557368,50.39176
+0;0;0,-0.005404504;0.1988163;0.0210446,-0.01523735;0.4980455;0.03923628,0.1011118;0.3745227;0.003218781,0.3302986;0.2615668;-0.1112992,0.5630432;0.3072277;-0.2601113,-0.1222379;0.3580176;0.01114124,-0.1960101;0.08847991;0.02866464,-0.2098443;-0.1901643;0.004873378,0.07051639;0.009613414;-0.03653794,0.09520613;-0.3672954;0.005057286,0.1039867;-0.7091686;0.07952623,0.1159581;-0.7566198;0.01741344,-0.07126015;-0.002627594;-0.03626413,-0.08951721;-0.3809482;-0.005601341,-0.097085;-0.7231529;0.06746459,-0.08263443;-0.7695312;0.004555628,-0.01189963;0.398156;0.03592792,0;0;0,-0.0008666448;0.1994101;0.01532468,-0.002591354;0.4991349;0.02682845,0.1079158;0.3721581;-0.01484715,0.3089104;0.2245137;-0.1421354,0.5022256;0.3050358;-0.3279993,-0.1159605;0.3662198;0.008676291,-0.1953842;0.0987184;0.03180437,-0.2317283;-0.1788779;0.02740062,0.06719978;0.004878536;-0.04313223,0.1039348;-0.3681988;0.01902753,0.1109053;-0.7085979;0.1001439,0.1182253;-0.76017;0.04276426,-0.07503663;0.0007971696;-0.02772848,-0.08265897;-0.3766468;0.01560668,-0.09553396;-0.7161693;0.09962268,-0.102698;-0.704227;0.001527838,-0.001807448;0.399146;0.02555658,50.41337
+0;0;0,-0.005404504;0.1988163;0.0210446,-0.01523735;0.4980455;0.03923628,0.1011118;0.3745227;0.003218781,0.3302986;0.2615668;-0.1112992,0.5630432;0.3072277;-0.2601113,-0.1222379;0.3580176;0.01114124,-0.1960101;0.08847991;0.02866464,-0.2098443;-0.1901643;0.004873378,0.07051639;0.009613414;-0.03653794,0.09520613;-0.3672954;0.005057286,0.1039867;-0.7091686;0.07952623,0.1159581;-0.7566198;0.01741344,-0.07126015;-0.002627594;-0.03626413,-0.08951721;-0.3809482;-0.005601341,-0.097085;-0.7231529;0.06746459,-0.08263443;-0.7695312;0.004555628,-0.01189963;0.398156;0.03592792,0;0;0,-0.0008666448;0.1994101;0.01532468,-0.002591354;0.4991349;0.02682845,0.1079158;0.3721581;-0.01484715,0.3089104;0.2245137;-0.1421354,0.5022256;0.3050358;-0.3279993,-0.1159605;0.3662198;0.008676291,-0.1953842;0.0987184;0.03180437,-0.2317283;-0.1788779;0.02740062,0.06719978;0.004878536;-0.04313223,0.1039348;-0.3681988;0.01902753,0.1109053;-0.7085979;0.1001439,0.1182253;-0.76017;0.04276426,-0.07503663;0.0007971696;-0.02772848,-0.08265897;-0.3766468;0.01560668,-0.09553396;-0.7161693;0.09962268,-0.102698;-0.704227;0.001527838,-0.001807448;0.399146;0.02555658,50.42479
+0;0;0,-0.005404504;0.1988163;0.0210446,-0.01523735;0.4980455;0.03923628,0.1011118;0.3745227;0.003218781,0.3302986;0.2615668;-0.1112992,0.5630432;0.3072277;-0.2601113,-0.1222379;0.3580176;0.01114124,-0.1960101;0.08847991;0.02866464,-0.2098443;-0.1901643;0.004873378,0.07051639;0.009613414;-0.03653794,0.09520613;-0.3672954;0.005057286,0.1039867;-0.7091686;0.07952623,0.1159581;-0.7566198;0.01741344,-0.07126015;-0.002627594;-0.03626413,-0.08951721;-0.3809482;-0.005601341,-0.097085;-0.7231529;0.06746459,-0.08263443;-0.7695312;0.004555628,-0.01189963;0.398156;0.03592792,0;0;0,-0.001091272;0.199417;0.01522013,-0.003201607;0.4991482;0.02644097,0.1078151;0.3727414;-0.01446002,0.3117365;0.2253934;-0.1373609,0.5102178;0.3041213;-0.3184883,-0.1164931;0.3665141;0.008299237,-0.1955367;0.09901789;0.03275146,-0.2293467;-0.1789334;0.03280361,0.06733021;0.004920759;-0.04292352,0.1039502;-0.3682403;0.01880018,0.1107705;-0.7086579;0.09985185,0.1177186;-0.7596736;0.04164376,-0.07492296;0.0008033799;-0.02803397,-0.08268481;-0.3766167;0.01548455,-0.09562352;-0.7161577;0.09941576,-0.1025315;-0.7042224;0.001303859,-0.002278417;0.3991589;0.02530836,50.44691
+0;0;0,-0.005245242;0.1988924;0.02035466,-0.01259905;0.4982942;0.03658742,0.1031056;0.3746422;0.003311418,0.3365016;0.2625605;-0.1032908,0.5743511;0.3062578;-0.2444225,-0.1212268;0.3589613;0.01034706,-0.1946406;0.08933845;0.02806567,-0.2083664;-0.1892908;0.004038012,0.07091384;0.009534472;-0.03578157,0.09548162;-0.3675783;0.003997564,0.1041232;-0.709514;0.07819528,0.1160046;-0.7569395;0.0160331,-0.0708775;-0.002456018;-0.03701821,-0.08945343;-0.380752;-0.006243898,-0.0972211;-0.7229902;0.06664465,-0.08172292;-0.7686749;0.003149487,-0.01040791;0.3983473;0.03417806,0;0;0,-0.001091272;0.199417;0.01522013,-0.003201607;0.4991482;0.02644097,0.1078151;0.3727414;-0.01446002,0.3117365;0.2253934;-0.1373609,0.5102178;0.3041213;-0.3184883,-0.1164931;0.3665141;0.008299237,-0.1955367;0.09901789;0.03275146,-0.2293467;-0.1789334;0.03280361,0.06733021;0.004920759;-0.04292352,0.1039502;-0.3682403;0.01880018,0.1107705;-0.7086579;0.09985185,0.1177186;-0.7596736;0.04164376,-0.07492296;0.0008033799;-0.02803397,-0.08268481;-0.3766167;0.01548455,-0.09562352;-0.7161577;0.09941576,-0.1025315;-0.7042224;0.001303859,-0.002278417;0.3991589;0.02530836,50.45848
+0;0;0,-0.005245242;0.1988924;0.02035466,-0.01259905;0.4982942;0.03658742,0.1031056;0.3746422;0.003311418,0.3365016;0.2625605;-0.1032908,0.5743511;0.3062578;-0.2444225,-0.1212268;0.3589613;0.01034706,-0.1946406;0.08933845;0.02806567,-0.2083664;-0.1892908;0.004038012,0.07091384;0.009534472;-0.03578157,0.09548162;-0.3675783;0.003997564,0.1041232;-0.709514;0.07819528,0.1160046;-0.7569395;0.0160331,-0.0708775;-0.002456018;-0.03701821,-0.08945343;-0.380752;-0.006243898,-0.0972211;-0.7229902;0.06664465,-0.08172292;-0.7686749;0.003149487,-0.01040791;0.3983473;0.03417806,0;0;0,-0.001529725;0.1994344;0.01495313,-0.003978395;0.4991718;0.0259141,0.1074888;0.3732414;-0.01430356,0.3140456;0.2262729;-0.1331925,0.515728;0.3043771;-0.3110237,-0.1171225;0.3665401;0.007761002,-0.1958712;0.09909073;0.03363491,-0.2260698;-0.1792503;0.03741482,0.06738949;0.005137241;-0.04280497,0.1035933;-0.3681647;0.01830951,0.1103792;-0.7085759;0.0993907,0.1177332;-0.7599723;0.04176645,-0.07476036;0.0006853765;-0.02846786,-0.08348201;-0.3763444;0.01814211,-0.09608864;-0.7163726;0.1001292,-0.1027876;-0.7044478;0.00200472,-0.002924601;0.3991826;0.02488731,50.48051
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.001529725;0.1994344;0.01495313,-0.003978395;0.4991718;0.0259141,0.1074888;0.3732414;-0.01430356,0.3140456;0.2262729;-0.1331925,0.515728;0.3043771;-0.3110237,-0.1171225;0.3665401;0.007761002,-0.1958712;0.09909073;0.03363491,-0.2260698;-0.1792503;0.03741482,0.06738949;0.005137241;-0.04280497,0.1035933;-0.3681647;0.01830951,0.1103792;-0.7085759;0.0993907,0.1177332;-0.7599723;0.04176645,-0.07476036;0.0006853765;-0.02846786,-0.08348201;-0.3763444;0.01814211,-0.09608864;-0.7163726;0.1001292,-0.1027876;-0.7044478;0.00200472,-0.002924601;0.3991826;0.02488731,50.49196
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.001625863;0.1994365;0.01491524,-0.004144928;0.4991807;0.02569198,0.1074498;0.3735389;-0.01430527,0.3155857;0.2262361;-0.1299829,0.5202974;0.3051311;-0.303962,-0.1172078;0.3664398;0.007242393,-0.1952988;0.09905645;0.03566663,-0.2234306;-0.1794266;0.04313777,0.06745861;0.00515681;-0.04269359,0.1036498;-0.3682079;0.01804312,0.1103343;-0.7086233;0.09911506,0.1176002;-0.7594617;0.0406996,-0.07466313;0.0007350299;-0.02872067,-0.08335771;-0.3762823;0.01799464,-0.09611154;-0.7163171;0.09993169,-0.1026667;-0.7043993;0.001798801,-0.003092912;0.399191;0.02471114,50.51399
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.001625863;0.1994365;0.01491524,-0.004144928;0.4991807;0.02569198,0.1074498;0.3735389;-0.01430527,0.3155857;0.2262361;-0.1299829,0.5202974;0.3051311;-0.303962,-0.1172078;0.3664398;0.007242393,-0.1952988;0.09905645;0.03566663,-0.2234306;-0.1794266;0.04313777,0.06745861;0.00515681;-0.04269359,0.1036498;-0.3682079;0.01804312,0.1103343;-0.7086233;0.09911506,0.1176002;-0.7594617;0.0406996,-0.07466313;0.0007350299;-0.02872067,-0.08335771;-0.3762823;0.01799464,-0.09611154;-0.7163171;0.09993169,-0.1026667;-0.7043993;0.001798801,-0.003092912;0.399191;0.02471114,50.52555
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.001871076;0.1994366;0.01488404,-0.004923786;0.4991813;0.02548622,0.1066866;0.3746364;-0.01556321,0.3177012;0.2257844;-0.1238033,0.526246;0.3037663;-0.2935911,-0.1177754;0.3663747;0.006983027,-0.1981425;0.100721;0.04398622,-0.2216786;-0.1782373;0.04930714,0.06742688;0.005226579;-0.04273522,0.103724;-0.3681318;0.01797771,0.110218;-0.708559;0.09901534,0.1176081;-0.759514;0.0407771,-0.07458646;0.0007367856;-0.02891915,-0.08346982;-0.3762847;0.01772699,-0.09618762;-0.7163442;0.09956727,-0.1031969;-0.7044393;0.001468137,-0.003700051;0.3991929;0.02458367,50.54752
+0;0;0,-0.005924533;0.198918;0.01991276,-0.01606791;0.4982703;0.03563924,0.101375;0.3762296;0.002951713,0.3411251;0.264824;-0.08929069,0.5900624;0.305036;-0.2110002,-0.1226963;0.3582334;0.007456101,-0.1978258;0.08914229;0.02604416,-0.2119876;-0.1894798;0.002186775,0.07156783;0.009299375;-0.03451907,0.09596442;-0.3680729;0.002829924,0.104651;-0.7101147;0.07653209,0.1160381;-0.7576598;0.01442661,-0.07033513;-0.00227068;-0.03805014,-0.08911966;-0.3805634;-0.007361893,-0.09700186;-0.7228025;0.06550978,-0.08199922;-0.7695516;0.003184002,-0.01259578;0.398358;0.03329978,0;0;0,-0.001871076;0.1994366;0.01488404,-0.004923786;0.4991813;0.02548622,0.1066866;0.3746364;-0.01556321,0.3177012;0.2257844;-0.1238033,0.526246;0.3037663;-0.2935911,-0.1177754;0.3663747;0.006983027,-0.1981425;0.100721;0.04398622,-0.2216786;-0.1782373;0.04930714,0.06742688;0.005226579;-0.04273522,0.103724;-0.3681318;0.01797771,0.110218;-0.708559;0.09901534,0.1176081;-0.759514;0.0407771,-0.07458646;0.0007367856;-0.02891915,-0.08346982;-0.3762847;0.01772699,-0.09618762;-0.7163442;0.09956727,-0.1031969;-0.7044393;0.001468137,-0.003700051;0.3991929;0.02458367,50.55888
+0;0;0,-0.005924533;0.198918;0.01991276,-0.01606791;0.4982703;0.03563924,0.101375;0.3762296;0.002951713,0.3411251;0.264824;-0.08929069,0.5900624;0.305036;-0.2110002,-0.1226963;0.3582334;0.007456101,-0.1978258;0.08914229;0.02604416,-0.2119876;-0.1894798;0.002186775,0.07156783;0.009299375;-0.03451907,0.09596442;-0.3680729;0.002829924,0.104651;-0.7101147;0.07653209,0.1160381;-0.7576598;0.01442661,-0.07033513;-0.00227068;-0.03805014,-0.08911966;-0.3805634;-0.007361893,-0.09700186;-0.7228025;0.06550978,-0.08199922;-0.7695516;0.003184002,-0.01259578;0.398358;0.03329978,0;0;0,-0.001890693;0.1994536;0.01465232,-0.004957614;0.4992097;0.02497918,0.106874;0.3749369;-0.01554084,0.3207757;0.2254604;-0.1170437,0.5320753;0.3062397;-0.2820503,-0.1178217;0.3664145;0.006484933,-0.1984005;0.1010292;0.04492548,-0.2194758;-0.1779594;0.05593508,0.06733385;0.005279968;-0.04287509,0.1038008;-0.3681135;0.01751907,0.1101664;-0.7085832;0.0983883,0.1170672;-0.7595035;0.040042,-0.07452629;0.000706963;-0.02907459,-0.08334392;-0.376242;0.01816671,-0.09625188;-0.7164296;0.0994425,-0.1030705;-0.7045342;0.001331702,-0.003748258;0.3992207;0.02412032,50.58082
+0;0;0,-0.005924533;0.198918;0.01991276,-0.01606791;0.4982703;0.03563924,0.101375;0.3762296;0.002951713,0.3411251;0.264824;-0.08929069,0.5900624;0.305036;-0.2110002,-0.1226963;0.3582334;0.007456101,-0.1978258;0.08914229;0.02604416,-0.2119876;-0.1894798;0.002186775,0.07156783;0.009299375;-0.03451907,0.09596442;-0.3680729;0.002829924,0.104651;-0.7101147;0.07653209,0.1160381;-0.7576598;0.01442661,-0.07033513;-0.00227068;-0.03805014,-0.08911966;-0.3805634;-0.007361893,-0.09700186;-0.7228025;0.06550978,-0.08199922;-0.7695516;0.003184002,-0.01259578;0.398358;0.03329978,0;0;0,-0.001890693;0.1994536;0.01465232,-0.004957614;0.4992097;0.02497918,0.106874;0.3749369;-0.01554084,0.3207757;0.2254604;-0.1170437,0.5320753;0.3062397;-0.2820503,-0.1178217;0.3664145;0.006484933,-0.1984005;0.1010292;0.04492548,-0.2194758;-0.1779594;0.05593508,0.06733385;0.005279968;-0.04287509,0.1038008;-0.3681135;0.01751907,0.1101664;-0.7085832;0.0983883,0.1170672;-0.7595035;0.040042,-0.07452629;0.000706963;-0.02907459,-0.08334392;-0.376242;0.01816671,-0.09625188;-0.7164296;0.0994425,-0.1030705;-0.7045342;0.001331702,-0.003748258;0.3992207;0.02412032,50.59255
+0;0;0,-0.006311305;0.1989055;0.01991948,-0.01724043;0.4982235;0.03579928,0.1006446;0.3762017;0.003819607,0.3427373;0.2660489;-0.0836874,0.595753;0.3054302;-0.1969667,-0.1235418;0.3582909;0.006985473,-0.1980465;0.08903793;0.02574387,-0.2121218;-0.1895689;0.001657868,0.07160393;0.009360448;-0.03442759,0.09608179;-0.3680438;0.002542701,0.1046879;-0.7100943;0.07621382,0.1158437;-0.7575575;0.01396423,-0.07020048;-0.002305695;-0.0382959,-0.0889785;-0.3805983;-0.00760282,-0.09687554;-0.7228458;0.06522802,-0.08237446;-0.7698466;0.003094316,-0.01353631;0.3983216;0.03337358,0;0;0,-0.001890693;0.1994536;0.01465232,-0.004957614;0.4992097;0.02497918,0.106874;0.3749369;-0.01554084,0.3207757;0.2254604;-0.1170437,0.5320753;0.3062397;-0.2820503,-0.1178217;0.3664145;0.006484933,-0.1984005;0.1010292;0.04492548,-0.2194758;-0.1779594;0.05593508,0.06733385;0.005279968;-0.04287509,0.1038008;-0.3681135;0.01751907,0.1101664;-0.7085832;0.0983883,0.1170672;-0.7595035;0.040042,-0.07452629;0.000706963;-0.02907459,-0.08334392;-0.376242;0.01816671,-0.09625188;-0.7164296;0.0994425,-0.1030705;-0.7045342;0.001331702,-0.003748258;0.3992207;0.02412032,50.60402
+0;0;0,-0.006311305;0.1989055;0.01991948,-0.01724043;0.4982235;0.03579928,0.1006446;0.3762017;0.003819607,0.3427373;0.2660489;-0.0836874,0.595753;0.3054302;-0.1969667,-0.1235418;0.3582909;0.006985473,-0.1980465;0.08903793;0.02574387,-0.2121218;-0.1895689;0.001657868,0.07160393;0.009360448;-0.03442759,0.09608179;-0.3680438;0.002542701,0.1046879;-0.7100943;0.07621382,0.1158437;-0.7575575;0.01396423,-0.07020048;-0.002305695;-0.0382959,-0.0889785;-0.3805983;-0.00760282,-0.09687554;-0.7228458;0.06522802,-0.08237446;-0.7698466;0.003094316,-0.01353631;0.3983216;0.03337358,0;0;0,-0.001879597;0.1994559;0.01462227,-0.004877675;0.4992184;0.02477769,0.1070279;0.3753298;-0.01558059,0.3226099;0.2256451;-0.1131455,0.5392184;0.3055736;-0.2715506,-0.1178797;0.366769;0.006304601,-0.1977209;0.1012762;0.04553346,-0.2173209;-0.1776395;0.06043102,0.06733388;0.005417371;-0.04285791,0.1041251;-0.3679964;0.01721337,0.1103929;-0.7084337;0.09822656,0.1171976;-0.7593678;0.03988801,-0.07445598;0.0006222611;-0.02925609,-0.0830947;-0.3762897;0.01831238,-0.09634922;-0.7165723;0.09913369,-0.1030929;-0.7046829;0.001018807,-0.003713533;0.3992283;0.02398187,50.62624
+0;0;0,-0.006311305;0.1989055;0.01991948,-0.01724043;0.4982235;0.03579928,0.1006446;0.3762017;0.003819607,0.3427373;0.2660489;-0.0836874,0.595753;0.3054302;-0.1969667,-0.1235418;0.3582909;0.006985473,-0.1980465;0.08903793;0.02574387,-0.2121218;-0.1895689;0.001657868,0.07160393;0.009360448;-0.03442759,0.09608179;-0.3680438;0.002542701,0.1046879;-0.7100943;0.07621382,0.1158437;-0.7575575;0.01396423,-0.07020048;-0.002305695;-0.0382959,-0.0889785;-0.3805983;-0.00760282,-0.09687554;-0.7228458;0.06522802,-0.08237446;-0.7698466;0.003094316,-0.01353631;0.3983216;0.03337358,0;0;0,-0.00195171;0.1994641;0.01450001,-0.005033133;0.4992346;0.0243647,0.1070059;0.3756374;-0.01571132,0.3244218;0.2248503;-0.1073278,0.5430115;0.3050254;-0.2628607,-0.1180701;0.3669395;0.006040718,-0.1977354;0.1016448;0.04693272,-0.2162551;-0.177129;0.06543124,0.06724692;0.005510364;-0.0429824,0.1041237;-0.367902;0.0170449,0.1103705;-0.7083874;0.09785777,0.1171005;-0.7593046;0.03948733,-0.07444353;0.0005100255;-0.02928991,-0.08289157;-0.3763158;0.0189897,-0.09659489;-0.7167292;0.09918265,-0.1032947;-0.7048509;0.001066789,-0.003855643;0.3992438;0.02368987,50.64785
+0;0;0,-0.005996235;0.1989577;0.01949081,-0.01407454;0.4984356;0.03384358,0.1027528;0.3760017;0.003794387,0.3477834;0.2662999;-0.07573873,0.6038;0.3048689;-0.1823594,-0.1221834;0.3591217;0.006799104,-0.1957294;0.08957836;0.02516777,-0.2099146;-0.1890275;0.001135534,0.07166982;0.009293457;-0.03430843,0.0961218;-0.368191;0.001851667,0.1047969;-0.7102386;0.07552809,0.1157909;-0.7576082;0.01313358,-0.06999425;-0.002229899;-0.038676,-0.0886206;-0.3805486;-0.00821255,-0.09677836;-0.7227909;0.0646135,-0.08175182;-0.7694638;0.002199765,-0.01167767;0.3984798;0.03208577,0;0;0,-0.00195171;0.1994641;0.01450001,-0.005033133;0.4992346;0.0243647,0.1070059;0.3756374;-0.01571132,0.3244218;0.2248503;-0.1073278,0.5430115;0.3050254;-0.2628607,-0.1180701;0.3669395;0.006040718,-0.1977354;0.1016448;0.04693272,-0.2162551;-0.177129;0.06543124,0.06724692;0.005510364;-0.0429824,0.1041237;-0.367902;0.0170449,0.1103705;-0.7083874;0.09785777,0.1171005;-0.7593046;0.03948733,-0.07444353;0.0005100255;-0.02928991,-0.08289157;-0.3763158;0.0189897,-0.09659489;-0.7167292;0.09918265,-0.1032947;-0.7048509;0.001066789,-0.003855643;0.3992438;0.02368987,50.65947
+0;0;0,-0.005996235;0.1989577;0.01949081,-0.01407454;0.4984356;0.03384358,0.1027528;0.3760017;0.003794387,0.3477834;0.2662999;-0.07573873,0.6038;0.3048689;-0.1823594,-0.1221834;0.3591217;0.006799104,-0.1957294;0.08957836;0.02516777,-0.2099146;-0.1890275;0.001135534,0.07166982;0.009293457;-0.03430843,0.0961218;-0.368191;0.001851667,0.1047969;-0.7102386;0.07552809,0.1157909;-0.7576082;0.01313358,-0.06999425;-0.002229899;-0.038676,-0.0886206;-0.3805486;-0.00821255,-0.09677836;-0.7227909;0.0646135,-0.08175182;-0.7694638;0.002199765,-0.01167767;0.3984798;0.03208577,0;0;0,-0.001933121;0.19947;0.01442217,-0.004799863;0.4992584;0.0236943,0.1068878;0.3762006;-0.01708577,0.3263062;0.2239486;-0.1011982,0.5502899;0.3005064;-0.2507649,-0.118056;0.3671533;0.005991882,-0.1972445;0.1020996;0.04930148,-0.2158385;-0.1765522;0.06948642,0.06720386;0.005560063;-0.04304331,0.1041761;-0.367807;0.01720655,0.110372;-0.7083058;0.09796641,0.116906;-0.7578144;0.03766963,-0.07446762;0.0004165549;-0.02923011,-0.08290853;-0.376408;0.01906078,-0.09664543;-0.7168546;0.09910709,-0.1037849;-0.7049949;0.001025707,-0.003734544;0.3992649;0.02329659,50.68156
+0;0;0,-0.005996235;0.1989577;0.01949081,-0.01407454;0.4984356;0.03384358,0.1027528;0.3760017;0.003794387,0.3477834;0.2662999;-0.07573873,0.6038;0.3048689;-0.1823594,-0.1221834;0.3591217;0.006799104,-0.1957294;0.08957836;0.02516777,-0.2099146;-0.1890275;0.001135534,0.07166982;0.009293457;-0.03430843,0.0961218;-0.368191;0.001851667,0.1047969;-0.7102386;0.07552809,0.1157909;-0.7576082;0.01313358,-0.06999425;-0.002229899;-0.038676,-0.0886206;-0.3805486;-0.00821255,-0.09677836;-0.7227909;0.0646135,-0.08175182;-0.7694638;0.002199765,-0.01167767;0.3984798;0.03208577,0;0;0,-0.001933121;0.19947;0.01442217,-0.004799863;0.4992584;0.0236943,0.1068878;0.3762006;-0.01708577,0.3263062;0.2239486;-0.1011982,0.5502899;0.3005064;-0.2507649,-0.118056;0.3671533;0.005991882,-0.1972445;0.1020996;0.04930148,-0.2158385;-0.1765522;0.06948642,0.06720386;0.005560063;-0.04304331,0.1041761;-0.367807;0.01720655,0.110372;-0.7083058;0.09796641,0.116906;-0.7578144;0.03766963,-0.07446762;0.0004165549;-0.02923011,-0.08290853;-0.376408;0.01906078,-0.09664543;-0.7168546;0.09910709,-0.1037849;-0.7049949;0.001025707,-0.003734544;0.3992649;0.02329659,50.70427
+0;0;0,-0.006462446;0.1989583;0.01933463,-0.01669128;0.4983655;0.03386813,0.1013809;0.3762369;0.004620293,0.3522785;0.2734943;-0.06533954,0.6110059;0.3066468;-0.1671287,-0.1236397;0.3589833;0.006009683,-0.1967147;0.08929706;0.02415864,-0.2109458;-0.1892996;4.587322E-05,0.07179698;0.009281459;-0.03404478,0.09611753;-0.3682864;0.00132516,0.1048656;-0.7103991;0.07468972,0.116303;-0.7577942;0.01240661,-0.06982917;-0.002173205;-0.03897646,-0.08863117;-0.380487;-0.008559657,-0.09656239;-0.7227777;0.06406395,-0.08171524;-0.7692879;0.001408182,-0.01332863;0.3984398;0.03198361,0;0;0,-0.001775414;0.1994651;0.01450936,-0.00410904;0.4992545;0.02393887,0.107179;0.3757783;-0.01708124,0.3280239;0.2225549;-0.09550407,0.5555065;0.2990132;-0.2397462,-0.117436;0.3665643;0.006035581,-0.1816287;0.09593329;0.0382558,-0.21258;-0.1814261;0.06092221,0.06717912;0.005662358;-0.0430686,0.1040156;-0.3677294;0.01711188,0.1103235;-0.7082273;0.09786727,0.1165783;-0.7580698;0.03798357,-0.0744624;0.0003233108;-0.02924461,-0.08285406;-0.3764024;0.01981959,-0.09687255;-0.7170299;0.09904305,-0.1039744;-0.705162;0.0009574145,-0.003298003;0.399259;0.02345875,50.72653
+0;0;0,-0.006462446;0.1989583;0.01933463,-0.01669128;0.4983655;0.03386813,0.1013809;0.3762369;0.004620293,0.3522785;0.2734943;-0.06533954,0.6110059;0.3066468;-0.1671287,-0.1236397;0.3589833;0.006009683,-0.1967147;0.08929706;0.02415864,-0.2109458;-0.1892996;4.587322E-05,0.07179698;0.009281459;-0.03404478,0.09611753;-0.3682864;0.00132516,0.1048656;-0.7103991;0.07468972,0.116303;-0.7577942;0.01240661,-0.06982917;-0.002173205;-0.03897646,-0.08863117;-0.380487;-0.008559657,-0.09656239;-0.7227777;0.06406395,-0.08171524;-0.7692879;0.001408182,-0.01332863;0.3984398;0.03198361,0;0;0,-0.001775414;0.1994651;0.01450936,-0.00410904;0.4992545;0.02393887,0.107179;0.3757783;-0.01708124,0.3280239;0.2225549;-0.09550407,0.5555065;0.2990132;-0.2397462,-0.117436;0.3665643;0.006035581,-0.1816287;0.09593329;0.0382558,-0.21258;-0.1814261;0.06092221,0.06717912;0.005662358;-0.0430686,0.1040156;-0.3677294;0.01711188,0.1103235;-0.7082273;0.09786727,0.1165783;-0.7580698;0.03798357,-0.0744624;0.0003233108;-0.02924461,-0.08285406;-0.3764024;0.01981959,-0.09687255;-0.7170299;0.09904305,-0.1039744;-0.705162;0.0009574145,-0.003298003;0.399259;0.02345875,50.73795
+0;0;0,-0.0063008;0.199003;0.01892358,-0.01524298;0.4984978;0.03242973,0.1025333;0.3762047;0.004705574,0.3555551;0.2755582;-0.06048809,0.6178613;0.3070354;-0.1532494,-0.1229945;0.3594385;0.005566396,-0.1954527;0.08958441;0.02369335,-0.2096988;-0.1889769;-0.0008153655,0.07173383;0.009328723;-0.03416478,0.09584493;-0.3682928;0.0007727705,0.1046102;-0.710388;0.07421692,0.1160032;-0.7576391;0.01174711,-0.06968021;-0.002146517;-0.03924361,-0.08919172;-0.3804405;-0.009027865,-0.09705807;-0.7227767;0.06338775,-0.08206673;-0.7692997;0.0007819608,-0.01241655;0.3985491;0.03092126,0;0;0,-0.00182103;0.1994752;0.0143646,-0.004134552;0.49927;0.02356619,0.1072197;0.3759086;-0.01717622,0.329795;0.2219459;-0.0889795,0.5607319;0.29831;-0.2276758,-0.1175382;0.3666517;0.006050248,-0.1956462;0.1018406;0.05267882,-0.2157122;-0.1762289;0.07865476,0.06709148;0.005796338;-0.0431872,0.1041159;-0.3675714;0.01702714,0.1102464;-0.7080812;0.09774561,0.1163875;-0.7576772;0.037523,-0.07449479;0.0001545259;-0.02916335,-0.08301681;-0.3765687;0.01989808,-0.09715795;-0.7172021;0.09907446,-0.1042487;-0.7053456;0.00099013,-0.003339101;0.3992738;0.02320715,50.76011
+0;0;0,-0.0063008;0.199003;0.01892358,-0.01524298;0.4984978;0.03242973,0.1025333;0.3762047;0.004705574,0.3555551;0.2755582;-0.06048809,0.6178613;0.3070354;-0.1532494,-0.1229945;0.3594385;0.005566396,-0.1954527;0.08958441;0.02369335,-0.2096988;-0.1889769;-0.0008153655,0.07173383;0.009328723;-0.03416478,0.09584493;-0.3682928;0.0007727705,0.1046102;-0.710388;0.07421692,0.1160032;-0.7576391;0.01174711,-0.06968021;-0.002146517;-0.03924361,-0.08919172;-0.3804405;-0.009027865,-0.09705807;-0.7227767;0.06338775,-0.08206673;-0.7692997;0.0007819608,-0.01241655;0.3985491;0.03092126,0;0;0,-0.001857923;0.1994767;0.01433828,-0.004224012;0.4992758;0.02336696,0.1072226;0.3759525;-0.01712884,0.3312066;0.2214819;-0.08323534,0.5689614;0.2915515;-0.2134769,-0.1181546;0.3679769;0.007166125,-0.1984895;0.1035488;0.05215555,-0.2191939;-0.1741723;0.08117819,0.06702884;0.005887835;-0.04327203,0.1040949;-0.3674348;0.0171955,0.1100592;-0.7079783;0.09778413,0.1162826;-0.7576353;0.03765059,-0.07453086;7.565493E-05;-0.02907137,-0.08308639;-0.3765956;0.0203813,-0.09700979;-0.7173504;0.09907231,-0.1045258;-0.7054999;0.001020774,-0.003407598;0.3992796;0.02308052,50.78213
+0;0;0,-0.0063008;0.199003;0.01892358,-0.01524298;0.4984978;0.03242973,0.1025333;0.3762047;0.004705574,0.3555551;0.2755582;-0.06048809,0.6178613;0.3070354;-0.1532494,-0.1229945;0.3594385;0.005566396,-0.1954527;0.08958441;0.02369335,-0.2096988;-0.1889769;-0.0008153655,0.07173383;0.009328723;-0.03416478,0.09584493;-0.3682928;0.0007727705,0.1046102;-0.710388;0.07421692,0.1160032;-0.7576391;0.01174711,-0.06968021;-0.002146517;-0.03924361,-0.08919172;-0.3804405;-0.009027865,-0.09705807;-0.7227767;0.06338775,-0.08206673;-0.7692997;0.0007819608,-0.01241655;0.3985491;0.03092126,0;0;0,-0.001857923;0.1994767;0.01433828,-0.004224012;0.4992758;0.02336696,0.1072226;0.3759525;-0.01712884,0.3312066;0.2214819;-0.08323534,0.5689614;0.2915515;-0.2134769,-0.1181546;0.3679769;0.007166125,-0.1984895;0.1035488;0.05215555,-0.2191939;-0.1741723;0.08117819,0.06702884;0.005887835;-0.04327203,0.1040949;-0.3674348;0.0171955,0.1100592;-0.7079783;0.09778413,0.1162826;-0.7576353;0.03765059,-0.07453086;7.565493E-05;-0.02907137,-0.08308639;-0.3765956;0.0203813,-0.09700979;-0.7173504;0.09907231,-0.1045258;-0.7054999;0.001020774,-0.003407598;0.3992796;0.02308052,50.80453
+0;0;0,-0.006686769;0.1990178;0.01863311,-0.01650076;0.4984809;0.03229069,0.1018951;0.3761724;0.005487995,0.3574331;0.2783205;-0.05388644,0.6226827;0.3066975;-0.1389592,-0.1237727;0.3594963;0.004874004,-0.1957288;0.08950153;0.02290531,-0.2098215;-0.1890538;-0.001759078,0.07179902;0.009350599;-0.03402157,0.09562065;-0.3683735;-6.649643E-06,0.1043848;-0.7104816;0.07337749,0.1157588;-0.7576192;0.0107642,-0.06947668;-0.002093869;-0.03960564,-0.0894791;-0.3803814;-0.00963152,-0.09740171;-0.7227131;0.06279925,-0.08167335;-0.7686782;-0.0003032088,-0.01327769;0.3985459;0.03068054,0;0;0,-0.001739067;0.199478;0.01433469,-0.003603104;0.4992847;0.02322225,0.1075355;0.3756694;-0.01727865,0.333053;0.220338;-0.07570811,0.5719146;0.292662;-0.2026506,-0.1179808;0.3683968;0.007890102,-0.1985374;0.1040498;0.05295958,-0.2225328;-0.1732833;0.08313496,0.06695931;0.005926728;-0.04337423,0.1043113;-0.3673336;0.01730167,0.1100981;-0.7079241;0.09770417,0.116096;-0.7576256;0.03760675,-0.07461847;6.183094E-05;-0.02884579,-0.08308315;-0.3766646;0.02020056,-0.09717339;-0.7173729;0.09906335,-0.1049503;-0.7055321;0.001033939,-0.003011964;0.3992867;0.02298909,50.82695
+0;0;0,-0.006686769;0.1990178;0.01863311,-0.01650076;0.4984809;0.03229069,0.1018951;0.3761724;0.005487995,0.3574331;0.2783205;-0.05388644,0.6226827;0.3066975;-0.1389592,-0.1237727;0.3594963;0.004874004,-0.1957288;0.08950153;0.02290531,-0.2098215;-0.1890538;-0.001759078,0.07179902;0.009350599;-0.03402157,0.09562065;-0.3683735;-6.649643E-06,0.1043848;-0.7104816;0.07337749,0.1157588;-0.7576192;0.0107642,-0.06947668;-0.002093869;-0.03960564,-0.0894791;-0.3803814;-0.00963152,-0.09740171;-0.7227131;0.06279925,-0.08167335;-0.7686782;-0.0003032088,-0.01327769;0.3985459;0.03068054,0;0;0,-0.001739067;0.199478;0.01433469,-0.003603104;0.4992847;0.02322225,0.1075355;0.3756694;-0.01727865,0.333053;0.220338;-0.07570811,0.5719146;0.292662;-0.2026506,-0.1179808;0.3683968;0.007890102,-0.1985374;0.1040498;0.05295958,-0.2225328;-0.1732833;0.08313496,0.06695931;0.005926728;-0.04337423,0.1043113;-0.3673336;0.01730167,0.1100981;-0.7079241;0.09770417,0.116096;-0.7576256;0.03760675,-0.07461847;6.183094E-05;-0.02884579,-0.08308315;-0.3766646;0.02020056,-0.09717339;-0.7173729;0.09906335,-0.1049503;-0.7055321;0.001033939,-0.003011964;0.3992867;0.02298909,50.83855
+0;0;0,-0.006686769;0.1990178;0.01863311,-0.01650076;0.4984809;0.03229069,0.1018951;0.3761724;0.005487995,0.3574331;0.2783205;-0.05388644,0.6226827;0.3066975;-0.1389592,-0.1237727;0.3594963;0.004874004,-0.1957288;0.08950153;0.02290531,-0.2098215;-0.1890538;-0.001759078,0.07179902;0.009350599;-0.03402157,0.09562065;-0.3683735;-6.649643E-06,0.1043848;-0.7104816;0.07337749,0.1157588;-0.7576192;0.0107642,-0.06947668;-0.002093869;-0.03960564,-0.0894791;-0.3803814;-0.00963152,-0.09740171;-0.7227131;0.06279925,-0.08167335;-0.7686782;-0.0003032088,-0.01327769;0.3985459;0.03068054,0;0;0,-0.001773414;0.199481;0.01428882,-0.003741161;0.4992916;0.02299662,0.1075136;0.3757352;-0.01726482,0.3341289;0.2193745;-0.06822409,0.5774478;0.290054;-0.1873892,-0.1181187;0.368355;0.008182881,-0.1988102;0.1047672;0.05727836,-0.224688;-0.1724491;0.08696795,0.06691343;0.005967686;-0.04343937,0.1047042;-0.3672257;0.01737648,0.1100505;-0.7078476;0.09767683,0.1159943;-0.7574945;0.03750167,-0.07462303;-4.596192E-06;-0.02883406,-0.08313718;-0.3766852;0.02055468,-0.09727213;-0.717448;0.09917335,-0.1049975;-0.7056113;0.001140632,-0.003105781;0.3992937;0.02283943,50.86034
+0;0;0,-0.007189642;0.1990379;0.01822732,-0.01789062;0.4984711;0.03193176,0.1011725;0.3765905;0.006139925,0.3585459;0.2802551;-0.04751129,0.626376;0.3066144;-0.1247912,-0.1246416;0.359407;0.003877984,-0.1964135;0.08936247;0.02189843,-0.2110093;-0.1891162;-0.00333287,0.07184929;0.009445917;-0.03388886,0.09542293;-0.3684106;-0.001197774,0.1043841;-0.7105027;0.07223727,0.1153252;-0.7578637;0.009822764,-0.06919837;-0.002109324;-0.04008911,-0.08972748;-0.3804323;-0.01093051,-0.09782502;-0.7227066;0.06175227,-0.08155742;-0.7685511;-0.001358591,-0.0143121;0.3985493;0.03024618,0;0;0,-0.001773414;0.199481;0.01428882,-0.003741161;0.4992916;0.02299662,0.1075136;0.3757352;-0.01726482,0.3341289;0.2193745;-0.06822409,0.5774478;0.290054;-0.1873892,-0.1181187;0.368355;0.008182881,-0.1988102;0.1047672;0.05727836,-0.224688;-0.1724491;0.08696795,0.06691343;0.005967686;-0.04343937,0.1047042;-0.3672257;0.01737648,0.1100505;-0.7078476;0.09767683,0.1159943;-0.7574945;0.03750167,-0.07462303;-4.596192E-06;-0.02883406,-0.08313718;-0.3766852;0.02055468,-0.09727213;-0.717448;0.09917335,-0.1049975;-0.7056113;0.001140632,-0.003105781;0.3992937;0.02283943,50.87154
+0;0;0,-0.007189642;0.1990379;0.01822732,-0.01789062;0.4984711;0.03193176,0.1011725;0.3765905;0.006139925,0.3585459;0.2802551;-0.04751129,0.626376;0.3066144;-0.1247912,-0.1246416;0.359407;0.003877984,-0.1964135;0.08936247;0.02189843,-0.2110093;-0.1891162;-0.00333287,0.07184929;0.009445917;-0.03388886,0.09542293;-0.3684106;-0.001197774,0.1043841;-0.7105027;0.07223727,0.1153252;-0.7578637;0.009822764,-0.06919837;-0.002109324;-0.04008911,-0.08972748;-0.3804323;-0.01093051,-0.09782502;-0.7227066;0.06175227,-0.08155742;-0.7685511;-0.001358591,-0.0143121;0.3985493;0.03024618,0;0;0,-0.001778771;0.1994854;0.01422707,-0.003711807;0.4993047;0.02260155,0.1076261;0.3757378;-0.0172573,0.3344911;0.2177419;-0.06163719,0.5810362;0.2892924;-0.173423,-0.1183949;0.3691214;0.008680306,-0.1876714;0.1003601;0.04566852,-0.2260861;-0.1754071;0.07527893,0.06686678;0.005976516;-0.04350993,0.1049067;-0.3671239;0.01771919,0.1100163;-0.707818;0.09772813,0.1155817;-0.7573084;0.03731032,-0.07464532;-5.336904E-06;-0.02877631,-0.08206383;-0.3768181;0.01977336,-0.09713078;-0.7174414;0.09882223,-0.1050446;-0.7056168;0.0008067638,-0.003088023;0.3993067;0.02257865,50.8938
+0;0;0,-0.007189642;0.1990379;0.01822732,-0.01789062;0.4984711;0.03193176,0.1011725;0.3765905;0.006139925,0.3585459;0.2802551;-0.04751129,0.626376;0.3066144;-0.1247912,-0.1246416;0.359407;0.003877984,-0.1964135;0.08936247;0.02189843,-0.2110093;-0.1891162;-0.00333287,0.07184929;0.009445917;-0.03388886,0.09542293;-0.3684106;-0.001197774,0.1043841;-0.7105027;0.07223727,0.1153252;-0.7578637;0.009822764,-0.06919837;-0.002109324;-0.04008911,-0.08972748;-0.3804323;-0.01093051,-0.09782502;-0.7227066;0.06175227,-0.08155742;-0.7685511;-0.001358591,-0.0143121;0.3985493;0.03024618,0;0;0,-0.001778771;0.1994854;0.01422707,-0.003711807;0.4993047;0.02260155,0.1076261;0.3757378;-0.0172573,0.3344911;0.2177419;-0.06163719,0.5810362;0.2892924;-0.173423,-0.1183949;0.3691214;0.008680306,-0.1876714;0.1003601;0.04566852,-0.2260861;-0.1754071;0.07527893,0.06686678;0.005976516;-0.04350993,0.1049067;-0.3671239;0.01771919,0.1100163;-0.707818;0.09772813,0.1155817;-0.7573084;0.03731032,-0.07464532;-5.336904E-06;-0.02877631,-0.08206383;-0.3768181;0.01977336,-0.09713078;-0.7174414;0.09882223,-0.1050446;-0.7056168;0.0008067638,-0.003088023;0.3993067;0.02257865,50.90508
+0;0;0,-0.007295322;0.1990371;0.01819315,-0.01822485;0.4984614;0.0319279,0.1010163;0.3765681;0.006648911,0.3598571;0.2811961;-0.04136757,0.6280673;0.3070834;-0.1174805,-0.1248404;0.3595129;0.003411321,-0.1960029;0.08928767;0.02113784,-0.2108376;-0.1891509;-0.004394948,0.07183985;0.009436163;-0.03391159,0.09548846;-0.3684308;-0.001395211,0.1043794;-0.7105285;0.07202205,0.1149339;-0.7575369;0.009106874,-0.06916377;-0.002102307;-0.04014913,-0.08970466;-0.3804341;-0.01111191,-0.09785277;-0.7227067;0.06157269,-0.0815367;-0.7679213;-0.002275221,-0.0145764;0.3985426;0.03021688,0;0;0,-0.001776189;0.1995009;0.01400845,-0.003838517;0.4993421;0.02146546,0.1075488;0.3764346;-0.01845175,0.3357274;0.2179819;-0.05348426,0.5857424;0.2883537;-0.1580802,-0.1185301;0.3693076;0.008099535,-0.201872;0.1070042;0.05958796,-0.2310203;-0.1695437;0.09232397,0.06677388;0.006136267;-0.04363022,0.1049684;-0.3668661;0.01809841,0.109836;-0.7076168;0.09788093,0.1149713;-0.7567759;0.03699191,-0.07466917;-9.247247E-05;-0.02871419,-0.0820978;-0.3770108;0.01900794,-0.09714799;-0.7175151;0.09857112,-0.1051817;-0.7057211;0.0005711094,-0.003159006;0.3993449;0.02178378,50.92747
+0;0;0,-0.007295322;0.1990371;0.01819315,-0.01822485;0.4984614;0.0319279,0.1010163;0.3765681;0.006648911,0.3598571;0.2811961;-0.04136757,0.6280673;0.3070834;-0.1174805,-0.1248404;0.3595129;0.003411321,-0.1960029;0.08928767;0.02113784,-0.2108376;-0.1891509;-0.004394948,0.07183985;0.009436163;-0.03391159,0.09548846;-0.3684308;-0.001395211,0.1043794;-0.7105285;0.07202205,0.1149339;-0.7575369;0.009106874,-0.06916377;-0.002102307;-0.04014913,-0.08970466;-0.3804341;-0.01111191,-0.09785277;-0.7227067;0.06157269,-0.0815367;-0.7679213;-0.002275221,-0.0145764;0.3985426;0.03021688,0;0;0,-0.001776189;0.1995009;0.01400845,-0.003838517;0.4993421;0.02146546,0.1075488;0.3764346;-0.01845175,0.3357274;0.2179819;-0.05348426,0.5857424;0.2883537;-0.1580802,-0.1185301;0.3693076;0.008099535,-0.201872;0.1070042;0.05958796,-0.2310203;-0.1695437;0.09232397,0.06677388;0.006136267;-0.04363022,0.1049684;-0.3668661;0.01809841,0.109836;-0.7076168;0.09788093,0.1149713;-0.7567759;0.03699191,-0.07466917;-9.247247E-05;-0.02871419,-0.0820978;-0.3770108;0.01900794,-0.09714799;-0.7175151;0.09857112,-0.1051817;-0.7057211;0.0005711094,-0.003159006;0.3993449;0.02178378,50.93862
+0;0;0,-0.007295322;0.1990371;0.01819315,-0.01822485;0.4984614;0.0319279,0.1010163;0.3765681;0.006648911,0.3598571;0.2811961;-0.04136757,0.6280673;0.3070834;-0.1174805,-0.1248404;0.3595129;0.003411321,-0.1960029;0.08928767;0.02113784,-0.2108376;-0.1891509;-0.004394948,0.07183985;0.009436163;-0.03391159,0.09548846;-0.3684308;-0.001395211,0.1043794;-0.7105285;0.07202205,0.1149339;-0.7575369;0.009106874,-0.06916377;-0.002102307;-0.04014913,-0.08970466;-0.3804341;-0.01111191,-0.09785277;-0.7227067;0.06157269,-0.0815367;-0.7679213;-0.002275221,-0.0145764;0.3985426;0.03021688,0;0;0,-0.001908502;0.1995016;0.01398094,-0.004265701;0.4993462;0.02122836,0.1074552;0.3767025;-0.01816173,0.3362095;0.2178332;-0.04700591,0.5892099;0.2874288;-0.144716,-0.1188013;0.3691502;0.007898958,-0.1890517;0.1011723;0.0485531,-0.2308583;-0.1737898;0.08092642,0.06672093;0.006250493;-0.04369495,0.1046664;-0.3667288;0.01832605,0.1094689;-0.7074798;0.098111,0.1146281;-0.7564529;0.03698291,-0.07470001;-0.0002033834;-0.02863329,-0.08154184;-0.3771723;0.01877551,-0.09714791;-0.7176219;0.09846581,-0.1049581;-0.7058306;0.0004482195,-0.003475358;0.39935;0.02160645,50.96095
+0;0;0,-0.00750293;0.1990376;0.01810358,-0.01919164;0.4984396;0.03169813,0.1004893;0.3765487;0.007282678,0.3601343;0.2809355;-0.03564245,0.6304603;0.3056959;-0.1042775,-0.1254732;0.3594505;0.003068855,-0.196356;0.08914641;0.02071363,-0.2112198;-0.189276;-0.004977655,0.07191943;0.009322368;-0.03377408,0.09539361;-0.3685787;-0.001529343,0.1041556;-0.7106475;0.07203836,0.1161438;-0.7584469;0.01036558,-0.06910623;-0.002019354;-0.04025234,-0.08971461;-0.3803473;-0.01121332,-0.09801577;-0.7226084;0.06150783,-0.08151998;-0.7677745;-0.002351023,-0.01526575;0.3985305;0.03003302,0;0;0,-0.002124663;0.1995061;0.01388542,-0.004909677;0.4993554;0.02078446,0.1070338;0.3770562;-0.01851307,0.336547;0.2182476;-0.04095255,0.5936682;0.2839305;-0.1302519,-0.1193365;0.3691155;0.0081138,-0.2004258;0.106388;0.06101739,-0.2368884;-0.1687772;0.09782194,0.06671351;0.006387963;-0.0436864,0.1043055;-0.3665797;0.01861928,0.1091362;-0.7073154;0.09846772,0.1141746;-0.7562461;0.03727484,-0.07465902;-0.0003700788;-0.02873837,-0.08191717;-0.3773717;0.01834792,-0.09742744;-0.7177161;0.09850442,-0.1053628;-0.7059402;0.0004997626,-0.003958937;0.3993611;0.02127519,50.983
+0;0;0,-0.00750293;0.1990376;0.01810358,-0.01919164;0.4984396;0.03169813,0.1004893;0.3765487;0.007282678,0.3601343;0.2809355;-0.03564245,0.6304603;0.3056959;-0.1042775,-0.1254732;0.3594505;0.003068855,-0.196356;0.08914641;0.02071363,-0.2112198;-0.189276;-0.004977655,0.07191943;0.009322368;-0.03377408,0.09539361;-0.3685787;-0.001529343,0.1041556;-0.7106475;0.07203836,0.1161438;-0.7584469;0.01036558,-0.06910623;-0.002019354;-0.04025234,-0.08971461;-0.3803473;-0.01121332,-0.09801577;-0.7226084;0.06150783,-0.08151998;-0.7677745;-0.002351023,-0.01526575;0.3985305;0.03003302,0;0;0,-0.002124663;0.1995061;0.01388542,-0.004909677;0.4993554;0.02078446,0.1070338;0.3770562;-0.01851307,0.336547;0.2182476;-0.04095255,0.5936682;0.2839305;-0.1302519,-0.1193365;0.3691155;0.0081138,-0.2004258;0.106388;0.06101739,-0.2368884;-0.1687772;0.09782194,0.06671351;0.006387963;-0.0436864,0.1043055;-0.3665797;0.01861928,0.1091362;-0.7073154;0.09846772,0.1141746;-0.7562461;0.03727484,-0.07465902;-0.0003700788;-0.02873837,-0.08191717;-0.3773717;0.01834792,-0.09742744;-0.7177161;0.09850442,-0.1053628;-0.7059402;0.0004997626,-0.003958937;0.3993611;0.02127519,50.99438
+0;0;0,-0.00750293;0.1990376;0.01810358,-0.01919164;0.4984396;0.03169813,0.1004893;0.3765487;0.007282678,0.3601343;0.2809355;-0.03564245,0.6304603;0.3056959;-0.1042775,-0.1254732;0.3594505;0.003068855,-0.196356;0.08914641;0.02071363,-0.2112198;-0.189276;-0.004977655,0.07191943;0.009322368;-0.03377408,0.09539361;-0.3685787;-0.001529343,0.1041556;-0.7106475;0.07203836,0.1161438;-0.7584469;0.01036558,-0.06910623;-0.002019354;-0.04025234,-0.08971461;-0.3803473;-0.01121332,-0.09801577;-0.7226084;0.06150783,-0.08151998;-0.7677745;-0.002351023,-0.01526575;0.3985305;0.03003302,0;0;0,-0.002371725;0.1995008;0.01392194,-0.005512815;0.4993482;0.02075826,0.1070585;0.3774629;-0.01735959,0.3367536;0.2183105;-0.03498494,0.5968362;0.2792903;-0.1188807,-0.1197841;0.3690948;0.007964306,-0.2017041;0.1068385;0.06191584,-0.2398111;-0.1680745;0.09893838,0.06671119;0.00650628;-0.04367247,0.1039794;-0.3664177;0.01908692,0.1087621;-0.7072046;0.09871982,0.1136418;-0.7561436;0.03752471,-0.07463297;-0.0005142203;-0.02880376,-0.08203892;-0.3775088;0.01831522,-0.0977728;-0.7177775;0.09874958,-0.1052959;-0.7059968;0.0007115081,-0.004426402;0.3993554;0.02126467,51.01659
+0;0;0,-0.006852441;0.1990822;0.01786897,-0.01449408;0.4986753;0.0299033,0.103555;0.3763535;0.007295635,0.3633308;0.2795256;-0.03195838,0.6350998;0.3041865;-0.09467585,-0.1230158;0.3601547;0.003027016,-0.1933556;0.08969662;0.02048346,-0.2084076;-0.1887095;-0.005274368,0.07201415;0.009262089;-0.03358832,0.09551135;-0.3686498;-0.001487318,0.1042639;-0.7107543;0.07191512,0.1148651;-0.7585164;0.009941928,-0.06904181;-0.001979923;-0.04036468,-0.0894153;-0.3803111;-0.01120307,-0.09788432;-0.7226075;0.06133305,-0.08134064;-0.7676336;-0.002677843,-0.01235408;0.3987035;0.02887235,0;0;0,-0.002371725;0.1995008;0.01392194,-0.005512815;0.4993482;0.02075826,0.1070585;0.3774629;-0.01735959,0.3367536;0.2183105;-0.03498494,0.5968362;0.2792903;-0.1188807,-0.1197841;0.3690948;0.007964306,-0.2017041;0.1068385;0.06191584,-0.2398111;-0.1680745;0.09893838,0.06671119;0.00650628;-0.04367247,0.1039794;-0.3664177;0.01908692,0.1087621;-0.7072046;0.09871982,0.1136418;-0.7561436;0.03752471,-0.07463297;-0.0005142203;-0.02880376,-0.08203892;-0.3775088;0.01831522,-0.0977728;-0.7177775;0.09874958,-0.1052959;-0.7059968;0.0007115081,-0.004426402;0.3993554;0.02126467,51.02787
+0;0;0,-0.006852441;0.1990822;0.01786897,-0.01449408;0.4986753;0.0299033,0.103555;0.3763535;0.007295635,0.3633308;0.2795256;-0.03195838,0.6350998;0.3041865;-0.09467585,-0.1230158;0.3601547;0.003027016,-0.1933556;0.08969662;0.02048346,-0.2084076;-0.1887095;-0.005274368,0.07201415;0.009262089;-0.03358832,0.09551135;-0.3686498;-0.001487318,0.1042639;-0.7107543;0.07191512,0.1148651;-0.7585164;0.009941928,-0.06904181;-0.001979923;-0.04036468,-0.0894153;-0.3803111;-0.01120307,-0.09788432;-0.7226075;0.06133305,-0.08134064;-0.7676336;-0.002677843,-0.01235408;0.3987035;0.02887235,0;0;0,-0.002371725;0.1995008;0.01392194,-0.005512815;0.4993482;0.02075826,0.1070585;0.3774629;-0.01735959,0.3367536;0.2183105;-0.03498494,0.5968362;0.2792903;-0.1188807,-0.1197841;0.3690948;0.007964306,-0.2017041;0.1068385;0.06191584,-0.2398111;-0.1680745;0.09893838,0.06671119;0.00650628;-0.04367247,0.1039794;-0.3664177;0.01908692,0.1087621;-0.7072046;0.09871982,0.1136418;-0.7561436;0.03752471,-0.07463297;-0.0005142203;-0.02880376,-0.08203892;-0.3775088;0.01831522,-0.0977728;-0.7177775;0.09874958,-0.1052959;-0.7059968;0.0007115081,-0.004426402;0.3993554;0.02126467,51.03944
+0;0;0,-0.006852441;0.1990822;0.01786897,-0.01449408;0.4986753;0.0299033,0.103555;0.3763535;0.007295635,0.3633308;0.2795256;-0.03195838,0.6350998;0.3041865;-0.09467585,-0.1230158;0.3601547;0.003027016,-0.1933556;0.08969662;0.02048346,-0.2084076;-0.1887095;-0.005274368,0.07201415;0.009262089;-0.03358832,0.09551135;-0.3686498;-0.001487318,0.1042639;-0.7107543;0.07191512,0.1148651;-0.7585164;0.009941928,-0.06904181;-0.001979923;-0.04036468,-0.0894153;-0.3803111;-0.01120307,-0.09788432;-0.7226075;0.06133305,-0.08134064;-0.7676336;-0.002677843,-0.01235408;0.3987035;0.02887235,0;0;0,-0.002469168;0.1994781;0.01422601,-0.005491463;0.4993159;0.02162303,0.1067103;0.3772714;-0.01740977,0.3368373;0.2181153;-0.02794084,0.5980158;0.2777732;-0.1093455,-0.1196377;0.3685388;0.007815273,-0.2014433;0.1064124;0.06256547,-0.243777;-0.1678024;0.1001701,0.06681713;0.006553825;-0.04350308,0.1034927;-0.3664015;0.0194193,0.108145;-0.7071904;0.09905155,0.1130552;-0.7560347;0.03773703,-0.07439035;-0.0005716583;-0.02942361,-0.0824439;-0.3775179;0.01797578,-0.0983604;-0.717639;0.09899613,-0.1058612;-0.7058343;0.0009519011,-0.0045094;0.3993211;0.0218839,51.05296
+0;0;0,-0.007296161;0.1990794;0.0177242,-0.01576869;0.4986477;0.02990155,0.1028084;0.3764246;0.007262515,0.3640968;0.2811075;-0.02503287,0.6362136;0.3049662;-0.08654065,-0.1237316;0.3601622;0.002637068,-0.1938309;0.08963376;0.01997102,-0.2090527;-0.1887507;-0.005921172,0.07204437;0.009324158;-0.03350624,0.09504434;-0.368633;-0.001578845,0.1036664;-0.7107731;0.07167313,0.1142959;-0.758399;0.009534262,-0.06885413;-0.001988341;-0.04068359,-0.09017838;-0.3802614;-0.01144668,-0.09861901;-0.7225566;0.06109817,-0.08187244;-0.7676619;-0.002766974,-0.01312995;0.3986889;0.0287706,0;0;0,-0.002469168;0.1994781;0.01422601,-0.005491463;0.4993159;0.02162303,0.1067103;0.3772714;-0.01740977,0.3368373;0.2181153;-0.02794084,0.5980158;0.2777732;-0.1093455,-0.1196377;0.3685388;0.007815273,-0.2014433;0.1064124;0.06256547,-0.243777;-0.1678024;0.1001701,0.06681713;0.006553825;-0.04350308,0.1034927;-0.3664015;0.0194193,0.108145;-0.7071904;0.09905155,0.1130552;-0.7560347;0.03773703,-0.07439035;-0.0005716583;-0.02942361,-0.0824439;-0.3775179;0.01797578,-0.0983604;-0.717639;0.09899613,-0.1058612;-0.7058343;0.0009519011,-0.0045094;0.3993211;0.0218839,51.07184
+0;0;0,-0.007296161;0.1990794;0.0177242,-0.01576869;0.4986477;0.02990155,0.1028084;0.3764246;0.007262515,0.3640968;0.2811075;-0.02503287,0.6362136;0.3049662;-0.08654065,-0.1237316;0.3601622;0.002637068,-0.1938309;0.08963376;0.01997102,-0.2090527;-0.1887507;-0.005921172,0.07204437;0.009324158;-0.03350624,0.09504434;-0.368633;-0.001578845,0.1036664;-0.7107731;0.07167313,0.1142959;-0.758399;0.009534262,-0.06885413;-0.001988341;-0.04068359,-0.09017838;-0.3802614;-0.01144668,-0.09861901;-0.7225566;0.06109817,-0.08187244;-0.7676619;-0.002766974,-0.01312995;0.3986889;0.0287706,0;0;0,-0.002687437;0.1994731;0.01425737,-0.006209083;0.4993058;0.02164897,0.1068756;0.3766468;-0.01509024,0.3371818;0.2174802;-0.02009549,0.6001776;0.2737558;-0.09798149,-0.1200961;0.3683787;0.007849795,-0.2017131;0.106235;0.06279851,-0.2464412;-0.167586;0.100501,0.06689782;0.006633252;-0.04336682,0.1031923;-0.3663534;0.01959093,0.1077745;-0.7071267;0.09929366,0.112708;-0.7560596;0.03809512,-0.07431025;-0.0006827499;-0.02962298,-0.08238111;-0.3775844;0.018126,-0.09856652;-0.717652;0.09931757,-0.1052949;-0.7058378;0.001215547,-0.005006896;0.3993134;0.02190348,51.08292
+0;0;0,-0.007296161;0.1990794;0.0177242,-0.01576869;0.4986477;0.02990155,0.1028084;0.3764246;0.007262515,0.3640968;0.2811075;-0.02503287,0.6362136;0.3049662;-0.08654065,-0.1237316;0.3601622;0.002637068,-0.1938309;0.08963376;0.01997102,-0.2090527;-0.1887507;-0.005921172,0.07204437;0.009324158;-0.03350624,0.09504434;-0.368633;-0.001578845,0.1036664;-0.7107731;0.07167313,0.1142959;-0.758399;0.009534262,-0.06885413;-0.001988341;-0.04068359,-0.09017838;-0.3802614;-0.01144668,-0.09861901;-0.7225566;0.06109817,-0.08187244;-0.7676619;-0.002766974,-0.01312995;0.3986889;0.0287706,0;0;0,-0.002687437;0.1994731;0.01425737,-0.006209083;0.4993058;0.02164897,0.1068756;0.3766468;-0.01509024,0.3371818;0.2174802;-0.02009549,0.6001776;0.2737558;-0.09798149,-0.1200961;0.3683787;0.007849795,-0.2017131;0.106235;0.06279851,-0.2464412;-0.167586;0.100501,0.06689782;0.006633252;-0.04336682,0.1031923;-0.3663534;0.01959093,0.1077745;-0.7071267;0.09929366,0.112708;-0.7560596;0.03809512,-0.07431025;-0.0006827499;-0.02962298,-0.08238111;-0.3775844;0.018126,-0.09856652;-0.717652;0.09931757,-0.1052949;-0.7058378;0.001215547,-0.005006896;0.3993134;0.02190348,51.09441
+0;0;0,-0.007468272;0.1990783;0.01766548,-0.01692971;0.4986081;0.03011703,0.1022837;0.3765713;0.008241788,0.3631752;0.2790238;-0.02039535,0.6363727;0.3007892;-0.0777489,-0.1242831;0.3600106;0.002178356,-0.1942585;0.08944926;0.01950007,-0.2093588;-0.1889008;-0.006829144,0.07213889;0.009307472;-0.03330692,0.09508608;-0.3686849;-0.001760181,0.1039389;-0.7108591;0.07130492,0.1144768;-0.7583935;0.009036444,-0.06874978;-0.001973764;-0.0408604,-0.089811;-0.3802592;-0.01159331,-0.09855368;-0.722562;0.06087984,-0.08219686;-0.768169;-0.002492413,-0.01385226;0.3986636;0.02884212,0;0;0,-0.003135438;0.1994608;0.014338,-0.007605377;0.4992831;0.02163983,0.1058918;0.3773828;-0.01547717,0.3359303;0.2177581;-0.01397118,0.6005351;0.2770206;-0.08377273,-0.1207493;0.3672961;0.007436366,-0.1923023;0.1013006;0.05770119,-0.2480344;-0.169618;0.1012563,0.06703085;0.00674192;-0.04314407,0.1030707;-0.3662635;0.01984852,0.1073021;-0.7070041;0.09971103,0.1120832;-0.7557025;0.03819923,-0.07408156;-0.0008372107;-0.03018643,-0.08283818;-0.3776416;0.01820483,-0.09883496;-0.7176636;0.09962463,-0.1056579;-0.7058578;0.001530692,-0.006005582;0.3992963;0.02192299,51.11649
+0;0;0,-0.007468272;0.1990783;0.01766548,-0.01692971;0.4986081;0.03011703,0.1022837;0.3765713;0.008241788,0.3631752;0.2790238;-0.02039535,0.6363727;0.3007892;-0.0777489,-0.1242831;0.3600106;0.002178356,-0.1942585;0.08944926;0.01950007,-0.2093588;-0.1889008;-0.006829144,0.07213889;0.009307472;-0.03330692,0.09508608;-0.3686849;-0.001760181,0.1039389;-0.7108591;0.07130492,0.1144768;-0.7583935;0.009036444,-0.06874978;-0.001973764;-0.0408604,-0.089811;-0.3802592;-0.01159331,-0.09855368;-0.722562;0.06087984,-0.08219686;-0.768169;-0.002492413,-0.01385226;0.3986636;0.02884212,0;0;0,-0.003135438;0.1994608;0.014338,-0.007605377;0.4992831;0.02163983,0.1058918;0.3773828;-0.01547717,0.3359303;0.2177581;-0.01397118,0.6005351;0.2770206;-0.08377273,-0.1207493;0.3672961;0.007436366,-0.1923023;0.1013006;0.05770119,-0.2480344;-0.169618;0.1012563,0.06703085;0.00674192;-0.04314407,0.1030707;-0.3662635;0.01984852,0.1073021;-0.7070041;0.09971103,0.1120832;-0.7557025;0.03819923,-0.07408156;-0.0008372107;-0.03018643,-0.08283818;-0.3776416;0.01820483,-0.09883496;-0.7176636;0.09962463,-0.1056579;-0.7058578;0.001530692,-0.006005582;0.3992963;0.02192299,51.1277
+0;0;0,-0.007468272;0.1990783;0.01766548,-0.01692971;0.4986081;0.03011703,0.1022837;0.3765713;0.008241788,0.3631752;0.2790238;-0.02039535,0.6363727;0.3007892;-0.0777489,-0.1242831;0.3600106;0.002178356,-0.1942585;0.08944926;0.01950007,-0.2093588;-0.1889008;-0.006829144,0.07213889;0.009307472;-0.03330692,0.09508608;-0.3686849;-0.001760181,0.1039389;-0.7108591;0.07130492,0.1144768;-0.7583935;0.009036444,-0.06874978;-0.001973764;-0.0408604,-0.089811;-0.3802592;-0.01159331,-0.09855368;-0.722562;0.06087984,-0.08219686;-0.768169;-0.002492413,-0.01385226;0.3986636;0.02884212,0;0;0,-0.003135438;0.1994608;0.014338,-0.007605377;0.4992831;0.02163983,0.1058918;0.3773828;-0.01547717,0.3359303;0.2177581;-0.01397118,0.6005351;0.2770206;-0.08377273,-0.1207493;0.3672961;0.007436366,-0.1923023;0.1013006;0.05770119,-0.2480344;-0.169618;0.1012563,0.06703085;0.00674192;-0.04314407,0.1030707;-0.3662635;0.01984852,0.1073021;-0.7070041;0.09971103,0.1120832;-0.7557025;0.03819923,-0.07408156;-0.0008372107;-0.03018643,-0.08283818;-0.3776416;0.01820483,-0.09883496;-0.7176636;0.09962463,-0.1056579;-0.7058578;0.001530692,-0.006005582;0.3992963;0.02192299,51.1389
+0;0;0,-0.006833926;0.1991286;0.01735196,-0.01386392;0.4987786;0.02834618,0.1043703;0.3759915;0.008002087,0.3651882;0.2775448;-0.01811914,0.63936;0.2976084;-0.07129136,-0.1225283;0.3604183;0.00185273,-0.1922489;0.08980051;0.01931858,-0.2070697;-0.1884824;-0.007865384,0.07232501;0.009074169;-0.03296594,0.09494055;-0.3689282;-0.001300439,0.1035989;-0.71121;0.07128237,0.1144595;-0.7585841;0.00887005,-0.06868109;-0.001877515;-0.04098028,-0.08975349;-0.380161;-0.01169622,-0.0984932;-0.7224711;0.06074304,-0.08189563;-0.7678661;-0.00281895,-0.01179443;0.3988026;0.02763369,0;0;0,-0.003210564;0.1994444;0.01454757,-0.007530136;0.4992551;0.02252735,0.1061779;0.37705;-0.01376281,0.3364535;0.217828;-0.009125307,0.6030657;0.2730365;-0.0744703,-0.1209993;0.3682544;0.007622723,-0.1960104;0.1029569;0.05651604,-0.2554659;-0.1672281;0.09970258,0.06717535;0.006788707;-0.04291137,0.1025956;-0.3662999;0.0199399,0.1067483;-0.7070338;0.09983491,0.1116452;-0.7558684;0.0385069,-0.07398952;-0.0008554037;-0.03041084,-0.08296549;-0.3776098;0.01832941,-0.09921334;-0.7176041;0.09981469,-0.1056742;-0.7057691;0.001690842,-0.006034173;0.3992663;0.02249856,51.16112
+0;0;0,-0.006833926;0.1991286;0.01735196,-0.01386392;0.4987786;0.02834618,0.1043703;0.3759915;0.008002087,0.3651882;0.2775448;-0.01811914,0.63936;0.2976084;-0.07129136,-0.1225283;0.3604183;0.00185273,-0.1922489;0.08980051;0.01931858,-0.2070697;-0.1884824;-0.007865384,0.07232501;0.009074169;-0.03296594,0.09494055;-0.3689282;-0.001300439,0.1035989;-0.71121;0.07128237,0.1144595;-0.7585841;0.00887005,-0.06868109;-0.001877515;-0.04098028,-0.08975349;-0.380161;-0.01169622,-0.0984932;-0.7224711;0.06074304,-0.08189563;-0.7678661;-0.00281895,-0.01179443;0.3988026;0.02763369,0;0;0,-0.003210564;0.1994444;0.01454757,-0.007530136;0.4992551;0.02252735,0.1061779;0.37705;-0.01376281,0.3364535;0.217828;-0.009125307,0.6030657;0.2730365;-0.0744703,-0.1209993;0.3682544;0.007622723,-0.1960104;0.1029569;0.05651604,-0.2554659;-0.1672281;0.09970258,0.06717535;0.006788707;-0.04291137,0.1025956;-0.3662999;0.0199399,0.1067483;-0.7070338;0.09983491,0.1116452;-0.7558684;0.0385069,-0.07398952;-0.0008554037;-0.03041084,-0.08296549;-0.3776098;0.01832941,-0.09921334;-0.7176041;0.09981469,-0.1056742;-0.7057691;0.001690842,-0.006034173;0.3992663;0.02249856,51.17241
+0;0;0,-0.006833926;0.1991286;0.01735196,-0.01386392;0.4987786;0.02834618,0.1043703;0.3759915;0.008002087,0.3651882;0.2775448;-0.01811914,0.63936;0.2976084;-0.07129136,-0.1225283;0.3604183;0.00185273,-0.1922489;0.08980051;0.01931858,-0.2070697;-0.1884824;-0.007865384,0.07232501;0.009074169;-0.03296594,0.09494055;-0.3689282;-0.001300439,0.1035989;-0.71121;0.07128237,0.1144595;-0.7585841;0.00887005,-0.06868109;-0.001877515;-0.04098028,-0.08975349;-0.380161;-0.01169622,-0.0984932;-0.7224711;0.06074304,-0.08189563;-0.7678661;-0.00281895,-0.01179443;0.3988026;0.02763369,0;0;0,-0.003480408;0.1994413;0.01452804,-0.008310147;0.4992493;0.02227254,0.1060565;0.3774288;-0.01274678,0.3359817;0.2179617;-0.00251577,0.6039462;0.2700347;-0.06483278,-0.1212891;0.3675756;0.006782209,-0.1958501;0.1023751;0.05687615,-0.2577531;-0.1672933;0.09985249,0.06741429;0.006903456;-0.04251653,0.1022285;-0.366275;0.02013925,0.1063253;-0.7070176;0.09999995,0.1114097;-0.7559514;0.03881491,-0.07378142;-0.000927327;-0.03091021,-0.0835388;-0.3775818;0.01844795,-0.09951505;-0.7175521;0.1000872,-0.105369;-0.7057149;0.001924887,-0.006600206;0.399264;0.0223486,51.19463
+0;0;0,-0.007047702;0.1991252;0.0173055,-0.01548803;0.498721;0.02890711,0.1034406;0.3762023;0.008043645,0.3639283;0.2757212;-0.01316207,0.6391215;0.2944232;-0.06131741,-0.1233404;0.3603529;0.001591794,-0.1928012;0.08965299;0.01881815,-0.207874;-0.1885793;-0.008743456,0.07246171;0.009058469;-0.03266871,0.09469341;-0.3690112;-0.001538742,0.1034811;-0.7113168;0.07091583,0.1155734;-0.7589864;0.009099923,-0.06858968;-0.001843966;-0.0411346,-0.08973686;-0.3801237;-0.01185642,-0.09846222;-0.7224379;0.06056526,-0.08164098;-0.7673299;-0.003530242,-0.01273686;0.3987641;0.02788705,0;0;0,-0.003480408;0.1994413;0.01452804,-0.008310147;0.4992493;0.02227254,0.1060565;0.3774288;-0.01274678,0.3359817;0.2179617;-0.00251577,0.6039462;0.2700347;-0.06483278,-0.1212891;0.3675756;0.006782209,-0.1958501;0.1023751;0.05687615,-0.2577531;-0.1672933;0.09985249,0.06741429;0.006903456;-0.04251653,0.1022285;-0.366275;0.02013925,0.1063253;-0.7070176;0.09999995,0.1114097;-0.7559514;0.03881491,-0.07378142;-0.000927327;-0.03091021,-0.0835388;-0.3775818;0.01844795,-0.09951505;-0.7175521;0.1000872,-0.105369;-0.7057149;0.001924887,-0.006600206;0.399264;0.0223486,51.2061
+0;0;0,-0.007047702;0.1991252;0.0173055,-0.01548803;0.498721;0.02890711,0.1034406;0.3762023;0.008043645,0.3639283;0.2757212;-0.01316207,0.6391215;0.2944232;-0.06131741,-0.1233404;0.3603529;0.001591794,-0.1928012;0.08965299;0.01881815,-0.207874;-0.1885793;-0.008743456,0.07246171;0.009058469;-0.03266871,0.09469341;-0.3690112;-0.001538742,0.1034811;-0.7113168;0.07091583,0.1155734;-0.7589864;0.009099923,-0.06858968;-0.001843966;-0.0411346,-0.08973686;-0.3801237;-0.01185642,-0.09846222;-0.7224379;0.06056526,-0.08164098;-0.7673299;-0.003530242,-0.01273686;0.3987641;0.02788705,0;0;0,-0.003735938;0.1994444;0.0144216,-0.009189704;0.499252;0.02169744,0.1058322;0.3776584;-0.01195333,0.3354103;0.2179807;0.0020804,0.6044768;0.2670675;-0.05786716,-0.121787;0.3673668;0.005899297,-0.1957842;0.1021442;0.05670636,-0.2595575;-0.1672784;0.09847288,0.06756;0.006891637;-0.04228654,0.1022046;-0.366239;0.02074713,0.105979;-0.7071462;0.09991816,0.1106345;-0.7558742;0.03843453,-0.0736972;-0.0008958267;-0.03111143,-0.08343884;-0.3774872;0.01872838,-0.09958165;-0.7174194;0.1004936,-0.1048977;-0.7055844;0.002301052,-0.007227073;0.3992716;0.02196529,51.21704
+0;0;0,-0.007047702;0.1991252;0.0173055,-0.01548803;0.498721;0.02890711,0.1034406;0.3762023;0.008043645,0.3639283;0.2757212;-0.01316207,0.6391215;0.2944232;-0.06131741,-0.1233404;0.3603529;0.001591794,-0.1928012;0.08965299;0.01881815,-0.207874;-0.1885793;-0.008743456,0.07246171;0.009058469;-0.03266871,0.09469341;-0.3690112;-0.001538742,0.1034811;-0.7113168;0.07091583,0.1155734;-0.7589864;0.009099923,-0.06858968;-0.001843966;-0.0411346,-0.08973686;-0.3801237;-0.01185642,-0.09846222;-0.7224379;0.06056526,-0.08164098;-0.7673299;-0.003530242,-0.01273686;0.3987641;0.02788705,0;0;0,-0.003735938;0.1994444;0.0144216,-0.009189704;0.499252;0.02169744,0.1058322;0.3776584;-0.01195333,0.3354103;0.2179807;0.0020804,0.6044768;0.2670675;-0.05786716,-0.121787;0.3673668;0.005899297,-0.1957842;0.1021442;0.05670636,-0.2595575;-0.1672784;0.09847288,0.06756;0.006891637;-0.04228654,0.1022046;-0.366239;0.02074713,0.105979;-0.7071462;0.09991816,0.1106345;-0.7558742;0.03843453,-0.0736972;-0.0008958267;-0.03111143,-0.08343884;-0.3774872;0.01872838,-0.09958165;-0.7174194;0.1004936,-0.1048977;-0.7055844;0.002301052,-0.007227073;0.3992716;0.02196529,51.23928
+0;0;0,-0.007251788;0.199132;0.01714269,-0.01654095;0.4986998;0.02883554,0.1027864;0.3762932;0.007960808,0.3629316;0.2739124;-0.00761643,0.6384163;0.2921871;-0.05424536,-0.1239159;0.3602505;0.001174856,-0.1931771;0.08950487;0.01848698,-0.2078096;-0.1886735;-0.009844787,0.07256274;0.009158272;-0.03241565,0.09449091;-0.3688937;-0.0008585453,0.103015;-0.7112432;0.07141974,0.1036747;-0.6985055;-0.02707686,-0.06849298;-0.001846019;-0.04129533,-0.08962519;-0.3801188;-0.01191615,-0.09848106;-0.7224555;0.06038257,-0.0814636;-0.7670894;-0.003961824,-0.01341637;0.3987543;0.02777004,0;0;0,-0.003892167;0.1994464;0.01435214,-0.009447659;0.4992524;0.02161458,0.1062075;0.3779481;-0.01014064,0.3337339;0.2159486;0.009554883,0.6042197;0.2617835;-0.04645077,-0.1219926;0.3673287;0.005733749,-0.1954593;0.1019111;0.05629224,-0.2601485;-0.1674506;0.0970301,0.06783719;0.00691752;-0.04183616,0.1019161;-0.3663206;0.02086942,0.105623;-0.7072445;0.09997118,0.1102984;-0.7554469;0.03782181,-0.07362258;-0.0009000803;-0.03128744,-0.08386477;-0.3774745;0.0185806,-0.09974352;-0.7173864;0.1004815,-0.1043748;-0.7055452;0.002253152,-0.007456087;0.3992726;0.02188811,51.26159
+0;0;0,-0.007251788;0.199132;0.01714269,-0.01654095;0.4986998;0.02883554,0.1027864;0.3762932;0.007960808,0.3629316;0.2739124;-0.00761643,0.6384163;0.2921871;-0.05424536,-0.1239159;0.3602505;0.001174856,-0.1931771;0.08950487;0.01848698,-0.2078096;-0.1886735;-0.009844787,0.07256274;0.009158272;-0.03241565,0.09449091;-0.3688937;-0.0008585453,0.103015;-0.7112432;0.07141974,0.1036747;-0.6985055;-0.02707686,-0.06849298;-0.001846019;-0.04129533,-0.08962519;-0.3801188;-0.01191615,-0.09848106;-0.7224555;0.06038257,-0.0814636;-0.7670894;-0.003961824,-0.01341637;0.3987543;0.02777004,0;0;0,-0.003892167;0.1994464;0.01435214,-0.009447659;0.4992524;0.02161458,0.1062075;0.3779481;-0.01014064,0.3337339;0.2159486;0.009554883,0.6042197;0.2617835;-0.04645077,-0.1219926;0.3673287;0.005733749,-0.1954593;0.1019111;0.05629224,-0.2601485;-0.1674506;0.0970301,0.06783719;0.00691752;-0.04183616,0.1019161;-0.3663206;0.02086942,0.105623;-0.7072445;0.09997118,0.1102984;-0.7554469;0.03782181,-0.07362258;-0.0009000803;-0.03128744,-0.08386477;-0.3774745;0.0185806,-0.09974352;-0.7173864;0.1004815,-0.1043748;-0.7055452;0.002253152,-0.007456087;0.3992726;0.02188811,51.2729
+0;0;0,-0.007251788;0.199132;0.01714269,-0.01654095;0.4986998;0.02883554,0.1027864;0.3762932;0.007960808,0.3629316;0.2739124;-0.00761643,0.6384163;0.2921871;-0.05424536,-0.1239159;0.3602505;0.001174856,-0.1931771;0.08950487;0.01848698,-0.2078096;-0.1886735;-0.009844787,0.07256274;0.009158272;-0.03241565,0.09449091;-0.3688937;-0.0008585453,0.103015;-0.7112432;0.07141974,0.1036747;-0.6985055;-0.02707686,-0.06849298;-0.001846019;-0.04129533,-0.08962519;-0.3801188;-0.01191615,-0.09848106;-0.7224555;0.06038257,-0.0814636;-0.7670894;-0.003961824,-0.01341637;0.3987543;0.02777004,0;0;0,-0.004065991;0.1994506;0.01424514,-0.009756735;0.4992551;0.02147081,0.1061961;0.377769;-0.009161141,0.3326833;0.2147639;0.01392213,0.6050831;0.2548933;-0.03694997,-0.1222299;0.3672686;0.005384184,-0.1958273;0.1017273;0.05509574,-0.2610965;-0.1675895;0.0952002,0.06805759;0.006998115;-0.04146313,0.1015221;-0.3663136;0.02113451,0.1053386;-0.7073212;0.09986986,0.1095812;-0.7549766;0.03700767,-0.07354701;-0.0009545913;-0.03146308,-0.08410747;-0.3775353;0.01829102,-0.0998162;-0.7174228;0.1003257,-0.09251033;-0.7654716;0.03823692,-0.007741466;0.3992758;0.02175317,51.29516
+0;0;0,-0.007366219;0.1991388;0.01701448,-0.01693015;0.4986979;0.02871725,0.1026388;0.3763864;0.008544546,0.3624918;0.272938;-0.004676919,0.6385188;0.2902847;-0.04835989,-0.1241589;0.3602604;0.0008565225,-0.1930889;0.08941925;0.01799494,-0.2079677;-0.1887718;-0.01008299,0.07270167;0.009237105;-0.03208026,0.09453105;-0.3688806;-0.001250785,0.1031075;-0.7112836;0.07076748,0.1040231;-0.6985557;-0.02772535,-0.06838738;-0.001829744;-0.04147069,-0.08912759;-0.3801134;-0.01195257,-0.09873023;-0.7224703;0.06015535,-0.08100183;-0.7670303;-0.004082568,-0.01370144;0.3987559;0.02763807,0;0;0,-0.004102394;0.1994559;0.01416073,-0.00982167;0.4992612;0.02133599,0.1057943;0.377993;-0.01060482,0.3311975;0.214384;0.01812652,0.6051124;0.2510222;-0.02690933,-0.1222299;0.3672151;0.004858237,-0.1957394;0.1014563;0.05352654,-0.2617937;-0.1679012;0.09204052,0.06828551;0.007066705;-0.04107494,0.1014755;-0.3662557;0.0216055,0.1056153;-0.7073078;0.1001313,0.1094909;-0.756088;0.03866041,-0.0734583;-0.0009948573;-0.03166841,-0.0844394;-0.3776267;0.01760507,-0.1000085;-0.7174584;0.09989747,-0.09219526;-0.7656288;0.0380239,-0.007816879;0.3992817;0.02163334,51.31742
+0;0;0,-0.007366219;0.1991388;0.01701448,-0.01693015;0.4986979;0.02871725,0.1026388;0.3763864;0.008544546,0.3624918;0.272938;-0.004676919,0.6385188;0.2902847;-0.04835989,-0.1241589;0.3602604;0.0008565225,-0.1930889;0.08941925;0.01799494,-0.2079677;-0.1887718;-0.01008299,0.07270167;0.009237105;-0.03208026,0.09453105;-0.3688806;-0.001250785,0.1031075;-0.7112836;0.07076748,0.1040231;-0.6985557;-0.02772535,-0.06838738;-0.001829744;-0.04147069,-0.08912759;-0.3801134;-0.01195257,-0.09873023;-0.7224703;0.06015535,-0.08100183;-0.7670303;-0.004082568,-0.01370144;0.3987559;0.02763807,0;0;0,-0.004102394;0.1994559;0.01416073,-0.00982167;0.4992612;0.02133599,0.1057943;0.377993;-0.01060482,0.3311975;0.214384;0.01812652,0.6051124;0.2510222;-0.02690933,-0.1222299;0.3672151;0.004858237,-0.1957394;0.1014563;0.05352654,-0.2617937;-0.1679012;0.09204052,0.06828551;0.007066705;-0.04107494,0.1014755;-0.3662557;0.0216055,0.1056153;-0.7073078;0.1001313,0.1094909;-0.756088;0.03866041,-0.0734583;-0.0009948573;-0.03166841,-0.0844394;-0.3776267;0.01760507,-0.1000085;-0.7174584;0.09989747,-0.09219526;-0.7656288;0.0380239,-0.007816879;0.3992817;0.02163334,51.3287
+0;0;0,-0.007366219;0.1991388;0.01701448,-0.01693015;0.4986979;0.02871725,0.1026388;0.3763864;0.008544546,0.3624918;0.272938;-0.004676919,0.6385188;0.2902847;-0.04835989,-0.1241589;0.3602604;0.0008565225,-0.1930889;0.08941925;0.01799494,-0.2079677;-0.1887718;-0.01008299,0.07270167;0.009237105;-0.03208026,0.09453105;-0.3688806;-0.001250785,0.1031075;-0.7112836;0.07076748,0.1040231;-0.6985557;-0.02772535,-0.06838738;-0.001829744;-0.04147069,-0.08912759;-0.3801134;-0.01195257,-0.09873023;-0.7224703;0.06015535,-0.08100183;-0.7670303;-0.004082568,-0.01370144;0.3987559;0.02763807,0;0;0,-0.004110967;0.1994599;0.01410229,-0.009812888;0.4992663;0.02124779,0.1062234;0.3779428;-0.009019265,0.3296435;0.2120198;0.02185113,0.605098;0.2431062;-0.01762643,-0.1220107;0.3669862;0.003636755,-0.1956872;0.101292;0.05240525,-0.2620912;-0.1681533;0.08968418,0.06866238;0.006987295;-0.0404556,0.1015204;-0.3664566;0.02167295,0.1057276;-0.707548;0.1000247,0.1095993;-0.7561979;0.03838695,-0.07324393;-0.0007993853;-0.03216655,-0.08504366;-0.3772649;0.01817662,-0.1001008;-0.7172298;0.1000127,-0.09264964;-0.7654414;0.03814632,-0.007836842;0.3992863;0.02155397,51.35108
+0;0;0,-0.007434417;0.1991424;0.01694256,-0.0172239;0.4986933;0.0286865,0.1024417;0.3762699;0.008843517,0.3623419;0.2725984;-0.00135629,0.6386527;0.2884442;-0.04379771,-0.1242932;0.3601995;0.0004741121,-0.1931408;0.08933485;0.01757318,-0.2073601;-0.1888782;-0.01062776,0.07283397;0.009186039;-0.03179353,0.09496997;-0.3689804;-0.001790931,0.1034478;-0.7113752;0.0702779,0.1045534;-0.6986586;-0.02821099,-0.0682191;-0.001806404;-0.04174796,-0.08862069;-0.3801041;-0.01217396,-0.09842885;-0.7225044;0.0596996,-0.08077765;-0.7671183;-0.004496995,-0.01393491;0.3987536;0.02757792,0;0;0,-0.004110967;0.1994599;0.01410229,-0.009812888;0.4992663;0.02124779,0.1062234;0.3779428;-0.009019265,0.3296435;0.2120198;0.02185113,0.605098;0.2431062;-0.01762643,-0.1220107;0.3669862;0.003636755,-0.1956872;0.101292;0.05240525,-0.2620912;-0.1681533;0.08968418,0.06866238;0.006987295;-0.0404556,0.1015204;-0.3664566;0.02167295,0.1057276;-0.707548;0.1000247,0.1095993;-0.7561979;0.03838695,-0.07324393;-0.0007993853;-0.03216655,-0.08504366;-0.3772649;0.01817662,-0.1001008;-0.7172298;0.1000127,-0.09264964;-0.7654414;0.03814632,-0.007836842;0.3992863;0.02155397,51.37334
+0;0;0,-0.007434417;0.1991424;0.01694256,-0.0172239;0.4986933;0.0286865,0.1024417;0.3762699;0.008843517,0.3623419;0.2725984;-0.00135629,0.6386527;0.2884442;-0.04379771,-0.1242932;0.3601995;0.0004741121,-0.1931408;0.08933485;0.01757318,-0.2073601;-0.1888782;-0.01062776,0.07283397;0.009186039;-0.03179353,0.09496997;-0.3689804;-0.001790931,0.1034478;-0.7113752;0.0702779,0.1045534;-0.6986586;-0.02821099,-0.0682191;-0.001806404;-0.04174796,-0.08862069;-0.3801041;-0.01217396,-0.09842885;-0.7225044;0.0596996,-0.08077765;-0.7671183;-0.004496995,-0.01393491;0.3987536;0.02757792,0;0;0,-0.004128842;0.1994703;0.01394784,-0.009792619;0.4992806;0.02096527,0.1058768;0.3781498;-0.01056042,0.3271694;0.2106129;0.02633117,0.6033471;0.2372905;-0.01127457,-0.121965;0.3669443;0.00303831,-0.1957237;0.1010616;0.050641,-0.2621301;-0.1685749;0.08650705,0.0690445;0.006987853;-0.03979984,0.1013271;-0.3665886;0.021832,0.1055445;-0.7078235;0.09955548,0.1094049;-0.7567174;0.03822969,-0.07308546;-0.0008008641;-0.03252498,-0.08513404;-0.377241;0.01794915,-0.1003869;-0.7172031;0.09976068,-0.1043574;-0.7053714;0.001505151,-0.007863315;0.3992998;0.02131215,51.38451
+0;0;0,-0.007434417;0.1991424;0.01694256,-0.0172239;0.4986933;0.0286865,0.1024417;0.3762699;0.008843517,0.3623419;0.2725984;-0.00135629,0.6386527;0.2884442;-0.04379771,-0.1242932;0.3601995;0.0004741121,-0.1931408;0.08933485;0.01757318,-0.2073601;-0.1888782;-0.01062776,0.07283397;0.009186039;-0.03179353,0.09496997;-0.3689804;-0.001790931,0.1034478;-0.7113752;0.0702779,0.1045534;-0.6986586;-0.02821099,-0.0682191;-0.001806404;-0.04174796,-0.08862069;-0.3801041;-0.01217396,-0.09842885;-0.7225044;0.0596996,-0.08077765;-0.7671183;-0.004496995,-0.01393491;0.3987536;0.02757792,0;0;0,-0.004128842;0.1994703;0.01394784,-0.009792619;0.4992806;0.02096527,0.1058768;0.3781498;-0.01056042,0.3271694;0.2106129;0.02633117,0.6033471;0.2372905;-0.01127457,-0.121965;0.3669443;0.00303831,-0.1957237;0.1010616;0.050641,-0.2621301;-0.1685749;0.08650705,0.0690445;0.006987853;-0.03979984,0.1013271;-0.3665886;0.021832,0.1055445;-0.7078235;0.09955548,0.1094049;-0.7567174;0.03822969,-0.07308546;-0.0008008641;-0.03252498,-0.08513404;-0.377241;0.01794915,-0.1003869;-0.7172031;0.09976068,-0.1043574;-0.7053714;0.001505151,-0.007863315;0.3992998;0.02131215,51.40688
+0;0;0,-0.006931086;0.1991965;0.01651407,-0.01457892;0.4988593;0.02672915,0.1042182;0.3761237;0.008415999,0.3639065;0.2717366;0.000334383,0.6405999;0.2858108;-0.04019527,-0.1229347;0.3606256;0.0001342744,-0.1913973;0.08965856;0.0171563,-0.2054941;-0.1885321;-0.01132623,0.07299669;0.009178364;-0.03142038,0.09514962;-0.3690633;-0.002395367,0.1035751;-0.7114727;0.06961037,0.1048469;-0.6988057;-0.02886781,-0.06800607;-0.001725411;-0.04209746,-0.08871255;-0.3800168;-0.01265522,-0.09875008;-0.722402;0.05925893,-0.0809949;-0.7672593;-0.004624829,-0.01224206;0.3988877;0.02627142,0;0;0,-0.004012197;0.1994903;0.0136939,-0.009166414;0.4993153;0.02044917,0.1071549;0.3777018;-0.007244118,0.3269207;0.2078005;0.02791985,0.6043223;0.2254625;-0.005791202,-0.1222871;0.3690838;0.003472921,-0.1993017;0.1034772;0.0473127,-0.2652062;-0.1665311;0.08125544,0.06950468;0.006843089;-0.03901629,0.1012763;-0.3669485;0.02156752,0.1052115;-0.7082635;0.09895352,0.1092028;-0.7572438;0.03774745,-0.07276307;-0.0005381535;-0.03324524,-0.08529988;-0.376974;0.01714171,-0.1005777;-0.7169639;0.09883308,-0.1035988;-0.7051357;0.0005444363,-0.007476227;0.3993306;0.02089669,51.42935
+0;0;0,-0.006931086;0.1991965;0.01651407,-0.01457892;0.4988593;0.02672915,0.1042182;0.3761237;0.008415999,0.3639065;0.2717366;0.000334383,0.6405999;0.2858108;-0.04019527,-0.1229347;0.3606256;0.0001342744,-0.1913973;0.08965856;0.0171563,-0.2054941;-0.1885321;-0.01132623,0.07299669;0.009178364;-0.03142038,0.09514962;-0.3690633;-0.002395367,0.1035751;-0.7114727;0.06961037,0.1048469;-0.6988057;-0.02886781,-0.06800607;-0.001725411;-0.04209746,-0.08871255;-0.3800168;-0.01265522,-0.09875008;-0.722402;0.05925893,-0.0809949;-0.7672593;-0.004624829,-0.01224206;0.3988877;0.02627142,0;0;0,-0.003597662;0.1994779;0.0139864,-0.007623364;0.4993007;0.02167211,0.1082818;0.3768771;-0.005599327,0.32609;0.2045846;0.03010556,0.6040372;0.2151594;-0.002043586,-0.1206825;0.3682549;0.002414819,-0.1974863;0.1025248;0.04587401,-0.2621799;-0.167892;0.07888147,0.06973278;0.006880206;-0.03860055,0.1013375;-0.3669891;0.02159027,0.1051437;-0.7083611;0.09873077,0.1089335;-0.7572134;0.0373471,-0.07265615;-0.0005760285;-0.03347764,-0.08598132;-0.3768907;0.01760801,-0.1005982;-0.7170043;0.09890413,-0.1027065;-0.7051349;0.0005840585,-0.006391036;0.3993084;0.02173181,51.45173
+0;0;0,-0.006931086;0.1991965;0.01651407,-0.01457892;0.4988593;0.02672915,0.1042182;0.3761237;0.008415999,0.3639065;0.2717366;0.000334383,0.6405999;0.2858108;-0.04019527,-0.1229347;0.3606256;0.0001342744,-0.1913973;0.08965856;0.0171563,-0.2054941;-0.1885321;-0.01132623,0.07299669;0.009178364;-0.03142038,0.09514962;-0.3690633;-0.002395367,0.1035751;-0.7114727;0.06961037,0.1048469;-0.6988057;-0.02886781,-0.06800607;-0.001725411;-0.04209746,-0.08871255;-0.3800168;-0.01265522,-0.09875008;-0.722402;0.05925893,-0.0809949;-0.7672593;-0.004624829,-0.01224206;0.3988877;0.02627142,0;0;0,-0.003597662;0.1994779;0.0139864,-0.007623364;0.4993007;0.02167211,0.1082818;0.3768771;-0.005599327,0.32609;0.2045846;0.03010556,0.6040372;0.2151594;-0.002043586,-0.1206825;0.3682549;0.002414819,-0.1974863;0.1025248;0.04587401,-0.2621799;-0.167892;0.07888147,0.06973278;0.006880206;-0.03860055,0.1013375;-0.3669891;0.02159027,0.1051437;-0.7083611;0.09873077,0.1089335;-0.7572134;0.0373471,-0.07265615;-0.0005760285;-0.03347764,-0.08598132;-0.3768907;0.01760801,-0.1005982;-0.7170043;0.09890413,-0.1027065;-0.7051349;0.0005840585,-0.006391036;0.3993084;0.02173181,51.46326
+0;0;0,-0.007117242;0.1992041;0.01634258,-0.01552823;0.4988431;0.02672094,0.1037247;0.376181;0.008799616,0.3631805;0.2711081;0.002290966,0.640268;0.2833836;-0.03607392,-0.1234712;0.3607874;-0.0003994629,-0.1916701;0.08973056;0.01624705,-0.20614;-0.1884887;-0.011765,0.07308072;0.009115651;-0.03124282,0.09506409;-0.3691902;-0.002933351,0.1034681;-0.7115915;0.06911319,0.1152288;-0.759499;0.00753298,-0.06788754;-0.00167587;-0.04229034,-0.08854571;-0.3799926;-0.01314162,-0.09871791;-0.7223657;0.05881101,-0.08096258;-0.7672818;-0.005003877,-0.01282208;0.3988813;0.02616434,0;0;0,-0.003539604;0.1994876;0.01386322,-0.007391539;0.4993172;0.02132669,0.1085803;0.3769124;-0.005265625,0.3241856;0.2021053;0.03156931,0.6025009;0.1978071;0.001203071,-0.120799;0.3689831;0.002671612,-0.1993302;0.1033101;0.04330062,-0.263046;-0.1676406;0.07373148,0.07001473;0.006832798;-0.03809527,0.1013872;-0.3671752;0.02135033,0.1049934;-0.7085495;0.09849001,0.1090602;-0.7570341;0.0366544,-0.07250097;-0.0004966416;-0.03381364,-0.08629108;-0.3766512;0.01831687,-0.1006184;-0.7169043;0.09907904,-0.1027211;-0.7050433;0.0007603765,-0.006232785;0.3993241;0.0214866,51.48566
+0;0;0,-0.007117242;0.1992041;0.01634258,-0.01552823;0.4988431;0.02672094,0.1037247;0.376181;0.008799616,0.3631805;0.2711081;0.002290966,0.640268;0.2833836;-0.03607392,-0.1234712;0.3607874;-0.0003994629,-0.1916701;0.08973056;0.01624705,-0.20614;-0.1884887;-0.011765,0.07308072;0.009115651;-0.03124282,0.09506409;-0.3691902;-0.002933351,0.1034681;-0.7115915;0.06911319,0.1152288;-0.759499;0.00753298,-0.06788754;-0.00167587;-0.04229034,-0.08854571;-0.3799926;-0.01314162,-0.09871791;-0.7223657;0.05881101,-0.08096258;-0.7672818;-0.005003877,-0.01282208;0.3988813;0.02616434,0;0;0,-0.003539604;0.1994876;0.01386322,-0.007391539;0.4993172;0.02132669,0.1085803;0.3769124;-0.005265625,0.3241856;0.2021053;0.03156931,0.6025009;0.1978071;0.001203071,-0.120799;0.3689831;0.002671612,-0.1993302;0.1033101;0.04330062,-0.263046;-0.1676406;0.07373148,0.07001473;0.006832798;-0.03809527,0.1013872;-0.3671752;0.02135033,0.1049934;-0.7085495;0.09849001,0.1090602;-0.7570341;0.0366544,-0.07250097;-0.0004966416;-0.03381364,-0.08629108;-0.3766512;0.01831687,-0.1006184;-0.7169043;0.09907904,-0.1027211;-0.7050433;0.0007603765,-0.006232785;0.3993241;0.0214866,51.49696
+0;0;0,-0.007117242;0.1992041;0.01634258,-0.01552823;0.4988431;0.02672094,0.1037247;0.376181;0.008799616,0.3631805;0.2711081;0.002290966,0.640268;0.2833836;-0.03607392,-0.1234712;0.3607874;-0.0003994629,-0.1916701;0.08973056;0.01624705,-0.20614;-0.1884887;-0.011765,0.07308072;0.009115651;-0.03124282,0.09506409;-0.3691902;-0.002933351,0.1034681;-0.7115915;0.06911319,0.1152288;-0.759499;0.00753298,-0.06788754;-0.00167587;-0.04229034,-0.08854571;-0.3799926;-0.01314162,-0.09871791;-0.7223657;0.05881101,-0.08096258;-0.7672818;-0.005003877,-0.01282208;0.3988813;0.02616434,0;0;0,-0.002990418;0.1995;0.01381379,-0.005757498;0.4993467;0.02102756,0.1097918;0.3766654;-0.005358204,0.3232438;0.1994804;0.03263839,0.6013914;0.1850114;0.003923114,-0.1195512;0.3694747;0.001716314,-0.1978567;0.1037752;0.04260699,-0.2610571;-0.1676128;0.070071,0.07033222;0.006582582;-0.03755061,0.1010485;-0.3675871;0.02121623,0.1047736;-0.7090055;0.09815517,0.1088679;-0.7574428;0.03626153,-0.07231443;-0.0003449339;-0.03421262,-0.08646505;-0.3766258;0.01689988,-0.1006871;-0.7166681;0.09856339,-0.1023749;-0.7048134;0.000237897,-0.004990584;0.39935;0.02129516,51.5192
+0;0;0,-0.006756421;0.1992477;0.01595894,-0.01366691;0.4989534;0.02534599,0.1050253;0.3762411;0.008546859,0.3637847;0.2693318;0.004813196,0.6410941;0.2802784;-0.03233136,-0.1224651;0.3610327;-0.0007357001,-0.1901305;0.08983919;0.01586249,-0.2049697;-0.1883591;-0.01216397,0.07311401;0.00918811;-0.03114354,0.09527843;-0.3691202;-0.003009632,0.1036891;-0.7116131;0.06859961,0.1053468;-0.6989861;-0.02986579,-0.06771237;-0.00170839;-0.04256897,-0.08811489;-0.3800282;-0.01327953,-0.09802868;-0.7224815;0.05832659,-0.08060488;-0.7672358;-0.005768694,-0.01161743;0.3989745;0.02521045,0;0;0,-0.002990418;0.1995;0.01381379,-0.005757498;0.4993467;0.02102756,0.1097918;0.3766654;-0.005358204,0.3232438;0.1994804;0.03263839,0.6013914;0.1850114;0.003923114,-0.1195512;0.3694747;0.001716314,-0.1978567;0.1037752;0.04260699,-0.2610571;-0.1676128;0.070071,0.07033222;0.006582582;-0.03755061,0.1010485;-0.3675871;0.02121623,0.1047736;-0.7090055;0.09815517,0.1088679;-0.7574428;0.03626153,-0.07231443;-0.0003449339;-0.03421262,-0.08646505;-0.3766258;0.01689988,-0.1006871;-0.7166681;0.09856339,-0.1023749;-0.7048134;0.000237897,-0.004990584;0.39935;0.02129516,51.53055
+0;0;0,-0.006756421;0.1992477;0.01595894,-0.01366691;0.4989534;0.02534599,0.1050253;0.3762411;0.008546859,0.3637847;0.2693318;0.004813196,0.6410941;0.2802784;-0.03233136,-0.1224651;0.3610327;-0.0007357001,-0.1901305;0.08983919;0.01586249,-0.2049697;-0.1883591;-0.01216397,0.07311401;0.00918811;-0.03114354,0.09527843;-0.3691202;-0.003009632,0.1036891;-0.7116131;0.06859961,0.1053468;-0.6989861;-0.02986579,-0.06771237;-0.00170839;-0.04256897,-0.08811489;-0.3800282;-0.01327953,-0.09802868;-0.7224815;0.05832659,-0.08060488;-0.7672358;-0.005768694,-0.01161743;0.3989745;0.02521045,0;0;0,-0.002990418;0.1995;0.01381379,-0.005757498;0.4993467;0.02102756,0.1097918;0.3766654;-0.005358204,0.3232438;0.1994804;0.03263839,0.6013914;0.1850114;0.003923114,-0.1195512;0.3694747;0.001716314,-0.1978567;0.1037752;0.04260699,-0.2610571;-0.1676128;0.070071,0.07033222;0.006582582;-0.03755061,0.1010485;-0.3675871;0.02121623,0.1047736;-0.7090055;0.09815517,0.1088679;-0.7574428;0.03626153,-0.07231443;-0.0003449339;-0.03421262,-0.08646505;-0.3766258;0.01689988,-0.1006871;-0.7166681;0.09856339,-0.1023749;-0.7048134;0.000237897,-0.004990584;0.39935;0.02129516,51.54171
+0;0;0,-0.006756421;0.1992477;0.01595894,-0.01366691;0.4989534;0.02534599,0.1050253;0.3762411;0.008546859,0.3637847;0.2693318;0.004813196,0.6410941;0.2802784;-0.03233136,-0.1224651;0.3610327;-0.0007357001,-0.1901305;0.08983919;0.01586249,-0.2049697;-0.1883591;-0.01216397,0.07311401;0.00918811;-0.03114354,0.09527843;-0.3691202;-0.003009632,0.1036891;-0.7116131;0.06859961,0.1053468;-0.6989861;-0.02986579,-0.06771237;-0.00170839;-0.04256897,-0.08811489;-0.3800282;-0.01327953,-0.09802868;-0.7224815;0.05832659,-0.08060488;-0.7672358;-0.005768694,-0.01161743;0.3989745;0.02521045,0;0;0,-0.002737846;0.1994962;0.01392058,-0.005291772;0.4993399;0.02135807,0.1100967;0.3759125;-0.004906805,0.3202456;0.1949417;0.03365456,0.5975453;0.1687366;0.00505062,-0.1186491;0.3685844;0.0004856531,-0.1965805;0.1028428;0.04181489,-0.2602804;-0.1685358;0.06819685,0.07051133;0.006516817;-0.03722477,0.1006448;-0.3677261;0.0213774,0.1045205;-0.7092232;0.09795906,0.1084899;-0.7580931;0.03660931,-0.07216736;-0.0003183543;-0.03452204,-0.08697879;-0.3765136;0.01703142,-0.1008603;-0.7166067;0.09854177,-0.1019846;-0.7047417;0.0002063215,-0.004584364;0.3993425;0.02153737,51.56419
+0;0;0,-0.006426168;0.1992796;0.01569537,-0.01238957;0.4990247;0.02443239,0.1060221;0.3760957;0.008675119,0.3644335;0.2683205;0.00583895,0.6418942;0.2775069;-0.0306463,-0.1216884;0.3612014;-0.0009410847,-0.1891935;0.08997393;0.01575307,-0.2039081;-0.1882146;-0.01243604,0.0731441;0.00923068;-0.03106017,0.09539491;-0.3690961;-0.003243374,0.1037466;-0.7116024;0.0683081,0.1056015;-0.6990054;-0.03014848,-0.06761728;-0.001719701;-0.04271937,-0.08801676;-0.3800414;-0.0134519,-0.09789818;-0.7225094;0.05808806,-0.080403;-0.7671974;-0.00606513,-0.01069325;0.3990391;0.02452214,0;0;0,-0.002523871;0.1995106;0.01375284,-0.004696731;0.4993637;0.0209006,0.1109918;0.3766212;-0.003909979,0.3173397;0.1911975;0.03401859,0.5930573;0.1504824;0.007147659,-0.1182272;0.3689067;-0.0001009963,-0.1962726;0.103081;0.04046448,-0.2601911;-0.1682022;0.06729544,0.07077;0.00642768;-0.03674632,0.1002792;-0.3678803;0.02175786,0.1043592;-0.709578;0.09742841,0.108704;-0.7583465;0.03597393,-0.07196202;-0.0002747476;-0.03494841,-0.08707841;-0.376511;0.01621589,-0.1007412;-0.7166154;0.09771611,-0.1013228;-0.7047505;-0.0006240308,-0.004127476;0.3993657;0.0211948,51.58613
+0;0;0,-0.006426168;0.1992796;0.01569537,-0.01238957;0.4990247;0.02443239,0.1060221;0.3760957;0.008675119,0.3644335;0.2683205;0.00583895,0.6418942;0.2775069;-0.0306463,-0.1216884;0.3612014;-0.0009410847,-0.1891935;0.08997393;0.01575307,-0.2039081;-0.1882146;-0.01243604,0.0731441;0.00923068;-0.03106017,0.09539491;-0.3690961;-0.003243374,0.1037466;-0.7116024;0.0683081,0.1056015;-0.6990054;-0.03014848,-0.06761728;-0.001719701;-0.04271937,-0.08801676;-0.3800414;-0.0134519,-0.09789818;-0.7225094;0.05808806,-0.080403;-0.7671974;-0.00606513,-0.01069325;0.3990391;0.02452214,0;0;0,-0.002523871;0.1995106;0.01375284,-0.004696731;0.4993637;0.0209006,0.1109918;0.3766212;-0.003909979,0.3173397;0.1911975;0.03401859,0.5930573;0.1504824;0.007147659,-0.1182272;0.3689067;-0.0001009963,-0.1962726;0.103081;0.04046448,-0.2601911;-0.1682022;0.06729544,0.07077;0.00642768;-0.03674632,0.1002792;-0.3678803;0.02175786,0.1043592;-0.709578;0.09742841,0.108704;-0.7583465;0.03597393,-0.07196202;-0.0002747476;-0.03494841,-0.08707841;-0.376511;0.01621589,-0.1007412;-0.7166154;0.09771611,-0.1013228;-0.7047505;-0.0006240308,-0.004127476;0.3993657;0.0211948,51.59763
+0;0;0,-0.006426168;0.1992796;0.01569537,-0.01238957;0.4990247;0.02443239,0.1060221;0.3760957;0.008675119,0.3644335;0.2683205;0.00583895,0.6418942;0.2775069;-0.0306463,-0.1216884;0.3612014;-0.0009410847,-0.1891935;0.08997393;0.01575307,-0.2039081;-0.1882146;-0.01243604,0.0731441;0.00923068;-0.03106017,0.09539491;-0.3690961;-0.003243374,0.1037466;-0.7116024;0.0683081,0.1056015;-0.6990054;-0.03014848,-0.06761728;-0.001719701;-0.04271937,-0.08801676;-0.3800414;-0.0134519,-0.09789818;-0.7225094;0.05808806,-0.080403;-0.7671974;-0.00606513,-0.01069325;0.3990391;0.02452214,0;0;0,-0.002245368;0.199516;0.01372246,-0.004083947;0.4993732;0.02078297,0.1116286;0.3768522;-0.003611481,0.3133011;0.1864075;0.03458571,0.5873949;0.1351629;0.009157248,-0.1175386;0.3690508;-0.001301363,-0.1956564;0.1033091;0.03967319,-0.2602854;-0.1678941;0.06559531,0.0709492;0.006324493;-0.0364172,0.1000473;-0.3680941;0.02158269,0.1041498;-0.709789;0.0972649,0.1088918;-0.7589364;0.03632877,-0.07179914;-0.0002096972;-0.0352823,-0.08717484;-0.3764279;0.01593731,-0.1008439;-0.716536;0.09742086,-0.1009265;-0.7046707;-0.0009210333,-0.003616889;0.3993748;0.02111092,51.6197
+0;0;0,-0.006143559;0.1993116;0.01539923,-0.01170655;0.4990739;0.023839,0.1066215;0.3761173;0.00861362,0.3643301;0.2666423;0.007381761,0.6418545;0.2743638;-0.02895772,-0.1211777;0.3612739;-0.001350721,-0.1881388;0.08989903;0.01513866,-0.2033467;-0.1882914;-0.01276827,0.07315473;0.009274319;-0.03102213,0.09574003;-0.3690719;-0.003744721,0.1042231;-0.7115505;0.06792425,0.1062355;-0.6989876;-0.0305232,-0.06750432;-0.001697241;-0.04289855,-0.087909;-0.3800359;-0.01385579,-0.09793378;-0.7225276;0.05755094,-0.08026019;-0.7671678;-0.006608956,-0.01014962;0.3990861;0.02400649,0;0;0,-0.002245368;0.199516;0.01372246,-0.004083947;0.4993732;0.02078297,0.1116286;0.3768522;-0.003611481,0.3133011;0.1864075;0.03458571,0.5873949;0.1351629;0.009157248,-0.1175386;0.3690508;-0.001301363,-0.1956564;0.1033091;0.03967319,-0.2602854;-0.1678941;0.06559531,0.0709492;0.006324493;-0.0364172,0.1000473;-0.3680941;0.02158269,0.1041498;-0.709789;0.0972649,0.1088918;-0.7589364;0.03632877,-0.07179914;-0.0002096972;-0.0352823,-0.08717484;-0.3764279;0.01593731,-0.1008439;-0.716536;0.09742086,-0.1009265;-0.7046707;-0.0009210333,-0.003616889;0.3993748;0.02111092,51.63088
+0;0;0,-0.006143559;0.1993116;0.01539923,-0.01170655;0.4990739;0.023839,0.1066215;0.3761173;0.00861362,0.3643301;0.2666423;0.007381761,0.6418545;0.2743638;-0.02895772,-0.1211777;0.3612739;-0.001350721,-0.1881388;0.08989903;0.01513866,-0.2033467;-0.1882914;-0.01276827,0.07315473;0.009274319;-0.03102213,0.09574003;-0.3690719;-0.003744721,0.1042231;-0.7115505;0.06792425,0.1062355;-0.6989876;-0.0305232,-0.06750432;-0.001697241;-0.04289855,-0.087909;-0.3800359;-0.01385579,-0.09793378;-0.7225276;0.05755094,-0.08026019;-0.7671678;-0.006608956,-0.01014962;0.3990861;0.02400649,0;0;0,-0.002245368;0.199516;0.01372246,-0.004083947;0.4993732;0.02078297,0.1116286;0.3768522;-0.003611481,0.3133011;0.1864075;0.03458571,0.5873949;0.1351629;0.009157248,-0.1175386;0.3690508;-0.001301363,-0.1956564;0.1033091;0.03967319,-0.2602854;-0.1678941;0.06559531,0.0709492;0.006324493;-0.0364172,0.1000473;-0.3680941;0.02158269,0.1041498;-0.709789;0.0972649,0.1088918;-0.7589364;0.03632877,-0.07179914;-0.0002096972;-0.0352823,-0.08717484;-0.3764279;0.01593731,-0.1008439;-0.716536;0.09742086,-0.1009265;-0.7046707;-0.0009210333,-0.003616889;0.3993748;0.02111092,51.64214
+0;0;0,-0.006143559;0.1993116;0.01539923,-0.01170655;0.4990739;0.023839,0.1066215;0.3761173;0.00861362,0.3643301;0.2666423;0.007381761,0.6418545;0.2743638;-0.02895772,-0.1211777;0.3612739;-0.001350721,-0.1881388;0.08989903;0.01513866,-0.2033467;-0.1882914;-0.01276827,0.07315473;0.009274319;-0.03102213,0.09574003;-0.3690719;-0.003744721,0.1042231;-0.7115505;0.06792425,0.1062355;-0.6989876;-0.0305232,-0.06750432;-0.001697241;-0.04289855,-0.087909;-0.3800359;-0.01385579,-0.09793378;-0.7225276;0.05755094,-0.08026019;-0.7671678;-0.006608956,-0.01014962;0.3990861;0.02400649,0;0;0,-0.002262062;0.1995284;0.0135384,-0.004061543;0.499391;0.02031525,0.1117383;0.3769504;-0.003553098,0.3099338;0.1828561;0.0344731,0.5810155;0.118649;0.006328151,-0.1175261;0.3692451;-0.001892297,-0.1956054;0.1034729;0.03895838,-0.2606208;-0.1677696;0.06346375,0.07110997;0.006120162;-0.03613745,0.100038;-0.3683912;0.0213465,0.1039255;-0.710107;0.09694525,0.1094533;-0.7592087;0.03601597,-0.07165916;-6.894581E-05;-0.03556627,-0.08728696;-0.3762321;0.0159804,-0.1008966;-0.7162234;0.09796013,-0.1007669;-0.7043953;-0.0003748536,-0.003607418;0.3993931;0.02077135,51.66439
+0;0;0,-0.006454093;0.199311;0.01527917,-0.0135413;0.4990304;0.02429525,0.1055579;0.3765238;0.00857544,0.3623227;0.2648475;0.009089243,0.6400058;0.2693633;-0.02657141,-0.1216238;0.3602501;-0.002631234,-0.1923166;0.08980861;0.01361437,-0.2082571;-0.1883667;-0.01403386,0.07309883;0.009251893;-0.03116028,0.09545749;-0.3690895;-0.003631115,0.1039698;-0.7117381;0.06721745,0.106099;-0.6991588;-0.03123045,-0.0674968;-0.001625267;-0.04291317,-0.08831906;-0.3799771;-0.01434264,-0.09826601;-0.7225263;0.05679887,-0.08057719;-0.7676482;-0.006792188,-0.01127442;0.3990562;0.02414747,0;0;0,-0.001799816;0.1995326;0.01354599,-0.002834668;0.4993999;0.02026963,0.1127381;0.3771496;-0.003596233,0.3058969;0.1780515;0.03447767,0.5734425;0.100797;0.005303828,-0.1166212;0.3695953;-0.002060246,-0.1947156;0.1038223;0.03875607,-0.2608451;-0.1673048;0.06149424,0.07121238;0.005968389;-0.03596075,0.0998614;-0.368628;0.02110754,0.1037597;-0.7103732;0.09657297,0.1097972;-0.7594565;0.03566826,-0.07150681;7.287523E-05;-0.03587159,-0.08714525;-0.3760748;0.01578449,-0.1010658;-0.7161293;0.09744936,-0.1008038;-0.7043007;-0.000885427,-0.002640961;0.3994012;0.0207458,51.68668
+0;0;0,-0.006454093;0.199311;0.01527917,-0.0135413;0.4990304;0.02429525,0.1055579;0.3765238;0.00857544,0.3623227;0.2648475;0.009089243,0.6400058;0.2693633;-0.02657141,-0.1216238;0.3602501;-0.002631234,-0.1923166;0.08980861;0.01361437,-0.2082571;-0.1883667;-0.01403386,0.07309883;0.009251893;-0.03116028,0.09545749;-0.3690895;-0.003631115,0.1039698;-0.7117381;0.06721745,0.106099;-0.6991588;-0.03123045,-0.0674968;-0.001625267;-0.04291317,-0.08831906;-0.3799771;-0.01434264,-0.09826601;-0.7225263;0.05679887,-0.08057719;-0.7676482;-0.006792188,-0.01127442;0.3990562;0.02414747,0;0;0,-0.001799816;0.1995326;0.01354599,-0.002834668;0.4993999;0.02026963,0.1127381;0.3771496;-0.003596233,0.3058969;0.1780515;0.03447767,0.5734425;0.100797;0.005303828,-0.1166212;0.3695953;-0.002060246,-0.1947156;0.1038223;0.03875607,-0.2608451;-0.1673048;0.06149424,0.07121238;0.005968389;-0.03596075,0.0998614;-0.368628;0.02110754,0.1037597;-0.7103732;0.09657297,0.1097972;-0.7594565;0.03566826,-0.07150681;7.287523E-05;-0.03587159,-0.08714525;-0.3760748;0.01578449,-0.1010658;-0.7161293;0.09744936,-0.1008038;-0.7043007;-0.000885427,-0.002640961;0.3994012;0.0207458,51.69793
+0;0;0,-0.006454093;0.199311;0.01527917,-0.0135413;0.4990304;0.02429525,0.1055579;0.3765238;0.00857544,0.3623227;0.2648475;0.009089243,0.6400058;0.2693633;-0.02657141,-0.1216238;0.3602501;-0.002631234,-0.1923166;0.08980861;0.01361437,-0.2082571;-0.1883667;-0.01403386,0.07309883;0.009251893;-0.03116028,0.09545749;-0.3690895;-0.003631115,0.1039698;-0.7117381;0.06721745,0.106099;-0.6991588;-0.03123045,-0.0674968;-0.001625267;-0.04291317,-0.08831906;-0.3799771;-0.01434264,-0.09826601;-0.7225263;0.05679887,-0.08057719;-0.7676482;-0.006792188,-0.01127442;0.3990562;0.02414747,0;0;0,-0.001799816;0.1995326;0.01354599,-0.002834668;0.4993999;0.02026963,0.1127381;0.3771496;-0.003596233,0.3058969;0.1780515;0.03447767,0.5734425;0.100797;0.005303828,-0.1166212;0.3695953;-0.002060246,-0.1947156;0.1038223;0.03875607,-0.2608451;-0.1673048;0.06149424,0.07121238;0.005968389;-0.03596075,0.0998614;-0.368628;0.02110754,0.1037597;-0.7103732;0.09657297,0.1097972;-0.7594565;0.03566826,-0.07150681;7.287523E-05;-0.03587159,-0.08714525;-0.3760748;0.01578449,-0.1010658;-0.7161293;0.09744936,-0.1008038;-0.7043007;-0.000885427,-0.002640961;0.3994012;0.0207458,51.70917
+0;0;0,-0.006522572;0.1993128;0.01522782,-0.01418515;0.499018;0.02426298,0.1051478;0.3764921;0.008546831,0.3610006;0.2627462;0.009653125,0.6387888;0.2635284;-0.02546181,-0.1219433;0.3602223;-0.003015805,-0.1921284;0.08965418;0.01332184,-0.2079509;-0.188534;-0.01426394,0.07312545;0.009235494;-0.03110263,0.09556851;-0.3691178;-0.0038065,0.1039741;-0.7117843;0.06696805,0.1061986;-0.6992059;-0.03147756,-0.06745649;-0.001580511;-0.04297817,-0.08817383;-0.379937;-0.01439203,-0.09820389;-0.7225239;0.05655547,-0.08083375;-0.7675177;-0.007274106,-0.01168276;0.3990494;0.0240964,0;0;0,-0.001430154;0.1995362;0.01353671,-0.001974887;0.4994055;0.02023366,0.1134455;0.3772573;-0.003688073,0.2999844;0.1719916;0.03464233,0.5650509;0.08681564;0.004896525,-0.1159062;0.3698923;-0.002535554,-0.1942774;0.1041552;0.03798322,-0.2609838;-0.1668288;0.06074039,0.07113552;0.005769311;-0.03614487,0.09947125;-0.3688665;0.02082052,0.10345;-0.7106825;0.09596042,0.1093502;-0.7597499;0.03502165,-0.07142886;0.0002791784;-0.03602554,-0.0879863;-0.3757865;0.01594035,-0.1014995;-0.7159757;0.0971111,-0.1010731;-0.7041479;-0.001222968,-0.001940132;0.3994067;0.02071602,51.72047
+0;0;0,-0.006522572;0.1993128;0.01522782,-0.01418515;0.499018;0.02426298,0.1051478;0.3764921;0.008546831,0.3610006;0.2627462;0.009653125,0.6387888;0.2635284;-0.02546181,-0.1219433;0.3602223;-0.003015805,-0.1921284;0.08965418;0.01332184,-0.2079509;-0.188534;-0.01426394,0.07312545;0.009235494;-0.03110263,0.09556851;-0.3691178;-0.0038065,0.1039741;-0.7117843;0.06696805,0.1061986;-0.6992059;-0.03147756,-0.06745649;-0.001580511;-0.04297817,-0.08817383;-0.379937;-0.01439203,-0.09820389;-0.7225239;0.05655547,-0.08083375;-0.7675177;-0.007274106,-0.01168276;0.3990494;0.0240964,0;0;0,-0.001430154;0.1995362;0.01353671,-0.001974887;0.4994055;0.02023366,0.1134455;0.3772573;-0.003688073,0.2999844;0.1719916;0.03464233,0.5650509;0.08681564;0.004896525,-0.1159062;0.3698923;-0.002535554,-0.1942774;0.1041552;0.03798322,-0.2609838;-0.1668288;0.06074039,0.07113552;0.005769311;-0.03614487,0.09947125;-0.3688665;0.02082052,0.10345;-0.7106825;0.09596042,0.1093502;-0.7597499;0.03502165,-0.07142886;0.0002791784;-0.03602554,-0.0879863;-0.3757865;0.01594035,-0.1014995;-0.7159757;0.0971111,-0.1010731;-0.7041479;-0.001222968,-0.001940132;0.3994067;0.02071602,51.74263
+0;0;0,-0.006522572;0.1993128;0.01522782,-0.01418515;0.499018;0.02426298,0.1051478;0.3764921;0.008546831,0.3610006;0.2627462;0.009653125,0.6387888;0.2635284;-0.02546181,-0.1219433;0.3602223;-0.003015805,-0.1921284;0.08965418;0.01332184,-0.2079509;-0.188534;-0.01426394,0.07312545;0.009235494;-0.03110263,0.09556851;-0.3691178;-0.0038065,0.1039741;-0.7117843;0.06696805,0.1061986;-0.6992059;-0.03147756,-0.06745649;-0.001580511;-0.04297817,-0.08817383;-0.379937;-0.01439203,-0.09820389;-0.7225239;0.05655547,-0.08083375;-0.7675177;-0.007274106,-0.01168276;0.3990494;0.0240964,0;0;0,-0.001330178;0.1995449;0.01341893,-0.001709764;0.499416;0.02003609,0.1136959;0.3773754;-0.003726771,0.2957843;0.1680616;0.03410964,0.5552189;0.06725666;0.00358016,-0.116444;0.3713025;-0.000711849,-0.1970813;0.1056968;0.03604686,-0.2644751;-0.1652106;0.05766289,0.07109416;0.005576857;-0.0362563,0.09940936;-0.3690891;0.02052108,0.1032612;-0.7109216;0.09559242,0.1094203;-0.7597489;0.03436893,-0.07138858;0.0005417514;-0.0361023,-0.08803995;-0.3755519;0.01563082,-0.1015309;-0.7157677;0.09669369,-0.1017555;-0.7039467;-0.001639783,-0.00173751;0.3994173;0.02054813,51.76489
+0;0;0,-0.006170108;0.1993394;0.01502486,-0.01225403;0.4990964;0.02340881,0.106365;0.3762559;0.008455425,0.3610481;0.2599439;0.01129113,0.6388234;0.2550304;-0.02359074,-0.1209387;0.3605323;-0.003090085,-0.1899394;0.0896197;0.0125711,-0.2066163;-0.1885757;-0.01443269,0.07309666;0.00925477;-0.03116453,0.09574699;-0.3691008;-0.00407175,0.1041822;-0.7117576;0.066746,0.1065123;-0.6992062;-0.03169241,-0.06746872;-0.001609764;-0.0429579,-0.08794251;-0.379861;-0.01284427,-0.09771339;-0.7226992;0.05691573,-0.08004265;-0.7670196;-0.007615149,-0.01047036;0.3991124;0.02352439,0;0;0,-0.0009969436;0.19955;0.01337207,-0.0008172934;0.4994244;0.01983569,0.1143546;0.3772319;-0.003944829,0.2927472;0.1646452;0.03324377,0.5449415;0.04678034;0.003145084,-0.1157319;0.3714237;-0.001047311,-0.1962659;0.1057853;0.03570261,-0.2640476;-0.1650975;0.05639375,0.07100884;0.005435907;-0.03644443,0.09920797;-0.3692639;0.02016702,0.103117;-0.711089;0.09526931,0.109653;-0.7601308;0.03436219,-0.07138238;0.000754439;-0.03611074,-0.08801093;-0.3754648;0.01470852,-0.1017348;-0.7156283;0.09595166,-0.1018488;-0.7038115;-0.002381235,-0.001033806;0.3994263;0.02040493,51.7874
+0;0;0,-0.006170108;0.1993394;0.01502486,-0.01225403;0.4990964;0.02340881,0.106365;0.3762559;0.008455425,0.3610481;0.2599439;0.01129113,0.6388234;0.2550304;-0.02359074,-0.1209387;0.3605323;-0.003090085,-0.1899394;0.0896197;0.0125711,-0.2066163;-0.1885757;-0.01443269,0.07309666;0.00925477;-0.03116453,0.09574699;-0.3691008;-0.00407175,0.1041822;-0.7117576;0.066746,0.1065123;-0.6992062;-0.03169241,-0.06746872;-0.001609764;-0.0429579,-0.08794251;-0.379861;-0.01284427,-0.09771339;-0.7226992;0.05691573,-0.08004265;-0.7670196;-0.007615149,-0.01047036;0.3991124;0.02352439,0;0;0,-0.0009969436;0.19955;0.01337207,-0.0008172934;0.4994244;0.01983569,0.1143546;0.3772319;-0.003944829,0.2927472;0.1646452;0.03324377,0.5449415;0.04678034;0.003145084,-0.1157319;0.3714237;-0.001047311,-0.1962659;0.1057853;0.03570261,-0.2640476;-0.1650975;0.05639375,0.07100884;0.005435907;-0.03644443,0.09920797;-0.3692639;0.02016702,0.103117;-0.711089;0.09526931,0.109653;-0.7601308;0.03436219,-0.07138238;0.000754439;-0.03611074,-0.08801093;-0.3754648;0.01470852,-0.1017348;-0.7156283;0.09595166,-0.1018488;-0.7038115;-0.002381235,-0.001033806;0.3994263;0.02040493,51.79851
+0;0;0,-0.006170108;0.1993394;0.01502486,-0.01225403;0.4990964;0.02340881,0.106365;0.3762559;0.008455425,0.3610481;0.2599439;0.01129113,0.6388234;0.2550304;-0.02359074,-0.1209387;0.3605323;-0.003090085,-0.1899394;0.0896197;0.0125711,-0.2066163;-0.1885757;-0.01443269,0.07309666;0.00925477;-0.03116453,0.09574699;-0.3691008;-0.00407175,0.1041822;-0.7117576;0.066746,0.1065123;-0.6992062;-0.03169241,-0.06746872;-0.001609764;-0.0429579,-0.08794251;-0.379861;-0.01284427,-0.09771339;-0.7226992;0.05691573,-0.08004265;-0.7670196;-0.007615149,-0.01047036;0.3991124;0.02352439,0;0;0,-0.001011848;0.1995525;0.01333342,-0.0009975971;0.4994267;0.01985393,0.1141864;0.3771304;-0.004160671,0.2875142;0.1603006;0.03247686,0.5314273;0.02595147;0.003207652,-0.1156728;0.3710025;-0.001400113,-0.1961991;0.1053389;0.03518401,-0.2643909;-0.1654855;0.05528412,0.07096966;0.005367989;-0.0365307,0.09900883;-0.369365;0.01994007,0.1031362;-0.7112478;0.09476718,0.1094357;-0.7602705;0.03381029,-0.07132633;0.0008059476;-0.03622021,-0.08827214;-0.3752438;0.01573581,-0.1018041;-0.7155675;0.09633753,-0.1019049;-0.7037646;-0.001992829,-0.001141184;0.3994282;0.02038242,51.82096
+0;0;0,-0.005926169;0.1993614;0.01482983,-0.01135389;0.4991407;0.02282717,0.1069933;0.3759715;0.008418911,0.3605174;0.2571689;0.01180893,0.6381438;0.2444089;-0.0222608,-0.1203769;0.3606441;-0.003298739,-0.1904976;0.0902878;0.01646422,-0.2060793;-0.1876266;-0.01388014,0.07314192;0.009171845;-0.03108275,0.09601831;-0.3691915;-0.004290614,0.1044508;-0.7118826;0.06636158,0.1068951;-0.6993459;-0.03207145,-0.06741184;-0.001534053;-0.04304986,-0.0877473;-0.379807;-0.01311619,-0.09765022;-0.7226501;0.05660181,-0.07998034;-0.7671317;-0.007743083,-0.009829017;0.3991527;0.02308769,0;0;0,-0.001011848;0.1995525;0.01333342,-0.0009975971;0.4994267;0.01985393,0.1141864;0.3771304;-0.004160671,0.2875142;0.1603006;0.03247686,0.5314273;0.02595147;0.003207652,-0.1156728;0.3710025;-0.001400113,-0.1961991;0.1053389;0.03518401,-0.2643909;-0.1654855;0.05528412,0.07096966;0.005367989;-0.0365307,0.09900883;-0.369365;0.01994007,0.1031362;-0.7112478;0.09476718,0.1094357;-0.7602705;0.03381029,-0.07132633;0.0008059476;-0.03622021,-0.08827214;-0.3752438;0.01573581,-0.1018041;-0.7155675;0.09633753,-0.1019049;-0.7037646;-0.001992829,-0.001141184;0.3994282;0.02038242,51.84306
+0;0;0,-0.005926169;0.1993614;0.01482983,-0.01135389;0.4991407;0.02282717,0.1069933;0.3759715;0.008418911,0.3605174;0.2571689;0.01180893,0.6381438;0.2444089;-0.0222608,-0.1203769;0.3606441;-0.003298739,-0.1904976;0.0902878;0.01646422,-0.2060793;-0.1876266;-0.01388014,0.07314192;0.009171845;-0.03108275,0.09601831;-0.3691915;-0.004290614,0.1044508;-0.7118826;0.06636158,0.1068951;-0.6993459;-0.03207145,-0.06741184;-0.001534053;-0.04304986,-0.0877473;-0.379807;-0.01311619,-0.09765022;-0.7226501;0.05660181,-0.07998034;-0.7671317;-0.007743083,-0.009829017;0.3991527;0.02308769,0;0;0,-0.0007728497;0.1995481;0.01341583,-0.0003095707;0.499418;0.02012217,0.1147471;0.3775845;-0.004222495,0.2827162;0.1562777;0.03055809,0.5166842;0.004864618;0.003483092,-0.1150951;0.3712286;-0.001755117,-0.1957815;0.1056307;0.03495235,-0.2638795;-0.1652607;0.05445882,0.07095872;0.005326539;-0.036558,0.0990575;-0.3694477;0.01960884,0.1034948;-0.7113553;0.0943047,0.1097872;-0.7608727;0.03399389,-0.0712826;0.0008553516;-0.03630507,-0.08800918;-0.3752695;0.0151762,-0.1018051;-0.715596;0.09572138,-0.1018055;-0.7037795;-0.002611518,-0.0006126353;0.3994195;0.02058414,51.85428
+0;0;0,-0.005926169;0.1993614;0.01482983,-0.01135389;0.4991407;0.02282717,0.1069933;0.3759715;0.008418911,0.3605174;0.2571689;0.01180893,0.6381438;0.2444089;-0.0222608,-0.1203769;0.3606441;-0.003298739,-0.1904976;0.0902878;0.01646422,-0.2060793;-0.1876266;-0.01388014,0.07314192;0.009171845;-0.03108275,0.09601831;-0.3691915;-0.004290614,0.1044508;-0.7118826;0.06636158,0.1068951;-0.6993459;-0.03207145,-0.06741184;-0.001534053;-0.04304986,-0.0877473;-0.379807;-0.01311619,-0.09765022;-0.7226501;0.05660181,-0.07998034;-0.7671317;-0.007743083,-0.009829017;0.3991527;0.02308769,0;0;0,-0.0007728497;0.1995481;0.01341583,-0.0003095707;0.499418;0.02012217,0.1147471;0.3775845;-0.004222495,0.2827162;0.1562777;0.03055809,0.5166842;0.004864618;0.003483092,-0.1150951;0.3712286;-0.001755117,-0.1957815;0.1056307;0.03495235,-0.2638795;-0.1652607;0.05445882,0.07095872;0.005326539;-0.036558,0.0990575;-0.3694477;0.01960884,0.1034948;-0.7113553;0.0943047,0.1097872;-0.7608727;0.03399389,-0.0712826;0.0008553516;-0.03630507,-0.08800918;-0.3752695;0.0151762,-0.1018051;-0.715596;0.09572138,-0.1018055;-0.7037795;-0.002611518,-0.0006126353;0.3994195;0.02058414,51.87694
+0;0;0,-0.005686984;0.1993771;0.01471183,-0.01039651;0.4991789;0.02231471,0.1076862;0.3758894;0.008212966,0.3593476;0.2531998;0.01192393,0.6363429;0.2306509;-0.02221072,-0.1198037;0.3608077;-0.003362786,-0.1894454;0.09025612;0.01539528,-0.2055217;-0.1877086;-0.01422209,0.07312935;0.009155083;-0.03111724,0.09615125;-0.3691989;-0.00431712,0.1043277;-0.7118688;0.06646728,0.1167126;-0.7591038;0.004166532,-0.0674131;-0.001513362;-0.04304862,-0.08748758;-0.3798022;-0.01313894,-0.09730784;-0.7227052;0.056295,-0.07977922;-0.7668869;-0.008433834,-0.009135144;0.3991876;0.02270338,0;0;0,-0.000648031;0.1995529;0.01334989,-8.100423E-05;0.4994251;0.01994461,0.1149876;0.378014;-0.00453566,0.2759323;0.1513436;0.02889068,0.5044611;-0.008300051;0.00265028,-0.1147965;0.3710269;-0.002135616,-0.1959627;0.1055976;0.03473296,-0.2638337;-0.1654106;0.05339126,0.07096387;0.005256535;-0.03655815,0.0988862;-0.3695574;0.0194321,0.1034139;-0.7115003;0.09396094,0.1095487;-0.7609442;0.03353715,-0.07123662;0.0009360191;-0.03639324,-0.08751453;-0.3754124;0.01357574,-0.1017568;-0.7155428;0.09486796,-0.1017581;-0.7037274;-0.003464751,-0.0004133551;0.3994268;0.0204464,51.89889
+0;0;0,-0.005686984;0.1993771;0.01471183,-0.01039651;0.4991789;0.02231471,0.1076862;0.3758894;0.008212966,0.3593476;0.2531998;0.01192393,0.6363429;0.2306509;-0.02221072,-0.1198037;0.3608077;-0.003362786,-0.1894454;0.09025612;0.01539528,-0.2055217;-0.1877086;-0.01422209,0.07312935;0.009155083;-0.03111724,0.09615125;-0.3691989;-0.00431712,0.1043277;-0.7118688;0.06646728,0.1167126;-0.7591038;0.004166532,-0.0674131;-0.001513362;-0.04304862,-0.08748758;-0.3798022;-0.01313894,-0.09730784;-0.7227052;0.056295,-0.07977922;-0.7668869;-0.008433834,-0.009135144;0.3991876;0.02270338,0;0;0,-0.000648031;0.1995529;0.01334989,-8.100423E-05;0.4994251;0.01994461,0.1149876;0.378014;-0.00453566,0.2759323;0.1513436;0.02889068,0.5044611;-0.008300051;0.00265028,-0.1147965;0.3710269;-0.002135616,-0.1959627;0.1055976;0.03473296,-0.2638337;-0.1654106;0.05339126,0.07096387;0.005256535;-0.03655815,0.0988862;-0.3695574;0.0194321,0.1034139;-0.7115003;0.09396094,0.1095487;-0.7609442;0.03353715,-0.07123662;0.0009360191;-0.03639324,-0.08751453;-0.3754124;0.01357574,-0.1017568;-0.7155428;0.09486796,-0.1017581;-0.7037274;-0.003464751,-0.0004133551;0.3994268;0.0204464,51.91022
+0;0;0,-0.005686984;0.1993771;0.01471183,-0.01039651;0.4991789;0.02231471,0.1076862;0.3758894;0.008212966,0.3593476;0.2531998;0.01192393,0.6363429;0.2306509;-0.02221072,-0.1198037;0.3608077;-0.003362786,-0.1894454;0.09025612;0.01539528,-0.2055217;-0.1877086;-0.01422209,0.07312935;0.009155083;-0.03111724,0.09615125;-0.3691989;-0.00431712,0.1043277;-0.7118688;0.06646728,0.1167126;-0.7591038;0.004166532,-0.0674131;-0.001513362;-0.04304862,-0.08748758;-0.3798022;-0.01313894,-0.09730784;-0.7227052;0.056295,-0.07977922;-0.7668869;-0.008433834,-0.009135144;0.3991876;0.02270338,0;0;0,-0.0005087304;0.1995563;0.013305,0.0003273454;0.4994283;0.01987037,0.1153325;0.378505;-0.004846608,0.2711344;0.1481368;0.02765358,0.4921992;-0.02188736;0.002711207,-0.1148513;0.3717154;-0.001172774,-0.1971765;0.1063817;0.03376406,-0.2648351;-0.1647442;0.05145736,0.07089709;0.005173957;-0.03669921,0.09889533;-0.3696612;0.01911044,0.1033608;-0.7116004;0.09365983,0.1093938;-0.7608523;0.03297425,-0.07126258;0.001007668;-0.03634046,-0.08744141;-0.3753404;0.01366283,-0.1018105;-0.715537;0.09465553,-0.1022684;-0.703722;-0.003676042,-0.0001033433;0.3994305;0.02038594,51.93242
+0;0;0,-0.005413263;0.199392;0.01461305,-0.009827303;0.4992045;0.02200425,0.1081697;0.3758194;0.008077391,0.3573359;0.2481939;0.01336364,0.6331745;0.2155453;-0.02195168,-0.1194368;0.3610598;-0.003444167,-0.1881105;0.09027687;0.01554305,-0.2050419;-0.1876537;-0.01391778,0.07321887;0.009097954;-0.03092289,0.09623589;-0.3692681;-0.004289532,0.1044298;-0.7119652;0.06636124,0.1166346;-0.7588435;0.003585666,-0.06736111;-0.001480007;-0.04313108,-0.08740059;-0.3797575;-0.01305475,-0.09726059;-0.7226946;0.05620485,-0.07977999;-0.767166;-0.008203611,-0.0086479;0.3992124;0.02244397,0;0;0,-0.0005087304;0.1995563;0.013305,0.0003273454;0.4994283;0.01987037,0.1153325;0.378505;-0.004846608,0.2711344;0.1481368;0.02765358,0.4921992;-0.02188736;0.002711207,-0.1148513;0.3717154;-0.001172774,-0.1971765;0.1063817;0.03376406,-0.2648351;-0.1647442;0.05145736,0.07089709;0.005173957;-0.03669921,0.09889533;-0.3696612;0.01911044,0.1033608;-0.7116004;0.09365983,0.1093938;-0.7608523;0.03297425,-0.07126258;0.001007668;-0.03634046,-0.08744141;-0.3753404;0.01366283,-0.1018105;-0.715537;0.09465553,-0.1022684;-0.703722;-0.003676042,-0.0001033433;0.3994305;0.02038594,51.94361
+0;0;0,-0.005413263;0.199392;0.01461305,-0.009827303;0.4992045;0.02200425,0.1081697;0.3758194;0.008077391,0.3573359;0.2481939;0.01336364,0.6331745;0.2155453;-0.02195168,-0.1194368;0.3610598;-0.003444167,-0.1881105;0.09027687;0.01554305,-0.2050419;-0.1876537;-0.01391778,0.07321887;0.009097954;-0.03092289,0.09623589;-0.3692681;-0.004289532,0.1044298;-0.7119652;0.06636124,0.1166346;-0.7588435;0.003585666,-0.06736111;-0.001480007;-0.04313108,-0.08740059;-0.3797575;-0.01305475,-0.09726059;-0.7226946;0.05620485,-0.07977999;-0.767166;-0.008203611,-0.0086479;0.3992124;0.02244397,0;0;0,-0.000398783;0.1995591;0.01326622,0.0006060431;0.4994314;0.01978537,0.1155566;0.3787853;-0.005129933,0.2673452;0.1456722;0.02678402,0.4787779;-0.03629923;0.002646998,-0.1150134;0.3724145;-3.982335E-05,-0.1979872;0.1070527;0.0331031,-0.264876;-0.1643204;0.04991148,0.07082889;0.005107767;-0.0368399,0.0988231;-0.3697481;0.01883273,0.1033289;-0.7116526;0.09353852,0.1095073;-0.7612889;0.03337288,-0.07127804;0.001060047;-0.03630862,-0.08731318;-0.375387;0.01299174,-0.1020461;-0.7155478;0.09406912,-0.1029447;-0.703734;-0.004259184,0.0001187058;0.399434;0.02032033,51.9549
+0;0;0,-0.005413263;0.199392;0.01461305,-0.009827303;0.4992045;0.02200425,0.1081697;0.3758194;0.008077391,0.3573359;0.2481939;0.01336364,0.6331745;0.2155453;-0.02195168,-0.1194368;0.3610598;-0.003444167,-0.1881105;0.09027687;0.01554305,-0.2050419;-0.1876537;-0.01391778,0.07321887;0.009097954;-0.03092289,0.09623589;-0.3692681;-0.004289532,0.1044298;-0.7119652;0.06636124,0.1166346;-0.7588435;0.003585666,-0.06736111;-0.001480007;-0.04313108,-0.08740059;-0.3797575;-0.01305475,-0.09726059;-0.7226946;0.05620485,-0.07977999;-0.767166;-0.008203611,-0.0086479;0.3992124;0.02244397,0;0;0,-0.000398783;0.1995591;0.01326622,0.0006060431;0.4994314;0.01978537,0.1155566;0.3787853;-0.005129933,0.2673452;0.1456722;0.02678402,0.4787779;-0.03629923;0.002646998,-0.1150134;0.3724145;-3.982335E-05,-0.1979872;0.1070527;0.0331031,-0.264876;-0.1643204;0.04991148,0.07082889;0.005107767;-0.0368399,0.0988231;-0.3697481;0.01883273,0.1033289;-0.7116526;0.09353852,0.1095073;-0.7612889;0.03337288,-0.07127804;0.001060047;-0.03630862,-0.08731318;-0.375387;0.01299174,-0.1020461;-0.7155478;0.09406912,-0.1029447;-0.703734;-0.004259184,0.0001187058;0.399434;0.02032033,51.977
+0;0;0,-0.005482036;0.1993832;0.01470634,-0.01062613;0.4991718;0.02277562,0.1075831;0.3757412;0.00753032,0.3537937;0.2426307;0.0154009,0.6289101;0.2073487;-0.02288945,-0.1196856;0.3608003;-0.003533984,-0.1884021;0.09001675;0.01528868,-0.2058038;-0.1879358;-0.01368656,0.07318987;0.009106148;-0.03098904,0.09618413;-0.3692701;-0.004480893,0.1043123;-0.711949;0.06626568,0.116715;-0.7591839;0.003968388,-0.06737896;-0.001482233;-0.04310312,-0.08750486;-0.3797347;-0.01277176,-0.09720308;-0.7227374;0.05618557,-0.08004688;-0.7673005;-0.008203872,-0.009099954;0.3991835;0.02287713,0;0;0,-0.0004178439;0.1995662;0.01315955,0.0004187874;0.4994423;0.01953587,0.1154665;0.3790792;-0.005395146,0.2623493;0.142755;0.02585108,0.4628856;-0.05176577;0.007227566,-0.1150524;0.3721295;-0.0003575105,-0.1979435;0.1067608;0.03293721,-0.2645743;-0.1646913;0.04949283,0.07068134;0.005039799;-0.03713149,0.09854636;-0.3698243;0.01855034,0.102944;-0.7117604;0.09311785,0.1091516;-0.7614243;0.0329919,-0.07133681;0.00115702;-0.03619005,-0.08789341;-0.3753169;0.01273076,-0.102812;-0.7154832;0.09375127,-0.1037041;-0.7036752;-0.00457602,-9.366428E-06;0.3994449;0.02011115,51.98849
+0;0;0,-0.005482036;0.1993832;0.01470634,-0.01062613;0.4991718;0.02277562,0.1075831;0.3757412;0.00753032,0.3537937;0.2426307;0.0154009,0.6289101;0.2073487;-0.02288945,-0.1196856;0.3608003;-0.003533984,-0.1884021;0.09001675;0.01528868,-0.2058038;-0.1879358;-0.01368656,0.07318987;0.009106148;-0.03098904,0.09618413;-0.3692701;-0.004480893,0.1043123;-0.711949;0.06626568,0.116715;-0.7591839;0.003968388,-0.06737896;-0.001482233;-0.04310312,-0.08750486;-0.3797347;-0.01277176,-0.09720308;-0.7227374;0.05618557,-0.08004688;-0.7673005;-0.008203872,-0.009099954;0.3991835;0.02287713,0;0;0,-0.0004178439;0.1995662;0.01315955,0.0004187874;0.4994423;0.01953587,0.1154665;0.3790792;-0.005395146,0.2623493;0.142755;0.02585108,0.4628856;-0.05176577;0.007227566,-0.1150524;0.3721295;-0.0003575105,-0.1979435;0.1067608;0.03293721,-0.2645743;-0.1646913;0.04949283,0.07068134;0.005039799;-0.03713149,0.09854636;-0.3698243;0.01855034,0.102944;-0.7117604;0.09311785,0.1091516;-0.7614243;0.0329919,-0.07133681;0.00115702;-0.03619005,-0.08789341;-0.3753169;0.01273076,-0.102812;-0.7154832;0.09375127,-0.1037041;-0.7036752;-0.00457602,-9.366428E-06;0.3994449;0.02011115,51.99996
+0;0;0,-0.005482036;0.1993832;0.01470634,-0.01062613;0.4991718;0.02277562,0.1075831;0.3757412;0.00753032,0.3537937;0.2426307;0.0154009,0.6289101;0.2073487;-0.02288945,-0.1196856;0.3608003;-0.003533984,-0.1884021;0.09001675;0.01528868,-0.2058038;-0.1879358;-0.01368656,0.07318987;0.009106148;-0.03098904,0.09618413;-0.3692701;-0.004480893,0.1043123;-0.711949;0.06626568,0.116715;-0.7591839;0.003968388,-0.06737896;-0.001482233;-0.04310312,-0.08750486;-0.3797347;-0.01277176,-0.09720308;-0.7227374;0.05618557,-0.08004688;-0.7673005;-0.008203872,-0.009099954;0.3991835;0.02287713,0;0;0,-0.0003346228;0.1995681;0.01313219,0.0006187829;0.4994468;0.01931238,0.115746;0.3797371;-0.005576249,0.2571593;0.1399242;0.02429113,0.4424335;-0.06950237;0.009662678,-0.1152452;0.3732062;0.0002147816,-0.198245;0.1077558;0.0325738,-0.2643703;-0.1638396;0.04880337,0.07065209;0.005008127;-0.0371914,0.09869441;-0.3699038;0.01807768,0.1027823;-0.7118095;0.09280229,0.1090321;-0.7617725;0.03307897,-0.07133482;0.00119251;-0.03619284,-0.08758686;-0.3754145;0.01179692,-0.1028407;-0.7154678;0.09322826,-0.103959;-0.7036608;-0.005096532,0.0001689413;0.3994501;0.01998425,52.02179
+0;0;0,-0.005174329;0.1994017;0.01456681,-0.009690959;0.4992101;0.02223352,0.1081758;0.3756582;0.006594777,0.3505389;0.2358069;0.01668131,0.6231269;0.1877607;-0.02559585,-0.1191312;0.3609895;-0.003580881,-0.1876779;0.09016836;0.01532116,-0.2052823;-0.1877823;-0.01354941,0.073215;0.009071694;-0.03093975,0.096203;-0.3693079;-0.004474478,0.1042385;-0.7120266;0.06608982,0.1163628;-0.7590573;0.003485799,-0.06734901;-0.001450301;-0.04315098,-0.08733554;-0.3797054;-0.01275997,-0.09725551;-0.7227098;0.05615712,-0.07998782;-0.7677149;-0.007686935,-0.008410551;0.3992186;0.02248583,0;0;0,-0.0003346228;0.1995681;0.01313219,0.0006187829;0.4994468;0.01931238,0.115746;0.3797371;-0.005576249,0.2571593;0.1399242;0.02429113,0.4424335;-0.06950237;0.009662678,-0.1152452;0.3732062;0.0002147816,-0.198245;0.1077558;0.0325738,-0.2643703;-0.1638396;0.04880337,0.07065209;0.005008127;-0.0371914,0.09869441;-0.3699038;0.01807768,0.1027823;-0.7118095;0.09280229,0.1090321;-0.7617725;0.03307897,-0.07133482;0.00119251;-0.03619284,-0.08758686;-0.3754145;0.01179692,-0.1028407;-0.7154678;0.09322826,-0.103959;-0.7036608;-0.005096532,0.0001689413;0.3994501;0.01998425,52.03307
+0;0;0,-0.005174329;0.1994017;0.01456681,-0.009690959;0.4992101;0.02223352,0.1081758;0.3756582;0.006594777,0.3505389;0.2358069;0.01668131,0.6231269;0.1877607;-0.02559585,-0.1191312;0.3609895;-0.003580881,-0.1876779;0.09016836;0.01532116,-0.2052823;-0.1877823;-0.01354941,0.073215;0.009071694;-0.03093975,0.096203;-0.3693079;-0.004474478,0.1042385;-0.7120266;0.06608982,0.1163628;-0.7590573;0.003485799,-0.06734901;-0.001450301;-0.04315098,-0.08733554;-0.3797054;-0.01275997,-0.09725551;-0.7227098;0.05615712,-0.07998782;-0.7677149;-0.007686935,-0.008410551;0.3992186;0.02248583,0;0;0,-0.0001413428;0.1995752;0.01302791,0.001332662;0.4994594;0.01872122,0.116379;0.3802998;-0.005911097,0.2516634;0.1368968;0.02329678,0.4239472;-0.08361095;0.01356799,-0.1150546;0.3741835;0.0005820207,-0.1981411;0.108694;0.03239379,-0.2638935;-0.1629999;0.04848697,0.07058495;0.004989959;-0.03732111,0.09873897;-0.3699493;0.0177055,0.102599;-0.7118791;0.09233157,0.1086816;-0.7620747;0.03290362,-0.07138288;0.001209071;-0.03609741,-0.08769675;-0.3754866;0.0111701,-0.1029531;-0.7154796;0.09285228,-0.104242;-0.7036842;-0.005468287,0.0006996201;0.3994653;0.01960293,52.05547
+0;0;0,-0.005174329;0.1994017;0.01456681,-0.009690959;0.4992101;0.02223352,0.1081758;0.3756582;0.006594777,0.3505389;0.2358069;0.01668131,0.6231269;0.1877607;-0.02559585,-0.1191312;0.3609895;-0.003580881,-0.1876779;0.09016836;0.01532116,-0.2052823;-0.1877823;-0.01354941,0.073215;0.009071694;-0.03093975,0.096203;-0.3693079;-0.004474478,0.1042385;-0.7120266;0.06608982,0.1163628;-0.7590573;0.003485799,-0.06734901;-0.001450301;-0.04315098,-0.08733554;-0.3797054;-0.01275997,-0.09725551;-0.7227098;0.05615712,-0.07998782;-0.7677149;-0.007686935,-0.008410551;0.3992186;0.02248583,0;0;0,-0.0001413428;0.1995752;0.01302791,0.001332662;0.4994594;0.01872122,0.116379;0.3802998;-0.005911097,0.2516634;0.1368968;0.02329678,0.4239472;-0.08361095;0.01356799,-0.1150546;0.3741835;0.0005820207,-0.1981411;0.108694;0.03239379,-0.2638935;-0.1629999;0.04848697,0.07058495;0.004989959;-0.03732111,0.09873897;-0.3699493;0.0177055,0.102599;-0.7118791;0.09233157,0.1086816;-0.7620747;0.03290362,-0.07138288;0.001209071;-0.03609741,-0.08769675;-0.3754866;0.0111701,-0.1029531;-0.7154796;0.09285228,-0.104242;-0.7036842;-0.005468287,0.0006996201;0.3994653;0.01960293,52.07766
+0;0;0,-0.005530084;0.1993905;0.01458901,-0.01225848;0.4991537;0.02245081,0.1066469;0.3761766;0.006710919,0.3458063;0.2309041;0.01664568,0.617512;0.1773435;-0.02467334,-0.1206663;0.3609352;-0.003864419,-0.1891537;0.09008986;0.01490474,-0.2067602;-0.1878576;-0.01399534,0.07321743;0.009121981;-0.0309192,0.09630829;-0.3692548;-0.004503367,0.1042064;-0.7119863;0.06601451,0.116374;-0.7587661;0.003111206,-0.06731955;-0.00148269;-0.04319583,-0.08718645;-0.3797287;-0.01261346,-0.09710938;-0.7227927;0.05600584,-0.07998841;-0.7679995;-0.007640116,-0.01004893;0.3991783;0.0226168,0;0;0,-0.0002375063;0.19958;0.01295204,0.000857986;0.4994646;0.01883139,0.1158532;0.3799205;-0.006573975,0.2464446;0.1339331;0.02234073,0.4068919;-0.0954823;0.01731609,-0.1152278;0.3735601;0.0005583558,-0.1984911;0.1080661;0.03186605,-0.2632585;-0.1638672;0.04791186,0.07035128;0.004920591;-0.03776883,0.09830575;-0.3700928;0.01685271,0.1021882;-0.7120489;0.09135717,0.1076095;-0.7623602;0.03202163,-0.0715918;0.001227859;-0.03568061,-0.08826935;-0.3756284;0.01015881,-0.1035881;-0.7156339;0.09177698,-0.1051317;-0.7038414;-0.006539382,0.0003847742;0.3994687;0.01959696,52.08904
+0;0;0,-0.005530084;0.1993905;0.01458901,-0.01225848;0.4991537;0.02245081,0.1066469;0.3761766;0.006710919,0.3458063;0.2309041;0.01664568,0.617512;0.1773435;-0.02467334,-0.1206663;0.3609352;-0.003864419,-0.1891537;0.09008986;0.01490474,-0.2067602;-0.1878576;-0.01399534,0.07321743;0.009121981;-0.0309192,0.09630829;-0.3692548;-0.004503367,0.1042064;-0.7119863;0.06601451,0.116374;-0.7587661;0.003111206,-0.06731955;-0.00148269;-0.04319583,-0.08718645;-0.3797287;-0.01261346,-0.09710938;-0.7227927;0.05600584,-0.07998841;-0.7679995;-0.007640116,-0.01004893;0.3991783;0.0226168,0;0;0,-0.0002375063;0.19958;0.01295204,0.000857986;0.4994646;0.01883139,0.1158532;0.3799205;-0.006573975,0.2464446;0.1339331;0.02234073,0.4068919;-0.0954823;0.01731609,-0.1152278;0.3735601;0.0005583558,-0.1984911;0.1080661;0.03186605,-0.2632585;-0.1638672;0.04791186,0.07035128;0.004920591;-0.03776883,0.09830575;-0.3700928;0.01685271,0.1021882;-0.7120489;0.09135717,0.1076095;-0.7623602;0.03202163,-0.0715918;0.001227859;-0.03568061,-0.08826935;-0.3756284;0.01015881,-0.1035881;-0.7156339;0.09177698,-0.1051317;-0.7038414;-0.006539382,0.0003847742;0.3994687;0.01959696,52.1111
+0;0;0,-0.005530084;0.1993905;0.01458901,-0.01225848;0.4991537;0.02245081,0.1066469;0.3761766;0.006710919,0.3458063;0.2309041;0.01664568,0.617512;0.1773435;-0.02467334,-0.1206663;0.3609352;-0.003864419,-0.1891537;0.09008986;0.01490474,-0.2067602;-0.1878576;-0.01399534,0.07321743;0.009121981;-0.0309192,0.09630829;-0.3692548;-0.004503367,0.1042064;-0.7119863;0.06601451,0.116374;-0.7587661;0.003111206,-0.06731955;-0.00148269;-0.04319583,-0.08718645;-0.3797287;-0.01261346,-0.09710938;-0.7227927;0.05600584,-0.07998841;-0.7679995;-0.007640116,-0.01004893;0.3991783;0.0226168,0;0;0,-0.0004150195;0.1995935;0.01273791,0.0005017733;0.4994819;0.01842674,0.1155865;0.3803784;-0.007107459,0.2410681;0.1317009;0.02142052,0.3883841;-0.1064103;0.02244315,-0.1154133;0.3733049;-5.628541E-05,-0.1983814;0.1078218;0.03211533,-0.2618849;-0.1644108;0.04813818,0.07023636;0.004922665;-0.03798185,0.09882087;-0.3699448;0.01731102,0.101567;-0.7119635;0.09157845,0.1068332;-0.7617519;0.03152783,-0.07167289;0.001223243;-0.03551762,-0.08853728;-0.3756074;0.01046351,-0.104028;-0.7157154;0.09162113,-0.1055804;-0.7039338;-0.00669308,9.062563E-05;0.3994863;0.01926657,52.12236
+0;0;0,-0.005508111;0.1993778;0.01477005,-0.01219784;0.4991245;0.02338502,0.1065909;0.3760782;0.006834237,0.3423524;0.2253389;0.01653961,0.6110012;0.1581644;-0.02487784,-0.1204419;0.3608589;-0.004021827,-0.1891474;0.090094;0.01510699,-0.2068766;-0.1878556;-0.01369699,0.07320891;0.009108971;-0.03094318,0.09636284;-0.369213;-0.003807066,0.1043914;-0.7120556;0.06615393,0.1157734;-0.7587473;0.00299681,-0.067341;-0.001454925;-0.04316333,-0.0871921;-0.3797038;-0.01260573,-0.09697953;-0.7227813;0.05596545,-0.07981378;-0.7679328;-0.0077338,-0.01002518;0.3991482;0.02321907,0;0;0,-0.0004150195;0.1995935;0.01273791,0.0005017733;0.4994819;0.01842674,0.1155865;0.3803784;-0.007107459,0.2410681;0.1317009;0.02142052,0.3883841;-0.1064103;0.02244315,-0.1154133;0.3733049;-5.628541E-05,-0.1983814;0.1078218;0.03211533,-0.2618849;-0.1644108;0.04813818,0.07023636;0.004922665;-0.03798185,0.09882087;-0.3699448;0.01731102,0.101567;-0.7119635;0.09157845,0.1068332;-0.7617519;0.03152783,-0.07167289;0.001223243;-0.03551762,-0.08853728;-0.3756074;0.01046351,-0.104028;-0.7157154;0.09162113,-0.1055804;-0.7039338;-0.00669308,9.062563E-05;0.3994863;0.01926657,52.1446
+0;0;0,-0.005508111;0.1993778;0.01477005,-0.01219784;0.4991245;0.02338502,0.1065909;0.3760782;0.006834237,0.3423524;0.2253389;0.01653961,0.6110012;0.1581644;-0.02487784,-0.1204419;0.3608589;-0.004021827,-0.1891474;0.090094;0.01510699,-0.2068766;-0.1878556;-0.01369699,0.07320891;0.009108971;-0.03094318,0.09636284;-0.369213;-0.003807066,0.1043914;-0.7120556;0.06615393,0.1157734;-0.7587473;0.00299681,-0.067341;-0.001454925;-0.04316333,-0.0871921;-0.3797038;-0.01260573,-0.09697953;-0.7227813;0.05596545,-0.07981378;-0.7679328;-0.0077338,-0.01002518;0.3991482;0.02321907,0;0;0,-0.0001968461;0.1995935;0.01274308,0.0008171594;0.4994826;0.0183857,0.1158327;0.3809041;-0.007712226,0.2370299;0.1300884;0.02062046,0.36696;-0.117869;0.02656209,-0.114875;0.3725537;-0.0005093552,-0.197646;0.1071512;0.03281392,-0.2604357;-0.1652816;0.0482351,0.07014997;0.005043793;-0.03812536,0.09885977;-0.3698834;0.01669543,0.1012744;-0.7118189;0.09135664,0.1067024;-0.7617958;0.0315716,-0.07173277;0.001050001;-0.03540208,-0.08904304;-0.3757784;0.01043124,-0.1044077;-0.7159321;0.09142131,-0.1060419;-0.7041493;-0.00689178,0.0003841039;0.3994872;0.01923741,52.167
+0;0;0,-0.005508111;0.1993778;0.01477005,-0.01219784;0.4991245;0.02338502,0.1065909;0.3760782;0.006834237,0.3423524;0.2253389;0.01653961,0.6110012;0.1581644;-0.02487784,-0.1204419;0.3608589;-0.004021827,-0.1891474;0.090094;0.01510699,-0.2068766;-0.1878556;-0.01369699,0.07320891;0.009108971;-0.03094318,0.09636284;-0.369213;-0.003807066,0.1043914;-0.7120556;0.06615393,0.1157734;-0.7587473;0.00299681,-0.067341;-0.001454925;-0.04316333,-0.0871921;-0.3797038;-0.01260573,-0.09697953;-0.7227813;0.05596545,-0.07981378;-0.7679328;-0.0077338,-0.01002518;0.3991482;0.02321907,0;0;0,-0.0001968461;0.1995935;0.01274308,0.0008171594;0.4994826;0.0183857,0.1158327;0.3809041;-0.007712226,0.2370299;0.1300884;0.02062046,0.36696;-0.117869;0.02656209,-0.114875;0.3725537;-0.0005093552,-0.197646;0.1071512;0.03281392,-0.2604357;-0.1652816;0.0482351,0.07014997;0.005043793;-0.03812536,0.09885977;-0.3698834;0.01669543,0.1012744;-0.7118189;0.09135664,0.1067024;-0.7617958;0.0315716,-0.07173277;0.001050001;-0.03540208,-0.08904304;-0.3757784;0.01043124,-0.1044077;-0.7159321;0.09142131,-0.1060419;-0.7041493;-0.00689178,0.0003841039;0.3994872;0.01923741,52.17826
+0;0;0,-0.005548456;0.1993716;0.01483915,-0.01246389;0.4991054;0.02375028,0.1063992;0.376196;0.006820481,0.3374307;0.2184074;0.01809803,0.6033478;0.1421828;-0.02523675,-0.1206075;0.3609819;-0.004038103,-0.1893966;0.09023732;0.01507777,-0.2072331;-0.1877255;-0.01353164,0.07319962;0.009142072;-0.03095541,0.09627448;-0.3691842;-0.003811399,0.1043242;-0.7120193;0.06618309,0.1156855;-0.7586151;0.002905793,-0.06735473;-0.001482751;-0.04314096,-0.08717263;-0.3797188;-0.01240365,-0.09702303;-0.7228364;0.0559574,-0.07981669;-0.7680923;-0.007607423,-0.01020693;0.3991312;0.02346354,0;0;0,-0.0001826473;0.19959;0.01279759,0.0007918489;0.4994751;0.01877084,0.1155139;0.3803988;-0.008545686,0.2325782;0.127697;0.02039896,0.3506361;-0.1260346;0.02948628,-0.1145409;0.3713735;-0.0005170982,-0.1969973;0.1059314;0.03326806,-0.258106;-0.1669032;0.04833418,0.07008205;0.005053367;-0.03824878,0.09894851;-0.3699502;0.01596417,0.1010741;-0.711776;0.09113438,0.1059551;-0.7614368;0.03088208,-0.07179078;0.001010803;-0.03528544,-0.0893269;-0.3758357;0.01031234,-0.1045259;-0.7159787;0.09137844,-0.1064647;-0.7041906;-0.006930113,0.0003982256;0.3994782;0.01946068,52.18938
+0;0;0,-0.005548456;0.1993716;0.01483915,-0.01246389;0.4991054;0.02375028,0.1063992;0.376196;0.006820481,0.3374307;0.2184074;0.01809803,0.6033478;0.1421828;-0.02523675,-0.1206075;0.3609819;-0.004038103,-0.1893966;0.09023732;0.01507777,-0.2072331;-0.1877255;-0.01353164,0.07319962;0.009142072;-0.03095541,0.09627448;-0.3691842;-0.003811399,0.1043242;-0.7120193;0.06618309,0.1156855;-0.7586151;0.002905793,-0.06735473;-0.001482751;-0.04314096,-0.08717263;-0.3797188;-0.01240365,-0.09702303;-0.7228364;0.0559574,-0.07981669;-0.7680923;-0.007607423,-0.01020693;0.3991312;0.02346354,0;0;0,-0.0001826473;0.19959;0.01279759,0.0007918489;0.4994751;0.01877084,0.1155139;0.3803988;-0.008545686,0.2325782;0.127697;0.02039896,0.3506361;-0.1260346;0.02948628,-0.1145409;0.3713735;-0.0005170982,-0.1969973;0.1059314;0.03326806,-0.258106;-0.1669032;0.04833418,0.07008205;0.005053367;-0.03824878,0.09894851;-0.3699502;0.01596417,0.1010741;-0.711776;0.09113438,0.1059551;-0.7614368;0.03088208,-0.07179078;0.001010803;-0.03528544,-0.0893269;-0.3758357;0.01031234,-0.1045259;-0.7159787;0.09137844,-0.1064647;-0.7041906;-0.006930113,0.0003982256;0.3994782;0.01946068,52.20087
+0;0;0,-0.005548456;0.1993716;0.01483915,-0.01246389;0.4991054;0.02375028,0.1063992;0.376196;0.006820481,0.3374307;0.2184074;0.01809803,0.6033478;0.1421828;-0.02523675,-0.1206075;0.3609819;-0.004038103,-0.1893966;0.09023732;0.01507777,-0.2072331;-0.1877255;-0.01353164,0.07319962;0.009142072;-0.03095541,0.09627448;-0.3691842;-0.003811399,0.1043242;-0.7120193;0.06618309,0.1156855;-0.7586151;0.002905793,-0.06735473;-0.001482751;-0.04314096,-0.08717263;-0.3797188;-0.01240365,-0.09702303;-0.7228364;0.0559574,-0.07981669;-0.7680923;-0.007607423,-0.01020693;0.3991312;0.02346354,0;0;0,8.921736E-05;0.1995944;0.01273089,0.001919048;0.4994798;0.01840822,0.1161568;0.380522;-0.009419983,0.2280577;0.1256068;0.02052075,0.3391124;-0.1311359;0.03277142,-0.1135381;0.3703472;-0.0005430952,-0.195961;0.1049504;0.03367702,-0.255848;-0.1681288;0.04921101,0.069995;0.005125543;-0.03839829,0.09902995;-0.3698726;0.01576251,0.1009941;-0.7116089;0.09134329,0.1056812;-0.7609773;0.03069106,-0.0719672;0.0007728815;-0.03493029,-0.0894321;-0.3759868;0.01140662,-0.1046936;-0.7162601;0.09191229,-0.1068773;-0.7044855;-0.006388612,0.001179476;0.3994859;0.01922597,52.22285
+0;0;0,-0.005559674;0.1993663;0.01490569,-0.01246955;0.4990984;0.02389444,0.1062877;0.3762667;0.006179294,0.3326661;0.2119845;0.01899285,0.5950837;0.1247963;-0.02499849,-0.1206026;0.3610061;-0.004068332,-0.189571;0.09031522;0.0151622,-0.2074674;-0.1876426;-0.0134585,0.07319348;0.009098629;-0.03098273,0.09626558;-0.3692137;-0.003642483,0.1038789;-0.7119276;0.06699179,0.1156546;-0.7589871;0.004356526,-0.06736442;-0.001408191;-0.04312831,-0.08711438;-0.3796153;-0.01199429,-0.09698696;-0.7228004;0.05602431,-0.07867033;-0.7675646;-0.007809982,-0.01022482;0.3991241;0.0235679,0;0;0,8.921736E-05;0.1995944;0.01273089,0.001919048;0.4994798;0.01840822,0.1161568;0.380522;-0.009419983,0.2280577;0.1256068;0.02052075,0.3391124;-0.1311359;0.03277142,-0.1135381;0.3703472;-0.0005430952,-0.195961;0.1049504;0.03367702,-0.255848;-0.1681288;0.04921101,0.069995;0.005125543;-0.03839829,0.09902995;-0.3698726;0.01576251,0.1009941;-0.7116089;0.09134329,0.1056812;-0.7609773;0.03069106,-0.0719672;0.0007728815;-0.03493029,-0.0894321;-0.3759868;0.01140662,-0.1046936;-0.7162601;0.09191229,-0.1068773;-0.7044855;-0.006388612,0.001179476;0.3994859;0.01922597,52.23429
+0;0;0,-0.005559674;0.1993663;0.01490569,-0.01246955;0.4990984;0.02389444,0.1062877;0.3762667;0.006179294,0.3326661;0.2119845;0.01899285,0.5950837;0.1247963;-0.02499849,-0.1206026;0.3610061;-0.004068332,-0.189571;0.09031522;0.0151622,-0.2074674;-0.1876426;-0.0134585,0.07319348;0.009098629;-0.03098273,0.09626558;-0.3692137;-0.003642483,0.1038789;-0.7119276;0.06699179,0.1156546;-0.7589871;0.004356526,-0.06736442;-0.001408191;-0.04312831,-0.08711438;-0.3796153;-0.01199429,-0.09698696;-0.7228004;0.05602431,-0.07867033;-0.7675646;-0.007809982,-0.01022482;0.3991241;0.0235679,0;0;0,0.0007018873;0.1995996;0.01262899,0.004026476;0.499479;0.01786515,0.1175216;0.3803564;-0.01041514,0.2233517;0.1229591;0.02035219,0.3255766;-0.1371727;0.03713045,-0.1119795;0.3701129;-0.0005911756,-0.1940479;0.1047341;0.03460671,-0.2541502;-0.1683124;0.04988164,0.06988776;0.005273632;-0.03857318,0.09888832;-0.3697829;0.01520053,0.1007609;-0.711436;0.0911583,0.1054653;-0.7608328;0.03054459,-0.07207136;0.000590091;-0.03471845,-0.08972143;-0.3762063;0.01124824,-0.104801;-0.716508;0.09166847,-0.1071585;-0.7047493;-0.006625459,0.002731205;0.3994923;0.01885903,52.25633
+0;0;0,-0.005559674;0.1993663;0.01490569,-0.01246955;0.4990984;0.02389444,0.1062877;0.3762667;0.006179294,0.3326661;0.2119845;0.01899285,0.5950837;0.1247963;-0.02499849,-0.1206026;0.3610061;-0.004068332,-0.189571;0.09031522;0.0151622,-0.2074674;-0.1876426;-0.0134585,0.07319348;0.009098629;-0.03098273,0.09626558;-0.3692137;-0.003642483,0.1038789;-0.7119276;0.06699179,0.1156546;-0.7589871;0.004356526,-0.06736442;-0.001408191;-0.04312831,-0.08711438;-0.3796153;-0.01199429,-0.09698696;-0.7228004;0.05602431,-0.07867033;-0.7675646;-0.007809982,-0.01022482;0.3991241;0.0235679,0;0;0,0.0007018873;0.1995996;0.01262899,0.004026476;0.499479;0.01786515,0.1175216;0.3803564;-0.01041514,0.2233517;0.1229591;0.02035219,0.3255766;-0.1371727;0.03713045,-0.1119795;0.3701129;-0.0005911756,-0.1940479;0.1047341;0.03460671,-0.2541502;-0.1683124;0.04988164,0.06988776;0.005273632;-0.03857318,0.09888832;-0.3697829;0.01520053,0.1007609;-0.711436;0.0911583,0.1054653;-0.7608328;0.03054459,-0.07207136;0.000590091;-0.03471845,-0.08972143;-0.3762063;0.01124824,-0.104801;-0.716508;0.09166847,-0.1071585;-0.7047493;-0.006625459,0.002731205;0.3994923;0.01885903,52.26773
+0;0;0,-0.005443969;0.199367;0.01493866,-0.01190294;0.499105;0.02408899,0.1065814;0.3760999;0.006114457,0.3293142;0.2068941;0.01874299,0.5874239;0.1080177;-0.02601004,-0.120207;0.3612158;-0.004393095,-0.1894386;0.09061983;0.01522335,-0.2077452;-0.1873508;-0.0130115,0.07316333;0.009087109;-0.03105723,0.09652863;-0.3691687;-0.003189746,0.1039419;-0.7119443;0.06716612,0.1153583;-0.758306;0.003616437,-0.0674018;-0.001360567;-0.04307141,-0.08690866;-0.3795678;-0.01178587,-0.09687348;-0.7227925;0.05601861,-0.07847635;-0.7675398;-0.007812388,-0.009870089;0.3991265;0.02368785,0;0;0,0.0007042455;0.1995918;0.01275264,0.003818831;0.4994649;0.0185813,0.1171451;0.3797523;-0.01061681,0.2183669;0.1207005;0.02172992,0.3139261;-0.1418474;0.0400887,-0.1118178;0.3693177;-0.0005136076,-0.1932789;0.1038233;0.03521895,-0.2521782;-0.1694741;0.05069157,0.06982174;0.00523738;-0.03869749,0.09914346;-0.3697927;0.01508607,0.1008141;-0.7114211;0.09115968,0.1055372;-0.7609779;0.03075755,-0.0721643;0.0006638367;-0.03452351,-0.08928652;-0.3761678;0.01135411,-0.1047094;-0.7164969;0.09159243,-0.1072137;-0.7047237;-0.006700575,0.00262516;0.3994747;0.01931982,52.28986
+0;0;0,-0.005443969;0.199367;0.01493866,-0.01190294;0.499105;0.02408899,0.1065814;0.3760999;0.006114457,0.3293142;0.2068941;0.01874299,0.5874239;0.1080177;-0.02601004,-0.120207;0.3612158;-0.004393095,-0.1894386;0.09061983;0.01522335,-0.2077452;-0.1873508;-0.0130115,0.07316333;0.009087109;-0.03105723,0.09652863;-0.3691687;-0.003189746,0.1039419;-0.7119443;0.06716612,0.1153583;-0.758306;0.003616437,-0.0674018;-0.001360567;-0.04307141,-0.08690866;-0.3795678;-0.01178587,-0.09687348;-0.7227925;0.05601861,-0.07847635;-0.7675398;-0.007812388,-0.009870089;0.3991265;0.02368785,0;0;0,0.0007042455;0.1995918;0.01275264,0.003818831;0.4994649;0.0185813,0.1171451;0.3797523;-0.01061681,0.2183669;0.1207005;0.02172992,0.3139261;-0.1418474;0.0400887,-0.1118178;0.3693177;-0.0005136076,-0.1932789;0.1038233;0.03521895,-0.2521782;-0.1694741;0.05069157,0.06982174;0.00523738;-0.03869749,0.09914346;-0.3697927;0.01508607,0.1008141;-0.7114211;0.09115968,0.1055372;-0.7609779;0.03075755,-0.0721643;0.0006638367;-0.03452351,-0.08928652;-0.3761678;0.01135411,-0.1047094;-0.7164969;0.09159243,-0.1072137;-0.7047237;-0.006700575,0.00262516;0.3994747;0.01931982,52.30117
+0;0;0,-0.005443969;0.199367;0.01493866,-0.01190294;0.499105;0.02408899,0.1065814;0.3760999;0.006114457,0.3293142;0.2068941;0.01874299,0.5874239;0.1080177;-0.02601004,-0.120207;0.3612158;-0.004393095,-0.1894386;0.09061983;0.01522335,-0.2077452;-0.1873508;-0.0130115,0.07316333;0.009087109;-0.03105723,0.09652863;-0.3691687;-0.003189746,0.1039419;-0.7119443;0.06716612,0.1153583;-0.758306;0.003616437,-0.0674018;-0.001360567;-0.04307141,-0.08690866;-0.3795678;-0.01178587,-0.09687348;-0.7227925;0.05601861,-0.07847635;-0.7675398;-0.007812388,-0.009870089;0.3991265;0.02368785,0;0;0,0.0007042455;0.1995918;0.01275264,0.003818831;0.4994649;0.0185813,0.1171451;0.3797523;-0.01061681,0.2183669;0.1207005;0.02172992,0.3139261;-0.1418474;0.0400887,-0.1118178;0.3693177;-0.0005136076,-0.1932789;0.1038233;0.03521895,-0.2521782;-0.1694741;0.05069157,0.06982174;0.00523738;-0.03869749,0.09914346;-0.3697927;0.01508607,0.1008141;-0.7114211;0.09115968,0.1055372;-0.7609779;0.03075755,-0.0721643;0.0006638367;-0.03452351,-0.08928652;-0.3761678;0.01135411,-0.1047094;-0.7164969;0.09159243,-0.1072137;-0.7047237;-0.006700575,0.00262516;0.3994747;0.01931982,52.31244
+0;0;0,-0.005014174;0.1993954;0.01470833,-0.009350706;0.4992035;0.02250026,0.1082238;0.3759599;0.005440462,0.3266615;0.2012877;0.01865376,0.5813378;0.09387378;-0.02609272,-0.1189291;0.361601;-0.00434936,-0.1883363;0.09104341;0.01517581,-0.2067318;-0.1869249;-0.01302419,0.07313466;0.009051864;-0.03113494,0.09651273;-0.3691987;-0.003206164,0.1039871;-0.7119865;0.06708349,0.115426;-0.7583417;0.003530033,-0.06746171;-0.001318489;-0.04297883,-0.08658515;-0.3795545;-0.01180498,-0.09672712;-0.7228175;0.05577945,-0.07849893;-0.7676572;-0.007991806,-0.00823082;0.3992099;0.02269609,0;0;0,0.0007422211;0.1995868;0.01282777,0.003619608;0.4994597;0.01881098,0.1168316;0.3792066;-0.01096024,0.2150078;0.1190912;0.02222687,0.3056631;-0.1451586;0.04103382,-0.1119636;0.3691311;0.0002946556,-0.1932598;0.1035107;0.03546131,-0.2519294;-0.1698345;0.05096209,0.06973153;0.005219029;-0.03886228,0.0990523;-0.3697895;0.01507188,0.1009586;-0.7114687;0.09091163,0.105129;-0.7619957;0.0317676,-0.07226459;0.0007110863;-0.03431215,-0.08933025;-0.3761745;0.01114093,-0.1048848;-0.7165231;0.09127153,-0.1077868;-0.7047426;-0.007011883,0.002540917;0.3994678;0.01948865,52.33445
+0;0;0,-0.005014174;0.1993954;0.01470833,-0.009350706;0.4992035;0.02250026,0.1082238;0.3759599;0.005440462,0.3266615;0.2012877;0.01865376,0.5813378;0.09387378;-0.02609272,-0.1189291;0.361601;-0.00434936,-0.1883363;0.09104341;0.01517581,-0.2067318;-0.1869249;-0.01302419,0.07313466;0.009051864;-0.03113494,0.09651273;-0.3691987;-0.003206164,0.1039871;-0.7119865;0.06708349,0.115426;-0.7583417;0.003530033,-0.06746171;-0.001318489;-0.04297883,-0.08658515;-0.3795545;-0.01180498,-0.09672712;-0.7228175;0.05577945,-0.07849893;-0.7676572;-0.007991806,-0.00823082;0.3992099;0.02269609,0;0;0,0.0007422211;0.1995868;0.01282777,0.003619608;0.4994597;0.01881098,0.1168316;0.3792066;-0.01096024,0.2150078;0.1190912;0.02222687,0.3056631;-0.1451586;0.04103382,-0.1119636;0.3691311;0.0002946556,-0.1932598;0.1035107;0.03546131,-0.2519294;-0.1698345;0.05096209,0.06973153;0.005219029;-0.03886228,0.0990523;-0.3697895;0.01507188,0.1009586;-0.7114687;0.09091163,0.105129;-0.7619957;0.0317676,-0.07226459;0.0007110863;-0.03431215,-0.08933025;-0.3761745;0.01114093,-0.1048848;-0.7165231;0.09127153,-0.1077868;-0.7047426;-0.007011883,0.002540917;0.3994678;0.01948865,52.34584
+0;0;0,-0.005014174;0.1993954;0.01470833,-0.009350706;0.4992035;0.02250026,0.1082238;0.3759599;0.005440462,0.3266615;0.2012877;0.01865376,0.5813378;0.09387378;-0.02609272,-0.1189291;0.361601;-0.00434936,-0.1883363;0.09104341;0.01517581,-0.2067318;-0.1869249;-0.01302419,0.07313466;0.009051864;-0.03113494,0.09651273;-0.3691987;-0.003206164,0.1039871;-0.7119865;0.06708349,0.115426;-0.7583417;0.003530033,-0.06746171;-0.001318489;-0.04297883,-0.08658515;-0.3795545;-0.01180498,-0.09672712;-0.7228175;0.05577945,-0.07849893;-0.7676572;-0.007991806,-0.00823082;0.3992099;0.02269609,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.00456924;0.199422;0.01449048,-0.007603331;0.4992625;0.02158621,0.1094886;0.375739;0.005100805,0.323463;0.1955261;0.01685925,0.5723737;0.07460017;-0.02580672,-0.1179973;0.362352;-0.004571399,-0.1880373;0.09195676;0.01494372,-0.2066469;-0.1860282;-0.01294932,0.07310057;0.009067608;-0.03121036,0.09677017;-0.3691689;-0.003336798,0.1040537;-0.7119657;0.06692868,0.1154742;-0.7583218;0.00337299,-0.067506;-0.001315924;-0.04290931,-0.08650651;-0.3795744;-0.01193288,-0.09666453;-0.7228321;0.05567563,-0.07842132;-0.7676562;-0.00810954,-0.006958216;0.3992655;0.02203141,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.00456924;0.199422;0.01449048,-0.007603331;0.4992625;0.02158621,0.1094886;0.375739;0.005100805,0.323463;0.1955261;0.01685925,0.5723737;0.07460017;-0.02580672,-0.1179973;0.362352;-0.004571399,-0.1880373;0.09195676;0.01494372,-0.2066469;-0.1860282;-0.01294932,0.07310057;0.009067608;-0.03121036,0.09677017;-0.3691689;-0.003336798,0.1040537;-0.7119657;0.06692868,0.1154742;-0.7583218;0.00337299,-0.067506;-0.001315924;-0.04290931,-0.08650651;-0.3795744;-0.01193288,-0.09666453;-0.7228321;0.05567563,-0.07842132;-0.7676562;-0.00810954,-0.006958216;0.3992655;0.02203141,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.00456924;0.199422;0.01449048,-0.007603331;0.4992625;0.02158621,0.1094886;0.375739;0.005100805,0.323463;0.1955261;0.01685925,0.5723737;0.07460017;-0.02580672,-0.1179973;0.362352;-0.004571399,-0.1880373;0.09195676;0.01494372,-0.2066469;-0.1860282;-0.01294932,0.07310057;0.009067608;-0.03121036,0.09677017;-0.3691689;-0.003336798,0.1040537;-0.7119657;0.06692868,0.1154742;-0.7583218;0.00337299,-0.067506;-0.001315924;-0.04290931,-0.08650651;-0.3795744;-0.01193288,-0.09666453;-0.7228321;0.05567563,-0.07842132;-0.7676562;-0.00810954,-0.006958216;0.3992655;0.02203141,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.004223257;0.1994397;0.01435111,-0.006865288;0.4992894;0.02124661,0.1101474;0.375945;0.004716596,0.319606;0.1905552;0.01727426,0.565107;0.06247401;-0.024253,-0.1175661;0.3627481;-0.004508726,-0.187998;0.09245613;0.01502649,-0.2067553;-0.1855112;-0.01294329,0.07309756;0.009070334;-0.03121657,0.09659627;-0.3691601;-0.003117144,0.1039149;-0.7119956;0.06695613,0.1153446;-0.7583184;0.003362082,-0.06751427;-0.001323935;-0.04289604,-0.08620986;-0.379589;-0.01181466,-0.09639965;-0.7228341;0.05585302,-0.07882828;-0.7677328;-0.008033097,-0.006321494;0.3992921;0.02174326,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.004223257;0.1994397;0.01435111,-0.006865288;0.4992894;0.02124661,0.1101474;0.375945;0.004716596,0.319606;0.1905552;0.01727426,0.565107;0.06247401;-0.024253,-0.1175661;0.3627481;-0.004508726,-0.187998;0.09245613;0.01502649,-0.2067553;-0.1855112;-0.01294329,0.07309756;0.009070334;-0.03121657,0.09659627;-0.3691601;-0.003117144,0.1039149;-0.7119956;0.06695613,0.1153446;-0.7583184;0.003362082,-0.06751427;-0.001323935;-0.04289604,-0.08620986;-0.379589;-0.01181466,-0.09639965;-0.7228341;0.05585302,-0.07882828;-0.7677328;-0.008033097,-0.006321494;0.3992921;0.02174326,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.004223257;0.1994397;0.01435111,-0.006865288;0.4992894;0.02124661,0.1101474;0.375945;0.004716596,0.319606;0.1905552;0.01727426,0.565107;0.06247401;-0.024253,-0.1175661;0.3627481;-0.004508726,-0.187998;0.09245613;0.01502649,-0.2067553;-0.1855112;-0.01294329,0.07309756;0.009070334;-0.03121657,0.09659627;-0.3691601;-0.003117144,0.1039149;-0.7119956;0.06695613,0.1153446;-0.7583184;0.003362082,-0.06751427;-0.001323935;-0.04289604,-0.08620986;-0.379589;-0.01181466,-0.09639965;-0.7228341;0.05585302,-0.07882828;-0.7677328;-0.008033097,-0.006321494;0.3992921;0.02174326,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.004132435;0.1994413;0.0143556,-0.006707447;0.4992893;0.02138197,0.1102633;0.3759907;0.004585328,0.3148397;0.1853023;0.01823969,0.5521633;0.04236566;-0.02233905,-0.1174602;0.3630319;-0.004699906,-0.1883364;0.09286016;0.01489089,-0.2071695;-0.1851243;-0.01285725,0.07309637;0.009045219;-0.03122667,0.09668908;-0.369158;-0.00284205,0.1040447;-0.7120605;0.06689882,0.1153809;-0.758465;0.003386214,-0.06752573;-0.001305061;-0.04287857,-0.08609496;-0.3795584;-0.0115806,-0.09643331;-0.7228417;0.05587063,-0.07833637;-0.7673151;-0.008365054,-0.006184947;0.3992916;0.02181525,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.004132435;0.1994413;0.0143556,-0.006707447;0.4992893;0.02138197,0.1102633;0.3759907;0.004585328,0.3148397;0.1853023;0.01823969,0.5521633;0.04236566;-0.02233905,-0.1174602;0.3630319;-0.004699906,-0.1883364;0.09286016;0.01489089,-0.2071695;-0.1851243;-0.01285725,0.07309637;0.009045219;-0.03122667,0.09668908;-0.369158;-0.00284205,0.1040447;-0.7120605;0.06689882,0.1153809;-0.758465;0.003386214,-0.06752573;-0.001305061;-0.04287857,-0.08609496;-0.3795584;-0.0115806,-0.09643331;-0.7228417;0.05587063,-0.07833637;-0.7673151;-0.008365054,-0.006184947;0.3992916;0.02181525,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.004132435;0.1994413;0.0143556,-0.006707447;0.4992893;0.02138197,0.1102633;0.3759907;0.004585328,0.3148397;0.1853023;0.01823969,0.5521633;0.04236566;-0.02233905,-0.1174602;0.3630319;-0.004699906,-0.1883364;0.09286016;0.01489089,-0.2071695;-0.1851243;-0.01285725,0.07309637;0.009045219;-0.03122667,0.09668908;-0.369158;-0.00284205,0.1040447;-0.7120605;0.06689882,0.1153809;-0.758465;0.003386214,-0.06752573;-0.001305061;-0.04287857,-0.08609496;-0.3795584;-0.0115806,-0.09643331;-0.7228417;0.05587063,-0.07833637;-0.7673151;-0.008365054,-0.006184947;0.3992916;0.02181525,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003684995;0.1994643;0.01415663,-0.005517856;0.499324;0.02094008,0.1112256;0.3761513;0.00410551,0.3112087;0.180673;0.01807051,0.5449514;0.03192776;-0.02241629,-0.11672;0.3634543;-0.004710224,-0.1879311;0.09336272;0.01477152,-0.2069148;-0.1846563;-0.01252374,0.07298456;0.009160561;-0.03145375,0.09650923;-0.3690561;-0.00319149,0.1040263;-0.7119038;0.06680059,0.1153633;-0.7581955;0.003152736,-0.06756934;-0.001353829;-0.04280832,-0.08587205;-0.3796176;-0.01147947,-0.09638617;-0.7229194;0.05585064,-0.07816005;-0.7676913;-0.008000623,-0.005232512;0.3993257;0.02143902,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003684995;0.1994643;0.01415663,-0.005517856;0.499324;0.02094008,0.1112256;0.3761513;0.00410551,0.3112087;0.180673;0.01807051,0.5449514;0.03192776;-0.02241629,-0.11672;0.3634543;-0.004710224,-0.1879311;0.09336272;0.01477152,-0.2069148;-0.1846563;-0.01252374,0.07298456;0.009160561;-0.03145375,0.09650923;-0.3690561;-0.00319149,0.1040263;-0.7119038;0.06680059,0.1153633;-0.7581955;0.003152736,-0.06756934;-0.001353829;-0.04280832,-0.08587205;-0.3796176;-0.01147947,-0.09638617;-0.7229194;0.05585064,-0.07816005;-0.7676913;-0.008000623,-0.005232512;0.3993257;0.02143902,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003684995;0.1994643;0.01415663,-0.005517856;0.499324;0.02094008,0.1112256;0.3761513;0.00410551,0.3112087;0.180673;0.01807051,0.5449514;0.03192776;-0.02241629,-0.11672;0.3634543;-0.004710224,-0.1879311;0.09336272;0.01477152,-0.2069148;-0.1846563;-0.01252374,0.07298456;0.009160561;-0.03145375,0.09650923;-0.3690561;-0.00319149,0.1040263;-0.7119038;0.06680059,0.1153633;-0.7581955;0.003152736,-0.06756934;-0.001353829;-0.04280832,-0.08587205;-0.3796176;-0.01147947,-0.09638617;-0.7229194;0.05585064,-0.07816005;-0.7676913;-0.008000623,-0.005232512;0.3993257;0.02143902,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003400448;0.1994801;0.01400392,-0.004851491;0.4993472;0.0205724,0.1118015;0.3766015;0.003410723,0.3064239;0.1758764;0.01862896,0.5381654;0.02407895;-0.0220332,-0.1162981;0.3636286;-0.004671471,-0.1876964;0.09358945;0.01485182,-0.2059812;-0.184518;-0.01201623,0.07295495;0.009136152;-0.03152946,0.09649561;-0.3690669;-0.003098652,0.1039404;-0.7119466;0.06674418,0.1161115;-0.7578937;0.002838701,-0.06759618;-0.001323596;-0.04276685,-0.08558643;-0.3795871;-0.0112533,-0.09635931;-0.7229064;0.05594623,-0.07802086;-0.7671407;-0.008497257,-0.004682103;0.3993489;0.02113403,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003400448;0.1994801;0.01400392,-0.004851491;0.4993472;0.0205724,0.1118015;0.3766015;0.003410723,0.3064239;0.1758764;0.01862896,0.5381654;0.02407895;-0.0220332,-0.1162981;0.3636286;-0.004671471,-0.1876964;0.09358945;0.01485182,-0.2059812;-0.184518;-0.01201623,0.07295495;0.009136152;-0.03152946,0.09649561;-0.3690669;-0.003098652,0.1039404;-0.7119466;0.06674418,0.1161115;-0.7578937;0.002838701,-0.06759618;-0.001323596;-0.04276685,-0.08558643;-0.3795871;-0.0112533,-0.09635931;-0.7229064;0.05594623,-0.07802086;-0.7671407;-0.008497257,-0.004682103;0.3993489;0.02113403,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003400448;0.1994801;0.01400392,-0.004851491;0.4993472;0.0205724,0.1118015;0.3766015;0.003410723,0.3064239;0.1758764;0.01862896,0.5381654;0.02407895;-0.0220332,-0.1162981;0.3636286;-0.004671471,-0.1876964;0.09358945;0.01485182,-0.2059812;-0.184518;-0.01201623,0.07295495;0.009136152;-0.03152946,0.09649561;-0.3690669;-0.003098652,0.1039404;-0.7119466;0.06674418,0.1161115;-0.7578937;0.002838701,-0.06759618;-0.001323596;-0.04276685,-0.08558643;-0.3795871;-0.0112533,-0.09635931;-0.7229064;0.05594623,-0.07802086;-0.7671407;-0.008497257,-0.004682103;0.3993489;0.02113403,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003141622;0.1994914;0.01390411,-0.004382415;0.4993609;0.02042714,0.1122218;0.3768927;0.002949206,0.3014368;0.1711088;0.018781,0.529781;0.01378144;-0.02003939,-0.1159457;0.3641209;-0.005194334,-0.1885563;0.09442949;0.01466125,-0.2062929;-0.1838353;-0.01091474,0.07294939;0.00904272;-0.03156922,0.09649078;-0.3691499;-0.00300106,0.1040265;-0.7120011;0.06697235,0.1161397;-0.7578962;0.002994239,-0.0676157;-0.001177849;-0.04274027,-0.08535657;-0.3794457;-0.01113866,-0.09664986;-0.7227724;0.05593794,-0.07850099;-0.7669744;-0.008596353,-0.004266503;0.3993625;0.02099328,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003141622;0.1994914;0.01390411,-0.004382415;0.4993609;0.02042714,0.1122218;0.3768927;0.002949206,0.3014368;0.1711088;0.018781,0.529781;0.01378144;-0.02003939,-0.1159457;0.3641209;-0.005194334,-0.1885563;0.09442949;0.01466125,-0.2062929;-0.1838353;-0.01091474,0.07294939;0.00904272;-0.03156922,0.09649078;-0.3691499;-0.00300106,0.1040265;-0.7120011;0.06697235,0.1161397;-0.7578962;0.002994239,-0.0676157;-0.001177849;-0.04274027,-0.08535657;-0.3794457;-0.01113866,-0.09664986;-0.7227724;0.05593794,-0.07850099;-0.7669744;-0.008596353,-0.004266503;0.3993625;0.02099328,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.003141622;0.1994914;0.01390411,-0.004382415;0.4993609;0.02042714,0.1122218;0.3768927;0.002949206,0.3014368;0.1711088;0.018781,0.529781;0.01378144;-0.02003939,-0.1159457;0.3641209;-0.005194334,-0.1885563;0.09442949;0.01466125,-0.2062929;-0.1838353;-0.01091474,0.07294939;0.00904272;-0.03156922,0.09649078;-0.3691499;-0.00300106,0.1040265;-0.7120011;0.06697235,0.1161397;-0.7578962;0.002994239,-0.0676157;-0.001177849;-0.04274027,-0.08535657;-0.3794457;-0.01113866,-0.09664986;-0.7227724;0.05593794,-0.07850099;-0.7669744;-0.008596353,-0.004266503;0.3993625;0.02099328,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.002913716;0.1995028;0.01378889,-0.00387903;0.4993756;0.02022739,0.1126801;0.3770816;0.00279852,0.2962939;0.1662924;0.01873183,0.5209555;0.003443673;-0.01878449,-0.115505;0.3639978;-0.005277799,-0.1883715;0.09438506;0.01470781,-0.2059275;-0.1838924;-0.01085448,0.0728403;0.009077988;-0.03181008,0.09665537;-0.3691026;-0.003310047,0.1041287;-0.7118578;0.06713892,0.1161537;-0.7575159;0.002864055,-0.06765892;-0.001214455;-0.04267079,-0.08510098;-0.3794955;-0.01105994,-0.09671447;-0.7228187;0.05597963,-0.07837982;-0.7670847;-0.008428439,-0.003846409;0.3993773;0.02081146,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.002913716;0.1995028;0.01378889,-0.00387903;0.4993756;0.02022739,0.1126801;0.3770816;0.00279852,0.2962939;0.1662924;0.01873183,0.5209555;0.003443673;-0.01878449,-0.115505;0.3639978;-0.005277799,-0.1883715;0.09438506;0.01470781,-0.2059275;-0.1838924;-0.01085448,0.0728403;0.009077988;-0.03181008,0.09665537;-0.3691026;-0.003310047,0.1041287;-0.7118578;0.06713892,0.1161537;-0.7575159;0.002864055,-0.06765892;-0.001214455;-0.04267079,-0.08510098;-0.3794955;-0.01105994,-0.09671447;-0.7228187;0.05597963,-0.07837982;-0.7670847;-0.008428439,-0.003846409;0.3993773;0.02081146,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.002913716;0.1995028;0.01378889,-0.00387903;0.4993756;0.02022739,0.1126801;0.3770816;0.00279852,0.2962939;0.1662924;0.01873183,0.5209555;0.003443673;-0.01878449,-0.115505;0.3639978;-0.005277799,-0.1883715;0.09438506;0.01470781,-0.2059275;-0.1838924;-0.01085448,0.0728403;0.009077988;-0.03181008,0.09665537;-0.3691026;-0.003310047,0.1041287;-0.7118578;0.06713892,0.1161537;-0.7575159;0.002864055,-0.06765892;-0.001214455;-0.04267079,-0.08510098;-0.3794955;-0.01105994,-0.09671447;-0.7228187;0.05597963,-0.07837982;-0.7670847;-0.008428439,-0.003846409;0.3993773;0.02081146,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.002601802;0.1995091;0.01376083,-0.003031241;0.4993847;0.0201362,0.1133375;0.3775037;0.002266645,0.291123;0.1618419;0.01906731,0.5089619;-0.01015426;-0.01785937,-0.1149929;0.3641509;-0.004955506,-0.1877852;0.09450278;0.01482327,-0.2052376;-0.1838008;-0.01052516,0.07272631;0.009074694;-0.03207077,0.09696334;-0.3690644;-0.003376406,0.1042836;-0.7117892;0.06723621,0.1161751;-0.7574873;0.002983682,-0.06772957;-0.001237888;-0.04255787,-0.08493058;-0.3795246;-0.01088321,-0.09663446;-0.7228517;0.05612079,-0.07879232;-0.7673385;-0.00817062,-0.003196222;0.3993866;0.0207338,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.002601802;0.1995091;0.01376083,-0.003031241;0.4993847;0.0201362,0.1133375;0.3775037;0.002266645,0.291123;0.1618419;0.01906731,0.5089619;-0.01015426;-0.01785937,-0.1149929;0.3641509;-0.004955506,-0.1877852;0.09450278;0.01482327,-0.2052376;-0.1838008;-0.01052516,0.07272631;0.009074694;-0.03207077,0.09696334;-0.3690644;-0.003376406,0.1042836;-0.7117892;0.06723621,0.1161751;-0.7574873;0.002983682,-0.06772957;-0.001237888;-0.04255787,-0.08493058;-0.3795246;-0.01088321,-0.09663446;-0.7228517;0.05612079,-0.07879232;-0.7673385;-0.00817062,-0.003196222;0.3993866;0.0207338,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.002601802;0.1995091;0.01376083,-0.003031241;0.4993847;0.0201362,0.1133375;0.3775037;0.002266645,0.291123;0.1618419;0.01906731,0.5089619;-0.01015426;-0.01785937,-0.1149929;0.3641509;-0.004955506,-0.1877852;0.09450278;0.01482327,-0.2052376;-0.1838008;-0.01052516,0.07272631;0.009074694;-0.03207077,0.09696334;-0.3690644;-0.003376406,0.1042836;-0.7117892;0.06723621,0.1161751;-0.7574873;0.002983682,-0.06772957;-0.001237888;-0.04255787,-0.08493058;-0.3795246;-0.01088321,-0.09663446;-0.7228517;0.05612079,-0.07879232;-0.7673385;-0.00817062,-0.003196222;0.3993866;0.0207338,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.00228765;0.1995239;0.01360145,-0.002377685;0.4994024;0.01987507,0.1138691;0.3775779;0.001825199,0.2857747;0.1572406;0.01914427,0.4988337;-0.02094412;-0.01629638,-0.1144814;0.3645295;-0.005499497,-0.1864798;0.09488052;0.01698736,-0.2056533;-0.1831668;-0.009883728,0.07271135;0.009015502;-0.03212135,0.09691861;-0.3691013;-0.003109943,0.1040874;-0.7118553;0.06737663,0.1171125;-0.7583811;0.004335798,-0.06774954;-0.001202001;-0.04252711,-0.08471578;-0.3794902;-0.010744,-0.09623091;-0.7228395;0.05617884,-0.0788663;-0.7680295;-0.007421024,-0.002642557;0.3994046;0.02049672,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.00228765;0.1995239;0.01360145,-0.002377685;0.4994024;0.01987507,0.1138691;0.3775779;0.001825199,0.2857747;0.1572406;0.01914427,0.4988337;-0.02094412;-0.01629638,-0.1144814;0.3645295;-0.005499497,-0.1864798;0.09488052;0.01698736,-0.2056533;-0.1831668;-0.009883728,0.07271135;0.009015502;-0.03212135,0.09691861;-0.3691013;-0.003109943,0.1040874;-0.7118553;0.06737663,0.1171125;-0.7583811;0.004335798,-0.06774954;-0.001202001;-0.04252711,-0.08471578;-0.3794902;-0.010744,-0.09623091;-0.7228395;0.05617884,-0.0788663;-0.7680295;-0.007421024,-0.002642557;0.3994046;0.02049672,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.00228765;0.1995239;0.01360145,-0.002377685;0.4994024;0.01987507,0.1138691;0.3775779;0.001825199,0.2857747;0.1572406;0.01914427,0.4988337;-0.02094412;-0.01629638,-0.1144814;0.3645295;-0.005499497,-0.1864798;0.09488052;0.01698736,-0.2056533;-0.1831668;-0.009883728,0.07271135;0.009015502;-0.03212135,0.09691861;-0.3691013;-0.003109943,0.1040874;-0.7118553;0.06737663,0.1171125;-0.7583811;0.004335798,-0.06774954;-0.001202001;-0.04252711,-0.08471578;-0.3794902;-0.010744,-0.09623091;-0.7228395;0.05617884,-0.0788663;-0.7680295;-0.007421024,-0.002642557;0.3994046;0.02049672,0;0;0,0.0008171976;0.1995803;0.01292359,0.003812694;0.4994467;0.01919448,0.1168641;0.3787287;-0.01084887,0.2126558;0.1177409;0.02245798,0.300355;-0.1474268;0.04233001,-0.111799;0.3688813;0.0009133723,-0.1930732;0.1032182;0.03580789,-0.2510528;-0.1702436;0.05184022,0.06966649;0.005163944;-0.03898607,0.0990788;-0.3698298;0.01500073,0.1011215;-0.7114266;0.09120758,0.1051927;-0.761615;0.03159847,-0.07237244;0.000759928;-0.034083,-0.08907437;-0.3760408;0.01220141,-0.1048948;-0.7165458;0.09161205,-0.1079667;-0.704757;-0.006667718,0.002700018;0.3994545;0.01976152,52.35727
+0;0;0,-0.002168262;0.1995176;0.01371305,-0.002214445;0.4993922;0.020181,0.1140255;0.3780031;0.001644243,0.280533;0.1535916;0.01938486,0.4864639;-0.03277177;-0.01612848,-0.1143345;0.3645691;-0.005348273,-0.1852721;0.0945226;0.01569278,-0.2052321;-0.1835555;-0.01027156,0.07255676;0.008933486;-0.03249168,0.09671602;-0.3691363;-0.002834642,0.1040123;-0.7119045;0.06756933,0.1167662;-0.758616;0.004698828,-0.06785935;-0.001204746;-0.04235157,-0.08450185;-0.379518;-0.01069474,-0.09634104;-0.7228305;0.05636017,-0.07879029;-0.7678219;-0.007422742,-0.002499536;0.3993941;0.02073166,0;0;0,0.002165623;0.1998143;0.008338828,0.004640207;0.4997459;0.007100144,0.1178985;0.3793956;-0.02095043,0.2776892;0.1553004;0.03051091,0.4876981;-0.02987954;0.03266912,-0.111472;0.3714884;-0.007178201,-0.1879153;0.104601;0.0292571,-0.2379319;-0.1708906;0.0276056,0.06818032;0.004107936;-0.04164817,0.1048321;-0.3727444;-0.009415329,0.1141462;-0.7175947;0.0496739,0.1078422;-0.7059224;-0.04842991,-0.07365897;0.0009513125;-0.03120016,-0.08097824;-0.3782595;-0.007842304,-0.08935774;-0.7234157;0.04957656,-0.09310539;-0.711717;-0.04866305,0.003832828;0.3997984;0.0102383,60.43287
+0;0;0,-0.002168262;0.1995176;0.01371305,-0.002214445;0.4993922;0.020181,0.1140255;0.3780031;0.001644243,0.280533;0.1535916;0.01938486,0.4864639;-0.03277177;-0.01612848,-0.1143345;0.3645691;-0.005348273,-0.1852721;0.0945226;0.01569278,-0.2052321;-0.1835555;-0.01027156,0.07255676;0.008933486;-0.03249168,0.09671602;-0.3691363;-0.002834642,0.1040123;-0.7119045;0.06756933,0.1167662;-0.758616;0.004698828,-0.06785935;-0.001204746;-0.04235157,-0.08450185;-0.379518;-0.01069474,-0.09634104;-0.7228305;0.05636017,-0.07879029;-0.7678219;-0.007422742,-0.002499536;0.3993941;0.02073166,0;0;0,0.001894483;0.199817;0.008342296,0.004263171;0.4997495;0.007117533,0.1177138;0.3792338;-0.02017621,0.2767718;0.1544653;0.03061452,0.4848133;-0.03291993;0.03295961,-0.11204;0.3719738;-0.006562894,-0.1887152;0.1048242;0.02737807,-0.2382587;-0.1707469;0.02493184,0.06825912;0.004138566;-0.04151583,0.1046014;-0.37276;-0.009473763,0.1136425;-0.7176275;0.04955729,0.1073947;-0.7059562;-0.04854993,-0.07358664;0.001000317;-0.03136885,-0.08114742;-0.3782035;-0.007973364,-0.08981379;-0.7233195;0.04964453,-0.09350494;-0.7116294;-0.0485956,0.00347177;0.3998017;0.01024928,60.4548
+0;0;0,-0.002168262;0.1995176;0.01371305,-0.002214445;0.4993922;0.020181,0.1140255;0.3780031;0.001644243,0.280533;0.1535916;0.01938486,0.4864639;-0.03277177;-0.01612848,-0.1143345;0.3645691;-0.005348273,-0.1852721;0.0945226;0.01569278,-0.2052321;-0.1835555;-0.01027156,0.07255676;0.008933486;-0.03249168,0.09671602;-0.3691363;-0.002834642,0.1040123;-0.7119045;0.06756933,0.1167662;-0.758616;0.004698828,-0.06785935;-0.001204746;-0.04235157,-0.08450185;-0.379518;-0.01069474,-0.09634104;-0.7228305;0.05636017,-0.07879029;-0.7678219;-0.007422742,-0.002499536;0.3993941;0.02073166,0;0;0,0.001894483;0.199817;0.008342296,0.004263171;0.4997495;0.007117533,0.1177138;0.3792338;-0.02017621,0.2767718;0.1544653;0.03061452,0.4848133;-0.03291993;0.03295961,-0.11204;0.3719738;-0.006562894,-0.1887152;0.1048242;0.02737807,-0.2382587;-0.1707469;0.02493184,0.06825912;0.004138566;-0.04151583,0.1046014;-0.37276;-0.009473763,0.1136425;-0.7176275;0.04955729,0.1073947;-0.7059562;-0.04854993,-0.07358664;0.001000317;-0.03136885,-0.08114742;-0.3782035;-0.007973364,-0.08981379;-0.7233195;0.04964453,-0.09350494;-0.7116294;-0.0485956,0.00347177;0.3998017;0.01024928,60.46616
+0;0;0,-0.001856255;0.1995294;0.0135855,-0.001360856;0.4994066;0.01992423,0.114688;0.3780354;0.001356719,0.276291;0.1501;0.01952067,0.4764925;-0.04254478;-0.01522655,-0.1137594;0.3647711;-0.005406575,-0.1848759;0.09478295;0.01577952,-0.2049813;-0.1832812;-0.01022287,0.07255699;0.00891026;-0.03249754,0.09670446;-0.3691523;-0.002738148,0.104086;-0.7118945;0.0677836,0.1165564;-0.7586406;0.004898667,-0.06787733;-0.001198352;-0.04232293,-0.08414435;-0.3795204;-0.01057723,-0.09629044;-0.722827;0.05645284,-0.07876227;-0.7681396;-0.006956827,-0.00182901;0.3994095;0.02051195,0;0;0,0.001446553;0.199811;0.008570815,0.003561674;0.4997452;0.007480019,0.1169728;0.3793943;-0.02028834,0.2750247;0.1540696;0.0311742,0.4812666;-0.03530331;0.0326562,-0.1124406;0.3714083;-0.006990446,-0.1889906;0.1042053;0.02681302,-0.2380302;-0.1714453;0.02336808,0.06835572;0.004329139;-0.04133707,0.1043381;-0.3725802;-0.00901705,0.1128109;-0.7174529;0.05006798,0.116054;-0.7660517;-0.0116711,-0.07334751;0.0008577321;-0.03192816,-0.08132758;-0.3783363;-0.008514605,-0.0905542;-0.7232969;0.04994046,-0.09419826;-0.7115927;-0.04830407,0.002821;0.3997962;0.01058451,60.48849
+0;0;0,-0.001856255;0.1995294;0.0135855,-0.001360856;0.4994066;0.01992423,0.114688;0.3780354;0.001356719,0.276291;0.1501;0.01952067,0.4764925;-0.04254478;-0.01522655,-0.1137594;0.3647711;-0.005406575,-0.1848759;0.09478295;0.01577952,-0.2049813;-0.1832812;-0.01022287,0.07255699;0.00891026;-0.03249754,0.09670446;-0.3691523;-0.002738148,0.104086;-0.7118945;0.0677836,0.1165564;-0.7586406;0.004898667,-0.06787733;-0.001198352;-0.04232293,-0.08414435;-0.3795204;-0.01057723,-0.09629044;-0.722827;0.05645284,-0.07876227;-0.7681396;-0.006956827,-0.00182901;0.3994095;0.02051195,0;0;0,0.001446553;0.199811;0.008570815,0.003561674;0.4997452;0.007480019,0.1169728;0.3793943;-0.02028834,0.2750247;0.1540696;0.0311742,0.4812666;-0.03530331;0.0326562,-0.1124406;0.3714083;-0.006990446,-0.1889906;0.1042053;0.02681302,-0.2380302;-0.1714453;0.02336808,0.06835572;0.004329139;-0.04133707,0.1043381;-0.3725802;-0.00901705,0.1128109;-0.7174529;0.05006798,0.116054;-0.7660517;-0.0116711,-0.07334751;0.0008577321;-0.03192816,-0.08132758;-0.3783363;-0.008514605,-0.0905542;-0.7232969;0.04994046,-0.09419826;-0.7115927;-0.04830407,0.002821;0.3997962;0.01058451,60.51085
+0;0;0,-0.001856255;0.1995294;0.0135855,-0.001360856;0.4994066;0.01992423,0.114688;0.3780354;0.001356719,0.276291;0.1501;0.01952067,0.4764925;-0.04254478;-0.01522655,-0.1137594;0.3647711;-0.005406575,-0.1848759;0.09478295;0.01577952,-0.2049813;-0.1832812;-0.01022287,0.07255699;0.00891026;-0.03249754,0.09670446;-0.3691523;-0.002738148,0.104086;-0.7118945;0.0677836,0.1165564;-0.7586406;0.004898667,-0.06787733;-0.001198352;-0.04232293,-0.08414435;-0.3795204;-0.01057723,-0.09629044;-0.722827;0.05645284,-0.07876227;-0.7681396;-0.006956827,-0.00182901;0.3994095;0.02051195,0;0;0,0.001193973;0.1998035;0.008783009,0.003085562;0.4997393;0.007922725,0.1164374;0.3795792;-0.02046273,0.2734922;0.1536793;0.03152805,0.4784577;-0.03707764;0.03250076,-0.1126447;0.3710294;-0.007389506,-0.1893916;0.1037298;0.02518033,-0.2367105;-0.1722022;0.02043958,0.06853148;0.004575305;-0.04101831,0.1043625;-0.3723451;-0.008658621,0.1124101;-0.7172351;0.05038451,0.1156765;-0.7657921;-0.01140649,-0.07287556;0.0005785323;-0.03299724,-0.08158679;-0.3785342;-0.008549588,-0.09084237;-0.7233756;0.05060086,-0.09446342;-0.7116593;-0.04764677,0.002403126;0.3997879;0.01096625,60.52191
+0;0;0,-0.001578725;0.1995378;0.01349776,-0.000810358;0.4994146;0.01984268,0.1151334;0.3781718;0.0009701736,0.2717166;0.1468589;0.02036182,0.4645215;-0.05317439;-0.01446548,-0.1133576;0.3648815;-0.005334949,-0.1847935;0.09497899;0.01586761,-0.204569;-0.1831112;-0.01010871,0.07250629;0.00887346;-0.03262056,0.0970042;-0.3691914;-0.003178915,0.1040561;-0.7118763;0.06765444,0.116737;-0.7583334;0.00446032,-0.06794204;-0.001197286;-0.04221902,-0.08398612;-0.379534;-0.01053451,-0.09629135;-0.722808;0.05663354,-0.0794414;-0.7687745;-0.006177042,-0.001358141;0.3994178;0.02042096,0;0;0,0.001193973;0.1998035;0.008783009,0.003085562;0.4997393;0.007922725,0.1164374;0.3795792;-0.02046273,0.2734922;0.1536793;0.03152805,0.4784577;-0.03707764;0.03250076,-0.1126447;0.3710294;-0.007389506,-0.1893916;0.1037298;0.02518033,-0.2367105;-0.1722022;0.02043958,0.06853148;0.004575305;-0.04101831,0.1043625;-0.3723451;-0.008658621,0.1124101;-0.7172351;0.05038451,0.1156765;-0.7657921;-0.01140649,-0.07287556;0.0005785323;-0.03299724,-0.08158679;-0.3785342;-0.008549588,-0.09084237;-0.7233756;0.05060086,-0.09446342;-0.7116593;-0.04764677,0.002403126;0.3997879;0.01096625,60.54436
+0;0;0,-0.001578725;0.1995378;0.01349776,-0.000810358;0.4994146;0.01984268,0.1151334;0.3781718;0.0009701736,0.2717166;0.1468589;0.02036182,0.4645215;-0.05317439;-0.01446548,-0.1133576;0.3648815;-0.005334949,-0.1847935;0.09497899;0.01586761,-0.204569;-0.1831112;-0.01010871,0.07250629;0.00887346;-0.03262056,0.0970042;-0.3691914;-0.003178915,0.1040561;-0.7118763;0.06765444,0.116737;-0.7583334;0.00446032,-0.06794204;-0.001197286;-0.04221902,-0.08398612;-0.379534;-0.01053451,-0.09629135;-0.722808;0.05663354,-0.0794414;-0.7687745;-0.006177042,-0.001358141;0.3994178;0.02042096,0;0;0,0.001015671;0.1997957;0.008980074,0.002724751;0.4997329;0.008370554,0.1160888;0.3797782;-0.02036642,0.2723939;0.153399;0.03179815,0.4755323;-0.0393049;0.03173838,-0.1132553;0.3717268;-0.006200317,-0.1904436;0.1043309;0.02448148,-0.2377886;-0.1715987;0.0198673,0.06866372;0.004614718;-0.04079213,0.1041254;-0.3723266;-0.008269515,0.1119425;-0.7172322;0.05071365,0.1156774;-0.7658136;-0.0110198,-0.07266343;0.0006764354;-0.03345993,-0.08252466;-0.3783974;-0.008846177,-0.0915939;-0.7230357;0.0515041,-0.09555383;-0.711306;-0.04673294,0.002094103;0.3997789;0.01133834,60.55599
+0;0;0,-0.001578725;0.1995378;0.01349776,-0.000810358;0.4994146;0.01984268,0.1151334;0.3781718;0.0009701736,0.2717166;0.1468589;0.02036182,0.4645215;-0.05317439;-0.01446548,-0.1133576;0.3648815;-0.005334949,-0.1847935;0.09497899;0.01586761,-0.204569;-0.1831112;-0.01010871,0.07250629;0.00887346;-0.03262056,0.0970042;-0.3691914;-0.003178915,0.1040561;-0.7118763;0.06765444,0.116737;-0.7583334;0.00446032,-0.06794204;-0.001197286;-0.04221902,-0.08398612;-0.379534;-0.01053451,-0.09629135;-0.722808;0.05663354,-0.0794414;-0.7687745;-0.006177042,-0.001358141;0.3994178;0.02042096,0;0;0,0.001015671;0.1997957;0.008980074,0.002724751;0.4997329;0.008370554,0.1160888;0.3797782;-0.02036642,0.2723939;0.153399;0.03179815,0.4755323;-0.0393049;0.03173838,-0.1132553;0.3717268;-0.006200317,-0.1904436;0.1043309;0.02448148,-0.2377886;-0.1715987;0.0198673,0.06866372;0.004614718;-0.04079213,0.1041254;-0.3723266;-0.008269515,0.1119425;-0.7172322;0.05071365,0.1156774;-0.7658136;-0.0110198,-0.07266343;0.0006764354;-0.03345993,-0.08252466;-0.3783974;-0.008846177,-0.0915939;-0.7230357;0.0515041,-0.09555383;-0.711306;-0.04673294,0.002094103;0.3997789;0.01133834,60.57765
+0;0;0,-0.001284215;0.1995421;0.01346442,-0.0001377483;0.4994169;0.01986595,0.1157031;0.3785351;0.0007070713,0.2666903;0.1435123;0.01986838,0.4533554;-0.06227942;-0.0148575,-0.1126003;0.3646638;-0.005942574,-0.1840192;0.09483573;0.01624158,-0.2049396;-0.1831257;-0.01021148,0.07244121;0.008812744;-0.03278118,0.09699243;-0.3692179;-0.002947588,0.1038455;-0.7118628;0.06809835,0.1163727;-0.7580873;0.004593238,-0.06802319;-0.001164544;-0.04208906,-0.08389898;-0.3795067;-0.01038485,-0.09626254;-0.7227529;0.05691415,-0.07929792;-0.7687322;-0.005850095,-0.0008099366;0.3994207;0.02041771,0;0;0,0.001220835;0.1997923;0.009029834,0.003514936;0.4997265;0.008577298,0.1165636;0.379734;-0.02049445,0.2721075;0.1528151;0.03160041,0.4744498;-0.04072307;0.03082174,-0.1128682;0.3720541;-0.005475479,-0.1896287;0.1042754;0.02285115,-0.2375806;-0.1715597;0.01889909,0.06872422;0.004621395;-0.04068938,0.1040907;-0.3723186;-0.008047618,0.1119126;-0.7171925;0.05111963,0.1051735;-0.7054794;-0.04696285,-0.07264128;0.0007257508;-0.03350699,-0.08265;-0.3783331;-0.008723833,-0.09171316;-0.7228949;0.05206302,-0.09590279;-0.7111694;-0.04616373,0.002649623;0.3997723;0.01147532,60.58909
+0;0;0,-0.001284215;0.1995421;0.01346442,-0.0001377483;0.4994169;0.01986595,0.1157031;0.3785351;0.0007070713,0.2666903;0.1435123;0.01986838,0.4533554;-0.06227942;-0.0148575,-0.1126003;0.3646638;-0.005942574,-0.1840192;0.09483573;0.01624158,-0.2049396;-0.1831257;-0.01021148,0.07244121;0.008812744;-0.03278118,0.09699243;-0.3692179;-0.002947588,0.1038455;-0.7118628;0.06809835,0.1163727;-0.7580873;0.004593238,-0.06802319;-0.001164544;-0.04208906,-0.08389898;-0.3795067;-0.01038485,-0.09626254;-0.7227529;0.05691415,-0.07929792;-0.7687322;-0.005850095,-0.0008099366;0.3994207;0.02041771,0;0;0,0.001220835;0.1997923;0.009029834,0.003514936;0.4997265;0.008577298,0.1165636;0.379734;-0.02049445,0.2721075;0.1528151;0.03160041,0.4744498;-0.04072307;0.03082174,-0.1128682;0.3720541;-0.005475479,-0.1896287;0.1042754;0.02285115,-0.2375806;-0.1715597;0.01889909,0.06872422;0.004621395;-0.04068938,0.1040907;-0.3723186;-0.008047618,0.1119126;-0.7171925;0.05111963,0.1051735;-0.7054794;-0.04696285,-0.07264128;0.0007257508;-0.03350699,-0.08265;-0.3783331;-0.008723833,-0.09171316;-0.7228949;0.05206302,-0.09590279;-0.7111694;-0.04616373,0.002649623;0.3997723;0.01147532,60.61117
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.00126644;0.1997895;0.009084769,0.003667756;0.4997234;0.00877128,0.1166025;0.3797786;-0.02065402,0.2715985;0.1524623;0.03134143,0.4731058;-0.04191662;0.02793395,-0.1129157;0.3725027;-0.004959247,-0.1899359;0.1047155;0.02257078,-0.2376376;-0.1711626;0.01859418,0.06877185;0.004603209;-0.04061085,0.1041764;-0.3723482;-0.00814252,0.1117804;-0.7172086;0.0511316,0.1048367;-0.705489;-0.04693783,-0.0725519;0.000807872;-0.03369821,-0.08268787;-0.3782652;-0.009186476,-0.0921561;-0.7227321;0.05207467,-0.09654787;-0.7110016;-0.04614416,0.002764361;0.3997679;0.0116154,60.62252
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.00126644;0.1997895;0.009084769,0.003667756;0.4997234;0.00877128,0.1166025;0.3797786;-0.02065402,0.2715985;0.1524623;0.03134143,0.4731058;-0.04191662;0.02793395,-0.1129157;0.3725027;-0.004959247,-0.1899359;0.1047155;0.02257078,-0.2376376;-0.1711626;0.01859418,0.06877185;0.004603209;-0.04061085,0.1041764;-0.3723482;-0.00814252,0.1117804;-0.7172086;0.0511316,0.1048367;-0.705489;-0.04693783,-0.0725519;0.000807872;-0.03369821,-0.08268787;-0.3782652;-0.009186476,-0.0921561;-0.7227321;0.05207467,-0.09654787;-0.7110016;-0.04614416,0.002764361;0.3997679;0.0116154,60.63377
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.001394796;0.19978;0.009274072,0.004155876;0.4997117;0.009325486,0.1168528;0.3797442;-0.02057113,0.2713466;0.1519826;0.030968,0.472425;-0.04282159;0.02663109,-0.1127018;0.3728592;-0.004212586,-0.1896015;0.1049503;0.02245659,-0.2375589;-0.1708883;0.01883298,0.06881961;0.004592092;-0.04053115,0.1039514;-0.3723657;-0.007842209,0.1113528;-0.7172108;0.0515469,0.1042516;-0.705471;-0.04651501,-0.07253253;0.0008886479;-0.03373785,-0.08221284;-0.3782111;-0.009455169,-0.09263389;-0.72252;0.05253484,-0.09718253;-0.7107839;-0.04567789,0.003112378;0.3997537;0.01202855,60.65589
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.001394796;0.19978;0.009274072,0.004155876;0.4997117;0.009325486,0.1168528;0.3797442;-0.02057113,0.2713466;0.1519826;0.030968,0.472425;-0.04282159;0.02663109,-0.1127018;0.3728592;-0.004212586,-0.1896015;0.1049503;0.02245659,-0.2375589;-0.1708883;0.01883298,0.06881961;0.004592092;-0.04053115,0.1039514;-0.3723657;-0.007842209,0.1113528;-0.7172108;0.0515469,0.1042516;-0.705471;-0.04651501,-0.07253253;0.0008886479;-0.03373785,-0.08221284;-0.3782111;-0.009455169,-0.09263389;-0.72252;0.05253484,-0.09718253;-0.7107839;-0.04567789,0.003112378;0.3997537;0.01202855,60.6671
+0;0;0,-0.0009773984;0.1995426;0.01348384,8.948502E-05;0.4994133;0.02009134,0.1159551;0.3786484;0.0006143637,0.2593486;0.1389247;0.01987145,0.4294828;-0.08111404;-0.01233614,-0.1122801;0.3646814;-0.006013751,-0.1842476;0.09497416;0.01586458,-0.204471;-0.1830187;-0.01079982,0.07235725;0.008705603;-0.03299454,0.09643728;-0.3693054;-0.002535123,0.1030986;-0.7119397;0.06858023,0.1158921;-0.7582059;0.005178347,-0.06811719;-0.00105585;-0.04193964,-0.08417606;-0.3793724;-0.01002223,-0.09686905;-0.7224778;0.05793058,-0.08026423;-0.7679697;-0.005514286,-0.0005366105;0.3994164;0.02057341,0;0;0,0.00134502;0.1997729;0.00943347,0.004034488;0.4997049;0.009679112,0.1167138;0.3798499;-0.02048022,0.270842;0.1517682;0.03073727,0.4710684;-0.04386972;0.02480043,-0.1123046;0.3716922;-0.005431466,-0.1895468;0.1040779;0.02313913,-0.236995;-0.1718492;0.01954924,0.06886245;0.004639925;-0.04045285,0.1040288;-0.3723096;-0.007705778,0.1108774;-0.7171117;0.05199872,0.1041017;-0.7053643;-0.04608764,-0.07255363;0.0009080943;-0.03369194,-0.08251332;-0.3781346;-0.00864432,-0.09337173;-0.7224148;0.0534303,-0.09758987;-0.7106541;-0.04480175,0.003011669;0.399745;0.01232216,60.68941
+0;0;0,-0.0009773984;0.1995426;0.01348384,8.948502E-05;0.4994133;0.02009134,0.1159551;0.3786484;0.0006143637,0.2593486;0.1389247;0.01987145,0.4294828;-0.08111404;-0.01233614,-0.1122801;0.3646814;-0.006013751,-0.1842476;0.09497416;0.01586458,-0.204471;-0.1830187;-0.01079982,0.07235725;0.008705603;-0.03299454,0.09643728;-0.3693054;-0.002535123,0.1030986;-0.7119397;0.06858023,0.1158921;-0.7582059;0.005178347,-0.06811719;-0.00105585;-0.04193964,-0.08417606;-0.3793724;-0.01002223,-0.09686905;-0.7224778;0.05793058,-0.08026423;-0.7679697;-0.005514286,-0.0005366105;0.3994164;0.02057341,0;0;0,0.00134502;0.1997729;0.00943347,0.004034488;0.4997049;0.009679112,0.1167138;0.3798499;-0.02048022,0.270842;0.1517682;0.03073727,0.4710684;-0.04386972;0.02480043,-0.1123046;0.3716922;-0.005431466,-0.1895468;0.1040779;0.02313913,-0.236995;-0.1718492;0.01954924,0.06886245;0.004639925;-0.04045285,0.1040288;-0.3723096;-0.007705778,0.1108774;-0.7171117;0.05199872,0.1041017;-0.7053643;-0.04608764,-0.07255363;0.0009080943;-0.03369194,-0.08251332;-0.3781346;-0.00864432,-0.09337173;-0.7224148;0.0534303,-0.09758987;-0.7106541;-0.04480175,0.003011669;0.399745;0.01232216,60.70064
+0;0;0,-0.0009773984;0.1995426;0.01348384,8.948502E-05;0.4994133;0.02009134,0.1159551;0.3786484;0.0006143637,0.2593486;0.1389247;0.01987145,0.4294828;-0.08111404;-0.01233614,-0.1122801;0.3646814;-0.006013751,-0.1842476;0.09497416;0.01586458,-0.204471;-0.1830187;-0.01079982,0.07235725;0.008705603;-0.03299454,0.09643728;-0.3693054;-0.002535123,0.1030986;-0.7119397;0.06858023,0.1158921;-0.7582059;0.005178347,-0.06811719;-0.00105585;-0.04193964,-0.08417606;-0.3793724;-0.01002223,-0.09686905;-0.7224778;0.05793058,-0.08026423;-0.7679697;-0.005514286,-0.0005366105;0.3994164;0.02057341,0;0;0,0.00134502;0.1997729;0.00943347,0.004034488;0.4997049;0.009679112,0.1167138;0.3798499;-0.02048022,0.270842;0.1517682;0.03073727,0.4710684;-0.04386972;0.02480043,-0.1123046;0.3716922;-0.005431466,-0.1895468;0.1040779;0.02313913,-0.236995;-0.1718492;0.01954924,0.06886245;0.004639925;-0.04045285,0.1040288;-0.3723096;-0.007705778,0.1108774;-0.7171117;0.05199872,0.1041017;-0.7053643;-0.04608764,-0.07255363;0.0009080943;-0.03369194,-0.08251332;-0.3781346;-0.00864432,-0.09337173;-0.7224148;0.0534303,-0.09758987;-0.7106541;-0.04480175,0.003011669;0.399745;0.01232216,60.7121
+0;0;0,-0.0007466421;0.1995454;0.01345683,0.0005107409;0.4994146;0.02010866,0.116237;0.3787159;5.558878E-05,0.2536064;0.1354645;0.01898735,0.4177032;-0.08921051;-0.01253009,-0.1120003;0.3651427;-0.006243348,-0.1840853;0.09541541;0.01499211,-0.2049798;-0.1826032;-0.0108747,0.07231689;0.008725594;-0.03307766,0.09622116;-0.3692858;-0.002483938,0.1028385;-0.7118877;0.06879117,0.1155799;-0.7581347;0.005355746,-0.06817134;-0.0010798;-0.04185096,-0.08418137;-0.3793839;-0.009762332,-0.09706556;-0.722466;0.05827198,-0.09351516;-0.7100024;-0.04011435,-0.0001695737;0.3994179;0.0205725,0;0;0,0.001298798;0.1997641;0.009623877,0.00382984;0.499697;0.01019333,0.1165458;0.3799768;-0.02024337,0.2702747;0.1514902;0.03036586,0.4699283;-0.0447125;0.02381356,-0.1119544;0.3704221;-0.006146239,-0.1902419;0.1033883;0.02490284,-0.2373177;-0.1725924;0.02060069,0.06883784;0.004794667;-0.04047669,0.1029471;-0.3721681;-0.006777979,0.1094055;-0.7169673;0.05298623,0.1028977;-0.7052004;-0.04512188,-0.07271537;0.0008393363;-0.03334323,-0.0833068;-0.3781476;-0.007717023,-0.09463536;-0.7223148;0.05489787,-0.09858289;-0.7105531;-0.04334562,0.00286926;0.3997338;0.01273086,60.73417
+0;0;0,-0.0007466421;0.1995454;0.01345683,0.0005107409;0.4994146;0.02010866,0.116237;0.3787159;5.558878E-05,0.2536064;0.1354645;0.01898735,0.4177032;-0.08921051;-0.01253009,-0.1120003;0.3651427;-0.006243348,-0.1840853;0.09541541;0.01499211,-0.2049798;-0.1826032;-0.0108747,0.07231689;0.008725594;-0.03307766,0.09622116;-0.3692858;-0.002483938,0.1028385;-0.7118877;0.06879117,0.1155799;-0.7581347;0.005355746,-0.06817134;-0.0010798;-0.04185096,-0.08418137;-0.3793839;-0.009762332,-0.09706556;-0.722466;0.05827198,-0.09351516;-0.7100024;-0.04011435,-0.0001695737;0.3994179;0.0205725,0;0;0,0.001260634;0.1997488;0.009941193,0.003889963;0.4996803;0.01084005,0.1164375;0.3797805;-0.0199851,0.2695636;0.1507078;0.02979557,0.467557;-0.04712516;0.02200278,-0.1117922;0.370065;-0.006060408,-0.1899416;0.1029947;0.02502118,-0.2372149;-0.172962;0.02139326,0.06890287;0.004794894;-0.04036587,0.1026697;-0.3721668;-0.006311376,0.1089448;-0.716974;0.05342643,0.1024636;-0.7051851;-0.04468756,-0.0726949;0.0008840468;-0.03338667,-0.08317531;-0.3781599;-0.008569891,-0.09507489;-0.7220732;0.0553207,-0.0989947;-0.7102885;-0.04292817,0.002870862;0.3997148;0.01326003,60.7565
+0;0;0,-0.0007466421;0.1995454;0.01345683,0.0005107409;0.4994146;0.02010866,0.116237;0.3787159;5.558878E-05,0.2536064;0.1354645;0.01898735,0.4177032;-0.08921051;-0.01253009,-0.1120003;0.3651427;-0.006243348,-0.1840853;0.09541541;0.01499211,-0.2049798;-0.1826032;-0.0108747,0.07231689;0.008725594;-0.03307766,0.09622116;-0.3692858;-0.002483938,0.1028385;-0.7118877;0.06879117,0.1155799;-0.7581347;0.005355746,-0.06817134;-0.0010798;-0.04185096,-0.08418137;-0.3793839;-0.009762332,-0.09706556;-0.722466;0.05827198,-0.09351516;-0.7100024;-0.04011435,-0.0001695737;0.3994179;0.0205725,0;0;0,0.001260634;0.1997488;0.009941193,0.003889963;0.4996803;0.01084005,0.1164375;0.3797805;-0.0199851,0.2695636;0.1507078;0.02979557,0.467557;-0.04712516;0.02200278,-0.1117922;0.370065;-0.006060408,-0.1899416;0.1029947;0.02502118,-0.2372149;-0.172962;0.02139326,0.06890287;0.004794894;-0.04036587,0.1026697;-0.3721668;-0.006311376,0.1089448;-0.716974;0.05342643,0.1024636;-0.7051851;-0.04468756,-0.0726949;0.0008840468;-0.03338667,-0.08317531;-0.3781599;-0.008569891,-0.09507489;-0.7220732;0.0553207,-0.0989947;-0.7102885;-0.04292817,0.002870862;0.3997148;0.01326003,60.76757
+0;0;0,-0.0005866087;0.1995331;0.01364548,0.0009696641;0.4993952;0.0205742,0.1165106;0.3786725;6.530434E-05,0.2493974;0.1329169;0.01864815,0.4079983;-0.09580021;-0.0119167,-0.1116726;0.365222;-0.005962979,-0.1842785;0.09561834;0.0150665,-0.2049471;-0.1823766;-0.01123288,0.07230791;0.008615709;-0.03312603,0.0969603;-0.369399;-0.003172671,0.1028601;-0.7118748;0.06876779,0.1156268;-0.7580984;0.005309261,-0.06822041;-0.000991023;-0.04177312,-0.08421052;-0.3792729;-0.009414095,-0.0970091;-0.7223636;0.05859315,-0.09355487;-0.7098824;-0.03979975,0.0001700384;0.399399;0.02092863,0;0;0,0.001426647;0.1997442;0.01001061,0.00430177;0.499673;0.01107482,0.1167469;0.3797641;-0.01988311,0.2692052;0.1501406;0.02940722,0.465414;-0.04939216;0.01998496,-0.1113534;0.3697383;-0.006020049,-0.1899361;0.1028594;0.02560939,-0.2373344;-0.1730736;0.02182125,0.06896227;0.004750916;-0.04026952,0.1024065;-0.3722032;-0.005815975,0.1085836;-0.7169681;0.0541759,0.1021215;-0.7051758;-0.04393996,-0.07270841;0.0009438971;-0.0333556,-0.08321964;-0.3780593;-0.007937528,-0.09530904;-0.7219636;0.05596584,-0.09920898;-0.7101721;-0.04228509,0.003203601;0.399707;0.01343672,60.77887
+0;0;0,-0.0005866087;0.1995331;0.01364548,0.0009696641;0.4993952;0.0205742,0.1165106;0.3786725;6.530434E-05,0.2493974;0.1329169;0.01864815,0.4079983;-0.09580021;-0.0119167,-0.1116726;0.365222;-0.005962979,-0.1842785;0.09561834;0.0150665,-0.2049471;-0.1823766;-0.01123288,0.07230791;0.008615709;-0.03312603,0.0969603;-0.369399;-0.003172671,0.1028601;-0.7118748;0.06876779,0.1156268;-0.7580984;0.005309261,-0.06822041;-0.000991023;-0.04177312,-0.08421052;-0.3792729;-0.009414095,-0.0970091;-0.7223636;0.05859315,-0.09355487;-0.7098824;-0.03979975,0.0001700384;0.399399;0.02092863,0;0;0,0.001426647;0.1997442;0.01001061,0.00430177;0.499673;0.01107482,0.1167469;0.3797641;-0.01988311,0.2692052;0.1501406;0.02940722,0.465414;-0.04939216;0.01998496,-0.1113534;0.3697383;-0.006020049,-0.1899361;0.1028594;0.02560939,-0.2373344;-0.1730736;0.02182125,0.06896227;0.004750916;-0.04026952,0.1024065;-0.3722032;-0.005815975,0.1085836;-0.7169681;0.0541759,0.1021215;-0.7051758;-0.04393996,-0.07270841;0.0009438971;-0.0333556,-0.08321964;-0.3780593;-0.007937528,-0.09530904;-0.7219636;0.05596584,-0.09920898;-0.7101721;-0.04228509,0.003203601;0.399707;0.01343672,60.79034
+0;0;0,-0.0005866087;0.1995331;0.01364548,0.0009696641;0.4993952;0.0205742,0.1165106;0.3786725;6.530434E-05,0.2493974;0.1329169;0.01864815,0.4079983;-0.09580021;-0.0119167,-0.1116726;0.365222;-0.005962979,-0.1842785;0.09561834;0.0150665,-0.2049471;-0.1823766;-0.01123288,0.07230791;0.008615709;-0.03312603,0.0969603;-0.369399;-0.003172671,0.1028601;-0.7118748;0.06876779,0.1156268;-0.7580984;0.005309261,-0.06822041;-0.000991023;-0.04177312,-0.08421052;-0.3792729;-0.009414095,-0.0970091;-0.7223636;0.05859315,-0.09355487;-0.7098824;-0.03979975,0.0001700384;0.399399;0.02092863,0;0;0,0.001426647;0.1997442;0.01001061,0.00430177;0.499673;0.01107482,0.1167469;0.3797641;-0.01988311,0.2692052;0.1501406;0.02940722,0.465414;-0.04939216;0.01998496,-0.1113534;0.3697383;-0.006020049,-0.1899361;0.1028594;0.02560939,-0.2373344;-0.1730736;0.02182125,0.06896227;0.004750916;-0.04026952,0.1024065;-0.3722032;-0.005815975,0.1085836;-0.7169681;0.0541759,0.1021215;-0.7051758;-0.04393996,-0.07270841;0.0009438971;-0.0333556,-0.08321964;-0.3780593;-0.007937528,-0.09530904;-0.7219636;0.05596584,-0.09920898;-0.7101721;-0.04228509,0.003203601;0.399707;0.01343672,60.81229
+0;0;0,-0.0004288992;0.1995209;0.0138291,0.001193579;0.499377;0.02098736,0.1166291;0.3783584;0.0002150368,0.2449267;0.1301997;0.01910892,0.3961369;-0.1034966;-0.01124734,-0.1114042;0.3650454;-0.005676739,-0.1841986;0.09550351;0.01549266,-0.2035519;-0.1824057;-0.01264836,0.07227763;0.008544238;-0.03321055,0.09656369;-0.3694372;-0.002548356,0.102725;-0.7119349;0.06926671,0.1152368;-0.759546;0.007460807,-0.06830944;-0.0009106339;-0.0416292,-0.08417609;-0.3791626;-0.008862019,-0.09727606;-0.7222257;0.05922697,-0.09387769;-0.7097351;-0.03916953,0.0003763353;0.3993807;0.02127121,0;0;0,0.001649785;0.199737;0.01011888,0.005041965;0.4996601;0.01143344,0.1172065;0.3798217;-0.01997032,0.2684984;0.1491897;0.02819234,0.4620138;-0.05278879;0.01568202,-0.1106855;0.3694022;-0.005958444,-0.1894739;0.1026151;0.02593229,-0.2363944;-0.1734035;0.02243447,0.06904518;0.004791801;-0.04012232,0.102379;-0.3721724;-0.005671538,0.1083478;-0.7168961;0.05457702,0.1018529;-0.7050884;-0.04353953,-0.07261376;0.0009315702;-0.0335615,-0.08330955;-0.3780221;-0.007490631,-0.09561177;-0.7219682;0.05614722,-0.09954339;-0.7101547;-0.04210651,0.00375286;0.399694;0.013695,60.82353
+0;0;0,-0.0004288992;0.1995209;0.0138291,0.001193579;0.499377;0.02098736,0.1166291;0.3783584;0.0002150368,0.2449267;0.1301997;0.01910892,0.3961369;-0.1034966;-0.01124734,-0.1114042;0.3650454;-0.005676739,-0.1841986;0.09550351;0.01549266,-0.2035519;-0.1824057;-0.01264836,0.07227763;0.008544238;-0.03321055,0.09656369;-0.3694372;-0.002548356,0.102725;-0.7119349;0.06926671,0.1152368;-0.759546;0.007460807,-0.06830944;-0.0009106339;-0.0416292,-0.08417609;-0.3791626;-0.008862019,-0.09727606;-0.7222257;0.05922697,-0.09387769;-0.7097351;-0.03916953,0.0003763353;0.3993807;0.02127121,0;0;0,0.001649785;0.199737;0.01011888,0.005041965;0.4996601;0.01143344,0.1172065;0.3798217;-0.01997032,0.2684984;0.1491897;0.02819234,0.4620138;-0.05278879;0.01568202,-0.1106855;0.3694022;-0.005958444,-0.1894739;0.1026151;0.02593229,-0.2363944;-0.1734035;0.02243447,0.06904518;0.004791801;-0.04012232,0.102379;-0.3721724;-0.005671538,0.1083478;-0.7168961;0.05457702,0.1018529;-0.7050884;-0.04353953,-0.07261376;0.0009315702;-0.0335615,-0.08330955;-0.3780221;-0.007490631,-0.09561177;-0.7219682;0.05614722,-0.09954339;-0.7101547;-0.04210651,0.00375286;0.399694;0.013695,60.8457
+0;0;0,-0.0004288992;0.1995209;0.0138291,0.001193579;0.499377;0.02098736,0.1166291;0.3783584;0.0002150368,0.2449267;0.1301997;0.01910892,0.3961369;-0.1034966;-0.01124734,-0.1114042;0.3650454;-0.005676739,-0.1841986;0.09550351;0.01549266,-0.2035519;-0.1824057;-0.01264836,0.07227763;0.008544238;-0.03321055,0.09656369;-0.3694372;-0.002548356,0.102725;-0.7119349;0.06926671,0.1152368;-0.759546;0.007460807,-0.06830944;-0.0009106339;-0.0416292,-0.08417609;-0.3791626;-0.008862019,-0.09727606;-0.7222257;0.05922697,-0.09387769;-0.7097351;-0.03916953,0.0003763353;0.3993807;0.02127121,0;0;0,0.001777009;0.1997351;0.01013559,0.005249125;0.499657;0.01155607,0.1175674;0.3801453;-0.01952609,0.2667094;0.1478411;0.02728633,0.4554495;-0.05836657;0.01130063,-0.1104415;0.3693603;-0.006083215,-0.1892052;0.1025992;0.02608456,-0.236044;-0.1734354;0.02276133,0.06905603;0.004828081;-0.04009932,0.1022407;-0.3721603;-0.005770203,0.1078796;-0.7167975;0.05500349,0.1015671;-0.7049856;-0.04312575,-0.07260213;0.0009215048;-0.03358692,-0.08370367;-0.3780132;-0.007409552,-0.09618135;-0.7219114;0.05645187,-0.09038468;-0.7669075;-0.009441935,0.003950726;0.3996901;0.01377942,60.85719
+0;0;0,-0.0003482773;0.199519;0.01385852,0.001249219;0.4993731;0.02110684,0.1166664;0.3782356;0.0002271198,0.2409937;0.128111;0.01973117,0.3832038;-0.1112345;-0.0101019,-0.1112351;0.3646946;-0.005541539,-0.1845326;0.09526423;0.01530944,-0.204117;-0.1826522;-0.01259936,0.07225983;0.008540477;-0.03325021,0.0963975;-0.3694365;-0.00241548,0.1025792;-0.7118952;0.06958297,0.1150184;-0.7593577;0.007576223,-0.06835101;-0.00089929;-0.04156116,-0.08421104;-0.379151;-0.008787952,-0.09722649;-0.7221888;0.05944453,-0.0939076;-0.7096903;-0.03895611,0.0004493263;0.3993766;0.02136107,0;0;0,0.001777009;0.1997351;0.01013559,0.005249125;0.499657;0.01155607,0.1175674;0.3801453;-0.01952609,0.2667094;0.1478411;0.02728633,0.4554495;-0.05836657;0.01130063,-0.1104415;0.3693603;-0.006083215,-0.1892052;0.1025992;0.02608456,-0.236044;-0.1734354;0.02276133,0.06905603;0.004828081;-0.04009932,0.1022407;-0.3721603;-0.005770203,0.1078796;-0.7167975;0.05500349,0.1015671;-0.7049856;-0.04312575,-0.07260213;0.0009215048;-0.03358692,-0.08370367;-0.3780132;-0.007409552,-0.09618135;-0.7219114;0.05645187,-0.09038468;-0.7669075;-0.009441935,0.003950726;0.3996901;0.01377942,60.87931
+0;0;0,-0.0003482773;0.199519;0.01385852,0.001249219;0.4993731;0.02110684,0.1166664;0.3782356;0.0002271198,0.2409937;0.128111;0.01973117,0.3832038;-0.1112345;-0.0101019,-0.1112351;0.3646946;-0.005541539,-0.1845326;0.09526423;0.01530944,-0.204117;-0.1826522;-0.01259936,0.07225983;0.008540477;-0.03325021,0.0963975;-0.3694365;-0.00241548,0.1025792;-0.7118952;0.06958297,0.1150184;-0.7593577;0.007576223,-0.06835101;-0.00089929;-0.04156116,-0.08421104;-0.379151;-0.008787952,-0.09722649;-0.7221888;0.05944453,-0.0939076;-0.7096903;-0.03895611,0.0004493263;0.3993766;0.02136107,0;0;0,0.001923649;0.1997302;0.01020547,0.005547986;0.4996495;0.01179511,0.1179869;0.3804011;-0.01895575,0.2637297;0.145623;0.02619185,0.4476391;-0.06480971;0.009005012,-0.1102488;0.3694787;-0.005699112,-0.1889937;0.1026916;0.02629917,-0.2358057;-0.1733547;0.02364111,0.06899586;0.004940378;-0.04018909,0.101515;-0.372069;-0.005455352,0.1068988;-0.7166359;0.05573837,0.1006835;-0.7048104;-0.04239959,-0.07270885;0.0008250498;-0.03335779,-0.08417248;-0.3780847;-0.006976647,-0.0967024;-0.7219621;0.05698672,-0.100357;-0.7101328;-0.04128063,0.004211911;0.3996818;0.01396074,60.90165
+0;0;0,-0.0001611675;0.1995082;0.01401556,0.001704884;0.4993545;0.02152794,0.1169991;0.3783697;0.0002485607,0.2374184;0.1263586;0.01998658,0.3702839;-0.1185095;-0.008055262,-0.1109332;0.3649642;-0.005337048,-0.184957;0.09575024;0.01574259,-0.2047062;-0.1821574;-0.01213761,0.07215133;0.008541736;-0.03348469,0.09739972;-0.369398;-0.003086207,0.1024256;-0.7117255;0.06962299,0.1152466;-0.7592181;0.007731706,-0.06850315;-0.0009092324;-0.04130972,-0.08449879;-0.3791429;-0.008393206,-0.0975908;-0.7221312;0.06007269,-0.08231439;-0.768406;-0.002766766,0.0008104674;0.3993586;0.02168833,0;0;0,0.001901292;0.1997225;0.01035949,0.005516946;0.4996407;0.01215856,0.1179742;0.3804771;-0.01865423,0.2608513;0.1437712;0.02557751,0.439867;-0.07072328;0.006989773,-0.1102169;0.3692127;-0.005372531,-0.189037;0.1024554;0.02668936,-0.2357181;-0.1736128;0.02400748,0.0689549;0.004994755;-0.04025264,0.1012346;-0.3720515;-0.005696297,0.1064292;-0.716503;0.05615952,0.1001865;-0.7046652;-0.04197896,-0.0727672;0.0007720978;-0.0332316,-0.08415193;-0.3781625;-0.007174371,-0.09668038;-0.721989;0.0570624,-0.1003681;-0.7101609;-0.04120349,0.004181919;0.3996716;0.01425299,60.9242
+0;0;0,-0.0001611675;0.1995082;0.01401556,0.001704884;0.4993545;0.02152794,0.1169991;0.3783697;0.0002485607,0.2374184;0.1263586;0.01998658,0.3702839;-0.1185095;-0.008055262,-0.1109332;0.3649642;-0.005337048,-0.184957;0.09575024;0.01574259,-0.2047062;-0.1821574;-0.01213761,0.07215133;0.008541736;-0.03348469,0.09739972;-0.369398;-0.003086207,0.1024256;-0.7117255;0.06962299,0.1152466;-0.7592181;0.007731706,-0.06850315;-0.0009092324;-0.04130972,-0.08449879;-0.3791429;-0.008393206,-0.0975908;-0.7221312;0.06007269,-0.08231439;-0.768406;-0.002766766,0.0008104674;0.3993586;0.02168833,0;0;0,0.001901292;0.1997225;0.01035949,0.005516946;0.4996407;0.01215856,0.1179742;0.3804771;-0.01865423,0.2608513;0.1437712;0.02557751,0.439867;-0.07072328;0.006989773,-0.1102169;0.3692127;-0.005372531,-0.189037;0.1024554;0.02668936,-0.2357181;-0.1736128;0.02400748,0.0689549;0.004994755;-0.04025264,0.1012346;-0.3720515;-0.005696297,0.1064292;-0.716503;0.05615952,0.1001865;-0.7046652;-0.04197896,-0.0727672;0.0007720978;-0.0332316,-0.08415193;-0.3781625;-0.007174371,-0.09668038;-0.721989;0.0570624,-0.1003681;-0.7101609;-0.04120349,0.004181919;0.3996716;0.01425299,60.93514
+0;0;0,-0.0001611675;0.1995082;0.01401556,0.001704884;0.4993545;0.02152794,0.1169991;0.3783697;0.0002485607,0.2374184;0.1263586;0.01998658,0.3702839;-0.1185095;-0.008055262,-0.1109332;0.3649642;-0.005337048,-0.184957;0.09575024;0.01574259,-0.2047062;-0.1821574;-0.01213761,0.07215133;0.008541736;-0.03348469,0.09739972;-0.369398;-0.003086207,0.1024256;-0.7117255;0.06962299,0.1152466;-0.7592181;0.007731706,-0.06850315;-0.0009092324;-0.04130972,-0.08449879;-0.3791429;-0.008393206,-0.0975908;-0.7221312;0.06007269,-0.08231439;-0.768406;-0.002766766,0.0008104674;0.3993586;0.02168833,0;0;0,0.001901292;0.1997225;0.01035949,0.005516946;0.4996407;0.01215856,0.1179742;0.3804771;-0.01865423,0.2608513;0.1437712;0.02557751,0.439867;-0.07072328;0.006989773,-0.1102169;0.3692127;-0.005372531,-0.189037;0.1024554;0.02668936,-0.2357181;-0.1736128;0.02400748,0.0689549;0.004994755;-0.04025264,0.1012346;-0.3720515;-0.005696297,0.1064292;-0.716503;0.05615952,0.1001865;-0.7046652;-0.04197896,-0.0727672;0.0007720978;-0.0332316,-0.08415193;-0.3781625;-0.007174371,-0.09668038;-0.721989;0.0570624,-0.1003681;-0.7101609;-0.04120349,0.004181919;0.3996716;0.01425299,60.94642
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.002069763;0.1997229;0.01031831,0.006023774;0.4996372;0.01202641,0.1184513;0.3805698;-0.01849585,0.2562997;0.1406276;0.02423003,0.4308659;-0.07742706;0.004766596,-0.1106962;0.3711725;-0.0032099,-0.1892846;0.1040179;0.02598371,-0.2362867;-0.1719998;0.02373129,0.06885514;0.004982411;-0.04042456,0.1010835;-0.3720261;-0.005411483,0.105919;-0.7164856;0.05642911,0.09914969;-0.7046292;-0.04167789,-0.07281744;0.0007880899;-0.03312098,-0.08406191;-0.3781415;-0.006930504,-0.09683586;-0.721966;0.05726846,-0.1010554;-0.7101448;-0.04097475,0.00456989;0.3996705;0.01415683,60.95769
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.002069763;0.1997229;0.01031831,0.006023774;0.4996372;0.01202641,0.1184513;0.3805698;-0.01849585,0.2562997;0.1406276;0.02423003,0.4308659;-0.07742706;0.004766596,-0.1106962;0.3711725;-0.0032099,-0.1892846;0.1040179;0.02598371,-0.2362867;-0.1719998;0.02373129,0.06885514;0.004982411;-0.04042456,0.1010835;-0.3720261;-0.005411483,0.105919;-0.7164856;0.05642911,0.09914969;-0.7046292;-0.04167789,-0.07281744;0.0007880899;-0.03312098,-0.08406191;-0.3781415;-0.006930504,-0.09683586;-0.721966;0.05726846,-0.1010554;-0.7101448;-0.04097475,0.00456989;0.3996705;0.01415683,60.97988
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.002482494;0.1997223;0.01023896,0.007322885;0.4996242;0.0118038,0.1194776;0.3806704;-0.01856267,0.2529813;0.1380557;0.02284891,0.4217543;-0.08460408;0.004456511,-0.1096533;0.37132;-0.004050581,-0.1891538;0.104602;0.02662777,-0.2362244;-0.1714062;0.02467042,0.06846937;0.004902275;-0.04108422,0.1006163;-0.3720033;-0.004907943,0.1050873;-0.7163755;0.05744459,0.0985689;-0.7045119;-0.04068074,-0.07308817;0.0008111828;-0.03251865,-0.08451552;-0.3781118;-0.00631221,-0.09710175;-0.7219113;0.05805761,-0.1010716;-0.7100927;-0.04019553,0.005548147;0.3996637;0.01398457,60.99151
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.002668541;0.19972;0.01023729,0.007762195;0.4996176;0.01181472,0.1198583;0.3806904;-0.01850214,0.2498043;0.1361001;0.02260248,0.4147977;-0.0893108;0.003441332,-0.1092733;0.371293;-0.004129122,-0.1890976;0.1047404;0.02714099,-0.235796;-0.1713313;0.02522342,0.0683564;0.004844408;-0.04127873,0.1007109;-0.3719939;-0.004590176,0.1048043;-0.7163754;0.05773684,0.09832895;-0.7045079;-0.04039206,-0.07320432;0.0008353006;-0.03225567,-0.08433279;-0.3781203;-0.006394148,-0.09694333;-0.7218365;0.05841426,-0.1008734;-0.7100213;-0.03983986,0.005909286;0.3996585;0.01399154,61.01347
+0;0;0,-2.471476E-05;0.1994957;0.01419455,0.00179871;0.4993343;0.0220094,0.116978;0.3781897;4.710443E-05,0.2275829;0.1217667;0.0203904,0.351209;-0.1282494;-0.00427782,-0.1107257;0.3646864;-0.004992802,-0.1863801;0.09604159;0.01750932,-0.2058607;-0.1817484;-0.01170074,0.07185562;0.008206849;-0.03419674,0.09620632;-0.369636;-0.001918826,0.1012033;-0.711936;0.07092136,0.1017633;-0.6994151;-0.0275376,-0.0688815;-0.0007434443;-0.04067906,-0.08511647;-0.3789466;-0.007530741,-0.09827093;-0.7218595;0.06130045,-0.08306524;-0.7681267;-0.001565307,0.0009283409;0.3993381;0.02207459,0;0;0,0.002668541;0.19972;0.01023729,0.007762195;0.4996176;0.01181472,0.1198583;0.3806904;-0.01850214,0.2498043;0.1361001;0.02260248,0.4147977;-0.0893108;0.003441332,-0.1092733;0.371293;-0.004129122,-0.1890976;0.1047404;0.02714099,-0.235796;-0.1713313;0.02522342,0.0683564;0.004844408;-0.04127873,0.1007109;-0.3719939;-0.004590176,0.1048043;-0.7163754;0.05773684,0.09832895;-0.7045079;-0.04039206,-0.07320432;0.0008353006;-0.03225567,-0.08433279;-0.3781203;-0.006394148,-0.09694333;-0.7218365;0.05841426,-0.1008734;-0.7100213;-0.03983986,0.005909286;0.3996585;0.01399154,61.0247
+0;0;0,-2.471476E-05;0.1994957;0.01419455,0.00179871;0.4993343;0.0220094,0.116978;0.3781897;4.710443E-05,0.2275829;0.1217667;0.0203904,0.351209;-0.1282494;-0.00427782,-0.1107257;0.3646864;-0.004992802,-0.1863801;0.09604159;0.01750932,-0.2058607;-0.1817484;-0.01170074,0.07185562;0.008206849;-0.03419674,0.09620632;-0.369636;-0.001918826,0.1012033;-0.711936;0.07092136,0.1017633;-0.6994151;-0.0275376,-0.0688815;-0.0007434443;-0.04067906,-0.08511647;-0.3789466;-0.007530741,-0.09827093;-0.7218595;0.06130045,-0.08306524;-0.7681267;-0.001565307,0.0009283409;0.3993381;0.02207459,0;0;0,0.002668541;0.19972;0.01023729,0.007762195;0.4996176;0.01181472,0.1198583;0.3806904;-0.01850214,0.2498043;0.1361001;0.02260248,0.4147977;-0.0893108;0.003441332,-0.1092733;0.371293;-0.004129122,-0.1890976;0.1047404;0.02714099,-0.235796;-0.1713313;0.02522342,0.0683564;0.004844408;-0.04127873,0.1007109;-0.3719939;-0.004590176,0.1048043;-0.7163754;0.05773684,0.09832895;-0.7045079;-0.04039206,-0.07320432;0.0008353006;-0.03225567,-0.08433279;-0.3781203;-0.006394148,-0.09694333;-0.7218365;0.05841426,-0.1008734;-0.7100213;-0.03983986,0.005909286;0.3996585;0.01399154,61.04682
+0;0;0,-2.471476E-05;0.1994957;0.01419455,0.00179871;0.4993343;0.0220094,0.116978;0.3781897;4.710443E-05,0.2275829;0.1217667;0.0203904,0.351209;-0.1282494;-0.00427782,-0.1107257;0.3646864;-0.004992802,-0.1863801;0.09604159;0.01750932,-0.2058607;-0.1817484;-0.01170074,0.07185562;0.008206849;-0.03419674,0.09620632;-0.369636;-0.001918826,0.1012033;-0.711936;0.07092136,0.1017633;-0.6994151;-0.0275376,-0.0688815;-0.0007434443;-0.04067906,-0.08511647;-0.3789466;-0.007530741,-0.09827093;-0.7218595;0.06130045,-0.08306524;-0.7681267;-0.001565307,0.0009283409;0.3993381;0.02207459,0;0;0,0.002379463;0.1996845;0.01097345,0.007228811;0.4995801;0.01303202,0.1192923;0.3806821;-0.01766745,0.2457309;0.1340381;0.02208171,0.4046911;-0.09561062;0.002254283,-0.1094509;0.370804;-0.00420236,-0.1896282;0.104495;0.02821818,-0.236501;-0.1715495;0.02666409,0.06808887;0.004720414;-0.04173275,0.09982618;-0.3721014;-0.004341967,0.1039575;-0.7163028;0.05896907,0.09764731;-0.7043958;-0.03917791,-0.07355495;0.0009286182;-0.03144532,-0.08502346;-0.3781178;-0.00710785,-0.09746998;-0.7215245;0.05935233,-0.1012355;-0.7096718;-0.03891515,0.005423701;0.3996183;0.01512528,61.05838
+0;0;0,3.866922E-05;0.1994885;0.01429492,0.001828772;0.499323;0.0222711,0.1169278;0.3778495;4.868023E-05,0.2222338;0.1192107;0.02045952,0.3415821;-0.1329765;-0.003153821,-0.1106661;0.3645744;-0.004692726,-0.1866035;0.09607708;0.01860262,-0.2057359;-0.1816712;-0.01122769,0.07187665;0.008070537;-0.03418499,0.09615133;-0.3697717;-0.001843542,0.1010065;-0.7120364;0.07117258,0.101484;-0.6995054;-0.0272886,-0.06888915;-0.0005782707;-0.04066879,-0.08565202;-0.3787662;-0.007609535,-0.09849916;-0.7215673;0.06183385,-0.08340776;-0.7679566;-0.0009111278,0.0009783423;0.3993266;0.02228507,0;0;0,0.002325497;0.1996695;0.01125556,0.007022065;0.4995641;0.01366062,0.1189629;0.3804978;-0.0176234,0.2423211;0.1323539;0.02246799,0.3942068;-0.1019466;0.001634423,-0.1095457;0.3706651;-0.003880955,-0.1892749;0.104216;0.02849427,-0.2361036;-0.1718383;0.0274595,0.06815596;0.004694745;-0.041626,0.09962884;-0.3721006;-0.003748138,0.1036989;-0.7162993;0.05958206,0.09726582;-0.704374;-0.0385603,-0.07350777;0.0009924772;-0.03155348,-0.08547859;-0.3779989;-0.006608024,-0.09802601;-0.7213739;0.05999637,-0.1019131;-0.7095082;-0.03826877,0.005263293;0.3995995;0.01565618,61.08035
+0;0;0,3.866922E-05;0.1994885;0.01429492,0.001828772;0.499323;0.0222711,0.1169278;0.3778495;4.868023E-05,0.2222338;0.1192107;0.02045952,0.3415821;-0.1329765;-0.003153821,-0.1106661;0.3645744;-0.004692726,-0.1866035;0.09607708;0.01860262,-0.2057359;-0.1816712;-0.01122769,0.07187665;0.008070537;-0.03418499,0.09615133;-0.3697717;-0.001843542,0.1010065;-0.7120364;0.07117258,0.101484;-0.6995054;-0.0272886,-0.06888915;-0.0005782707;-0.04066879,-0.08565202;-0.3787662;-0.007609535,-0.09849916;-0.7215673;0.06183385,-0.08340776;-0.7679566;-0.0009111278,0.0009783423;0.3993266;0.02228507,0;0;0,0.002325497;0.1996695;0.01125556,0.007022065;0.4995641;0.01366062,0.1189629;0.3804978;-0.0176234,0.2423211;0.1323539;0.02246799,0.3942068;-0.1019466;0.001634423,-0.1095457;0.3706651;-0.003880955,-0.1892749;0.104216;0.02849427,-0.2361036;-0.1718383;0.0274595,0.06815596;0.004694745;-0.041626,0.09962884;-0.3721006;-0.003748138,0.1036989;-0.7162993;0.05958206,0.09726582;-0.704374;-0.0385603,-0.07350777;0.0009924772;-0.03155348,-0.08547859;-0.3779989;-0.006608024,-0.09802601;-0.7213739;0.05999637,-0.1019131;-0.7095082;-0.03826877,0.005263293;0.3995995;0.01565618,61.09203
+0;0;0,3.866922E-05;0.1994885;0.01429492,0.001828772;0.499323;0.0222711,0.1169278;0.3778495;4.868023E-05,0.2222338;0.1192107;0.02045952,0.3415821;-0.1329765;-0.003153821,-0.1106661;0.3645744;-0.004692726,-0.1866035;0.09607708;0.01860262,-0.2057359;-0.1816712;-0.01122769,0.07187665;0.008070537;-0.03418499,0.09615133;-0.3697717;-0.001843542,0.1010065;-0.7120364;0.07117258,0.101484;-0.6995054;-0.0272886,-0.06888915;-0.0005782707;-0.04066879,-0.08565202;-0.3787662;-0.007609535,-0.09849916;-0.7215673;0.06183385,-0.08340776;-0.7679566;-0.0009111278,0.0009783423;0.3993266;0.02228507,0;0;0,0.002325497;0.1996695;0.01125556,0.007022065;0.4995641;0.01366062,0.1189629;0.3804978;-0.0176234,0.2423211;0.1323539;0.02246799,0.3942068;-0.1019466;0.001634423,-0.1095457;0.3706651;-0.003880955,-0.1892749;0.104216;0.02849427,-0.2361036;-0.1718383;0.0274595,0.06815596;0.004694745;-0.041626,0.09962884;-0.3721006;-0.003748138,0.1036989;-0.7162993;0.05958206,0.09726582;-0.704374;-0.0385603,-0.07350777;0.0009924772;-0.03155348,-0.08547859;-0.3779989;-0.006608024,-0.09802601;-0.7213739;0.05999637,-0.1019131;-0.7095082;-0.03826877,0.005263293;0.3995995;0.01565618,61.10321
+0;0;0,0.0002921929;0.1994682;0.01457245,0.002625415;0.4992887;0.02294924,0.1173263;0.3774109;-1.613051E-06,0.219104;0.1173406;0.0201169,0.3312075;-0.1383843;-0.0008013193,-0.1101423;0.3647756;-0.004206389,-0.1851455;0.09590018;0.01771455,-0.2048704;-0.1819052;-0.01118325,0.07188023;0.008049604;-0.0341824,0.09538563;-0.3697902;-0.001249649,0.1004705;-0.7119963;0.07202487,0.1008148;-0.6994442;-0.02644062,-0.06896298;-0.0005231009;-0.04054423,-0.08594536;-0.3786414;-0.006808143,-0.09891403;-0.721432;0.06266461,-0.0961045;-0.7088749;-0.03576228,0.001564927;0.3992944;0.02281128,0;0;0,0.002752038;0.199686;0.01086003,0.008484371;0.4995677;0.01259036,0.1201564;0.3802047;-0.01799122,0.2407502;0.1305996;0.0214348,0.3871534;-0.1072935;0.002121652,-0.1086354;0.3707239;-0.00363498,-0.1882769;0.1042494;0.02874637,-0.2351236;-0.1718024;0.02785997,0.0681094;0.004692246;-0.04170243,0.09974311;-0.3720826;-0.003754605,0.1037458;-0.7162251;0.05988414,0.09726961;-0.7043315;-0.03824956,-0.07354738;0.0009998468;-0.03146082,-0.08574858;-0.3779393;-0.005843081,-0.09750342;-0.7214845;0.06002379,-0.1014418;-0.7096362;-0.03823611,0.006366858;0.3996145;0.01479908,61.12525
+0;0;0,0.0002921929;0.1994682;0.01457245,0.002625415;0.4992887;0.02294924,0.1173263;0.3774109;-1.613051E-06,0.219104;0.1173406;0.0201169,0.3312075;-0.1383843;-0.0008013193,-0.1101423;0.3647756;-0.004206389,-0.1851455;0.09590018;0.01771455,-0.2048704;-0.1819052;-0.01118325,0.07188023;0.008049604;-0.0341824,0.09538563;-0.3697902;-0.001249649,0.1004705;-0.7119963;0.07202487,0.1008148;-0.6994442;-0.02644062,-0.06896298;-0.0005231009;-0.04054423,-0.08594536;-0.3786414;-0.006808143,-0.09891403;-0.721432;0.06266461,-0.0961045;-0.7088749;-0.03576228,0.001564927;0.3992944;0.02281128,0;0;0,0.002962717;0.1996897;0.01073582,0.008882518;0.4995686;0.01247789,0.1205136;0.3800365;-0.01803685,0.2389276;0.129443;0.0217254,0.3769922;-0.1133786;0.002339272,-0.1082618;0.3706219;-0.00369519,-0.1880329;0.1042239;0.02899539,-0.2351608;-0.1717804;0.0282354,0.0680863;0.004659717;-0.04174378,0.0996675;-0.372123;-0.003830153,0.1036815;-0.7161896;0.06021723,0.09722805;-0.7043005;-0.03791711,-0.07357609;0.001040856;-0.03139227,-0.0858558;-0.3778802;-0.005545298,-0.09736378;-0.7214381;0.06029958,-0.1012834;-0.7095969;-0.03795973,0.006726801;0.3996157;0.01466204,61.14727
+0;0;0,0.0002921929;0.1994682;0.01457245,0.002625415;0.4992887;0.02294924,0.1173263;0.3774109;-1.613051E-06,0.219104;0.1173406;0.0201169,0.3312075;-0.1383843;-0.0008013193,-0.1101423;0.3647756;-0.004206389,-0.1851455;0.09590018;0.01771455,-0.2048704;-0.1819052;-0.01118325,0.07188023;0.008049604;-0.0341824,0.09538563;-0.3697902;-0.001249649,0.1004705;-0.7119963;0.07202487,0.1008148;-0.6994442;-0.02644062,-0.06896298;-0.0005231009;-0.04054423,-0.08594536;-0.3786414;-0.006808143,-0.09891403;-0.721432;0.06266461,-0.0961045;-0.7088749;-0.03576228,0.001564927;0.3992944;0.02281128,0;0;0,0.002962717;0.1996897;0.01073582,0.008882518;0.4995686;0.01247789,0.1205136;0.3800365;-0.01803685,0.2389276;0.129443;0.0217254,0.3769922;-0.1133786;0.002339272,-0.1082618;0.3706219;-0.00369519,-0.1880329;0.1042239;0.02899539,-0.2351608;-0.1717804;0.0282354,0.0680863;0.004659717;-0.04174378,0.0996675;-0.372123;-0.003830153,0.1036815;-0.7161896;0.06021723,0.09722805;-0.7043005;-0.03791711,-0.07357609;0.001040856;-0.03139227,-0.0858558;-0.3778802;-0.005545298,-0.09736378;-0.7214381;0.06029958,-0.1012834;-0.7095969;-0.03795973,0.006726801;0.3996157;0.01466204,61.15889
+0;0;0,0.000542329;0.1994757;0.01446163,0.003220354;0.4992974;0.02268603,0.1177782;0.3773092;-0.0002907421,0.2154411;0.1155948;0.01888009,0.3239985;-0.1418245;0.0001555327,-0.1098136;0.3649862;-0.004005099,-0.1848731;0.09609646;0.01754465,-0.2039905;-0.1817339;-0.01152103,0.07188501;0.008033865;-0.03417605,0.09521693;-0.3698013;-0.001067236,0.1002907;-0.7119917;0.07228112,0.1005365;-0.6994456;-0.02618361,-0.06897346;-0.0004968008;-0.04052671,-0.08600272;-0.3786036;-0.006685596,-0.099137;-0.7213365;0.06303993,-0.08393194;-0.7674659;7.145107E-06,0.002053834;0.3993043;0.02260223,0;0;0,0.003239305;0.1996842;0.01075713,0.00953444;0.4995551;0.01265028,0.1210576;0.3802206;-0.01800668,0.2367261;0.1283087;0.02150488,0.3712659;-0.1165698;0.003239982,-0.1076783;0.370855;-0.004271043,-0.1881847;0.1048074;0.02945468,-0.2355901;-0.1711501;0.02902406,0.06796563;0.004566712;-0.04195018,0.09938794;-0.3721471;-0.003228784,0.1032699;-0.7161655;0.06108493,0.09699241;-0.7042707;-0.03706189,-0.07371469;0.001093634;-0.03106362,-0.08614314;-0.3778055;-0.004967747,-0.09757042;-0.7213427;0.0609991,-0.1013142;-0.7094927;-0.03726871,0.007260221;0.3996035;0.0147723,61.18084
+0;0;0,0.000542329;0.1994757;0.01446163,0.003220354;0.4992974;0.02268603,0.1177782;0.3773092;-0.0002907421,0.2154411;0.1155948;0.01888009,0.3239985;-0.1418245;0.0001555327,-0.1098136;0.3649862;-0.004005099,-0.1848731;0.09609646;0.01754465,-0.2039905;-0.1817339;-0.01152103,0.07188501;0.008033865;-0.03417605,0.09521693;-0.3698013;-0.001067236,0.1002907;-0.7119917;0.07228112,0.1005365;-0.6994456;-0.02618361,-0.06897346;-0.0004968008;-0.04052671,-0.08600272;-0.3786036;-0.006685596,-0.099137;-0.7213365;0.06303993,-0.08393194;-0.7674659;7.145107E-06,0.002053834;0.3993043;0.02260223,0;0;0,0.003239305;0.1996842;0.01075713,0.00953444;0.4995551;0.01265028,0.1210576;0.3802206;-0.01800668,0.2367261;0.1283087;0.02150488,0.3712659;-0.1165698;0.003239982,-0.1076783;0.370855;-0.004271043,-0.1881847;0.1048074;0.02945468,-0.2355901;-0.1711501;0.02902406,0.06796563;0.004566712;-0.04195018,0.09938794;-0.3721471;-0.003228784,0.1032699;-0.7161655;0.06108493,0.09699241;-0.7042707;-0.03706189,-0.07371469;0.001093634;-0.03106362,-0.08614314;-0.3778055;-0.004967747,-0.09757042;-0.7213427;0.0609991,-0.1013142;-0.7094927;-0.03726871,0.007260221;0.3996035;0.0147723,61.19258
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.003239305;0.1996842;0.01075713,0.00953444;0.4995551;0.01265028,0.1210576;0.3802206;-0.01800668,0.2367261;0.1283087;0.02150488,0.3712659;-0.1165698;0.003239982,-0.1076783;0.370855;-0.004271043,-0.1881847;0.1048074;0.02945468,-0.2355901;-0.1711501;0.02902406,0.06796563;0.004566712;-0.04195018,0.09938794;-0.3721471;-0.003228784,0.1032699;-0.7161655;0.06108493,0.09699241;-0.7042707;-0.03706189,-0.07371469;0.001093634;-0.03106362,-0.08614314;-0.3778055;-0.004967747,-0.09757042;-0.7213427;0.0609991,-0.1013142;-0.7094927;-0.03726871,0.007260221;0.3996035;0.0147723,61.20395
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.003428211;0.1996869;0.01064881,0.009827035;0.4995561;0.01256192,0.1213264;0.3803985;-0.01825912,0.2344984;0.1273375;0.0211398,0.3661615;-0.1191383;0.003405252,-0.1074018;0.3709394;-0.004482994,-0.1882383;0.1050737;0.02988123,-0.2355461;-0.1709004;0.02941133,0.06796422;0.004557087;-0.04195353,0.09954745;-0.3721227;-0.003032114,0.1030607;-0.7160954;0.0615467,0.09677003;-0.7042053;-0.0365984,-0.07371338;0.001129782;-0.03106545,-0.08654298;-0.3777547;-0.00495184,-0.09786585;-0.7211634;0.0616987,-0.1016228;-0.7093151;-0.03656829,0.007540522;0.3996043;0.01466352,61.22583
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.003428211;0.1996869;0.01064881,0.009827035;0.4995561;0.01256192,0.1213264;0.3803985;-0.01825912,0.2344984;0.1273375;0.0211398,0.3661615;-0.1191383;0.003405252,-0.1074018;0.3709394;-0.004482994,-0.1882383;0.1050737;0.02988123,-0.2355461;-0.1709004;0.02941133,0.06796422;0.004557087;-0.04195353,0.09954745;-0.3721227;-0.003032114,0.1030607;-0.7160954;0.0615467,0.09677003;-0.7042053;-0.0365984,-0.07371338;0.001129782;-0.03106545,-0.08654298;-0.3777547;-0.00495184,-0.09786585;-0.7211634;0.0616987,-0.1016228;-0.7093151;-0.03656829,0.007540522;0.3996043;0.01466352,61.23717
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.003564054;0.1996854;0.01063256,0.01005279;0.4995524;0.01262445,0.1215218;0.3804123;-0.01828878,0.2329331;0.1265329;0.02086169,0.3632376;-0.1206805;0.003360916,-0.1072124;0.3710385;-0.004487152,-0.1883944;0.1053142;0.0301548,-0.2356421;-0.1706703;0.029711,0.06797399;0.004437246;-0.04195054,0.09938899;-0.3722346;-0.00281756,0.1029824;-0.7161626;0.06199512,0.09670224;-0.7042698;-0.03615114,-0.07372905;0.001250933;-0.03102357,-0.08665387;-0.3775849;-0.00425826,-0.09801823;-0.7210115;0.06229252,-0.101763;-0.7091617;-0.03597521,0.007750003;0.3996003;0.01469284,61.25934
+0;0;0,0.0004858986;0.1994646;0.01461667,0.002958838;0.4992819;0.02304162,0.117314;0.3762565;-0.0003315881,0.2067985;0.1116502;0.01906079,0.3063865;-0.1493541;0.0001137462,-0.1097838;0.3643696;-0.003859483,-0.1853905;0.09561467;0.01745744,-0.2041906;-0.1822878;-0.01112226,0.07179495;0.007946869;-0.03438506,0.09451267;-0.3699116;-0.001116049,0.09951996;-0.7119841;0.07278502,0.1111946;-0.7605289;0.01200319,-0.06913322;-0.0004286902;-0.04025435,-0.08618899;-0.378547;-0.006554957,-0.09996061;-0.7211398;0.06373337,-0.08441061;-0.7672272;0.000733979,0.001860112;0.399288;0.02290506,0;0;0,0.003711639;0.1996882;0.01052806,0.01034911;0.4995528;0.01242874,0.1217504;0.3804469;-0.0185771,0.2303324;0.1252927;0.0202341,0.3605479;-0.1220367;0.003738672,-0.1069599;0.3710992;-0.004716499,-0.188394;0.1054845;0.03017319,-0.2353529;-0.1705493;0.0297068,0.06797651;0.004364242;-0.0419541,0.09931697;-0.3723033;-0.002719704,0.1028498;-0.7161847;0.06234219,0.09655372;-0.7042954;-0.03580243,-0.07372436;0.001344795;-0.03103079,-0.08662902;-0.3775247;-0.004736573,-0.09811837;-0.7208858;0.06212997,-0.1018797;-0.7090414;-0.03613615,0.008007277;0.3996022;0.0145223,61.28134
+0;0;0,0.0004858986;0.1994646;0.01461667,0.002958838;0.4992819;0.02304162,0.117314;0.3762565;-0.0003315881,0.2067985;0.1116502;0.01906079,0.3063865;-0.1493541;0.0001137462,-0.1097838;0.3643696;-0.003859483,-0.1853905;0.09561467;0.01745744,-0.2041906;-0.1822878;-0.01112226,0.07179495;0.007946869;-0.03438506,0.09451267;-0.3699116;-0.001116049,0.09951996;-0.7119841;0.07278502,0.1111946;-0.7605289;0.01200319,-0.06913322;-0.0004286902;-0.04025435,-0.08618899;-0.378547;-0.006554957,-0.09996061;-0.7211398;0.06373337,-0.08441061;-0.7672272;0.000733979,0.001860112;0.399288;0.02290506,0;0;0,0.003711639;0.1996882;0.01052806,0.01034911;0.4995528;0.01242874,0.1217504;0.3804469;-0.0185771,0.2303324;0.1252927;0.0202341,0.3605479;-0.1220367;0.003738672,-0.1069599;0.3710992;-0.004716499,-0.188394;0.1054845;0.03017319,-0.2353529;-0.1705493;0.0297068,0.06797651;0.004364242;-0.0419541,0.09931697;-0.3723033;-0.002719704,0.1028498;-0.7161847;0.06234219,0.09655372;-0.7042954;-0.03580243,-0.07372436;0.001344795;-0.03103079,-0.08662902;-0.3775247;-0.004736573,-0.09811837;-0.7208858;0.06212997,-0.1018797;-0.7090414;-0.03613615,0.008007277;0.3996022;0.0145223,61.2929
+0;0;0,0.0004858986;0.1994646;0.01461667,0.002958838;0.4992819;0.02304162,0.117314;0.3762565;-0.0003315881,0.2067985;0.1116502;0.01906079,0.3063865;-0.1493541;0.0001137462,-0.1097838;0.3643696;-0.003859483,-0.1853905;0.09561467;0.01745744,-0.2041906;-0.1822878;-0.01112226,0.07179495;0.007946869;-0.03438506,0.09451267;-0.3699116;-0.001116049,0.09951996;-0.7119841;0.07278502,0.1111946;-0.7605289;0.01200319,-0.06913322;-0.0004286902;-0.04025435,-0.08618899;-0.378547;-0.006554957,-0.09996061;-0.7211398;0.06373337,-0.08441061;-0.7672272;0.000733979,0.001860112;0.399288;0.02290506,0;0;0,0.003711639;0.1996882;0.01052806,0.01034911;0.4995528;0.01242874,0.1217504;0.3804469;-0.0185771,0.2303324;0.1252927;0.0202341,0.3605479;-0.1220367;0.003738672,-0.1069599;0.3710992;-0.004716499,-0.188394;0.1054845;0.03017319,-0.2353529;-0.1705493;0.0297068,0.06797651;0.004364242;-0.0419541,0.09931697;-0.3723033;-0.002719704,0.1028498;-0.7161847;0.06234219,0.09655372;-0.7042954;-0.03580243,-0.07372436;0.001344795;-0.03103079,-0.08662902;-0.3775247;-0.004736573,-0.09811837;-0.7208858;0.06212997,-0.1018797;-0.7090414;-0.03613615,0.008007277;0.3996022;0.0145223,61.30454
+0;0;0,0.0004905824;0.1994644;0.01461874,0.002872568;0.4992813;0.02309021,0.1170908;0.3758752;-0.0007823501,0.2041652;0.1105137;0.01925048,0.2983894;-0.1523876;-0.000866551,-0.1098689;0.3644074;-0.003726536,-0.1858612;0.09583905;0.01854893,-0.2042199;-0.1820002;-0.01091816,0.07175181;0.007948092;-0.03447472,0.0939251;-0.3699189;-0.0009351745,0.09906629;-0.7118732;0.07350124,0.11072;-0.76024;0.01248613,-0.06918482;-0.0004047487;-0.04016588,-0.08650705;-0.3784811;-0.006134093,-0.1003825;-0.72111;0.06395817,-0.09794741;-0.7085453;-0.03448006,0.001811483;0.399287;0.02293611,0;0;0,0.003964775;0.1996873;0.01045331,0.01095443;0.4995444;0.01232412,0.1221944;0.3802987;-0.01876649,0.2290359;0.1243634;0.01973037,0.3577021;-0.123788;0.003423057,-0.1063577;0.3712042;-0.005611399,-0.1883887;0.1058655;0.02997429,-0.2355609;-0.1701322;0.03001687,0.06797666;0.00431766;-0.04195869,0.09914332;-0.3723447;-0.002536416,0.1026801;-0.7162136;0.06259188,0.09661399;-0.7043265;-0.03556678,-0.07371252;0.001422803;-0.03105542,-0.08671439;-0.3774545;-0.004922267,-0.0983355;-0.7208237;0.06188011,-0.1018672;-0.7089807;-0.03639426,0.008501159;0.3995965;0.01442139,61.3264
+0;0;0,0.0004905824;0.1994644;0.01461874,0.002872568;0.4992813;0.02309021,0.1170908;0.3758752;-0.0007823501,0.2041652;0.1105137;0.01925048,0.2983894;-0.1523876;-0.000866551,-0.1098689;0.3644074;-0.003726536,-0.1858612;0.09583905;0.01854893,-0.2042199;-0.1820002;-0.01091816,0.07175181;0.007948092;-0.03447472,0.0939251;-0.3699189;-0.0009351745,0.09906629;-0.7118732;0.07350124,0.11072;-0.76024;0.01248613,-0.06918482;-0.0004047487;-0.04016588,-0.08650705;-0.3784811;-0.006134093,-0.1003825;-0.72111;0.06395817,-0.09794741;-0.7085453;-0.03448006,0.001811483;0.399287;0.02293611,0;0;0,0.004038726;0.199686;0.01045011,0.0110184;0.499543;0.01239827,0.1222861;0.3801792;-0.0186043,0.2282656;0.1238434;0.01960955,0.3554442;-0.1250573;0.003054617,-0.1063647;0.3712771;-0.005186301,-0.1883828;0.1058752;0.02995428,-0.2358809;-0.1700665;0.03027334,0.06805067;0.004318418;-0.04183847,0.09885816;-0.3723415;-0.002111305,0.1025528;-0.7161759;0.0631894,0.09644637;-0.7042869;-0.03496714,-0.07364459;0.001443501;-0.03121523,-0.08749749;-0.3772835;-0.003395114,-0.09860595;-0.7207201;0.06314722,-0.1021774;-0.7088747;-0.03512616,0.008578483;0.3995941;0.01446581,61.34861
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.004038726;0.199686;0.01045011,0.0110184;0.499543;0.01239827,0.1222861;0.3801792;-0.0186043,0.2282656;0.1238434;0.01960955,0.3554442;-0.1250573;0.003054617,-0.1063647;0.3712771;-0.005186301,-0.1883828;0.1058752;0.02995428,-0.2358809;-0.1700665;0.03027334,0.06805067;0.004318418;-0.04183847,0.09885816;-0.3723415;-0.002111305,0.1025528;-0.7161759;0.0631894,0.09644637;-0.7042869;-0.03496714,-0.07364459;0.001443501;-0.03121523,-0.08749749;-0.3772835;-0.003395114,-0.09860595;-0.7207201;0.06314722,-0.1021774;-0.7088747;-0.03512616,0.008578483;0.3995941;0.01446581,61.35988
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.004138424;0.1996825;0.01047772,0.01122952;0.4995365;0.01249074,0.1224499;0.3802029;-0.01859898,0.2271226;0.1232933;0.0193627,0.3527489;-0.1264227;0.003240816,-0.1061896;0.3712342;-0.005050661,-0.1883032;0.1057767;0.02944078,-0.2360606;-0.1701195;0.03016323,0.06802949;0.004349694;-0.04186967,0.09882755;-0.3722957;-0.001998622,0.1023672;-0.716116;0.06338602,0.09623271;-0.7042328;-0.03476768,-0.07367003;0.001418597;-0.03115629,-0.08804223;-0.3772388;-0.002660217,-0.09878628;-0.7207122;0.06375193,-0.1023871;-0.7088632;-0.03452105,0.008755824;0.399588;0.01453524,61.38194
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.004138424;0.1996825;0.01047772,0.01122952;0.4995365;0.01249074,0.1224499;0.3802029;-0.01859898,0.2271226;0.1232933;0.0193627,0.3527489;-0.1264227;0.003240816,-0.1061896;0.3712342;-0.005050661,-0.1883032;0.1057767;0.02944078,-0.2360606;-0.1701195;0.03016323,0.06802949;0.004349694;-0.04186967,0.09882755;-0.3722957;-0.001998622,0.1023672;-0.716116;0.06338602,0.09623271;-0.7042328;-0.03476768,-0.07367003;0.001418597;-0.03115629,-0.08804223;-0.3772388;-0.002660217,-0.09878628;-0.7207122;0.06375193,-0.1023871;-0.7088632;-0.03452105,0.008755824;0.399588;0.01453524,61.39347
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.004138424;0.1996825;0.01047772,0.01122952;0.4995365;0.01249074,0.1224499;0.3802029;-0.01859898,0.2271226;0.1232933;0.0193627,0.3527489;-0.1264227;0.003240816,-0.1061896;0.3712342;-0.005050661,-0.1883032;0.1057767;0.02944078,-0.2360606;-0.1701195;0.03016323,0.06802949;0.004349694;-0.04186967,0.09882755;-0.3722957;-0.001998622,0.1023672;-0.716116;0.06338602,0.09623271;-0.7042328;-0.03476768,-0.07367003;0.001418597;-0.03115629,-0.08804223;-0.3772388;-0.002660217,-0.09878628;-0.7207122;0.06375193,-0.1023871;-0.7088632;-0.03452105,0.008755824;0.399588;0.01453524,61.40457
+0;0;0,0.0009395228;0.1994814;0.01436326,0.004223279;0.4993032;0.022315,0.1180408;0.3756281;-0.001537895,0.2010804;0.1090688;0.01968848,0.2771934;-0.1594366;-0.002931481,-0.1089117;0.3644368;-0.003962571,-0.1852798;0.09596115;0.01814496,-0.2020657;-0.1819509;-0.01157269,0.07167557;0.007829145;-0.03466001,0.09399103;-0.370033;-0.001160618,0.09864971;-0.711659;0.07479985,0.1103316;-0.7602202;0.01404069,-0.06925092;-0.0003353219;-0.04005243,-0.08662975;-0.3784087;-0.006015804,-0.1008003;-0.7210118;0.06414381,-0.09847618;-0.7084724;-0.0342926,0.002852517;0.3993126;0.02235156,0;0;0,0.004311316;0.1996834;0.01039096,0.01174537;0.49953;0.01224684,0.1228366;0.3800449;-0.01872197,0.2262631;0.122613;0.01911697,0.3507907;-0.127598;0.002165241,-0.1057982;0.3712476;-0.005247394,-0.1882773;0.1058775;0.02904348,-0.2364824;-0.1699413;0.02953728,0.06806111;0.004301609;-0.04182322,0.0988791;-0.3723347;-0.001881868,0.1024774;-0.7161494;0.06352818,0.09639006;-0.7042745;-0.03462693,-0.07362353;0.001498212;-0.03126229,-0.08830206;-0.3771361;-0.002616022,-0.0983168;-0.7206395;0.06375523,-0.1018764;-0.7087919;-0.03451898,0.00914989;0.3995857;0.01434582,61.42682
+0;0;0,0.0009395228;0.1994814;0.01436326,0.004223279;0.4993032;0.022315,0.1180408;0.3756281;-0.001537895,0.2010804;0.1090688;0.01968848,0.2771934;-0.1594366;-0.002931481,-0.1089117;0.3644368;-0.003962571,-0.1852798;0.09596115;0.01814496,-0.2020657;-0.1819509;-0.01157269,0.07167557;0.007829145;-0.03466001,0.09399103;-0.370033;-0.001160618,0.09864971;-0.711659;0.07479985,0.1103316;-0.7602202;0.01404069,-0.06925092;-0.0003353219;-0.04005243,-0.08662975;-0.3784087;-0.006015804,-0.1008003;-0.7210118;0.06414381,-0.09847618;-0.7084724;-0.0342926,0.002852517;0.3993126;0.02235156,0;0;0,0.00447557;0.1996783;0.01041813,0.01212875;0.4995192;0.01232954,0.1231076;0.379954;-0.01875261,0.2253739;0.1220546;0.0190567,0.348277;-0.1288868;0.001078708,-0.1054977;0.3714515;-0.005421394,-0.1881766;0.1061551;0.02895916,-0.2367671;-0.1695965;0.02911039,0.06804252;0.004258472;-0.04185786,0.09880049;-0.3723588;-0.001691472,0.1023438;-0.7161341;0.06392877,0.09632261;-0.7042544;-0.03423131,-0.07364494;0.001547702;-0.0312094,-0.08855432;-0.3770421;-0.002098277,-0.09849904;-0.7205936;0.06403413,-0.101992;-0.708744;-0.03424282,0.009462141;0.3995763;0.01440852,61.44888
+0;0;0,0.001452923;0.1995149;0.0138457,0.005708072;0.4993519;0.02061065,0.1192007;0.3752179;-0.002285179,0.2009051;0.1082883;0.01946242,0.2672448;-0.1625597;-0.005844081,-0.1077394;0.3635617;-0.004049445,-0.1841225;0.09510842;0.01827669,-0.2029038;-0.1825145;-0.0129128,0.07166196;0.007754883;-0.03470483,0.09371649;-0.3701409;-0.00141241,0.09818278;-0.7116089;0.07526642,0.1097735;-0.760498;0.01491612,-0.06927012;-0.0002395305;-0.04001991,-0.08702178;-0.3782883;-0.00590292,-0.1011961;-0.7208743;0.06433895,-0.09895719;-0.7083905;-0.03408956,0.004002375;0.3993676;0.02108467,0;0;0,0.00447557;0.1996783;0.01041813,0.01212875;0.4995192;0.01232954,0.1231076;0.379954;-0.01875261,0.2253739;0.1220546;0.0190567,0.348277;-0.1288868;0.001078708,-0.1054977;0.3714515;-0.005421394,-0.1881766;0.1061551;0.02895916,-0.2367671;-0.1695965;0.02911039,0.06804252;0.004258472;-0.04185786,0.09880049;-0.3723588;-0.001691472,0.1023438;-0.7161341;0.06392877,0.09632261;-0.7042544;-0.03423131,-0.07364494;0.001547702;-0.0312094,-0.08855432;-0.3770421;-0.002098277,-0.09849904;-0.7205936;0.06403413,-0.101992;-0.708744;-0.03424282,0.009462141;0.3995763;0.01440852,61.46035
+0;0;0,0.001452923;0.1995149;0.0138457,0.005708072;0.4993519;0.02061065,0.1192007;0.3752179;-0.002285179,0.2009051;0.1082883;0.01946242,0.2672448;-0.1625597;-0.005844081,-0.1077394;0.3635617;-0.004049445,-0.1841225;0.09510842;0.01827669,-0.2029038;-0.1825145;-0.0129128,0.07166196;0.007754883;-0.03470483,0.09371649;-0.3701409;-0.00141241,0.09818278;-0.7116089;0.07526642,0.1097735;-0.760498;0.01491612,-0.06927012;-0.0002395305;-0.04001991,-0.08702178;-0.3782883;-0.00590292,-0.1011961;-0.7208743;0.06433895,-0.09895719;-0.7083905;-0.03408956,0.004002375;0.3993676;0.02108467,0;0;0,0.00447557;0.1996783;0.01041813,0.01212875;0.4995192;0.01232954,0.1231076;0.379954;-0.01875261,0.2253739;0.1220546;0.0190567,0.348277;-0.1288868;0.001078708,-0.1054977;0.3714515;-0.005421394,-0.1881766;0.1061551;0.02895916,-0.2367671;-0.1695965;0.02911039,0.06804252;0.004258472;-0.04185786,0.09880049;-0.3723588;-0.001691472,0.1023438;-0.7161341;0.06392877,0.09632261;-0.7042544;-0.03423131,-0.07364494;0.001547702;-0.0312094,-0.08855432;-0.3770421;-0.002098277,-0.09849904;-0.7205936;0.06403413,-0.101992;-0.708744;-0.03424282,0.009462141;0.3995763;0.01440852,61.47185
+0;0;0,0.001452923;0.1995149;0.0138457,0.005708072;0.4993519;0.02061065,0.1192007;0.3752179;-0.002285179,0.2009051;0.1082883;0.01946242,0.2672448;-0.1625597;-0.005844081,-0.1077394;0.3635617;-0.004049445,-0.1841225;0.09510842;0.01827669,-0.2029038;-0.1825145;-0.0129128,0.07166196;0.007754883;-0.03470483,0.09371649;-0.3701409;-0.00141241,0.09818278;-0.7116089;0.07526642,0.1097735;-0.760498;0.01491612,-0.06927012;-0.0002395305;-0.04001991,-0.08702178;-0.3782883;-0.00590292,-0.1011961;-0.7208743;0.06433895,-0.09895719;-0.7083905;-0.03408956,0.004002375;0.3993676;0.02108467,0;0;0,0.00456215;0.1996733;0.01047606,0.01228025;0.4995119;0.01247625,0.1231942;0.3798248;-0.01872827,0.2236858;0.1211331;0.01842058,0.3465391;-0.1298097;0.0001238938,-0.1053328;0.3714617;-0.005502029,-0.1882144;0.1061899;0.02857841,-0.2374316;-0.1694478;0.02735455,0.068152;0.004259995;-0.04167922,0.09895033;-0.3723606;-0.001574788,0.1023742;-0.7160773;0.06435812,0.09638396;-0.7041936;-0.0338046,-0.07350219;0.00158404;-0.03154232,-0.08856972;-0.3769412;-0.001682751,-0.09814298;-0.7205061;0.0644344,-0.1016096;-0.7086391;-0.03384672,0.009597016;0.3995689;0.01452618,61.49369
+0;0;0,0.001797235;0.1995233;0.01368319,0.006504363;0.4993573;0.02030633,0.1196948;0.3753349;-0.003463905,0.2004644;0.1082396;0.01969537,0.2573634;-0.1644787;-0.008362142,-0.1068487;0.3628196;-0.004268996,-0.1831619;0.09430248;0.01752201,-0.2032289;-0.1832823;-0.01320307,0.0716514;0.007633616;-0.03475348,0.09366997;-0.3702609;-0.001423281,0.09798556;-0.7117075;0.07535928,0.109692;-0.7601203;0.01441334,-0.06932253;-0.0001078988;-0.03992962,-0.08720381;-0.3781811;-0.006152645,-0.1014962;-0.7206471;0.06464834,-0.09953093;-0.7081712;-0.03378461,0.004661493;0.3993756;0.0208134,0;0;0,0.004570011;0.1996764;0.01041471,0.01223791;0.4995167;0.01233396,0.1230653;0.3801323;-0.01938822,0.2225619;0.1211319;0.01828473,0.3443833;-0.1302193;-0.001262574,-0.105431;0.3716056;-0.005356619,-0.1883748;0.1063132;0.02841104,-0.2377372;-0.1692974;0.02694661,0.06802751;0.004255625;-0.04188254,0.09877516;-0.3723086;-0.001213748,0.1022044;-0.7159795;0.06495726,0.09595639;-0.7040948;-0.03318955,-0.07358271;0.001597693;-0.03135335,-0.08856856;-0.3769296;-0.001477957,-0.09824622;-0.7205173;0.06450537,-0.1019711;-0.7086545;-0.03376552,0.009577464;0.3995737;0.01441321,61.51598
+0;0;0,0.001797235;0.1995233;0.01368319,0.006504363;0.4993573;0.02030633,0.1196948;0.3753349;-0.003463905,0.2004644;0.1082396;0.01969537,0.2573634;-0.1644787;-0.008362142,-0.1068487;0.3628196;-0.004268996,-0.1831619;0.09430248;0.01752201,-0.2032289;-0.1832823;-0.01320307,0.0716514;0.007633616;-0.03475348,0.09366997;-0.3702609;-0.001423281,0.09798556;-0.7117075;0.07535928,0.109692;-0.7601203;0.01441334,-0.06932253;-0.0001078988;-0.03992962,-0.08720381;-0.3781811;-0.006152645,-0.1014962;-0.7206471;0.06464834,-0.09953093;-0.7081712;-0.03378461,0.004661493;0.3993756;0.0208134,0;0;0,0.004570011;0.1996764;0.01041471,0.01223791;0.4995167;0.01233396,0.1230653;0.3801323;-0.01938822,0.2225619;0.1211319;0.01828473,0.3443833;-0.1302193;-0.001262574,-0.105431;0.3716056;-0.005356619,-0.1883748;0.1063132;0.02841104,-0.2377372;-0.1692974;0.02694661,0.06802751;0.004255625;-0.04188254,0.09877516;-0.3723086;-0.001213748,0.1022044;-0.7159795;0.06495726,0.09595639;-0.7040948;-0.03318955,-0.07358271;0.001597693;-0.03135335,-0.08856856;-0.3769296;-0.001477957,-0.09824622;-0.7205173;0.06450537,-0.1019711;-0.7086545;-0.03376552,0.009577464;0.3995737;0.01441321,61.52736
+0;0;0,0.001797235;0.1995233;0.01368319,0.006504363;0.4993573;0.02030633,0.1196948;0.3753349;-0.003463905,0.2004644;0.1082396;0.01969537,0.2573634;-0.1644787;-0.008362142,-0.1068487;0.3628196;-0.004268996,-0.1831619;0.09430248;0.01752201,-0.2032289;-0.1832823;-0.01320307,0.0716514;0.007633616;-0.03475348,0.09366997;-0.3702609;-0.001423281,0.09798556;-0.7117075;0.07535928,0.109692;-0.7601203;0.01441334,-0.06932253;-0.0001078988;-0.03992962,-0.08720381;-0.3781811;-0.006152645,-0.1014962;-0.7206471;0.06464834,-0.09953093;-0.7081712;-0.03378461,0.004661493;0.3993756;0.0208134,0;0;0,0.004725931;0.1996704;0.01046013,0.01259594;0.499505;0.01244526,0.123339;0.3800259;-0.01930546,0.2214121;0.1204495;0.01813432,0.3406177;-0.1320241;-0.003011176,-0.1051771;0.3716938;-0.005183849,-0.1881973;0.106383;0.02825031,-0.2382063;-0.1691049;0.02589815,0.06810065;0.004192244;-0.04176992,0.09871432;-0.3723654;-0.0009393468,0.1022582;-0.7159822;0.06550581,0.09599663;-0.7040916;-0.03264124,-0.07353432;0.001695585;-0.03146155,-0.08866876;-0.3767916;-0.001156252,-0.09843352;-0.7203292;0.06507504,-0.1021695;-0.7084661;-0.0331955,0.00986957;0.3995634;0.01450229,61.54952
+0;0;0,0.001901349;0.1995163;0.01377143,0.006547239;0.4993466;0.0206154,0.1196902;0.3752561;-0.003560996,0.1993054;0.1078238;0.0197074,0.2480742;-0.1663524;-0.009430105,-0.1066771;0.3624412;-0.00391181,-0.1827219;0.09380504;0.01734353,-0.2025086;-0.183913;-0.01234112,0.07155825;0.007622647;-0.03494727,0.09287209;-0.3702366;-0.0007694028,0.0968215;-0.711671;0.07608697,0.1088386;-0.7597518;0.01477646,-0.06943666;-7.377777E-05;-0.0397309,-0.08775782;-0.3781348;-0.006053176,-0.1024406;-0.7205148;0.0650834,-0.1005855;-0.7080374;-0.03335196,0.004740668;0.3993638;0.02104403,0;0;0,0.004725931;0.1996704;0.01046013,0.01259594;0.499505;0.01244526,0.123339;0.3800259;-0.01930546,0.2214121;0.1204495;0.01813432,0.3406177;-0.1320241;-0.003011176,-0.1051771;0.3716938;-0.005183849,-0.1881973;0.106383;0.02825031,-0.2382063;-0.1691049;0.02589815,0.06810065;0.004192244;-0.04176992,0.09871432;-0.3723654;-0.0009393468,0.1022582;-0.7159822;0.06550581,0.09599663;-0.7040916;-0.03264124,-0.07353432;0.001695585;-0.03146155,-0.08866876;-0.3767916;-0.001156252,-0.09843352;-0.7203292;0.06507504,-0.1021695;-0.7084661;-0.0331955,0.00986957;0.3995634;0.01450229,61.56076
+0;0;0,0.001901349;0.1995163;0.01377143,0.006547239;0.4993466;0.0206154,0.1196902;0.3752561;-0.003560996,0.1993054;0.1078238;0.0197074,0.2480742;-0.1663524;-0.009430105,-0.1066771;0.3624412;-0.00391181,-0.1827219;0.09380504;0.01734353,-0.2025086;-0.183913;-0.01234112,0.07155825;0.007622647;-0.03494727,0.09287209;-0.3702366;-0.0007694028,0.0968215;-0.711671;0.07608697,0.1088386;-0.7597518;0.01477646,-0.06943666;-7.377777E-05;-0.0397309,-0.08775782;-0.3781348;-0.006053176,-0.1024406;-0.7205148;0.0650834,-0.1005855;-0.7080374;-0.03335196,0.004740668;0.3993638;0.02104403,0;0;0,0.004725931;0.1996704;0.01046013,0.01259594;0.499505;0.01244526,0.123339;0.3800259;-0.01930546,0.2214121;0.1204495;0.01813432,0.3406177;-0.1320241;-0.003011176,-0.1051771;0.3716938;-0.005183849,-0.1881973;0.106383;0.02825031,-0.2382063;-0.1691049;0.02589815,0.06810065;0.004192244;-0.04176992,0.09871432;-0.3723654;-0.0009393468,0.1022582;-0.7159822;0.06550581,0.09599663;-0.7040916;-0.03264124,-0.07353432;0.001695585;-0.03146155,-0.08866876;-0.3767916;-0.001156252,-0.09843352;-0.7203292;0.06507504,-0.1021695;-0.7084661;-0.0331955,0.00986957;0.3995634;0.01450229,61.57204
+0;0;0,0.001901349;0.1995163;0.01377143,0.006547239;0.4993466;0.0206154,0.1196902;0.3752561;-0.003560996,0.1993054;0.1078238;0.0197074,0.2480742;-0.1663524;-0.009430105,-0.1066771;0.3624412;-0.00391181,-0.1827219;0.09380504;0.01734353,-0.2025086;-0.183913;-0.01234112,0.07155825;0.007622647;-0.03494727,0.09287209;-0.3702366;-0.0007694028,0.0968215;-0.711671;0.07608697,0.1088386;-0.7597518;0.01477646,-0.06943666;-7.377777E-05;-0.0397309,-0.08775782;-0.3781348;-0.006053176,-0.1024406;-0.7205148;0.0650834,-0.1005855;-0.7080374;-0.03335196,0.004740668;0.3993638;0.02104403,0;0;0,0.004833644;0.1996547;0.01070786,0.0127719;0.4994861;0.01283679,0.1234135;0.3799634;-0.01915119,0.219566;0.1196217;0.01795551,0.3364621;-0.1337814;-0.004894726,-0.1050204;0.37179;-0.005081978,-0.1879583;0.106397;0.02790079,-0.2383554;-0.1690244;0.02612019,0.06806738;0.004001479;-0.0418428,0.09880345;-0.3724834;-0.0004373267,0.1024605;-0.7161301;0.06584683,0.09620114;-0.704221;-0.03230378,-0.07356777;0.001867636;-0.03137347,-0.08778401;-0.3767154;-0.001829643,-0.0985266;-0.7201483;0.06479195,-0.1022561;-0.7082731;-0.03348105,0.0100109;0.3995446;0.01485495,61.59423
+0;0;0,0.001931825;0.1995179;0.01374316,0.006409662;0.499349;0.02068762,0.1196286;0.3754516;-0.003704032,0.1973344;0.107437;0.01931704,0.2401356;-0.1676256;-0.01082581,-0.1066543;0.3620711;-0.003727967,-0.1817458;0.09315652;0.01739583,-0.2038055;-0.1843409;-0.01274693,0.07149884;0.007317953;-0.0351335,0.0919367;-0.3705042;-2.351776E-05,0.09586458;-0.711885;0.07707202,0.1077882;-0.7597631;0.015486,-0.06954484;0.0002128313;-0.03954073,-0.08857163;-0.377819;-0.005926833,-0.1033605;-0.7200753;0.06578044,-0.1016368;-0.707596;-0.03265764,0.004674883;0.3993648;0.02107112,0;0;0,0.004945376;0.1996525;0.0106977,0.01306889;0.4994791;0.01282153,0.1236095;0.3796917;-0.01913562,0.2181736;0.1186901;0.0174125,0.3313507;-0.1363223;-0.006244397,-0.1047888;0.3716605;-0.004913809,-0.1876405;0.1062017;0.02775489,-0.2382343;-0.169183;0.0258733,0.06811811;0.003990628;-0.04176119,0.09859864;-0.3724458;0.0002696142,0.102223;-0.716118;0.06642275,0.09595929;-0.704212;-0.03172702,-0.07353573;0.001903079;-0.03144635,-0.08840142;-0.3766226;-0.001491319,-0.09859699;-0.7200117;0.06544136,-0.1023326;-0.7081355;-0.03283161,0.01024408;0.3995394;0.01484,61.61648
+0;0;0,0.001931825;0.1995179;0.01374316,0.006409662;0.499349;0.02068762,0.1196286;0.3754516;-0.003704032,0.1973344;0.107437;0.01931704,0.2401356;-0.1676256;-0.01082581,-0.1066543;0.3620711;-0.003727967,-0.1817458;0.09315652;0.01739583,-0.2038055;-0.1843409;-0.01274693,0.07149884;0.007317953;-0.0351335,0.0919367;-0.3705042;-2.351776E-05,0.09586458;-0.711885;0.07707202,0.1077882;-0.7597631;0.015486,-0.06954484;0.0002128313;-0.03954073,-0.08857163;-0.377819;-0.005926833,-0.1033605;-0.7200753;0.06578044,-0.1016368;-0.707596;-0.03265764,0.004674883;0.3993648;0.02107112,0;0;0,0.004945376;0.1996525;0.0106977,0.01306889;0.4994791;0.01282153,0.1236095;0.3796917;-0.01913562,0.2181736;0.1186901;0.0174125,0.3313507;-0.1363223;-0.006244397,-0.1047888;0.3716605;-0.004913809,-0.1876405;0.1062017;0.02775489,-0.2382343;-0.169183;0.0258733,0.06811811;0.003990628;-0.04176119,0.09859864;-0.3724458;0.0002696142,0.102223;-0.716118;0.06642275,0.09595929;-0.704212;-0.03172702,-0.07353573;0.001903079;-0.03144635,-0.08840142;-0.3766226;-0.001491319,-0.09859699;-0.7200117;0.06544136,-0.1023326;-0.7081355;-0.03283161,0.01024408;0.3995394;0.01484,61.62777
+0;0;0,0.001931825;0.1995179;0.01374316,0.006409662;0.499349;0.02068762,0.1196286;0.3754516;-0.003704032,0.1973344;0.107437;0.01931704,0.2401356;-0.1676256;-0.01082581,-0.1066543;0.3620711;-0.003727967,-0.1817458;0.09315652;0.01739583,-0.2038055;-0.1843409;-0.01274693,0.07149884;0.007317953;-0.0351335,0.0919367;-0.3705042;-2.351776E-05,0.09586458;-0.711885;0.07707202,0.1077882;-0.7597631;0.015486,-0.06954484;0.0002128313;-0.03954073,-0.08857163;-0.377819;-0.005926833,-0.1033605;-0.7200753;0.06578044,-0.1016368;-0.707596;-0.03265764,0.004674883;0.3993648;0.02107112,0;0;0,0.004945376;0.1996525;0.0106977,0.01306889;0.4994791;0.01282153,0.1236095;0.3796917;-0.01913562,0.2181736;0.1186901;0.0174125,0.3313507;-0.1363223;-0.006244397,-0.1047888;0.3716605;-0.004913809,-0.1876405;0.1062017;0.02775489,-0.2382343;-0.169183;0.0258733,0.06811811;0.003990628;-0.04176119,0.09859864;-0.3724458;0.0002696142,0.102223;-0.716118;0.06642275,0.09595929;-0.704212;-0.03172702,-0.07353573;0.001903079;-0.03144635,-0.08840142;-0.3766226;-0.001491319,-0.09859699;-0.7200117;0.06544136,-0.1023326;-0.7081355;-0.03283161,0.01024408;0.3995394;0.01484,61.63914
+0;0;0,0.002128628;0.1995097;0.0138326,0.006948818;0.4993336;0.02086149,0.1199131;0.3751463;-0.003869472,0.1967869;0.1068943;0.01917951,0.2343126;-0.1686681;-0.01333558,-0.106001;0.3614826;-0.003790995,-0.182016;0.09286234;0.01777009,-0.2033949;-0.1847284;-0.01200124,0.07150631;0.007382823;-0.0351047,0.09171653;-0.3704055;0.0004974231,0.09556685;-0.7117884;0.0775877,0.1076802;-0.7596341;0.01599773,-0.06954101;0.0002078447;-0.0395475,-0.08879379;-0.3777696;-0.005454134,-0.1035856;-0.7199923;0.06641284,-0.1018727;-0.7075078;-0.03202635,0.005087585;0.3993515;0.02121449,0;0;0,0.005084581;0.1996509;0.01066217,0.01343005;0.4994716;0.01278231,0.1238209;0.3795698;-0.01936842,0.2164116;0.1177639;0.01647324,0.3239569;-0.1395043;-0.008964177,-0.1044985;0.3715135;-0.004765181,-0.1874408;0.106062;0.02773138,-0.2378331;-0.1693586;0.02570598,0.06810296;0.003916531;-0.04179292,0.09838782;-0.3724653;0.0008631162,0.1021029;-0.7161942;0.06671624,0.09576327;-0.7042779;-0.03143054,-0.07356302;0.001979348;-0.03137779,-0.08889181;-0.3765106;-0.001205264,-0.09862559;-0.719896;0.06581542,-0.1024369;-0.708028;-0.03245312,0.01053279;0.3995339;0.0147965,61.66146
+0;0;0,0.002128628;0.1995097;0.0138326,0.006948818;0.4993336;0.02086149,0.1199131;0.3751463;-0.003869472,0.1967869;0.1068943;0.01917951,0.2343126;-0.1686681;-0.01333558,-0.106001;0.3614826;-0.003790995,-0.182016;0.09286234;0.01777009,-0.2033949;-0.1847284;-0.01200124,0.07150631;0.007382823;-0.0351047,0.09171653;-0.3704055;0.0004974231,0.09556685;-0.7117884;0.0775877,0.1076802;-0.7596341;0.01599773,-0.06954101;0.0002078447;-0.0395475,-0.08879379;-0.3777696;-0.005454134,-0.1035856;-0.7199923;0.06641284,-0.1018727;-0.7075078;-0.03202635,0.005087585;0.3993515;0.02121449,0;0;0,0.005216464;0.199638;0.01083839,0.01365187;0.4994543;0.01315867,0.1239364;0.3793543;-0.0192092,0.2147825;0.1168697;0.0161296,0.3191148;-0.1417526;-0.008955676,-0.1042329;0.3713488;-0.004623721,-0.1871663;0.105909;0.02799172,-0.2377224;-0.1694795;0.02570397,0.06796017;0.003808702;-0.04203463,0.09833023;-0.3725318;0.0009247139,0.1021331;-0.7161367;0.06741667,0.09579972;-0.7042074;-0.03073291,-0.07367028;0.002068194;-0.03111933,-0.08905116;-0.376389;-0.0005643424,-0.09870166;-0.7197917;0.06637895,-0.102506;-0.7079092;-0.03189253,0.01073195;0.3995161;0.0151165,61.68348
+0;0;0,0.002128628;0.1995097;0.0138326,0.006948818;0.4993336;0.02086149,0.1199131;0.3751463;-0.003869472,0.1967869;0.1068943;0.01917951,0.2343126;-0.1686681;-0.01333558,-0.106001;0.3614826;-0.003790995,-0.182016;0.09286234;0.01777009,-0.2033949;-0.1847284;-0.01200124,0.07150631;0.007382823;-0.0351047,0.09171653;-0.3704055;0.0004974231,0.09556685;-0.7117884;0.0775877,0.1076802;-0.7596341;0.01599773,-0.06954101;0.0002078447;-0.0395475,-0.08879379;-0.3777696;-0.005454134,-0.1035856;-0.7199923;0.06641284,-0.1018727;-0.7075078;-0.03202635,0.005087585;0.3993515;0.02121449,0;0;0,0.005216464;0.199638;0.01083839,0.01365187;0.4994543;0.01315867,0.1239364;0.3793543;-0.0192092,0.2147825;0.1168697;0.0161296,0.3191148;-0.1417526;-0.008955676,-0.1042329;0.3713488;-0.004623721,-0.1871663;0.105909;0.02799172,-0.2377224;-0.1694795;0.02570397,0.06796017;0.003808702;-0.04203463,0.09833023;-0.3725318;0.0009247139,0.1021331;-0.7161367;0.06741667,0.09579972;-0.7042074;-0.03073291,-0.07367028;0.002068194;-0.03111933,-0.08905116;-0.376389;-0.0005643424,-0.09870166;-0.7197917;0.06637895,-0.102506;-0.7079092;-0.03189253,0.01073195;0.3995161;0.0151165,61.70597
+0;0;0,0.002331081;0.1995103;0.01379086,0.007344269;0.499331;0.02083737,0.1202589;0.375163;-0.003920268,0.1965626;0.1066998;0.0185576,0.2295417;-0.1692145;-0.01584705,-0.1058406;0.3616261;-0.00322118,-0.1818542;0.09297478;0.01795389,-0.2022175;-0.184744;-0.01133106,0.07142548;0.007495807;-0.03524506,0.0911008;-0.3702415;0.0011882,0.09500693;-0.7116208;0.07829145,0.1071074;-0.7594342;0.01665822,-0.06959882;0.0001130922;-0.03944605,-0.08941174;-0.3778006;-0.004968509,-0.1042704;-0.7199938;0.06702418,-0.1026811;-0.7075089;-0.03141716,0.005432306;0.3993499;0.02117668,0;0;0,0.005258735;0.199641;0.01076248,0.01372609;0.499457;0.0130327,0.1240287;0.3794065;-0.01927537,0.2123161;0.1158537;0.01456597,0.3132755;-0.1441073;-0.01048395,-0.1042283;0.3715588;-0.00465647,-0.1871159;0.1060723;0.02769452,-0.2376294;-0.1693211;0.02507682,0.06795789;0.003733954;-0.04204501,0.0982939;-0.3725877;0.001102462,0.1019265;-0.7161373;0.06788923,0.1052413;-0.7645177;0.005876772,-0.07367827;0.002162405;-0.03109398,-0.08857884;-0.376339;-0.0008510705,-0.09863139;-0.7197157;0.06616716,-0.1024317;-0.7078257;-0.03210586,0.01080102;0.3995192;0.01500264,61.71711
+0;0;0,0.002331081;0.1995103;0.01379086,0.007344269;0.499331;0.02083737,0.1202589;0.375163;-0.003920268,0.1965626;0.1066998;0.0185576,0.2295417;-0.1692145;-0.01584705,-0.1058406;0.3616261;-0.00322118,-0.1818542;0.09297478;0.01795389,-0.2022175;-0.184744;-0.01133106,0.07142548;0.007495807;-0.03524506,0.0911008;-0.3702415;0.0011882,0.09500693;-0.7116208;0.07829145,0.1071074;-0.7594342;0.01665822,-0.06959882;0.0001130922;-0.03944605,-0.08941174;-0.3778006;-0.004968509,-0.1042704;-0.7199938;0.06702418,-0.1026811;-0.7075089;-0.03141716,0.005432306;0.3993499;0.02117668,0;0;0,0.005258735;0.199641;0.01076248,0.01372609;0.499457;0.0130327,0.1240287;0.3794065;-0.01927537,0.2123161;0.1158537;0.01456597,0.3132755;-0.1441073;-0.01048395,-0.1042283;0.3715588;-0.00465647,-0.1871159;0.1060723;0.02769452,-0.2376294;-0.1693211;0.02507682,0.06795789;0.003733954;-0.04204501,0.0982939;-0.3725877;0.001102462,0.1019265;-0.7161373;0.06788923,0.1052413;-0.7645177;0.005876772,-0.07367827;0.002162405;-0.03109398,-0.08857884;-0.376339;-0.0008510705,-0.09863139;-0.7197157;0.06616716,-0.1024317;-0.7078257;-0.03210586,0.01080102;0.3995192;0.01500264,61.72842
+0;0;0,0.002331081;0.1995103;0.01379086,0.007344269;0.499331;0.02083737,0.1202589;0.375163;-0.003920268,0.1965626;0.1066998;0.0185576,0.2295417;-0.1692145;-0.01584705,-0.1058406;0.3616261;-0.00322118,-0.1818542;0.09297478;0.01795389,-0.2022175;-0.184744;-0.01133106,0.07142548;0.007495807;-0.03524506,0.0911008;-0.3702415;0.0011882,0.09500693;-0.7116208;0.07829145,0.1071074;-0.7594342;0.01665822,-0.06959882;0.0001130922;-0.03944605,-0.08941174;-0.3778006;-0.004968509,-0.1042704;-0.7199938;0.06702418,-0.1026811;-0.7075089;-0.03141716,0.005432306;0.3993499;0.02117668,0;0;0,0.005440356;0.1996389;0.01071101,0.01435118;0.499443;0.01281813,0.1244708;0.3792922;-0.0194049,0.2113203;0.1151893;0.01386454,0.3084179;-0.1461277;-0.01231721,-0.1038636;0.3717054;-0.004509665,-0.1867495;0.1062059;0.02773863,-0.2372022;-0.169197;0.02495229,0.06795746;0.003733733;-0.04204572,0.09837686;-0.3725618;0.001271427,0.1019237;-0.7160681;0.06828463,0.1048066;-0.7643474;0.006123152,-0.07368902;0.002172199;-0.03106783,-0.08847803;-0.3763198;-0.0006525554,-0.09861441;-0.7196739;0.0664683,-0.1024511;-0.7077888;-0.03180242,0.01125433;0.3995115;0.01484711,61.75051
+0;0;0,0.002317416;0.199508;0.01382733,0.007199313;0.4993284;0.02098447,0.1200836;0.3751244;-0.004156342,0.1958808;0.1065164;0.01830605,0.2243057;-0.1694766;-0.019375,-0.1060295;0.3617565;-0.002881166,-0.182386;0.09317577;0.01795296,-0.2039007;-0.184414;-0.01172907,0.07144298;0.0075328;-0.03520168,0.09063666;-0.3702153;0.001376458,0.09409299;-0.711514;0.07885721,0.1065953;-0.7589816;0.0168695,-0.0695769;0.0001206293;-0.03948468,-0.09044845;-0.377657;-0.0041513,-0.1048936;-0.7198499;0.06792727,-0.1034673;-0.7073574;-0.03051793,0.005339734;0.3993461;0.02128299,0;0;0,0.005440356;0.1996389;0.01071101,0.01435118;0.499443;0.01281813,0.1244708;0.3792922;-0.0194049,0.2113203;0.1151893;0.01386454,0.3084179;-0.1461277;-0.01231721,-0.1038636;0.3717054;-0.004509665,-0.1867495;0.1062059;0.02773863,-0.2372022;-0.169197;0.02495229,0.06795746;0.003733733;-0.04204572,0.09837686;-0.3725618;0.001271427,0.1019237;-0.7160681;0.06828463,0.1048066;-0.7643474;0.006123152,-0.07368902;0.002172199;-0.03106783,-0.08847803;-0.3763198;-0.0006525554,-0.09861441;-0.7196739;0.0664683,-0.1024511;-0.7077888;-0.03180242,0.01125433;0.3995115;0.01484711,61.76184
+0;0;0,0.002317416;0.199508;0.01382733,0.007199313;0.4993284;0.02098447,0.1200836;0.3751244;-0.004156342,0.1958808;0.1065164;0.01830605,0.2243057;-0.1694766;-0.019375,-0.1060295;0.3617565;-0.002881166,-0.182386;0.09317577;0.01795296,-0.2039007;-0.184414;-0.01172907,0.07144298;0.0075328;-0.03520168,0.09063666;-0.3702153;0.001376458,0.09409299;-0.711514;0.07885721,0.1065953;-0.7589816;0.0168695,-0.0695769;0.0001206293;-0.03948468,-0.09044845;-0.377657;-0.0041513,-0.1048936;-0.7198499;0.06792727,-0.1034673;-0.7073574;-0.03051793,0.005339734;0.3993461;0.02128299,0;0;0,0.005525051;0.1996351;0.010738,0.01454394;0.4994358;0.01286202,0.1245676;0.3791733;-0.01948762,0.2097418;0.1144261;0.0129821,0.3030931;-0.1481546;-0.01416337,-0.1037123;0.3718469;-0.00466634,-0.1866738;0.1063769;0.02763046,-0.2370084;-0.1690477;0.02485645,0.06790435;0.00364606;-0.04213912,0.09839828;-0.3726888;0.0007820688,0.102183;-0.7160928;0.06830515,0.1053272;-0.7641335;0.005857002,-0.07372065;0.002243671;-0.0309876,-0.08799129;-0.3762967;-0.0009284932,-0.09864306;-0.7196438;0.06614838,-0.1024549;-0.7077566;-0.03212366,0.01140814;0.3995055;0.01488597,61.78407
+0;0;0,0.002317416;0.199508;0.01382733,0.007199313;0.4993284;0.02098447,0.1200836;0.3751244;-0.004156342,0.1958808;0.1065164;0.01830605,0.2243057;-0.1694766;-0.019375,-0.1060295;0.3617565;-0.002881166,-0.182386;0.09317577;0.01795296,-0.2039007;-0.184414;-0.01172907,0.07144298;0.0075328;-0.03520168,0.09063666;-0.3702153;0.001376458,0.09409299;-0.711514;0.07885721,0.1065953;-0.7589816;0.0168695,-0.0695769;0.0001206293;-0.03948468,-0.09044845;-0.377657;-0.0041513,-0.1048936;-0.7198499;0.06792727,-0.1034673;-0.7073574;-0.03051793,0.005339734;0.3993461;0.02128299,0;0;0,0.005525051;0.1996351;0.010738,0.01454394;0.4994358;0.01286202,0.1245676;0.3791733;-0.01948762,0.2097418;0.1144261;0.0129821,0.3030931;-0.1481546;-0.01416337,-0.1037123;0.3718469;-0.00466634,-0.1866738;0.1063769;0.02763046,-0.2370084;-0.1690477;0.02485645,0.06790435;0.00364606;-0.04213912,0.09839828;-0.3726888;0.0007820688,0.102183;-0.7160928;0.06830515,0.1053272;-0.7641335;0.005857002,-0.07372065;0.002243671;-0.0309876,-0.08799129;-0.3762967;-0.0009284932,-0.09864306;-0.7196438;0.06614838,-0.1024549;-0.7077566;-0.03212366,0.01140814;0.3995055;0.01488597,61.80642
+0;0;0,0.001979314;0.1994835;0.01422767,0.006666987;0.4993027;0.02155237,0.1196019;0.3750459;-0.003815837,0.1949351;0.1062416;0.01784477,0.2199466;-0.1697068;-0.02248979,-0.1065138;0.3617519;-0.002152257,-0.1827997;0.09311375;0.01819551,-0.2049519;-0.1843662;-0.01203939,0.0715219;0.007553115;-0.03503666,0.09032672;-0.3701872;0.001822986,0.09376787;-0.7114635;0.07940332,0.1062633;-0.7580249;0.01629862,-0.0694383;0.0001447145;-0.03972784,-0.09091256;-0.3775145;-0.003501039,-0.1053015;-0.7196918;0.06866312,-0.1040243;-0.7071695;-0.02978939,0.004908544;0.3993185;0.02180192,0;0;0,0.005646383;0.199634;0.01069513,0.0148324;0.4994301;0.01273653,0.1247599;0.3790058;-0.01961683,0.2083645;0.1136521;0.01196877,0.2959693;-0.1507506;-0.01660796,-0.1035491;0.3720119;-0.004589847,-0.1866527;0.1065447;0.02736319,-0.2367536;-0.1689244;0.02478357,0.06790601;0.003611206;-0.04213945,0.09848306;-0.3727046;0.0008890778,0.1022428;-0.7160648;0.06863611,0.1053375;-0.7643438;0.006484531,-0.07372104;0.002299328;-0.03098259,-0.08780702;-0.3762336;-0.0007435195,-0.0985187;-0.7195572;0.06644411,-0.102376;-0.7076791;-0.03182448,0.01164056;0.3995022;0.01479137,61.81755
+0;0;0,0.001979314;0.1994835;0.01422767,0.006666987;0.4993027;0.02155237,0.1196019;0.3750459;-0.003815837,0.1949351;0.1062416;0.01784477,0.2199466;-0.1697068;-0.02248979,-0.1065138;0.3617519;-0.002152257,-0.1827997;0.09311375;0.01819551,-0.2049519;-0.1843662;-0.01203939,0.0715219;0.007553115;-0.03503666,0.09032672;-0.3701872;0.001822986,0.09376787;-0.7114635;0.07940332,0.1062633;-0.7580249;0.01629862,-0.0694383;0.0001447145;-0.03972784,-0.09091256;-0.3775145;-0.003501039,-0.1053015;-0.7196918;0.06866312,-0.1040243;-0.7071695;-0.02978939,0.004908544;0.3993185;0.02180192,0;0;0,0.005646383;0.199634;0.01069513,0.0148324;0.4994301;0.01273653,0.1247599;0.3790058;-0.01961683,0.2083645;0.1136521;0.01196877,0.2959693;-0.1507506;-0.01660796,-0.1035491;0.3720119;-0.004589847,-0.1866527;0.1065447;0.02736319,-0.2367536;-0.1689244;0.02478357,0.06790601;0.003611206;-0.04213945,0.09848306;-0.3727046;0.0008890778,0.1022428;-0.7160648;0.06863611,0.1053375;-0.7643438;0.006484531,-0.07372104;0.002299328;-0.03098259,-0.08780702;-0.3762336;-0.0007435195,-0.0985187;-0.7195572;0.06644411,-0.102376;-0.7076791;-0.03182448,0.01164056;0.3995022;0.01479137,61.84019
+0;0;0,0.001979314;0.1994835;0.01422767,0.006666987;0.4993027;0.02155237,0.1196019;0.3750459;-0.003815837,0.1949351;0.1062416;0.01784477,0.2199466;-0.1697068;-0.02248979,-0.1065138;0.3617519;-0.002152257,-0.1827997;0.09311375;0.01819551,-0.2049519;-0.1843662;-0.01203939,0.0715219;0.007553115;-0.03503666,0.09032672;-0.3701872;0.001822986,0.09376787;-0.7114635;0.07940332,0.1062633;-0.7580249;0.01629862,-0.0694383;0.0001447145;-0.03972784,-0.09091256;-0.3775145;-0.003501039,-0.1053015;-0.7196918;0.06866312,-0.1040243;-0.7071695;-0.02978939,0.004908544;0.3993185;0.02180192,0;0;0,0.005646383;0.199634;0.01069513,0.0148324;0.4994301;0.01273653,0.1247599;0.3790058;-0.01961683,0.2083645;0.1136521;0.01196877,0.2959693;-0.1507506;-0.01660796,-0.1035491;0.3720119;-0.004589847,-0.1866527;0.1065447;0.02736319,-0.2367536;-0.1689244;0.02478357,0.06790601;0.003611206;-0.04213945,0.09848306;-0.3727046;0.0008890778,0.1022428;-0.7160648;0.06863611,0.1053375;-0.7643438;0.006484531,-0.07372104;0.002299328;-0.03098259,-0.08780702;-0.3762336;-0.0007435195,-0.0985187;-0.7195572;0.06644411,-0.102376;-0.7076791;-0.03182448,0.01164056;0.3995022;0.01479137,61.86225
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.005646383;0.199634;0.01069513,0.0148324;0.4994301;0.01273653,0.1247599;0.3790058;-0.01961683,0.2083645;0.1136521;0.01196877,0.2959693;-0.1507506;-0.01660796,-0.1035491;0.3720119;-0.004589847,-0.1866527;0.1065447;0.02736319,-0.2367536;-0.1689244;0.02478357,0.06790601;0.003611206;-0.04213945,0.09848306;-0.3727046;0.0008890778,0.1022428;-0.7160648;0.06863611,0.1053375;-0.7643438;0.006484531,-0.07372104;0.002299328;-0.03098259,-0.08780702;-0.3762336;-0.0007435195,-0.0985187;-0.7195572;0.06644411,-0.102376;-0.7076791;-0.03182448,0.01164056;0.3995022;0.01479137,61.87351
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.005678657;0.1996319;0.01071722,0.01487401;0.4994273;0.01280965,0.1247457;0.3788956;-0.01968254,0.2048581;0.1124118;0.01143598,0.2885365;-0.1528151;-0.02100849,-0.1035044;0.3720022;-0.00453582,-0.1866309;0.1065005;0.02706839,-0.2365676;-0.1690017;0.02486434,0.06790733;0.003620408;-0.04213653,0.09834124;-0.372716;0.0008134991,0.1022666;-0.7160314;0.06877761,0.1052518;-0.7640749;0.006325215,-0.07371835;0.002306713;-0.03098843,-0.08774415;-0.3762333;-0.0008108057,-0.09893475;-0.7193635;0.06728072,-0.1028187;-0.7075093;-0.0309824,0.01168321;0.3994991;0.01484822,61.88465
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.005678657;0.1996319;0.01071722,0.01487401;0.4994273;0.01280965,0.1247457;0.3788956;-0.01968254,0.2048581;0.1124118;0.01143598,0.2885365;-0.1528151;-0.02100849,-0.1035044;0.3720022;-0.00453582,-0.1866309;0.1065005;0.02706839,-0.2365676;-0.1690017;0.02486434,0.06790733;0.003620408;-0.04213653,0.09834124;-0.372716;0.0008134991,0.1022666;-0.7160314;0.06877761,0.1052518;-0.7640749;0.006325215,-0.07371835;0.002306713;-0.03098843,-0.08774415;-0.3762333;-0.0008108057,-0.09893475;-0.7193635;0.06728072,-0.1028187;-0.7075093;-0.0309824,0.01168321;0.3994991;0.01484822,61.907
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.005777949;0.1996312;0.0106763,0.01513022;0.4994222;0.01272976,0.1249053;0.3789105;-0.01991585,0.2020364;0.1114948;0.01073766,0.2790454;-0.1554023;-0.02441303,-0.1033133;0.3720357;-0.004566392,-0.1865317;0.106584;0.02721558,-0.2365637;-0.1688983;0.02470708,0.06790837;0.003586796;-0.04213772,0.09830167;-0.3727373;0.0009481534,0.1022532;-0.7160394;0.06897789,0.1056879;-0.7641295;0.006606773,-0.07371452;0.002360544;-0.0309935,-0.08779252;-0.3761582;-0.000573298,-0.09903936;-0.7193086;0.0674067,-0.1029642;-0.7074538;-0.03085495,0.01188965;0.3994957;0.01477855,61.91811
+0;0;0,0.002217416;0.1994769;0.01428531,0.006918597;0.4992866;0.02198803,0.1199344;0.3756004;-0.00364504,0.1942078;0.1064002;0.0167196,0.2154746;-0.1695043;-0.02599432,-0.1063957;0.3622165;-0.002011729,-0.1835178;0.09383786;0.01860544,-0.2048252;-0.1835718;-0.01285644,0.07171164;0.007580656;-0.03464065,0.08869225;-0.3701441;0.003249556,0.09219048;-0.7113802;0.08100356,0.1042482;-0.7580805;0.01798221,-0.06918658;0.000176646;-0.04016449,-0.09210841;-0.37728;-0.002733309,-0.1070484;-0.7192457;0.0703166,-0.09081602;-0.7662138;0.008571833,0.005152017;0.3993022;0.02210811,0;0;0,0.005777949;0.1996312;0.0106763,0.01513022;0.4994222;0.01272976,0.1249053;0.3789105;-0.01991585,0.2020364;0.1114948;0.01073766,0.2790454;-0.1554023;-0.02441303,-0.1033133;0.3720357;-0.004566392,-0.1865317;0.106584;0.02721558,-0.2365637;-0.1688983;0.02470708,0.06790837;0.003586796;-0.04213772,0.09830167;-0.3727373;0.0009481534,0.1022532;-0.7160394;0.06897789,0.1056879;-0.7641295;0.006606773,-0.07371452;0.002360544;-0.0309935,-0.08779252;-0.3761582;-0.000573298,-0.09903936;-0.7193086;0.0674067,-0.1029642;-0.7074538;-0.03085495,0.01188965;0.3994957;0.01477855,61.94047
+0;0;0,0.002217416;0.1994769;0.01428531,0.006918597;0.4992866;0.02198803,0.1199344;0.3756004;-0.00364504,0.1942078;0.1064002;0.0167196,0.2154746;-0.1695043;-0.02599432,-0.1063957;0.3622165;-0.002011729,-0.1835178;0.09383786;0.01860544,-0.2048252;-0.1835718;-0.01285644,0.07171164;0.007580656;-0.03464065,0.08869225;-0.3701441;0.003249556,0.09219048;-0.7113802;0.08100356,0.1042482;-0.7580805;0.01798221,-0.06918658;0.000176646;-0.04016449,-0.09210841;-0.37728;-0.002733309,-0.1070484;-0.7192457;0.0703166,-0.09081602;-0.7662138;0.008571833,0.005152017;0.3993022;0.02210811,0;0;0,0.005755509;0.1996305;0.01070227,0.01505677;0.4994225;0.01283195,0.1247712;0.3790073;-0.02016229,0.1994277;0.1107216;0.008978251,0.2681691;-0.1581745;-0.02802852,-0.1033322;0.3719176;-0.004517601,-0.1865778;0.1064973;0.02745482,-0.2360773;-0.1690757;0.02440476,0.06797718;0.003612165;-0.04202446,0.09794129;-0.372811;0.0004929975,0.1025283;-0.7159967;0.06906786,0.105615;-0.7641038;0.006699864,-0.07365068;0.002348636;-0.03114579,-0.08770834;-0.3761373;-0.0003117248,-0.09885671;-0.719275;0.06774906,-0.1029004;-0.7074176;-0.03050823,0.01183785;0.3994948;0.01485645,61.96331
+0;0;0,0.002150797;0.1994773;0.01428899,0.006685026;0.4992884;0.02204212,0.1198087;0.3758488;-0.003597643,0.1938446;0.1065572;0.01641978,0.213808;-0.1692044;-0.02781823,-0.1066467;0.3623863;-0.001900708,-0.1840091;0.09406108;0.01851103,-0.2051575;-0.1834105;-0.01250936,0.07176744;0.00739086;-0.03456602,0.08813477;-0.3703872;0.003061999,0.09152915;-0.7114823;0.08143686,0.1026533;-0.7594118;0.01976636,-0.06919928;0.0003599967;-0.04014137,-0.09268244;-0.3770368;-0.002455432,-0.1076183;-0.7190353;0.0704409,-0.09135401;-0.7660136;0.008717068,0.004973052;0.3993031;0.02214466,0;0;0,0.005830536;0.1996263;0.01074031,0.01519929;0.4994156;0.0129705,0.1247604;0.3787864;-0.02037587,0.1977669;0.1099891;0.008225368,0.2570657;-0.1612038;-0.0283539,-0.1031849;0.3718458;-0.004444732,-0.18647;0.106445;0.02758668,-0.2359968;-0.1691244;0.02465203,0.06789043;0.003575075;-0.04216763,0.09814297;-0.3727788;0.0007571205,0.1029415;-0.7159324;0.06947833,0.1056479;-0.764259;0.007368613,-0.07371064;0.002413603;-0.03099865,-0.08755491;-0.3761;-0.0004084948,-0.09903149;-0.7191619;0.06797884,-0.1031731;-0.7073029;-0.03027468,0.0119646;0.3994877;0.0149593,61.985
+0;0;0,0.002150797;0.1994773;0.01428899,0.006685026;0.4992884;0.02204212,0.1198087;0.3758488;-0.003597643,0.1938446;0.1065572;0.01641978,0.213808;-0.1692044;-0.02781823,-0.1066467;0.3623863;-0.001900708,-0.1840091;0.09406108;0.01851103,-0.2051575;-0.1834105;-0.01250936,0.07176744;0.00739086;-0.03456602,0.08813477;-0.3703872;0.003061999,0.09152915;-0.7114823;0.08143686,0.1026533;-0.7594118;0.01976636,-0.06919928;0.0003599967;-0.04014137,-0.09268244;-0.3770368;-0.002455432,-0.1076183;-0.7190353;0.0704409,-0.09135401;-0.7660136;0.008717068,0.004973052;0.3993031;0.02214466,0;0;0,0.005830536;0.1996263;0.01074031,0.01519929;0.4994156;0.0129705,0.1247604;0.3787864;-0.02037587,0.1977669;0.1099891;0.008225368,0.2570657;-0.1612038;-0.0283539,-0.1031849;0.3718458;-0.004444732,-0.18647;0.106445;0.02758668,-0.2359968;-0.1691244;0.02465203,0.06789043;0.003575075;-0.04216763,0.09814297;-0.3727788;0.0007571205,0.1029415;-0.7159324;0.06947833,0.1056479;-0.764259;0.007368613,-0.07371064;0.002413603;-0.03099865,-0.08755491;-0.3761;-0.0004084948,-0.09903149;-0.7191619;0.06797884,-0.1031731;-0.7073029;-0.03027468,0.0119646;0.3994877;0.0149593,61.99633
+0;0;0,0.002150797;0.1994773;0.01428899,0.006685026;0.4992884;0.02204212,0.1198087;0.3758488;-0.003597643,0.1938446;0.1065572;0.01641978,0.213808;-0.1692044;-0.02781823,-0.1066467;0.3623863;-0.001900708,-0.1840091;0.09406108;0.01851103,-0.2051575;-0.1834105;-0.01250936,0.07176744;0.00739086;-0.03456602,0.08813477;-0.3703872;0.003061999,0.09152915;-0.7114823;0.08143686,0.1026533;-0.7594118;0.01976636,-0.06919928;0.0003599967;-0.04014137,-0.09268244;-0.3770368;-0.002455432,-0.1076183;-0.7190353;0.0704409,-0.09135401;-0.7660136;0.008717068,0.004973052;0.3993031;0.02214466,0;0;0,0.005774475;0.1996317;0.0106703,0.01499743;0.4994262;0.01278822,0.1246874;0.3788984;-0.02035433,0.1956992;0.1094793;0.007406875,0.248377;-0.1629879;-0.02983118,-0.1032435;0.3715804;-0.004692234,-0.186972;0.1064099;0.02808179,-0.2361463;-0.1692182;0.0247583,0.06796595;0.003640509;-0.04204017,0.0981539;-0.3727355;0.000735417,0.1031069;-0.7158482;0.06964949,0.1055154;-0.764221;0.007585753,-0.0735893;0.002341025;-0.03129112,-0.08824361;-0.3760575;0.0003285855,-0.09898911;-0.7191458;0.06870232,-0.1030704;-0.7072952;-0.02955217,0.0118218;0.3994972;0.01481728,62.01849
+0;0;0,0.002072146;0.1994743;0.01434226,0.006445834;0.4992849;0.02220402,0.1196478;0.3759669;-0.0034671,0.1933328;0.1065355;0.01595543,0.212887;-0.1691895;-0.02869134,-0.106891;0.3625726;-0.001800278,-0.1846874;0.09439749;0.01893264,-0.2051;-0.1831878;-0.01155857,0.07174229;0.007327477;-0.03463166,0.08758868;-0.3704676;0.003048345,0.09091081;-0.7114713;0.08182292,0.1019965;-0.7596343;0.02044169,-0.06926175;0.0004613282;-0.04003244,-0.0933578;-0.3768888;-0.002266895,-0.1081918;-0.7188066;0.07102823,-0.1068319;-0.7062684;-0.02742602,0.004786143;0.3992987;0.02227049,0;0;0,0.005774475;0.1996317;0.0106703,0.01499743;0.4994262;0.01278822,0.1246874;0.3788984;-0.02035433,0.1956992;0.1094793;0.007406875,0.248377;-0.1629879;-0.02983118,-0.1032435;0.3715804;-0.004692234,-0.186972;0.1064099;0.02808179,-0.2361463;-0.1692182;0.0247583,0.06796595;0.003640509;-0.04204017,0.0981539;-0.3727355;0.000735417,0.1031069;-0.7158482;0.06964949,0.1055154;-0.764221;0.007585753,-0.0735893;0.002341025;-0.03129112,-0.08824361;-0.3760575;0.0003285855,-0.09898911;-0.7191458;0.06870232,-0.1030704;-0.7072952;-0.02955217,0.0118218;0.3994972;0.01481728,62.02989
+0;0;0,0.002072146;0.1994743;0.01434226,0.006445834;0.4992849;0.02220402,0.1196478;0.3759669;-0.0034671,0.1933328;0.1065355;0.01595543,0.212887;-0.1691895;-0.02869134,-0.106891;0.3625726;-0.001800278,-0.1846874;0.09439749;0.01893264,-0.2051;-0.1831878;-0.01155857,0.07174229;0.007327477;-0.03463166,0.08758868;-0.3704676;0.003048345,0.09091081;-0.7114713;0.08182292,0.1019965;-0.7596343;0.02044169,-0.06926175;0.0004613282;-0.04003244,-0.0933578;-0.3768888;-0.002266895,-0.1081918;-0.7188066;0.07102823,-0.1068319;-0.7062684;-0.02742602,0.004786143;0.3992987;0.02227049,0;0;0,0.005774475;0.1996317;0.0106703,0.01499743;0.4994262;0.01278822,0.1246874;0.3788984;-0.02035433,0.1956992;0.1094793;0.007406875,0.248377;-0.1629879;-0.02983118,-0.1032435;0.3715804;-0.004692234,-0.186972;0.1064099;0.02808179,-0.2361463;-0.1692182;0.0247583,0.06796595;0.003640509;-0.04204017,0.0981539;-0.3727355;0.000735417,0.1031069;-0.7158482;0.06964949,0.1055154;-0.764221;0.007585753,-0.0735893;0.002341025;-0.03129112,-0.08824361;-0.3760575;0.0003285855,-0.09898911;-0.7191458;0.06870232,-0.1030704;-0.7072952;-0.02955217,0.0118218;0.3994972;0.01481728,62.04164
+0;0;0,0.002072146;0.1994743;0.01434226,0.006445834;0.4992849;0.02220402,0.1196478;0.3759669;-0.0034671,0.1933328;0.1065355;0.01595543,0.212887;-0.1691895;-0.02869134,-0.106891;0.3625726;-0.001800278,-0.1846874;0.09439749;0.01893264,-0.2051;-0.1831878;-0.01155857,0.07174229;0.007327477;-0.03463166,0.08758868;-0.3704676;0.003048345,0.09091081;-0.7114713;0.08182292,0.1019965;-0.7596343;0.02044169,-0.06926175;0.0004613282;-0.04003244,-0.0933578;-0.3768888;-0.002266895,-0.1081918;-0.7188066;0.07102823,-0.1068319;-0.7062684;-0.02742602,0.004786143;0.3992987;0.02227049,0;0;0,0.005768858;0.1996269;0.01076187,0.01497531;0.4994208;0.01302139,0.124672;0.3789313;-0.02018557,0.1926327;0.1085476;0.005776074,0.2406275;-0.1648017;-0.03132731,-0.103218;0.3715266;-0.004680946,-0.1870426;0.1064221;0.0283802,-0.2359934;-0.1692465;0.02511744,0.06806751;0.003728082;-0.04186784,0.09811468;-0.3726486;0.001001436,0.1032841;-0.7157482;0.06996478,0.1054529;-0.7642865;0.008101765,-0.07347148;0.002264067;-0.03157239,-0.08797511;-0.3760175;0.00148388,-0.09889627;-0.7191865;0.06942326,-0.1029359;-0.7073269;-0.0288346,0.01180554;0.3994907;0.01500635,62.06329
+0;0;0,0.002147959;0.1994501;0.01466389,0.00659909;0.4992503;0.02285241,0.1196476;0.3757678;-0.003287906,0.1933347;0.1063138;0.01581048,0.212084;-0.169297;-0.02987524,-0.1066922;0.3622746;-0.001222428,-0.1845211;0.0941174;0.01961904,-0.2050467;-0.1834855;-0.01063497,0.07179268;0.007325646;-0.03452747,0.08736879;-0.3704266;0.003690299,0.09014219;-0.7113565;0.08280486,0.1018035;-0.7593125;0.02126716,-0.06924561;0.0005003544;-0.04005989,-0.09351473;-0.3767433;-0.001353368,-0.1083629;-0.7186112;0.07217146,-0.1071268;-0.7060529;-0.02628798,0.004903574;0.3992647;0.02282167,0;0;0,0.005768858;0.1996269;0.01076187,0.01497531;0.4994208;0.01302139,0.124672;0.3789313;-0.02018557,0.1926327;0.1085476;0.005776074,0.2406275;-0.1648017;-0.03132731,-0.103218;0.3715266;-0.004680946,-0.1870426;0.1064221;0.0283802,-0.2359934;-0.1692465;0.02511744,0.06806751;0.003728082;-0.04186784,0.09811468;-0.3726486;0.001001436,0.1032841;-0.7157482;0.06996478,0.1054529;-0.7642865;0.008101765,-0.07347148;0.002264067;-0.03157239,-0.08797511;-0.3760175;0.00148388,-0.09889627;-0.7191865;0.06942326,-0.1029359;-0.7073269;-0.0288346,0.01180554;0.3994907;0.01500635,62.07449
+0;0;0,0.002147959;0.1994501;0.01466389,0.00659909;0.4992503;0.02285241,0.1196476;0.3757678;-0.003287906,0.1933347;0.1063138;0.01581048,0.212084;-0.169297;-0.02987524,-0.1066922;0.3622746;-0.001222428,-0.1845211;0.0941174;0.01961904,-0.2050467;-0.1834855;-0.01063497,0.07179268;0.007325646;-0.03452747,0.08736879;-0.3704266;0.003690299,0.09014219;-0.7113565;0.08280486,0.1018035;-0.7593125;0.02126716,-0.06924561;0.0005003544;-0.04005989,-0.09351473;-0.3767433;-0.001353368,-0.1083629;-0.7186112;0.07217146,-0.1071268;-0.7060529;-0.02628798,0.004903574;0.3992647;0.02282167,0;0;0,0.005812346;0.1996288;0.01070279,0.01504259;0.4994224;0.01288608,0.1246077;0.3785774;-0.02049053,0.1910506;0.1077205;0.004446682,0.234818;-0.1663892;-0.03227254,-0.1030987;0.3712356;-0.004694311,-0.1870049;0.1061836;0.02858073,-0.2358346;-0.1695058;0.02526429,0.06809825;0.003688591;-0.04182131,0.09735916;-0.3726707;0.001738541,0.1033645;-0.7158266;0.07035356,0.1056594;-0.7645125;0.008682903,-0.07345313;0.002336704;-0.03160976,-0.08838537;-0.3759012;0.001753323,-0.09878206;-0.7191157;0.06954519,-0.1029054;-0.7072521;-0.02870993,0.01186896;0.399493;0.01490045,62.09675
+0;0;0,0.002147959;0.1994501;0.01466389,0.00659909;0.4992503;0.02285241,0.1196476;0.3757678;-0.003287906,0.1933347;0.1063138;0.01581048,0.212084;-0.169297;-0.02987524,-0.1066922;0.3622746;-0.001222428,-0.1845211;0.0941174;0.01961904,-0.2050467;-0.1834855;-0.01063497,0.07179268;0.007325646;-0.03452747,0.08736879;-0.3704266;0.003690299,0.09014219;-0.7113565;0.08280486,0.1018035;-0.7593125;0.02126716,-0.06924561;0.0005003544;-0.04005989,-0.09351473;-0.3767433;-0.001353368,-0.1083629;-0.7186112;0.07217146,-0.1071268;-0.7060529;-0.02628798,0.004903574;0.3992647;0.02282167,0;0;0,0.005812346;0.1996288;0.01070279,0.01504259;0.4994224;0.01288608,0.1246077;0.3785774;-0.02049053,0.1910506;0.1077205;0.004446682,0.234818;-0.1663892;-0.03227254,-0.1030987;0.3712356;-0.004694311,-0.1870049;0.1061836;0.02858073,-0.2358346;-0.1695058;0.02526429,0.06809825;0.003688591;-0.04182131,0.09735916;-0.3726707;0.001738541,0.1033645;-0.7158266;0.07035356,0.1056594;-0.7645125;0.008682903,-0.07345313;0.002336704;-0.03160976,-0.08838537;-0.3759012;0.001753323,-0.09878206;-0.7191157;0.06954519,-0.1029054;-0.7072521;-0.02870993,0.01186896;0.399493;0.01490045,62.10805
+0;0;0,0.002412613;0.1994433;0.01471607,0.007430999;0.4992341;0.02291704,0.1202385;0.3755893;-0.003157808,0.1938541;0.106084;0.01548815,0.2122084;-0.1694466;-0.03083643,-0.1061161;0.3621081;-0.0007683802,-0.1842754;0.09403715;0.01994659,-0.2053295;-0.1834749;-0.01077433,0.071764;0.007034857;-0.03464733,0.08727022;-0.3706722;0.004042532,0.09004797;-0.7114787;0.08368681,0.1010737;-0.7594962;0.02210996,-0.06934558;0.0007573613;-0.03988254,-0.09359951;-0.3764392;-0.000709597,-0.1084277;-0.7183112;0.07279988,-0.107262;-0.7057506;-0.02566082,0.005512644;0.3992525;0.02288138,0;0;0,0.005892847;0.1996289;0.01065753,0.01518602;0.4994209;0.01272672,0.1246464;0.3784679;-0.0208066,0.1897329;0.1071758;0.002949618,0.2308467;-0.1672905;-0.03416999,-0.1029839;0.3711435;-0.004622588,-0.1868644;0.1060787;0.02861458,-0.2358163;-0.1695895;0.02533901,0.06814157;0.00364505;-0.04175452,0.09777683;-0.372714;0.001553833,0.103696;-0.7158273;0.07038845,0.1054404;-0.7643358;0.008474085,-0.07340212;0.002367162;-0.03172578,-0.087761;-0.3758546;0.002069253,-0.09853081;-0.7191015;0.06963828,-0.1027589;-0.7072434;-0.02861138,0.01199227;0.3994932;0.01478817,62.11937
+0;0;0,0.002412613;0.1994433;0.01471607,0.007430999;0.4992341;0.02291704,0.1202385;0.3755893;-0.003157808,0.1938541;0.106084;0.01548815,0.2122084;-0.1694466;-0.03083643,-0.1061161;0.3621081;-0.0007683802,-0.1842754;0.09403715;0.01994659,-0.2053295;-0.1834749;-0.01077433,0.071764;0.007034857;-0.03464733,0.08727022;-0.3706722;0.004042532,0.09004797;-0.7114787;0.08368681,0.1010737;-0.7594962;0.02210996,-0.06934558;0.0007573613;-0.03988254,-0.09359951;-0.3764392;-0.000709597,-0.1084277;-0.7183112;0.07279988,-0.107262;-0.7057506;-0.02566082,0.005512644;0.3992525;0.02288138,0;0;0,0.005892847;0.1996289;0.01065753,0.01518602;0.4994209;0.01272672,0.1246464;0.3784679;-0.0208066,0.1897329;0.1071758;0.002949618,0.2308467;-0.1672905;-0.03416999,-0.1029839;0.3711435;-0.004622588,-0.1868644;0.1060787;0.02861458,-0.2358163;-0.1695895;0.02533901,0.06814157;0.00364505;-0.04175452,0.09777683;-0.372714;0.001553833,0.103696;-0.7158273;0.07038845,0.1054404;-0.7643358;0.008474085,-0.07340212;0.002367162;-0.03172578,-0.087761;-0.3758546;0.002069253,-0.09853081;-0.7191015;0.06963828,-0.1027589;-0.7072434;-0.02861138,0.01199227;0.3994932;0.01478817,62.13042
+0;0;0,0.002412613;0.1994433;0.01471607,0.007430999;0.4992341;0.02291704,0.1202385;0.3755893;-0.003157808,0.1938541;0.106084;0.01548815,0.2122084;-0.1694466;-0.03083643,-0.1061161;0.3621081;-0.0007683802,-0.1842754;0.09403715;0.01994659,-0.2053295;-0.1834749;-0.01077433,0.071764;0.007034857;-0.03464733,0.08727022;-0.3706722;0.004042532,0.09004797;-0.7114787;0.08368681,0.1010737;-0.7594962;0.02210996,-0.06934558;0.0007573613;-0.03988254,-0.09359951;-0.3764392;-0.000709597,-0.1084277;-0.7183112;0.07279988,-0.107262;-0.7057506;-0.02566082,0.005512644;0.3992525;0.02288138,0;0;0,0.005830951;0.1996314;0.01064467,0.01500972;0.4994271;0.01270061,0.1245115;0.3784902;-0.02084922,0.1885539;0.1068494;0.001729734,0.2264485;-0.1677564;-0.03771229,-0.1030661;0.3708978;-0.004568983,-0.1871543;0.1059127;0.02877851,-0.2358449;-0.1698082;0.02608994,0.06815814;0.00368278;-0.04172414,0.09781515;-0.3726557;0.001747921,0.1037596;-0.7157632;0.07060953,0.1058245;-0.7650232;0.009670239,-0.07337622;0.002350769;-0.03178687,-0.0879069;-0.3758703;0.001943264,-0.09840807;-0.7190627;0.06983005,-0.1026852;-0.7072061;-0.02841724,0.01186072;0.399498;0.01476644,62.15272
+0;0;0,0.002428213;0.1994341;0.01483689,0.007418909;0.4992196;0.02324276,0.1202581;0.3757685;-0.002993127,0.193917;0.1061946;0.01445088,0.2120863;-0.1693584;-0.03181385,-0.106084;0.3620919;-0.0006474089,-0.1857098;0.09457797;0.02162432,-0.2055736;-0.1828967;-0.01020687,0.07171974;0.007033616;-0.03473912,0.08723181;-0.3706898;0.00378859,0.09007746;-0.7113713;0.08396326,0.1015402;-0.7588834;0.0218305,-0.06938243;0.0007854681;-0.03981785,-0.09379137;-0.376359;-0.000242237,-0.1082273;-0.7182635;0.0731941,-0.1070807;-0.7056944;-0.02526833,0.005514449;0.3992378;0.02314266,0;0;0,0.005830951;0.1996314;0.01064467,0.01500972;0.4994271;0.01270061,0.1245115;0.3784902;-0.02084922,0.1885539;0.1068494;0.001729734,0.2264485;-0.1677564;-0.03771229,-0.1030661;0.3708978;-0.004568983,-0.1871543;0.1059127;0.02877851,-0.2358449;-0.1698082;0.02608994,0.06815814;0.00368278;-0.04172414,0.09781515;-0.3726557;0.001747921,0.1037596;-0.7157632;0.07060953,0.1058245;-0.7650232;0.009670239,-0.07337622;0.002350769;-0.03178687,-0.0879069;-0.3758703;0.001943264,-0.09840807;-0.7190627;0.06983005,-0.1026852;-0.7072061;-0.02841724,0.01186072;0.399498;0.01476644,62.17497
+0;0;0,0.002428213;0.1994341;0.01483689,0.007418909;0.4992196;0.02324276,0.1202581;0.3757685;-0.002993127,0.193917;0.1061946;0.01445088,0.2120863;-0.1693584;-0.03181385,-0.106084;0.3620919;-0.0006474089,-0.1857098;0.09457797;0.02162432,-0.2055736;-0.1828967;-0.01020687,0.07171974;0.007033616;-0.03473912,0.08723181;-0.3706898;0.00378859,0.09007746;-0.7113713;0.08396326,0.1015402;-0.7588834;0.0218305,-0.06938243;0.0007854681;-0.03981785,-0.09379137;-0.376359;-0.000242237,-0.1082273;-0.7182635;0.0731941,-0.1070807;-0.7056944;-0.02526833,0.005514449;0.3992378;0.02314266,0;0;0,0.005820755;0.1996317;0.01064438,0.01497116;0.4994282;0.01272519,0.1244802;0.3785017;-0.0208564,0.1877687;0.106611;0.0008228105,0.2219;-0.1680308;-0.04168568,-0.1031426;0.3710559;-0.004492605,-0.1873118;0.1060967;0.02885691,-0.2360163;-0.1696231;0.02632144,0.06816931;0.003691982;-0.04170508,0.09764945;-0.3726483;0.001871604,0.1034838;-0.7157843;0.07060066,0.1063533;-0.7647036;0.009253271,-0.07336365;0.002353624;-0.03181567,-0.08819489;-0.3758702;0.001751591,-0.098437;-0.719025;0.06986809,-0.1027295;-0.7071648;-0.02837918,0.01183389;0.3994985;0.01477996,62.18642
+0;0;0,0.002428213;0.1994341;0.01483689,0.007418909;0.4992196;0.02324276,0.1202581;0.3757685;-0.002993127,0.193917;0.1061946;0.01445088,0.2120863;-0.1693584;-0.03181385,-0.106084;0.3620919;-0.0006474089,-0.1857098;0.09457797;0.02162432,-0.2055736;-0.1828967;-0.01020687,0.07171974;0.007033616;-0.03473912,0.08723181;-0.3706898;0.00378859,0.09007746;-0.7113713;0.08396326,0.1015402;-0.7588834;0.0218305,-0.06938243;0.0007854681;-0.03981785,-0.09379137;-0.376359;-0.000242237,-0.1082273;-0.7182635;0.0731941,-0.1070807;-0.7056944;-0.02526833,0.005514449;0.3992378;0.02314266,0;0;0,0.005820755;0.1996317;0.01064438,0.01497116;0.4994282;0.01272519,0.1244802;0.3785017;-0.0208564,0.1877687;0.106611;0.0008228105,0.2219;-0.1680308;-0.04168568,-0.1031426;0.3710559;-0.004492605,-0.1873118;0.1060967;0.02885691,-0.2360163;-0.1696231;0.02632144,0.06816931;0.003691982;-0.04170508,0.09764945;-0.3726483;0.001871604,0.1034838;-0.7157843;0.07060066,0.1063533;-0.7647036;0.009253271,-0.07336365;0.002353624;-0.03181567,-0.08819489;-0.3758702;0.001751591,-0.098437;-0.719025;0.06986809,-0.1027295;-0.7071648;-0.02837918,0.01183389;0.3994985;0.01477996,62.20844
+0;0;0,0.00252261;0.199439;0.0147549,0.007657934;0.4992256;0.02303403,0.1204246;0.3756532;-0.003164202,0.1939284;0.1059599;0.01304496,0.2119852;-0.1696039;-0.03319976,-0.1058471;0.361849;-0.0006319247,-0.1859259;0.09452841;0.02232576,-0.2060044;-0.1828598;-0.01011843,0.07169189;0.006999197;-0.03480351,0.08720624;-0.3707253;0.003713004,0.09040726;-0.7113677;0.0840405,0.1015314;-0.7587159;0.02164248,-0.06939645;0.0008405079;-0.03979228,-0.09351603;-0.3763676;-0.0006485805,-0.1083309;-0.7181983;0.07305565,-0.1072622;-0.7056419;-0.02540541,0.005706818;0.3992447;0.02297526,0;0;0,0.005944609;0.1996304;0.01060049,0.01543006;0.4994172;0.01254353,0.1247625;0.3783897;-0.02105809,0.1876697;0.1064058;0.0005615894,0.2204967;-0.1681566;-0.04345976,-0.1029032;0.3712865;-0.004463283,-0.1871704;0.1063651;0.02893829,-0.2360792;-0.1693201;0.02656867,0.06817581;0.003661539;-0.04169714,0.09758438;-0.3726904;0.001826685,0.1036583;-0.7157966;0.07068363,0.10641;-0.7646992;0.009309318,-0.07335572;0.002396934;-0.0318307,-0.08862733;-0.3757852;0.002007548,-0.09850208;-0.7189089;0.07033497,-0.1028252;-0.7070535;-0.02791005,0.01215829;0.3994929;0.01464842,62.21964
+0;0;0,0.00252261;0.199439;0.0147549,0.007657934;0.4992256;0.02303403,0.1204246;0.3756532;-0.003164202,0.1939284;0.1059599;0.01304496,0.2119852;-0.1696039;-0.03319976,-0.1058471;0.361849;-0.0006319247,-0.1859259;0.09452841;0.02232576,-0.2060044;-0.1828598;-0.01011843,0.07169189;0.006999197;-0.03480351,0.08720624;-0.3707253;0.003713004,0.09040726;-0.7113677;0.0840405,0.1015314;-0.7587159;0.02164248,-0.06939645;0.0008405079;-0.03979228,-0.09351603;-0.3763676;-0.0006485805,-0.1083309;-0.7181983;0.07305565,-0.1072622;-0.7056419;-0.02540541,0.005706818;0.3992447;0.02297526,0;0;0,0.005944609;0.1996304;0.01060049,0.01543006;0.4994172;0.01254353,0.1247625;0.3783897;-0.02105809,0.1876697;0.1064058;0.0005615894,0.2204967;-0.1681566;-0.04345976,-0.1029032;0.3712865;-0.004463283,-0.1871704;0.1063651;0.02893829,-0.2360792;-0.1693201;0.02656867,0.06817581;0.003661539;-0.04169714,0.09758438;-0.3726904;0.001826685,0.1036583;-0.7157966;0.07068363,0.10641;-0.7646992;0.009309318,-0.07335572;0.002396934;-0.0318307,-0.08862733;-0.3757852;0.002007548,-0.09850208;-0.7189089;0.07033497,-0.1028252;-0.7070535;-0.02791005,0.01215829;0.3994929;0.01464842,62.23112
+0;0;0,0.00252261;0.199439;0.0147549,0.007657934;0.4992256;0.02303403,0.1204246;0.3756532;-0.003164202,0.1939284;0.1059599;0.01304496,0.2119852;-0.1696039;-0.03319976,-0.1058471;0.361849;-0.0006319247,-0.1859259;0.09452841;0.02232576,-0.2060044;-0.1828598;-0.01011843,0.07169189;0.006999197;-0.03480351,0.08720624;-0.3707253;0.003713004,0.09040726;-0.7113677;0.0840405,0.1015314;-0.7587159;0.02164248,-0.06939645;0.0008405079;-0.03979228,-0.09351603;-0.3763676;-0.0006485805,-0.1083309;-0.7181983;0.07305565,-0.1072622;-0.7056419;-0.02540541,0.005706818;0.3992447;0.02297526,0;0;0,0.005969065;0.1996288;0.01061748,0.01547903;0.4994145;0.01259992,0.1247573;0.378338;-0.02113848,0.187379;0.1062603;0.0001282822,0.2190861;-0.1680834;-0.04602554,-0.1028725;0.3713167;-0.004391858,-0.1872013;0.1064163;0.02902147,-0.2362333;-0.1692462;0.02656233,0.06817545;0.0035818;-0.04170465,0.09747082;-0.3727927;0.001700699,0.1034904;-0.7159158;0.07047787,0.1065609;-0.7644279;0.008619715,-0.07334477;0.002465422;-0.03185066,-0.08866203;-0.3757236;0.001889814,-0.09843907;-0.7188237;0.07034959,-0.1028077;-0.7069669;-0.02789367,0.01220168;0.3994901;0.01469179,62.25303
+0;0;0,0.002616412;0.1994422;0.01469609,0.007909799;0.4992282;0.02289997,0.1205891;0.3754816;-0.003270404,0.194259;0.1057885;0.01217004,0.2120031;-0.1696713;-0.03480894,-0.1056513;0.3616788;-0.0004480407,-0.1853816;0.09417707;0.0215954,-0.1961651;-0.1839777;-0.008630734,0.071682;0.006780056;-0.0348672,0.08714414;-0.3709469;0.003645837,0.09043232;-0.7115129;0.08429343,0.1017104;-0.7588783;0.02194444,-0.06938468;0.001034659;-0.03980823,-0.09294057;-0.3762854;-0.001406673,-0.1079893;-0.7179819;0.07287014,-0.1070208;-0.7054349;-0.0255903,0.005906267;0.3992482;0.02286365,0;0;0,0.005969065;0.1996288;0.01061748,0.01547903;0.4994145;0.01259992,0.1247573;0.378338;-0.02113848,0.187379;0.1062603;0.0001282822,0.2190861;-0.1680834;-0.04602554,-0.1028725;0.3713167;-0.004391858,-0.1872013;0.1064163;0.02902147,-0.2362333;-0.1692462;0.02656233,0.06817545;0.0035818;-0.04170465,0.09747082;-0.3727927;0.001700699,0.1034904;-0.7159158;0.07047787,0.1065609;-0.7644279;0.008619715,-0.07334477;0.002465422;-0.03185066,-0.08866203;-0.3757236;0.001889814,-0.09843907;-0.7188237;0.07034959,-0.1028077;-0.7069669;-0.02789367,0.01220168;0.3994901;0.01469179,62.26433
+0;0;0,0.005468022;0.1992933;0.01588373,0.01366241;0.4989465;0.02646947,0.1224863;0.3713054;-0.008806892,0.1864463;0.09912029;0.006172546,0.2316545;-0.1748753;-0.02964124,-0.1003919;0.3598608;0.003324116,-0.1809576;0.09188998;-0.006715277,-0.239558;-0.179098;-0.04584996,0.06950954;0.003495623;-0.03944875,0.0838351;-0.3735174;0.005893528,0.08058446;-0.7176022;0.06988664,0.07601705;-0.7049392;-0.02849307,-0.07138424;0.004324635;-0.0358551,-0.1001989;-0.3729388;-0.0006125569,-0.1224532;-0.7169338;0.05998582,-0.109814;-0.7621574;-0.004679911,0.01086708;0.3989906;0.02546687,0;0;0,-0.002201239;0.1998199;0.008195176,-0.006830924;0.4997322;0.006873309,0.1055364;0.3796217;-0.03187392,0.1961041;0.1157024;-0.008549053,0.242745;-0.1536672;-0.06908561,-0.1134006;0.3480148;0.009265129,-0.1809477;0.07709357;-0.01168846,-0.2572365;-0.1864014;-0.06781705,0.06550544;0.009652281;-0.04489845,0.09884065;-0.3654035;0.006306157,0.1086284;-0.7065796;0.08378586,0.1146256;-0.756109;0.02346088,-0.07561714;-0.004564459;-0.02571409,-0.08515315;-0.3828423;0.009141831,-0.09393187;-0.7247261;0.08356202,-0.1060707;-0.7132254;-0.01395939,-0.005147018;0.3997912;0.009867899,10.67133
+0;0;0,0.005497296;0.1992894;0.01592194,0.01384114;0.4989354;0.02658496,0.1225455;0.3711479;-0.008797821,0.1870709;0.09911767;0.006565959,0.2335446;-0.1747209;-0.02882658,-0.1003287;0.3598996;0.003641505,-0.1805575;0.09182835;-0.006416466,-0.2390734;-0.1791785;-0.04554655,0.06950475;0.003521306;-0.03945491,0.08405942;-0.3735184;0.005591571,0.08093992;-0.7175252;0.07000913,0.07630417;-0.7048569;-0.02836832,-0.07142162;0.004287674;-0.03578502,-0.1001378;-0.3729884;-0.0005975924,-0.1220862;-0.716965;0.0602169,-0.1095069;-0.7625063;-0.004089177,0.01099062;0.3989813;0.02556499,0;0;0,-0.002201239;0.1998199;0.008195176,-0.006830924;0.4997322;0.006873309,0.1055364;0.3796217;-0.03187392,0.1961041;0.1157024;-0.008549053,0.242745;-0.1536672;-0.06908561,-0.1134006;0.3480148;0.009265129,-0.1809477;0.07709357;-0.01168846,-0.2572365;-0.1864014;-0.06781705,0.06550544;0.009652281;-0.04489845,0.09884065;-0.3654035;0.006306157,0.1086284;-0.7065796;0.08378586,0.1146256;-0.756109;0.02346088,-0.07561714;-0.004564459;-0.02571409,-0.08515315;-0.3828423;0.009141831,-0.09393187;-0.7247261;0.08356202,-0.1060707;-0.7132254;-0.01395939,-0.005147018;0.3997912;0.009867899,10.68878
+0;0;0,0.005497296;0.1992894;0.01592194,0.01384114;0.4989354;0.02658496,0.1225455;0.3711479;-0.008797821,0.1870709;0.09911767;0.006565959,0.2335446;-0.1747209;-0.02882658,-0.1003287;0.3598996;0.003641505,-0.1805575;0.09182835;-0.006416466,-0.2390734;-0.1791785;-0.04554655,0.06950475;0.003521306;-0.03945491,0.08405942;-0.3735184;0.005591571,0.08093992;-0.7175252;0.07000913,0.07630417;-0.7048569;-0.02836832,-0.07142162;0.004287674;-0.03578502,-0.1001378;-0.3729884;-0.0005975924,-0.1220862;-0.716965;0.0602169,-0.1095069;-0.7625063;-0.004089177,0.01099062;0.3989813;0.02556499,0;0;0,-0.00222428;0.1998174;0.008249099,-0.006816951;0.4997323;0.007261269,0.1056325;0.3798394;-0.03139767,0.1971284;0.116152;-0.009094266,0.2438841;-0.1532462;-0.06941464,-0.113403;0.3479665;0.00924518,-0.1818397;0.07726699;-0.01168772,-0.258259;-0.1862235;-0.06765962,0.06550377;0.009692976;-0.04489212,0.09883553;-0.3653643;0.006304193,0.1086815;-0.7064321;0.08425127,0.1151025;-0.7562186;0.02431049,-0.07561904;-0.004581986;-0.02570537,-0.0848054;-0.3829072;0.008727988,-0.09382014;-0.7247429;0.08334061,-0.1057758;-0.7132264;-0.01420642,-0.005172403;0.3997869;0.01012795,10.7046
+0;0;0,0.00535298;0.1993006;0.01583117,0.01356646;0.4989553;0.02633384,0.122358;0.3711302;-0.008770842,0.1875154;0.09927765;0.007063385,0.2351371;-0.1745135;-0.02715066,-0.1005616;0.3597669;0.003678458,-0.1804411;0.09158367;-0.006171557,-0.2390711;-0.1794317;-0.04507151,0.06949373;0.003615623;-0.0394658,0.08425883;-0.3733984;0.005727295,0.08113178;-0.7174103;0.07011694,0.07648469;-0.7047492;-0.02825872,-0.07146592;0.004149858;-0.03571275,-0.1003179;-0.3731763;-0.00117977,-0.1218613;-0.7171015;0.06006828,-0.1087253;-0.7619564;-0.004925564,0.01074763;0.3989996;0.02538211,0;0;0,-0.00222428;0.1998174;0.008249099,-0.006816951;0.4997323;0.007261269,0.1056325;0.3798394;-0.03139767,0.1971284;0.116152;-0.009094266,0.2438841;-0.1532462;-0.06941464,-0.113403;0.3479665;0.00924518,-0.1818397;0.07726699;-0.01168772,-0.258259;-0.1862235;-0.06765962,0.06550377;0.009692976;-0.04489212,0.09883553;-0.3653643;0.006304193,0.1086815;-0.7064321;0.08425127,0.1151025;-0.7562186;0.02431049,-0.07561904;-0.004581986;-0.02570537,-0.0848054;-0.3829072;0.008727988,-0.09382014;-0.7247429;0.08334061,-0.1057758;-0.7132264;-0.01420642,-0.005172403;0.3997869;0.01012795,10.72288
+0;0;0,0.00535298;0.1993006;0.01583117,0.01356646;0.4989553;0.02633384,0.122358;0.3711302;-0.008770842,0.1875154;0.09927765;0.007063385,0.2351371;-0.1745135;-0.02715066,-0.1005616;0.3597669;0.003678458,-0.1804411;0.09158367;-0.006171557,-0.2390711;-0.1794317;-0.04507151,0.06949373;0.003615623;-0.0394658,0.08425883;-0.3733984;0.005727295,0.08113178;-0.7174103;0.07011694,0.07648469;-0.7047492;-0.02825872,-0.07146592;0.004149858;-0.03571275,-0.1003179;-0.3731763;-0.00117977,-0.1218613;-0.7171015;0.06006828,-0.1087253;-0.7619564;-0.004925564,0.01074763;0.3989996;0.02538211,0;0;0,-0.002285633;0.1998143;0.008308252,-0.006971778;0.4997282;0.007565458,0.1055796;0.3795039;-0.03078616,0.1982171;0.1161256;-0.009568594,0.244759;-0.1533905;-0.06952591,-0.1135671;0.3480236;0.009211725,-0.1822355;0.07736334;-0.01146914,-0.2595679;-0.1859843;-0.066856,0.065534;0.009745287;-0.04483664,0.0988557;-0.3653526;0.00606731,0.1085429;-0.7063527;0.08433028,0.1144373;-0.7556996;0.02375527,-0.07562227;-0.004611291;-0.02569063,-0.0849651;-0.3829561;0.008483192,-0.09389897;-0.724764;0.08323305,-0.1056068;-0.7132329;-0.01434682,-0.005308766;0.399781;0.01035527,10.73425
+0;0;0,0.00535298;0.1993006;0.01583117,0.01356646;0.4989553;0.02633384,0.122358;0.3711302;-0.008770842,0.1875154;0.09927765;0.007063385,0.2351371;-0.1745135;-0.02715066,-0.1005616;0.3597669;0.003678458,-0.1804411;0.09158367;-0.006171557,-0.2390711;-0.1794317;-0.04507151,0.06949373;0.003615623;-0.0394658,0.08425883;-0.3733984;0.005727295,0.08113178;-0.7174103;0.07011694,0.07648469;-0.7047492;-0.02825872,-0.07146592;0.004149858;-0.03571275,-0.1003179;-0.3731763;-0.00117977,-0.1218613;-0.7171015;0.06006828,-0.1087253;-0.7619564;-0.004925564,0.01074763;0.3989996;0.02538211,0;0;0,-0.002285633;0.1998143;0.008308252,-0.006971778;0.4997282;0.007565458,0.1055796;0.3795039;-0.03078616,0.1982171;0.1161256;-0.009568594,0.244759;-0.1533905;-0.06952591,-0.1135671;0.3480236;0.009211725,-0.1822355;0.07736334;-0.01146914,-0.2595679;-0.1859843;-0.066856,0.065534;0.009745287;-0.04483664,0.0988557;-0.3653526;0.00606731,0.1085429;-0.7063527;0.08433028,0.1144373;-0.7556996;0.02375527,-0.07562227;-0.004611291;-0.02569063,-0.0849651;-0.3829561;0.008483192,-0.09389897;-0.724764;0.08323305,-0.1056068;-0.7132329;-0.01434682,-0.005308766;0.399781;0.01035527,10.75634
+0;0;0,0.005307289;0.1993049;0.01579259,0.0135654;0.498959;0.02626712,0.1223888;0.3711504;-0.008646149,0.1879643;0.09940577;0.007313574,0.235972;-0.1743398;-0.02672505,-0.1005677;0.3596893;0.003673164,-0.1802307;0.09143081;-0.005876832,-0.2389329;-0.1796626;-0.0441182,0.06949454;0.003623028;-0.0394637,0.08459793;-0.3733498;0.005960699,0.08158398;-0.7174195;0.07004596,0.07696749;-0.704749;-0.02833278,-0.07150061;0.004131252;-0.0356454,-0.1001814;-0.3732267;-0.001317769,-0.1214996;-0.7170839;0.06038928,-0.1084583;-0.7619793;-0.004576936,0.01072128;0.3990039;0.0253324,0;0;0,-0.002395348;0.1998085;0.008415258,-0.007034012;0.4997228;0.007814178,0.105345;0.379418;-0.0308683,0.1972918;0.1158566;-0.008933036,0.2438704;-0.1539375;-0.06759841,-0.1134275;0.3474926;0.01010107,-0.1814106;0.07674792;-0.01170762,-0.2601297;-0.186295;-0.06658669,0.0655513;0.009763833;-0.04480732,0.09919743;-0.3653114;0.006050531,0.1088308;-0.7063203;0.08428197,0.1146919;-0.7556965;0.02374223,-0.07559612;-0.004619292;-0.02576603,-0.08490281;-0.3829134;0.008974837,-0.09368546;-0.7247884;0.0834353,-0.1057532;-0.7132556;-0.01410102,-0.005416258;0.399774;0.01057544,10.76759
+0;0;0,0.005307289;0.1993049;0.01579259,0.0135654;0.498959;0.02626712,0.1223888;0.3711504;-0.008646149,0.1879643;0.09940577;0.007313574,0.235972;-0.1743398;-0.02672505,-0.1005677;0.3596893;0.003673164,-0.1802307;0.09143081;-0.005876832,-0.2389329;-0.1796626;-0.0441182,0.06949454;0.003623028;-0.0394637,0.08459793;-0.3733498;0.005960699,0.08158398;-0.7174195;0.07004596,0.07696749;-0.704749;-0.02833278,-0.07150061;0.004131252;-0.0356454,-0.1001814;-0.3732267;-0.001317769,-0.1214996;-0.7170839;0.06038928,-0.1084583;-0.7619793;-0.004576936,0.01072128;0.3990039;0.0253324,0;0;0,-0.002395348;0.1998085;0.008415258,-0.007034012;0.4997228;0.007814178,0.105345;0.379418;-0.0308683,0.1972918;0.1158566;-0.008933036,0.2438704;-0.1539375;-0.06759841,-0.1134275;0.3474926;0.01010107,-0.1814106;0.07674792;-0.01170762,-0.2601297;-0.186295;-0.06658669,0.0655513;0.009763833;-0.04480732,0.09919743;-0.3653114;0.006050531,0.1088308;-0.7063203;0.08428197,0.1146919;-0.7556965;0.02374223,-0.07559612;-0.004619292;-0.02576603,-0.08490281;-0.3829134;0.008974837,-0.09368546;-0.7247884;0.0834353,-0.1057532;-0.7132556;-0.01410102,-0.005416258;0.399774;0.01057544,10.78994
+0;0;0,0.005307289;0.1993049;0.01579259,0.0135654;0.498959;0.02626712,0.1223888;0.3711504;-0.008646149,0.1879643;0.09940577;0.007313574,0.235972;-0.1743398;-0.02672505,-0.1005677;0.3596893;0.003673164,-0.1802307;0.09143081;-0.005876832,-0.2389329;-0.1796626;-0.0441182,0.06949454;0.003623028;-0.0394637,0.08459793;-0.3733498;0.005960699,0.08158398;-0.7174195;0.07004596,0.07696749;-0.704749;-0.02833278,-0.07150061;0.004131252;-0.0356454,-0.1001814;-0.3732267;-0.001317769,-0.1214996;-0.7170839;0.06038928,-0.1084583;-0.7619793;-0.004576936,0.01072128;0.3990039;0.0253324,0;0;0,-0.002458632;0.199805;0.008480483,-0.007126027;0.4997185;0.007968234,0.1050832;0.3792031;-0.0310603,0.1963431;0.1154721;-0.008308742,0.2430292;-0.1543028;-0.06697643,-0.1136365;0.3477218;0.009823016,-0.1822101;0.077075;-0.01134158,-0.2613113;-0.1859218;-0.06589129,0.06560006;0.009781695;-0.04473199,0.09919599;-0.3653106;0.006032892,0.1085441;-0.7064282;0.08382381,0.1157892;-0.7553168;0.02279841,-0.07558621;-0.004625385;-0.02579401,-0.08484416;-0.382949;0.008637076,-0.09359229;-0.7247947;0.08323583,-0.1056742;-0.7132601;-0.01429909,-0.005514881;0.3997692;0.01071393,10.81216
+0;0;0,0.005117279;0.1993212;0.01564828,0.01309308;0.4989925;0.02582411,0.1221087;0.3711448;-0.008601539,0.1880286;0.0994947;0.007547677,0.2368709;-0.1741173;-0.02637745,-0.1009833;0.3596946;0.003569931,-0.1806942;0.09142986;-0.005386287,-0.2391836;-0.1797221;-0.04353874,0.06953927;0.003614337;-0.0393856,0.0848279;-0.3734094;0.005551767,0.08191265;-0.7173874;0.07013181,0.07731761;-0.7047391;-0.02824404,-0.07148562;0.004138014;-0.03567468,-0.100108;-0.3732418;-0.0015391,-0.1213355;-0.7170781;0.0603157,-0.1080346;-0.7619715;-0.004600231,0.01033924;0.3990337;0.02501093,0;0;0,-0.002469149;0.1998038;0.008505431,-0.007028688;0.4997185;0.007976783,0.1050677;0.379222;-0.03122463,0.1960552;0.1154451;-0.007921018,0.2426212;-0.1544617;-0.06607541,-0.1134806;0.3475004;0.01036043,-0.1820931;0.07690999;-0.01139121,-0.2625283;-0.185733;-0.06569434,0.06558627;0.009827469;-0.04474218,0.09937552;-0.3652436;0.006051786,0.108638;-0.7064635;0.08340298,0.1154066;-0.7553217;0.02228376,-0.07558218;-0.004670316;-0.0257977,-0.0848376;-0.3829818;0.008767106,-0.09347339;-0.7248853;0.0831136,-0.1057907;-0.7133554;-0.01439099,-0.005462748;0.3997689;0.01073783,10.83466
+0;0;0,0.005117279;0.1993212;0.01564828,0.01309308;0.4989925;0.02582411,0.1221087;0.3711448;-0.008601539,0.1880286;0.0994947;0.007547677,0.2368709;-0.1741173;-0.02637745,-0.1009833;0.3596946;0.003569931,-0.1806942;0.09142986;-0.005386287,-0.2391836;-0.1797221;-0.04353874,0.06953927;0.003614337;-0.0393856,0.0848279;-0.3734094;0.005551767,0.08191265;-0.7173874;0.07013181,0.07731761;-0.7047391;-0.02824404,-0.07148562;0.004138014;-0.03567468,-0.100108;-0.3732418;-0.0015391,-0.1213355;-0.7170781;0.0603157,-0.1080346;-0.7619715;-0.004600231,0.01033924;0.3990337;0.02501093,0;0;0,-0.002469149;0.1998038;0.008505431,-0.007028688;0.4997185;0.007976783,0.1050677;0.379222;-0.03122463,0.1960552;0.1154451;-0.007921018,0.2426212;-0.1544617;-0.06607541,-0.1134806;0.3475004;0.01036043,-0.1820931;0.07690999;-0.01139121,-0.2625283;-0.185733;-0.06569434,0.06558627;0.009827469;-0.04474218,0.09937552;-0.3652436;0.006051786,0.108638;-0.7064635;0.08340298,0.1154066;-0.7553217;0.02228376,-0.07558218;-0.004670316;-0.0257977,-0.0848376;-0.3829818;0.008767106,-0.09347339;-0.7248853;0.0831136,-0.1057907;-0.7133554;-0.01439099,-0.005462748;0.3997689;0.01073783,10.85694
+0;0;0,0.005036054;0.199325;0.0156265,0.01291552;0.4989994;0.02578013,0.1219967;0.3713593;-0.008675415,0.1883143;0.09982002;0.007706448,0.2378167;-0.1736726;-0.02622469,-0.1010729;0.3596116;0.003384192,-0.1807617;0.09132716;-0.005170716,-0.239374;-0.1798231;-0.04314645,0.06948208;0.003619648;-0.03948592,0.0847715;-0.3733704;0.005732525,0.08185823;-0.7172971;0.07058555,0.07727898;-0.7046431;-0.02779204,-0.0715296;0.004134615;-0.03558681,-0.1005153;-0.3732422;-0.001726091,-0.1213477;-0.7170831;0.06023758,-0.1077846;-0.7616701;-0.004976068,0.01018825;0.3990397;0.02497977,0;0;0,-0.002557031;0.1998028;0.008504182,-0.007331062;0.4997138;0.007996593,0.1048033;0.3791463;-0.03125406,0.1954845;0.1152985;-0.007562641,0.2419674;-0.1546651;-0.06551917,-0.1136237;0.3473139;0.01066654,-0.1823327;0.07676455;-0.01129076,-0.2632702;-0.1860207;-0.06413981,0.06557453;0.009835782;-0.04475755,0.09930573;-0.3652086;0.006271202,0.108473;-0.7065012;0.08331178,0.115372;-0.7549791;0.02171926,-0.07560437;-0.004681976;-0.02573048,-0.08478141;-0.3830065;0.008712776,-0.09349305;-0.7249316;0.08295105,-0.105944;-0.7134068;-0.01453558,-0.00569395;0.3997654;0.01076034,10.87919
+0;0;0,0.005036054;0.199325;0.0156265,0.01291552;0.4989994;0.02578013,0.1219967;0.3713593;-0.008675415,0.1883143;0.09982002;0.007706448,0.2378167;-0.1736726;-0.02622469,-0.1010729;0.3596116;0.003384192,-0.1807617;0.09132716;-0.005170716,-0.239374;-0.1798231;-0.04314645,0.06948208;0.003619648;-0.03948592,0.0847715;-0.3733704;0.005732525,0.08185823;-0.7172971;0.07058555,0.07727898;-0.7046431;-0.02779204,-0.0715296;0.004134615;-0.03558681,-0.1005153;-0.3732422;-0.001726091,-0.1213477;-0.7170831;0.06023758,-0.1077846;-0.7616701;-0.004976068,0.01018825;0.3990397;0.02497977,0;0;0,-0.002557031;0.1998028;0.008504182,-0.007331062;0.4997138;0.007996593,0.1048033;0.3791463;-0.03125406,0.1954845;0.1152985;-0.007562641,0.2419674;-0.1546651;-0.06551917,-0.1136237;0.3473139;0.01066654,-0.1823327;0.07676455;-0.01129076,-0.2632702;-0.1860207;-0.06413981,0.06557453;0.009835782;-0.04475755,0.09930573;-0.3652086;0.006271202,0.108473;-0.7065012;0.08331178,0.115372;-0.7549791;0.02171926,-0.07560437;-0.004681976;-0.02573048,-0.08478141;-0.3830065;0.008712776,-0.09349305;-0.7249316;0.08295105,-0.105944;-0.7134068;-0.01453558,-0.00569395;0.3997654;0.01076034,10.89062
+0;0;0,0.005036054;0.199325;0.0156265,0.01291552;0.4989994;0.02578013,0.1219967;0.3713593;-0.008675415,0.1883143;0.09982002;0.007706448,0.2378167;-0.1736726;-0.02622469,-0.1010729;0.3596116;0.003384192,-0.1807617;0.09132716;-0.005170716,-0.239374;-0.1798231;-0.04314645,0.06948208;0.003619648;-0.03948592,0.0847715;-0.3733704;0.005732525,0.08185823;-0.7172971;0.07058555,0.07727898;-0.7046431;-0.02779204,-0.0715296;0.004134615;-0.03558681,-0.1005153;-0.3732422;-0.001726091,-0.1213477;-0.7170831;0.06023758,-0.1077846;-0.7616701;-0.004976068,0.01018825;0.3990397;0.02497977,0;0;0,-0.002608891;0.1998015;0.008516629,-0.007337573;0.4997132;0.008000192,0.1047135;0.3790846;-0.03136133,0.1952418;0.1152146;-0.007335998,0.2416992;-0.1547506;-0.06530608,-0.1136754;0.3473513;0.01055606,-0.1825797;0.07685739;-0.01147239,-0.2632056;-0.1860959;-0.06396069,0.06557339;0.009842161;-0.04475782,0.09933087;-0.365194;0.006313704,0.1084463;-0.7064991;0.08330563,0.1153025;-0.7551299;0.02190365,-0.07564513;-0.004706926;-0.02560586,-0.08468324;-0.3830439;0.008736528,-0.09340195;-0.7249894;0.0828803,-0.1058649;-0.7134648;-0.01460475,-0.005727209;0.3997645;0.01077185,10.91285
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,-0.002608891;0.1998015;0.008516629,-0.007337573;0.4997132;0.008000192,0.1047135;0.3790846;-0.03136133,0.1952418;0.1152146;-0.007335998,0.2416992;-0.1547506;-0.06530608,-0.1136754;0.3473513;0.01055606,-0.1825797;0.07685739;-0.01147239,-0.2632056;-0.1860959;-0.06396069,0.06557339;0.009842161;-0.04475782,0.09933087;-0.365194;0.006313704,0.1084463;-0.7064991;0.08330563,0.1153025;-0.7551299;0.02190365,-0.07564513;-0.004706926;-0.02560586,-0.08468324;-0.3830439;0.008736528,-0.09340195;-0.7249894;0.0828803,-0.1058649;-0.7134648;-0.01460475,-0.005727209;0.3997645;0.01077185,10.92401
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,-0.00268216;0.1997991;0.008550259,-0.007516271;0.499709;0.008140465,0.1046769;0.379191;-0.03101121,0.1963551;0.1156266;-0.008012775,0.2425015;-0.1545657;-0.06516717,-0.1138702;0.3474446;0.01044976,-0.1829844;0.07700402;-0.01157589,-0.2635165;-0.1860117;-0.06389503,0.06557789;0.009859973;-0.0447473,0.09916162;-0.3651924;0.006319415,0.1082856;-0.7065215;0.08320346,0.1149983;-0.7551091;0.02173046,-0.07566788;-0.004732226;-0.02553385,-0.08475749;-0.3830802;0.008674543,-0.09355133;-0.7250824;0.08254698,-0.105829;-0.7135405;-0.01496486,-0.005875282;0.3997601;0.01088305,10.93553
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,-0.00268216;0.1997991;0.008550259,-0.007516271;0.499709;0.008140465,0.1046769;0.379191;-0.03101121,0.1963551;0.1156266;-0.008012775,0.2425015;-0.1545657;-0.06516717,-0.1138702;0.3474446;0.01044976,-0.1829844;0.07700402;-0.01157589,-0.2635165;-0.1860117;-0.06389503,0.06557789;0.009859973;-0.0447473,0.09916162;-0.3651924;0.006319415,0.1082856;-0.7065215;0.08320346,0.1149983;-0.7551091;0.02173046,-0.07566788;-0.004732226;-0.02553385,-0.08475749;-0.3830802;0.008674543,-0.09355133;-0.7250824;0.08254698,-0.105829;-0.7135405;-0.01496486,-0.005875282;0.3997601;0.01088305,10.9575
+0;0;0,0.005029323;0.1993431;0.01539611,0.01301003;0.4990295;0.02506372,0.1220625;0.3711223;-0.008908428,0.1892102;0.09981096;0.007864306,0.2391426;-0.1736219;-0.02591788,-0.1011146;0.3596121;0.00337616,-0.1805986;0.0912632;-0.005059453,-0.2395155;-0.1798796;-0.04261439,0.06948207;0.003621519;-0.03948576,0.08502181;-0.3733138;0.006101783,0.08209337;-0.7172257;0.07103278,0.0774666;-0.7046028;-0.0273371,-0.07156043;0.004133835;-0.03552486,-0.1008197;-0.373288;-0.002409618,-0.1210066;-0.7170088;0.06042774,-0.1072332;-0.7615416;-0.0048039,0.01023437;0.3990698;0.02445935,0;0;0,-0.002807442;0.1997978;0.008541921,-0.007953653;0.4997023;0.008161463,0.1043362;0.3791659;-0.03106369,0.1955683;0.1155244;-0.00719313,0.2417027;-0.15473;-0.06406322,-0.1141136;0.347299;0.0107221,-0.183064;0.07683608;-0.01154084,-0.2636281;-0.1861684;-0.06386722,0.0655352;0.009915804;-0.04479748,0.09908515;-0.3651427;0.006246682,0.1082;-0.7064707;0.08313686,0.1146663;-0.7551448;0.02174809,-0.07567599;-0.004842678;-0.02548906,-0.08508901;-0.3831856;0.008687172,-0.0938307;-0.7252043;0.08248931,-0.1062354;-0.713669;-0.01500521,-0.006186311;0.3997554;0.01089885,10.96888
+0;0;0,0.004995752;0.199352;0.01529111,0.01293161;0.4990478;0.02467318,0.1220311;0.3712049;-0.009116206,0.189446;0.09997997;0.007980693,0.240183;-0.1732578;-0.02617852,-0.1014052;0.3600688;0.003467532,-0.18019;0.09150943;-0.004829118,-0.2391406;-0.1796332;-0.04233266,0.06944755;0.003651216;-0.03954372,0.0851037;-0.3732404;0.006364848,0.08215629;-0.7171826;0.07113455,0.07748605;-0.7045688;-0.02723164,-0.07159463;0.004120144;-0.03545748,-0.1008451;-0.373313;-0.002462622,-0.1212097;-0.7170349;0.06031075,-0.107157;-0.7619726;-0.004395302,0.01016693;0.3990873;0.02418505,0;0;0,-0.002807442;0.1997978;0.008541921,-0.007953653;0.4997023;0.008161463,0.1043362;0.3791659;-0.03106369,0.1955683;0.1155244;-0.00719313,0.2417027;-0.15473;-0.06406322,-0.1141136;0.347299;0.0107221,-0.183064;0.07683608;-0.01154084,-0.2636281;-0.1861684;-0.06386722,0.0655352;0.009915804;-0.04479748,0.09908515;-0.3651427;0.006246682,0.1082;-0.7064707;0.08313686,0.1146663;-0.7551448;0.02174809,-0.07567599;-0.004842678;-0.02548906,-0.08508901;-0.3831856;0.008687172,-0.0938307;-0.7252043;0.08248931,-0.1062354;-0.713669;-0.01500521,-0.006186311;0.3997554;0.01089885,10.9909
+0;0;0,0.004995752;0.199352;0.01529111,0.01293161;0.4990478;0.02467318,0.1220311;0.3712049;-0.009116206,0.189446;0.09997997;0.007980693,0.240183;-0.1732578;-0.02617852,-0.1014052;0.3600688;0.003467532,-0.18019;0.09150943;-0.004829118,-0.2391406;-0.1796332;-0.04233266,0.06944755;0.003651216;-0.03954372,0.0851037;-0.3732404;0.006364848,0.08215629;-0.7171826;0.07113455,0.07748605;-0.7045688;-0.02723164,-0.07159463;0.004120144;-0.03545748,-0.1008451;-0.373313;-0.002462622,-0.1212097;-0.7170349;0.06031075,-0.107157;-0.7619726;-0.004395302,0.01016693;0.3990873;0.02418505,0;0;0,-0.002524443;0.1998098;0.008346829,-0.005592365;0.4997317;0.006700167,0.1056405;0.3783514;-0.03183343,0.1964157;0.1145951;-0.007492714,0.2425588;-0.1557291;-0.06402232,-0.1127181;0.347395;0.01025305,-0.1817141;0.07692575;-0.01179025,-0.262596;-0.1861094;-0.0634682,0.0655557;0.009937683;-0.04476262,0.0989358;-0.3651372;0.006272353,0.1083568;-0.7063629;0.08357888,0.1152133;-0.7553392;0.02262205,-0.07568013;-0.004861365;-0.02547321,-0.08504759;-0.3832182;0.008561533,-0.09380022;-0.7252054;0.08250821,-0.1061751;-0.7137063;-0.01498324,-0.004761281;0.3997903;0.01002132,11.00227
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,-0.002524443;0.1998098;0.008346829,-0.005592365;0.4997317;0.006700167,0.1056405;0.3783514;-0.03183343,0.1964157;0.1145951;-0.007492714,0.2425588;-0.1557291;-0.06402232,-0.1127181;0.347395;0.01025305,-0.1817141;0.07692575;-0.01179025,-0.262596;-0.1861094;-0.0634682,0.0655557;0.009937683;-0.04476262,0.0989358;-0.3651372;0.006272353,0.1083568;-0.7063629;0.08357888,0.1152133;-0.7553392;0.02262205,-0.07568013;-0.004861365;-0.02547321,-0.08504759;-0.3832182;0.008561533,-0.09380022;-0.7252054;0.08250821,-0.1061751;-0.7137063;-0.01498324,-0.004761281;0.3997903;0.01002132,11.01349
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,-0.00253004;0.1998184;0.008136505,-0.005687882;0.4997395;0.006378333,0.1055722;0.3784333;-0.03224547,0.1961301;0.1146708;-0.007172853,0.2422142;-0.1556866;-0.06359212,-0.1127958;0.3474812;0.01020057,-0.1813739;0.07693449;-0.01219465,-0.2624424;-0.1861817;-0.06316304,0.06556362;0.009929747;-0.04475279,0.09919746;-0.3651909;0.005776878,0.1086792;-0.7064414;0.08296612,0.1159962;-0.75551;0.02218263,-0.07563628;-0.004828685;-0.02560933,-0.08540318;-0.383135;0.008871799,-0.0937197;-0.7252572;0.08224215,-0.1062114;-0.7137756;-0.01523107,-0.004802345;0.3997992;0.009718369,11.0357
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,-0.00253004;0.1998184;0.008136505,-0.005687882;0.4997395;0.006378333,0.1055722;0.3784333;-0.03224547,0.1961301;0.1146708;-0.007172853,0.2422142;-0.1556866;-0.06359212,-0.1127958;0.3474812;0.01020057,-0.1813739;0.07693449;-0.01219465,-0.2624424;-0.1861817;-0.06316304,0.06556362;0.009929747;-0.04475279,0.09919746;-0.3651909;0.005776878,0.1086792;-0.7064414;0.08296612,0.1159962;-0.75551;0.02218263,-0.07563628;-0.004828685;-0.02560933,-0.08540318;-0.383135;0.008871799,-0.0937197;-0.7252572;0.08224215,-0.1062114;-0.7137756;-0.01523107,-0.004802345;0.3997992;0.009718369,11.04708
+0;0;0,0.005000285;0.1993542;0.01526089,0.01294795;0.4990515;0.02457734,0.1220077;0.3711733;-0.009266075,0.18971;0.1000288;0.007969132,0.2410052;-0.1730428;-0.02668195,-0.1013273;0.3599452;0.003272733,-0.1802064;0.09140021;-0.004579118,-0.2392296;-0.1797022;-0.0422587,0.06944787;0.003663274;-0.03954205,0.0851711;-0.3732361;0.006279469,0.08254399;-0.7172095;0.07089695,0.07788885;-0.7046142;-0.02746669,-0.07160944;0.004096452;-0.03543032,-0.1004249;-0.3733355;-0.00204251,-0.1211085;-0.7170838;0.06048209,-0.1071597;-0.7624002;-0.003805451,0.01017662;0.399091;0.02411684,0;0;0,-0.00253004;0.1998184;0.008136505,-0.005687882;0.4997395;0.006378333,0.1055722;0.3784333;-0.03224547,0.1961301;0.1146708;-0.007172853,0.2422142;-0.1556866;-0.06359212,-0.1127958;0.3474812;0.01020057,-0.1813739;0.07693449;-0.01219465,-0.2624424;-0.1861817;-0.06316304,0.06556362;0.009929747;-0.04475279,0.09919746;-0.3651909;0.005776878,0.1086792;-0.7064414;0.08296612,0.1159962;-0.75551;0.02218263,-0.07563628;-0.004828685;-0.02560933,-0.08540318;-0.383135;0.008871799,-0.0937197;-0.7252572;0.08224215,-0.1062114;-0.7137756;-0.01523107,-0.004802345;0.3997992;0.009718369,11.05839
+0;0;0,0.004938224;0.1993628;0.01516916,0.0127529;0.4990689;0.02430577,0.1218578;0.3712966;-0.009562435,0.1899926;0.1002822;0.008012356,0.2417727;-0.1726864;-0.0267291,-0.101372;0.3596638;0.003065869,-0.1802685;0.09111643;-0.004526479,-0.2393435;-0.1799616;-0.04230014,0.0694407;0.003698696;-0.03955134,0.08531547;-0.3731939;0.006273709,0.08258938;-0.7171464;0.07099809,0.07789758;-0.7045486;-0.02736426,-0.07161804;0.004047961;-0.0354185,-0.1003311;-0.3733954;-0.002070848,-0.1211654;-0.7171319;0.06046878,-0.1233686;-0.7045631;-0.03797561,0.010027;0.3991068;0.02391089,0;0;0,-0.002615179;0.1998152;0.008187376,-0.006205118;0.4997347;0.006732961,0.1055009;0.3787762;-0.03155549,0.1973277;0.1153093;-0.00803915,0.2435203;-0.1550396;-0.06441038,-0.1130907;0.3474276;0.01033433,-0.181672;0.07689467;-0.01221581,-0.2625882;-0.1863022;-0.063009,0.06557255;0.009964208;-0.04473203,0.09918662;-0.365144;0.005903445,0.1086158;-0.706426;0.0829598,0.1161812;-0.7559345;0.02278374,-0.0756334;-0.004855808;-0.0256127,-0.08539189;-0.3831776;0.008700453,-0.09375341;-0.7252908;0.08210752,-0.1060338;-0.7137966;-0.01539496,-0.005119271;0.3997919;0.009935587,11.06986
+0;0;0,0.004938224;0.1993628;0.01516916,0.0127529;0.4990689;0.02430577,0.1218578;0.3712966;-0.009562435,0.1899926;0.1002822;0.008012356,0.2417727;-0.1726864;-0.0267291,-0.101372;0.3596638;0.003065869,-0.1802685;0.09111643;-0.004526479,-0.2393435;-0.1799616;-0.04230014,0.0694407;0.003698696;-0.03955134,0.08531547;-0.3731939;0.006273709,0.08258938;-0.7171464;0.07099809,0.07789758;-0.7045486;-0.02736426,-0.07161804;0.004047961;-0.0354185,-0.1003311;-0.3733954;-0.002070848,-0.1211654;-0.7171319;0.06046878,-0.1233686;-0.7045631;-0.03797561,0.010027;0.3991068;0.02391089,0;0;0,-0.002615179;0.1998152;0.008187376,-0.006205118;0.4997347;0.006732961,0.1055009;0.3787762;-0.03155549,0.1973277;0.1153093;-0.00803915,0.2435203;-0.1550396;-0.06441038,-0.1130907;0.3474276;0.01033433,-0.181672;0.07689467;-0.01221581,-0.2625882;-0.1863022;-0.063009,0.06557255;0.009964208;-0.04473203,0.09918662;-0.365144;0.005903445,0.1086158;-0.706426;0.0829598,0.1161812;-0.7559345;0.02278374,-0.0756334;-0.004855808;-0.0256127,-0.08539189;-0.3831776;0.008700453,-0.09375341;-0.7252908;0.08210752,-0.1060338;-0.7137966;-0.01539496,-0.005119271;0.3997919;0.009935587,11.09246
+0;0;0,0.004938224;0.1993628;0.01516916,0.0127529;0.4990689;0.02430577,0.1218578;0.3712966;-0.009562435,0.1899926;0.1002822;0.008012356,0.2417727;-0.1726864;-0.0267291,-0.101372;0.3596638;0.003065869,-0.1802685;0.09111643;-0.004526479,-0.2393435;-0.1799616;-0.04230014,0.0694407;0.003698696;-0.03955134,0.08531547;-0.3731939;0.006273709,0.08258938;-0.7171464;0.07099809,0.07789758;-0.7045486;-0.02736426,-0.07161804;0.004047961;-0.0354185,-0.1003311;-0.3733954;-0.002070848,-0.1211654;-0.7171319;0.06046878,-0.1233686;-0.7045631;-0.03797561,0.010027;0.3991068;0.02391089,0;0;0,-0.00219953;0.1998332;0.007865604,-0.004497545;0.4997575;0.005438816,0.1065983;0.3781302;-0.03246543,0.197857;0.1145464;-0.008063896,0.2438433;-0.1558343;-0.06445157,-0.1118072;0.3473384;0.01023801,-0.1805342;0.0768187;-0.01202636,-0.2614625;-0.1862706;-0.06335506,0.06554205;0.01001176;-0.0447661,0.09903773;-0.3650983;0.005933505,0.1086283;-0.7063403;0.08314718,0.1159793;-0.7559318;0.02305429,-0.07564776;-0.00491041;-0.02555979,-0.08557452;-0.3832359;0.0086639,-0.09395085;-0.7253559;0.08203779,-0.1063854;-0.7138999;-0.01543787,-0.003900503;0.3998227;0.009000842,11.10394
+0;0;0,0.004925203;0.1993648;0.0151471,0.01273959;0.4990716;0.02426141,0.1218026;0.37116;-0.009616584,0.190302;0.1002377;0.007959222,0.2425951;-0.1725351;-0.02754358,-0.1013749;0.3596648;0.002963798,-0.1802575;0.09110916;-0.004478631,-0.2394226;-0.1799494;-0.04225115,0.06944261;0.003722581;-0.03954574,0.08527287;-0.3731753;0.006252121,0.08262777;-0.717113;0.07105818,0.07795382;-0.7045168;-0.02730472,-0.07162968;0.004010485;-0.03539921,-0.09991182;-0.3734427;-0.00179597,-0.121048;-0.7172055;0.0604971,-0.1091493;-0.7644629;-0.001870509,0.01001143;0.3991096;0.02387311,0;0;0,-0.00219953;0.1998332;0.007865604,-0.004497545;0.4997575;0.005438816,0.1065983;0.3781302;-0.03246543,0.197857;0.1145464;-0.008063896,0.2438433;-0.1558343;-0.06445157,-0.1118072;0.3473384;0.01023801,-0.1805342;0.0768187;-0.01202636,-0.2614625;-0.1862706;-0.06335506,0.06554205;0.01001176;-0.0447661,0.09903773;-0.3650983;0.005933505,0.1086283;-0.7063403;0.08314718,0.1159793;-0.7559318;0.02305429,-0.07564776;-0.00491041;-0.02555979,-0.08557452;-0.3832359;0.0086639,-0.09395085;-0.7253559;0.08203779,-0.1063854;-0.7138999;-0.01543787,-0.003900503;0.3998227;0.009000842,11.11529
+0;0;0,0.004925203;0.1993648;0.0151471,0.01273959;0.4990716;0.02426141,0.1218026;0.37116;-0.009616584,0.190302;0.1002377;0.007959222,0.2425951;-0.1725351;-0.02754358,-0.1013749;0.3596648;0.002963798,-0.1802575;0.09110916;-0.004478631,-0.2394226;-0.1799494;-0.04225115,0.06944261;0.003722581;-0.03954574,0.08527287;-0.3731753;0.006252121,0.08262777;-0.717113;0.07105818,0.07795382;-0.7045168;-0.02730472,-0.07162968;0.004010485;-0.03539921,-0.09991182;-0.3734427;-0.00179597,-0.121048;-0.7172055;0.0604971,-0.1091493;-0.7644629;-0.001870509,0.01001143;0.3991096;0.02387311,0;0;0,-0.002289851;0.1998295;0.007933,-0.005039981;0.4997551;0.005925752,0.1062859;0.3783937;-0.03224883,0.1990548;0.1152528;-0.008779494,0.2451293;-0.1550748;-0.0653492,-0.1121836;0.3474144;0.01028173,-0.1811135;0.0769425;-0.01193559,-0.2630578;-0.186061;-0.06207843,0.06560535;0.01008594;-0.0446566,0.09900018;-0.3650673;0.0057895,0.1086021;-0.7063235;0.0829387,0.115497;-0.7555093;0.02225859,-0.07561892;-0.004946857;-0.02563802,-0.08591247;-0.3832414;0.008818431,-0.09401284;-0.7254101;0.08199592,-0.1063586;-0.7139372;-0.01549423,-0.004233705;0.3998154;0.009302699,11.13813
+0;0;0,0.004928182;0.199369;0.01509061,0.01280991;0.4990797;0.02399329,0.1218205;0.3712102;-0.009909984,0.1909368;0.100453;0.00779523,0.2437461;-0.1721512;-0.02823403,-0.1013327;0.3596548;0.002817422,-0.1802778;0.09111264;-0.004445432,-0.2395226;-0.1799254;-0.04224012,0.06943931;0.003746459;-0.03954928,0.08526368;-0.3731605;0.00617573,0.0825926;-0.7170947;0.07099977,0.07788363;-0.7045048;-0.02736034,-0.07163491;0.003987172;-0.03539126,-0.0998098;-0.3734658;-0.001695145,-0.1211275;-0.7172372;0.06048836,-0.1080301;-0.7634078;-0.002966449,0.01005324;0.3991181;0.02369398,0;0;0,-0.002289851;0.1998295;0.007933,-0.005039981;0.4997551;0.005925752,0.1062859;0.3783937;-0.03224883,0.1990548;0.1152528;-0.008779494,0.2451293;-0.1550748;-0.0653492,-0.1121836;0.3474144;0.01028173,-0.1811135;0.0769425;-0.01193559,-0.2630578;-0.186061;-0.06207843,0.06560535;0.01008594;-0.0446566,0.09900018;-0.3650673;0.0057895,0.1086021;-0.7063235;0.0829387,0.115497;-0.7555093;0.02225859,-0.07561892;-0.004946857;-0.02563802,-0.08591247;-0.3832414;0.008818431,-0.09401284;-0.7254101;0.08199592,-0.1063586;-0.7139372;-0.01549423,-0.004233705;0.3998154;0.009302699,11.14948
+0;0;0,0.004928182;0.199369;0.01509061,0.01280991;0.4990797;0.02399329,0.1218205;0.3712102;-0.009909984,0.1909368;0.100453;0.00779523,0.2437461;-0.1721512;-0.02823403,-0.1013327;0.3596548;0.002817422,-0.1802778;0.09111264;-0.004445432,-0.2395226;-0.1799254;-0.04224012,0.06943931;0.003746459;-0.03954928,0.08526368;-0.3731605;0.00617573,0.0825926;-0.7170947;0.07099977,0.07788363;-0.7045048;-0.02736034,-0.07163491;0.003987172;-0.03539126,-0.0998098;-0.3734658;-0.001695145,-0.1211275;-0.7172372;0.06048836,-0.1080301;-0.7634078;-0.002966449,0.01005324;0.3991181;0.02369398,0;0;0,-0.002073678;0.1998383;0.007768631,-0.003871814;0.4997623;0.004982824,0.1069869;0.3778803;-0.0328318,0.1990811;0.1145636;-0.008686369,0.245005;-0.1558394;-0.06501731,-0.1113686;0.347389;0.01011184,-0.1811346;0.07709798;-0.01169362,-0.2654589;-0.1852192;-0.06148453,0.06560908;0.01008473;-0.0446514,0.09896219;-0.3650869;0.005685728,0.1085169;-0.7063253;0.08291958,0.1154854;-0.7554972;0.02222978,-0.07561737;-0.004946876;-0.02564259,-0.08594968;-0.3832499;0.008709811,-0.09395717;-0.7254054;0.0819594,-0.1063824;-0.7139623;-0.01551498,-0.003443995;0.3998315;0.00867918,11.16099
+0;0;0,0.004928182;0.199369;0.01509061,0.01280991;0.4990797;0.02399329,0.1218205;0.3712102;-0.009909984,0.1909368;0.100453;0.00779523,0.2437461;-0.1721512;-0.02823403,-0.1013327;0.3596548;0.002817422,-0.1802778;0.09111264;-0.004445432,-0.2395226;-0.1799254;-0.04224012,0.06943931;0.003746459;-0.03954928,0.08526368;-0.3731605;0.00617573,0.0825926;-0.7170947;0.07099977,0.07788363;-0.7045048;-0.02736034,-0.07163491;0.003987172;-0.03539126,-0.0998098;-0.3734658;-0.001695145,-0.1211275;-0.7172372;0.06048836,-0.1080301;-0.7634078;-0.002966449,0.01005324;0.3991181;0.02369398,0;0;0,-0.002073678;0.1998383;0.007768631,-0.003871814;0.4997623;0.004982824,0.1069869;0.3778803;-0.0328318,0.1990811;0.1145636;-0.008686369,0.245005;-0.1558394;-0.06501731,-0.1113686;0.347389;0.01011184,-0.1811346;0.07709798;-0.01169362,-0.2654589;-0.1852192;-0.06148453,0.06560908;0.01008473;-0.0446514,0.09896219;-0.3650869;0.005685728,0.1085169;-0.7063253;0.08291958,0.1154854;-0.7554972;0.02222978,-0.07561737;-0.004946876;-0.02564259,-0.08594968;-0.3832499;0.008709811,-0.09395717;-0.7254054;0.0819594,-0.1063824;-0.7139623;-0.01551498,-0.003443995;0.3998315;0.00867918,11.17249
+0;0;0,0.004905348;0.1993735;0.01503831,0.0127295;0.4990902;0.02377783,0.1216841;0.3712421;-0.0103292,0.1913548;0.1006391;0.00755877,0.2444688;-0.1718902;-0.02858945,-0.1017127;0.3602894;0.003201235,-0.1798142;0.09150586;-0.004253537,-0.2389331;-0.1795374;-0.04220808,0.06942564;0.003829742;-0.0395653,0.08548913;-0.373103;0.00586224,0.08233017;-0.716935;0.07120416,0.077425;-0.704344;-0.02714658,-0.0716394;0.003946616;-0.03538673,-0.09968048;-0.3735063;-0.00157889,-0.121095;-0.7172899;0.06050348,-0.1074034;-0.7628675;-0.00353232,0.0099917;0.3991279;0.02354086,0;0;0,-0.002073678;0.1998383;0.007768631,-0.003871814;0.4997623;0.004982824,0.1069869;0.3778803;-0.0328318,0.1990811;0.1145636;-0.008686369,0.245005;-0.1558394;-0.06501731,-0.1113686;0.347389;0.01011184,-0.1811346;0.07709798;-0.01169362,-0.2654589;-0.1852192;-0.06148453,0.06560908;0.01008473;-0.0446514,0.09896219;-0.3650869;0.005685728,0.1085169;-0.7063253;0.08291958,0.1154854;-0.7554972;0.02222978,-0.07561737;-0.004946876;-0.02564259,-0.08594968;-0.3832499;0.008709811,-0.09395717;-0.7254054;0.0819594,-0.1063824;-0.7139623;-0.01551498,-0.003443995;0.3998315;0.00867918,11.1836
+0;0;0,0.004905348;0.1993735;0.01503831,0.0127295;0.4990902;0.02377783,0.1216841;0.3712421;-0.0103292,0.1913548;0.1006391;0.00755877,0.2444688;-0.1718902;-0.02858945,-0.1017127;0.3602894;0.003201235,-0.1798142;0.09150586;-0.004253537,-0.2389331;-0.1795374;-0.04220808,0.06942564;0.003829742;-0.0395653,0.08548913;-0.373103;0.00586224,0.08233017;-0.716935;0.07120416,0.077425;-0.704344;-0.02714658,-0.0716394;0.003946616;-0.03538673,-0.09968048;-0.3735063;-0.00157889,-0.121095;-0.7172899;0.06050348,-0.1074034;-0.7628675;-0.00353232,0.0099917;0.3991279;0.02354086,0;0;0,-0.002224326;0.1998365;0.007772515,-0.004687436;0.4997585;0.005144525,0.106412;0.3780861;-0.03298456,0.1980504;0.1146791;-0.00810161,0.2439428;-0.1557322;-0.06441888,-0.1118456;0.3472796;0.01024718,-0.1826605;0.07726252;-0.01157034,-0.2693069;-0.184508;-0.06023849,0.06559581;0.01006571;-0.04467518,0.09869454;-0.3650429;0.006295368,0.1085461;-0.7063816;0.08304746,0.1158157;-0.7556159;0.02247456,-0.07561444;-0.004927537;-0.02565491,-0.08609012;-0.3832039;0.008946201,-0.09396489;-0.7253898;0.0820682,-0.1065432;-0.7139497;-0.01538598,-0.003972413;0.3998265;0.008760317,11.19499
+0;0;0,0.004905348;0.1993735;0.01503831,0.0127295;0.4990902;0.02377783,0.1216841;0.3712421;-0.0103292,0.1913548;0.1006391;0.00755877,0.2444688;-0.1718902;-0.02858945,-0.1017127;0.3602894;0.003201235,-0.1798142;0.09150586;-0.004253537,-0.2389331;-0.1795374;-0.04220808,0.06942564;0.003829742;-0.0395653,0.08548913;-0.373103;0.00586224,0.08233017;-0.716935;0.07120416,0.077425;-0.704344;-0.02714658,-0.0716394;0.003946616;-0.03538673,-0.09968048;-0.3735063;-0.00157889,-0.121095;-0.7172899;0.06050348,-0.1074034;-0.7628675;-0.00353232,0.0099917;0.3991279;0.02354086,0;0;0,-0.002224326;0.1998365;0.007772515,-0.004687436;0.4997585;0.005144525,0.106412;0.3780861;-0.03298456,0.1980504;0.1146791;-0.00810161,0.2439428;-0.1557322;-0.06441888,-0.1118456;0.3472796;0.01024718,-0.1826605;0.07726252;-0.01157034,-0.2693069;-0.184508;-0.06023849,0.06559581;0.01006571;-0.04467518,0.09869454;-0.3650429;0.006295368,0.1085461;-0.7063816;0.08304746,0.1158157;-0.7556159;0.02247456,-0.07561444;-0.004927537;-0.02565491,-0.08609012;-0.3832039;0.008946201,-0.09396489;-0.7253898;0.0820682,-0.1065432;-0.7139497;-0.01538598,-0.003972413;0.3998265;0.008760317,11.20664
+0;0;0,0.004923319;0.1993817;0.01492297,0.01285501;0.4991028;0.02339371,0.1217584;0.3712128;-0.01058964,0.1923841;0.1008576;0.007300477,0.2454919;-0.1715374;-0.02985518,-0.1018086;0.3606189;0.003278974,-0.1796003;0.0917469;-0.00422522,-0.2385775;-0.1793052;-0.04233608,0.0694438;0.00384816;-0.03953164,0.08551388;-0.3731029;0.005741514,0.08216601;-0.7169179;0.07116342,0.07718293;-0.704336;-0.02718179,-0.0716277;0.003923858;-0.03541292,-0.1004169;-0.3734009;-0.0008121468,-0.1209397;-0.7172918;0.06097707,-0.1076634;-0.7630357;-0.002949417,0.01006998;0.3991417;0.02325825,0;0;0,-0.002224326;0.1998365;0.007772515,-0.004687436;0.4997585;0.005144525,0.106412;0.3780861;-0.03298456,0.1980504;0.1146791;-0.00810161,0.2439428;-0.1557322;-0.06441888,-0.1118456;0.3472796;0.01024718,-0.1826605;0.07726252;-0.01157034,-0.2693069;-0.184508;-0.06023849,0.06559581;0.01006571;-0.04467518,0.09869454;-0.3650429;0.006295368,0.1085461;-0.7063816;0.08304746,0.1158157;-0.7556159;0.02247456,-0.07561444;-0.004927537;-0.02565491,-0.08609012;-0.3832039;0.008946201,-0.09396489;-0.7253898;0.0820682,-0.1065432;-0.7139497;-0.01538598,-0.003972413;0.3998265;0.008760317,11.21794
+0;0;0,0.004923319;0.1993817;0.01492297,0.01285501;0.4991028;0.02339371,0.1217584;0.3712128;-0.01058964,0.1923841;0.1008576;0.007300477,0.2454919;-0.1715374;-0.02985518,-0.1018086;0.3606189;0.003278974,-0.1796003;0.0917469;-0.00422522,-0.2385775;-0.1793052;-0.04233608,0.0694438;0.00384816;-0.03953164,0.08551388;-0.3731029;0.005741514,0.08216601;-0.7169179;0.07116342,0.07718293;-0.704336;-0.02718179,-0.0716277;0.003923858;-0.03541292,-0.1004169;-0.3734009;-0.0008121468,-0.1209397;-0.7172918;0.06097707,-0.1076634;-0.7630357;-0.002949417,0.01006998;0.3991417;0.02325825,0;0;0,-0.002379156;0.1998356;0.007750419,-0.005351029;0.4997563;0.005349552,0.1059587;0.3781601;-0.03301155,0.1971266;0.1146443;-0.007559484,0.2431037;-0.1557695;-0.06379546,-0.1122179;0.3471717;0.01025406,-0.1846129;0.07748222;-0.01039848,-0.2738706;-0.1835082;-0.05853462,0.06558403;0.01009716;-0.04468536,0.09851983;-0.365018;0.006342206,0.1082844;-0.7063755;0.08302122,0.1149293;-0.755428;0.02213968,-0.07564621;-0.004957848;-0.02555523,-0.08627128;-0.3832443;0.008889487,-0.09412161;-0.7254575;0.08188573,-0.1067526;-0.7140174;-0.01556166,-0.004394197;0.3998224;0.008857192,11.22891
+0;0;0,0.004923319;0.1993817;0.01492297,0.01285501;0.4991028;0.02339371,0.1217584;0.3712128;-0.01058964,0.1923841;0.1008576;0.007300477,0.2454919;-0.1715374;-0.02985518,-0.1018086;0.3606189;0.003278974,-0.1796003;0.0917469;-0.00422522,-0.2385775;-0.1793052;-0.04233608,0.0694438;0.00384816;-0.03953164,0.08551388;-0.3731029;0.005741514,0.08216601;-0.7169179;0.07116342,0.07718293;-0.704336;-0.02718179,-0.0716277;0.003923858;-0.03541292,-0.1004169;-0.3734009;-0.0008121468,-0.1209397;-0.7172918;0.06097707,-0.1076634;-0.7630357;-0.002949417,0.01006998;0.3991417;0.02325825,0;0;0,-0.002379156;0.1998356;0.007750419,-0.005351029;0.4997563;0.005349552,0.1059587;0.3781601;-0.03301155,0.1971266;0.1146443;-0.007559484,0.2431037;-0.1557695;-0.06379546,-0.1122179;0.3471717;0.01025406,-0.1846129;0.07748222;-0.01039848,-0.2738706;-0.1835082;-0.05853462,0.06558403;0.01009716;-0.04468536,0.09851983;-0.365018;0.006342206,0.1082844;-0.7063755;0.08302122,0.1149293;-0.755428;0.02213968,-0.07564621;-0.004957848;-0.02555523,-0.08627128;-0.3832443;0.008889487,-0.09412161;-0.7254575;0.08188573,-0.1067526;-0.7140174;-0.01556166,-0.004394197;0.3998224;0.008857192,11.24081
+0;0;0,0.00494555;0.1993864;0.01485232,0.01303932;0.4991075;0.02314905,0.1219165;0.371508;-0.01086905,0.192851;0.101252;0.007296938,0.2463393;-0.1710372;-0.03008691,-0.1017044;0.3606142;0.003206426,-0.1793975;0.09170881;-0.004119829,-0.2383176;-0.1793619;-0.04218699,0.06943958;0.003903443;-0.03953361,0.08548098;-0.3730563;0.005677547,0.08222897;-0.7168674;0.07112421,0.07719047;-0.7042925;-0.02721694,-0.07164259;0.0038614;-0.03538966,-0.1002596;-0.3734584;-0.0005926751,-0.1210271;-0.7173911;0.06088089,-0.1092054;-0.7648323;-0.00127317,0.01018839;0.3991482;0.02308461,0;0;0,-0.002379156;0.1998356;0.007750419,-0.005351029;0.4997563;0.005349552,0.1059587;0.3781601;-0.03301155,0.1971266;0.1146443;-0.007559484,0.2431037;-0.1557695;-0.06379546,-0.1122179;0.3471717;0.01025406,-0.1846129;0.07748222;-0.01039848,-0.2738706;-0.1835082;-0.05853462,0.06558403;0.01009716;-0.04468536,0.09851983;-0.365018;0.006342206,0.1082844;-0.7063755;0.08302122,0.1149293;-0.755428;0.02213968,-0.07564621;-0.004957848;-0.02555523,-0.08627128;-0.3832443;0.008889487,-0.09412161;-0.7254575;0.08188573,-0.1067526;-0.7140174;-0.01556166,-0.004394197;0.3998224;0.008857192,11.25235
+0;0;0,0.00494555;0.1993864;0.01485232,0.01303932;0.4991075;0.02314905,0.1219165;0.371508;-0.01086905,0.192851;0.101252;0.007296938,0.2463393;-0.1710372;-0.03008691,-0.1017044;0.3606142;0.003206426,-0.1793975;0.09170881;-0.004119829,-0.2383176;-0.1793619;-0.04218699,0.06943958;0.003903443;-0.03953361,0.08548098;-0.3730563;0.005677547,0.08222897;-0.7168674;0.07112421,0.07719047;-0.7042925;-0.02721694,-0.07164259;0.0038614;-0.03538966,-0.1002596;-0.3734584;-0.0005926751,-0.1210271;-0.7173911;0.06088089,-0.1092054;-0.7648323;-0.00127317,0.01018839;0.3991482;0.02308461,0;0;0,-0.002713497;0.1998307;0.00776714,-0.007622701;0.4997278;0.005499168,0.1047643;0.3782367;-0.03241258,0.1976162;0.1152032;-0.008083405,0.2436396;-0.1552096;-0.0642862,-0.1132728;0.3464482;0.0108493,-0.1889014;0.07750973;-0.00792416,-0.2806652;-0.1824808;-0.05675397,0.06561752;0.01023261;-0.04460533,0.09801152;-0.3649272;0.006441154,0.1077153;-0.706292;0.08309541,0.1146569;-0.7555147;0.02246883,-0.07566119;-0.005069086;-0.025489,-0.08647393;-0.3833438;0.009025907,-0.094364;-0.7255679;0.08196732,-0.1070078;-0.7141377;-0.0154765,-0.005804004;0.3998034;0.008933709,11.27456
+0;0;0,0.00494555;0.1993864;0.01485232,0.01303932;0.4991075;0.02314905,0.1219165;0.371508;-0.01086905,0.192851;0.101252;0.007296938,0.2463393;-0.1710372;-0.03008691,-0.1017044;0.3606142;0.003206426,-0.1793975;0.09170881;-0.004119829,-0.2383176;-0.1793619;-0.04218699,0.06943958;0.003903443;-0.03953361,0.08548098;-0.3730563;0.005677547,0.08222897;-0.7168674;0.07112421,0.07719047;-0.7042925;-0.02721694,-0.07164259;0.0038614;-0.03538966,-0.1002596;-0.3734584;-0.0005926751,-0.1210271;-0.7173911;0.06088089,-0.1092054;-0.7648323;-0.00127317,0.01018839;0.3991482;0.02308461,0;0;0,-0.002713497;0.1998307;0.00776714,-0.007622701;0.4997278;0.005499168,0.1047643;0.3782367;-0.03241258,0.1976162;0.1152032;-0.008083405,0.2436396;-0.1552096;-0.0642862,-0.1132728;0.3464482;0.0108493,-0.1889014;0.07750973;-0.00792416,-0.2806652;-0.1824808;-0.05675397,0.06561752;0.01023261;-0.04460533,0.09801152;-0.3649272;0.006441154,0.1077153;-0.706292;0.08309541,0.1146569;-0.7555147;0.02246883,-0.07566119;-0.005069086;-0.025489,-0.08647393;-0.3833438;0.009025907,-0.094364;-0.7255679;0.08196732,-0.1070078;-0.7141377;-0.0154765,-0.005804004;0.3998034;0.008933709,11.28581
+0;0;0,0.005013051;0.1993857;0.01483892,0.01327523;0.4991027;0.02311536,0.1220584;0.3713843;-0.0108767,0.1945223;0.1015194;0.007065292,0.2467648;-0.1710348;-0.03014964,-0.1016752;0.3609162;0.003363019,-0.1787154;0.09182417;-0.004005681,-0.2376766;-0.179232;-0.04211265,0.06936935;0.003975967;-0.03964954,0.08598347;-0.3730071;0.005158424,0.08251326;-0.7167424;0.07099155,0.07745117;-0.7041659;-0.02734867,-0.07168172;0.003809693;-0.03531595,-0.101218;-0.373409;-0.000192076,-0.1210048;-0.7174331;0.06109311,-0.1090015;-0.7642255;-0.001826301,0.01035445;0.3991454;0.02305781,0;0;0,-0.002840546;0.1998267;0.007825714,-0.008165674;0.4997198;0.005826142,0.1042657;0.3784318;-0.0325862,0.1965027;0.1152619;-0.007407198,0.2426148;-0.1551991;-0.0633046,-0.113584;0.3462664;0.01091714,-0.1904053;0.07761699;-0.007136757,-0.2877491;-0.1804831;-0.05518359,0.06561903;0.01023525;-0.04460249,0.09795818;-0.3649172;0.006532822,0.1077154;-0.7062424;0.08335656,0.1152184;-0.7559567;0.02344539,-0.07566056;-0.005078158;-0.02548903,-0.08670547;-0.3833548;0.008931505,-0.09460337;-0.7255437;0.08203686,-0.1073743;-0.7141101;-0.01539101,-0.006198504;0.3997941;0.009142675,11.30805
+0;0;0,0.005013051;0.1993857;0.01483892,0.01327523;0.4991027;0.02311536,0.1220584;0.3713843;-0.0108767,0.1945223;0.1015194;0.007065292,0.2467648;-0.1710348;-0.03014964,-0.1016752;0.3609162;0.003363019,-0.1787154;0.09182417;-0.004005681,-0.2376766;-0.179232;-0.04211265,0.06936935;0.003975967;-0.03964954,0.08598347;-0.3730071;0.005158424,0.08251326;-0.7167424;0.07099155,0.07745117;-0.7041659;-0.02734867,-0.07168172;0.003809693;-0.03531595,-0.101218;-0.373409;-0.000192076,-0.1210048;-0.7174331;0.06109311,-0.1090015;-0.7642255;-0.001826301,0.01035445;0.3991454;0.02305781,0;0;0,-0.002840546;0.1998267;0.007825714,-0.008165674;0.4997198;0.005826142,0.1042657;0.3784318;-0.0325862,0.1965027;0.1152619;-0.007407198,0.2426148;-0.1551991;-0.0633046,-0.113584;0.3462664;0.01091714,-0.1904053;0.07761699;-0.007136757,-0.2877491;-0.1804831;-0.05518359,0.06561903;0.01023525;-0.04460249,0.09795818;-0.3649172;0.006532822,0.1077154;-0.7062424;0.08335656,0.1152184;-0.7559567;0.02344539,-0.07566056;-0.005078158;-0.02548903,-0.08670547;-0.3833548;0.008931505,-0.09460337;-0.7255437;0.08203686,-0.1073743;-0.7141101;-0.01539101,-0.006198504;0.3997941;0.009142675,11.31932
+0;0;0,0.005013051;0.1993857;0.01483892,0.01327523;0.4991027;0.02311536,0.1220584;0.3713843;-0.0108767,0.1945223;0.1015194;0.007065292,0.2467648;-0.1710348;-0.03014964,-0.1016752;0.3609162;0.003363019,-0.1787154;0.09182417;-0.004005681,-0.2376766;-0.179232;-0.04211265,0.06936935;0.003975967;-0.03964954,0.08598347;-0.3730071;0.005158424,0.08251326;-0.7167424;0.07099155,0.07745117;-0.7041659;-0.02734867,-0.07168172;0.003809693;-0.03531595,-0.101218;-0.373409;-0.000192076,-0.1210048;-0.7174331;0.06109311,-0.1090015;-0.7642255;-0.001826301,0.01035445;0.3991454;0.02305781,0;0;0,-0.003384215;0.1998082;0.008077431,-0.009207356;0.4996917;0.006063933,0.1033899;0.3785405;-0.03251782,0.1950561;0.1152316;-0.006715825,0.2413002;-0.1552425;-0.06244034,-0.1143922;0.3461969;0.01134992,-0.1929546;0.07799494;-0.00584426,-0.2934279;-0.1788127;-0.0543719,0.06555905;0.0102261;-0.0446927,0.09701677;-0.3649149;0.007072415,0.1067744;-0.7062523;0.08384204,0.1145911;-0.7562848;0.0243971,-0.07570405;-0.005098113;-0.02535557,-0.0876089;-0.3833128;0.009457329,-0.09530511;-0.7255239;0.08247999,-0.1082373;-0.7140893;-0.01492682,-0.007032992;0.3997706;0.009387578,11.34157
+0;0;0,0.005072134;0.1993911;0.01474723,0.01351289;0.4991069;0.02288353,0.1221207;0.371223;-0.01127457,0.1947812;0.1014546;0.007312717,0.2470769;-0.1710413;-0.03025192,-0.1016646;0.3613423;0.003268115,-0.17872;0.09225142;-0.003982637,-0.2374762;-0.1788319;-0.04221294,0.06937157;0.003969687;-0.03964626,0.08615489;-0.3730011;0.005201206,0.08244458;-0.7167258;0.07107662,0.07729438;-0.7041525;-0.02725845,-0.07168911;0.00381121;-0.03530078,-0.1010771;-0.3734235;-0.000225015,-0.12085;-0.7174819;0.06087219,-0.1082109;-0.7638121;-0.002483606,0.01052326;0.3991516;0.02287234,0;0;0,-0.003384215;0.1998082;0.008077431,-0.009207356;0.4996917;0.006063933,0.1033899;0.3785405;-0.03251782,0.1950561;0.1152316;-0.006715825,0.2413002;-0.1552425;-0.06244034,-0.1143922;0.3461969;0.01134992,-0.1929546;0.07799494;-0.00584426,-0.2934279;-0.1788127;-0.0543719,0.06555905;0.0102261;-0.0446927,0.09701677;-0.3649149;0.007072415,0.1067744;-0.7062523;0.08384204,0.1145911;-0.7562848;0.0243971,-0.07570405;-0.005098113;-0.02535557,-0.0876089;-0.3833128;0.009457329,-0.09530511;-0.7255239;0.08247999,-0.1082373;-0.7140893;-0.01492682,-0.007032992;0.3997706;0.009387578,11.3527
+0;0;0,0.005072134;0.1993911;0.01474723,0.01351289;0.4991069;0.02288353,0.1221207;0.371223;-0.01127457,0.1947812;0.1014546;0.007312717,0.2470769;-0.1710413;-0.03025192,-0.1016646;0.3613423;0.003268115,-0.17872;0.09225142;-0.003982637,-0.2374762;-0.1788319;-0.04221294,0.06937157;0.003969687;-0.03964626,0.08615489;-0.3730011;0.005201206,0.08244458;-0.7167258;0.07107662,0.07729438;-0.7041525;-0.02725845,-0.07168911;0.00381121;-0.03530078,-0.1010771;-0.3734235;-0.000225015,-0.12085;-0.7174819;0.06087219,-0.1082109;-0.7638121;-0.002483606,0.01052326;0.3991516;0.02287234,0;0;0,-0.003637814;0.1997982;0.008212061,-0.009639769;0.4996792;0.006274312,0.1029797;0.3785608;-0.03248482,0.1941561;0.1151092;-0.006405316,0.2405205;-0.155398;-0.06186846,-0.1147575;0.3461883;0.01151349,-0.1987042;0.07941976;-0.002178437,-0.3003797;-0.1767759;-0.05143163,0.065579;0.01017701;-0.04467464,0.09657961;-0.3649767;0.007273659,0.1061801;-0.7064698;0.08336741,0.1135508;-0.7561224;0.02335775,-0.07568925;-0.005033537;-0.02541261,-0.08824933;-0.3832047;0.009641996,-0.09581953;-0.7254093;0.08270814,-0.108817;-0.7139674;-0.01469138,-0.007396219;0.3997584;0.009560563,11.37497
+0;0;0,0.005072134;0.1993911;0.01474723,0.01351289;0.4991069;0.02288353,0.1221207;0.371223;-0.01127457,0.1947812;0.1014546;0.007312717,0.2470769;-0.1710413;-0.03025192,-0.1016646;0.3613423;0.003268115,-0.17872;0.09225142;-0.003982637,-0.2374762;-0.1788319;-0.04221294,0.06937157;0.003969687;-0.03964626,0.08615489;-0.3730011;0.005201206,0.08244458;-0.7167258;0.07107662,0.07729438;-0.7041525;-0.02725845,-0.07168911;0.00381121;-0.03530078,-0.1010771;-0.3734235;-0.000225015,-0.12085;-0.7174819;0.06087219,-0.1082109;-0.7638121;-0.002483606,0.01052326;0.3991516;0.02287234,0;0;0,-0.003722359;0.1997935;0.008287475,-0.009743981;0.4996746;0.006457177,0.1027803;0.3784155;-0.03245375,0.1932862;0.1147552;-0.006148376,0.2396923;-0.1557417;-0.0616271,-0.1148844;0.3461861;0.01171473,-0.201262;0.08012253;-0.0004952736,-0.3088761;-0.1741279;-0.04714236,0.06559347;0.01007429;-0.04467668,0.09635925;-0.3650888;0.007343423,0.1060544;-0.7065775;0.08344498,0.1129141;-0.7551733;0.02199863,-0.07565067;-0.004866308;-0.02555964,-0.08841165;-0.3830446;0.009344868,-0.09609545;-0.7251871;0.08268992,-0.1091643;-0.7137413;-0.01470077,-0.007522189;0.3997524;0.009713879,11.39723
+0;0;0,0.005144534;0.1993925;0.01470216,0.01384393;0.4991028;0.02277162,0.1222901;0.3710836;-0.01144826,0.1952035;0.1013967;0.007330438,0.247793;-0.1710299;-0.03032688,-0.1015124;0.3614899;0.003330076,-0.1782228;0.09230125;-0.003949288,-0.2371522;-0.1787882;-0.04186789,0.06936842;0.003990604;-0.03964967,0.08649372;-0.3730077;0.004836693,0.08258507;-0.7166646;0.07105333,0.0773841;-0.7041007;-0.02727741,-0.07169143;0.003767859;-0.03530072,-0.1009514;-0.3734727;-0.0001800805,-0.1207072;-0.717535;0.06090002,-0.107635;-0.7639874;-0.002220113,0.0107523;0.3991506;0.02277984,0;0;0,-0.003722359;0.1997935;0.008287475,-0.009743981;0.4996746;0.006457177,0.1027803;0.3784155;-0.03245375,0.1932862;0.1147552;-0.006148376,0.2396923;-0.1557417;-0.0616271,-0.1148844;0.3461861;0.01171473,-0.201262;0.08012253;-0.0004952736,-0.3088761;-0.1741279;-0.04714236,0.06559347;0.01007429;-0.04467668,0.09635925;-0.3650888;0.007343423,0.1060544;-0.7065775;0.08344498,0.1129141;-0.7551733;0.02199863,-0.07565067;-0.004866308;-0.02555964,-0.08841165;-0.3830446;0.009344868,-0.09609545;-0.7251871;0.08268992,-0.1091643;-0.7137413;-0.01470077,-0.007522189;0.3997524;0.009713879,11.40863
+0;0;0,0.005144534;0.1993925;0.01470216,0.01384393;0.4991028;0.02277162,0.1222901;0.3710836;-0.01144826,0.1952035;0.1013967;0.007330438,0.247793;-0.1710299;-0.03032688,-0.1015124;0.3614899;0.003330076,-0.1782228;0.09230125;-0.003949288,-0.2371522;-0.1787882;-0.04186789,0.06936842;0.003990604;-0.03964967,0.08649372;-0.3730077;0.004836693,0.08258507;-0.7166646;0.07105333,0.0773841;-0.7041007;-0.02727741,-0.07169143;0.003767859;-0.03530072,-0.1009514;-0.3734727;-0.0001800805,-0.1207072;-0.717535;0.06090002,-0.107635;-0.7639874;-0.002220113,0.0107523;0.3991506;0.02277984,0;0;0,-0.003771594;0.1997896;0.008361306,-0.009803107;0.4996707;0.006602949,0.1026504;0.3783901;-0.03249101,0.1927061;0.1145831;-0.00611211,0.2389889;-0.1559833;-0.06135459,-0.1149677;0.3462217;0.01182863,-0.203568;0.08083093;0.0009790277,-0.3147596;-0.172076;-0.04456757,0.06560812;0.0100284;-0.04466548,0.09623125;-0.3651435;0.00737549,0.1060678;-0.706525;0.0839386,0.1130445;-0.7556363;0.02317073,-0.07563443;-0.004792674;-0.0256215,-0.08860886;-0.382958;0.009344716,-0.09619479;-0.7250562;0.08290592,-0.1093253;-0.7136061;-0.01447731,-0.007585128;0.3997477;0.009840702,11.43069
+0;0;0,0.005144534;0.1993925;0.01470216,0.01384393;0.4991028;0.02277162,0.1222901;0.3710836;-0.01144826,0.1952035;0.1013967;0.007330438,0.247793;-0.1710299;-0.03032688,-0.1015124;0.3614899;0.003330076,-0.1782228;0.09230125;-0.003949288,-0.2371522;-0.1787882;-0.04186789,0.06936842;0.003990604;-0.03964967,0.08649372;-0.3730077;0.004836693,0.08258507;-0.7166646;0.07105333,0.0773841;-0.7041007;-0.02727741,-0.07169143;0.003767859;-0.03530072,-0.1009514;-0.3734727;-0.0001800805,-0.1207072;-0.717535;0.06090002,-0.107635;-0.7639874;-0.002220113,0.0107523;0.3991506;0.02277984,0;0;0,-0.003771594;0.1997896;0.008361306,-0.009803107;0.4996707;0.006602949,0.1026504;0.3783901;-0.03249101,0.1927061;0.1145831;-0.00611211,0.2389889;-0.1559833;-0.06135459,-0.1149677;0.3462217;0.01182863,-0.203568;0.08083093;0.0009790277,-0.3147596;-0.172076;-0.04456757,0.06560812;0.0100284;-0.04466548,0.09623125;-0.3651435;0.00737549,0.1060678;-0.706525;0.0839386,0.1130445;-0.7556363;0.02317073,-0.07563443;-0.004792674;-0.0256215,-0.08860886;-0.382958;0.009344716,-0.09619479;-0.7250562;0.08290592,-0.1093253;-0.7136061;-0.01447731,-0.007585128;0.3997477;0.009840702,11.45319
+0;0;0,0.005169016;0.1993973;0.01462837,0.01390066;0.499109;0.02261803,0.1223286;0.3710108;-0.01154384,0.195769;0.1014773;0.007383013,0.2481785;-0.1709456;-0.03055128,-0.1009756;0.3601885;0.002959805,-0.1781041;0.09109944;-0.003542882,-0.2372049;-0.1800128;-0.04102957,0.06938973;0.004064116;-0.03960491,0.08532322;-0.3729433;0.005245514,0.08237398;-0.7166488;0.0712589,0.07719126;-0.7040758;-0.02707442,-0.07166905;0.003646373;-0.03535889,-0.1006978;-0.3735778;0.000126455,-0.1201676;-0.7176745;0.0611052,-0.1228747;-0.7051378;-0.03732094,0.01080001;0.3991571;0.02264926,0;0;0,-0.003796598;0.1997848;0.008463407,-0.009785388;0.4996672;0.006796183,0.1025591;0.3783615;-0.03246686,0.1916136;0.1141947;-0.006290127,0.2377813;-0.1565189;-0.06090414,-0.1154987;0.3472188;0.01167007,-0.2062411;0.0824753;0.002913031,-0.3218941;-0.1690146;-0.03924423,0.06558963;0.009949997;-0.04471015,0.09600364;-0.3652217;0.007454805,0.1059505;-0.7066215;0.08392201,0.1125725;-0.7551723;0.02239206,-0.07565252;-0.004700205;-0.02558524,-0.08877969;-0.3828652;0.009327548,-0.09653295;-0.7249403;0.0829787,-0.1095903;-0.7134778;-0.01441672,-0.007616729;0.3997423;0.01000828,11.4755
+0;0;0,0.005169016;0.1993973;0.01462837,0.01390066;0.499109;0.02261803,0.1223286;0.3710108;-0.01154384,0.195769;0.1014773;0.007383013,0.2481785;-0.1709456;-0.03055128,-0.1009756;0.3601885;0.002959805,-0.1781041;0.09109944;-0.003542882,-0.2372049;-0.1800128;-0.04102957,0.06938973;0.004064116;-0.03960491,0.08532322;-0.3729433;0.005245514,0.08237398;-0.7166488;0.0712589,0.07719126;-0.7040758;-0.02707442,-0.07166905;0.003646373;-0.03535889,-0.1006978;-0.3735778;0.000126455,-0.1201676;-0.7176745;0.0611052,-0.1228747;-0.7051378;-0.03732094,0.01080001;0.3991571;0.02264926,0;0;0,-0.003756673;0.1997855;0.008463424,-0.009590166;0.4996713;0.0068835,0.10261;0.37785;-0.032267,0.192749;0.1139345;-0.007295497,0.2373507;-0.1569076;-0.0625695,-0.1158341;0.34812;0.01161701,-0.208018;0.08382031;0.004703182,-0.3262776;-0.166549;-0.03688862,0.06562105;0.009879615;-0.04467964,0.09587234;-0.3652939;0.007567119,0.1058041;-0.7066501;0.08423071,0.1125216;-0.7558426;0.02353939,-0.07562362;-0.00458197;-0.02569191,-0.08898941;-0.382701;0.009625461,-0.09664411;-0.7247828;0.08325583,-0.1095057;-0.7133112;-0.01416736,-0.007516909;0.3997437;0.01007372,11.49774
+0;0;0,0.005169016;0.1993973;0.01462837,0.01390066;0.499109;0.02261803,0.1223286;0.3710108;-0.01154384,0.195769;0.1014773;0.007383013,0.2481785;-0.1709456;-0.03055128,-0.1009756;0.3601885;0.002959805,-0.1781041;0.09109944;-0.003542882,-0.2372049;-0.1800128;-0.04102957,0.06938973;0.004064116;-0.03960491,0.08532322;-0.3729433;0.005245514,0.08237398;-0.7166488;0.0712589,0.07719126;-0.7040758;-0.02707442,-0.07166905;0.003646373;-0.03535889,-0.1006978;-0.3735778;0.000126455,-0.1201676;-0.7176745;0.0611052,-0.1228747;-0.7051378;-0.03732094,0.01080001;0.3991571;0.02264926,0;0;0,-0.003756673;0.1997855;0.008463424,-0.009590166;0.4996713;0.0068835,0.10261;0.37785;-0.032267,0.192749;0.1139345;-0.007295497,0.2373507;-0.1569076;-0.0625695,-0.1158341;0.34812;0.01161701,-0.208018;0.08382031;0.004703182,-0.3262776;-0.166549;-0.03688862,0.06562105;0.009879615;-0.04467964,0.09587234;-0.3652939;0.007567119,0.1058041;-0.7066501;0.08423071,0.1125216;-0.7558426;0.02353939,-0.07562362;-0.00458197;-0.02569191,-0.08898941;-0.382701;0.009625461,-0.09664411;-0.7247828;0.08325583,-0.1095057;-0.7133112;-0.01416736,-0.007516909;0.3997437;0.01007372,11.52022
+0;0;0,0.005245738;0.199401;0.01455144,0.01408595;0.4991112;0.02248365,0.1223687;0.3705353;-0.01162996,0.195849;0.1010264;0.007490462,0.2483338;-0.1713817;-0.03044563,-0.1008037;0.3601311;0.002843851,-0.1775854;0.090938;-0.003453313,-0.2368935;-0.1802197;-0.04027816,0.0693889;0.004081949;-0.03960451,0.08551306;-0.3729481;0.004987013,0.0822853;-0.7165872;0.07133225,0.0771079;-0.704018;-0.02700067,-0.07168978;0.003628506;-0.03531868,-0.1011519;-0.3735378;0.0004249811,-0.1202876;-0.7176489;0.06142776,-0.1088975;-0.7653376;-0.0004975535,0.01095147;0.3991603;0.02252869,0;0;0,-0.003612678;0.1997793;0.008671784,-0.009249443;0.4996698;0.007259983,0.1027865;0.3779409;-0.03212281,0.1932599;0.1140373;-0.008259807,0.2366607;-0.1570424;-0.06332502,-0.1155714;0.3480428;0.01220651,-0.2100296;0.08451557;0.006635721,-0.3324756;-0.1642837;-0.03217023,0.06562968;0.009813296;-0.04468159,0.09596182;-0.3653241;0.007777177,0.1059821;-0.706634;0.08463486,0.1125107;-0.7561464;0.02434248,-0.07561719;-0.00451023;-0.0257235,-0.08876803;-0.3826172;0.00980329,-0.09637953;-0.7246544;0.08364477,-0.1093613;-0.7131641;-0.01376604,-0.007292578;0.399738;0.01039171,11.54258
+0;0;0,0.005245738;0.199401;0.01455144,0.01408595;0.4991112;0.02248365,0.1223687;0.3705353;-0.01162996,0.195849;0.1010264;0.007490462,0.2483338;-0.1713817;-0.03044563,-0.1008037;0.3601311;0.002843851,-0.1775854;0.090938;-0.003453313,-0.2368935;-0.1802197;-0.04027816,0.0693889;0.004081949;-0.03960451,0.08551306;-0.3729481;0.004987013,0.0822853;-0.7165872;0.07133225,0.0771079;-0.704018;-0.02700067,-0.07168978;0.003628506;-0.03531868,-0.1011519;-0.3735378;0.0004249811,-0.1202876;-0.7176489;0.06142776,-0.1088975;-0.7653376;-0.0004975535,0.01095147;0.3991603;0.02252869,0;0;0,-0.003612678;0.1997793;0.008671784,-0.009249443;0.4996698;0.007259983,0.1027865;0.3779409;-0.03212281,0.1932599;0.1140373;-0.008259807,0.2366607;-0.1570424;-0.06332502,-0.1155714;0.3480428;0.01220651,-0.2100296;0.08451557;0.006635721,-0.3324756;-0.1642837;-0.03217023,0.06562968;0.009813296;-0.04468159,0.09596182;-0.3653241;0.007777177,0.1059821;-0.706634;0.08463486,0.1125107;-0.7561464;0.02434248,-0.07561719;-0.00451023;-0.0257235,-0.08876803;-0.3826172;0.00980329,-0.09637953;-0.7246544;0.08364477,-0.1093613;-0.7131641;-0.01376604,-0.007292578;0.399738;0.01039171,11.55383
+0;0;0,0.005245738;0.199401;0.01455144,0.01408595;0.4991112;0.02248365,0.1223687;0.3705353;-0.01162996,0.195849;0.1010264;0.007490462,0.2483338;-0.1713817;-0.03044563,-0.1008037;0.3601311;0.002843851,-0.1775854;0.090938;-0.003453313,-0.2368935;-0.1802197;-0.04027816,0.0693889;0.004081949;-0.03960451,0.08551306;-0.3729481;0.004987013,0.0822853;-0.7165872;0.07133225,0.0771079;-0.704018;-0.02700067,-0.07168978;0.003628506;-0.03531868,-0.1011519;-0.3735378;0.0004249811,-0.1202876;-0.7176489;0.06142776,-0.1088975;-0.7653376;-0.0004975535,0.01095147;0.3991603;0.02252869,0;0;0,-0.003530282;0.1997738;0.008830547,-0.00903348;0.4996668;0.007612808,0.1029586;0.3780083;-0.03178835,0.1934513;0.1140086;-0.009089651,0.2345348;-0.1571274;-0.0656355,-0.1154632;0.348125;0.012603,-0.2110066;0.08497283;0.00786845,-0.3366992;-0.162291;-0.03036711,0.06554778;0.009684518;-0.04482966,0.09581965;-0.3653809;0.0081755,0.1059314;-0.7066792;0.08507299,0.1125666;-0.7563653;0.02502218,-0.07566712;-0.004415837;-0.02559268,-0.08904666;-0.3824742;0.01036423,-0.09640843;-0.724462;0.08445939,-0.1094004;-0.712956;-0.01295304,-0.007143967;0.3997324;0.01070272,11.57603
+0;0;0,0.005413195;0.1994;0.01450338,0.01484695;0.4990932;0.02240123,0.1230363;0.3703492;-0.01110167,0.1951095;0.1004362;0.007671451,0.247027;-0.172051;-0.03047716,-0.100435;0.3604559;0.003014024,-0.1770574;0.0912182;-0.003317286,-0.2362228;-0.1800636;-0.03945071,0.06935853;0.004125907;-0.03965315,0.0856497;-0.3729272;0.004681565,0.08229236;-0.7165152;0.0712848,0.07721868;-0.7039484;-0.02705309,-0.07170439;0.003613121;-0.03529061,-0.1010505;-0.3735662;0.0004109479,-0.1201384;-0.7177414;0.06106628,-0.1084713;-0.7651681;-0.001134902,0.01148013;0.39915;0.02245019,0;0;0,-0.003401562;0.1997738;0.008880205,-0.008477204;0.4996747;0.00777358,0.1033394;0.3779935;-0.03156915,0.1937985;0.1139335;-0.00944588,0.2334198;-0.157187;-0.06709877,-0.1155998;0.3491622;0.01285598,-0.2123765;0.08643898;0.009571645,-0.3409415;-0.1594048;-0.02826793,0.0655368;0.009575105;-0.04486919,0.09544401;-0.3655011;0.008266296,0.1058083;-0.7067279;0.08544721,0.1127701;-0.7567714;0.02591098,-0.0756825;-0.004281528;-0.02557005,-0.0890288;-0.3824013;0.00974725,-0.09663416;-0.7242596;0.08441373,-0.1095748;-0.7127411;-0.01300791,-0.006796199;0.3997355;0.01082701,11.59828
+0;0;0,0.005413195;0.1994;0.01450338,0.01484695;0.4990932;0.02240123,0.1230363;0.3703492;-0.01110167,0.1951095;0.1004362;0.007671451,0.247027;-0.172051;-0.03047716,-0.100435;0.3604559;0.003014024,-0.1770574;0.0912182;-0.003317286,-0.2362228;-0.1800636;-0.03945071,0.06935853;0.004125907;-0.03965315,0.0856497;-0.3729272;0.004681565,0.08229236;-0.7165152;0.0712848,0.07721868;-0.7039484;-0.02705309,-0.07170439;0.003613121;-0.03529061,-0.1010505;-0.3735662;0.0004109479,-0.1201384;-0.7177414;0.06106628,-0.1084713;-0.7651681;-0.001134902,0.01148013;0.39915;0.02245019,0;0;0,-0.003401562;0.1997738;0.008880205,-0.008477204;0.4996747;0.00777358,0.1033394;0.3779935;-0.03156915,0.1937985;0.1139335;-0.00944588,0.2334198;-0.157187;-0.06709877,-0.1155998;0.3491622;0.01285598,-0.2123765;0.08643898;0.009571645,-0.3409415;-0.1594048;-0.02826793,0.0655368;0.009575105;-0.04486919,0.09544401;-0.3655011;0.008266296,0.1058083;-0.7067279;0.08544721,0.1127701;-0.7567714;0.02591098,-0.0756825;-0.004281528;-0.02557005,-0.0890288;-0.3824013;0.00974725,-0.09663416;-0.7242596;0.08441373,-0.1095748;-0.7127411;-0.01300791,-0.006796199;0.3997355;0.01082701,11.60952
+0;0;0,0.005413195;0.1994;0.01450338,0.01484695;0.4990932;0.02240123,0.1230363;0.3703492;-0.01110167,0.1951095;0.1004362;0.007671451,0.247027;-0.172051;-0.03047716,-0.100435;0.3604559;0.003014024,-0.1770574;0.0912182;-0.003317286,-0.2362228;-0.1800636;-0.03945071,0.06935853;0.004125907;-0.03965315,0.0856497;-0.3729272;0.004681565,0.08229236;-0.7165152;0.0712848,0.07721868;-0.7039484;-0.02705309,-0.07170439;0.003613121;-0.03529061,-0.1010505;-0.3735662;0.0004109479,-0.1201384;-0.7177414;0.06106628,-0.1084713;-0.7651681;-0.001134902,0.01148013;0.39915;0.02245019,0;0;0,-0.003241727;0.1997698;0.009029022,-0.007898482;0.4996783;0.008146951,0.103587;0.377778;-0.03151175,0.1924789;0.113205;-0.009166101,0.2312756;-0.1579405;-0.06726048,-0.115242;0.349225;0.01341985,-0.2132296;0.08693922;0.01127011,-0.3444083;-0.1575717;-0.0262342,0.06550016;0.009390372;-0.04496165,0.09507007;-0.3656825;0.008386232,0.1057361;-0.7067707;0.08613627,0.1123946;-0.7567742;0.0265116,-0.07571098;-0.004093763;-0.02551643,-0.08939255;-0.3821644;0.01019643,-0.09667781;-0.7239842;0.08507021,-0.1098112;-0.7124418;-0.01233017,-0.006413712;0.3997337;0.01112386,11.63185
+0;0;0,0.005503892;0.1993986;0.01448817,0.01510035;0.4990859;0.02242592,0.1232198;0.3703824;-0.01118139,0.1953594;0.1005013;0.007794097,0.2471172;-0.1719855;-0.0305738,-0.1003353;0.3606649;0.00316585,-0.1766885;0.09134966;-0.003118093,-0.2358608;-0.1800435;-0.03839357,0.06931985;0.004131644;-0.03972011,0.08514671;-0.3729278;0.004728749,0.08201288;-0.7164754;0.07155087,0.07687099;-0.7039073;-0.02678371,-0.07173765;0.003608918;-0.03522337,-0.1011263;-0.3736036;8.933991E-05,-0.1200947;-0.7177182;0.06112536,-0.1080197;-0.7641127;-0.002263032,0.01167918;0.3991444;0.02245551,0;0;0,-0.003241727;0.1997698;0.009029022,-0.007898482;0.4996783;0.008146951,0.103587;0.377778;-0.03151175,0.1924789;0.113205;-0.009166101,0.2312756;-0.1579405;-0.06726048,-0.115242;0.349225;0.01341985,-0.2132296;0.08693922;0.01127011,-0.3444083;-0.1575717;-0.0262342,0.06550016;0.009390372;-0.04496165,0.09507007;-0.3656825;0.008386232,0.1057361;-0.7067707;0.08613627,0.1123946;-0.7567742;0.0265116,-0.07571098;-0.004093763;-0.02551643,-0.08939255;-0.3821644;0.01019643,-0.09667781;-0.7239842;0.08507021,-0.1098112;-0.7124418;-0.01233017,-0.006413712;0.3997337;0.01112386,11.65422
+0;0;0,0.005503892;0.1993986;0.01448817,0.01510035;0.4990859;0.02242592,0.1232198;0.3703824;-0.01118139,0.1953594;0.1005013;0.007794097,0.2471172;-0.1719855;-0.0305738,-0.1003353;0.3606649;0.00316585,-0.1766885;0.09134966;-0.003118093,-0.2358608;-0.1800435;-0.03839357,0.06931985;0.004131644;-0.03972011,0.08514671;-0.3729278;0.004728749,0.08201288;-0.7164754;0.07155087,0.07687099;-0.7039073;-0.02678371,-0.07173765;0.003608918;-0.03522337,-0.1011263;-0.3736036;8.933991E-05,-0.1200947;-0.7177182;0.06112536,-0.1080197;-0.7641127;-0.002263032,0.01167918;0.3991444;0.02245551,0;0;0,-0.003150103;0.1997639;0.009190393,-0.007659197;0.4996749;0.008625194,0.1036508;0.3775978;-0.03133634,0.1911755;0.1125252;-0.009520516,0.2298246;-0.1588408;-0.06667602,-0.1149765;0.3490494;0.01412402,-0.2134731;0.08695254;0.01221702,-0.3471979;-0.1561986;-0.02513523,0.06546659;0.009216955;-0.04504634,0.0946948;-0.3658282;0.008682713,0.1052581;-0.7069503;0.08629797,0.1116037;-0.7558965;0.02524685,-0.07574137;-0.003906359;-0.02545553,-0.08952981;-0.3818989;0.01103426,-0.09682912;-0.7236816;0.08607667,-0.1101633;-0.7121273;-0.01129868,-0.006233823;0.3997267;0.01150862,11.67675
+0;0;0,0.005503892;0.1993986;0.01448817,0.01510035;0.4990859;0.02242592,0.1232198;0.3703824;-0.01118139,0.1953594;0.1005013;0.007794097,0.2471172;-0.1719855;-0.0305738,-0.1003353;0.3606649;0.00316585,-0.1766885;0.09134966;-0.003118093,-0.2358608;-0.1800435;-0.03839357,0.06931985;0.004131644;-0.03972011,0.08514671;-0.3729278;0.004728749,0.08201288;-0.7164754;0.07155087,0.07687099;-0.7039073;-0.02678371,-0.07173765;0.003608918;-0.03522337,-0.1011263;-0.3736036;8.933991E-05,-0.1200947;-0.7177182;0.06112536,-0.1080197;-0.7641127;-0.002263032,0.01167918;0.3991444;0.02245551,0;0;0,-0.002921294;0.1997566;0.009422182,-0.007239252;0.4996697;0.009149431,0.1040102;0.3772413;-0.03072413,0.1913385;0.1120068;-0.0101233,0.2294875;-0.1594701;-0.06708813,-0.11481;0.3494594;0.01421009,-0.2143039;0.08773291;0.01376552,-0.3512909;-0.1537141;-0.02281136,0.06546225;0.009001137;-0.04509626,0.09480563;-0.365974;0.009057179,0.1054238;-0.706985;0.08715154,0.1117931;-0.7557302;0.02584377,-0.07577185;-0.003666683;-0.02540043,-0.08910898;-0.3816054;0.01180766,-0.09656955;-0.7234092;0.08673778,-0.1097459;-0.7118304;-0.01066367,-0.005865281;0.3997188;0.01196248,11.6988
+0;0;0,0.00559023;0.1993931;0.01453043,0.01526007;0.4990747;0.02260155,0.123304;0.3702639;-0.01114934,0.1956283;0.1004232;0.007696094,0.2473041;-0.1720927;-0.03057562,-0.09983296;0.3597245;0.003074626,-0.1769475;0.09061351;-0.002638645,-0.2363737;-0.1808652;-0.03681203,0.06931617;0.004172453;-0.03972228,0.08531898;-0.3729348;0.004255392,0.08178876;-0.7163613;0.07167786,0.07664754;-0.7037884;-0.0266576,-0.07175352;0.003568308;-0.03519515,-0.1008678;-0.3736965;-0.0002150126,-0.120486;-0.7177131;0.06116669,-0.1081025;-0.7632565;-0.003174905,0.01181988;0.3991339;0.02258216,0;0;0,-0.002921294;0.1997566;0.009422182,-0.007239252;0.4996697;0.009149431,0.1040102;0.3772413;-0.03072413,0.1913385;0.1120068;-0.0101233,0.2294875;-0.1594701;-0.06708813,-0.11481;0.3494594;0.01421009,-0.2143039;0.08773291;0.01376552,-0.3512909;-0.1537141;-0.02281136,0.06546225;0.009001137;-0.04509626,0.09480563;-0.365974;0.009057179,0.1054238;-0.706985;0.08715154,0.1117931;-0.7557302;0.02584377,-0.07577185;-0.003666683;-0.02540043,-0.08910898;-0.3816054;0.01180766,-0.09656955;-0.7234092;0.08673778,-0.1097459;-0.7118304;-0.01066367,-0.005865281;0.3997188;0.01196248,11.71007
+0;0;0,0.00559023;0.1993931;0.01453043,0.01526007;0.4990747;0.02260155,0.123304;0.3702639;-0.01114934,0.1956283;0.1004232;0.007696094,0.2473041;-0.1720927;-0.03057562,-0.09983296;0.3597245;0.003074626,-0.1769475;0.09061351;-0.002638645,-0.2363737;-0.1808652;-0.03681203,0.06931617;0.004172453;-0.03972228,0.08531898;-0.3729348;0.004255392,0.08178876;-0.7163613;0.07167786,0.07664754;-0.7037884;-0.0266576,-0.07175352;0.003568308;-0.03519515,-0.1008678;-0.3736965;-0.0002150126,-0.120486;-0.7177131;0.06116669,-0.1081025;-0.7632565;-0.003174905,0.01181988;0.3991339;0.02258216,0;0;0,-0.002921294;0.1997566;0.009422182,-0.007239252;0.4996697;0.009149431,0.1040102;0.3772413;-0.03072413,0.1913385;0.1120068;-0.0101233,0.2294875;-0.1594701;-0.06708813,-0.11481;0.3494594;0.01421009,-0.2143039;0.08773291;0.01376552,-0.3512909;-0.1537141;-0.02281136,0.06546225;0.009001137;-0.04509626,0.09480563;-0.365974;0.009057179,0.1054238;-0.706985;0.08715154,0.1117931;-0.7557302;0.02584377,-0.07577185;-0.003666683;-0.02540043,-0.08910898;-0.3816054;0.01180766,-0.09656955;-0.7234092;0.08673778,-0.1097459;-0.7118304;-0.01066367,-0.005865281;0.3997188;0.01196248,11.72121
+0;0;0,0.00559023;0.1993931;0.01453043,0.01526007;0.4990747;0.02260155,0.123304;0.3702639;-0.01114934,0.1956283;0.1004232;0.007696094,0.2473041;-0.1720927;-0.03057562,-0.09983296;0.3597245;0.003074626,-0.1769475;0.09061351;-0.002638645,-0.2363737;-0.1808652;-0.03681203,0.06931617;0.004172453;-0.03972228,0.08531898;-0.3729348;0.004255392,0.08178876;-0.7163613;0.07167786,0.07664754;-0.7037884;-0.0266576,-0.07175352;0.003568308;-0.03519515,-0.1008678;-0.3736965;-0.0002150126,-0.120486;-0.7177131;0.06116669,-0.1081025;-0.7632565;-0.003174905,0.01181988;0.3991339;0.02258216,0;0;0,-0.002799185;0.1997427;0.009747894,-0.006964691;0.4996574;0.009766644,0.1040894;0.3769922;-0.03036582,0.1913228;0.1117126;-0.009942658,0.2287211;-0.1597356;-0.06753774,-0.1145999;0.3494284;0.01499398,-0.21435;0.08779961;0.01445295,-0.3527536;-0.1528464;-0.02207045,0.06542268;0.008905178;-0.04517267,0.09481542;-0.3660086;0.009377398,0.105211;-0.7069573;0.08777354,0.1114526;-0.7552755;0.02590838,-0.0758027;-0.003561866;-0.02532319,-0.08899993;-0.3815334;0.01159971,-0.09656195;-0.7232156;0.08707214,-0.1098709;-0.7116129;-0.01031581,-0.005667644;0.3997032;0.01250139,11.74354
+0;0;0,0.005789655;0.1993814;0.01461256,0.01588665;0.4990438;0.02289022,0.1236443;0.3699031;-0.01107994,0.1960242;0.1000918;0.007973887,0.2476004;-0.1724368;-0.03034095,-0.0990496;0.3588486;0.003218485,-0.1769026;0.0899379;-0.00187704,-0.2370361;-0.1815217;-0.03494797,0.06932566;0.004118985;-0.03971129,0.08549289;-0.3729451;0.004575316,0.08149871;-0.7163479;0.07209212,0.07634369;-0.7037683;-0.02624384,-0.07179717;0.003626023;-0.03510013,-0.1010581;-0.3736135;3.027543E-05,-0.1208678;-0.7175764;0.0616509,-0.1080493;-0.7628049;-0.002973877,0.01228868;0.3991086;0.02278679,0;0;0,-0.002799185;0.1997427;0.009747894,-0.006964691;0.4996574;0.009766644,0.1040894;0.3769922;-0.03036582,0.1913228;0.1117126;-0.009942658,0.2287211;-0.1597356;-0.06753774,-0.1145999;0.3494284;0.01499398,-0.21435;0.08779961;0.01445295,-0.3527536;-0.1528464;-0.02207045,0.06542268;0.008905178;-0.04517267,0.09481542;-0.3660086;0.009377398,0.105211;-0.7069573;0.08777354,0.1114526;-0.7552755;0.02590838,-0.0758027;-0.003561866;-0.02532319,-0.08899993;-0.3815334;0.01159971,-0.09656195;-0.7232156;0.08707214,-0.1098709;-0.7116129;-0.01031581,-0.005667644;0.3997032;0.01250139,11.75478
+0;0;0,0.005789655;0.1993814;0.01461256,0.01588665;0.4990438;0.02289022,0.1236443;0.3699031;-0.01107994,0.1960242;0.1000918;0.007973887,0.2476004;-0.1724368;-0.03034095,-0.0990496;0.3588486;0.003218485,-0.1769026;0.0899379;-0.00187704,-0.2370361;-0.1815217;-0.03494797,0.06932566;0.004118985;-0.03971129,0.08549289;-0.3729451;0.004575316,0.08149871;-0.7163479;0.07209212,0.07634369;-0.7037683;-0.02624384,-0.07179717;0.003626023;-0.03510013,-0.1010581;-0.3736135;3.027543E-05,-0.1208678;-0.7175764;0.0616509,-0.1080493;-0.7628049;-0.002973877,0.01228868;0.3991086;0.02278679,0;0;0,-0.002648127;0.1997376;0.00989402,-0.006520809;0.4996559;0.01016191,0.1043589;0.3769022;-0.03015684,0.1905303;0.1113145;-0.009236241,0.2270349;-0.1599299;-0.06834532,-0.1143813;0.3496742;0.01554288,-0.2148112;0.08830503;0.01549348,-0.3556534;-0.1508406;-0.02155839,0.06540347;0.008831096;-0.04521501,0.09465264;-0.3660282;0.009784855,0.1049459;-0.7068323;0.08882003,0.1117394;-0.7559648;0.02805892,-0.07582615;-0.003480159;-0.02526427,-0.08903228;-0.3815026;0.01113112,-0.09659605;-0.7230244;0.08732626,-0.08728506;-0.7701834;0.02439944,-0.005339274;0.3996981;0.01281583,11.77711
+0;0;0,0.005789655;0.1993814;0.01461256,0.01588665;0.4990438;0.02289022,0.1236443;0.3699031;-0.01107994,0.1960242;0.1000918;0.007973887,0.2476004;-0.1724368;-0.03034095,-0.0990496;0.3588486;0.003218485,-0.1769026;0.0899379;-0.00187704,-0.2370361;-0.1815217;-0.03494797,0.06932566;0.004118985;-0.03971129,0.08549289;-0.3729451;0.004575316,0.08149871;-0.7163479;0.07209212,0.07634369;-0.7037683;-0.02624384,-0.07179717;0.003626023;-0.03510013,-0.1010581;-0.3736135;3.027543E-05,-0.1208678;-0.7175764;0.0616509,-0.1080493;-0.7628049;-0.002973877,0.01228868;0.3991086;0.02278679,0;0;0,-0.002321382;0.1997537;0.009647608,-0.005279066;0.4996829;0.009599785,0.1052255;0.3764763;-0.03044961,0.1907869;0.1107307;-0.00903655,0.2271379;-0.1605281;-0.06817435,-0.1137578;0.3502836;0.01488491,-0.2160813;0.08965546;0.01658385,-0.3591077;-0.1483176;-0.01964106,0.06542318;0.008707259;-0.04521053,0.09444311;-0.3661408;0.009987377,0.1049699;-0.7068806;0.08926912,0.111945;-0.7562022;0.02877593,-0.07582955;-0.003315061;-0.02527626,-0.08965684;-0.3812312;0.01198259,-0.09660594;-0.722735;0.08831601,-0.1098947;-0.7111254;-0.009076022,-0.004445441;0.3997242;0.01235008,11.79923
+0;0;0,0.005740667;0.1993845;0.01458934,0.01569712;0.4990517;0.02286769,0.1235696;0.370108;-0.01106731,0.1957743;0.1002491;0.007975552,0.247162;-0.1723243;-0.03027398,-0.09927255;0.3590076;0.003366634,-0.1772002;0.0901137;-0.001466987,-0.2400968;-0.1809091;-0.03294127,0.06932539;0.004121313;-0.03971153,0.08548269;-0.3729239;0.004739646,0.0814272;-0.7161973;0.07290775,0.07620774;-0.703649;-0.02541925,-0.07180292;0.003620038;-0.03508897,-0.1012088;-0.3736371;-0.000270471,-0.1213234;-0.7175379;0.06159769,-0.1086197;-0.7628447;-0.002958465,0.01215095;0.3991146;0.02276327,0;0;0,-0.002321382;0.1997537;0.009647608,-0.005279066;0.4996829;0.009599785,0.1052255;0.3764763;-0.03044961,0.1907869;0.1107307;-0.00903655,0.2271379;-0.1605281;-0.06817435,-0.1137578;0.3502836;0.01488491,-0.2160813;0.08965546;0.01658385,-0.3591077;-0.1483176;-0.01964106,0.06542318;0.008707259;-0.04521053,0.09444311;-0.3661408;0.009987377,0.1049699;-0.7068806;0.08926912,0.111945;-0.7562022;0.02877593,-0.07582955;-0.003315061;-0.02527626,-0.08965684;-0.3812312;0.01198259,-0.09660594;-0.722735;0.08831601,-0.1098947;-0.7111254;-0.009076022,-0.004445441;0.3997242;0.01235008,11.81057
+0;0;0,0.005740667;0.1993845;0.01458934,0.01569712;0.4990517;0.02286769,0.1235696;0.370108;-0.01106731,0.1957743;0.1002491;0.007975552,0.247162;-0.1723243;-0.03027398,-0.09927255;0.3590076;0.003366634,-0.1772002;0.0901137;-0.001466987,-0.2400968;-0.1809091;-0.03294127,0.06932539;0.004121313;-0.03971153,0.08548269;-0.3729239;0.004739646,0.0814272;-0.7161973;0.07290775,0.07620774;-0.703649;-0.02541925,-0.07180292;0.003620038;-0.03508897,-0.1012088;-0.3736371;-0.000270471,-0.1213234;-0.7175379;0.06159769,-0.1086197;-0.7628447;-0.002958465,0.01215095;0.3991146;0.02276327,0;0;0,-0.002321382;0.1997537;0.009647608,-0.005279066;0.4996829;0.009599785,0.1052255;0.3764763;-0.03044961,0.1907869;0.1107307;-0.00903655,0.2271379;-0.1605281;-0.06817435,-0.1137578;0.3502836;0.01488491,-0.2160813;0.08965546;0.01658385,-0.3591077;-0.1483176;-0.01964106,0.06542318;0.008707259;-0.04521053,0.09444311;-0.3661408;0.009987377,0.1049699;-0.7068806;0.08926912,0.111945;-0.7562022;0.02877593,-0.07582955;-0.003315061;-0.02527626,-0.08965684;-0.3812312;0.01198259,-0.09660594;-0.722735;0.08831601,-0.1098947;-0.7111254;-0.009076022,-0.004445441;0.3997242;0.01235008,11.82223
+0;0;0,0.005740667;0.1993845;0.01458934,0.01569712;0.4990517;0.02286769,0.1235696;0.370108;-0.01106731,0.1957743;0.1002491;0.007975552,0.247162;-0.1723243;-0.03027398,-0.09927255;0.3590076;0.003366634,-0.1772002;0.0901137;-0.001466987,-0.2400968;-0.1809091;-0.03294127,0.06932539;0.004121313;-0.03971153,0.08548269;-0.3729239;0.004739646,0.0814272;-0.7161973;0.07290775,0.07620774;-0.703649;-0.02541925,-0.07180292;0.003620038;-0.03508897,-0.1012088;-0.3736371;-0.000270471,-0.1213234;-0.7175379;0.06159769,-0.1086197;-0.7628447;-0.002958465,0.01215095;0.3991146;0.02276327,0;0;0,-0.002290558;0.1997535;0.009659708,-0.005209693;0.4996832;0.00977787,0.1053229;0.3762985;-0.03014906,0.1913205;0.1106534;-0.009241702,0.2272743;-0.1605362;-0.06893677,-0.1137476;0.3504105;0.01519494,-0.2168737;0.09010154;0.01726033,-0.3644141;-0.1452085;-0.01825029,0.06548323;0.008713103;-0.04512236,0.0943962;-0.3661698;0.009894226,0.1051046;-0.7068272;0.08950509,0.1123144;-0.7560743;0.02894182,-0.0757913;-0.003298969;-0.02539283,-0.08947999;-0.3811713;0.01235857,-0.09637273;-0.7226604;0.08876301,-0.08781335;-0.7687756;0.02447291,-0.004381897;0.3997228;0.01246742,11.84401
+0;0;0,0.005826716;0.1993908;0.01446882,0.01582755;0.4990609;0.02258558,0.1237725;0.370191;-0.01110575,0.1957797;0.1002834;0.007995404,0.2470436;-0.1723422;-0.03004827,-0.09913809;0.3587191;0.00371892,-0.1773146;0.08989894;-0.001198656,-0.2420142;-0.1809278;-0.03064056,0.06932246;0.004119904;-0.03971677,0.08522949;-0.3729129;0.004928425,0.08114401;-0.7162188;0.0729312,0.07581108;-0.7036708;-0.02538966,-0.07180446;0.00362685;-0.03508513,-0.1009045;-0.3737609;-0.001444925,-0.1216612;-0.7174503;0.06137859,-0.1089334;-0.7627072;-0.003231037,0.01227733;0.399124;0.02253502,0;0;0,-0.002126009;0.1997541;0.009683677,-0.004726977;0.499687;0.009880744,0.1057009;0.376227;-0.03000773,0.1917286;0.1105638;-0.009457106,0.2276678;-0.1606449;-0.06907425,-0.1134062;0.350474;0.01538,-0.2190327;0.09117797;0.01831282,-0.3681242;-0.1433579;-0.01581394,0.06537323;0.008625722;-0.04529832,0.09429748;-0.3661937;0.01014342,0.1051484;-0.7067859;0.09001316,0.1121685;-0.7559952;0.02937806,-0.07586022;-0.003250764;-0.02519246,-0.08950692;-0.3812333;0.01145444,-0.09636113;-0.7225913;0.08844601,-0.1096298;-0.7109693;-0.008951068,-0.004015701;0.3997248;0.01253765,11.86632
+0;0;0,0.005826716;0.1993908;0.01446882,0.01582755;0.4990609;0.02258558,0.1237725;0.370191;-0.01110575,0.1957797;0.1002834;0.007995404,0.2470436;-0.1723422;-0.03004827,-0.09913809;0.3587191;0.00371892,-0.1773146;0.08989894;-0.001198656,-0.2420142;-0.1809278;-0.03064056,0.06932246;0.004119904;-0.03971677,0.08522949;-0.3729129;0.004928425,0.08114401;-0.7162188;0.0729312,0.07581108;-0.7036708;-0.02538966,-0.07180446;0.00362685;-0.03508513,-0.1009045;-0.3737609;-0.001444925,-0.1216612;-0.7174503;0.06137859,-0.1089334;-0.7627072;-0.003231037,0.01227733;0.399124;0.02253502,0;0;0,-0.002126009;0.1997541;0.009683677,-0.004726977;0.499687;0.009880744,0.1057009;0.376227;-0.03000773,0.1917286;0.1105638;-0.009457106,0.2276678;-0.1606449;-0.06907425,-0.1134062;0.350474;0.01538,-0.2190327;0.09117797;0.01831282,-0.3681242;-0.1433579;-0.01581394,0.06537323;0.008625722;-0.04529832,0.09429748;-0.3661937;0.01014342,0.1051484;-0.7067859;0.09001316,0.1121685;-0.7559952;0.02937806,-0.07586022;-0.003250764;-0.02519246,-0.08950692;-0.3812333;0.01145444,-0.09636113;-0.7225913;0.08844601,-0.1096298;-0.7109693;-0.008951068,-0.004015701;0.3997248;0.01253765,11.87759
+0;0;0,0.005826716;0.1993908;0.01446882,0.01582755;0.4990609;0.02258558,0.1237725;0.370191;-0.01110575,0.1957797;0.1002834;0.007995404,0.2470436;-0.1723422;-0.03004827,-0.09913809;0.3587191;0.00371892,-0.1773146;0.08989894;-0.001198656,-0.2420142;-0.1809278;-0.03064056,0.06932246;0.004119904;-0.03971677,0.08522949;-0.3729129;0.004928425,0.08114401;-0.7162188;0.0729312,0.07581108;-0.7036708;-0.02538966,-0.07180446;0.00362685;-0.03508513,-0.1009045;-0.3737609;-0.001444925,-0.1216612;-0.7174503;0.06137859,-0.1089334;-0.7627072;-0.003231037,0.01227733;0.399124;0.02253502,0;0;0,-0.002126009;0.1997541;0.009683677,-0.004726977;0.499687;0.009880744,0.1057009;0.376227;-0.03000773,0.1917286;0.1105638;-0.009457106,0.2276678;-0.1606449;-0.06907425,-0.1134062;0.350474;0.01538,-0.2190327;0.09117797;0.01831282,-0.3681242;-0.1433579;-0.01581394,0.06537323;0.008625722;-0.04529832,0.09429748;-0.3661937;0.01014342,0.1051484;-0.7067859;0.09001316,0.1121685;-0.7559952;0.02937806,-0.07586022;-0.003250764;-0.02519246,-0.08950692;-0.3812333;0.01145444,-0.09636113;-0.7225913;0.08844601,-0.1096298;-0.7109693;-0.008951068,-0.004015701;0.3997248;0.01253765,11.88885
+0;0;0,0.005979739;0.1993775;0.01458971,0.01622554;0.4990316;0.02300588,0.123993;0.3701131;-0.01107558,0.1956414;0.1000812;0.007613467,0.2469288;-0.1726588;-0.02956804,-0.09889942;0.3588185;0.004227936,-0.177612;0.09015542;-0.000720263,-0.2443325;-0.1804042;-0.02803069,0.06932022;0.004148334;-0.03971772,0.0848793;-0.3729223;0.004730765,0.08080384;-0.7162606;0.07257013,0.07536627;-0.7036892;-0.02574915,-0.07181059;0.003598086;-0.03507553,-0.1011492;-0.3738321;-0.002125971,-0.1223646;-0.7173955;0.06123107,-0.1095318;-0.7628369;-0.003142238,0.01259532;0.3990976;0.02284272,0;0;0,-0.002034457;0.1997583;0.009617427,-0.004423868;0.4996934;0.009784477,0.105853;0.3760134;-0.03018701,0.1912039;0.1101493;-0.009414637,0.227255;-0.1610512;-0.06900132,-0.1129793;0.3500716;0.01568155,-0.2207045;0.09164637;0.01909979,-0.3745552;-0.1398443;-0.01469385,0.06531973;0.008568984;-0.04538617,0.09402984;-0.3662548;0.01013748,0.104966;-0.7067924;0.09022824,0.1121276;-0.75612;0.02976472,-0.07588484;-0.003212438;-0.02512311,-0.08959485;-0.3811731;0.01172518,-0.0963456;-0.7225218;0.08876716,-0.1097778;-0.7109072;-0.008606106,-0.003784703;0.3997307;0.01243999,11.90037
+0;0;0,0.005979739;0.1993775;0.01458971,0.01622554;0.4990316;0.02300588,0.123993;0.3701131;-0.01107558,0.1956414;0.1000812;0.007613467,0.2469288;-0.1726588;-0.02956804,-0.09889942;0.3588185;0.004227936,-0.177612;0.09015542;-0.000720263,-0.2443325;-0.1804042;-0.02803069,0.06932022;0.004148334;-0.03971772,0.0848793;-0.3729223;0.004730765,0.08080384;-0.7162606;0.07257013,0.07536627;-0.7036892;-0.02574915,-0.07181059;0.003598086;-0.03507553,-0.1011492;-0.3738321;-0.002125971,-0.1223646;-0.7173955;0.06123107,-0.1095318;-0.7628369;-0.003142238,0.01259532;0.3990976;0.02284272,0;0;0,-0.002034457;0.1997583;0.009617427,-0.004423868;0.4996934;0.009784477,0.105853;0.3760134;-0.03018701,0.1912039;0.1101493;-0.009414637,0.227255;-0.1610512;-0.06900132,-0.1129793;0.3500716;0.01568155,-0.2207045;0.09164637;0.01909979,-0.3745552;-0.1398443;-0.01469385,0.06531973;0.008568984;-0.04538617,0.09402984;-0.3662548;0.01013748,0.104966;-0.7067924;0.09022824,0.1121276;-0.75612;0.02976472,-0.07588484;-0.003212438;-0.02512311,-0.08959485;-0.3811731;0.01172518,-0.0963456;-0.7225218;0.08876716,-0.1097778;-0.7109072;-0.008606106,-0.003784703;0.3997307;0.01243999,11.92239
+0;0;0,0.005979739;0.1993775;0.01458971,0.01622554;0.4990316;0.02300588,0.123993;0.3701131;-0.01107558,0.1956414;0.1000812;0.007613467,0.2469288;-0.1726588;-0.02956804,-0.09889942;0.3588185;0.004227936,-0.177612;0.09015542;-0.000720263,-0.2443325;-0.1804042;-0.02803069,0.06932022;0.004148334;-0.03971772,0.0848793;-0.3729223;0.004730765,0.08080384;-0.7162606;0.07257013,0.07536627;-0.7036892;-0.02574915,-0.07181059;0.003598086;-0.03507553,-0.1011492;-0.3738321;-0.002125971,-0.1223646;-0.7173955;0.06123107,-0.1095318;-0.7628369;-0.003142238,0.01259532;0.3990976;0.02284272,0;0;0,-0.001984151;0.1997591;0.009610134,-0.004262813;0.4996954;0.009832374,0.1059888;0.3760902;-0.03017849,0.1913984;0.1102369;-0.009509154,0.227573;-0.1609839;-0.06892863,-0.1129073;0.3501891;0.01571567,-0.2232936;0.09290692;0.02026874,-0.3848398;-0.1334333;-0.012487,0.06532112;0.008564661;-0.04538499,0.09391226;-0.3662475;0.01027819,0.1050033;-0.7067469;0.09051001,0.1121013;-0.7562533;0.03027413,-0.07588543;-0.003204354;-0.02512238,-0.0896594;-0.3811518;0.0118375,-0.09640802;-0.7224943;0.08890714,-0.1098334;-0.7108759;-0.008467779,-0.003660104;0.3997318;0.01246173,11.9446
+0;0;0,0.005921672;0.1993807;0.01456999,0.0160211;0.4990397;0.02298366,0.1238795;0.3702721;-0.0111017,0.1948178;0.1000433;0.00744912,0.2464262;-0.1726892;-0.02934167,-0.09911478;0.359007;0.004196679,-0.1793613;0.09077868;0.0004465613,-0.2485194;-0.1791595;-0.02694951,0.06931173;0.004164235;-0.03973088,0.08319253;-0.3729286;0.005082872,0.07989046;-0.7162517;0.07304144,0.07443775;-0.7036772;-0.02527754,-0.07181196;0.003578642;-0.03507471,-0.1018142;-0.373792;-0.002040364,-0.1230797;-0.7173461;0.06135012,-0.10984;-0.7626199;-0.003136881,0.01244387;0.3991039;0.02282211,0;0;0,-0.001984151;0.1997591;0.009610134,-0.004262813;0.4996954;0.009832374,0.1059888;0.3760902;-0.03017849,0.1913984;0.1102369;-0.009509154,0.227573;-0.1609839;-0.06892863,-0.1129073;0.3501891;0.01571567,-0.2232936;0.09290692;0.02026874,-0.3848398;-0.1334333;-0.012487,0.06532112;0.008564661;-0.04538499,0.09391226;-0.3662475;0.01027819,0.1050033;-0.7067469;0.09051001,0.1121013;-0.7562533;0.03027413,-0.07588543;-0.003204354;-0.02512238,-0.0896594;-0.3811518;0.0118375,-0.09640802;-0.7224943;0.08890714,-0.1098334;-0.7108759;-0.008467779,-0.003660104;0.3997318;0.01246173,11.95582
+0;0;0,0.005921672;0.1993807;0.01456999,0.0160211;0.4990397;0.02298366,0.1238795;0.3702721;-0.0111017,0.1948178;0.1000433;0.00744912,0.2464262;-0.1726892;-0.02934167,-0.09911478;0.359007;0.004196679,-0.1793613;0.09077868;0.0004465613,-0.2485194;-0.1791595;-0.02694951,0.06931173;0.004164235;-0.03973088,0.08319253;-0.3729286;0.005082872,0.07989046;-0.7162517;0.07304144,0.07443775;-0.7036772;-0.02527754,-0.07181196;0.003578642;-0.03507471,-0.1018142;-0.373792;-0.002040364,-0.1230797;-0.7173461;0.06135012,-0.10984;-0.7626199;-0.003136881,0.01244387;0.3991039;0.02282211,0;0;0,-0.001820247;0.1997628;0.009566731,-0.00375626;0.4997018;0.009805941,0.1063156;0.3761629;-0.03041776,0.1912439;0.110197;-0.0092193,0.2276483;-0.1610915;-0.06818742,-0.1127459;0.3506861;0.01544462,-0.2275546;0.09538567;0.02181992,-0.3922649;-0.1288154;-0.00987245,0.06534266;0.008484334;-0.04536907,0.09381341;-0.3663272;0.01035972,0.105039;-0.7067162;0.09103998,0.1118169;-0.7563932;0.0309929,-0.0758775;-0.003072924;-0.02516272,-0.08982887;-0.3809846;0.01209503,-0.09654649;-0.7223402;0.08910944,-0.1099395;-0.7107173;-0.008270793,-0.003270605;0.3997372;0.01242042,11.97814
+0;0;0,0.005921672;0.1993807;0.01456999,0.0160211;0.4990397;0.02298366,0.1238795;0.3702721;-0.0111017,0.1948178;0.1000433;0.00744912,0.2464262;-0.1726892;-0.02934167,-0.09911478;0.359007;0.004196679,-0.1793613;0.09077868;0.0004465613,-0.2485194;-0.1791595;-0.02694951,0.06931173;0.004164235;-0.03973088,0.08319253;-0.3729286;0.005082872,0.07989046;-0.7162517;0.07304144,0.07443775;-0.7036772;-0.02527754,-0.07181196;0.003578642;-0.03507471,-0.1018142;-0.373792;-0.002040364,-0.1230797;-0.7173461;0.06135012,-0.10984;-0.7626199;-0.003136881,0.01244387;0.3991039;0.02282211,0;0;0,-0.001820247;0.1997628;0.009566731,-0.00375626;0.4997018;0.009805941,0.1063156;0.3761629;-0.03041776,0.1912439;0.110197;-0.0092193,0.2276483;-0.1610915;-0.06818742,-0.1127459;0.3506861;0.01544462,-0.2275546;0.09538567;0.02181992,-0.3922649;-0.1288154;-0.00987245,0.06534266;0.008484334;-0.04536907,0.09381341;-0.3663272;0.01035972,0.105039;-0.7067162;0.09103998,0.1118169;-0.7563932;0.0309929,-0.0758775;-0.003072924;-0.02516272,-0.08982887;-0.3809846;0.01209503,-0.09654649;-0.7223402;0.08910944,-0.1099395;-0.7107173;-0.008270793,-0.003270605;0.3997372;0.01242042,11.98945
+0;0;0,0.005957047;0.1993747;0.0146367,0.01601651;0.4990315;0.02317868,0.1239389;0.3703701;-0.01091,0.1941295;0.09994566;0.007634366,0.2454852;-0.1727992;-0.02941767,-0.09911419;0.358949;0.004573146,-0.180703;0.09111539;0.001672714,-0.2543429;-0.1776974;-0.02510201,0.06930169;0.004188482;-0.03974584,0.08258705;-0.3729205;0.005112797,0.07913684;-0.716215;0.07320856,0.0736501;-0.7036352;-0.02510944,-0.07182042;0.003550538;-0.03506026,-0.1025328;-0.3738081;-0.002545375,-0.1241074;-0.7172354;0.06142512,-0.11062;-0.7624777;-0.003047328,0.0124639;0.3990948;0.02297537,0;0;0,-0.001556123;0.1997775;0.009301117,-0.003014195;0.4997185;0.008953935,0.1069201;0.3760071;-0.03091944,0.1915745;0.109985;-0.009334648,0.2282603;-0.1613837;-0.06775673,-0.1122328;0.3508809;0.01487841,-0.231962;0.09789026;0.02266808,-0.4065473;-0.1184636;-0.01066274,0.06535688;0.008408222;-0.04536276,0.09340743;-0.3663603;0.01086643,0.1047012;-0.7068337;0.09118025,0.1119637;-0.7566763;0.03141041,-0.0758768;-0.002971811;-0.02517696,-0.09011697;-0.380865;0.01215795,-0.09678604;-0.7222288;0.08914027,-0.1101007;-0.7106287;-0.008246414,-0.002682257;0.399759;0.01177901,12.01178
+0;0;0,0.005957047;0.1993747;0.0146367,0.01601651;0.4990315;0.02317868,0.1239389;0.3703701;-0.01091,0.1941295;0.09994566;0.007634366,0.2454852;-0.1727992;-0.02941767,-0.09911419;0.358949;0.004573146,-0.180703;0.09111539;0.001672714,-0.2543429;-0.1776974;-0.02510201,0.06930169;0.004188482;-0.03974584,0.08258705;-0.3729205;0.005112797,0.07913684;-0.716215;0.07320856,0.0736501;-0.7036352;-0.02510944,-0.07182042;0.003550538;-0.03506026,-0.1025328;-0.3738081;-0.002545375,-0.1241074;-0.7172354;0.06142512,-0.11062;-0.7624777;-0.003047328,0.0124639;0.3990948;0.02297537,0;0;0,-0.001507437;0.199789;0.009059871,-0.002994365;0.4997283;0.008196264,0.1070818;0.376054;-0.03121094,0.1923251;0.1102427;-0.009349696,0.2294267;-0.1610681;-0.06777877,-0.1120538;0.3506517;0.01504583,-0.2357198;0.09958625;0.02358341,-0.4165037;-0.111305;-0.01165967,0.06537026;0.008408706;-0.04534339,0.09333578;-0.3663193;0.01119727,0.1045915;-0.7068466;0.09128803,0.1122919;-0.7573801;0.03250825,-0.07584794;-0.002959952;-0.02526516,-0.090448;-0.380728;0.01318142,-0.096931;-0.7222157;0.08962871,-0.1103644;-0.7106449;-0.007736102,-0.002636097;0.3997743;0.01120765,12.03377
+0;0;0,0.005957047;0.1993747;0.0146367,0.01601651;0.4990315;0.02317868,0.1239389;0.3703701;-0.01091,0.1941295;0.09994566;0.007634366,0.2454852;-0.1727992;-0.02941767,-0.09911419;0.358949;0.004573146,-0.180703;0.09111539;0.001672714,-0.2543429;-0.1776974;-0.02510201,0.06930169;0.004188482;-0.03974584,0.08258705;-0.3729205;0.005112797,0.07913684;-0.716215;0.07320856,0.0736501;-0.7036352;-0.02510944,-0.07182042;0.003550538;-0.03506026,-0.1025328;-0.3738081;-0.002545375,-0.1241074;-0.7172354;0.06142512,-0.11062;-0.7624777;-0.003047328,0.0124639;0.3990948;0.02297537,0;0;0,-0.001507437;0.199789;0.009059871,-0.002994365;0.4997283;0.008196264,0.1070818;0.376054;-0.03121094,0.1923251;0.1102427;-0.009349696,0.2294267;-0.1610681;-0.06777877,-0.1120538;0.3506517;0.01504583,-0.2357198;0.09958625;0.02358341,-0.4165037;-0.111305;-0.01165967,0.06537026;0.008408706;-0.04534339,0.09333578;-0.3663193;0.01119727,0.1045915;-0.7068466;0.09128803,0.1122919;-0.7573801;0.03250825,-0.07584794;-0.002959952;-0.02526516,-0.090448;-0.380728;0.01318142,-0.096931;-0.7222157;0.08962871,-0.1103644;-0.7106449;-0.007736102,-0.002636097;0.3997743;0.01120765,12.04515
+0;0;0,0.005881854;0.1993835;0.01454824,0.01579814;0.4990479;0.02299244,0.123693;0.3700559;-0.01104708,0.1936429;0.09957245;0.007546077,0.2445647;-0.1732084;-0.02983846,-0.09939741;0.3591623;0.004695943,-0.1842263;0.09232375;0.003574119,-0.2606151;-0.1756722;-0.02368238,0.06930685;0.004299813;-0.03972496,0.08214326;-0.3729162;0.004357684,0.07835749;-0.7161677;0.07265201,0.07280202;-0.7035916;-0.0256615,-0.07184345;0.00342161;-0.03502587,-0.1028484;-0.3740346;-0.003952976,-0.1249801;-0.7173131;0.06062279,-0.111611;-0.762655;-0.00375795,0.01229756;0.3991093;0.02281973,0;0;0,-0.001068138;0.1998014;0.008846626,-0.001558133;0.4997421;0.007557631,0.1081139;0.3760841;-0.03183689,0.1928321;0.110127;-0.009708293,0.2304757;-0.1613365;-0.06707142,-0.1111908;0.3512038;0.0150693,-0.2400078;0.1027504;0.02384997,-0.4245861;-0.1050816;-0.009865059,0.06538079;0.008348639;-0.0453393,0.09325185;-0.3663886;0.0111868,0.1046159;-0.7069412;0.09115425,0.1122513;-0.7572377;0.03204267,-0.07580222;-0.002813894;-0.02541857,-0.09064291;-0.3805615;0.01313674,-0.09730309;-0.7220422;0.0895994,-0.1108402;-0.7104857;-0.007748365,-0.001553947;0.3997921;0.01071781,12.0673
+0;0;0,0.005881854;0.1993835;0.01454824,0.01579814;0.4990479;0.02299244,0.123693;0.3700559;-0.01104708,0.1936429;0.09957245;0.007546077,0.2445647;-0.1732084;-0.02983846,-0.09939741;0.3591623;0.004695943,-0.1842263;0.09232375;0.003574119,-0.2606151;-0.1756722;-0.02368238,0.06930685;0.004299813;-0.03972496,0.08214326;-0.3729162;0.004357684,0.07835749;-0.7161677;0.07265201,0.07280202;-0.7035916;-0.0256615,-0.07184345;0.00342161;-0.03502587,-0.1028484;-0.3740346;-0.003952976,-0.1249801;-0.7173131;0.06062279,-0.111611;-0.762655;-0.00375795,0.01229756;0.3991093;0.02281973,0;0;0,-0.001068138;0.1998014;0.008846626,-0.001558133;0.4997421;0.007557631,0.1081139;0.3760841;-0.03183689,0.1928321;0.110127;-0.009708293,0.2304757;-0.1613365;-0.06707142,-0.1111908;0.3512038;0.0150693,-0.2400078;0.1027504;0.02384997,-0.4245861;-0.1050816;-0.009865059,0.06538079;0.008348639;-0.0453393,0.09325185;-0.3663886;0.0111868,0.1046159;-0.7069412;0.09115425,0.1122513;-0.7572377;0.03204267,-0.07580222;-0.002813894;-0.02541857,-0.09064291;-0.3805615;0.01313674,-0.09730309;-0.7220422;0.0895994,-0.1108402;-0.7104857;-0.007748365,-0.001553947;0.3997921;0.01071781,12.07869
+0;0;0,0.005881854;0.1993835;0.01454824,0.01579814;0.4990479;0.02299244,0.123693;0.3700559;-0.01104708,0.1936429;0.09957245;0.007546077,0.2445647;-0.1732084;-0.02983846,-0.09939741;0.3591623;0.004695943,-0.1842263;0.09232375;0.003574119,-0.2606151;-0.1756722;-0.02368238,0.06930685;0.004299813;-0.03972496,0.08214326;-0.3729162;0.004357684,0.07835749;-0.7161677;0.07265201,0.07280202;-0.7035916;-0.0256615,-0.07184345;0.00342161;-0.03502587,-0.1028484;-0.3740346;-0.003952976,-0.1249801;-0.7173131;0.06062279,-0.111611;-0.762655;-0.00375795,0.01229756;0.3991093;0.02281973,0;0;0,-0.0009836332;0.1998074;0.00872019,-0.001497907;0.4997482;0.007360023,0.1081648;0.3760179;-0.03206945,0.1926095;0.1100004;-0.009624112,0.230904;-0.1615228;-0.06626942,-0.1111859;0.3513708;0.01464345,-0.2429059;0.1044727;0.02419387,-0.436653;-0.09478758;-0.009826764,0.06541637;0.00828796;-0.04529909,0.09298088;-0.3664691;0.01124559,0.104267;-0.7070376;0.09115642,0.1128061;-0.7574075;0.03226869,-0.07577184;-0.002728622;-0.02551829,-0.09107044;-0.3804432;0.0131811,-0.09771895;-0.7219189;0.08966726,-0.1111722;-0.7103684;-0.007690996,-0.001468741;0.3997986;0.01053283,12.10102
+0;0;0,0.005739025;0.1993945;0.01445279,0.01542594;0.4990695;0.02279452,0.1233814;0.3699431;-0.01115724,0.1925914;0.09928274;0.007629745,0.2435335;-0.1734626;-0.02998525,-0.0998524;0.3594488;0.004936649,-0.1878005;0.09361997;0.005357503,-0.2697681;-0.1727281;-0.02184584,0.06927737;0.004380726;-0.03976751,0.08151993;-0.3728831;0.004074074,0.07759798;-0.7161596;0.07223472,0.07194018;-0.7035891;-0.02607196,-0.07183985;0.003332444;-0.03504186,-0.1035395;-0.3741285;-0.004737686,-0.1259936;-0.7173314;0.06012837,-0.1124742;-0.7626235;-0.004279163,0.01200321;0.3991281;0.02265301,0;0;0,-0.0009836332;0.1998074;0.00872019,-0.001497907;0.4997482;0.007360023,0.1081648;0.3760179;-0.03206945,0.1926095;0.1100004;-0.009624112,0.230904;-0.1615228;-0.06626942,-0.1111859;0.3513708;0.01464345,-0.2429059;0.1044727;0.02419387,-0.436653;-0.09478758;-0.009826764,0.06541637;0.00828796;-0.04529909,0.09298088;-0.3664691;0.01124559,0.104267;-0.7070376;0.09115642,0.1128061;-0.7574075;0.03226869,-0.07577184;-0.002728622;-0.02551829,-0.09107044;-0.3804432;0.0131811,-0.09771895;-0.7219189;0.08966726,-0.1111722;-0.7103684;-0.007690996,-0.001468741;0.3997986;0.01053283,12.12344
+0;0;0,0.005739025;0.1993945;0.01445279,0.01542594;0.4990695;0.02279452,0.1233814;0.3699431;-0.01115724,0.1925914;0.09928274;0.007629745,0.2435335;-0.1734626;-0.02998525,-0.0998524;0.3594488;0.004936649,-0.1878005;0.09361997;0.005357503,-0.2697681;-0.1727281;-0.02184584,0.06927737;0.004380726;-0.03976751,0.08151993;-0.3728831;0.004074074,0.07759798;-0.7161596;0.07223472,0.07194018;-0.7035891;-0.02607196,-0.07183985;0.003332444;-0.03504186,-0.1035395;-0.3741285;-0.004737686,-0.1259936;-0.7173314;0.06012837,-0.1124742;-0.7626235;-0.004279163,0.01200321;0.3991281;0.02265301,0;0;0,-0.0007457768;0.1998128;0.008617957,-0.000778574;0.499754;0.007171897,0.1086548;0.3760127;-0.03238377,0.1933161;0.1101116;-0.00938263,0.2309745;-0.1615696;-0.06569577,-0.1112402;0.3527072;0.01365787,-0.249706;0.1096079;0.02505814,-0.4446076;-0.08858538;-0.008598898,0.06544761;0.008214409;-0.04526735,0.09295671;-0.3665462;0.01128085,0.1042207;-0.7070898;0.09130113,0.1125314;-0.7573524;0.03223462,-0.07573512;-0.002625559;-0.0256378,-0.09079694;-0.3803435;0.01312103,-0.09783818;-0.721828;0.08953299,-0.1110021;-0.7102718;-0.007865876,-0.0009180958;0.3998051;0.01036772,12.13462
+0;0;0,0.005739025;0.1993945;0.01445279,0.01542594;0.4990695;0.02279452,0.1233814;0.3699431;-0.01115724,0.1925914;0.09928274;0.007629745,0.2435335;-0.1734626;-0.02998525,-0.0998524;0.3594488;0.004936649,-0.1878005;0.09361997;0.005357503,-0.2697681;-0.1727281;-0.02184584,0.06927737;0.004380726;-0.03976751,0.08151993;-0.3728831;0.004074074,0.07759798;-0.7161596;0.07223472,0.07194018;-0.7035891;-0.02607196,-0.07183985;0.003332444;-0.03504186,-0.1035395;-0.3741285;-0.004737686,-0.1259936;-0.7173314;0.06012837,-0.1124742;-0.7626235;-0.004279163,0.01200321;0.3991281;0.02265301,0;0;0,-0.0007457768;0.1998128;0.008617957,-0.000778574;0.499754;0.007171897,0.1086548;0.3760127;-0.03238377,0.1933161;0.1101116;-0.00938263,0.2309745;-0.1615696;-0.06569577,-0.1112402;0.3527072;0.01365787,-0.249706;0.1096079;0.02505814,-0.4446076;-0.08858538;-0.008598898,0.06544761;0.008214409;-0.04526735,0.09295671;-0.3665462;0.01128085,0.1042207;-0.7070898;0.09130113,0.1125314;-0.7573524;0.03223462,-0.07573512;-0.002625559;-0.0256378,-0.09079694;-0.3803435;0.01312103,-0.09783818;-0.721828;0.08953299,-0.1110021;-0.7102718;-0.007865876,-0.0009180958;0.3998051;0.01036772,12.15673
+0;0;0,0.005676353;0.1993939;0.01448654,0.01520701;0.4990723;0.02288108,0.1231442;0.3698176;-0.01123274,0.1919774;0.09907034;0.007685885,0.2425578;-0.1736974;-0.03025316,-0.1000889;0.3595776;0.005209098,-0.1933495;0.09557417;0.007363743,-0.2832504;-0.1682338;-0.01952882,0.0692703;0.004437747;-0.0397735,0.08079348;-0.3729201;0.00345001,0.07665158;-0.7160897;0.07213354,0.07088584;-0.7035145;-0.0261677,-0.07184914;0.003274492;-0.03502827,-0.1043826;-0.3741289;-0.004890626,-0.1271564;-0.7172747;0.06016544,-0.1137657;-0.7628936;-0.003885187,0.01184375;0.399129;0.0227238,0;0;0,-0.0004793415;0.1998155;0.008574645,-0.0001350633;0.4997572;0.007189635,0.109047;0.3758095;-0.03262337,0.1935894;0.1098974;-0.009314355,0.2314639;-0.1618396;-0.06521191,-0.1106336;0.3525819;0.01443813,-0.2525602;0.1114374;0.02474038,-0.4509068;-0.08332683;-0.008808423,0.0654524;0.008187518;-0.0452653,0.09280049;-0.3665578;0.01146211,0.1040308;-0.7071802;0.09115063,0.1124804;-0.757481;0.03215579,-0.07570594;-0.002578884;-0.02572857,-0.09078629;-0.3803414;0.01258626,-0.09809838;-0.7218138;0.08902679,-0.1115308;-0.710256;-0.008335717,-0.0003927104;0.3998076;0.01035382,12.16802
+0;0;0,0.005676353;0.1993939;0.01448654,0.01520701;0.4990723;0.02288108,0.1231442;0.3698176;-0.01123274,0.1919774;0.09907034;0.007685885,0.2425578;-0.1736974;-0.03025316,-0.1000889;0.3595776;0.005209098,-0.1933495;0.09557417;0.007363743,-0.2832504;-0.1682338;-0.01952882,0.0692703;0.004437747;-0.0397735,0.08079348;-0.3729201;0.00345001,0.07665158;-0.7160897;0.07213354,0.07088584;-0.7035145;-0.0261677,-0.07184914;0.003274492;-0.03502827,-0.1043826;-0.3741289;-0.004890626,-0.1271564;-0.7172747;0.06016544,-0.1137657;-0.7628936;-0.003885187,0.01184375;0.399129;0.0227238,0;0;0,-0.0004793415;0.1998155;0.008574645,-0.0001350633;0.4997572;0.007189635,0.109047;0.3758095;-0.03262337,0.1935894;0.1098974;-0.009314355,0.2314639;-0.1618396;-0.06521191,-0.1106336;0.3525819;0.01443813,-0.2525602;0.1114374;0.02474038,-0.4509068;-0.08332683;-0.008808423,0.0654524;0.008187518;-0.0452653,0.09280049;-0.3665578;0.01146211,0.1040308;-0.7071802;0.09115063,0.1124804;-0.757481;0.03215579,-0.07570594;-0.002578884;-0.02572857,-0.09078629;-0.3803414;0.01258626,-0.09809838;-0.7218138;0.08902679,-0.1115308;-0.710256;-0.008335717,-0.0003927104;0.3998076;0.01035382,12.1902
+0;0;0,0.005676353;0.1993939;0.01448654,0.01520701;0.4990723;0.02288108,0.1231442;0.3698176;-0.01123274,0.1919774;0.09907034;0.007685885,0.2425578;-0.1736974;-0.03025316,-0.1000889;0.3595776;0.005209098,-0.1933495;0.09557417;0.007363743,-0.2832504;-0.1682338;-0.01952882,0.0692703;0.004437747;-0.0397735,0.08079348;-0.3729201;0.00345001,0.07665158;-0.7160897;0.07213354,0.07088584;-0.7035145;-0.0261677,-0.07184914;0.003274492;-0.03502827,-0.1043826;-0.3741289;-0.004890626,-0.1271564;-0.7172747;0.06016544,-0.1137657;-0.7628936;-0.003885187,0.01184375;0.399129;0.0227238,0;0;0,2.686359E-05;0.1998249;0.00836728,0.001315731;0.4997635;0.006810292,0.1100776;0.3753469;-0.03292555,0.1942256;0.109338;-0.009295171,0.231943;-0.1624549;-0.06502649,-0.1097376;0.3531536;0.01442851,-0.2559655;0.1145798;0.02442663,-0.456517;-0.07807547;-0.008177277,0.06551953;0.008036714;-0.04519516,0.09257703;-0.366701;0.01172195,0.1037569;-0.7073061;0.09149109,0.1123518;-0.7576934;0.03263512,-0.07565439;-0.002333437;-0.02590307,-0.09120163;-0.3800265;0.01290704,-0.09860832;-0.7214999;0.08933343,-0.1120137;-0.7099485;-0.008031584,0.0007300422;0.3998168;0.01002016,12.20152
+0;0;0,0.005405817;0.199408;0.01439582,0.01463587;0.4990979;0.02272063,0.1226788;0.3696948;-0.01118924,0.1913946;0.09888762;0.00729402,0.2414387;-0.1740141;-0.03039254,-0.1006001;0.3594842;0.005513897,-0.1988294;0.09730732;0.009294289,-0.2961242;-0.1637397;-0.01878041,0.06926215;0.004358341;-0.03979648,0.08024334;-0.3730853;0.002814349,0.07586445;-0.7161793;0.07186034,0.06997926;-0.7036085;-0.02643303,-0.07182927;0.003373442;-0.03505958,-0.1050446;-0.3740381;-0.00578016,-0.1282236;-0.7170823;0.05966786,-0.1145981;-0.7622097;-0.004909314,0.01136047;0.3991516;0.02258239,0;0;0,2.686359E-05;0.1998249;0.00836728,0.001315731;0.4997635;0.006810292,0.1100776;0.3753469;-0.03292555,0.1942256;0.109338;-0.009295171,0.231943;-0.1624549;-0.06502649,-0.1097376;0.3531536;0.01442851,-0.2559655;0.1145798;0.02442663,-0.456517;-0.07807547;-0.008177277,0.06551953;0.008036714;-0.04519516,0.09257703;-0.366701;0.01172195,0.1037569;-0.7073061;0.09149109,0.1123518;-0.7576934;0.03263512,-0.07565439;-0.002333437;-0.02590307,-0.09120163;-0.3800265;0.01290704,-0.09860832;-0.7214999;0.08933343,-0.1120137;-0.7099485;-0.008031584,0.0007300422;0.3998168;0.01002016,12.21267
+0;0;0,0.005405817;0.199408;0.01439582,0.01463587;0.4990979;0.02272063,0.1226788;0.3696948;-0.01118924,0.1913946;0.09888762;0.00729402,0.2414387;-0.1740141;-0.03039254,-0.1006001;0.3594842;0.005513897,-0.1988294;0.09730732;0.009294289,-0.2961242;-0.1637397;-0.01878041,0.06926215;0.004358341;-0.03979648,0.08024334;-0.3730853;0.002814349,0.07586445;-0.7161793;0.07186034,0.06997926;-0.7036085;-0.02643303,-0.07182927;0.003373442;-0.03505958,-0.1050446;-0.3740381;-0.00578016,-0.1282236;-0.7170823;0.05966786,-0.1145981;-0.7622097;-0.004909314,0.01136047;0.3991516;0.02258239,0;0;0,0.0003276864;0.1998306;0.008222637,0.002029557;0.4997668;0.006509392,0.1105106;0.3746115;-0.03313733,0.1950534;0.1087355;-0.009420998,0.2324484;-0.1631597;-0.06487011,-0.1093198;0.3535304;0.0139242,-0.2591432;0.1172404;0.02487696,-0.4657655;-0.06908226;-0.006605102,0.06557244;0.007935966;-0.04513618,0.09241796;-0.3667942;0.01193094,0.1034404;-0.7074457;0.09152389,0.1115023;-0.7573636;0.03195761,-0.07557558;-0.002145243;-0.02614819,-0.09140666;-0.3798294;0.01263389,-0.09900712;-0.7212669;0.08920209,-0.1122422;-0.7097232;-0.008184761,0.001313613;0.3998223;0.009762839,12.235
+0;0;0,0.005405817;0.199408;0.01439582,0.01463587;0.4990979;0.02272063,0.1226788;0.3696948;-0.01118924,0.1913946;0.09888762;0.00729402,0.2414387;-0.1740141;-0.03039254,-0.1006001;0.3594842;0.005513897,-0.1988294;0.09730732;0.009294289,-0.2961242;-0.1637397;-0.01878041,0.06926215;0.004358341;-0.03979648,0.08024334;-0.3730853;0.002814349,0.07586445;-0.7161793;0.07186034,0.06997926;-0.7036085;-0.02643303,-0.07182927;0.003373442;-0.03505958,-0.1050446;-0.3740381;-0.00578016,-0.1282236;-0.7170823;0.05966786,-0.1145981;-0.7622097;-0.004909314,0.01136047;0.3991516;0.02258239,0;0;0,0.0003276864;0.1998306;0.008222637,0.002029557;0.4997668;0.006509392,0.1105106;0.3746115;-0.03313733,0.1950534;0.1087355;-0.009420998,0.2324484;-0.1631597;-0.06487011,-0.1093198;0.3535304;0.0139242,-0.2591432;0.1172404;0.02487696,-0.4657655;-0.06908226;-0.006605102,0.06557244;0.007935966;-0.04513618,0.09241796;-0.3667942;0.01193094,0.1034404;-0.7074457;0.09152389,0.1115023;-0.7573636;0.03195761,-0.07557558;-0.002145243;-0.02614819,-0.09140666;-0.3798294;0.01263389,-0.09900712;-0.7212669;0.08920209,-0.1122422;-0.7097232;-0.008184761,0.001313613;0.3998223;0.009762839,12.25727
+0;0;0,0.005454413;0.1994047;0.0144228,0.01467181;0.4990938;0.02278722,0.1226821;0.3695416;-0.01116368,0.1909619;0.09859702;0.006917382,0.2408695;-0.1743619;-0.03053434,-0.1008971;0.3599366;0.006853173,-0.2023884;0.09900045;0.01029758,-0.3074583;-0.15883;-0.01943035,0.06925041;0.004398315;-0.0398125,0.07934447;-0.3731097;0.002446234,0.07501851;-0.7161676;0.07167453,0.06880762;-0.7035912;-0.02659982,-0.0718222;0.003333436;-0.03507793,-0.1057313;-0.3740384;-0.006083073,-0.1291461;-0.7170177;0.05962035,-0.1155388;-0.7619407;-0.005197689,0.01141221;0.3991471;0.02263748,0;0;0,0.0004646788;0.199839;0.008011481,0.002209661;0.499774;0.006117954,0.1108736;0.3744662;-0.03291478,0.1952227;0.1085123;-0.009383181,0.2326744;-0.1634363;-0.06453152,-0.1092886;0.3538826;0.01341256,-0.2617063;0.1193301;0.02582312,-0.4718134;-0.06308879;-0.005455349,0.0656675;0.00789745;-0.04500455,0.09214835;-0.3669251;0.01162461,0.1032566;-0.7075333;0.09139067,0.111515;-0.7582499;0.03293874,-0.07549258;-0.00209744;-0.02639072,-0.09186405;-0.3796583;0.01335505,-0.09949853;-0.7211294;0.08976974,-0.112464;-0.709596;-0.007651426,0.001494117;0.3998313;0.009425931,12.27955
+0;0;0,0.005454413;0.1994047;0.0144228,0.01467181;0.4990938;0.02278722,0.1226821;0.3695416;-0.01116368,0.1909619;0.09859702;0.006917382,0.2408695;-0.1743619;-0.03053434,-0.1008971;0.3599366;0.006853173,-0.2023884;0.09900045;0.01029758,-0.3074583;-0.15883;-0.01943035,0.06925041;0.004398315;-0.0398125,0.07934447;-0.3731097;0.002446234,0.07501851;-0.7161676;0.07167453,0.06880762;-0.7035912;-0.02659982,-0.0718222;0.003333436;-0.03507793,-0.1057313;-0.3740384;-0.006083073,-0.1291461;-0.7170177;0.05962035,-0.1155388;-0.7619407;-0.005197689,0.01141221;0.3991471;0.02263748,0;0;0,0.0004646788;0.199839;0.008011481,0.002209661;0.499774;0.006117954,0.1108736;0.3744662;-0.03291478,0.1952227;0.1085123;-0.009383181,0.2326744;-0.1634363;-0.06453152,-0.1092886;0.3538826;0.01341256,-0.2617063;0.1193301;0.02582312,-0.4718134;-0.06308879;-0.005455349,0.0656675;0.00789745;-0.04500455,0.09214835;-0.3669251;0.01162461,0.1032566;-0.7075333;0.09139067,0.111515;-0.7582499;0.03293874,-0.07549258;-0.00209744;-0.02639072,-0.09186405;-0.3796583;0.01335505,-0.09949853;-0.7211294;0.08976974,-0.112464;-0.709596;-0.007651426,0.001494117;0.3998313;0.009425931,12.29086
+0;0;0,0.005454413;0.1994047;0.0144228,0.01467181;0.4990938;0.02278722,0.1226821;0.3695416;-0.01116368,0.1909619;0.09859702;0.006917382,0.2408695;-0.1743619;-0.03053434,-0.1008971;0.3599366;0.006853173,-0.2023884;0.09900045;0.01029758,-0.3074583;-0.15883;-0.01943035,0.06925041;0.004398315;-0.0398125,0.07934447;-0.3731097;0.002446234,0.07501851;-0.7161676;0.07167453,0.06880762;-0.7035912;-0.02659982,-0.0718222;0.003333436;-0.03507793,-0.1057313;-0.3740384;-0.006083073,-0.1291461;-0.7170177;0.05962035,-0.1155388;-0.7619407;-0.005197689,0.01141221;0.3991471;0.02263748,0;0;0,0.0006326342;0.1998396;0.007984268,0.002524288;0.4997744;0.006157086,0.1111403;0.3741917;-0.03276014,0.1948777;0.1080569;-0.009088587,0.2319873;-0.1638684;-0.06458162,-0.1090947;0.3541012;0.01366321,-0.2652568;0.1220061;0.02571563,-0.4772149;-0.05819829;-0.005909253,0.06569371;0.007824452;-0.04497904,0.09181108;-0.3669543;0.0121066,0.1028985;-0.7075616;0.09187976,0.1104855;-0.758312;0.03338338,-0.07549277;-0.002027299;-0.02639569,-0.0923879;-0.3795123;0.01384919,-0.1000583;-0.7210178;0.09010619,-0.113025;-0.7094806;-0.007315531,0.001769779;0.3998311;0.00943823,12.30243
+0;0;0,0.005487216;0.1994073;0.01437461,0.01469735;0.499099;0.02264848,0.1226167;0.3693153;-0.01139829,0.1910907;0.09841487;0.006609298,0.2406468;-0.1745975;-0.03091972,-0.1011545;0.3604634;0.00757123,-0.2049487;0.1004341;0.01096116,-0.3203421;-0.1528903;-0.01922394,0.06916613;0.004448632;-0.03995318,0.07822802;-0.3730953;0.002218097,0.07382116;-0.7161558;0.07142896,0.06741368;-0.7035801;-0.02683263,-0.07187784;0.003279531;-0.03496886,-0.1069418;-0.3740189;-0.006396195,-0.1305358;-0.7169844;0.0593152,-0.1170512;-0.7620758;-0.005333476,0.01144809;0.3991519;0.02253284,0;0;0,0.0006326342;0.1998396;0.007984268,0.002524288;0.4997744;0.006157086,0.1111403;0.3741917;-0.03276014,0.1948777;0.1080569;-0.009088587,0.2319873;-0.1638684;-0.06458162,-0.1090947;0.3541012;0.01366321,-0.2652568;0.1220061;0.02571563,-0.4772149;-0.05819829;-0.005909253,0.06569371;0.007824452;-0.04497904,0.09181108;-0.3669543;0.0121066,0.1028985;-0.7075616;0.09187976,0.1104855;-0.758312;0.03338338,-0.07549277;-0.002027299;-0.02639569,-0.0923879;-0.3795123;0.01384919,-0.1000583;-0.7210178;0.09010619,-0.113025;-0.7094806;-0.007315531,0.001769779;0.3998311;0.00943823,12.31642
+0;0;0,0.005487216;0.1994073;0.01437461,0.01469735;0.499099;0.02264848,0.1226167;0.3693153;-0.01139829,0.1910907;0.09841487;0.006609298,0.2406468;-0.1745975;-0.03091972,-0.1011545;0.3604634;0.00757123,-0.2049487;0.1004341;0.01096116,-0.3203421;-0.1528903;-0.01922394,0.06916613;0.004448632;-0.03995318,0.07822802;-0.3730953;0.002218097,0.07382116;-0.7161558;0.07142896,0.06741368;-0.7035801;-0.02683263,-0.07187784;0.003279531;-0.03496886,-0.1069418;-0.3740189;-0.006396195,-0.1305358;-0.7169844;0.0593152,-0.1170512;-0.7620758;-0.005333476,0.01144809;0.3991519;0.02253284,0;0;0,0.0008361419;0.1998395;0.007967855,0.003245261;0.499771;0.006165864,0.1116182;0.373995;-0.03277553,0.1953505;0.1078501;-0.009200132,0.2321588;-0.1641169;-0.06468977,-0.1087363;0.3545053;0.01361481,-0.2680272;0.1245736;0.02617869,-0.4826205;-0.05273728;-0.003996313,0.06575251;0.007738725;-0.04490789,0.09180447;-0.3670281;0.01228597,0.102914;-0.7076442;0.09201828,0.1104726;-0.7583116;0.03340404,-0.07543607;-0.00184372;-0.02657066,-0.09277602;-0.3792653;0.0140777,-0.1000696;-0.7207484;0.09047167,-0.1129789;-0.709205;-0.006958857,0.002296447;0.3998288;0.009430812,12.3341
+0;0;0,0.005487216;0.1994073;0.01437461,0.01469735;0.499099;0.02264848,0.1226167;0.3693153;-0.01139829,0.1910907;0.09841487;0.006609298,0.2406468;-0.1745975;-0.03091972,-0.1011545;0.3604634;0.00757123,-0.2049487;0.1004341;0.01096116,-0.3203421;-0.1528903;-0.01922394,0.06916613;0.004448632;-0.03995318,0.07822802;-0.3730953;0.002218097,0.07382116;-0.7161558;0.07142896,0.06741368;-0.7035801;-0.02683263,-0.07187784;0.003279531;-0.03496886,-0.1069418;-0.3740189;-0.006396195,-0.1305358;-0.7169844;0.0593152,-0.1170512;-0.7620758;-0.005333476,0.01144809;0.3991519;0.02253284,0;0;0,0.0008361419;0.1998395;0.007967855,0.003245261;0.499771;0.006165864,0.1116182;0.373995;-0.03277553,0.1953505;0.1078501;-0.009200132,0.2321588;-0.1641169;-0.06468977,-0.1087363;0.3545053;0.01361481,-0.2680272;0.1245736;0.02617869,-0.4826205;-0.05273728;-0.003996313,0.06575251;0.007738725;-0.04490789,0.09180447;-0.3670281;0.01228597,0.102914;-0.7076442;0.09201828,0.1104726;-0.7583116;0.03340404,-0.07543607;-0.00184372;-0.02657066,-0.09277602;-0.3792653;0.0140777,-0.1000696;-0.7207484;0.09047167,-0.1129789;-0.709205;-0.006958857,0.002296447;0.3998288;0.009430812,12.34539
+0;0;0,0.005400573;0.1994189;0.01424554,0.0144805;0.4991195;0.02233945,0.1223935;0.3689628;-0.01148327,0.19039;0.09796068;0.006801119,0.2403218;-0.1749177;-0.03120198,-0.1009631;0.3589303;0.008746341,-0.2091563;0.1007128;0.01298325,-0.3328427;-0.1486056;-0.01770921,0.06909586;0.004545384;-0.04006371,0.07714521;-0.3729855;0.002428953,0.07267273;-0.7160947;0.07139304,0.06586715;-0.7035246;-0.02684079,-0.07194087;0.003173113;-0.03484886,-0.107988;-0.3740366;-0.006328277,-0.1316583;-0.7170557;0.05907507,-0.1180738;-0.7619087;-0.005828753,0.01127523;0.3991709;0.02228362,0;0;0,0.0008361419;0.1998395;0.007967855,0.003245261;0.499771;0.006165864,0.1116182;0.373995;-0.03277553,0.1953505;0.1078501;-0.009200132,0.2321588;-0.1641169;-0.06468977,-0.1087363;0.3545053;0.01361481,-0.2680272;0.1245736;0.02617869,-0.4826205;-0.05273728;-0.003996313,0.06575251;0.007738725;-0.04490789,0.09180447;-0.3670281;0.01228597,0.102914;-0.7076442;0.09201828,0.1104726;-0.7583116;0.03340404,-0.07543607;-0.00184372;-0.02657066,-0.09277602;-0.3792653;0.0140777,-0.1000696;-0.7207484;0.09047167,-0.1129789;-0.709205;-0.006958857,0.002296447;0.3998288;0.009430812,12.3568
+0;0;0,0.005400573;0.1994189;0.01424554,0.0144805;0.4991195;0.02233945,0.1223935;0.3689628;-0.01148327,0.19039;0.09796068;0.006801119,0.2403218;-0.1749177;-0.03120198,-0.1009631;0.3589303;0.008746341,-0.2091563;0.1007128;0.01298325,-0.3328427;-0.1486056;-0.01770921,0.06909586;0.004545384;-0.04006371,0.07714521;-0.3729855;0.002428953,0.07267273;-0.7160947;0.07139304,0.06586715;-0.7035246;-0.02684079,-0.07194087;0.003173113;-0.03484886,-0.107988;-0.3740366;-0.006328277,-0.1316583;-0.7170557;0.05907507,-0.1180738;-0.7619087;-0.005828753,0.01127523;0.3991709;0.02228362,0;0;0,0.000968529;0.1998369;0.008016581,0.003596818;0.4997676;0.006343682,0.11181;0.3739121;-0.03281851,0.1951442;0.1076599;-0.009045301,0.2320914;-0.1642529;-0.06470798,-0.1087198;0.3551254;0.01353962,-0.2704547;0.1269606;0.0270541,-0.4865055;-0.04858217;-0.003058473,0.0657959;0.007586732;-0.04487027,0.09179682;-0.3671869;0.01230235,0.102896;-0.7078004;0.09204687,0.1103805;-0.7583987;0.033328,-0.07539205;-0.001629387;-0.02670925,-0.09294227;-0.3790135;0.01419506,-0.1002026;-0.7204616;0.090749,-0.1130738;-0.7089101;-0.006688088,0.002573213;0.3998245;0.009559299,12.36775
+0;0;0,0.005400573;0.1994189;0.01424554,0.0144805;0.4991195;0.02233945,0.1223935;0.3689628;-0.01148327,0.19039;0.09796068;0.006801119,0.2403218;-0.1749177;-0.03120198,-0.1009631;0.3589303;0.008746341,-0.2091563;0.1007128;0.01298325,-0.3328427;-0.1486056;-0.01770921,0.06909586;0.004545384;-0.04006371,0.07714521;-0.3729855;0.002428953,0.07267273;-0.7160947;0.07139304,0.06586715;-0.7035246;-0.02684079,-0.07194087;0.003173113;-0.03484886,-0.107988;-0.3740366;-0.006328277,-0.1316583;-0.7170557;0.05907507,-0.1180738;-0.7619087;-0.005828753,0.01127523;0.3991709;0.02228362,0;0;0,0.000968529;0.1998369;0.008016581,0.003596818;0.4997676;0.006343682,0.11181;0.3739121;-0.03281851,0.1951442;0.1076599;-0.009045301,0.2320914;-0.1642529;-0.06470798,-0.1087198;0.3551254;0.01353962,-0.2704547;0.1269606;0.0270541,-0.4865055;-0.04858217;-0.003058473,0.0657959;0.007586732;-0.04487027,0.09179682;-0.3671869;0.01230235,0.102896;-0.7078004;0.09204687,0.1103805;-0.7583987;0.033328,-0.07539205;-0.001629387;-0.02670925,-0.09294227;-0.3790135;0.01419506,-0.1002026;-0.7204616;0.090749,-0.1130738;-0.7089101;-0.006688088,0.002573213;0.3998245;0.009559299,12.39
+0;0;0,0.005359208;0.1994226;0.01420975,0.0143195;0.4991286;0.02223535,0.1221798;0.3689859;-0.01190311,0.1900078;0.09794179;0.006385254,0.2402468;-0.17487;-0.03169088,-0.1011253;0.3591325;0.008494068,-0.2140081;0.1029682;0.01460482,-0.3488152;-0.1404255;-0.01680464,0.06894449;0.004561498;-0.04032182,0.07586787;-0.3730114;0.001995891,0.0713961;-0.7161404;0.07086167,0.06456582;-0.7035736;-0.02736986,-0.0720558;0.003164881;-0.03461134,-0.1092185;-0.3739779;-0.006643254,-0.1329292;-0.717063;0.05839886,-0.1193966;-0.7617642;-0.00669032,0.01116157;0.3991784;0.02220481,0;0;0,0.001187876;0.199835;0.008034497,0.004303223;0.4997618;0.006444979,0.1123388;0.3738011;-0.03269168,0.1950827;0.1073701;-0.0088604,0.2319887;-0.1645527;-0.06450141,-0.1082831;0.3553488;0.01355015,-0.2720226;0.1286087;0.02690401,-0.4905933;-0.04379979;-0.003131591,0.06579946;0.00753505;-0.04487376,0.09155245;-0.3672468;0.01235686,0.1027806;-0.7077837;0.09241042,0.1105131;-0.7584006;0.03374918,-0.07541851;-0.001592896;-0.02663663,-0.0931901;-0.3789369;0.0145417,-0.1001293;-0.7204213;0.0909636,-0.09417909;-0.7662167;0.02600466,0.003103305;0.3998196;0.009624418,12.40136
+0;0;0,0.005359208;0.1994226;0.01420975,0.0143195;0.4991286;0.02223535,0.1221798;0.3689859;-0.01190311,0.1900078;0.09794179;0.006385254,0.2402468;-0.17487;-0.03169088,-0.1011253;0.3591325;0.008494068,-0.2140081;0.1029682;0.01460482,-0.3488152;-0.1404255;-0.01680464,0.06894449;0.004561498;-0.04032182,0.07586787;-0.3730114;0.001995891,0.0713961;-0.7161404;0.07086167,0.06456582;-0.7035736;-0.02736986,-0.0720558;0.003164881;-0.03461134,-0.1092185;-0.3739779;-0.006643254,-0.1329292;-0.717063;0.05839886,-0.1193966;-0.7617642;-0.00669032,0.01116157;0.3991784;0.02220481,0;0;0,0.001187876;0.199835;0.008034497,0.004303223;0.4997618;0.006444979,0.1123388;0.3738011;-0.03269168,0.1950827;0.1073701;-0.0088604,0.2319887;-0.1645527;-0.06450141,-0.1082831;0.3553488;0.01355015,-0.2720226;0.1286087;0.02690401,-0.4905933;-0.04379979;-0.003131591,0.06579946;0.00753505;-0.04487376,0.09155245;-0.3672468;0.01235686,0.1027806;-0.7077837;0.09241042,0.1105131;-0.7584006;0.03374918,-0.07541851;-0.001592896;-0.02663663,-0.0931901;-0.3789369;0.0145417,-0.1001293;-0.7204213;0.0909636,-0.09417909;-0.7662167;0.02600466,0.003103305;0.3998196;0.009624418,12.41235
+0;0;0,0.005359208;0.1994226;0.01420975,0.0143195;0.4991286;0.02223535,0.1221798;0.3689859;-0.01190311,0.1900078;0.09794179;0.006385254,0.2402468;-0.17487;-0.03169088,-0.1011253;0.3591325;0.008494068,-0.2140081;0.1029682;0.01460482,-0.3488152;-0.1404255;-0.01680464,0.06894449;0.004561498;-0.04032182,0.07586787;-0.3730114;0.001995891,0.0713961;-0.7161404;0.07086167,0.06456582;-0.7035736;-0.02736986,-0.0720558;0.003164881;-0.03461134,-0.1092185;-0.3739779;-0.006643254,-0.1329292;-0.717063;0.05839886,-0.1193966;-0.7617642;-0.00669032,0.01116157;0.3991784;0.02220481,0;0;0,0.001187876;0.199835;0.008034497,0.004303223;0.4997618;0.006444979,0.1123388;0.3738011;-0.03269168,0.1950827;0.1073701;-0.0088604,0.2319887;-0.1645527;-0.06450141,-0.1082831;0.3553488;0.01355015,-0.2720226;0.1286087;0.02690401,-0.4905933;-0.04379979;-0.003131591,0.06579946;0.00753505;-0.04487376,0.09155245;-0.3672468;0.01235686,0.1027806;-0.7077837;0.09241042,0.1105131;-0.7584006;0.03374918,-0.07541851;-0.001592896;-0.02663663,-0.0931901;-0.3789369;0.0145417,-0.1001293;-0.7204213;0.0909636,-0.09417909;-0.7662167;0.02600466,0.003103305;0.3998196;0.009624418,12.42363
+0;0;0,0.005643851;0.1994155;0.01419915,0.01511945;0.4991066;0.02218358,0.1226958;0.3687609;-0.01209525,0.1901712;0.0976257;0.006146198,0.2411279;-0.1750458;-0.03198088,-0.1005941;0.3593405;0.008546214,-0.217053;0.1047896;0.01496256,-0.3636602;-0.1318562;-0.01512232,0.06896137;0.004522386;-0.04029737,0.07544913;-0.3730989;0.001656484,0.07107839;-0.7163068;0.07013401,0.06423537;-0.7037293;-0.02809853,-0.07202002;0.003216975;-0.03468093,-0.1096216;-0.3738096;-0.005748674,-0.1333781;-0.7170407;0.05850156,-0.1198136;-0.7611638;-0.007238582,0.01178302;0.3991622;0.02217012,0;0;0,0.001359221;0.1998343;0.00802512,0.004793494;0.4997578;0.00645687,0.1127148;0.3736389;-0.03261018,0.1950971;0.1070924;-0.008816401,0.2318548;-0.1648534;-0.06444314,-0.1081183;0.3558954;0.01353124,-0.2739657;0.13074;0.02766122,-0.4930332;-0.04089977;-0.003148526,0.06584024;0.00744587;-0.04482881,0.09135277;-0.3673787;0.01222964,0.1025819;-0.7077664;0.09291454,0.1105929;-0.7580829;0.03387987,-0.07537577;-0.001431895;-0.02676646,-0.09327181;-0.3787411;0.01467598,-0.1000401;-0.7202518;0.09099532,-0.09342776;-0.7672393;0.02751935,0.003486774;0.3998166;0.009626722,12.43475
+0;0;0,0.005643851;0.1994155;0.01419915,0.01511945;0.4991066;0.02218358,0.1226958;0.3687609;-0.01209525,0.1901712;0.0976257;0.006146198,0.2411279;-0.1750458;-0.03198088,-0.1005941;0.3593405;0.008546214,-0.217053;0.1047896;0.01496256,-0.3636602;-0.1318562;-0.01512232,0.06896137;0.004522386;-0.04029737,0.07544913;-0.3730989;0.001656484,0.07107839;-0.7163068;0.07013401,0.06423537;-0.7037293;-0.02809853,-0.07202002;0.003216975;-0.03468093,-0.1096216;-0.3738096;-0.005748674,-0.1333781;-0.7170407;0.05850156,-0.1198136;-0.7611638;-0.007238582,0.01178302;0.3991622;0.02217012,0;0;0,0.001359221;0.1998343;0.00802512,0.004793494;0.4997578;0.00645687,0.1127148;0.3736389;-0.03261018,0.1950971;0.1070924;-0.008816401,0.2318548;-0.1648534;-0.06444314,-0.1081183;0.3558954;0.01353124,-0.2739657;0.13074;0.02766122,-0.4930332;-0.04089977;-0.003148526,0.06584024;0.00744587;-0.04482881,0.09135277;-0.3673787;0.01222964,0.1025819;-0.7077664;0.09291454,0.1105929;-0.7580829;0.03387987,-0.07537577;-0.001431895;-0.02676646,-0.09327181;-0.3787411;0.01467598,-0.1000401;-0.7202518;0.09099532,-0.09342776;-0.7672393;0.02751935,0.003486774;0.3998166;0.009626722,12.45715
+0;0;0,0.005643851;0.1994155;0.01419915,0.01511945;0.4991066;0.02218358,0.1226958;0.3687609;-0.01209525,0.1901712;0.0976257;0.006146198,0.2411279;-0.1750458;-0.03198088,-0.1005941;0.3593405;0.008546214,-0.217053;0.1047896;0.01496256,-0.3636602;-0.1318562;-0.01512232,0.06896137;0.004522386;-0.04029737,0.07544913;-0.3730989;0.001656484,0.07107839;-0.7163068;0.07013401,0.06423537;-0.7037293;-0.02809853,-0.07202002;0.003216975;-0.03468093,-0.1096216;-0.3738096;-0.005748674,-0.1333781;-0.7170407;0.05850156,-0.1198136;-0.7611638;-0.007238582,0.01178302;0.3991622;0.02217012,0;0;0,0.001590159;0.1998346;0.007974616,0.005399455;0.4997534;0.006362505,0.1132074;0.3735769;-0.03262972,0.1952561;0.106929;-0.008819984,0.2317583;-0.1650153;-0.06462259,-0.1076955;0.3560647;0.01364216,-0.2763704;0.1329894;0.02728838,-0.4960844;-0.03790241;-0.003071479,0.06588829;0.007387664;-0.0447678,0.09140995;-0.3674345;0.01230182,0.1025296;-0.7078372;0.09293884,0.1104078;-0.7578097;0.03342123,-0.07533706;-0.00135274;-0.02687931,-0.09341465;-0.3786165;0.01489652,-0.1001335;-0.720119;0.09125666,-0.1128919;-0.7085441;-0.006199665,0.00397002;0.3998143;0.009546097,12.47938
+0;0;0,0.005727341;0.1994137;0.01419101,0.01528635;0.4991027;0.0221512,0.1227394;0.3686613;-0.0123592,0.1904514;0.09758681;0.005908862,0.2408671;-0.1751764;-0.03228115,-0.1005249;0.3595309;0.008584641,-0.2229178;0.1078515;0.01738486,-0.378351;-0.1231063;-0.01259869,0.06893215;0.004416639;-0.04035904,0.07485725;-0.3732366;0.001389138,0.07045689;-0.716459;0.06979266,0.06353432;-0.703882;-0.02843422,-0.07203135;0.003349012;-0.03464489,-0.1099792;-0.3736504;-0.005810324,-0.1337981;-0.7168063;0.05881685,-0.1202923;-0.7602049;-0.007743236,0.011928;0.3991591;0.02214759,0;0;0,0.001590159;0.1998346;0.007974616,0.005399455;0.4997534;0.006362505,0.1132074;0.3735769;-0.03262972,0.1952561;0.106929;-0.008819984,0.2317583;-0.1650153;-0.06462259,-0.1076955;0.3560647;0.01364216,-0.2763704;0.1329894;0.02728838,-0.4960844;-0.03790241;-0.003071479,0.06588829;0.007387664;-0.0447678,0.09140995;-0.3674345;0.01230182,0.1025296;-0.7078372;0.09293884,0.1104078;-0.7578097;0.03342123,-0.07533706;-0.00135274;-0.02687931,-0.09341465;-0.3786165;0.01489652,-0.1001335;-0.720119;0.09125666,-0.1128919;-0.7085441;-0.006199665,0.00397002;0.3998143;0.009546097,12.4906
+0;0;0,0.005727341;0.1994137;0.01419101,0.01528635;0.4991027;0.0221512,0.1227394;0.3686613;-0.0123592,0.1904514;0.09758681;0.005908862,0.2408671;-0.1751764;-0.03228115,-0.1005249;0.3595309;0.008584641,-0.2229178;0.1078515;0.01738486,-0.378351;-0.1231063;-0.01259869,0.06893215;0.004416639;-0.04035904,0.07485725;-0.3732366;0.001389138,0.07045689;-0.716459;0.06979266,0.06353432;-0.703882;-0.02843422,-0.07203135;0.003349012;-0.03464489,-0.1099792;-0.3736504;-0.005810324,-0.1337981;-0.7168063;0.05881685,-0.1202923;-0.7602049;-0.007743236,0.011928;0.3991591;0.02214759,0;0;0,0.001758672;0.199833;0.007980252,0.005788815;0.4997491;0.006399694,0.1135619;0.3735736;-0.0325165,0.1952862;0.1068224;-0.008748489,0.2311993;-0.1651675;-0.06471062,-0.1073579;0.3560288;0.01378609,-0.278087;0.1345065;0.02718294,-0.5006291;-0.03273644;-0.002896655,0.06592946;0.007354023;-0.04471269,0.09138335;-0.3674382;0.01258376,0.1024413;-0.7078534;0.09317662,0.1105131;-0.7578008;0.03365125,-0.07531585;-0.001316581;-0.02694047,-0.09344508;-0.3786337;0.01432851,-0.1003058;-0.7200639;0.09099868,-0.1130698;-0.7084882;-0.006457098,0.004290643;0.3998106;0.009571621,12.50196
+0;0;0,0.005727341;0.1994137;0.01419101,0.01528635;0.4991027;0.0221512,0.1227394;0.3686613;-0.0123592,0.1904514;0.09758681;0.005908862,0.2408671;-0.1751764;-0.03228115,-0.1005249;0.3595309;0.008584641,-0.2229178;0.1078515;0.01738486,-0.378351;-0.1231063;-0.01259869,0.06893215;0.004416639;-0.04035904,0.07485725;-0.3732366;0.001389138,0.07045689;-0.716459;0.06979266,0.06353432;-0.703882;-0.02843422,-0.07203135;0.003349012;-0.03464489,-0.1099792;-0.3736504;-0.005810324,-0.1337981;-0.7168063;0.05881685,-0.1202923;-0.7602049;-0.007743236,0.011928;0.3991591;0.02214759,0;0;0,0.001758672;0.199833;0.007980252,0.005788815;0.4997491;0.006399694,0.1135619;0.3735736;-0.0325165,0.1952862;0.1068224;-0.008748489,0.2311993;-0.1651675;-0.06471062,-0.1073579;0.3560288;0.01378609,-0.278087;0.1345065;0.02718294,-0.5006291;-0.03273644;-0.002896655,0.06592946;0.007354023;-0.04471269,0.09138335;-0.3674382;0.01258376,0.1024413;-0.7078534;0.09317662,0.1105131;-0.7578008;0.03365125,-0.07531585;-0.001316581;-0.02694047,-0.09344508;-0.3786337;0.01432851,-0.1003058;-0.7200639;0.09099868,-0.1130698;-0.7084882;-0.006457098,0.004290643;0.3998106;0.009571621,12.52395
+0;0;0,0.005578028;0.1994212;0.01414481,0.01489474;0.4991195;0.02204735,0.1222516;0.3684168;-0.01278658,0.1897168;0.09729812;0.005736474,0.2398365;-0.1755185;-0.03246171,-0.1005965;0.3585594;0.009481945,-0.2289304;0.1099292;0.02013366,-0.3944745;-0.1139528;-0.009395463,0.06878287;0.004565632;-0.04059645,0.07346136;-0.37312;0.001016624,0.06898174;-0.7162697;0.06977849,0.0616766;-0.7037096;-0.02841768,-0.07213102;0.003173732;-0.0344535,-0.1117449;-0.3736775;-0.005925134,-0.1352815;-0.7169016;0.05844288,-0.1222895;-0.7605364;-0.007958442,0.01161875;0.3991731;0.02206179,0;0;0,0.001971784;0.1998272;0.008075627,0.006395662;0.4997391;0.006690435,0.1139917;0.3734413;-0.03232405,0.1951974;0.1064915;-0.009012159,0.2306849;-0.1655918;-0.06479116,-0.1070156;0.3563507;0.01409654,-0.279966;0.1365646;0.02759568,-0.505007;-0.02717623;-0.003153468,0.06596261;0.007324858;-0.04466857,0.09135386;-0.3674874;0.01252487,0.1023225;-0.7078226;0.09346686,0.1102392;-0.7571492;0.03309617,-0.07526864;-0.00129985;-0.02707291,-0.09368794;-0.3786647;0.01362698,-0.1005966;-0.7199461;0.09095291,-0.1133731;-0.7083557;-0.006503992,0.004758979;0.3998004;0.00978785,12.5354
+0;0;0,0.005578028;0.1994212;0.01414481,0.01489474;0.4991195;0.02204735,0.1222516;0.3684168;-0.01278658,0.1897168;0.09729812;0.005736474,0.2398365;-0.1755185;-0.03246171,-0.1005965;0.3585594;0.009481945,-0.2289304;0.1099292;0.02013366,-0.3944745;-0.1139528;-0.009395463,0.06878287;0.004565632;-0.04059645,0.07346136;-0.37312;0.001016624,0.06898174;-0.7162697;0.06977849,0.0616766;-0.7037096;-0.02841768,-0.07213102;0.003173732;-0.0344535,-0.1117449;-0.3736775;-0.005925134,-0.1352815;-0.7169016;0.05844288,-0.1222895;-0.7605364;-0.007958442,0.01161875;0.3991731;0.02206179,0;0;0,0.001971784;0.1998272;0.008075627,0.006395662;0.4997391;0.006690435,0.1139917;0.3734413;-0.03232405,0.1951974;0.1064915;-0.009012159,0.2306849;-0.1655918;-0.06479116,-0.1070156;0.3563507;0.01409654,-0.279966;0.1365646;0.02759568,-0.505007;-0.02717623;-0.003153468,0.06596261;0.007324858;-0.04466857,0.09135386;-0.3674874;0.01252487,0.1023225;-0.7078226;0.09346686,0.1102392;-0.7571492;0.03309617,-0.07526864;-0.00129985;-0.02707291,-0.09368794;-0.3786647;0.01362698,-0.1005966;-0.7199461;0.09095291,-0.1133731;-0.7083557;-0.006503992,0.004758979;0.3998004;0.00978785,12.55751
+0;0;0,0.005578028;0.1994212;0.01414481,0.01489474;0.4991195;0.02204735,0.1222516;0.3684168;-0.01278658,0.1897168;0.09729812;0.005736474,0.2398365;-0.1755185;-0.03246171,-0.1005965;0.3585594;0.009481945,-0.2289304;0.1099292;0.02013366,-0.3944745;-0.1139528;-0.009395463,0.06878287;0.004565632;-0.04059645,0.07346136;-0.37312;0.001016624,0.06898174;-0.7162697;0.06977849,0.0616766;-0.7037096;-0.02841768,-0.07213102;0.003173732;-0.0344535,-0.1117449;-0.3736775;-0.005925134,-0.1352815;-0.7169016;0.05844288,-0.1222895;-0.7605364;-0.007958442,0.01161875;0.3991731;0.02206179,0;0;0,0.002235261;0.1998235;0.0080976,0.007078999;0.4997285;0.006671818,0.1145905;0.373163;-0.03199079,0.195033;0.1059472;-0.009083632,0.230435;-0.1661778;-0.06471328,-0.1064689;0.3563341;0.0142713,-0.282365;0.1388905;0.0276458,-0.5092412;-0.0221698;-0.00376657,0.06603643;0.007228927;-0.04457502,0.09144592;-0.3675264;0.01298238,0.1023629;-0.7078753;0.09387393,0.1103924;-0.7573938;0.0337712,-0.0752548;-0.001196165;-0.02711611,-0.09356885;-0.3785042;0.01415408,-0.1004971;-0.7197642;0.09157259,-0.1132251;-0.7081702;-0.005891338,0.005295171;0.399793;0.009786895,12.56885
+0;0;0,0.005863112;0.1994106;0.01417935,0.01571978;0.4990904;0.02211781,0.1227514;0.3683248;-0.01309317,0.1898927;0.09714049;0.005644487,0.2396174;-0.1757519;-0.03252877,-0.1000845;0.3588685;0.009580444,-0.2330148;0.112676;0.0204778,-0.408309;-0.1039071;-0.007157413,0.06877596;0.004524244;-0.04061279,0.07305918;-0.3731525;0.001124058,0.06859211;-0.7163565;0.06961481,0.06122263;-0.7037882;-0.02857801,-0.07213262;0.003223158;-0.03444554,-0.1121837;-0.3735796;-0.005887134,-0.1355893;-0.7169001;0.05801314,-0.1225015;-0.7601193;-0.008827366,0.01225448;0.3991505;0.02212339,0;0;0,0.002235261;0.1998235;0.0080976,0.007078999;0.4997285;0.006671818,0.1145905;0.373163;-0.03199079,0.195033;0.1059472;-0.009083632,0.230435;-0.1661778;-0.06471328,-0.1064689;0.3563341;0.0142713,-0.282365;0.1388905;0.0276458,-0.5092412;-0.0221698;-0.00376657,0.06603643;0.007228927;-0.04457502,0.09144592;-0.3675264;0.01298238,0.1023629;-0.7078753;0.09387393,0.1103924;-0.7573938;0.0337712,-0.0752548;-0.001196165;-0.02711611,-0.09356885;-0.3785042;0.01415408,-0.1004971;-0.7197642;0.09157259,-0.1132251;-0.7081702;-0.005891338,0.005295171;0.399793;0.009786895,12.59114
+0;0;0,0.005863112;0.1994106;0.01417935,0.01571978;0.4990904;0.02211781,0.1227514;0.3683248;-0.01309317,0.1898927;0.09714049;0.005644487,0.2396174;-0.1757519;-0.03252877,-0.1000845;0.3588685;0.009580444,-0.2330148;0.112676;0.0204778,-0.408309;-0.1039071;-0.007157413,0.06877596;0.004524244;-0.04061279,0.07305918;-0.3731525;0.001124058,0.06859211;-0.7163565;0.06961481,0.06122263;-0.7037882;-0.02857801,-0.07213262;0.003223158;-0.03444554,-0.1121837;-0.3735796;-0.005887134,-0.1355893;-0.7169001;0.05801314,-0.1225015;-0.7601193;-0.008827366,0.01225448;0.3991505;0.02212339,0;0;0,0.002621087;0.1998122;0.008260489,0.008381179;0.499705;0.007500175,0.1154182;0.3732749;-0.03190187,0.1952192;0.1058516;-0.009172935,0.2304121;-0.1662705;-0.06494942,-0.1056281;0.3566208;0.01440983,-0.2844816;0.1416235;0.02810629,-0.5136797;-0.01632427;-0.002236919,0.06604805;0.007187608;-0.04456449,0.0914491;-0.3675715;0.01297162,0.1022993;-0.7078363;0.09422514,0.1105837;-0.7578217;0.03478017,-0.07524419;-0.001155803;-0.0271473,-0.09401187;-0.3784201;0.014318,-0.1008228;-0.71966;0.09183532,-0.1135205;-0.708032;-0.005638987,0.006273041;0.3997679;0.0103528,12.60241
+0;0;0,0.005863112;0.1994106;0.01417935,0.01571978;0.4990904;0.02211781,0.1227514;0.3683248;-0.01309317,0.1898927;0.09714049;0.005644487,0.2396174;-0.1757519;-0.03252877,-0.1000845;0.3588685;0.009580444,-0.2330148;0.112676;0.0204778,-0.408309;-0.1039071;-0.007157413,0.06877596;0.004524244;-0.04061279,0.07305918;-0.3731525;0.001124058,0.06859211;-0.7163565;0.06961481,0.06122263;-0.7037882;-0.02857801,-0.07213262;0.003223158;-0.03444554,-0.1121837;-0.3735796;-0.005887134,-0.1355893;-0.7169001;0.05801314,-0.1225015;-0.7601193;-0.008827366,0.01225448;0.3991505;0.02212339,0;0;0,0.002765853;0.1998026;0.008443539,0.008837545;0.4996904;0.007949167,0.1157406;0.3733898;-0.03169551,0.1951774;0.105855;-0.009004343,0.2303055;-0.1662626;-0.06484406,-0.1053821;0.356861;0.01474297,-0.2873139;0.1444341;0.02799447,-0.5174196;-0.01224518;-0.002054984,0.06600795;0.007154831;-0.04462913,0.09136225;-0.3675802;0.01308388,0.1020496;-0.7078365;0.09439471,0.1105911;-0.757895;0.03508463,-0.0752838;-0.001156737;-0.02703722,-0.09420377;-0.378403;0.01452378,-0.1009985;-0.7196097;0.09218863,-0.1137204;-0.707961;-0.005286418,0.006617558;0.3997528;0.0106974,12.62461
+0;0;0,0.005843403;0.1994195;0.01406136,0.01570941;0.499103;0.02184259,0.1226978;0.3684692;-0.01353707,0.1897732;0.09729856;0.005629629,0.2393535;-0.1756286;-0.03248245,-0.1003359;0.3593253;0.01005225,-0.2422159;0.1183434;0.02411788,-0.4195154;-0.0964998;-0.004294673,0.06876923;0.004532374;-0.04062328,0.07261318;-0.3731791;0.0008408949,0.06803314;-0.7163974;0.06925294,0.06041696;-0.7038298;-0.02892093,-0.0721407;0.003201618;-0.03443065,-0.112964;-0.3735193;-0.00588516,-0.1363324;-0.7169222;0.05758429,-0.1237134;-0.7608355;-0.008579083,0.01223608;0.3991634;0.02190403,0;0;0,0.002765853;0.1998026;0.008443539,0.008837545;0.4996904;0.007949167,0.1157406;0.3733898;-0.03169551,0.1951774;0.105855;-0.009004343,0.2303055;-0.1662626;-0.06484406,-0.1053821;0.356861;0.01474297,-0.2873139;0.1444341;0.02799447,-0.5174196;-0.01224518;-0.002054984,0.06600795;0.007154831;-0.04462913,0.09136225;-0.3675802;0.01308388,0.1020496;-0.7078365;0.09439471,0.1105911;-0.757895;0.03508463,-0.0752838;-0.001156737;-0.02703722,-0.09420377;-0.378403;0.01452378,-0.1009985;-0.7196097;0.09218863,-0.1137204;-0.707961;-0.005286418,0.006617558;0.3997528;0.0106974,12.63587
+0;0;0,0.005843403;0.1994195;0.01406136,0.01570941;0.499103;0.02184259,0.1226978;0.3684692;-0.01353707,0.1897732;0.09729856;0.005629629,0.2393535;-0.1756286;-0.03248245,-0.1003359;0.3593253;0.01005225,-0.2422159;0.1183434;0.02411788,-0.4195154;-0.0964998;-0.004294673,0.06876923;0.004532374;-0.04062328,0.07261318;-0.3731791;0.0008408949,0.06803314;-0.7163974;0.06925294,0.06041696;-0.7038298;-0.02892093,-0.0721407;0.003201618;-0.03443065,-0.112964;-0.3735193;-0.00588516,-0.1363324;-0.7169222;0.05758429,-0.1237134;-0.7608355;-0.008579083,0.01223608;0.3991634;0.02190403,0;0;0,0.002765853;0.1998026;0.008443539,0.008837545;0.4996904;0.007949167,0.1157406;0.3733898;-0.03169551,0.1951774;0.105855;-0.009004343,0.2303055;-0.1662626;-0.06484406,-0.1053821;0.356861;0.01474297,-0.2873139;0.1444341;0.02799447,-0.5174196;-0.01224518;-0.002054984,0.06600795;0.007154831;-0.04462913,0.09136225;-0.3675802;0.01308388,0.1020496;-0.7078365;0.09439471,0.1105911;-0.757895;0.03508463,-0.0752838;-0.001156737;-0.02703722,-0.09420377;-0.378403;0.01452378,-0.1009985;-0.7196097;0.09218863,-0.1137204;-0.707961;-0.005286418,0.006617558;0.3997528;0.0106974,12.64702
+0;0;0,0.005843403;0.1994195;0.01406136,0.01570941;0.499103;0.02184259,0.1226978;0.3684692;-0.01353707,0.1897732;0.09729856;0.005629629,0.2393535;-0.1756286;-0.03248245,-0.1003359;0.3593253;0.01005225,-0.2422159;0.1183434;0.02411788,-0.4195154;-0.0964998;-0.004294673,0.06876923;0.004532374;-0.04062328,0.07261318;-0.3731791;0.0008408949,0.06803314;-0.7163974;0.06925294,0.06041696;-0.7038298;-0.02892093,-0.0721407;0.003201618;-0.03443065,-0.112964;-0.3735193;-0.00588516,-0.1363324;-0.7169222;0.05758429,-0.1237134;-0.7608355;-0.008579083,0.01223608;0.3991634;0.02190403,0;0;0,0.002811915;0.1998003;0.008481201,0.00887989;0.4996881;0.00802531,0.1158373;0.3735326;-0.03160099,0.1948301;0.105846;-0.009151191,0.2302767;-0.1661054;-0.06559585,-0.1053656;0.3569567;0.01489354,-0.2904821;0.1473193;0.02846054,-0.5228857;-0.006034434;-0.001055803,0.06597892;0.007140377;-0.04467435,0.09136479;-0.3676053;0.012956,0.1020022;-0.7078288;0.09441049,0.1106916;-0.7579281;0.0351771,-0.07530744;-0.001150977;-0.02697157,-0.09430834;-0.3783765;0.01474035,-0.1010022;-0.7195985;0.09234601,-0.1137529;-0.7079449;-0.005126208,0.006668619;0.3997501;0.01076461,12.66926
+0;0;0,0.005920205;0.1994213;0.01400334,0.01597464;0.4991015;0.02165665,0.1229403;0.3686932;-0.01371919,0.1898873;0.09749079;0.005447697,0.2393819;-0.1754615;-0.03259594,-0.1004545;0.359948;0.01087923,-0.2471375;0.1219388;0.02623354,-0.4360468;-0.08294618;-0.0008850824,0.06873212;0.004597565;-0.04067872,0.07238831;-0.3730673;0.001223952,0.06777396;-0.7164018;0.06904812,0.05989399;-0.7038325;-0.02910522,-0.07219508;0.003133135;-0.03432279,-0.1132452;-0.3735839;-0.006053919,-0.1363405;-0.7169522;0.05770208,-0.1239669;-0.7602796;-0.009155937,0.0124324;0.3991643;0.02177041,0;0;0,0.002811915;0.1998003;0.008481201,0.00887989;0.4996881;0.00802531,0.1158373;0.3735326;-0.03160099,0.1948301;0.105846;-0.009151191,0.2302767;-0.1661054;-0.06559585,-0.1053656;0.3569567;0.01489354,-0.2904821;0.1473193;0.02846054,-0.5228857;-0.006034434;-0.001055803,0.06597892;0.007140377;-0.04467435,0.09136479;-0.3676053;0.012956,0.1020022;-0.7078288;0.09441049,0.1106916;-0.7579281;0.0351771,-0.07530744;-0.001150977;-0.02697157,-0.09430834;-0.3783765;0.01474035,-0.1010022;-0.7195985;0.09234601,-0.1137529;-0.7079449;-0.005126208,0.006668619;0.3997501;0.01076461,12.68062
+0;0;0,0.005920205;0.1994213;0.01400334,0.01597464;0.4991015;0.02165665,0.1229403;0.3686932;-0.01371919,0.1898873;0.09749079;0.005447697,0.2393819;-0.1754615;-0.03259594,-0.1004545;0.359948;0.01087923,-0.2471375;0.1219388;0.02623354,-0.4360468;-0.08294618;-0.0008850824,0.06873212;0.004597565;-0.04067872,0.07238831;-0.3730673;0.001223952,0.06777396;-0.7164018;0.06904812,0.05989399;-0.7038325;-0.02910522,-0.07219508;0.003133135;-0.03432279,-0.1132452;-0.3735839;-0.006053919,-0.1363405;-0.7169522;0.05770208,-0.1239669;-0.7602796;-0.009155937,0.0124324;0.3991643;0.02177041,0;0;0,0.003003189;0.1997956;0.008526139,0.00919409;0.4996808;0.008165495,0.1161462;0.3737918;-0.03160649,0.1950516;0.1060595;-0.009395173,0.2305563;-0.1657787;-0.06634611,-0.1052018;0.3572897;0.0150407,-0.2967882;0.1535065;0.02796474,-0.528139;-0.001740918;0.0001246128,0.06595803;0.007112437;-0.04470962,0.09110142;-0.367617;0.01313164,0.101732;-0.7078277;0.09464024,0.1106561;-0.7580283;0.03557887,-0.07531095;-0.001127024;-0.02696275,-0.09480999;-0.3783099;0.01490457,-0.1013811;-0.7195249;0.09255186,-0.1141401;-0.7078624;-0.004920922,0.006960754;0.3997426;0.01087992,12.70326
+0;0;0,0.005920205;0.1994213;0.01400334,0.01597464;0.4991015;0.02165665,0.1229403;0.3686932;-0.01371919,0.1898873;0.09749079;0.005447697,0.2393819;-0.1754615;-0.03259594,-0.1004545;0.359948;0.01087923,-0.2471375;0.1219388;0.02623354,-0.4360468;-0.08294618;-0.0008850824,0.06873212;0.004597565;-0.04067872,0.07238831;-0.3730673;0.001223952,0.06777396;-0.7164018;0.06904812,0.05989399;-0.7038325;-0.02910522,-0.07219508;0.003133135;-0.03432279,-0.1132452;-0.3735839;-0.006053919,-0.1363405;-0.7169522;0.05770208,-0.1239669;-0.7602796;-0.009155937,0.0124324;0.3991643;0.02177041,0;0;0,0.003003189;0.1997956;0.008526139,0.00919409;0.4996808;0.008165495,0.1161462;0.3737918;-0.03160649,0.1950516;0.1060595;-0.009395173,0.2305563;-0.1657787;-0.06634611,-0.1052018;0.3572897;0.0150407,-0.2967882;0.1535065;0.02796474,-0.528139;-0.001740918;0.0001246128,0.06595803;0.007112437;-0.04470962,0.09110142;-0.367617;0.01313164,0.101732;-0.7078277;0.09464024,0.1106561;-0.7580283;0.03557887,-0.07531095;-0.001127024;-0.02696275,-0.09480999;-0.3783099;0.01490457,-0.1013811;-0.7195249;0.09255186,-0.1141401;-0.7078624;-0.004920922,0.006960754;0.3997426;0.01087992,12.7145
+0;0;0,0.006029537;0.1994241;0.01391601,0.0162409;0.4991025;0.02142861,0.1230756;0.3687091;-0.01415745,0.190124;0.0975405;0.005131949,0.2393784;-0.1754115;-0.03322445,-0.1003403;0.360201;0.01085673,-0.2531967;0.1262363;0.0280447,-0.4465911;-0.07436427;0.0005123317,0.06863955;0.004586931;-0.04083592,0.07188328;-0.373116;0.0007572547,0.06716952;-0.7164274;0.06869135,0.0591981;-0.70386;-0.02945426,-0.07226072;0.003140009;-0.03418376,-0.1138195;-0.3735195;-0.005890589,-0.1368487;-0.7170405;0.05706136,-0.1247824;-0.7603443;-0.009878654,0.01264811;0.3991672;0.02159274,0;0;0,0.003003189;0.1997956;0.008526139,0.00919409;0.4996808;0.008165495,0.1161462;0.3737918;-0.03160649,0.1950516;0.1060595;-0.009395173,0.2305563;-0.1657787;-0.06634611,-0.1052018;0.3572897;0.0150407,-0.2967882;0.1535065;0.02796474,-0.528139;-0.001740918;0.0001246128,0.06595803;0.007112437;-0.04470962,0.09110142;-0.367617;0.01313164,0.101732;-0.7078277;0.09464024,0.1106561;-0.7580283;0.03557887,-0.07531095;-0.001127024;-0.02696275,-0.09480999;-0.3783099;0.01490457,-0.1013811;-0.7195249;0.09255186,-0.1141401;-0.7078624;-0.004920922,0.006960754;0.3997426;0.01087992,12.7257
+0;0;0,0.006029537;0.1994241;0.01391601,0.0162409;0.4991025;0.02142861,0.1230756;0.3687091;-0.01415745,0.190124;0.0975405;0.005131949,0.2393784;-0.1754115;-0.03322445,-0.1003403;0.360201;0.01085673,-0.2531967;0.1262363;0.0280447,-0.4465911;-0.07436427;0.0005123317,0.06863955;0.004586931;-0.04083592,0.07188328;-0.373116;0.0007572547,0.06716952;-0.7164274;0.06869135,0.0591981;-0.70386;-0.02945426,-0.07226072;0.003140009;-0.03418376,-0.1138195;-0.3735195;-0.005890589,-0.1368487;-0.7170405;0.05706136,-0.1247824;-0.7603443;-0.009878654,0.01264811;0.3991672;0.02159274,0;0;0,0.002972755;0.1997938;0.008579083,0.008979265;0.4996826;0.008299042,0.1160454;0.373783;-0.03135433,0.1945617;0.1059316;-0.009199832,0.2300734;-0.1657484;-0.06689648,-0.1054459;0.3575177;0.01501176,-0.3003176;0.156968;0.02932544,-0.5365583;0.009291604;0.001361366,0.0659316;0.007057833;-0.04475725,0.09085606;-0.367694;0.01303389,0.1014312;-0.7078304;0.09485891,0.1102438;-0.7580598;0.03582002,-0.07531158;-0.001069106;-0.02696335,-0.09528207;-0.3782015;0.01513568,-0.1017151;-0.7193996;0.09286898,-0.1144072;-0.7077349;-0.004612945,0.006807886;0.3997425;0.01099276,12.73712
+0;0;0,0.006029537;0.1994241;0.01391601,0.0162409;0.4991025;0.02142861,0.1230756;0.3687091;-0.01415745,0.190124;0.0975405;0.005131949,0.2393784;-0.1754115;-0.03322445,-0.1003403;0.360201;0.01085673,-0.2531967;0.1262363;0.0280447,-0.4465911;-0.07436427;0.0005123317,0.06863955;0.004586931;-0.04083592,0.07188328;-0.373116;0.0007572547,0.06716952;-0.7164274;0.06869135,0.0591981;-0.70386;-0.02945426,-0.07226072;0.003140009;-0.03418376,-0.1138195;-0.3735195;-0.005890589,-0.1368487;-0.7170405;0.05706136,-0.1247824;-0.7603443;-0.009878654,0.01264811;0.3991672;0.02159274,0;0;0,0.002972755;0.1997938;0.008579083,0.008979265;0.4996826;0.008299042,0.1160454;0.373783;-0.03135433,0.1945617;0.1059316;-0.009199832,0.2300734;-0.1657484;-0.06689648,-0.1054459;0.3575177;0.01501176,-0.3003176;0.156968;0.02932544,-0.5365583;0.009291604;0.001361366,0.0659316;0.007057833;-0.04475725,0.09085606;-0.367694;0.01303389,0.1014312;-0.7078304;0.09485891,0.1102438;-0.7580598;0.03582002,-0.07531158;-0.001069106;-0.02696335,-0.09528207;-0.3782015;0.01513568,-0.1017151;-0.7193996;0.09286898,-0.1144072;-0.7077349;-0.004612945,0.006807886;0.3997425;0.01099276,12.74843
+0;0;0,0.006357776;0.1994267;0.01373147,0.01733397;0.4990848;0.02093775,0.1236513;0.3681946;-0.01480135,0.1905988;0.09699827;0.004449962,0.238991;-0.1761187;-0.03382922,-0.1000392;0.3611889;0.01241069,-0.2586918;0.1310367;0.02851441,-0.4600328;-0.06177829;0.0023578,0.06852838;0.004446421;-0.04103765,0.07155015;-0.3733148;3.949553E-05,0.06669378;-0.7166437;0.06787518,0.05816472;-0.7040839;-0.03022221,-0.07231792;0.003328729;-0.03404463,-0.114187;-0.3733365;-0.006290786,-0.1374364;-0.7169312;0.05617665,-0.1252924;-0.7601029;-0.01089371,0.0134533;0.3991605;0.02121977,0;0;0,0.003234576;0.1997912;0.008544818,0.009541652;0.4996735;0.008210181,0.1164611;0.373507;-0.03140565,0.1950077;0.105659;-0.009316912,0.2306596;-0.1659569;-0.06722834,-0.1049969;0.3575965;0.0151119,-0.3025593;0.1597683;0.03038073,-0.5411476;0.01594613;0.0022598,0.06590341;0.007090833;-0.04479353,0.09069483;-0.3676536;0.0131027,0.1011158;-0.7078074;0.0948756,0.1097448;-0.7581191;0.03592158,-0.07532364;-0.001121134;-0.02692753,-0.09573793;-0.3782281;0.01518593,-0.1020397;-0.7194015;0.09303848,-0.1147357;-0.7077355;-0.004443184,0.00728284;0.399736;0.01092803,12.77105
+0;0;0,0.006357776;0.1994267;0.01373147,0.01733397;0.4990848;0.02093775,0.1236513;0.3681946;-0.01480135,0.1905988;0.09699827;0.004449962,0.238991;-0.1761187;-0.03382922,-0.1000392;0.3611889;0.01241069,-0.2586918;0.1310367;0.02851441,-0.4600328;-0.06177829;0.0023578,0.06852838;0.004446421;-0.04103765,0.07155015;-0.3733148;3.949553E-05,0.06669378;-0.7166437;0.06787518,0.05816472;-0.7040839;-0.03022221,-0.07231792;0.003328729;-0.03404463,-0.114187;-0.3733365;-0.006290786,-0.1374364;-0.7169312;0.05617665,-0.1252924;-0.7601029;-0.01089371,0.0134533;0.3991605;0.02121977,0;0;0,0.003177191;0.1997873;0.008657379,0.009384066;0.4996716;0.008414286,0.1163571;0.373716;-0.03131054,0.194593;0.1057771;-0.009222694,0.2303082;-0.1658462;-0.06706029,-0.1051789;0.3577524;0.015296,-0.3056393;0.1629051;0.03111168,-0.5468833;0.0234019;0.003905855,0.0658917;0.00702303;-0.04482143,0.0905141;-0.3677542;0.01293496,0.1013623;-0.7077948;0.09512174,0.1096413;-0.7586824;0.03690955,-0.0753202;-0.001043681;-0.02694026,-0.09604669;-0.3781072;0.01540951,-0.1023273;-0.7192661;0.09332703,-0.1150604;-0.7075937;-0.004151002,0.007160366;0.3997326;0.01110647,12.79341
+0;0;0,0.006357776;0.1994267;0.01373147,0.01733397;0.4990848;0.02093775,0.1236513;0.3681946;-0.01480135,0.1905988;0.09699827;0.004449962,0.238991;-0.1761187;-0.03382922,-0.1000392;0.3611889;0.01241069,-0.2586918;0.1310367;0.02851441,-0.4600328;-0.06177829;0.0023578,0.06852838;0.004446421;-0.04103765,0.07155015;-0.3733148;3.949553E-05,0.06669378;-0.7166437;0.06787518,0.05816472;-0.7040839;-0.03022221,-0.07231792;0.003328729;-0.03404463,-0.114187;-0.3733365;-0.006290786,-0.1374364;-0.7169312;0.05617665,-0.1252924;-0.7601029;-0.01089371,0.0134533;0.3991605;0.02121977,0;0;0,0.003177191;0.1997873;0.008657379,0.009384066;0.4996716;0.008414286,0.1163571;0.373716;-0.03131054,0.194593;0.1057771;-0.009222694,0.2303082;-0.1658462;-0.06706029,-0.1051789;0.3577524;0.015296,-0.3056393;0.1629051;0.03111168,-0.5468833;0.0234019;0.003905855,0.0658917;0.00702303;-0.04482143,0.0905141;-0.3677542;0.01293496,0.1013623;-0.7077948;0.09512174,0.1096413;-0.7586824;0.03690955,-0.0753202;-0.001043681;-0.02694026,-0.09604669;-0.3781072;0.01540951,-0.1023273;-0.7192661;0.09332703,-0.1150604;-0.7075937;-0.004151002,0.007160366;0.3997326;0.01110647,12.8158
+0;0;0,0.00662553;0.1994222;0.01367108,0.01813992;0.4990634;0.02072142,0.1241041;0.3678724;-0.01519918,0.1913207;0.09671974;0.003726274,0.2389922;-0.1765735;-0.03419803,-0.09955211;0.3614489;0.01280078,-0.2641229;0.1355591;0.02983903,-0.4683863;-0.05401976;0.002704347,0.06840328;0.004415585;-0.04124915,0.0713032;-0.3733655;-0.0003461055,0.06645172;-0.7167077;0.06742249,0.05774732;-0.7041517;-0.0306588,-0.07241951;0.003385357;-0.03382239,-0.1145333;-0.3732977;-0.006687213,-0.1379359;-0.7168911;0.05572987,-0.1261029;-0.7599867;-0.01147885,0.01407268;0.3991467;0.02106373,0;0;0,0.003254933;0.199787;0.008635476,0.00953616;0.4996696;0.008352701,0.1165361;0.3737139;-0.03123775,0.1945354;0.1057017;-0.009201087,0.2303463;-0.1658734;-0.06720566,-0.1050993;0.3579252;0.01553221,-0.3078368;0.1655858;0.03294118,-0.5522411;0.03140001;0.007237008,0.06588595;0.007003996;-0.04483285,0.09069198;-0.3677651;0.01289748,0.1013689;-0.7078053;0.09510877,0.1093761;-0.7584844;0.0365702,-0.07533389;-0.001036888;-0.02690222,-0.09606612;-0.3780968;0.01547701,-0.1023429;-0.7192541;0.09340149,-0.1151171;-0.7075835;-0.004070848,0.007293944;0.3997315;0.01106161,12.83807
+0;0;0,0.00662553;0.1994222;0.01367108,0.01813992;0.4990634;0.02072142,0.1241041;0.3678724;-0.01519918,0.1913207;0.09671974;0.003726274,0.2389922;-0.1765735;-0.03419803,-0.09955211;0.3614489;0.01280078,-0.2641229;0.1355591;0.02983903,-0.4683863;-0.05401976;0.002704347,0.06840328;0.004415585;-0.04124915,0.0713032;-0.3733655;-0.0003461055,0.06645172;-0.7167077;0.06742249,0.05774732;-0.7041517;-0.0306588,-0.07241951;0.003385357;-0.03382239,-0.1145333;-0.3732977;-0.006687213,-0.1379359;-0.7168911;0.05572987,-0.1261029;-0.7599867;-0.01147885,0.01407268;0.3991467;0.02106373,0;0;0,0.003254933;0.199787;0.008635476,0.00953616;0.4996696;0.008352701,0.1165361;0.3737139;-0.03123775,0.1945354;0.1057017;-0.009201087,0.2303463;-0.1658734;-0.06720566,-0.1050993;0.3579252;0.01553221,-0.3078368;0.1655858;0.03294118,-0.5522411;0.03140001;0.007237008,0.06588595;0.007003996;-0.04483285,0.09069198;-0.3677651;0.01289748,0.1013689;-0.7078053;0.09510877,0.1093761;-0.7584844;0.0365702,-0.07533389;-0.001036888;-0.02690222,-0.09606612;-0.3780968;0.01547701,-0.1023429;-0.7192541;0.09340149,-0.1151171;-0.7075835;-0.004070848,0.007293944;0.3997315;0.01106161,12.86039
+0;0;0,0.00662553;0.1994222;0.01367108,0.01813992;0.4990634;0.02072142,0.1241041;0.3678724;-0.01519918,0.1913207;0.09671974;0.003726274,0.2389922;-0.1765735;-0.03419803,-0.09955211;0.3614489;0.01280078,-0.2641229;0.1355591;0.02983903,-0.4683863;-0.05401976;0.002704347,0.06840328;0.004415585;-0.04124915,0.0713032;-0.3733655;-0.0003461055,0.06645172;-0.7167077;0.06742249,0.05774732;-0.7041517;-0.0306588,-0.07241951;0.003385357;-0.03382239,-0.1145333;-0.3732977;-0.006687213,-0.1379359;-0.7168911;0.05572987,-0.1261029;-0.7599867;-0.01147885,0.01407268;0.3991467;0.02106373,0;0;0,0.003293978;0.1997852;0.008662157,0.009594319;0.4996674;0.008428056,0.1165518;0.3737077;-0.03128189,0.1947098;0.1057497;-0.009150444,0.2302431;-0.1658348;-0.06728163,-0.1050831;0.3580371;0.01563104,-0.3101685;0.1684068;0.03513253,-0.5571234;0.03922826;0.008184621,0.06588444;0.00696942;-0.04484047,0.09071039;-0.3677565;0.01316116,0.1014227;-0.7079633;0.09467529,0.1090324;-0.7581183;0.03536852,-0.07534711;-0.001017464;-0.02686591,-0.09603608;-0.3780764;0.01554258,-0.1023023;-0.7192202;0.09352758,-0.1151208;-0.7075464;-0.003939539,0.007351195;0.3997289;0.01112239,12.87184
+0;0;0,0.006806202;0.1994241;0.01355338,0.01858127;0.4990596;0.02040649,0.1243075;0.367678;-0.01574907,0.1911115;0.09644246;0.003447052,0.2385825;-0.1768672;-0.03461015,-0.09941657;0.3619624;0.01334662,-0.2699375;0.1405788;0.03100711,-0.4788402;-0.0437481;0.00302005,0.06846824;0.004432954;-0.04113938,0.07092563;-0.3734088;-0.0007709749,0.06600721;-0.7167525;0.06698491,0.05701468;-0.704205;-0.03106888,-0.07237623;0.003358196;-0.03391759,-0.1147723;-0.3733159;-0.007099107,-0.1380521;-0.7169991;0.0548675,-0.126043;-0.7599781;-0.01243666,0.01443209;0.3991466;0.02081767,0;0;0,0.003293978;0.1997852;0.008662157,0.009594319;0.4996674;0.008428056,0.1165518;0.3737077;-0.03128189,0.1947098;0.1057497;-0.009150444,0.2302431;-0.1658348;-0.06728163,-0.1050831;0.3580371;0.01563104,-0.3101685;0.1684068;0.03513253,-0.5571234;0.03922826;0.008184621,0.06588444;0.00696942;-0.04484047,0.09071039;-0.3677565;0.01316116,0.1014227;-0.7079633;0.09467529,0.1090324;-0.7581183;0.03536852,-0.07534711;-0.001017464;-0.02686591,-0.09603608;-0.3780764;0.01554258,-0.1023023;-0.7192202;0.09352758,-0.1151208;-0.7075464;-0.003939539,0.007351195;0.3997289;0.01112239,12.89395
+0;0;0,0.006806202;0.1994241;0.01355338,0.01858127;0.4990596;0.02040649,0.1243075;0.367678;-0.01574907,0.1911115;0.09644246;0.003447052,0.2385825;-0.1768672;-0.03461015,-0.09941657;0.3619624;0.01334662,-0.2699375;0.1405788;0.03100711,-0.4788402;-0.0437481;0.00302005,0.06846824;0.004432954;-0.04113938,0.07092563;-0.3734088;-0.0007709749,0.06600721;-0.7167525;0.06698491,0.05701468;-0.704205;-0.03106888,-0.07237623;0.003358196;-0.03391759,-0.1147723;-0.3733159;-0.007099107,-0.1380521;-0.7169991;0.0548675,-0.126043;-0.7599781;-0.01243666,0.01443209;0.3991466;0.02081767,0;0;0,0.00343585;0.199784;0.008633253,0.01029968;0.4996527;0.008194927,0.1170645;0.3736857;-0.03135484,0.1950365;0.1056694;-0.009272417,0.2306547;-0.1659203;-0.06732736,-0.1047016;0.3583515;0.01574926,-0.3124157;0.1717953;0.03700135,-0.561142;0.04617785;0.00951579,0.06584911;0.006943792;-0.0448963,0.09068673;-0.3677751;0.01314544,0.1014149;-0.7079793;0.09466857,0.1091574;-0.7580976;0.03532971,-0.07540852;-0.001029797;-0.0266926,-0.09583244;-0.3780873;0.01585745,-0.102265;-0.71927;0.09365857,-0.1151088;-0.707599;-0.003804684,0.007840635;0.3997218;0.01098049,12.90526
+0;0;0,0.006806202;0.1994241;0.01355338,0.01858127;0.4990596;0.02040649,0.1243075;0.367678;-0.01574907,0.1911115;0.09644246;0.003447052,0.2385825;-0.1768672;-0.03461015,-0.09941657;0.3619624;0.01334662,-0.2699375;0.1405788;0.03100711,-0.4788402;-0.0437481;0.00302005,0.06846824;0.004432954;-0.04113938,0.07092563;-0.3734088;-0.0007709749,0.06600721;-0.7167525;0.06698491,0.05701468;-0.704205;-0.03106888,-0.07237623;0.003358196;-0.03391759,-0.1147723;-0.3733159;-0.007099107,-0.1380521;-0.7169991;0.0548675,-0.126043;-0.7599781;-0.01243666,0.01443209;0.3991466;0.02081767,0;0;0,0.00343585;0.199784;0.008633253,0.01029968;0.4996527;0.008194927,0.1170645;0.3736857;-0.03135484,0.1950365;0.1056694;-0.009272417,0.2306547;-0.1659203;-0.06732736,-0.1047016;0.3583515;0.01574926,-0.3124157;0.1717953;0.03700135,-0.561142;0.04617785;0.00951579,0.06584911;0.006943792;-0.0448963,0.09068673;-0.3677751;0.01314544,0.1014149;-0.7079793;0.09466857,0.1091574;-0.7580976;0.03532971,-0.07540852;-0.001029797;-0.0266926,-0.09583244;-0.3780873;0.01585745,-0.102265;-0.71927;0.09365857,-0.1151088;-0.707599;-0.003804684,0.007840635;0.3997218;0.01098049,12.92749
+0;0;0,0.007013106;0.1994143;0.01359279,0.01909128;0.4990358;0.02053964,0.1245688;0.3676292;-0.0160763,0.1908316;0.09626573;0.003187954,0.2382283;-0.1770472;-0.03493819,-0.09914714;0.3623393;0.01365163,-0.2766058;0.1465432;0.03210336,-0.4873057;-0.0360124;0.006045986,0.06843351;0.004377559;-0.04120305,0.07073176;-0.3734671;-0.000852745,0.06582476;-0.7168508;0.06670131,0.05667455;-0.7042931;-0.0313397,-0.07241213;0.003406364;-0.03383607,-0.1148932;-0.373281;-0.007341139,-0.1381582;-0.7170079;0.05438842,-0.1260832;-0.7596761;-0.01323948,0.0148438;0.3991268;0.02091449,0;0;0,0.003543425;0.1997853;0.008559838,0.01057447;0.4996486;0.007829467,0.1173053;0.3736864;-0.03155331,0.1953775;0.1057016;-0.009443238,0.2310369;-0.1659487;-0.0671887,-0.104503;0.3584501;0.01576944,-0.3146817;0.1747896;0.03798842,-0.5679041;0.05840485;0.01091385,0.06581998;0.006920526;-0.04494259,0.09069646;-0.3677885;0.01314608,0.1014638;-0.7079974;0.09464449,0.109608;-0.7580706;0.0352985,-0.07546134;-0.00095228;-0.02654582,-0.09596241;-0.3780259;0.01582317,-0.1022667;-0.7191997;0.09367365,-0.1151631;-0.707546;-0.003779396,0.008063771;0.3997224;0.01073633,12.94975
+0;0;0,0.007013106;0.1994143;0.01359279,0.01909128;0.4990358;0.02053964,0.1245688;0.3676292;-0.0160763,0.1908316;0.09626573;0.003187954,0.2382283;-0.1770472;-0.03493819,-0.09914714;0.3623393;0.01365163,-0.2766058;0.1465432;0.03210336,-0.4873057;-0.0360124;0.006045986,0.06843351;0.004377559;-0.04120305,0.07073176;-0.3734671;-0.000852745,0.06582476;-0.7168508;0.06670131,0.05667455;-0.7042931;-0.0313397,-0.07241213;0.003406364;-0.03383607,-0.1148932;-0.373281;-0.007341139,-0.1381582;-0.7170079;0.05438842,-0.1260832;-0.7596761;-0.01323948,0.0148438;0.3991268;0.02091449,0;0;0,0.003620516;0.1997852;0.008530485,0.01071886;0.4996466;0.007738328,0.1174465;0.3736969;-0.03159258,0.1953818;0.1056768;-0.009426897,0.2315619;-0.1659197;-0.06710171,-0.1044366;0.3586385;0.01587334,-0.3170943;0.1779321;0.03871745,-0.5717125;0.06466419;0.01151463,0.06576513;0.006948063;-0.04501858,0.09068328;-0.3677417;0.01317615,0.1013888;-0.7079312;0.09476382,0.10891;-0.7586124;0.03616372,-0.07551019;-0.0009366809;-0.02640709,-0.09602329;-0.3780243;0.01583151,-0.1023744;-0.7191998;0.09367111,-0.1152986;-0.7075488;-0.00377775,0.008191596;0.3997215;0.01066956,12.96102
+0;0;0,0.007013106;0.1994143;0.01359279,0.01909128;0.4990358;0.02053964,0.1245688;0.3676292;-0.0160763,0.1908316;0.09626573;0.003187954,0.2382283;-0.1770472;-0.03493819,-0.09914714;0.3623393;0.01365163,-0.2766058;0.1465432;0.03210336,-0.4873057;-0.0360124;0.006045986,0.06843351;0.004377559;-0.04120305,0.07073176;-0.3734671;-0.000852745,0.06582476;-0.7168508;0.06670131,0.05667455;-0.7042931;-0.0313397,-0.07241213;0.003406364;-0.03383607,-0.1148932;-0.373281;-0.007341139,-0.1381582;-0.7170079;0.05438842,-0.1260832;-0.7596761;-0.01323948,0.0148438;0.3991268;0.02091449,0;0;0,0.003620516;0.1997852;0.008530485,0.01071886;0.4996466;0.007738328,0.1174465;0.3736969;-0.03159258,0.1953818;0.1056768;-0.009426897,0.2315619;-0.1659197;-0.06710171,-0.1044366;0.3586385;0.01587334,-0.3170943;0.1779321;0.03871745,-0.5717125;0.06466419;0.01151463,0.06576513;0.006948063;-0.04501858,0.09068328;-0.3677417;0.01317615,0.1013888;-0.7079312;0.09476382,0.10891;-0.7586124;0.03616372,-0.07551019;-0.0009366809;-0.02640709,-0.09602329;-0.3780243;0.01583151,-0.1023744;-0.7191998;0.09367111,-0.1152986;-0.7075488;-0.00377775,0.008191596;0.3997215;0.01066956,12.97243
+0;0;0,0.007353505;0.1994137;0.01342044,0.01999248;0.4990159;0.0202058,0.1249931;0.3674145;-0.01700824,0.1918787;0.09621868;0.002462834,0.2384305;-0.1772125;-0.03585534,-0.09849709;0.3624294;0.01370486,-0.2815176;0.1514298;0.0332671,-0.4971288;-0.02546531;0.008369399,0.0682711;0.00422326;-0.0414876,0.07039605;-0.3736786;-0.001666781,0.06577656;-0.717097;0.06573087,0.05636526;-0.7045315;-0.03228682,-0.07256329;0.003622137;-0.03348804,-0.1157416;-0.3730637;-0.008122554,-0.1385621;-0.7168643;0.05336209,-0.1265137;-0.7594998;-0.01430575,0.01554744;0.3991157;0.02063075,0;0;0,0.003717777;0.1997863;0.008462659,0.01093026;0.4996442;0.00752221,0.1176005;0.3737161;-0.03182356,0.1953283;0.1056521;-0.009460766,0.2317838;-0.1659778;-0.06680356,-0.1042943;0.3587429;0.01576903,-0.3201604;0.1819596;0.03921071,-0.5765209;0.07283153;0.01145543,0.0657416;0.00691533;-0.04505797,0.0908374;-0.3677692;0.01309469,0.1013793;-0.7079853;0.09459221,0.1088422;-0.7585204;0.03578406,-0.07554328;-0.0009050615;-0.02631337,-0.09616949;-0.3780103;0.01571242,-0.1024281;-0.7191389;0.09376481,-0.1153821;-0.7074957;-0.003678605,0.008369355;0.3997217;0.0105116,12.99453
+0;0;0,0.007353505;0.1994137;0.01342044,0.01999248;0.4990159;0.0202058,0.1249931;0.3674145;-0.01700824,0.1918787;0.09621868;0.002462834,0.2384305;-0.1772125;-0.03585534,-0.09849709;0.3624294;0.01370486,-0.2815176;0.1514298;0.0332671,-0.4971288;-0.02546531;0.008369399,0.0682711;0.00422326;-0.0414876,0.07039605;-0.3736786;-0.001666781,0.06577656;-0.717097;0.06573087,0.05636526;-0.7045315;-0.03228682,-0.07256329;0.003622137;-0.03348804,-0.1157416;-0.3730637;-0.008122554,-0.1385621;-0.7168643;0.05336209,-0.1265137;-0.7594998;-0.01430575,0.01554744;0.3991157;0.02063075,0;0;0,0.003717777;0.1997863;0.008462659,0.01093026;0.4996442;0.00752221,0.1176005;0.3737161;-0.03182356,0.1953283;0.1056521;-0.009460766,0.2317838;-0.1659778;-0.06680356,-0.1042943;0.3587429;0.01576903,-0.3201604;0.1819596;0.03921071,-0.5765209;0.07283153;0.01145543,0.0657416;0.00691533;-0.04505797,0.0908374;-0.3677692;0.01309469,0.1013793;-0.7079853;0.09459221,0.1088422;-0.7585204;0.03578406,-0.07554328;-0.0009050615;-0.02631337,-0.09616949;-0.3780103;0.01571242,-0.1024281;-0.7191389;0.09376481,-0.1153821;-0.7074957;-0.003678605,0.008369355;0.3997217;0.0105116,13.00602
+0;0;0,0.007353505;0.1994137;0.01342044,0.01999248;0.4990159;0.0202058,0.1249931;0.3674145;-0.01700824,0.1918787;0.09621868;0.002462834,0.2384305;-0.1772125;-0.03585534,-0.09849709;0.3624294;0.01370486,-0.2815176;0.1514298;0.0332671,-0.4971288;-0.02546531;0.008369399,0.0682711;0.00422326;-0.0414876,0.07039605;-0.3736786;-0.001666781,0.06577656;-0.717097;0.06573087,0.05636526;-0.7045315;-0.03228682,-0.07256329;0.003622137;-0.03348804,-0.1157416;-0.3730637;-0.008122554,-0.1385621;-0.7168643;0.05336209,-0.1265137;-0.7594998;-0.01430575,0.01554744;0.3991157;0.02063075,0;0;0,0.003717777;0.1997863;0.008462659,0.01093026;0.4996442;0.00752221,0.1176005;0.3737161;-0.03182356,0.1953283;0.1056521;-0.009460766,0.2317838;-0.1659778;-0.06680356,-0.1042943;0.3587429;0.01576903,-0.3201604;0.1819596;0.03921071,-0.5765209;0.07283153;0.01145543,0.0657416;0.00691533;-0.04505797,0.0908374;-0.3677692;0.01309469,0.1013793;-0.7079853;0.09459221,0.1088422;-0.7585204;0.03578406,-0.07554328;-0.0009050615;-0.02631337,-0.09616949;-0.3780103;0.01571242,-0.1024281;-0.7191389;0.09376481,-0.1153821;-0.7074957;-0.003678605,0.008369355;0.3997217;0.0105116,13.02813
+0;0;0,0.007443778;0.1994239;0.01321778,0.02012762;0.4990299;0.01975837,0.1251359;0.3673184;-0.01723835,0.1913277;0.0959416;0.002081726,0.2376436;-0.1775038;-0.03642112,-0.09857409;0.3629827;0.0138772,-0.2872291;0.1568793;0.03206166,-0.5046411;-0.01826222;0.01067239,0.06816566;0.004157751;-0.04166721,0.06826955;-0.3736753;-0.001143117,0.0650936;-0.717235;0.06561466,0.05557662;-0.7046804;-0.03239089,-0.07263455;0.003681615;-0.03332669,-0.1158494;-0.373057;-0.00882194,-0.1390477;-0.7168565;0.05252765,-0.1269898;-0.7595326;-0.01509476,0.01567395;0.3991303;0.02025931,0;0;0,0.003872131;0.1997917;0.008263963,0.01161252;0.4996301;0.006588532,0.1180705;0.3733769;-0.03226415,0.1960833;0.1054032;-0.009812042,0.2323638;-0.1663059;-0.06688981,-0.1037413;0.3586133;0.01558365,-0.3221093;0.1850327;0.0397747,-0.5799831;0.0795829;0.01181991,0.06565652;0.006888033;-0.04518601,0.09088761;-0.3677973;0.01290233,0.1012707;-0.7080191;0.09439698,0.1097564;-0.7583199;0.03540736,-0.07564085;-0.0008761191;-0.02603254,-0.09626849;-0.3779608;0.01617671,-0.102347;-0.7192392;0.09358571,-0.1153418;-0.707623;-0.003847204,0.008853765;0.399723;0.009897435,13.05036
+0;0;0,0.007443778;0.1994239;0.01321778,0.02012762;0.4990299;0.01975837,0.1251359;0.3673184;-0.01723835,0.1913277;0.0959416;0.002081726,0.2376436;-0.1775038;-0.03642112,-0.09857409;0.3629827;0.0138772,-0.2872291;0.1568793;0.03206166,-0.5046411;-0.01826222;0.01067239,0.06816566;0.004157751;-0.04166721,0.06826955;-0.3736753;-0.001143117,0.0650936;-0.717235;0.06561466,0.05557662;-0.7046804;-0.03239089,-0.07263455;0.003681615;-0.03332669,-0.1158494;-0.373057;-0.00882194,-0.1390477;-0.7168565;0.05252765,-0.1269898;-0.7595326;-0.01509476,0.01567395;0.3991303;0.02025931,0;0;0,0.003872434;0.1997986;0.008093398,0.0115911;0.4996364;0.006250236,0.1180066;0.373392;-0.03267495,0.1959673;0.1054312;-0.009889461,0.2323793;-0.1663135;-0.06671352,-0.1037437;0.3586081;0.01543509,-0.3245744;0.1882603;0.04024339,-0.584556;0.08872199;0.01021543,0.06555875;0.006864288;-0.04533136,0.09077074;-0.3678215;0.01276254,0.1011729;-0.7079902;0.0944756,0.1087057;-0.7583236;0.03540098,-0.0757219;-0.000866205;-0.0257962,-0.09654114;-0.3779536;0.01629489,-0.1025069;-0.719291;0.0934519,-0.1155793;-0.7076883;-0.003968082,0.00884;0.3997311;0.00962039,13.0729
+0;0;0,0.007443778;0.1994239;0.01321778,0.02012762;0.4990299;0.01975837,0.1251359;0.3673184;-0.01723835,0.1913277;0.0959416;0.002081726,0.2376436;-0.1775038;-0.03642112,-0.09857409;0.3629827;0.0138772,-0.2872291;0.1568793;0.03206166,-0.5046411;-0.01826222;0.01067239,0.06816566;0.004157751;-0.04166721,0.06826955;-0.3736753;-0.001143117,0.0650936;-0.717235;0.06561466,0.05557662;-0.7046804;-0.03239089,-0.07263455;0.003681615;-0.03332669,-0.1158494;-0.373057;-0.00882194,-0.1390477;-0.7168565;0.05252765,-0.1269898;-0.7595326;-0.01509476,0.01567395;0.3991303;0.02025931,0;0;0,0.003808094;0.1998086;0.007875977,0.01143675;0.4996431;0.005624685,0.1179649;0.3733964;-0.0329656,0.1957641;0.1054039;-0.01000264,0.2325542;-0.166307;-0.06674504,-0.1038907;0.3588091;0.01524707,-0.3270469;0.1915599;0.04032705,-0.5876347;0.09381965;0.009653483,0.06546466;0.006824869;-0.04547305,0.09072341;-0.3678659;0.01256819,0.1013289;-0.7079483;0.09461379,0.1083686;-0.7584011;0.03564095,-0.07578989;-0.0008593095;-0.02559597,-0.09675487;-0.3779869;0.01606043,-0.1026478;-0.7192813;0.09341305,-0.1157423;-0.7077045;-0.003999062,0.008749545;0.3997431;0.009199087,13.09502
+0;0;0,0.007454596;0.1994306;0.01310952,0.02005542;0.4990436;0.01949835,0.1250582;0.3673379;-0.01757853,0.1913745;0.09598809;0.001693232,0.237649;-0.1774133;-0.0371704,-0.09880032;0.3634058;0.01485724,-0.2905899;0.160081;0.0314644,-0.512482;-0.009418294;0.01063537,0.06808083;0.004201523;-0.04180129,0.06726366;-0.3735546;-0.0005749799,0.06440096;-0.7171766;0.06587648,0.05453224;-0.7046319;-0.03209249,-0.07267368;0.003604438;-0.03324973,-0.1159154;-0.3731512;-0.009055108,-0.1395552;-0.71699;0.05190412,-0.1276567;-0.7598137;-0.01558764,0.01563727;0.3991428;0.02004473,0;0;0,0.003808094;0.1998086;0.007875977,0.01143675;0.4996431;0.005624685,0.1179649;0.3733964;-0.0329656,0.1957641;0.1054039;-0.01000264,0.2325542;-0.166307;-0.06674504,-0.1038907;0.3588091;0.01524707,-0.3270469;0.1915599;0.04032705,-0.5876347;0.09381965;0.009653483,0.06546466;0.006824869;-0.04547305,0.09072341;-0.3678659;0.01256819,0.1013289;-0.7079483;0.09461379,0.1083686;-0.7584011;0.03564095,-0.07578989;-0.0008593095;-0.02559597,-0.09675487;-0.3779869;0.01606043,-0.1026478;-0.7192813;0.09341305,-0.1157423;-0.7077045;-0.003999062,0.008749545;0.3997431;0.009199087,13.10642
+0;0;0,0.007454596;0.1994306;0.01310952,0.02005542;0.4990436;0.01949835,0.1250582;0.3673379;-0.01757853,0.1913745;0.09598809;0.001693232,0.237649;-0.1774133;-0.0371704,-0.09880032;0.3634058;0.01485724,-0.2905899;0.160081;0.0314644,-0.512482;-0.009418294;0.01063537,0.06808083;0.004201523;-0.04180129,0.06726366;-0.3735546;-0.0005749799,0.06440096;-0.7171766;0.06587648,0.05453224;-0.7046319;-0.03209249,-0.07267368;0.003604438;-0.03324973,-0.1159154;-0.3731512;-0.009055108,-0.1395552;-0.71699;0.05190412,-0.1276567;-0.7598137;-0.01558764,0.01563727;0.3991428;0.02004473,0;0;0,0.003808094;0.1998086;0.007875977,0.01143675;0.4996431;0.005624685,0.1179649;0.3733964;-0.0329656,0.1957641;0.1054039;-0.01000264,0.2325542;-0.166307;-0.06674504,-0.1038907;0.3588091;0.01524707,-0.3270469;0.1915599;0.04032705,-0.5876347;0.09381965;0.009653483,0.06546466;0.006824869;-0.04547305,0.09072341;-0.3678659;0.01256819,0.1013289;-0.7079483;0.09461379,0.1083686;-0.7584011;0.03564095,-0.07578989;-0.0008593095;-0.02559597,-0.09675487;-0.3779869;0.01606043,-0.1026478;-0.7192813;0.09341305,-0.1157423;-0.7077045;-0.003999062,0.008749545;0.3997431;0.009199087,13.12848
+0;0;0,0.007454596;0.1994306;0.01310952,0.02005542;0.4990436;0.01949835,0.1250582;0.3673379;-0.01757853,0.1913745;0.09598809;0.001693232,0.237649;-0.1774133;-0.0371704,-0.09880032;0.3634058;0.01485724,-0.2905899;0.160081;0.0314644,-0.512482;-0.009418294;0.01063537,0.06808083;0.004201523;-0.04180129,0.06726366;-0.3735546;-0.0005749799,0.06440096;-0.7171766;0.06587648,0.05453224;-0.7046319;-0.03209249,-0.07267368;0.003604438;-0.03324973,-0.1159154;-0.3731512;-0.009055108,-0.1395552;-0.71699;0.05190412,-0.1276567;-0.7598137;-0.01558764,0.01563727;0.3991428;0.02004473,0;0;0,0.003879377;0.1998092;0.007825857,0.01141213;0.4996462;0.005519541,0.1178768;0.3733572;-0.0333055,0.1957362;0.1054032;-0.01009909,0.2325008;-0.1663526;-0.06664284,-0.103905;0.3588979;0.01517784,-0.3290084;0.1943076;0.040446,-0.5912943;0.1021473;0.007090647,0.06539089;0.00681398;-0.04558071,0.09050048;-0.3678588;0.01264131,0.101025;-0.7079616;0.09461299,0.1088562;-0.7582884;0.03556838,-0.07586617;-0.0008672918;-0.02536872,-0.09656346;-0.3780845;0.01560432,-0.1029981;-0.7193677;0.09296282,-0.1161548;-0.7077967;-0.004439831,0.008765057;0.3997454;0.009100804,13.13995
+0;0;0,0.007443978;0.1994498;0.01282018,0.01997884;0.4990714;0.01898077,0.1250571;0.3674804;-0.01798202,0.1912805;0.09610608;0.001264712,0.2374899;-0.1772748;-0.03781957,-0.09887305;0.3634712;0.01448769,-0.2945085;0.16393;0.03209693,-0.5194157;-0.001543596;0.01123479,0.06812837;0.00420052;-0.04172386,0.06761044;-0.3736258;-0.001140948,0.06410718;-0.7172288;0.06537798,0.05422592;-0.7047058;-0.03258587,-0.07264327;0.003587575;-0.03331792,-0.1159258;-0.3731906;-0.009551747,-0.1395428;-0.7170591;0.05124842,-0.12774;-0.7600324;-0.01609845,0.01558083;0.39917;0.01957742,0;0;0,0.003958246;0.1998097;0.007773784,0.01156609;0.499644;0.005344794,0.1178512;0.3731337;-0.03371607,0.1958058;0.1052472;-0.01005382,0.2324235;-0.1665928;-0.06628665,-0.1037438;0.3588344;0.01510232,-0.3307768;0.196953;0.04060585,-0.59505;0.1113668;0.005468149,0.06535669;0.006805841;-0.04563096,0.09045914;-0.3678584;0.01264945,0.1009469;-0.707999;0.09446833,0.1088872;-0.7585608;0.03575925,-0.07591485;-0.000861264;-0.02522285,-0.09674964;-0.3780826;0.01564267,-0.1031661;-0.7193615;0.0930213,-0.1164189;-0.7078;-0.004366532,0.008899948;0.399745;0.008962441,13.16193
+0;0;0,0.007443978;0.1994498;0.01282018,0.01997884;0.4990714;0.01898077,0.1250571;0.3674804;-0.01798202,0.1912805;0.09610608;0.001264712,0.2374899;-0.1772748;-0.03781957,-0.09887305;0.3634712;0.01448769,-0.2945085;0.16393;0.03209693,-0.5194157;-0.001543596;0.01123479,0.06812837;0.00420052;-0.04172386,0.06761044;-0.3736258;-0.001140948,0.06410718;-0.7172288;0.06537798,0.05422592;-0.7047058;-0.03258587,-0.07264327;0.003587575;-0.03331792,-0.1159258;-0.3731906;-0.009551747,-0.1395428;-0.7170591;0.05124842,-0.12774;-0.7600324;-0.01609845,0.01558083;0.39917;0.01957742,0;0;0,0.003958246;0.1998097;0.007773784,0.01156609;0.499644;0.005344794,0.1178512;0.3731337;-0.03371607,0.1958058;0.1052472;-0.01005382,0.2324235;-0.1665928;-0.06628665,-0.1037438;0.3588344;0.01510232,-0.3307768;0.196953;0.04060585,-0.59505;0.1113668;0.005468149,0.06535669;0.006805841;-0.04563096,0.09045914;-0.3678584;0.01264945,0.1009469;-0.707999;0.09446833,0.1088872;-0.7585608;0.03575925,-0.07591485;-0.000861264;-0.02522285,-0.09674964;-0.3780826;0.01564267,-0.1031661;-0.7193615;0.0930213,-0.1164189;-0.7078;-0.004366532,0.008899948;0.399745;0.008962441,13.17348
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.003992775;0.1998227;0.007412358,0.01154156;0.4996572;0.004705207,0.1177584;0.3731255;-0.03448333,0.1959629;0.1053203;-0.01072573,0.2326115;-0.1666955;-0.06608193,-0.1037184;0.3587515;0.01452237,-0.33389;0.2014827;0.04074361,-0.6004946;0.1240536;0.004319124,0.06522904;0.006776415;-0.0458176,0.0902627;-0.3679761;0.01192196,0.1005356;-0.7081003;0.09383641,0.08473751;-0.696533;-0.003172144,-0.07596122;-0.0009070042;-0.02508128,-0.09697342;-0.3781999;0.01502547,-0.1036103;-0.7194763;0.09239706,-0.1168953;-0.7079445;-0.004980758,0.008890194;0.3997603;0.008392135,13.19543
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.003992775;0.1998227;0.007412358,0.01154156;0.4996572;0.004705207,0.1177584;0.3731255;-0.03448333,0.1959629;0.1053203;-0.01072573,0.2326115;-0.1666955;-0.06608193,-0.1037184;0.3587515;0.01452237,-0.33389;0.2014827;0.04074361,-0.6004946;0.1240536;0.004319124,0.06522904;0.006776415;-0.0458176,0.0902627;-0.3679761;0.01192196,0.1005356;-0.7081003;0.09383641,0.08473751;-0.696533;-0.003172144,-0.07596122;-0.0009070042;-0.02508128,-0.09697342;-0.3781999;0.01502547,-0.1036103;-0.7194763;0.09239706,-0.1168953;-0.7079445;-0.004980758,0.008890194;0.3997603;0.008392135,13.2069
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.003992775;0.1998227;0.007412358,0.01154156;0.4996572;0.004705207,0.1177584;0.3731255;-0.03448333,0.1959629;0.1053203;-0.01072573,0.2326115;-0.1666955;-0.06608193,-0.1037184;0.3587515;0.01452237,-0.33389;0.2014827;0.04074361,-0.6004946;0.1240536;0.004319124,0.06522904;0.006776415;-0.0458176,0.0902627;-0.3679761;0.01192196,0.1005356;-0.7081003;0.09383641,0.08473751;-0.696533;-0.003172144,-0.07596122;-0.0009070042;-0.02508128,-0.09697342;-0.3781999;0.01502547,-0.1036103;-0.7194763;0.09239706,-0.1168953;-0.7079445;-0.004980758,0.008890194;0.3997603;0.008392135,13.21809
+0;0;0,0.007620485;0.1994414;0.01284784,0.02037387;0.4990538;0.01899595,0.1252618;0.3674538;-0.01831202,0.1914027;0.09604862;0.0007834937,0.237358;-0.1773561;-0.03843348,-0.09864668;0.3636053;0.01604492,-0.2968391;0.1665036;0.03249761,-0.5244789;0.004922763;0.0107775,0.06812753;0.004241246;-0.04172112,0.06682858;-0.3735094;-0.0004572496,0.06386432;-0.7172442;0.06540332,0.05346532;-0.7047175;-0.0325076,-0.07261313;0.003544995;-0.03338813,-0.1153161;-0.3733021;-0.009665886,-0.1393498;-0.7172354;0.05060184,-0.1274383;-0.7590668;-0.01794285,0.01591136;0.3991553;0.01960226,0;0;0,0.004124383;0.1998221;0.007355378,0.01173699;0.4996544;0.004543758,0.1178982;0.373087;-0.03471091,0.1960583;0.1052815;-0.01081111,0.2327554;-0.1666971;-0.06631782,-0.1035871;0.3589213;0.01452927,-0.337949;0.2077939;0.0397287,-0.6069366;0.1393105;0.002908774,0.06522062;0.006765238;-0.04583123,0.0902825;-0.3679697;0.01201031,0.1005139;-0.7080634;0.0940565,0.08467171;-0.6965088;-0.002942428,-0.07597218;-0.000904903;-0.02504812,-0.09710923;-0.3781879;0.0150867,-0.1038976;-0.7194406;0.09254947,-0.1172236;-0.707913;-0.004821934,0.009076016;0.3997588;0.008258109,13.2293
+0;0;0,0.007826445;0.1994304;0.01289382,0.0209395;0.499026;0.01910027,0.1256401;0.3672279;-0.01823962,0.1914353;0.09572196;0.000615932,0.2369872;-0.1777011;-0.03894244,-0.09828155;0.3638628;0.01586543,-0.299453;0.1698856;0.03326797,-0.5297616;0.01206194;0.01206207,0.06806454;0.004232777;-0.04182465,0.06692387;-0.3735503;-0.000853043,0.06378244;-0.7173049;0.06489523,0.05348873;-0.7047729;-0.03302776,-0.07267315;0.00354107;-0.0332577,-0.1154412;-0.3733391;-0.01018776,-0.1396787;-0.7172672;0.05002831,-0.1274784;-0.7592008;-0.01835823,0.01635436;0.3991329;0.01969043,0;0;0,0.004124383;0.1998221;0.007355378,0.01173699;0.4996544;0.004543758,0.1178982;0.373087;-0.03471091,0.1960583;0.1052815;-0.01081111,0.2327554;-0.1666971;-0.06631782,-0.1035871;0.3589213;0.01452927,-0.337949;0.2077939;0.0397287,-0.6069366;0.1393105;0.002908774,0.06522062;0.006765238;-0.04583123,0.0902825;-0.3679697;0.01201031,0.1005139;-0.7080634;0.0940565,0.08467171;-0.6965088;-0.002942428,-0.07597218;-0.000904903;-0.02504812,-0.09710923;-0.3781879;0.0150867,-0.1038976;-0.7194406;0.09254947,-0.1172236;-0.707913;-0.004821934,0.009076016;0.3997588;0.008258109,13.25148
+0;0;0,0.007826445;0.1994304;0.01289382,0.0209395;0.499026;0.01910027,0.1256401;0.3672279;-0.01823962,0.1914353;0.09572196;0.000615932,0.2369872;-0.1777011;-0.03894244,-0.09828155;0.3638628;0.01586543,-0.299453;0.1698856;0.03326797,-0.5297616;0.01206194;0.01206207,0.06806454;0.004232777;-0.04182465,0.06692387;-0.3735503;-0.000853043,0.06378244;-0.7173049;0.06489523,0.05348873;-0.7047729;-0.03302776,-0.07267315;0.00354107;-0.0332577,-0.1154412;-0.3733391;-0.01018776,-0.1396787;-0.7172672;0.05002831,-0.1274784;-0.7592008;-0.01835823,0.01635436;0.3991329;0.01969043,0;0;0,0.004127058;0.199821;0.007384368,0.01168511;0.4996551;0.004616663,0.1178876;0.3733877;-0.03477481,0.1958486;0.1055355;-0.01074771,0.2326963;-0.1663838;-0.06644463,-0.1036484;0.3590032;0.01466104,-0.3445885;0.2181534;0.03722649,-0.6166966;0.1675624;-0.005173188,0.06512546;0.006929946;-0.04594181,0.09023356;-0.3677915;0.01196711,0.100334;-0.707924;0.09386837,0.1082471;-0.7595247;0.03660827,-0.07600093;-0.0009938001;-0.02495737,-0.09712115;-0.3783049;0.01492076,-0.1040659;-0.7195443;0.09242848,-0.1174504;-0.7080148;-0.00493525,0.009040285;0.3997585;0.008316187,13.2739
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.004127058;0.199821;0.007384368,0.01168511;0.4996551;0.004616663,0.1178876;0.3733877;-0.03477481,0.1958486;0.1055355;-0.01074771,0.2326963;-0.1663838;-0.06644463,-0.1036484;0.3590032;0.01466104,-0.3445885;0.2181534;0.03722649,-0.6166966;0.1675624;-0.005173188,0.06512546;0.006929946;-0.04594181,0.09023356;-0.3677915;0.01196711,0.100334;-0.707924;0.09386837,0.1082471;-0.7595247;0.03660827,-0.07600093;-0.0009938001;-0.02495737,-0.09712115;-0.3783049;0.01492076,-0.1040659;-0.7195443;0.09242848,-0.1174504;-0.7080148;-0.00493525,0.009040285;0.3997585;0.008316187,13.28526
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.004256412;0.1998174;0.007409998,0.011982;0.4996486;0.004740145,0.1180439;0.3733989;-0.03491146,0.1960003;0.1055335;-0.01101747,0.2328659;-0.1663353;-0.06694857,-0.1036436;0.3596772;0.0149489,-0.3480451;0.2248414;0.03702204,-0.6210336;0.1798545;-0.006029442,0.06506286;0.006952838;-0.04602698,0.09031454;-0.3677551;0.01190631,0.1002279;-0.7079826;0.0934354,0.1076391;-0.7590849;0.03540529,-0.07604109;-0.001032576;-0.02483317,-0.0965773;-0.3784775;0.01407175,-0.1040472;-0.7196279;0.09192149,-0.117501;-0.7080938;-0.005433552,0.009276836;0.3997519;0.008392516,13.3074
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.004159737;0.1998162;0.007496136,0.0117851;0.4996507;0.004881282,0.1179241;0.3734091;-0.03472149,0.1957767;0.1054751;-0.01126245,0.2333027;-0.1660409;-0.06845424,-0.1038365;0.3598032;0.01511429,-0.3530857;0.2341333;0.03706674,-0.6269318;0.1992457;-0.00974353,0.06508529;0.006949511;-0.04599575,0.09028459;-0.3677679;0.01189962,0.1001867;-0.7079945;0.09343372,0.1073779;-0.7588145;0.03498358,-0.07601384;-0.001042899;-0.02491602,-0.09679333;-0.3785323;0.01342415,-0.1044774;-0.7196182;0.09153564,-0.1179126;-0.7080887;-0.005821116,0.009125857;0.3997519;0.008510532,13.32948
+0;0;0,0.007945261;0.1994309;0.01281343,0.02116065;0.4990246;0.01889462,0.1258482;0.3672959;-0.01841953,0.1910541;0.09564576;0.0004065633,0.236709;-0.1777428;-0.03927108,-0.09831637;0.3645099;0.01679958,-0.3029675;0.1741698;0.03378658,-0.5340484;0.01752047;0.01227806,0.06791377;0.004184328;-0.04207387,0.06749193;-0.3736455;-0.001522236,0.06386425;-0.7174239;0.06407718,0.053269;-0.7048967;-0.03381275,-0.072817;0.003583496;-0.03293696,-0.1155581;-0.3733512;-0.0107239,-0.139999;-0.7173085;0.04924291,-0.1282197;-0.7600201;-0.01839043,0.01654793;0.399133;0.0195258,0;0;0,0.004159737;0.1998162;0.007496136,0.0117851;0.4996507;0.004881282,0.1179241;0.3734091;-0.03472149,0.1957767;0.1054751;-0.01126245,0.2333027;-0.1660409;-0.06845424,-0.1038365;0.3598032;0.01511429,-0.3530857;0.2341333;0.03706674,-0.6269318;0.1992457;-0.00974353,0.06508529;0.006949511;-0.04599575,0.09028459;-0.3677679;0.01189962,0.1001867;-0.7079945;0.09343372,0.1073779;-0.7588145;0.03498358,-0.07601384;-0.001042899;-0.02491602,-0.09679333;-0.3785323;0.01342415,-0.1044774;-0.7196182;0.09153564,-0.1179126;-0.7080887;-0.005821116,0.009125857;0.3997519;0.008510532,13.34091
+0;0;0,0.008052592;0.1994235;0.01286119,0.0214123;0.4990097;0.01899551,0.1259719;0.3672769;-0.01857096,0.1914013;0.0956721;0.0001328401,0.2365957;-0.1777918;-0.03955306,-0.09820114;0.3647871;0.01712788,-0.3056138;0.177432;0.03380278,-0.539332;0.02475293;0.01224108,0.06784273;0.004194257;-0.04218734,0.06763337;-0.373629;-0.001573153,0.06381249;-0.7174889;0.06358664,0.05310035;-0.7049557;-0.03429166,-0.07287476;0.003557288;-0.03281181,-0.1158663;-0.3733647;-0.01086773,-0.1400374;-0.7173591;0.04899537,-0.1281503;-0.7598543;-0.01885115,0.01675574;0.39912;0.01961088,0;0;0,0.004159737;0.1998162;0.007496136,0.0117851;0.4996507;0.004881282,0.1179241;0.3734091;-0.03472149,0.1957767;0.1054751;-0.01126245,0.2333027;-0.1660409;-0.06845424,-0.1038365;0.3598032;0.01511429,-0.3530857;0.2341333;0.03706674,-0.6269318;0.1992457;-0.00974353,0.06508529;0.006949511;-0.04599575,0.09028459;-0.3677679;0.01189962,0.1001867;-0.7079945;0.09343372,0.1073779;-0.7588145;0.03498358,-0.07601384;-0.001042899;-0.02491602,-0.09679333;-0.3785323;0.01342415,-0.1044774;-0.7196182;0.09153564,-0.1179126;-0.7080887;-0.005821116,0.009125857;0.3997519;0.008510532,13.35256
+0;0;0,0.008052592;0.1994235;0.01286119,0.0214123;0.4990097;0.01899551,0.1259719;0.3672769;-0.01857096,0.1914013;0.0956721;0.0001328401,0.2365957;-0.1777918;-0.03955306,-0.09820114;0.3647871;0.01712788,-0.3056138;0.177432;0.03380278,-0.539332;0.02475293;0.01224108,0.06784273;0.004194257;-0.04218734,0.06763337;-0.373629;-0.001573153,0.06381249;-0.7174889;0.06358664,0.05310035;-0.7049557;-0.03429166,-0.07287476;0.003557288;-0.03281181,-0.1158663;-0.3733647;-0.01086773,-0.1400374;-0.7173591;0.04899537,-0.1281503;-0.7598543;-0.01885115,0.01675574;0.39912;0.01961088,0;0;0,0.004248561;0.1998129;0.007534098,0.01196611;0.4996477;0.005126347,0.1180193;0.3734013;-0.03469341,0.1958491;0.1054664;-0.01116904,0.2336163;-0.165957;-0.06864052,-0.1039553;0.3607521;0.01635702,-0.3565606;0.2417571;0.03711058,-0.6312129;0.2181804;-0.01198369,0.06505454;0.006942261;-0.04604033,0.09053209;-0.3677816;0.01169108,0.1003453;-0.7079636;0.09342167,0.1075956;-0.7584109;0.03446684,-0.07606272;-0.001055026;-0.02476591,-0.09680663;-0.3785163;0.01386934,-0.1041756;-0.7196662;0.09173077,-0.1179107;-0.7081311;-0.005585186,0.009271154;0.3997466;0.008662868,13.37437
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.004248561;0.1998129;0.007534098,0.01196611;0.4996477;0.005126347,0.1180193;0.3734013;-0.03469341,0.1958491;0.1054664;-0.01116904,0.2336163;-0.165957;-0.06864052,-0.1039553;0.3607521;0.01635702,-0.3565606;0.2417571;0.03711058,-0.6312129;0.2181804;-0.01198369,0.06505454;0.006942261;-0.04604033,0.09053209;-0.3677816;0.01169108,0.1003453;-0.7079636;0.09342167,0.1075956;-0.7584109;0.03446684,-0.07606272;-0.001055026;-0.02476591,-0.09680663;-0.3785163;0.01386934,-0.1041756;-0.7196662;0.09173077,-0.1179107;-0.7081311;-0.005585186,0.009271154;0.3997466;0.008662868,13.38567
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.00428129;0.1998128;0.007517632,0.01199766;0.4996477;0.005098353,0.1180618;0.3733406;-0.03466159,0.1959381;0.1054117;-0.01122319,0.2338061;-0.1659043;-0.06913404,-0.1041128;0.3614033;0.0167678,-0.3605668;0.2505919;0.03553454,-0.6353588;0.2408144;-0.01732176,0.06504121;0.006932302;-0.04606066,0.09062254;-0.3678182;0.01145121,0.1004076;-0.7079718;0.09330341,0.1077138;-0.7587974;0.03487523,-0.0760588;-0.001055145;-0.02477792,-0.09698509;-0.3784623;0.01428533,-0.1040304;-0.7196215;0.09213627,-0.1178353;-0.7080878;-0.005169541,0.009305365;0.3997466;0.008636927,13.39683
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.00428129;0.1998128;0.007517632,0.01199766;0.4996477;0.005098353,0.1180618;0.3733406;-0.03466159,0.1959381;0.1054117;-0.01122319,0.2338061;-0.1659043;-0.06913404,-0.1041128;0.3614033;0.0167678,-0.3605668;0.2505919;0.03553454,-0.6353588;0.2408144;-0.01732176,0.06504121;0.006932302;-0.04606066,0.09062254;-0.3678182;0.01145121,0.1004076;-0.7079718;0.09330341,0.1077138;-0.7587974;0.03487523,-0.0760588;-0.001055145;-0.02477792,-0.09698509;-0.3784623;0.01428533,-0.1040304;-0.7196215;0.09213627,-0.1178353;-0.7080878;-0.005169541,0.009305365;0.3997466;0.008636927,13.41926
+0;0;0,0.008083077;0.199425;0.01281902,0.02140677;0.4990153;0.01882204,0.1260158;0.3671802;-0.01852698,0.1911025;0.09546742;-0.0001999475,0.2360507;-0.1779901;-0.04020764,-0.09826222;0.3650424;0.01704318,-0.3083687;0.1807528;0.03414874,-0.54467;0.03196411;0.01356661,0.06780362;0.004156926;-0.04225386,0.06766602;-0.3737334;-0.002267551,0.06368738;-0.7176026;0.06283341,0.05303164;-0.7050734;-0.03505033,-0.07285745;0.00360104;-0.03284546,-0.1160907;-0.3733244;-0.01144349,-0.1400616;-0.7173499;0.04832179,-0.1281118;-0.7596895;-0.01967965,0.01676999;0.3991251;0.01948453,0;0;0,0.00437892;0.1998086;0.007573998,0.01211549;0.4996455;0.005355696,0.1181284;0.3733069;-0.03459567,0.1961869;0.1054206;-0.0112765,0.2341584;-0.1658042;-0.06954584,-0.104012;0.3614237;0.01687706,-0.3625373;0.2554575;0.03520237,-0.6368634;0.2623322;-0.02045653,0.06502533;0.006909962;-0.04608642,0.09086035;-0.3678218;0.01143414,0.1005977;-0.7080138;0.09313215,0.1085574;-0.7587649;0.03468624,-0.07605769;-0.001044754;-0.02478174,-0.09684941;-0.3784832;0.0140499,-0.1037563;-0.7196062;0.0920721,-0.117566;-0.7080631;-0.005234823,0.009418949;0.3997413;0.008803321,13.43028
+0;0;0,0.008165973;0.1994186;0.01286576,0.02156448;0.4990049;0.01889876,0.1261137;0.3672038;-0.01860578,0.1910686;0.0954358;-0.0006335508,0.2360511;-0.1780202;-0.04061378,-0.09816059;0.365145;0.01736038,-0.311597;0.1847742;0.03500247,-0.5510482;0.04117513;0.01396777,0.06776998;0.004176881;-0.04230583,0.06800546;-0.3737619;-0.002780769,0.06368697;-0.717636;0.06227266,0.05293611;-0.7051018;-0.03560157,-0.07285091;0.003573562;-0.03286296,-0.1162024;-0.3733443;-0.01156642,-0.1403089;-0.7174187;0.04786164,-0.1282736;-0.759717;-0.02016867,0.01690979;0.3991154;0.0195539,0;0;0,0.00437892;0.1998086;0.007573998,0.01211549;0.4996455;0.005355696,0.1181284;0.3733069;-0.03459567,0.1961869;0.1054206;-0.0112765,0.2341584;-0.1658042;-0.06954584,-0.104012;0.3614237;0.01687706,-0.3625373;0.2554575;0.03520237,-0.6368634;0.2623322;-0.02045653,0.06502533;0.006909962;-0.04608642,0.09086035;-0.3678218;0.01143414,0.1005977;-0.7080138;0.09313215,0.1085574;-0.7587649;0.03468624,-0.07605769;-0.001044754;-0.02478174,-0.09684941;-0.3784832;0.0140499,-0.1037563;-0.7196062;0.0920721,-0.117566;-0.7080631;-0.005234823,0.009418949;0.3997413;0.008803321,13.45266
+0;0;0,0.008165973;0.1994186;0.01286576,0.02156448;0.4990049;0.01889876,0.1261137;0.3672038;-0.01860578,0.1910686;0.0954358;-0.0006335508,0.2360511;-0.1780202;-0.04061378,-0.09816059;0.365145;0.01736038,-0.311597;0.1847742;0.03500247,-0.5510482;0.04117513;0.01396777,0.06776998;0.004176881;-0.04230583,0.06800546;-0.3737619;-0.002780769,0.06368697;-0.717636;0.06227266,0.05293611;-0.7051018;-0.03560157,-0.07285091;0.003573562;-0.03286296,-0.1162024;-0.3733443;-0.01156642,-0.1403089;-0.7174187;0.04786164,-0.1282736;-0.759717;-0.02016867,0.01690979;0.3991154;0.0195539,0;0;0,0.004704194;0.1998014;0.00756641,0.01256758;0.4996357;0.005363436,0.1185262;0.3732273;-0.03460382,0.1966834;0.1053736;-0.01124009,0.234749;-0.1656729;-0.07027223,-0.1036675;0.3617359;0.01739053,-0.3646027;0.261362;0.03281531,-0.6386427;0.2716662;-0.02371689,0.06495745;0.006952358;-0.04617568,0.09151615;-0.3677818;0.01099857,0.1010802;-0.7078534;0.09321702,0.1091687;-0.7588773;0.03516782,-0.07603924;-0.001107643;-0.02483561,-0.09649841;-0.3785473;0.01416116,-0.1032954;-0.7196987;0.0920683,-0.1172264;-0.7081534;-0.005221732,0.009833115;0.3997319;0.008793302,13.47481
+0;0;0,0.008238523;0.1994128;0.0129098,0.02176775;0.49899;0.01910951,0.1263102;0.367416;-0.01852259,0.1913047;0.09564674;-0.000712689,0.2360187;-0.1778295;-0.04085493,-0.09808654;0.3654034;0.01753934,-0.3139902;0.1880527;0.03577016,-0.5563187;0.04918581;0.01594938,0.06776285;0.004190564;-0.04231589,0.06831148;-0.3737801;-0.003099859,0.06373923;-0.7176687;0.06185944,0.07124648;-0.7654871;-0.0004939437,-0.07285529;0.003550152;-0.03285578,-0.1162342;-0.3733503;-0.01130699,-0.1401916;-0.7175071;0.04770266,-0.1282286;-0.759927;-0.02021097,0.01706419;0.3991024;0.019704,0;0;0,0.004745037;0.1997965;0.007671326,0.01275129;0.4996316;0.005942784,0.1185939;0.3731323;-0.03432194,0.1966481;0.1052255;-0.01122451,0.2344074;-0.1658057;-0.07052276,-0.1037065;0.362256;0.01788476,-0.3660325;0.2653159;0.03158556,-0.6396878;0.2804647;-0.02571417,0.06492545;0.006969468;-0.04621809,0.09149831;-0.3677665;0.010938,0.1010235;-0.7078457;0.09312904,0.1092471;-0.7590366;0.03533262,-0.07604615;-0.001116665;-0.02481406,-0.09658057;-0.3785567;0.01413918,-0.1034164;-0.7197006;0.09207582,-0.1173719;-0.7081389;-0.005213819,0.009961248;0.3997228;0.009173897,13.49718
+0;0;0,0.008238523;0.1994128;0.0129098,0.02176775;0.49899;0.01910951,0.1263102;0.367416;-0.01852259,0.1913047;0.09564674;-0.000712689,0.2360187;-0.1778295;-0.04085493,-0.09808654;0.3654034;0.01753934,-0.3139902;0.1880527;0.03577016,-0.5563187;0.04918581;0.01594938,0.06776285;0.004190564;-0.04231589,0.06831148;-0.3737801;-0.003099859,0.06373923;-0.7176687;0.06185944,0.07124648;-0.7654871;-0.0004939437,-0.07285529;0.003550152;-0.03285578,-0.1162342;-0.3733503;-0.01130699,-0.1401916;-0.7175071;0.04770266,-0.1282286;-0.759927;-0.02021097,0.01706419;0.3991024;0.019704,0;0;0,0.004745037;0.1997965;0.007671326,0.01275129;0.4996316;0.005942784,0.1185939;0.3731323;-0.03432194,0.1966481;0.1052255;-0.01122451,0.2344074;-0.1658057;-0.07052276,-0.1037065;0.362256;0.01788476,-0.3660325;0.2653159;0.03158556,-0.6396878;0.2804647;-0.02571417,0.06492545;0.006969468;-0.04621809,0.09149831;-0.3677665;0.010938,0.1010235;-0.7078457;0.09312904,0.1092471;-0.7590366;0.03533262,-0.07604615;-0.001116665;-0.02481406,-0.09658057;-0.3785567;0.01413918,-0.1034164;-0.7197006;0.09207582,-0.1173719;-0.7081389;-0.005213819,0.009961248;0.3997228;0.009173897,13.50853
+0;0;0,0.008238523;0.1994128;0.0129098,0.02176775;0.49899;0.01910951,0.1263102;0.367416;-0.01852259,0.1913047;0.09564674;-0.000712689,0.2360187;-0.1778295;-0.04085493,-0.09808654;0.3654034;0.01753934,-0.3139902;0.1880527;0.03577016,-0.5563187;0.04918581;0.01594938,0.06776285;0.004190564;-0.04231589,0.06831148;-0.3737801;-0.003099859,0.06373923;-0.7176687;0.06185944,0.07124648;-0.7654871;-0.0004939437,-0.07285529;0.003550152;-0.03285578,-0.1162342;-0.3733503;-0.01130699,-0.1401916;-0.7175071;0.04770266,-0.1282286;-0.759927;-0.02021097,0.01706419;0.3991024;0.019704,0;0;0,0.005338815;0.1997847;0.007586579,0.0136645;0.4996123;0.005855957,0.1193901;0.3729205;-0.03436252,0.1971466;0.1049041;-0.0115338,0.2347142;-0.1660944;-0.07110284,-0.1030331;0.3627181;0.01797178,-0.3685994;0.2745016;0.02758134,-0.6421866;0.2905621;-0.02979526,0.06489442;0.006779873;-0.04628983,0.09198587;-0.3678705;0.01118328,0.1020754;-0.7079985;0.09310479,0.1103616;-0.7587657;0.03472663,-0.07601576;-0.0009329524;-0.02491454,-0.09574349;-0.3784531;0.0136778,-0.1021326;-0.7195458;0.09187558,-0.1161027;-0.7079734;-0.005414009,0.01077612;0.3997054;0.009060595,13.53053
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.005338815;0.1997847;0.007586579,0.0136645;0.4996123;0.005855957,0.1193901;0.3729205;-0.03436252,0.1971466;0.1049041;-0.0115338,0.2347142;-0.1660944;-0.07110284,-0.1030331;0.3627181;0.01797178,-0.3685994;0.2745016;0.02758134,-0.6421866;0.2905621;-0.02979526,0.06489442;0.006779873;-0.04628983,0.09198587;-0.3678705;0.01118328,0.1020754;-0.7079985;0.09310479,0.1103616;-0.7587657;0.03472663,-0.07601576;-0.0009329524;-0.02491454,-0.09574349;-0.3784531;0.0136778,-0.1021326;-0.7195458;0.09187558,-0.1161027;-0.7079734;-0.005414009,0.01077612;0.3997054;0.009060595,13.54194
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.005338815;0.1997847;0.007586579,0.0136645;0.4996123;0.005855957,0.1193901;0.3729205;-0.03436252,0.1971466;0.1049041;-0.0115338,0.2347142;-0.1660944;-0.07110284,-0.1030331;0.3627181;0.01797178,-0.3685994;0.2745016;0.02758134,-0.6421866;0.2905621;-0.02979526,0.06489442;0.006779873;-0.04628983,0.09198587;-0.3678705;0.01118328,0.1020754;-0.7079985;0.09310479,0.1103616;-0.7587657;0.03472663,-0.07601576;-0.0009329524;-0.02491454,-0.09574349;-0.3784531;0.0136778,-0.1021326;-0.7195458;0.09187558,-0.1161027;-0.7079734;-0.005414009,0.01077612;0.3997054;0.009060595,13.55315
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.005865484;0.1997731;0.007503509,0.01463958;0.4995885;0.005749304,0.1203054;0.3727206;-0.03418021,0.1973391;0.1044338;-0.01208828,0.2345596;-0.1665984;-0.0717216,-0.1024395;0.3634666;0.01786437,-0.3687457;0.2773578;0.02600276,-0.6417239;0.299593;-0.03220834,0.06475268;0.006556262;-0.04651994,0.09305637;-0.3680557;0.01061822,0.1031757;-0.708171;0.09258868,0.1110899;-0.7589664;0.03419793,-0.07613683;-0.0006755795;-0.02455048,-0.09478763;-0.3783428;0.01312703,-0.1010862;-0.7194549;0.09124813,-0.1149251;-0.7078763;-0.006061375,0.01161573;0.3996853;0.008941126,13.57537
+0;0;0,0.008470352;0.1993936;0.01305504,0.02254277;0.4989397;0.01955513,0.1266436;0.3671673;-0.01870121,0.1917254;0.09541458;-0.0009586513,0.2364612;-0.1780253;-0.04132392,-0.0975521;0.3655117;0.01776349,-0.3171736;0.1928073;0.03619101,-0.5609601;0.05628954;0.01799505,0.06784042;0.004243787;-0.04218611,0.06850604;-0.3737852;-0.003538772,0.06387711;-0.7176479;0.06155372,0.07141035;-0.7653574;-0.0009321496,-0.07280353;0.003492445;-0.03297649,-0.1161983;-0.3734086;-0.01147131,-0.1402077;-0.7175649;0.04752015,-0.1284463;-0.7610607;-0.01926338,0.01764012;0.3990611;0.02004199,0;0;0,0.005865484;0.1997731;0.007503509,0.01463958;0.4995885;0.005749304,0.1203054;0.3727206;-0.03418021,0.1973391;0.1044338;-0.01208828,0.2345596;-0.1665984;-0.0717216,-0.1024395;0.3634666;0.01786437,-0.3687457;0.2773578;0.02600276,-0.6417239;0.299593;-0.03220834,0.06475268;0.006556262;-0.04651994,0.09305637;-0.3680557;0.01061822,0.1031757;-0.708171;0.09258868,0.1110899;-0.7589664;0.03419793,-0.07613683;-0.0006755795;-0.02455048,-0.09478763;-0.3783428;0.01312703,-0.1010862;-0.7194549;0.09124813,-0.1149251;-0.7078763;-0.006061375,0.01161573;0.3996853;0.008941126,13.58687
+0;0;0,0.008619261;0.1993859;0.01307529,0.02288352;0.4989225;0.01958929,0.1270317;0.366806;-0.01807636,0.1917995;0.09493059;-0.001079507,0.2361199;-0.1784786;-0.04210549,-0.0973046;0.3656131;0.01779979,-0.3203481;0.1974387;0.0370088,-0.5659397;0.06408563;0.01963947,0.06782506;0.004240311;-0.04221115,0.06859604;-0.3738134;-0.003808342,0.06347947;-0.7175295;0.06201754,0.0713231;-0.764825;-0.0009419397,-0.0728143;0.003493008;-0.03295263,-0.1159655;-0.3734357;-0.01144233,-0.1401219;-0.7176692;0.04703628,-0.1283931;-0.7612007;-0.01971377,0.0179213;0.3990469;0.02007386,0;0;0,0.006118406;0.1997656;0.00750207,0.01511297;0.4995743;0.005697308,0.1206981;0.3726772;-0.03427151,0.1977761;0.1043944;-0.01228686,0.2339347;-0.1667729;-0.07195961,-0.1022156;0.3641841;0.01821762,-0.3687069;0.2785277;0.02495562,-0.6408322;0.3057195;-0.03511458,0.0646882;0.006452289;-0.04662408,0.09359187;-0.3681202;0.01047252,0.1037559;-0.7082776;0.09226299,0.1120562;-0.7589024;0.0336904,-0.07613634;-0.0005764498;-0.02455452,-0.09441317;-0.3782982;0.01275841,-0.100605;-0.7194347;0.09078111,-0.1145281;-0.707859;-0.006515816,0.01203753;0.399673;0.008903673,13.59896
+0;0;0,0.008619261;0.1993859;0.01307529,0.02288352;0.4989225;0.01958929,0.1270317;0.366806;-0.01807636,0.1917995;0.09493059;-0.001079507,0.2361199;-0.1784786;-0.04210549,-0.0973046;0.3656131;0.01779979,-0.3203481;0.1974387;0.0370088,-0.5659397;0.06408563;0.01963947,0.06782506;0.004240311;-0.04221115,0.06859604;-0.3738134;-0.003808342,0.06347947;-0.7175295;0.06201754,0.0713231;-0.764825;-0.0009419397,-0.0728143;0.003493008;-0.03295263,-0.1159655;-0.3734357;-0.01144233,-0.1401219;-0.7176692;0.04703628,-0.1283931;-0.7612007;-0.01971377,0.0179213;0.3990469;0.02007386,0;0;0,0.006118406;0.1997656;0.00750207,0.01511297;0.4995743;0.005697308,0.1206981;0.3726772;-0.03427151,0.1977761;0.1043944;-0.01228686,0.2339347;-0.1667729;-0.07195961,-0.1022156;0.3641841;0.01821762,-0.3687069;0.2785277;0.02495562,-0.6408322;0.3057195;-0.03511458,0.0646882;0.006452289;-0.04662408,0.09359187;-0.3681202;0.01047252,0.1037559;-0.7082776;0.09226299,0.1120562;-0.7589024;0.0336904,-0.07613634;-0.0005764498;-0.02455452,-0.09441317;-0.3782982;0.01275841,-0.100605;-0.7194347;0.09078111,-0.1145281;-0.707859;-0.006515816,0.01203753;0.399673;0.008903673,13.62004
+0;0;0,0.008721747;0.1993813;0.01307713,0.0230958;0.4989127;0.01958765,0.1271854;0.3669446;-0.0182735,0.1921838;0.0951308;-0.001171196,0.2366823;-0.1782016;-0.04251463,-0.0972182;0.3659012;0.01824167,-0.3241681;0.2030898;0.03789233,-0.5713177;0.07257743;0.02105086,0.06780308;0.004312498;-0.04223912,0.06716944;-0.3735946;-0.0024166,0.06349578;-0.7175516;0.06223688,0.07114113;-0.7648556;-0.0007364787,-0.07282463;0.003405448;-0.03293899,-0.115939;-0.3735164;-0.01123478,-0.1400758;-0.7178716;0.04653125,-0.1285254;-0.7615685;-0.02006729,0.01810111;0.3990387;0.02007469,0;0;0,0.006030902;0.1997661;0.007558911,0.01488503;0.4995803;0.005928811,0.1205071;0.3721714;-0.03381836,0.1973048;0.1037765;-0.01222454,0.2321764;-0.1676394;-0.07153183,-0.1024221;0.3644013;0.01882993,-0.3689288;0.2787621;0.02516179,-0.6403248;0.3068513;-0.03772872,0.06470396;0.006449404;-0.0466026,0.0935442;-0.3681399;0.01041559,0.1037297;-0.7082353;0.09246078,0.1118834;-0.7587645;0.03373632,-0.07611382;-0.0005534769;-0.02462479,-0.09442153;-0.3782657;0.01276917,-0.1005297;-0.7193787;0.09090128,-0.1144906;-0.7078028;-0.006390266,0.01186033;0.3996754;0.00906992,13.64233
+0;0;0,0.008721747;0.1993813;0.01307713,0.0230958;0.4989127;0.01958765,0.1271854;0.3669446;-0.0182735,0.1921838;0.0951308;-0.001171196,0.2366823;-0.1782016;-0.04251463,-0.0972182;0.3659012;0.01824167,-0.3241681;0.2030898;0.03789233,-0.5713177;0.07257743;0.02105086,0.06780308;0.004312498;-0.04223912,0.06716944;-0.3735946;-0.0024166,0.06349578;-0.7175516;0.06223688,0.07114113;-0.7648556;-0.0007364787,-0.07282463;0.003405448;-0.03293899,-0.115939;-0.3735164;-0.01123478,-0.1400758;-0.7178716;0.04653125,-0.1285254;-0.7615685;-0.02006729,0.01810111;0.3990387;0.02007469,0;0;0,0.006454441;0.1997572;0.007443957,0.01561116;0.4995624;0.005701532,0.1213954;0.3720928;-0.03339903,0.1973454;0.1034088;-0.01241025,0.2307036;-0.1682368;-0.07153635,-0.1018796;0.3647937;0.01873102,-0.3686386;0.2798598;0.02381545,-0.6397598;0.309306;-0.03963722,0.06469798;0.006242815;-0.04663902,0.09449977;-0.3683408;0.009920169,0.1048119;-0.7084464;0.09190711,0.1129777;-0.7589313;0.03312356,-0.07606424;-0.0003321927;-0.02478146,-0.09375734;-0.378112;0.01222295,-0.09968304;-0.7192345;0.09032767,-0.1134771;-0.7076583;-0.006987751,0.0125184;0.3996602;0.008860169,13.66455
+0;0;0,0.008721747;0.1993813;0.01307713,0.0230958;0.4989127;0.01958765,0.1271854;0.3669446;-0.0182735,0.1921838;0.0951308;-0.001171196,0.2366823;-0.1782016;-0.04251463,-0.0972182;0.3659012;0.01824167,-0.3241681;0.2030898;0.03789233,-0.5713177;0.07257743;0.02105086,0.06780308;0.004312498;-0.04223912,0.06716944;-0.3735946;-0.0024166,0.06349578;-0.7175516;0.06223688,0.07114113;-0.7648556;-0.0007364787,-0.07282463;0.003405448;-0.03293899,-0.115939;-0.3735164;-0.01123478,-0.1400758;-0.7178716;0.04653125,-0.1285254;-0.7615685;-0.02006729,0.01810111;0.3990387;0.02007469,0;0;0,0.006454441;0.1997572;0.007443957,0.01561116;0.4995624;0.005701532,0.1213954;0.3720928;-0.03339903,0.1973454;0.1034088;-0.01241025,0.2307036;-0.1682368;-0.07153635,-0.1018796;0.3647937;0.01873102,-0.3686386;0.2798598;0.02381545,-0.6397598;0.309306;-0.03963722,0.06469798;0.006242815;-0.04663902,0.09449977;-0.3683408;0.009920169,0.1048119;-0.7084464;0.09190711,0.1129777;-0.7589313;0.03312356,-0.07606424;-0.0003321927;-0.02478146,-0.09375734;-0.378112;0.01222295,-0.09968304;-0.7192345;0.09032767,-0.1134771;-0.7076583;-0.006987751,0.0125184;0.3996602;0.008860169,13.67583
+0;0;0,0.008858544;0.199367;0.01320265,0.02350053;0.4988792;0.02001214,0.1274154;0.3671026;-0.01833704,0.1927533;0.09536225;-0.001362868,0.2373784;-0.1779684;-0.04258124,-0.09694714;0.3660011;0.01859268,-0.326583;0.2069537;0.03786141,-0.5774626;0.08376035;0.02104338,0.0678518;0.004361765;-0.04215576,0.06778723;-0.3735963;-0.002815239,0.06367667;-0.7175575;0.06178931,0.07132846;-0.7648406;-0.001208998,-0.07278276;0.003346762;-0.03303738,-0.1160575;-0.3735431;-0.01109727,-0.1398667;-0.7179997;0.04619788,-0.1284677;-0.7615574;-0.02058035,0.01840975;0.3990096;0.02038926,0;0;0,0.006454441;0.1997572;0.007443957,0.01561116;0.4995624;0.005701532,0.1213954;0.3720928;-0.03339903,0.1973454;0.1034088;-0.01241025,0.2307036;-0.1682368;-0.07153635,-0.1018796;0.3647937;0.01873102,-0.3686386;0.2798598;0.02381545,-0.6397598;0.309306;-0.03963722,0.06469798;0.006242815;-0.04663902,0.09449977;-0.3683408;0.009920169,0.1048119;-0.7084464;0.09190711,0.1129777;-0.7589313;0.03312356,-0.07606424;-0.0003321927;-0.02478146,-0.09375734;-0.378112;0.01222295,-0.09968304;-0.7192345;0.09032767,-0.1134771;-0.7076583;-0.006987751,0.0125184;0.3996602;0.008860169,13.68705
+0;0;0,0.008858544;0.199367;0.01320265,0.02350053;0.4988792;0.02001214,0.1274154;0.3671026;-0.01833704,0.1927533;0.09536225;-0.001362868,0.2373784;-0.1779684;-0.04258124,-0.09694714;0.3660011;0.01859268,-0.326583;0.2069537;0.03786141,-0.5774626;0.08376035;0.02104338,0.0678518;0.004361765;-0.04215576,0.06778723;-0.3735963;-0.002815239,0.06367667;-0.7175575;0.06178931,0.07132846;-0.7648406;-0.001208998,-0.07278276;0.003346762;-0.03303738,-0.1160575;-0.3735431;-0.01109727,-0.1398667;-0.7179997;0.04619788,-0.1284677;-0.7615574;-0.02058035,0.01840975;0.3990096;0.02038926,0;0;0,0.006953446;0.1997384;0.007499401,0.01733433;0.4995075;0.006242151,0.1224358;0.3718621;-0.03310009,0.1976791;0.102973;-0.01219352,0.2300967;-0.1687279;-0.07158837,-0.1008874;0.3650447;0.01881168,-0.3683954;0.282411;0.02214535,-0.6393715;0.3123173;-0.04171044,0.06474128;0.006103888;-0.04659729,0.09515235;-0.368434;0.009940334,0.105435;-0.7085146;0.09203478,0.1132074;-0.758953;0.03313439,-0.07605567;-0.0001659137;-0.02480943,-0.09273583;-0.3780653;0.01143723,-0.09892797;-0.7191441;0.08971164,-0.1126125;-0.7075373;-0.007625028,0.01362032;0.3996201;0.009192845,13.69819
+0;0;0,0.008858544;0.199367;0.01320265,0.02350053;0.4988792;0.02001214,0.1274154;0.3671026;-0.01833704,0.1927533;0.09536225;-0.001362868,0.2373784;-0.1779684;-0.04258124,-0.09694714;0.3660011;0.01859268,-0.326583;0.2069537;0.03786141,-0.5774626;0.08376035;0.02104338,0.0678518;0.004361765;-0.04215576,0.06778723;-0.3735963;-0.002815239,0.06367667;-0.7175575;0.06178931,0.07132846;-0.7648406;-0.001208998,-0.07278276;0.003346762;-0.03303738,-0.1160575;-0.3735431;-0.01109727,-0.1398667;-0.7179997;0.04619788,-0.1284677;-0.7615574;-0.02058035,0.01840975;0.3990096;0.02038926,0;0;0,0.006953446;0.1997384;0.007499401,0.01733433;0.4995075;0.006242151,0.1224358;0.3718621;-0.03310009,0.1976791;0.102973;-0.01219352,0.2300967;-0.1687279;-0.07158837,-0.1008874;0.3650447;0.01881168,-0.3683954;0.282411;0.02214535,-0.6393715;0.3123173;-0.04171044,0.06474128;0.006103888;-0.04659729,0.09515235;-0.368434;0.009940334,0.105435;-0.7085146;0.09203478,0.1132074;-0.758953;0.03313439,-0.07605567;-0.0001659137;-0.02480943,-0.09273583;-0.3780653;0.01143723,-0.09892797;-0.7191441;0.08971164,-0.1126125;-0.7075373;-0.007625028,0.01362032;0.3996201;0.009192845,13.70964
+0;0;0,0.008867874;0.199371;0.01313691,0.02343731;0.4988883;0.019878,0.1274266;0.3673666;-0.01855349,0.1934727;0.09582567;-0.001132784,0.2376556;-0.1775546;-0.04249836,-0.09703733;0.3662138;0.01879901,-0.3310171;0.213685;0.03850795,-0.5867793;0.1006365;0.02416493,0.06791002;0.004391224;-0.04205886,0.0681783;-0.3736244;-0.003276091,0.06392799;-0.7175974;0.06125693,0.07138844;-0.7648598;-0.001789566,-0.0727209;0.0033105;-0.03317698,-0.116223;-0.3735719;-0.01156105,-0.1396166;-0.7180524;0.04576187,-0.1291461;-0.7621523;-0.02056746,0.01838266;0.3990169;0.02027519,0;0;0,0.006964093;0.1997355;0.007564665,0.0174127;0.4995025;0.006453888,0.122457;0.3719627;-0.03311637,0.1976224;0.1030804;-0.01184467,0.228248;-0.1689174;-0.07082988,-0.10088;0.365235;0.01896501,-0.3687693;0.2838099;0.0212568,-0.6397924;0.3145827;-0.04198498,0.06472459;0.006107516;-0.04662002,0.0949783;-0.3684026;0.0101856,0.1052175;-0.7085441;0.09203215,0.1131928;-0.7595506;0.03394302,-0.07606135;-0.0001674698;-0.02479197,-0.09310768;-0.3780521;0.01143896,-0.09905004;-0.719107;0.08983674,-0.1127609;-0.7074906;-0.007498026,0.01368847;0.3996143;0.00936654,13.73156
+0;0;0,0.008867874;0.199371;0.01313691,0.02343731;0.4988883;0.019878,0.1274266;0.3673666;-0.01855349,0.1934727;0.09582567;-0.001132784,0.2376556;-0.1775546;-0.04249836,-0.09703733;0.3662138;0.01879901,-0.3310171;0.213685;0.03850795,-0.5867793;0.1006365;0.02416493,0.06791002;0.004391224;-0.04205886,0.0681783;-0.3736244;-0.003276091,0.06392799;-0.7175974;0.06125693,0.07138844;-0.7648598;-0.001789566,-0.0727209;0.0033105;-0.03317698,-0.116223;-0.3735719;-0.01156105,-0.1396166;-0.7180524;0.04576187,-0.1291461;-0.7621523;-0.02056746,0.01838266;0.3990169;0.02027519,0;0;0,0.006964093;0.1997355;0.007564665,0.0174127;0.4995025;0.006453888,0.122457;0.3719627;-0.03311637,0.1976224;0.1030804;-0.01184467,0.228248;-0.1689174;-0.07082988,-0.10088;0.365235;0.01896501,-0.3687693;0.2838099;0.0212568,-0.6397924;0.3145827;-0.04198498,0.06472459;0.006107516;-0.04662002,0.0949783;-0.3684026;0.0101856,0.1052175;-0.7085441;0.09203215,0.1131928;-0.7595506;0.03394302,-0.07606135;-0.0001674698;-0.02479197,-0.09310768;-0.3780521;0.01143896,-0.09905004;-0.719107;0.08983674,-0.1127609;-0.7074906;-0.007498026,0.01368847;0.3996143;0.00936654,13.74294
+0;0;0,0.008867874;0.199371;0.01313691,0.02343731;0.4988883;0.019878,0.1274266;0.3673666;-0.01855349,0.1934727;0.09582567;-0.001132784,0.2376556;-0.1775546;-0.04249836,-0.09703733;0.3662138;0.01879901,-0.3310171;0.213685;0.03850795,-0.5867793;0.1006365;0.02416493,0.06791002;0.004391224;-0.04205886,0.0681783;-0.3736244;-0.003276091,0.06392799;-0.7175974;0.06125693,0.07138844;-0.7648598;-0.001789566,-0.0727209;0.0033105;-0.03317698,-0.116223;-0.3735719;-0.01156105,-0.1396166;-0.7180524;0.04576187,-0.1291461;-0.7621523;-0.02056746,0.01838266;0.3990169;0.02027519,0;0;0,0.00705598;0.1997287;0.007658456,0.0177076;0.4994881;0.006626436,0.1226972;0.3718252;-0.03289513,0.1976823;0.1028907;-0.01164715,0.226204;-0.1696328;-0.0692448,-0.100635;0.3651757;0.01889086,-0.3690194;0.2853912;0.02095807,-0.6401254;0.3157611;-0.04212271,0.0647252;0.006090249;-0.04662143,0.09490682;-0.3684424;0.01007366,0.1050073;-0.708591;0.09190831,0.1130992;-0.7596121;0.03385579,-0.07605235;-0.0001453639;-0.02481971,-0.09358315;-0.3780077;0.0114115,-0.09936316;-0.719;0.09009344,-0.1129691;-0.7073823;-0.007256284,0.01393954;0.3996014;0.009534368,13.76504
+0;0;0,0.008996519;0.199367;0.0131092,0.02370468;0.4988779;0.01983866,0.1276546;0.3674471;-0.01863894,0.19406;0.09600985;-0.0009712204,0.2381062;-0.1773425;-0.04266565,-0.09686004;0.366339;0.01923099,-0.3342544;0.2191529;0.03872838,-0.5916345;0.1099958;0.02322942,0.06788849;0.004399925;-0.04209266,0.06873038;-0.3736196;-0.00335563,0.06410693;-0.7176429;0.06088273,0.07151467;-0.7647458;-0.002364971,-0.07273919;0.003295872;-0.0331383,-0.1159988;-0.3736302;-0.01180056,-0.139242;-0.7180828;0.04575121,-0.1289375;-0.7618726;-0.02094878,0.01860276;0.3990089;0.02023963,0;0;0,0.00705598;0.1997287;0.007658456,0.0177076;0.4994881;0.006626436,0.1226972;0.3718252;-0.03289513,0.1976823;0.1028907;-0.01164715,0.226204;-0.1696328;-0.0692448,-0.100635;0.3651757;0.01889086,-0.3690194;0.2853912;0.02095807,-0.6401254;0.3157611;-0.04212271,0.0647252;0.006090249;-0.04662143,0.09490682;-0.3684424;0.01007366,0.1050073;-0.708591;0.09190831,0.1130992;-0.7596121;0.03385579,-0.07605235;-0.0001453639;-0.02481971,-0.09358315;-0.3780077;0.0114115,-0.09936316;-0.719;0.09009344,-0.1129691;-0.7073823;-0.007256284,0.01393954;0.3996014;0.009534368,13.77637
+0;0;0,0.008996519;0.199367;0.0131092,0.02370468;0.4988779;0.01983866,0.1276546;0.3674471;-0.01863894,0.19406;0.09600985;-0.0009712204,0.2381062;-0.1773425;-0.04266565,-0.09686004;0.366339;0.01923099,-0.3342544;0.2191529;0.03872838,-0.5916345;0.1099958;0.02322942,0.06788849;0.004399925;-0.04209266,0.06873038;-0.3736196;-0.00335563,0.06410693;-0.7176429;0.06088273,0.07151467;-0.7647458;-0.002364971,-0.07273919;0.003295872;-0.0331383,-0.1159988;-0.3736302;-0.01180056,-0.139242;-0.7180828;0.04575121,-0.1289375;-0.7618726;-0.02094878,0.01860276;0.3990089;0.02023963,0;0;0,0.00705598;0.1997287;0.007658456,0.0177076;0.4994881;0.006626436,0.1226972;0.3718252;-0.03289513,0.1976823;0.1028907;-0.01164715,0.226204;-0.1696328;-0.0692448,-0.100635;0.3651757;0.01889086,-0.3690194;0.2853912;0.02095807,-0.6401254;0.3157611;-0.04212271,0.0647252;0.006090249;-0.04662143,0.09490682;-0.3684424;0.01007366,0.1050073;-0.708591;0.09190831,0.1130992;-0.7596121;0.03385579,-0.07605235;-0.0001453639;-0.02481971,-0.09358315;-0.3780077;0.0114115,-0.09936316;-0.719;0.09009344,-0.1129691;-0.7073823;-0.007256284,0.01393954;0.3996014;0.009534368,13.78768
+0;0;0,0.008996519;0.199367;0.0131092,0.02370468;0.4988779;0.01983866,0.1276546;0.3674471;-0.01863894,0.19406;0.09600985;-0.0009712204,0.2381062;-0.1773425;-0.04266565,-0.09686004;0.366339;0.01923099,-0.3342544;0.2191529;0.03872838,-0.5916345;0.1099958;0.02322942,0.06788849;0.004399925;-0.04209266,0.06873038;-0.3736196;-0.00335563,0.06410693;-0.7176429;0.06088273,0.07151467;-0.7647458;-0.002364971,-0.07273919;0.003295872;-0.0331383,-0.1159988;-0.3736302;-0.01180056,-0.139242;-0.7180828;0.04575121,-0.1289375;-0.7618726;-0.02094878,0.01860276;0.3990089;0.02023963,0;0;0,0.006893804;0.1997351;0.007638893,0.01712989;0.4995088;0.006626669,0.1224014;0.3715803;-0.03255122,0.1968884;0.1025429;-0.010858,0.2244494;-0.170193;-0.06791532,-0.1001986;0.3626684;0.01901555,-0.3705242;0.2897085;0.01997485,-0.6416129;0.3213001;-0.04257828,0.06475411;0.00609579;-0.04658053,0.09471019;-0.3684446;0.01018318,0.1049249;-0.7086107;0.09193074,0.1123305;-0.7587852;0.03262474,-0.07600936;-0.0001785097;-0.02495086,-0.0938805;-0.3780159;0.01137411,-0.09964752;-0.7190081;0.09005741,-0.1133462;-0.7073982;-0.007277854,0.01357843;0.3996144;0.009539673,13.80991
+0;0;0,0.009056021;0.1993635;0.01312191,0.0237747;0.4988737;0.01985871,0.1277907;0.3674763;-0.01847665,0.194439;0.09610584;-0.0006982926,0.2382782;-0.1773275;-0.04207832,-0.09687793;0.3666477;0.02000534,-0.3371064;0.224108;0.03931054,-0.5983487;0.1246684;0.02305521,0.06796339;0.004456939;-0.04196562,0.06942165;-0.373571;-0.003330026,0.06422225;-0.7175925;0.06087403,0.07210691;-0.7641596;-0.002964165,-0.07267879;0.003257259;-0.03327437,-0.1156368;-0.3737021;-0.01191421,-0.1389639;-0.7181962;0.04535445,-0.1284701;-0.7623097;-0.02095593,0.01867713;0.3990045;0.02025586,0;0;0,0.006893804;0.1997351;0.007638893,0.01712989;0.4995088;0.006626669,0.1224014;0.3715803;-0.03255122,0.1968884;0.1025429;-0.010858,0.2244494;-0.170193;-0.06791532,-0.1001986;0.3626684;0.01901555,-0.3705242;0.2897085;0.01997485,-0.6416129;0.3213001;-0.04257828,0.06475411;0.00609579;-0.04658053,0.09471019;-0.3684446;0.01018318,0.1049249;-0.7086107;0.09193074,0.1123305;-0.7587852;0.03262474,-0.07600936;-0.0001785097;-0.02495086,-0.0938805;-0.3780159;0.01137411,-0.09964752;-0.7190081;0.09005741,-0.1133462;-0.7073982;-0.007277854,0.01357843;0.3996144;0.009539673,13.82119
+0;0;0,0.009056021;0.1993635;0.01312191,0.0237747;0.4988737;0.01985871,0.1277907;0.3674763;-0.01847665,0.194439;0.09610584;-0.0006982926,0.2382782;-0.1773275;-0.04207832,-0.09687793;0.3666477;0.02000534,-0.3371064;0.224108;0.03931054,-0.5983487;0.1246684;0.02305521,0.06796339;0.004456939;-0.04196562,0.06942165;-0.373571;-0.003330026,0.06422225;-0.7175925;0.06087403,0.07210691;-0.7641596;-0.002964165,-0.07267879;0.003257259;-0.03327437,-0.1156368;-0.3737021;-0.01191421,-0.1389639;-0.7181962;0.04535445,-0.1284701;-0.7623097;-0.02095593,0.01867713;0.3990045;0.02025586,0;0;0,0.006964961;0.1997364;0.007541234,0.01735374;0.4995035;0.006261949,0.1226897;0.371181;-0.03229869,0.1965452;0.1020102;-0.01010675,0.2237558;-0.1706983;-0.06746209,-0.1001811;0.3633022;0.01910361,-0.3705024;0.2903203;0.01887448,-0.6414338;0.3238412;-0.04335476,0.06498706;0.006004173;-0.04626696,0.09577036;-0.3686066;0.009582371,0.1060252;-0.7087907;0.09125017,0.1135981;-0.7588249;0.031776,-0.07584807;-6.881965E-05;-0.0254375,-0.09312442;-0.3779376;0.01084849,-0.09892014;-0.7189403;0.08948431,-0.1125097;-0.7073414;-0.007864147,0.01377003;0.3996131;0.009272006,13.84335
+0;0;0,0.009056021;0.1993635;0.01312191,0.0237747;0.4988737;0.01985871,0.1277907;0.3674763;-0.01847665,0.194439;0.09610584;-0.0006982926,0.2382782;-0.1773275;-0.04207832,-0.09687793;0.3666477;0.02000534,-0.3371064;0.224108;0.03931054,-0.5983487;0.1246684;0.02305521,0.06796339;0.004456939;-0.04196562,0.06942165;-0.373571;-0.003330026,0.06422225;-0.7175925;0.06087403,0.07210691;-0.7641596;-0.002964165,-0.07267879;0.003257259;-0.03327437,-0.1156368;-0.3737021;-0.01191421,-0.1389639;-0.7181962;0.04535445,-0.1284701;-0.7623097;-0.02095593,0.01867713;0.3990045;0.02025586,0;0;0,0.006964961;0.1997364;0.007541234,0.01735374;0.4995035;0.006261949,0.1226897;0.371181;-0.03229869,0.1965452;0.1020102;-0.01010675,0.2237558;-0.1706983;-0.06746209,-0.1001811;0.3633022;0.01910361,-0.3705024;0.2903203;0.01887448,-0.6414338;0.3238412;-0.04335476,0.06498706;0.006004173;-0.04626696,0.09577036;-0.3686066;0.009582371,0.1060252;-0.7087907;0.09125017,0.1135981;-0.7588249;0.031776,-0.07584807;-6.881965E-05;-0.0254375,-0.09312442;-0.3779376;0.01084849,-0.09892014;-0.7189403;0.08948431,-0.1125097;-0.7073414;-0.007864147,0.01377003;0.3996131;0.009272006,13.85461
+0;0;0,0.009030208;0.1993653;0.01311285,0.0236621;0.498881;0.01979399,0.1277164;0.3676974;-0.0186905,0.1948965;0.09648177;-0.0005543809,0.2388632;-0.1769165;-0.04203099,-0.09708451;0.3671211;0.02027341,-0.3412597;0.231637;0.04082857,-0.6033049;0.1345793;0.02316124,0.06791342;0.004506957;-0.04204111,0.06963946;-0.3735504;-0.003705136,0.06440059;-0.7175987;0.06035186,0.07225834;-0.7639749;-0.003717884,-0.07269925;0.003186972;-0.03323647,-0.1155464;-0.3738126;-0.01236996,-0.1389746;-0.7183221;0.04476443,-0.1282539;-0.7625417;-0.02139089,0.01860082;0.39901;0.02021081,0;0;0,0.006975838;0.1997311;0.007669343,0.01752219;0.4994941;0.006720221,0.1228592;0.3714088;-0.03197404,0.196514;0.102174;-0.009892682,0.2230282;-0.1707623;-0.06648577,-0.1005117;0.3646005;0.01900992,-0.370794;0.291474;0.01893377,-0.6412597;0.3294883;-0.0427366,0.06515739;0.00597518;-0.04603055,0.09544587;-0.3686589;0.009932648,0.1057709;-0.7089953;0.09095465,0.1133811;-0.7589585;0.03138974,-0.07576545;2.917254E-05;-0.02568259,-0.09334449;-0.3777975;0.01089521,-0.09899977;-0.7188511;0.08932031,-0.1123634;-0.7072216;-0.008065216,0.01388519;0.3996023;0.009616707,13.8768
+0;0;0,0.009030208;0.1993653;0.01311285,0.0236621;0.498881;0.01979399,0.1277164;0.3676974;-0.0186905,0.1948965;0.09648177;-0.0005543809,0.2388632;-0.1769165;-0.04203099,-0.09708451;0.3671211;0.02027341,-0.3412597;0.231637;0.04082857,-0.6033049;0.1345793;0.02316124,0.06791342;0.004506957;-0.04204111,0.06963946;-0.3735504;-0.003705136,0.06440059;-0.7175987;0.06035186,0.07225834;-0.7639749;-0.003717884,-0.07269925;0.003186972;-0.03323647,-0.1155464;-0.3738126;-0.01236996,-0.1389746;-0.7183221;0.04476443,-0.1282539;-0.7625417;-0.02139089,0.01860082;0.39901;0.02021081,0;0;0,0.006975838;0.1997311;0.007669343,0.01752219;0.4994941;0.006720221,0.1228592;0.3714088;-0.03197404,0.196514;0.102174;-0.009892682,0.2230282;-0.1707623;-0.06648577,-0.1005117;0.3646005;0.01900992,-0.370794;0.291474;0.01893377,-0.6412597;0.3294883;-0.0427366,0.06515739;0.00597518;-0.04603055,0.09544587;-0.3686589;0.009932648,0.1057709;-0.7089953;0.09095465,0.1133811;-0.7589585;0.03138974,-0.07576545;2.917254E-05;-0.02568259,-0.09334449;-0.3777975;0.01089521,-0.09899977;-0.7188511;0.08932031,-0.1123634;-0.7072216;-0.008065216,0.01388519;0.3996023;0.009616707,13.88819
+0;0;0,0.009030208;0.1993653;0.01311285,0.0236621;0.498881;0.01979399,0.1277164;0.3676974;-0.0186905,0.1948965;0.09648177;-0.0005543809,0.2388632;-0.1769165;-0.04203099,-0.09708451;0.3671211;0.02027341,-0.3412597;0.231637;0.04082857,-0.6033049;0.1345793;0.02316124,0.06791342;0.004506957;-0.04204111,0.06963946;-0.3735504;-0.003705136,0.06440059;-0.7175987;0.06035186,0.07225834;-0.7639749;-0.003717884,-0.07269925;0.003186972;-0.03323647,-0.1155464;-0.3738126;-0.01236996,-0.1389746;-0.7183221;0.04476443,-0.1282539;-0.7625417;-0.02139089,0.01860082;0.39901;0.02021081,0;0;0,0.006871752;0.1997371;0.007606451,0.01725681;0.4995051;0.006548591,0.1228585;0.371545;-0.03167797,0.1963841;0.1023068;-0.009210944,0.2227936;-0.1710279;-0.06389787,-0.1008826;0.3652287;0.01900736,-0.3711407;0.2920128;0.01901514,-0.6413827;0.3346163;-0.04060194,0.06518838;0.005914629;-0.04599448,0.09521674;-0.3687063;0.01019644,0.1056233;-0.70916;0.09071361,0.1132501;-0.7592648;0.03134137,-0.07572759;7.872836E-05;-0.02579391,-0.09347472;-0.3777644;0.01053216,-0.09920669;-0.7188029;0.08901723,-0.112445;-0.7071813;-0.00838393,0.01369142;0.3996119;0.009489859,13.89923
+0;0;0,0.009129696;0.1993628;0.01308055,0.02382755;0.4988765;0.01971603,0.1278862;0.3678873;-0.0188527,0.1952233;0.09671125;-0.0007063486,0.2395638;-0.1766423;-0.04207952,-0.09692515;0.3670837;0.02060517,-0.3442428;0.2374334;0.04121587,-0.6086458;0.147107;0.02299087,0.06792352;0.004566428;-0.04201837,0.06998231;-0.3735087;-0.00387504,0.06474044;-0.7175963;0.05997054,0.07269403;-0.763842;-0.004242606,-0.07266805;0.003136081;-0.03330944,-0.1155492;-0.3738483;-0.01223844,-0.1387718;-0.7184058;0.04468976,-0.1477833;-0.705825;-0.0533682,0.01874994;0.3990064;0.02014573,0;0;0,0.006871752;0.1997371;0.007606451,0.01725681;0.4995051;0.006548591,0.1228585;0.371545;-0.03167797,0.1963841;0.1023068;-0.009210944,0.2227936;-0.1710279;-0.06389787,-0.1008826;0.3652287;0.01900736,-0.3711407;0.2920128;0.01901514,-0.6413827;0.3346163;-0.04060194,0.06518838;0.005914629;-0.04599448,0.09521674;-0.3687063;0.01019644,0.1056233;-0.70916;0.09071361,0.1132501;-0.7592648;0.03134137,-0.07572759;7.872836E-05;-0.02579391,-0.09347472;-0.3777644;0.01053216,-0.09920669;-0.7188029;0.08901723,-0.112445;-0.7071813;-0.00838393,0.01369142;0.3996119;0.009489859,13.92144
+0;0;0,0.009129696;0.1993628;0.01308055,0.02382755;0.4988765;0.01971603,0.1278862;0.3678873;-0.0188527,0.1952233;0.09671125;-0.0007063486,0.2395638;-0.1766423;-0.04207952,-0.09692515;0.3670837;0.02060517,-0.3442428;0.2374334;0.04121587,-0.6086458;0.147107;0.02299087,0.06792352;0.004566428;-0.04201837,0.06998231;-0.3735087;-0.00387504,0.06474044;-0.7175963;0.05997054,0.07269403;-0.763842;-0.004242606,-0.07266805;0.003136081;-0.03330944,-0.1155492;-0.3738483;-0.01223844,-0.1387718;-0.7184058;0.04468976,-0.1477833;-0.705825;-0.0533682,0.01874994;0.3990064;0.02014573,0;0;0,0.006864975;0.1997356;0.007652706,0.01723759;0.4995037;0.006619268,0.1228538;0.3716458;-0.03165594,0.1963196;0.1024216;-0.008827537,0.2228188;-0.1711576;-0.06223362,-0.1009765;0.3654523;0.01890686,-0.3715074;0.2932521;0.01929113,-0.6413361;0.3381561;-0.04050932,0.06519384;0.00590953;-0.0459874,0.09502462;-0.3687002;0.01038355,0.1055757;-0.7091314;0.09097684,0.1132699;-0.7579808;0.02995586,-0.07572296;8.547175E-05;-0.02580748,-0.09377906;-0.3777173;0.01078567,-0.09953949;-0.7188325;0.08893453,-0.1127076;-0.7072014;-0.008477934,0.01367901;0.3996104;0.009561246,13.93265
+0;0;0,0.009129696;0.1993628;0.01308055,0.02382755;0.4988765;0.01971603,0.1278862;0.3678873;-0.0188527,0.1952233;0.09671125;-0.0007063486,0.2395638;-0.1766423;-0.04207952,-0.09692515;0.3670837;0.02060517,-0.3442428;0.2374334;0.04121587,-0.6086458;0.147107;0.02299087,0.06792352;0.004566428;-0.04201837,0.06998231;-0.3735087;-0.00387504,0.06474044;-0.7175963;0.05997054,0.07269403;-0.763842;-0.004242606,-0.07266805;0.003136081;-0.03330944,-0.1155492;-0.3738483;-0.01223844,-0.1387718;-0.7184058;0.04468976,-0.1477833;-0.705825;-0.0533682,0.01874994;0.3990064;0.02014573,0;0;0,0.006864975;0.1997356;0.007652706,0.01723759;0.4995037;0.006619268,0.1228538;0.3716458;-0.03165594,0.1963196;0.1024216;-0.008827537,0.2228188;-0.1711576;-0.06223362,-0.1009765;0.3654523;0.01890686,-0.3715074;0.2932521;0.01929113,-0.6413361;0.3381561;-0.04050932,0.06519384;0.00590953;-0.0459874,0.09502462;-0.3687002;0.01038355,0.1055757;-0.7091314;0.09097684,0.1132699;-0.7579808;0.02995586,-0.07572296;8.547175E-05;-0.02580748,-0.09377906;-0.3777173;0.01078567,-0.09953949;-0.7188325;0.08893453,-0.1127076;-0.7072014;-0.008477934,0.01367901;0.3996104;0.009561246,13.95503
+0;0;0,0.009305578;0.1993645;0.01293055,0.02411699;0.4988762;0.01942171,0.1282095;0.3680823;-0.01910428,0.1960295;0.09706238;-0.0004329793,0.240443;-0.1762067;-0.04228321,-0.09679043;0.3675675;0.02060973,-0.3481584;0.2459082;0.04093664,-0.613115;0.1570112;0.0237519,0.06789394;0.004601059;-0.04206235,0.07040444;-0.373518;-0.00438372,0.06441714;-0.7174276;0.06034894,0.07342889;-0.7643718;-0.002883822,-0.07269738;0.003067907;-0.03325175,-0.11668;-0.3737718;-0.01186569,-0.1380603;-0.71855;0.04444517,-0.1275387;-0.7630371;-0.02144083,0.01901544;0.3990075;0.01988656,0;0;0,0.007132873;0.1997332;0.007467846,0.01763052;0.4994973;0.006319163,0.1232524;0.3715616;-0.03177177,0.1964997;0.102327;-0.008370899,0.2240445;-0.1713289;-0.06084691,-0.1006723;0.3655844;0.01847146,-0.3714664;0.2943875;0.0197185,-0.6411119;0.3407999;-0.03975587,0.06522685;0.005759943;-0.04595955,0.09542473;-0.3688146;0.01044949,0.1059338;-0.7092979;0.09082812,0.113594;-0.7584476;0.0301927,-0.07571599;0.0002684419;-0.02582665,-0.09321271;-0.3775884;0.01047856,-0.09895776;-0.7187201;0.08855636,-0.1120163;-0.7070962;-0.008869499,0.01403645;0.3996058;0.009281792,13.96614
+0;0;0,0.009305578;0.1993645;0.01293055,0.02411699;0.4988762;0.01942171,0.1282095;0.3680823;-0.01910428,0.1960295;0.09706238;-0.0004329793,0.240443;-0.1762067;-0.04228321,-0.09679043;0.3675675;0.02060973,-0.3481584;0.2459082;0.04093664,-0.613115;0.1570112;0.0237519,0.06789394;0.004601059;-0.04206235,0.07040444;-0.373518;-0.00438372,0.06441714;-0.7174276;0.06034894,0.07342889;-0.7643718;-0.002883822,-0.07269738;0.003067907;-0.03325175,-0.11668;-0.3737718;-0.01186569,-0.1380603;-0.71855;0.04444517,-0.1275387;-0.7630371;-0.02144083,0.01901544;0.3990075;0.01988656,0;0;0,0.007132873;0.1997332;0.007467846,0.01763052;0.4994973;0.006319163,0.1232524;0.3715616;-0.03177177,0.1964997;0.102327;-0.008370899,0.2240445;-0.1713289;-0.06084691,-0.1006723;0.3655844;0.01847146,-0.3714664;0.2943875;0.0197185,-0.6411119;0.3407999;-0.03975587,0.06522685;0.005759943;-0.04595955,0.09542473;-0.3688146;0.01044949,0.1059338;-0.7092979;0.09082812,0.113594;-0.7584476;0.0301927,-0.07571599;0.0002684419;-0.02582665,-0.09321271;-0.3775884;0.01047856,-0.09895776;-0.7187201;0.08855636,-0.1120163;-0.7070962;-0.008869499,0.01403645;0.3996058;0.009281792,13.97751
+0;0;0,0.009305578;0.1993645;0.01293055,0.02411699;0.4988762;0.01942171,0.1282095;0.3680823;-0.01910428,0.1960295;0.09706238;-0.0004329793,0.240443;-0.1762067;-0.04228321,-0.09679043;0.3675675;0.02060973,-0.3481584;0.2459082;0.04093664,-0.613115;0.1570112;0.0237519,0.06789394;0.004601059;-0.04206235,0.07040444;-0.373518;-0.00438372,0.06441714;-0.7174276;0.06034894,0.07342889;-0.7643718;-0.002883822,-0.07269738;0.003067907;-0.03325175,-0.11668;-0.3737718;-0.01186569,-0.1380603;-0.71855;0.04444517,-0.1275387;-0.7630371;-0.02144083,0.01901544;0.3990075;0.01988656,0;0;0,0.00709369;0.199734;0.007483382,0.01751748;0.4994998;0.00628408,0.1232149;0.3717415;-0.03179107,0.1964519;0.1025538;-0.00782557,0.2248038;-0.1711715;-0.05950376,-0.10077;0.3656491;0.01843322,-0.3717485;0.2951598;0.01981497,-0.6414328;0.3427101;-0.03857505,0.06525175;0.005773567;-0.04592248,0.09536523;-0.3688115;0.01046165,0.1059198;-0.7093026;0.09080111,0.1137154;-0.7584314;0.03015563,-0.07568941;0.000252455;-0.02590461,-0.09329842;-0.3775822;0.01057717,-0.09908425;-0.7187223;0.08861529,-0.11213;-0.7070987;-0.008812197,0.01396016;0.399608;0.009280431,13.99962
+0;0;0,0.009315118;0.1993625;0.01295394,0.02412764;0.4988744;0.0194227,0.1285411;0.3680911;-0.01819473,0.1959779;0.09692338;-0.000297375,0.2406505;-0.1762547;-0.0424644,-0.09673095;0.3674095;0.02109802,-0.3511946;0.2524639;0.04197288,-0.6174657;0.167679;0.02433159,0.0679182;0.004631103;-0.0420199,0.07095236;-0.3735139;-0.004641216,0.06490506;-0.7174513;0.05993814,0.07409275;-0.7645906;-0.00303096,-0.07263178;0.003040321;-0.0333973,-0.1162533;-0.3738481;-0.01213043,-0.1376748;-0.7186333;0.04412183,-0.1269477;-0.7630005;-0.02186646,0.01902848;0.3990057;0.01990101,0;0;0,0.00709369;0.199734;0.007483382,0.01751748;0.4994998;0.00628408,0.1232149;0.3717415;-0.03179107,0.1964519;0.1025538;-0.00782557,0.2248038;-0.1711715;-0.05950376,-0.10077;0.3656491;0.01843322,-0.3717485;0.2951598;0.01981497,-0.6414328;0.3427101;-0.03857505,0.06525175;0.005773567;-0.04592248,0.09536523;-0.3688115;0.01046165,0.1059198;-0.7093026;0.09080111,0.1137154;-0.7584314;0.03015563,-0.07568941;0.000252455;-0.02590461,-0.09329842;-0.3775822;0.01057717,-0.09908425;-0.7187223;0.08861529,-0.11213;-0.7070987;-0.008812197,0.01396016;0.399608;0.009280431,14.01107
+0;0;0,0.009315118;0.1993625;0.01295394,0.02412764;0.4988744;0.0194227,0.1285411;0.3680911;-0.01819473,0.1959779;0.09692338;-0.000297375,0.2406505;-0.1762547;-0.0424644,-0.09673095;0.3674095;0.02109802,-0.3511946;0.2524639;0.04197288,-0.6174657;0.167679;0.02433159,0.0679182;0.004631103;-0.0420199,0.07095236;-0.3735139;-0.004641216,0.06490506;-0.7174513;0.05993814,0.07409275;-0.7645906;-0.00303096,-0.07263178;0.003040321;-0.0333973,-0.1162533;-0.3738481;-0.01213043,-0.1376748;-0.7186333;0.04412183,-0.1269477;-0.7630005;-0.02186646,0.01902848;0.3990057;0.01990101,0;0;0,0.00709369;0.199734;0.007483382,0.01751748;0.4994998;0.00628408,0.1232149;0.3717415;-0.03179107,0.1964519;0.1025538;-0.00782557,0.2248038;-0.1711715;-0.05950376,-0.10077;0.3656491;0.01843322,-0.3717485;0.2951598;0.01981497,-0.6414328;0.3427101;-0.03857505,0.06525175;0.005773567;-0.04592248,0.09536523;-0.3688115;0.01046165,0.1059198;-0.7093026;0.09080111,0.1137154;-0.7584314;0.03015563,-0.07568941;0.000252455;-0.02590461,-0.09329842;-0.3775822;0.01057717,-0.09908425;-0.7187223;0.08861529,-0.11213;-0.7070987;-0.008812197,0.01396016;0.399608;0.009280431,14.02222
+0;0;0,0.009315118;0.1993625;0.01295394,0.02412764;0.4988744;0.0194227,0.1285411;0.3680911;-0.01819473,0.1959779;0.09692338;-0.000297375,0.2406505;-0.1762547;-0.0424644,-0.09673095;0.3674095;0.02109802,-0.3511946;0.2524639;0.04197288,-0.6174657;0.167679;0.02433159,0.0679182;0.004631103;-0.0420199,0.07095236;-0.3735139;-0.004641216,0.06490506;-0.7174513;0.05993814,0.07409275;-0.7645906;-0.00303096,-0.07263178;0.003040321;-0.0333973,-0.1162533;-0.3738481;-0.01213043,-0.1376748;-0.7186333;0.04412183,-0.1269477;-0.7630005;-0.02186646,0.01902848;0.3990057;0.01990101,0;0;0,0.006894347;0.1997412;0.007478876,0.01654604;0.4995301;0.006010876,0.1225786;0.3716017;-0.03178773,0.1960981;0.1025735;-0.006914217,0.2251864;-0.1711725;-0.05807125,-0.1013594;0.365506;0.01842352,-0.3723391;0.295028;0.02012158,-0.6421634;0.342623;-0.03758055,0.06525378;0.005789971;-0.04591754,0.09523958;-0.3687994;0.01050637,0.1058653;-0.7091491;0.09143326,0.1137023;-0.7586283;0.03125316,-0.07568223;0.0002319013;-0.02592578,-0.09339671;-0.3775881;0.01065651,-0.09913573;-0.7187095;0.08877987,-0.1121944;-0.707104;-0.008642472,0.01331068;0.3996313;0.009137218,14.04446
+0;0;0,0.00924333;0.1993676;0.0129269,0.02377715;0.498894;0.01933487,0.1284953;0.3682927;-0.01785437,0.1960321;0.0971773;0.0004552398,0.2405893;-0.1759739;-0.04200773,-0.09698582;0.3675058;0.02125319,-0.3547545;0.2598992;0.0406464,-0.6230631;0.1809996;0.02703154,0.0679395;0.004682255;-0.04197975,0.07124624;-0.373486;-0.004860826,0.06517157;-0.7174498;0.05957525,0.07409109;-0.7646099;-0.003407091,-0.07258808;0.002985885;-0.03349708,-0.115496;-0.3740048;-0.01259557,-0.1375526;-0.71876;0.04359461,-0.1266602;-0.7630404;-0.02246431,0.01879373;0.3990196;0.01984737,0;0;0,0.007003574;0.1997423;0.007347214,0.0169305;0.4995207;0.005606541,0.1228665;0.3713029;-0.03193309,0.1964954;0.1023625;-0.006441649,0.2261132;-0.1715508;-0.05638483,-0.1010514;0.3654482;0.01798801,-0.3719737;0.2947799;0.02065841,-0.6419609;0.3416014;-0.03691487,0.06524956;0.005655929;-0.04594023,0.09582078;-0.3689073;0.01034297,0.106452;-0.7092465;0.09131344,0.1143903;-0.758929;0.03141607,-0.0757537;0.0003653809;-0.02571464,-0.09247968;-0.3775498;0.01034551,-0.09817802;-0.7186826;0.08842196,-0.1111607;-0.7070886;-0.009008378,0.01361254;0.3996276;0.008825898,14.06662
+0;0;0,0.00924333;0.1993676;0.0129269,0.02377715;0.498894;0.01933487,0.1284953;0.3682927;-0.01785437,0.1960321;0.0971773;0.0004552398,0.2405893;-0.1759739;-0.04200773,-0.09698582;0.3675058;0.02125319,-0.3547545;0.2598992;0.0406464,-0.6230631;0.1809996;0.02703154,0.0679395;0.004682255;-0.04197975,0.07124624;-0.373486;-0.004860826,0.06517157;-0.7174498;0.05957525,0.07409109;-0.7646099;-0.003407091,-0.07258808;0.002985885;-0.03349708,-0.115496;-0.3740048;-0.01259557,-0.1375526;-0.71876;0.04359461,-0.1266602;-0.7630404;-0.02246431,0.01879373;0.3990196;0.01984737,0;0;0,0.007003574;0.1997423;0.007347214,0.0169305;0.4995207;0.005606541,0.1228665;0.3713029;-0.03193309,0.1964954;0.1023625;-0.006441649,0.2261132;-0.1715508;-0.05638483,-0.1010514;0.3654482;0.01798801,-0.3719737;0.2947799;0.02065841,-0.6419609;0.3416014;-0.03691487,0.06524956;0.005655929;-0.04594023,0.09582078;-0.3689073;0.01034297,0.106452;-0.7092465;0.09131344,0.1143903;-0.758929;0.03141607,-0.0757537;0.0003653809;-0.02571464,-0.09247968;-0.3775498;0.01034551,-0.09817802;-0.7186826;0.08842196,-0.1111607;-0.7070886;-0.009008378,0.01361254;0.3996276;0.008825898,14.07793
+0;0;0,0.00924333;0.1993676;0.0129269,0.02377715;0.498894;0.01933487,0.1284953;0.3682927;-0.01785437,0.1960321;0.0971773;0.0004552398,0.2405893;-0.1759739;-0.04200773,-0.09698582;0.3675058;0.02125319,-0.3547545;0.2598992;0.0406464,-0.6230631;0.1809996;0.02703154,0.0679395;0.004682255;-0.04197975,0.07124624;-0.373486;-0.004860826,0.06517157;-0.7174498;0.05957525,0.07409109;-0.7646099;-0.003407091,-0.07258808;0.002985885;-0.03349708,-0.115496;-0.3740048;-0.01259557,-0.1375526;-0.71876;0.04359461,-0.1266602;-0.7630404;-0.02246431,0.01879373;0.3990196;0.01984737,0;0;0,0.007002888;0.1997454;0.007263144,0.01719845;0.4995092;0.005106232,0.1230339;0.3712724;-0.03213013,0.1967281;0.1023682;-0.006445473,0.2273441;-0.1717772;-0.05447636,-0.1009972;0.3657594;0.01777659,-0.371881;0.2949608;0.02086409,-0.6423779;0.3394118;-0.03619365,0.06525929;0.005710171;-0.04591969,0.09572797;-0.3688832;0.01021801,0.1064323;-0.7092386;0.09111074,0.1137214;-0.7590212;0.03126418,-0.07573742;0.0003015623;-0.02576339,-0.0926636;-0.3776267;0.01006554,-0.09833701;-0.7187526;0.08817402,-0.1112811;-0.7071708;-0.009259157,0.01375268;0.3996274;0.008534479,14.10014
+0;0;0,0.00949305;0.1993556;0.01293195,0.02430885;0.4988689;0.01930792,0.128854;0.3683254;-0.01816742,0.196887;0.09737226;0.0006985236,0.2415995;-0.1757548;-0.04175574,-0.09664269;0.3678597;0.02114433,-0.3559883;0.2642103;0.04106064,-0.6266295;0.1934745;0.02882086,0.06796691;0.004679071;-0.04193574,0.07217131;-0.3735423;-0.005454376,0.06604485;-0.7174865;0.05908155,0.07561496;-0.765233;-0.003078651,-0.07254379;0.002974255;-0.03359393,-0.1147956;-0.3741059;-0.01297096,-0.1367155;-0.7189158;0.04293647,-0.1253094;-0.7628575;-0.02341516,0.01923924;0.3989989;0.01982911,0;0;0,0.007002888;0.1997454;0.007263144,0.01719845;0.4995092;0.005106232,0.1230339;0.3712724;-0.03213013,0.1967281;0.1023682;-0.006445473,0.2273441;-0.1717772;-0.05447636,-0.1009972;0.3657594;0.01777659,-0.371881;0.2949608;0.02086409,-0.6423779;0.3394118;-0.03619365,0.06525929;0.005710171;-0.04591969,0.09572797;-0.3688832;0.01021801,0.1064323;-0.7092386;0.09111074,0.1137214;-0.7590212;0.03126418,-0.07573742;0.0003015623;-0.02576339,-0.0926636;-0.3776267;0.01006554,-0.09833701;-0.7187526;0.08817402,-0.1112811;-0.7071708;-0.009259157,0.01375268;0.3996274;0.008534479,14.11145
+0;0;0,0.00949305;0.1993556;0.01293195,0.02430885;0.4988689;0.01930792,0.128854;0.3683254;-0.01816742,0.196887;0.09737226;0.0006985236,0.2415995;-0.1757548;-0.04175574,-0.09664269;0.3678597;0.02114433,-0.3559883;0.2642103;0.04106064,-0.6266295;0.1934745;0.02882086,0.06796691;0.004679071;-0.04193574,0.07217131;-0.3735423;-0.005454376,0.06604485;-0.7174865;0.05908155,0.07561496;-0.765233;-0.003078651,-0.07254379;0.002974255;-0.03359393,-0.1147956;-0.3741059;-0.01297096,-0.1367155;-0.7189158;0.04293647,-0.1253094;-0.7628575;-0.02341516,0.01923924;0.3989989;0.01982911,0;0;0,0.007002888;0.1997454;0.007263144,0.01719845;0.4995092;0.005106232,0.1230339;0.3712724;-0.03213013,0.1967281;0.1023682;-0.006445473,0.2273441;-0.1717772;-0.05447636,-0.1009972;0.3657594;0.01777659,-0.371881;0.2949608;0.02086409,-0.6423779;0.3394118;-0.03619365,0.06525929;0.005710171;-0.04591969,0.09572797;-0.3688832;0.01021801,0.1064323;-0.7092386;0.09111074,0.1137214;-0.7590212;0.03126418,-0.07573742;0.0003015623;-0.02576339,-0.0926636;-0.3776267;0.01006554,-0.09833701;-0.7187526;0.08817402,-0.1112811;-0.7071708;-0.009259157,0.01375268;0.3996274;0.008534479,14.1226
+0;0;0,0.00949305;0.1993556;0.01293195,0.02430885;0.4988689;0.01930792,0.128854;0.3683254;-0.01816742,0.196887;0.09737226;0.0006985236,0.2415995;-0.1757548;-0.04175574,-0.09664269;0.3678597;0.02114433,-0.3559883;0.2642103;0.04106064,-0.6266295;0.1934745;0.02882086,0.06796691;0.004679071;-0.04193574,0.07217131;-0.3735423;-0.005454376,0.06604485;-0.7174865;0.05908155,0.07561496;-0.765233;-0.003078651,-0.07254379;0.002974255;-0.03359393,-0.1147956;-0.3741059;-0.01297096,-0.1367155;-0.7189158;0.04293647,-0.1253094;-0.7628575;-0.02341516,0.01923924;0.3989989;0.01982911,0;0;0,0.007080197;0.1997471;0.007138017,0.01738349;0.4995064;0.004833743,0.1231972;0.3712449;-0.03232586,0.196959;0.1023787;-0.00643843,0.2280741;-0.1719163;-0.05327954,-0.1001623;0.3635727;0.01765246,-0.3719044;0.2961906;0.0216388,-0.6435194;0.3356985;-0.03371822,0.06526523;0.005720777;-0.04590993,0.09603444;-0.3688881;0.009960018,0.1066869;-0.7092422;0.09086511,0.1147009;-0.7592173;0.03136926,-0.07573365;0.0002953171;-0.02577454,-0.09250614;-0.3776442;0.0100084,-0.09798966;-0.7188084;0.08796309,-0.1110972;-0.7072378;-0.009446107,0.01391111;0.399627;0.008306794,14.14496
+0;0;0,0.009780777;0.1993417;0.01293204,0.02490593;0.4988396;0.01932853,0.1292649;0.3683821;-0.01847407,0.1976887;0.09754664;0.0006665513,0.2425696;-0.1756327;-0.04127079,-0.09618725;0.3679933;0.02130932,-0.3588924;0.2733548;0.04203491,-0.6313603;0.2098269;0.03083363,0.0679227;0.0046693;-0.04200839,0.07283937;-0.3735583;-0.005680647,0.06668169;-0.7175577;0.05855761,0.07629599;-0.7648941;-0.004105408,-0.07259012;0.002960588;-0.0334949,-0.114043;-0.3742276;-0.01322957,-0.135999;-0.7190619;0.04251357,-0.1255165;-0.7620661;-0.0250179,0.01973502;0.3989746;0.01983124,0;0;0,0.007106583;0.1997487;0.007068859,0.01742588;0.4995045;0.004564472,0.1232561;0.3714296;-0.03254109,0.1969751;0.1025873;-0.006285362,0.2282773;-0.1717073;-0.05300392,-0.100269;0.3640074;0.01749917,-0.3716062;0.2950382;0.02190053,-0.6450647;0.3239678;-0.03085865,0.06527587;0.005735274;-0.045893,0.09597571;-0.3689139;0.009744413,0.1066475;-0.7092351;0.090785,0.1149692;-0.7590635;0.0311345,-0.07574306;0.0002588343;-0.02574727,-0.09232105;-0.3776729;0.01020777,-0.09773948;-0.7188933;0.08792041,-0.1108462;-0.7073285;-0.0094878,0.01393866;0.3996291;0.008134145,14.16739
+0;0;0,0.009780777;0.1993417;0.01293204,0.02490593;0.4988396;0.01932853,0.1292649;0.3683821;-0.01847407,0.1976887;0.09754664;0.0006665513,0.2425696;-0.1756327;-0.04127079,-0.09618725;0.3679933;0.02130932,-0.3588924;0.2733548;0.04203491,-0.6313603;0.2098269;0.03083363,0.0679227;0.0046693;-0.04200839,0.07283937;-0.3735583;-0.005680647,0.06668169;-0.7175577;0.05855761,0.07629599;-0.7648941;-0.004105408,-0.07259012;0.002960588;-0.0334949,-0.114043;-0.3742276;-0.01322957,-0.135999;-0.7190619;0.04251357,-0.1255165;-0.7620661;-0.0250179,0.01973502;0.3989746;0.01983124,0;0;0,0.007106583;0.1997487;0.007068859,0.01742588;0.4995045;0.004564472,0.1232561;0.3714296;-0.03254109,0.1969751;0.1025873;-0.006285362,0.2282773;-0.1717073;-0.05300392,-0.100269;0.3640074;0.01749917,-0.3716062;0.2950382;0.02190053,-0.6450647;0.3239678;-0.03085865,0.06527587;0.005735274;-0.045893,0.09597571;-0.3689139;0.009744413,0.1066475;-0.7092351;0.090785,0.1149692;-0.7590635;0.0311345,-0.07574306;0.0002588343;-0.02574727,-0.09232105;-0.3776729;0.01020777,-0.09773948;-0.7188933;0.08792041,-0.1108462;-0.7073285;-0.0094878,0.01393866;0.3996291;0.008134145,14.17862
+0;0;0,0.009780777;0.1993417;0.01293204,0.02490593;0.4988396;0.01932853,0.1292649;0.3683821;-0.01847407,0.1976887;0.09754664;0.0006665513,0.2425696;-0.1756327;-0.04127079,-0.09618725;0.3679933;0.02130932,-0.3588924;0.2733548;0.04203491,-0.6313603;0.2098269;0.03083363,0.0679227;0.0046693;-0.04200839,0.07283937;-0.3735583;-0.005680647,0.06668169;-0.7175577;0.05855761,0.07629599;-0.7648941;-0.004105408,-0.07259012;0.002960588;-0.0334949,-0.114043;-0.3742276;-0.01322957,-0.135999;-0.7190619;0.04251357,-0.1255165;-0.7620661;-0.0250179,0.01973502;0.3989746;0.01983124,0;0;0,0.007102301;0.1997518;0.006983671,0.0174554;0.499499;0.003892718,0.1232664;0.3717556;-0.03320833,0.1973232;0.103071;-0.006297722,0.2288671;-0.1712095;-0.05293676,-0.1003774;0.3644492;0.01719785,-0.3705348;0.2911408;0.02358606,-0.6447877;0.3133557;-0.02829746,0.06526092;0.005743875;-0.04591319,0.09575701;-0.3688957;0.009900708,0.1063736;-0.7092513;0.09080429,0.1147121;-0.7589161;0.03093784,-0.07575078;0.0002378361;-0.02572475,-0.09250917;-0.3776824;0.01026748,-0.09786546;-0.7189284;0.08787215,-0.1110417;-0.7073842;-0.009522773,0.01395547;0.399633;0.007705939,14.2007
+0;0;0,0.009963542;0.1993391;0.01283124,0.02534531;0.4988278;0.01904818,0.129838;0.3685632;-0.01823708,0.1980623;0.09767854;0.0009192601,0.2432632;-0.1755133;-0.04059069,-0.09590778;0.368303;0.02126246,-0.3602938;0.2784722;0.04201011,-0.6345104;0.2226467;0.03258855,0.06791055;0.004609466;-0.04203461,0.07129429;-0.3733009;-0.002382878,0.06707264;-0.7178695;0.05889252,0.07612733;-0.7653891;-0.003627367,-0.07266986;0.003005183;-0.03331757,-0.1134858;-0.3742717;-0.01341192,-0.1350907;-0.7191565;0.04215506,-0.1243919;-0.7618291;-0.02569941,0.02009641;0.3989672;0.01960962,0;0;0,0.007102301;0.1997518;0.006983671,0.0174554;0.499499;0.003892718,0.1232664;0.3717556;-0.03320833,0.1973232;0.103071;-0.006297722,0.2288671;-0.1712095;-0.05293676,-0.1003774;0.3644492;0.01719785,-0.3705348;0.2911408;0.02358606,-0.6447877;0.3133557;-0.02829746,0.06526092;0.005743875;-0.04591319,0.09575701;-0.3688957;0.009900708,0.1063736;-0.7092513;0.09080429,0.1147121;-0.7589161;0.03093784,-0.07575078;0.0002378361;-0.02572475,-0.09250917;-0.3776824;0.01026748,-0.09786546;-0.7189284;0.08787215,-0.1110417;-0.7073842;-0.009522773,0.01395547;0.399633;0.007705939,14.21193
+0;0;0,0.009963542;0.1993391;0.01283124,0.02534531;0.4988278;0.01904818,0.129838;0.3685632;-0.01823708,0.1980623;0.09767854;0.0009192601,0.2432632;-0.1755133;-0.04059069,-0.09590778;0.368303;0.02126246,-0.3602938;0.2784722;0.04201011,-0.6345104;0.2226467;0.03258855,0.06791055;0.004609466;-0.04203461,0.07129429;-0.3733009;-0.002382878,0.06707264;-0.7178695;0.05889252,0.07612733;-0.7653891;-0.003627367,-0.07266986;0.003005183;-0.03331757,-0.1134858;-0.3742717;-0.01341192,-0.1350907;-0.7191565;0.04215506,-0.1243919;-0.7618291;-0.02569941,0.02009641;0.3989672;0.01960962,0;0;0,0.007102301;0.1997518;0.006983671,0.0174554;0.499499;0.003892718,0.1232664;0.3717556;-0.03320833,0.1973232;0.103071;-0.006297722,0.2288671;-0.1712095;-0.05293676,-0.1003774;0.3644492;0.01719785,-0.3705348;0.2911408;0.02358606,-0.6447877;0.3133557;-0.02829746,0.06526092;0.005743875;-0.04591319,0.09575701;-0.3688957;0.009900708,0.1063736;-0.7092513;0.09080429,0.1147121;-0.7589161;0.03093784,-0.07575078;0.0002378361;-0.02572475,-0.09250917;-0.3776824;0.01026748,-0.09786546;-0.7189284;0.08787215,-0.1110417;-0.7073842;-0.009522773,0.01395547;0.399633;0.007705939,14.22334
+0;0;0,0.009963542;0.1993391;0.01283124,0.02534531;0.4988278;0.01904818,0.129838;0.3685632;-0.01823708,0.1980623;0.09767854;0.0009192601,0.2432632;-0.1755133;-0.04059069,-0.09590778;0.368303;0.02126246,-0.3602938;0.2784722;0.04201011,-0.6345104;0.2226467;0.03258855,0.06791055;0.004609466;-0.04203461,0.07129429;-0.3733009;-0.002382878,0.06707264;-0.7178695;0.05889252,0.07612733;-0.7653891;-0.003627367,-0.07266986;0.003005183;-0.03331757,-0.1134858;-0.3742717;-0.01341192,-0.1350907;-0.7191565;0.04215506,-0.1243919;-0.7618291;-0.02569941,0.02009641;0.3989672;0.01960962,0;0;0,0.00742127;0.1997482;0.006752447,0.01801484;0.4994825;0.003430658,0.1236924;0.3718009;-0.03360694,0.1975675;0.1030947;-0.006414464,0.2293543;-0.1711404;-0.05315541,-0.1000147;0.3646597;0.01679213,-0.3693608;0.288538;0.02441773,-0.6447692;0.30201;-0.02425171,0.06524791;0.005624695;-0.04594642,0.0961507;-0.368999;0.009750191,0.1068209;-0.7093971;0.09046744,0.1161185;-0.7590148;0.0306797,-0.07580369;0.0003944177;-0.02556646,-0.09181095;-0.3776357;0.0096047,-0.09731553;-0.7189094;0.08707705,-0.1104724;-0.7073818;-0.01031735,0.01439046;0.3996257;0.007366889,14.24543
+0;0;0,0.009990284;0.1993393;0.01280758,0.0254498;0.4988255;0.01894138,0.1299608;0.3688427;-0.01840365,0.1984749;0.09805521;0.001089321,0.2439223;-0.1750939;-0.04043274,-0.09596283;0.3688465;0.02178651,-0.3622184;0.2847695;0.04274036,-0.63854;0.2406059;0.03294574,0.06787142;0.004685907;-0.04208934,0.07240423;-0.3733649;-0.003918622,0.06774684;-0.7178341;0.05788216,0.07688276;-0.7650265;-0.005029485,-0.07265968;0.002923052;-0.03334706,-0.1131121;-0.3743974;-0.01352557,-0.1347416;-0.7192839;0.04202119,-0.1243634;-0.7611737;-0.02671137,0.02017378;0.3989666;0.0195352,0;0;0,0.00742127;0.1997482;0.006752447,0.01801484;0.4994825;0.003430658,0.1236924;0.3718009;-0.03360694,0.1975675;0.1030947;-0.006414464,0.2293543;-0.1711404;-0.05315541,-0.1000147;0.3646597;0.01679213,-0.3693608;0.288538;0.02441773,-0.6447692;0.30201;-0.02425171,0.06524791;0.005624695;-0.04594642,0.0961507;-0.368999;0.009750191,0.1068209;-0.7093971;0.09046744,0.1161185;-0.7590148;0.0306797,-0.07580369;0.0003944177;-0.02556646,-0.09181095;-0.3776357;0.0096047,-0.09731553;-0.7189094;0.08707705,-0.1104724;-0.7073818;-0.01031735,0.01439046;0.3996257;0.007366889,14.25671
+0;0;0,0.009990284;0.1993393;0.01280758,0.0254498;0.4988255;0.01894138,0.1299608;0.3688427;-0.01840365,0.1984749;0.09805521;0.001089321,0.2439223;-0.1750939;-0.04043274,-0.09596283;0.3688465;0.02178651,-0.3622184;0.2847695;0.04274036,-0.63854;0.2406059;0.03294574,0.06787142;0.004685907;-0.04208934,0.07240423;-0.3733649;-0.003918622,0.06774684;-0.7178341;0.05788216,0.07688276;-0.7650265;-0.005029485,-0.07265968;0.002923052;-0.03334706,-0.1131121;-0.3743974;-0.01352557,-0.1347416;-0.7192839;0.04202119,-0.1243634;-0.7611737;-0.02671137,0.02017378;0.3989666;0.0195352,0;0;0,0.007343105;0.1997526;0.006706503,0.01794987;0.4994853;0.00327187,0.1236214;0.371755;-0.03370988,0.1971615;0.1029841;-0.006249247,0.2291731;-0.1711698;-0.05331162,-0.1001416;0.3647028;0.0160508,-0.3681141;0.284142;0.02608604,-0.6444915;0.289018;-0.01854345,0.06525274;0.005635847;-0.0459382,0.0959464;-0.3690003;0.009790432,0.1065905;-0.7094312;0.09037228,0.1156562;-0.7589964;0.03047898,-0.07579404;0.0003769433;-0.02559534,-0.09212699;-0.3776022;0.009972231,-0.09744582;-0.7189292;0.08722232,-0.1104265;-0.7074076;-0.01019458,0.01432461;0.39963;0.007243696,14.26815
+0;0;0,0.009990284;0.1993393;0.01280758,0.0254498;0.4988255;0.01894138,0.1299608;0.3688427;-0.01840365,0.1984749;0.09805521;0.001089321,0.2439223;-0.1750939;-0.04043274,-0.09596283;0.3688465;0.02178651,-0.3622184;0.2847695;0.04274036,-0.63854;0.2406059;0.03294574,0.06787142;0.004685907;-0.04208934,0.07240423;-0.3733649;-0.003918622,0.06774684;-0.7178341;0.05788216,0.07688276;-0.7650265;-0.005029485,-0.07265968;0.002923052;-0.03334706,-0.1131121;-0.3743974;-0.01352557,-0.1347416;-0.7192839;0.04202119,-0.1243634;-0.7611737;-0.02671137,0.02017378;0.3989666;0.0195352,0;0;0,0.007343105;0.1997526;0.006706503,0.01794987;0.4994853;0.00327187,0.1236214;0.371755;-0.03370988,0.1971615;0.1029841;-0.006249247,0.2291731;-0.1711698;-0.05331162,-0.1001416;0.3647028;0.0160508,-0.3681141;0.284142;0.02608604,-0.6444915;0.289018;-0.01854345,0.06525274;0.005635847;-0.0459382,0.0959464;-0.3690003;0.009790432,0.1065905;-0.7094312;0.09037228,0.1156562;-0.7589964;0.03047898,-0.07579404;0.0003769433;-0.02559534,-0.09212699;-0.3776022;0.009972231,-0.09744582;-0.7189292;0.08722232,-0.1104265;-0.7074076;-0.01019458,0.01432461;0.39963;0.007243696,14.29034
+0;0;0,0.009918639;0.1993424;0.01281465,0.02529812;0.4988333;0.01890513,0.1300721;0.3691531;-0.01796327,0.1986317;0.09837419;0.001488393,0.2442219;-0.1747296;-0.04017545,-0.09620718;0.3693545;0.02232247,-0.3643146;0.2916947;0.04439959,-0.6415277;0.253614;0.03426316,0.06784283;0.004744457;-0.04212887,0.07289463;-0.3733302;-0.00426016,0.0681394;-0.717831;0.05735648,0.0771562;-0.7649534;-0.005658157,-0.07266968;0.002846356;-0.03333189,-0.1128048;-0.3745308;-0.01394949,-0.134565;-0.7194076;0.04160692,-0.1241077;-0.7622095;-0.02614646,0.02004634;0.3989732;0.01952117,0;0;0,0.007305935;0.1997565;0.00662978,0.01797418;0.4994822;0.002848806,0.1236331;0.3715976;-0.03388228,0.1969294;0.1027808;-0.006219914,0.2289772;-0.1713315;-0.05349962,-0.1002197;0.364988;0.01575542,-0.3664914;0.2792216;0.02773654,-0.6430359;0.2756809;-0.01597401,0.06522989;0.005642629;-0.04596979,0.09574853;-0.3689938;0.009852398,0.1064963;-0.709452;0.09030542,0.1154945;-0.7590563;0.03045395,-0.07580221;0.0003629075;-0.02557133,-0.09247239;-0.3775966;0.01004785,-0.09760081;-0.7189382;0.0872459,-0.1105285;-0.70743;-0.0101755,0.01433258;0.3996328;0.006951877,14.30177
+0;0;0,0.009918639;0.1993424;0.01281465,0.02529812;0.4988333;0.01890513,0.1300721;0.3691531;-0.01796327,0.1986317;0.09837419;0.001488393,0.2442219;-0.1747296;-0.04017545,-0.09620718;0.3693545;0.02232247,-0.3643146;0.2916947;0.04439959,-0.6415277;0.253614;0.03426316,0.06784283;0.004744457;-0.04212887,0.07289463;-0.3733302;-0.00426016,0.0681394;-0.717831;0.05735648,0.0771562;-0.7649534;-0.005658157,-0.07266968;0.002846356;-0.03333189,-0.1128048;-0.3745308;-0.01394949,-0.134565;-0.7194076;0.04160692,-0.1241077;-0.7622095;-0.02614646,0.02004634;0.3989732;0.01952117,0;0;0,0.007305935;0.1997565;0.00662978,0.01797418;0.4994822;0.002848806,0.1236331;0.3715976;-0.03388228,0.1969294;0.1027808;-0.006219914,0.2289772;-0.1713315;-0.05349962,-0.1002197;0.364988;0.01575542,-0.3664914;0.2792216;0.02773654,-0.6430359;0.2756809;-0.01597401,0.06522989;0.005642629;-0.04596979,0.09574853;-0.3689938;0.009852398,0.1064963;-0.709452;0.09030542,0.1154945;-0.7590563;0.03045395,-0.07580221;0.0003629075;-0.02557133,-0.09247239;-0.3775966;0.01004785,-0.09760081;-0.7189382;0.0872459,-0.1105285;-0.70743;-0.0101755,0.01433258;0.3996328;0.006951877,14.32366
+0;0;0,0.009918639;0.1993424;0.01281465,0.02529812;0.4988333;0.01890513,0.1300721;0.3691531;-0.01796327,0.1986317;0.09837419;0.001488393,0.2442219;-0.1747296;-0.04017545,-0.09620718;0.3693545;0.02232247,-0.3643146;0.2916947;0.04439959,-0.6415277;0.253614;0.03426316,0.06784283;0.004744457;-0.04212887,0.07289463;-0.3733302;-0.00426016,0.0681394;-0.717831;0.05735648,0.0771562;-0.7649534;-0.005658157,-0.07266968;0.002846356;-0.03333189,-0.1128048;-0.3745308;-0.01394949,-0.134565;-0.7194076;0.04160692,-0.1241077;-0.7622095;-0.02614646,0.02004634;0.3989732;0.01952117,0;0;0,0.007130374;0.199765;0.006564935,0.01757498;0.499494;0.002486814,0.1234144;0.3716894;-0.03398341,0.1966878;0.1028769;-0.00621948,0.2286059;-0.1711833;-0.05388778,-0.1005136;0.3650278;0.01560905,-0.3650628;0.2743655;0.02953889,-0.6415814;0.2601627;-0.01212328,0.06522328;0.005645807;-0.04597878,0.09547351;-0.3689683;0.01013869,0.106123;-0.7094883;0.09034313,0.1151647;-0.7590488;0.03044005,-0.07581832;0.0003496798;-0.02552371,-0.09276359;-0.3775747;0.01033797,-0.09776733;-0.7189125;0.08756112,-0.1106866;-0.7074221;-0.00985802,0.01403911;0.3996456;0.006704387,14.33524
+0;0;0,0.0101646;0.1993424;0.01262135,0.02580479;0.4988247;0.01849079,0.1305021;0.3693164;-0.01847053,0.1993628;0.09865335;0.001521857,0.2451311;-0.1744266;-0.04010276,-0.0959547;0.3701617;0.02267859,-0.3652833;0.2968913;0.0448941,-0.643375;0.2660909;0.03410847,0.06785444;0.004866801;-0.04209618,0.07416108;-0.3732847;-0.005195718,0.06917689;-0.7177801;0.05643317,0.07883129;-0.7648986;-0.006491698,-0.07254192;0.002733832;-0.03361839,-0.1122942;-0.3747001;-0.01455555,-0.1340276;-0.7195923;0.04091553,-0.1231944;-0.7621584;-0.02703154,0.02048339;0.3989687;0.01916768,0;0;0,0.007130374;0.199765;0.006564935,0.01757498;0.499494;0.002486814,0.1234144;0.3716894;-0.03398341,0.1966878;0.1028769;-0.00621948,0.2286059;-0.1711833;-0.05388778,-0.1005136;0.3650278;0.01560905,-0.3650628;0.2743655;0.02953889,-0.6415814;0.2601627;-0.01212328,0.06522328;0.005645807;-0.04597878,0.09547351;-0.3689683;0.01013869,0.106123;-0.7094883;0.09034313,0.1151647;-0.7590488;0.03044005,-0.07581832;0.0003496798;-0.02552371,-0.09276359;-0.3775747;0.01033797,-0.09776733;-0.7189125;0.08756112,-0.1106866;-0.7074221;-0.00985802,0.01403911;0.3996456;0.006704387,14.34609
+0;0;0,0.0101646;0.1993424;0.01262135,0.02580479;0.4988247;0.01849079,0.1305021;0.3693164;-0.01847053,0.1993628;0.09865335;0.001521857,0.2451311;-0.1744266;-0.04010276,-0.0959547;0.3701617;0.02267859,-0.3652833;0.2968913;0.0448941,-0.643375;0.2660909;0.03410847,0.06785444;0.004866801;-0.04209618,0.07416108;-0.3732847;-0.005195718,0.06917689;-0.7177801;0.05643317,0.07883129;-0.7648986;-0.006491698,-0.07254192;0.002733832;-0.03361839,-0.1122942;-0.3747001;-0.01455555,-0.1340276;-0.7195923;0.04091553,-0.1231944;-0.7621584;-0.02703154,0.02048339;0.3989687;0.01916768,0;0;0,0.006931912;0.199771;0.00659534,0.0172805;0.499504;0.002550125,0.1230401;0.3717504;-0.03425078,0.1965911;0.1030456;-0.006179543,0.2284967;-0.170802;-0.05506247,-0.1007583;0.364937;0.01559827,-0.3639182;0.2704052;0.03011114,-0.6406755;0.2525185;-0.00843079,0.06523337;0.005674415;-0.04596095,0.09507813;-0.3689596;0.01024053,0.1057279;-0.7094824;0.09043272,0.1148677;-0.7587945;0.03021599,-0.07579609;0.0003101044;-0.02559017,-0.09306285;-0.3776154;0.01010573,-0.09827978;-0.7189352;0.08739437,-0.1112715;-0.7074538;-0.01001342,0.01376877;0.399654;0.006751103,14.3685
+0;0;0,0.0101646;0.1993424;0.01262135,0.02580479;0.4988247;0.01849079,0.1305021;0.3693164;-0.01847053,0.1993628;0.09865335;0.001521857,0.2451311;-0.1744266;-0.04010276,-0.0959547;0.3701617;0.02267859,-0.3652833;0.2968913;0.0448941,-0.643375;0.2660909;0.03410847,0.06785444;0.004866801;-0.04209618,0.07416108;-0.3732847;-0.005195718,0.06917689;-0.7177801;0.05643317,0.07883129;-0.7648986;-0.006491698,-0.07254192;0.002733832;-0.03361839,-0.1122942;-0.3747001;-0.01455555,-0.1340276;-0.7195923;0.04091553,-0.1231944;-0.7621584;-0.02703154,0.02048339;0.3989687;0.01916768,0;0;0,0.006931912;0.199771;0.00659534,0.0172805;0.499504;0.002550125,0.1230401;0.3717504;-0.03425078,0.1965911;0.1030456;-0.006179543,0.2284967;-0.170802;-0.05506247,-0.1007583;0.364937;0.01559827,-0.3639182;0.2704052;0.03011114,-0.6406755;0.2525185;-0.00843079,0.06523337;0.005674415;-0.04596095,0.09507813;-0.3689596;0.01024053,0.1057279;-0.7094824;0.09043272,0.1148677;-0.7587945;0.03021599,-0.07579609;0.0003101044;-0.02559017,-0.09306285;-0.3776154;0.01010573,-0.09827978;-0.7189352;0.08739437,-0.1112715;-0.7074538;-0.01001342,0.01376877;0.399654;0.006751103,14.3906
+0;0;0,0.01014867;0.1993465;0.01256881,0.02585275;0.4988283;0.01827745,0.1304456;0.36925;-0.01878071,0.199462;0.09866741;0.001757214,0.2455655;-0.1744832;-0.03902566,-0.09604436;0.3706322;0.02274756,-0.3662061;0.3009866;0.04645704,-0.6449822;0.2777258;0.03450803,0.06788631;0.004782339;-0.04205447,0.07480388;-0.373412;-0.005706854,0.06987108;-0.7179478;0.05569996,0.07882368;-0.7657922;-0.006429791,-0.07247028;0.00281017;-0.03376626,-0.1118738;-0.3746796;-0.0150899,-0.1335732;-0.7196047;0.04018939,-0.1217414;-0.7621378;-0.02762628,0.02050092;0.3989743;0.01901654,0;0;0,0.006853865;0.199774;0.006587271,0.0170972;0.4995102;0.00249672,0.1228641;0.3718626;-0.03446548,0.1964531;0.1031782;-0.006298663,0.2280781;-0.1705676;-0.05592798,-0.1008817;0.3648902;0.01555046,-0.3631003;0.2678151;0.03030953,-0.6397012;0.2464593;-0.007583484,0.06523749;0.005710208;-0.04595066,0.09496886;-0.3689607;0.01006499,0.1056636;-0.7094464;0.09040881,0.1138411;-0.7589009;0.03024145,-0.07578916;0.0002707103;-0.02561111,-0.09332147;-0.3776265;0.01025396,-0.09838119;-0.7189564;0.08750908,-0.1114244;-0.7074798;-0.009890899,0.01363003;0.3996591;0.006708213,14.40201
+0;0;0,0.01014867;0.1993465;0.01256881,0.02585275;0.4988283;0.01827745,0.1304456;0.36925;-0.01878071,0.199462;0.09866741;0.001757214,0.2455655;-0.1744832;-0.03902566,-0.09604436;0.3706322;0.02274756,-0.3662061;0.3009866;0.04645704,-0.6449822;0.2777258;0.03450803,0.06788631;0.004782339;-0.04205447,0.07480388;-0.373412;-0.005706854,0.06987108;-0.7179478;0.05569996,0.07882368;-0.7657922;-0.006429791,-0.07247028;0.00281017;-0.03376626,-0.1118738;-0.3746796;-0.0150899,-0.1335732;-0.7196047;0.04018939,-0.1217414;-0.7621378;-0.02762628,0.02050092;0.3989743;0.01901654,0;0;0,0.006853865;0.199774;0.006587271,0.0170972;0.4995102;0.00249672,0.1228641;0.3718626;-0.03446548,0.1964531;0.1031782;-0.006298663,0.2280781;-0.1705676;-0.05592798,-0.1008817;0.3648902;0.01555046,-0.3631003;0.2678151;0.03030953,-0.6397012;0.2464593;-0.007583484,0.06523749;0.005710208;-0.04595066,0.09496886;-0.3689607;0.01006499,0.1056636;-0.7094464;0.09040881,0.1138411;-0.7589009;0.03024145,-0.07578916;0.0002707103;-0.02561111,-0.09332147;-0.3776265;0.01025396,-0.09838119;-0.7189564;0.08750908,-0.1114244;-0.7074798;-0.009890899,0.01363003;0.3996591;0.006708213,14.41307
+0;0;0,0.01014867;0.1993465;0.01256881,0.02585275;0.4988283;0.01827745,0.1304456;0.36925;-0.01878071,0.199462;0.09866741;0.001757214,0.2455655;-0.1744832;-0.03902566,-0.09604436;0.3706322;0.02274756,-0.3662061;0.3009866;0.04645704,-0.6449822;0.2777258;0.03450803,0.06788631;0.004782339;-0.04205447,0.07480388;-0.373412;-0.005706854,0.06987108;-0.7179478;0.05569996,0.07882368;-0.7657922;-0.006429791,-0.07247028;0.00281017;-0.03376626,-0.1118738;-0.3746796;-0.0150899,-0.1335732;-0.7196047;0.04018939,-0.1217414;-0.7621378;-0.02762628,0.02050092;0.3989743;0.01901654,0;0;0,0.006764588;0.1997765;0.00660191,0.01680085;0.4995206;0.002537526,0.1226569;0.3722793;-0.03467795,0.1961737;0.1035754;-0.006509125,0.2280489;-0.1698585;-0.05767432,-0.1011219;0.3649535;0.01556513,-0.361859;0.2640878;0.03113055,-0.6383084;0.2412915;-0.007027268,0.06524044;0.005726857;-0.0459444,0.09499387;-0.3689346;0.01012303,0.1056944;-0.7094727;0.09024373,0.1134947;-0.7594191;0.03068101,-0.07579292;0.0002293285;-0.02560041,-0.09330945;-0.3776585;0.01037187,-0.09830454;-0.7189944;0.08760401,-0.1114203;-0.7075186;-0.009786114,0.01340739;0.3996661;0.006728633,14.43548
+0;0;0,0.01015571;0.1993481;0.01253832,0.02592889;0.4988279;0.0181419,0.1305959;0.3692695;-0.0185858,0.199713;0.09872651;0.00213426,0.2460933;-0.1743847;-0.03859804,-0.09604894;0.3708393;0.02260417,-0.3678534;0.3084603;0.04772788,-0.6469064;0.2905948;0.03322771,0.0678629;0.004741766;-0.04209682,0.07530581;-0.3734856;-0.006198294,0.07033268;-0.7180278;0.05516834,0.079635;-0.7656187;-0.007226586,-0.07251635;0.002836565;-0.03366499,-0.1113793;-0.3747326;-0.01546743,-0.1330954;-0.7196653;0.03975766,-0.1210835;-0.7617372;-0.02851661,0.02054775;0.3989758;0.01892336,0;0;0,0.006764588;0.1997765;0.00660191,0.01680085;0.4995206;0.002537526,0.1226569;0.3722793;-0.03467795,0.1961737;0.1035754;-0.006509125,0.2280489;-0.1698585;-0.05767432,-0.1011219;0.3649535;0.01556513,-0.361859;0.2640878;0.03113055,-0.6383084;0.2412915;-0.007027268,0.06524044;0.005726857;-0.0459444,0.09499387;-0.3689346;0.01012303,0.1056944;-0.7094727;0.09024373,0.1134947;-0.7594191;0.03068101,-0.07579292;0.0002293285;-0.02560041,-0.09330945;-0.3776585;0.01037187,-0.09830454;-0.7189944;0.08760401,-0.1114203;-0.7075186;-0.009786114,0.01340739;0.3996661;0.006728633,14.45764
+0;0;0,0.01015571;0.1993481;0.01253832,0.02592889;0.4988279;0.0181419,0.1305959;0.3692695;-0.0185858,0.199713;0.09872651;0.00213426,0.2460933;-0.1743847;-0.03859804,-0.09604894;0.3708393;0.02260417,-0.3678534;0.3084603;0.04772788,-0.6469064;0.2905948;0.03322771,0.0678629;0.004741766;-0.04209682,0.07530581;-0.3734856;-0.006198294,0.07033268;-0.7180278;0.05516834,0.079635;-0.7656187;-0.007226586,-0.07251635;0.002836565;-0.03366499,-0.1113793;-0.3747326;-0.01546743,-0.1330954;-0.7196653;0.03975766,-0.1210835;-0.7617372;-0.02851661,0.02054775;0.3989758;0.01892336,0;0;0,0.006574582;0.1997833;0.006587743,0.0162328;0.4995374;0.002341294,0.1222205;0.3722603;-0.03486557,0.1960712;0.1036101;-0.007059596,0.2276276;-0.1694703;-0.06026924,-0.1014833;0.3648111;0.01542839,-0.3613484;0.2617726;0.03134081,-0.637746;0.2384976;-0.006903484,0.06523825;0.005806587;-0.04593749,0.0947978;-0.3688674;0.01014843,0.1054548;-0.7093811;0.09037858,0.1131448;-0.7591166;0.03051943,-0.07576708;0.000110528;-0.02567754,-0.09387584;-0.3777376;0.01041819,-0.09851497;-0.7190445;0.08780055,-0.1116565;-0.7075821;-0.00958354,0.0129984;0.3996801;0.006591443,14.46894
+0;0;0,0.01015571;0.1993481;0.01253832,0.02592889;0.4988279;0.0181419,0.1305959;0.3692695;-0.0185858,0.199713;0.09872651;0.00213426,0.2460933;-0.1743847;-0.03859804,-0.09604894;0.3708393;0.02260417,-0.3678534;0.3084603;0.04772788,-0.6469064;0.2905948;0.03322771,0.0678629;0.004741766;-0.04209682,0.07530581;-0.3734856;-0.006198294,0.07033268;-0.7180278;0.05516834,0.079635;-0.7656187;-0.007226586,-0.07251635;0.002836565;-0.03366499,-0.1113793;-0.3747326;-0.01546743,-0.1330954;-0.7196653;0.03975766,-0.1210835;-0.7617372;-0.02851661,0.02054775;0.3989758;0.01892336,0;0;0,0.006574582;0.1997833;0.006587743,0.0162328;0.4995374;0.002341294,0.1222205;0.3722603;-0.03486557,0.1960712;0.1036101;-0.007059596,0.2276276;-0.1694703;-0.06026924,-0.1014833;0.3648111;0.01542839,-0.3613484;0.2617726;0.03134081,-0.637746;0.2384976;-0.006903484,0.06523825;0.005806587;-0.04593749,0.0947978;-0.3688674;0.01014843,0.1054548;-0.7093811;0.09037858,0.1131448;-0.7591166;0.03051943,-0.07576708;0.000110528;-0.02567754,-0.09387584;-0.3777376;0.01041819,-0.09851497;-0.7190445;0.08780055,-0.1116565;-0.7075821;-0.00958354,0.0129984;0.3996801;0.006591443,14.48102
+0;0;0,0.009951841;0.1993509;0.01265599,0.0253746;0.4988458;0.01841624,0.1302382;0.3691;-0.01798063,0.1994583;0.09856084;0.002442637,0.2462264;-0.174482;-0.03830449,-0.09651101;0.3709924;0.02308906,-0.369155;0.3123983;0.04822858,-0.6484908;0.3021255;0.03191879,0.06783547;0.004771666;-0.04213764,0.07576443;-0.3734875;-0.006682038,0.0706215;-0.7180554;0.05452676,0.08004613;-0.765402;-0.008152489,-0.07252946;0.002788976;-0.03364071,-0.1115064;-0.3748044;-0.01620496,-0.1328456;-0.7196841;0.03949651,-0.1208769;-0.7617064;-0.02883752,0.02011146;0.3989871;0.01915246,0;0;0,0.006518499;0.1997851;0.006591084,0.01607764;0.4995424;0.002321895,0.1220816;0.372164;-0.0348856,0.195839;0.1034445;-0.007505249,0.2270821;-0.1694072;-0.06205652,-0.1015816;0.3647616;0.0154006,-0.3598173;0.2578329;0.03215203,-0.6361629;0.2351663;-0.006826829,0.06521939;0.005805695;-0.04596438,0.09467633;-0.3688611;0.01022325,0.1054092;-0.7093861;0.09039502,0.1132369;-0.7591668;0.03061395,-0.07577595;0.0001079959;-0.02565138,-0.09403054;-0.3777333;0.010442,-0.09865642;-0.7190241;0.08789641,-0.1118024;-0.7075648;-0.009486482,0.01288444;0.3996837;0.006570848,14.50247
+0;0;0,0.009951841;0.1993509;0.01265599,0.0253746;0.4988458;0.01841624,0.1302382;0.3691;-0.01798063,0.1994583;0.09856084;0.002442637,0.2462264;-0.174482;-0.03830449,-0.09651101;0.3709924;0.02308906,-0.369155;0.3123983;0.04822858,-0.6484908;0.3021255;0.03191879,0.06783547;0.004771666;-0.04213764,0.07576443;-0.3734875;-0.006682038,0.0706215;-0.7180554;0.05452676,0.08004613;-0.765402;-0.008152489,-0.07252946;0.002788976;-0.03364071,-0.1115064;-0.3748044;-0.01620496,-0.1328456;-0.7196841;0.03949651,-0.1208769;-0.7617064;-0.02883752,0.02011146;0.3989871;0.01915246,0;0;0,0.006518499;0.1997851;0.006591084,0.01607764;0.4995424;0.002321895,0.1220816;0.372164;-0.0348856,0.195839;0.1034445;-0.007505249,0.2270821;-0.1694072;-0.06205652,-0.1015816;0.3647616;0.0154006,-0.3598173;0.2578329;0.03215203,-0.6361629;0.2351663;-0.006826829,0.06521939;0.005805695;-0.04596438,0.09467633;-0.3688611;0.01022325,0.1054092;-0.7093861;0.09039502,0.1132369;-0.7591668;0.03061395,-0.07577595;0.0001079959;-0.02565138,-0.09403054;-0.3777333;0.010442,-0.09865642;-0.7190241;0.08789641,-0.1118024;-0.7075648;-0.009486482,0.01288444;0.3996837;0.006570848,14.51357
+0;0;0,0.009951841;0.1993509;0.01265599,0.0253746;0.4988458;0.01841624,0.1302382;0.3691;-0.01798063,0.1994583;0.09856084;0.002442637,0.2462264;-0.174482;-0.03830449,-0.09651101;0.3709924;0.02308906,-0.369155;0.3123983;0.04822858,-0.6484908;0.3021255;0.03191879,0.06783547;0.004771666;-0.04213764,0.07576443;-0.3734875;-0.006682038,0.0706215;-0.7180554;0.05452676,0.08004613;-0.765402;-0.008152489,-0.07252946;0.002788976;-0.03364071,-0.1115064;-0.3748044;-0.01620496,-0.1328456;-0.7196841;0.03949651,-0.1208769;-0.7617064;-0.02883752,0.02011146;0.3989871;0.01915246,0;0;0,0.006450164;0.1997893;0.006528399,0.01596292;0.4995456;0.002086713,0.1219665;0.372059;-0.0350397,0.1956791;0.1032957;-0.007969959,0.2269364;-0.1694171;-0.06320293,-0.1016521;0.3647021;0.01530208,-0.3590004;0.2558022;0.03298445,-0.6352535;0.2341026;-0.007181287,0.06518754;0.005821454;-0.04600754,0.09456106;-0.3688475;0.01020939,0.1052943;-0.709418;0.09018791,0.112666;-0.7591914;0.03033918,-0.07577913;8.404216E-05;-0.02564207,-0.09436345;-0.377737;0.01049436,-0.0989348;-0.7190443;0.08787934,-0.1120956;-0.7075989;-0.009498902,0.0127881;0.3996888;0.006392912,14.5358
+0;0;0,0.009964556;0.1993583;0.01252867,0.02546862;0.498853;0.01806188,0.1302333;0.369177;-0.01850443,0.1993888;0.09865451;0.002354817,0.2463713;-0.1745354;-0.03714085,-0.09648952;0.3711833;0.02292245,-0.3700233;0.3169073;0.0480896,-0.6492452;0.3105952;0.02820753,0.06779409;0.00482797;-0.04219777,0.07654683;-0.3734807;-0.0074712,0.07143697;-0.7181054;0.05341954,0.0809986;-0.7649758;-0.009822328,-0.07255167;0.002701484;-0.03359997,-0.1113546;-0.3749683;-0.01747975,-0.1323487;-0.7198173;0.03854153,-0.1205246;-0.7622103;-0.02942502,0.02017261;0.3989967;0.01887782,0;0;0,0.006450164;0.1997893;0.006528399,0.01596292;0.4995456;0.002086713,0.1219665;0.372059;-0.0350397,0.1956791;0.1032957;-0.007969959,0.2269364;-0.1694171;-0.06320293,-0.1016521;0.3647021;0.01530208,-0.3590004;0.2558022;0.03298445,-0.6352535;0.2341026;-0.007181287,0.06518754;0.005821454;-0.04600754,0.09456106;-0.3688475;0.01020939,0.1052943;-0.709418;0.09018791,0.112666;-0.7591914;0.03033918,-0.07577913;8.404216E-05;-0.02564207,-0.09436345;-0.377737;0.01049436,-0.0989348;-0.7190443;0.08787934,-0.1120956;-0.7075989;-0.009498902,0.0127881;0.3996888;0.006392912,14.55803
+0;0;0,0.009964556;0.1993583;0.01252867,0.02546862;0.498853;0.01806188,0.1302333;0.369177;-0.01850443,0.1993888;0.09865451;0.002354817,0.2463713;-0.1745354;-0.03714085,-0.09648952;0.3711833;0.02292245,-0.3700233;0.3169073;0.0480896,-0.6492452;0.3105952;0.02820753,0.06779409;0.00482797;-0.04219777,0.07654683;-0.3734807;-0.0074712,0.07143697;-0.7181054;0.05341954,0.0809986;-0.7649758;-0.009822328,-0.07255167;0.002701484;-0.03359997,-0.1113546;-0.3749683;-0.01747975,-0.1323487;-0.7198173;0.03854153,-0.1205246;-0.7622103;-0.02942502,0.02017261;0.3989967;0.01887782,0;0;0,0.006311927;0.1997931;0.006546386,0.01511866;0.4995749;0.002266763,0.1213821;0.3720367;-0.03503316,0.1953259;0.1032996;-0.008336501,0.2266491;-0.1694262;-0.06346816,-0.1021196;0.3644527;0.01531896,-0.3588555;0.2541613;0.03327582,-0.635132;0.2333913;-0.007219996,0.06516661;0.005861249;-0.04603214,0.09444305;-0.3688026;0.01026958,0.1051582;-0.709375;0.09024212,0.1125478;-0.7591057;0.03033867,-0.0757875;1.803808E-05;-0.02561746,-0.09463049;-0.3777804;0.01062119,-0.09908546;-0.7191057;0.08793379,-0.1122809;-0.7076622;-0.009439394,0.01224463;0.3997051;0.006481397,14.56939
+0;0;0,0.009964556;0.1993583;0.01252867,0.02546862;0.498853;0.01806188,0.1302333;0.369177;-0.01850443,0.1993888;0.09865451;0.002354817,0.2463713;-0.1745354;-0.03714085,-0.09648952;0.3711833;0.02292245,-0.3700233;0.3169073;0.0480896,-0.6492452;0.3105952;0.02820753,0.06779409;0.00482797;-0.04219777,0.07654683;-0.3734807;-0.0074712,0.07143697;-0.7181054;0.05341954,0.0809986;-0.7649758;-0.009822328,-0.07255167;0.002701484;-0.03359997,-0.1113546;-0.3749683;-0.01747975,-0.1323487;-0.7198173;0.03854153,-0.1205246;-0.7622103;-0.02942502,0.02017261;0.3989967;0.01887782,0;0;0,0.006311927;0.1997931;0.006546386,0.01511866;0.4995749;0.002266763,0.1213821;0.3720367;-0.03503316,0.1953259;0.1032996;-0.008336501,0.2266491;-0.1694262;-0.06346816,-0.1021196;0.3644527;0.01531896,-0.3588555;0.2541613;0.03327582,-0.635132;0.2333913;-0.007219996,0.06516661;0.005861249;-0.04603214,0.09444305;-0.3688026;0.01026958,0.1051582;-0.709375;0.09024212,0.1125478;-0.7591057;0.03033867,-0.0757875;1.803808E-05;-0.02561746,-0.09463049;-0.3777804;0.01062119,-0.09908546;-0.7191057;0.08793379,-0.1122809;-0.7076622;-0.009439394,0.01224463;0.3997051;0.006481397,14.58054
+0;0;0,0.009872458;0.1993574;0.01261548,0.0252766;0.4988553;0.01823515,0.1299515;0.3691633;-0.01868431,0.1987312;0.0986056;0.002946643,0.2461456;-0.1746467;-0.03558929,-0.09678344;0.3717214;0.02299461,-0.3708577;0.3199082;0.04746256,-0.6501438;0.3193685;0.02748756,0.06770556;0.004809984;-0.04234172,0.07687054;-0.3735195;-0.007949106,0.07192991;-0.7181629;0.05284954,0.08129352;-0.7648816;-0.01060578,-0.07264145;0.002708997;-0.0334048,-0.1113119;-0.3750091;-0.01811874,-0.1319979;-0.7198936;0.03779856,-0.1200854;-0.7623705;-0.03006313,0.02000828;0.3989974;0.01903054,0;0;0,0.006250546;0.1997941;0.006576139,0.01500215;0.4995789;0.002356531,0.1212062;0.3721914;-0.03528678,0.1953468;0.1034806;-0.008872937,0.22663;-0.169271;-0.06389952,-0.1022056;0.3644115;0.01532908,-0.3586828;0.2535489;0.03346512,-0.6348675;0.2327529;-0.007638581,0.06516369;0.005879045;-0.04603402,0.09439972;-0.3687851;0.01028671,0.1051633;-0.7093664;0.09021473,0.1125351;-0.7591205;0.0303403,-0.07576618;-9.376236E-06;-0.02568045,-0.09464313;-0.3777576;0.01106117,-0.09919061;-0.7191306;0.08815691,-0.1124641;-0.7076845;-0.009206183,0.01214895;0.3997071;0.006538962,14.60306
+0;0;0,0.009872458;0.1993574;0.01261548,0.0252766;0.4988553;0.01823515,0.1299515;0.3691633;-0.01868431,0.1987312;0.0986056;0.002946643,0.2461456;-0.1746467;-0.03558929,-0.09678344;0.3717214;0.02299461,-0.3708577;0.3199082;0.04746256,-0.6501438;0.3193685;0.02748756,0.06770556;0.004809984;-0.04234172,0.07687054;-0.3735195;-0.007949106,0.07192991;-0.7181629;0.05284954,0.08129352;-0.7648816;-0.01060578,-0.07264145;0.002708997;-0.0334048,-0.1113119;-0.3750091;-0.01811874,-0.1319979;-0.7198936;0.03779856,-0.1200854;-0.7623705;-0.03006313,0.02000828;0.3989974;0.01903054,0;0;0,0.006250546;0.1997941;0.006576139,0.01500215;0.4995789;0.002356531,0.1212062;0.3721914;-0.03528678,0.1953468;0.1034806;-0.008872937,0.22663;-0.169271;-0.06389952,-0.1022056;0.3644115;0.01532908,-0.3586828;0.2535489;0.03346512,-0.6348675;0.2327529;-0.007638581,0.06516369;0.005879045;-0.04603402,0.09439972;-0.3687851;0.01028671,0.1051633;-0.7093664;0.09021473,0.1125351;-0.7591205;0.0303403,-0.07576618;-9.376236E-06;-0.02568045,-0.09464313;-0.3777576;0.01106117,-0.09919061;-0.7191306;0.08815691,-0.1124641;-0.7076845;-0.009206183,0.01214895;0.3997071;0.006538962,14.61417
+0;0;0,0.009872458;0.1993574;0.01261548,0.0252766;0.4988553;0.01823515,0.1299515;0.3691633;-0.01868431,0.1987312;0.0986056;0.002946643,0.2461456;-0.1746467;-0.03558929,-0.09678344;0.3717214;0.02299461,-0.3708577;0.3199082;0.04746256,-0.6501438;0.3193685;0.02748756,0.06770556;0.004809984;-0.04234172,0.07687054;-0.3735195;-0.007949106,0.07192991;-0.7181629;0.05284954,0.08129352;-0.7648816;-0.01060578,-0.07264145;0.002708997;-0.0334048,-0.1113119;-0.3750091;-0.01811874,-0.1319979;-0.7198936;0.03779856,-0.1200854;-0.7623705;-0.03006313,0.02000828;0.3989974;0.01903054,0;0;0,0.006091456;0.1997981;0.006604731,0.01481528;0.4995835;0.002383717,0.1210093;0.3721237;-0.03523553,0.1953886;0.1034561;-0.009054298,0.2266928;-0.169138;-0.0648444,-0.1015111;0.3618334;0.01599731,-0.3597941;0.2550685;0.03306009,-0.6359282;0.2343726;-0.008432735,0.06511611;0.006058208;-0.04607809,0.09412267;-0.3686138;0.01030877,0.1048827;-0.7091653;0.09036461,0.1122936;-0.7596161;0.03143455,-0.07578433;-0.000329267;-0.02562472,-0.09467347;-0.3781087;0.01078861,-0.09939901;-0.7194518;0.0880062,-0.1130173;-0.7080061;-0.009309165,0.01196299;0.3997119;0.006571046,14.63636
+0;0;0,0.009717851;0.1993671;0.01258245,0.02478181;0.4988831;0.01814759,0.1297181;0.3692401;-0.01839669,0.1984861;0.09868661;0.003323127,0.2466898;-0.1744443;-0.03509456,-0.09726364;0.3722882;0.02331852,-0.3717823;0.3223635;0.04670729,-0.6508325;0.3248854;0.02380308,0.06768284;0.004924363;-0.04236489,0.07745945;-0.3734383;-0.008510459,0.07248426;-0.7180991;0.05218711,0.08189654;-0.7647947;-0.01128879,-0.07259567;0.002585311;-0.03351396,-0.1114119;-0.3751236;-0.01837222,-0.1314622;-0.7200478;0.03753189,-0.1194748;-0.7620356;-0.0308353,0.01964038;0.3990188;0.01896818,0;0;0,0.006091456;0.1997981;0.006604731,0.01481528;0.4995835;0.002383717,0.1210093;0.3721237;-0.03523553,0.1953886;0.1034561;-0.009054298,0.2266928;-0.169138;-0.0648444,-0.1015111;0.3618334;0.01599731,-0.3597941;0.2550685;0.03306009,-0.6359282;0.2343726;-0.008432735,0.06511611;0.006058208;-0.04607809,0.09412267;-0.3686138;0.01030877,0.1048827;-0.7091653;0.09036461,0.1122936;-0.7596161;0.03143455,-0.07578433;-0.000329267;-0.02562472,-0.09467347;-0.3781087;0.01078861,-0.09939901;-0.7194518;0.0880062,-0.1130173;-0.7080061;-0.009309165,0.01196299;0.3997119;0.006571046,14.64772
+0;0;0,0.009717851;0.1993671;0.01258245,0.02478181;0.4988831;0.01814759,0.1297181;0.3692401;-0.01839669,0.1984861;0.09868661;0.003323127,0.2466898;-0.1744443;-0.03509456,-0.09726364;0.3722882;0.02331852,-0.3717823;0.3223635;0.04670729,-0.6508325;0.3248854;0.02380308,0.06768284;0.004924363;-0.04236489,0.07745945;-0.3734383;-0.008510459,0.07248426;-0.7180991;0.05218711,0.08189654;-0.7647947;-0.01128879,-0.07259567;0.002585311;-0.03351396,-0.1114119;-0.3751236;-0.01837222,-0.1314622;-0.7200478;0.03753189,-0.1194748;-0.7620356;-0.0308353,0.01964038;0.3990188;0.01896818,0;0;0,0.005934536;0.1998019;0.00663244,0.01392406;0.4996124;0.002608574,0.1203452;0.3717749;-0.03507682,0.1947083;0.1030703;-0.009231582,0.2261787;-0.1692695;-0.06615819,-0.1019735;0.3614378;0.01597795,-0.3600332;0.2541773;0.03330963,-0.6360274;0.2333584;-0.009043165,0.06511992;0.006113476;-0.0460654,0.0939018;-0.3685818;0.01028196,0.104747;-0.7091123;0.09041546,0.1120676;-0.7595006;0.03138897,-0.07577354;-0.0003994757;-0.02565563,-0.09470402;-0.3781923;0.01059688,-0.0995671;-0.7195078;0.08792771,-0.1131725;-0.7080654;-0.009388842,0.01137296;0.3997279;0.006680572,14.66986
+0;0;0,0.009717851;0.1993671;0.01258245,0.02478181;0.4988831;0.01814759,0.1297181;0.3692401;-0.01839669,0.1984861;0.09868661;0.003323127,0.2466898;-0.1744443;-0.03509456,-0.09726364;0.3722882;0.02331852,-0.3717823;0.3223635;0.04670729,-0.6508325;0.3248854;0.02380308,0.06768284;0.004924363;-0.04236489,0.07745945;-0.3734383;-0.008510459,0.07248426;-0.7180991;0.05218711,0.08189654;-0.7647947;-0.01128879,-0.07259567;0.002585311;-0.03351396,-0.1114119;-0.3751236;-0.01837222,-0.1314622;-0.7200478;0.03753189,-0.1194748;-0.7620356;-0.0308353,0.01964038;0.3990188;0.01896818,0;0;0,0.005876134;0.1998044;0.006608309,0.01381566;0.4996164;0.002597139,0.1202669;0.3717483;-0.03502203,0.1947657;0.1030543;-0.009458611,0.2262716;-0.1693301;-0.06615213,-0.1021721;0.3617468;0.01598074,-0.3597758;0.253436;0.03356081,-0.6356063;0.2324965;-0.009787552,0.06512694;0.006112668;-0.04605559,0.09392208;-0.3685717;0.01035758,0.1045434;-0.7091067;0.09050186,0.1120575;-0.7582666;0.02986152,-0.07576526;-0.0003905658;-0.0256802,-0.09508231;-0.3781101;0.01112781,-0.0995772;-0.7194681;0.08829296,-0.1131663;-0.7080275;-0.009025529,0.0112757;0.3997315;0.006665545,14.69209
+0;0;0,0.009544238;0.1993631;0.01277698,0.02427084;0.4988888;0.01872067,0.1291886;0.3693174;-0.01841361,0.1965889;0.09851238;0.004430281,0.2464103;-0.1743741;-0.03365917,-0.09770841;0.3725232;0.02383943,-0.3730402;0.3261939;0.04495791,-0.6520356;0.3276588;0.02130571,0.06762174;0.004984027;-0.04245539,0.07760453;-0.3733862;-0.008746322,0.07263338;-0.7180603;0.05187654,0.08206621;-0.7646902;-0.01167566,-0.07264125;0.002516702;-0.03342027,-0.1122306;-0.3751277;-0.01867596,-0.1315663;-0.7201428;0.03691761,-0.1195026;-0.7622027;-0.03136009,0.01924642;0.3990175;0.01941005,0;0;0,0.005876134;0.1998044;0.006608309,0.01381566;0.4996164;0.002597139,0.1202669;0.3717483;-0.03502203,0.1947657;0.1030543;-0.009458611,0.2262716;-0.1693301;-0.06615213,-0.1021721;0.3617468;0.01598074,-0.3597758;0.253436;0.03356081,-0.6356063;0.2324965;-0.009787552,0.06512694;0.006112668;-0.04605559,0.09392208;-0.3685717;0.01035758,0.1045434;-0.7091067;0.09050186,0.1120575;-0.7582666;0.02986152,-0.07576526;-0.0003905658;-0.0256802,-0.09508231;-0.3781101;0.01112781,-0.0995772;-0.7194681;0.08829296,-0.1131663;-0.7080275;-0.009025529,0.0112757;0.3997315;0.006665545,14.7039
+0;0;0,0.009544238;0.1993631;0.01277698,0.02427084;0.4988888;0.01872067,0.1291886;0.3693174;-0.01841361,0.1965889;0.09851238;0.004430281,0.2464103;-0.1743741;-0.03365917,-0.09770841;0.3725232;0.02383943,-0.3730402;0.3261939;0.04495791,-0.6520356;0.3276588;0.02130571,0.06762174;0.004984027;-0.04245539,0.07760453;-0.3733862;-0.008746322,0.07263338;-0.7180603;0.05187654,0.08206621;-0.7646902;-0.01167566,-0.07264125;0.002516702;-0.03342027,-0.1122306;-0.3751277;-0.01867596,-0.1315663;-0.7201428;0.03691761,-0.1195026;-0.7622027;-0.03136009,0.01924642;0.3990175;0.01941005,0;0;0,0.005876134;0.1998044;0.006608309,0.01381566;0.4996164;0.002597139,0.1202669;0.3717483;-0.03502203,0.1947657;0.1030543;-0.009458611,0.2262716;-0.1693301;-0.06615213,-0.1021721;0.3617468;0.01598074,-0.3597758;0.253436;0.03356081,-0.6356063;0.2324965;-0.009787552,0.06512694;0.006112668;-0.04605559,0.09392208;-0.3685717;0.01035758,0.1045434;-0.7091067;0.09050186,0.1120575;-0.7582666;0.02986152,-0.07576526;-0.0003905658;-0.0256802,-0.09508231;-0.3781101;0.01112781,-0.0995772;-0.7194681;0.08829296,-0.1131663;-0.7080275;-0.009025529,0.0112757;0.3997315;0.006665545,14.72577
+0;0;0,0.009544238;0.1993631;0.01277698,0.02427084;0.4988888;0.01872067,0.1291886;0.3693174;-0.01841361,0.1965889;0.09851238;0.004430281,0.2464103;-0.1743741;-0.03365917,-0.09770841;0.3725232;0.02383943,-0.3730402;0.3261939;0.04495791,-0.6520356;0.3276588;0.02130571,0.06762174;0.004984027;-0.04245539,0.07760453;-0.3733862;-0.008746322,0.07263338;-0.7180603;0.05187654,0.08206621;-0.7646902;-0.01167566,-0.07264125;0.002516702;-0.03342027,-0.1122306;-0.3751277;-0.01867596,-0.1315663;-0.7201428;0.03691761,-0.1195026;-0.7622027;-0.03136009,0.01924642;0.3990175;0.01941005,0;0;0,0.005938285;0.1998031;0.006592729,0.01398126;0.4996126;0.002598246,0.1204057;0.3717591;-0.03503566,0.1950068;0.1030774;-0.009642329,0.2265797;-0.1692301;-0.06666687,-0.102036;0.361736;0.01592038,-0.3595065;0.253104;0.03347208,-0.634909;0.2315612;-0.01223712,0.06516317;0.0061327;-0.04600164,0.09408347;-0.3685471;0.01037759,0.1047165;-0.7090846;0.09050998,0.112546;-0.7584869;0.03022752,-0.07577319;-0.0004073078;-0.02565654,-0.09482731;-0.3781281;0.01127545,-0.0992644;-0.7195058;0.08835704,-0.1128375;-0.7080631;-0.008964084,0.0114137;0.3997281;0.006659494,14.74813
+0;0;0,0.009494205;0.1993607;0.01285124,0.02419773;0.4988859;0.01886585,0.1292357;0.3688932;-0.01760057,0.1970288;0.09814453;0.004743157,0.2466717;-0.1747355;-0.03362478,-0.09787308;0.3729147;0.02385637,-0.3738918;0.330055;0.04326587,-0.6523008;0.3363059;0.01412204,0.06761005;0.005059471;-0.04246508,0.07810859;-0.3733395;-0.009238653,0.07326537;-0.7180329;0.0512839,0.08283953;-0.7643331;-0.01264275,-0.07259569;0.002428125;-0.03352566,-0.1119624;-0.3752593;-0.01929618,-0.1311903;-0.7202711;0.03635533,-0.1188636;-0.762297;-0.03191122,0.01917458;0.3990144;0.01953773,0;0;0,0.005903838;0.1998029;0.006628152,0.01396293;0.4996126;0.002681345,0.1203653;0.3717582;-0.03499292,0.1949244;0.1030612;-0.009637669,0.2265721;-0.1691748;-0.06696115,-0.1020922;0.361776;0.01583305,-0.3593885;0.2527233;0.03332917,-0.6343343;0.2301669;-0.01458738,0.06520194;0.006202208;-0.04593734,0.09407469;-0.3684809;0.01044452,0.1048215;-0.7090019;0.0906316,0.1125438;-0.7589374;0.03104395,-0.07572439;-0.0004979894;-0.02579859,-0.09490413;-0.3781754;0.01150943,-0.09929635;-0.7195581;0.08857173,-0.112824;-0.7081117;-0.008756399,0.01138366;0.3997278;0.006728717,14.77041
+0;0;0,0.009494205;0.1993607;0.01285124,0.02419773;0.4988859;0.01886585,0.1292357;0.3688932;-0.01760057,0.1970288;0.09814453;0.004743157,0.2466717;-0.1747355;-0.03362478,-0.09787308;0.3729147;0.02385637,-0.3738918;0.330055;0.04326587,-0.6523008;0.3363059;0.01412204,0.06761005;0.005059471;-0.04246508,0.07810859;-0.3733395;-0.009238653,0.07326537;-0.7180329;0.0512839,0.08283953;-0.7643331;-0.01264275,-0.07259569;0.002428125;-0.03352566,-0.1119624;-0.3752593;-0.01929618,-0.1311903;-0.7202711;0.03635533,-0.1188636;-0.762297;-0.03191122,0.01917458;0.3990144;0.01953773,0;0;0,0.005903838;0.1998029;0.006628152,0.01396293;0.4996126;0.002681345,0.1203653;0.3717582;-0.03499292,0.1949244;0.1030612;-0.009637669,0.2265721;-0.1691748;-0.06696115,-0.1020922;0.361776;0.01583305,-0.3593885;0.2527233;0.03332917,-0.6343343;0.2301669;-0.01458738,0.06520194;0.006202208;-0.04593734,0.09407469;-0.3684809;0.01044452,0.1048215;-0.7090019;0.0906316,0.1125438;-0.7589374;0.03104395,-0.07572439;-0.0004979894;-0.02579859,-0.09490413;-0.3781754;0.01150943,-0.09929635;-0.7195581;0.08857173,-0.112824;-0.7081117;-0.008756399,0.01138366;0.3997278;0.006728717,14.78164
+0;0;0,0.009494205;0.1993607;0.01285124,0.02419773;0.4988859;0.01886585,0.1292357;0.3688932;-0.01760057,0.1970288;0.09814453;0.004743157,0.2466717;-0.1747355;-0.03362478,-0.09787308;0.3729147;0.02385637,-0.3738918;0.330055;0.04326587,-0.6523008;0.3363059;0.01412204,0.06761005;0.005059471;-0.04246508,0.07810859;-0.3733395;-0.009238653,0.07326537;-0.7180329;0.0512839,0.08283953;-0.7643331;-0.01264275,-0.07259569;0.002428125;-0.03352566,-0.1119624;-0.3752593;-0.01929618,-0.1311903;-0.7202711;0.03635533,-0.1188636;-0.762297;-0.03191122,0.01917458;0.3990144;0.01953773,0;0;0,0.006010043;0.1998006;0.006604994,0.01420744;0.4996062;0.002633865,0.1205725;0.3717925;-0.0350702,0.1951605;0.1031011;-0.009741405,0.2268257;-0.1691641;-0.06691652,-0.1018757;0.3617137;0.01562295,-0.3589029;0.251944;0.03258202,-0.6337421;0.2287258;-0.01562918,0.0652092;0.006108082;-0.04593964,0.09443861;-0.3685702;0.01029075,0.1052975;-0.7090706;0.09054995,0.1129503;-0.7594602;0.03156726,-0.07571346;-0.000388182;-0.02583255,-0.09462439;-0.3780901;0.01136529,-0.09907492;-0.7194263;0.08862963,-0.1125585;-0.7079804;-0.008704521,0.01159455;0.3997225;0.006687562,14.80395
+0;0;0,0.009497765;0.199352;0.0129831,0.02427617;0.4988695;0.01919808,0.1290614;0.368684;-0.01783009,0.1959767;0.0978241;0.005776281,0.2458462;-0.1750301;-0.03248082,-0.09779485;0.3726804;0.02362913,-0.3744187;0.3330982;0.04130568,-0.6528037;0.3399199;0.01205989,0.0676774;0.005023312;-0.04236195,0.07860391;-0.3733971;-0.00952008,0.07397164;-0.7181926;0.05043498,0.08319351;-0.7642545;-0.01382662,-0.07248066;0.002455696;-0.03377166,-0.1119444;-0.3752053;-0.01911546,-0.1308447;-0.7203629;0.03573849,-0.1189639;-0.7633588;-0.03157018,0.0192208;0.3989992;0.01980018,0;0;0,0.006010043;0.1998006;0.006604994,0.01420744;0.4996062;0.002633865,0.1205725;0.3717925;-0.0350702,0.1951605;0.1031011;-0.009741405,0.2268257;-0.1691641;-0.06691652,-0.1018757;0.3617137;0.01562295,-0.3589029;0.251944;0.03258202,-0.6337421;0.2287258;-0.01562918,0.0652092;0.006108082;-0.04593964,0.09443861;-0.3685702;0.01029075,0.1052975;-0.7090706;0.09054995,0.1129503;-0.7594602;0.03156726,-0.07571346;-0.000388182;-0.02583255,-0.09462439;-0.3780901;0.01136529,-0.09907492;-0.7194263;0.08862963,-0.1125585;-0.7079804;-0.008704521,0.01159455;0.3997225;0.006687562,14.81509
+0;0;0,0.009497765;0.199352;0.0129831,0.02427617;0.4988695;0.01919808,0.1290614;0.368684;-0.01783009,0.1959767;0.0978241;0.005776281,0.2458462;-0.1750301;-0.03248082,-0.09779485;0.3726804;0.02362913,-0.3744187;0.3330982;0.04130568,-0.6528037;0.3399199;0.01205989,0.0676774;0.005023312;-0.04236195,0.07860391;-0.3733971;-0.00952008,0.07397164;-0.7181926;0.05043498,0.08319351;-0.7642545;-0.01382662,-0.07248066;0.002455696;-0.03377166,-0.1119444;-0.3752053;-0.01911546,-0.1308447;-0.7203629;0.03573849,-0.1189639;-0.7633588;-0.03157018,0.0192208;0.3989992;0.01980018,0;0;0,0.006010043;0.1998006;0.006604994,0.01420744;0.4996062;0.002633865,0.1205725;0.3717925;-0.0350702,0.1951605;0.1031011;-0.009741405,0.2268257;-0.1691641;-0.06691652,-0.1018757;0.3617137;0.01562295,-0.3589029;0.251944;0.03258202,-0.6337421;0.2287258;-0.01562918,0.0652092;0.006108082;-0.04593964,0.09443861;-0.3685702;0.01029075,0.1052975;-0.7090706;0.09054995,0.1129503;-0.7594602;0.03156726,-0.07571346;-0.000388182;-0.02583255,-0.09462439;-0.3780901;0.01136529,-0.09907492;-0.7194263;0.08862963,-0.1125585;-0.7079804;-0.008704521,0.01159455;0.3997225;0.006687562,14.82634
+0;0;0,0.009497765;0.199352;0.0129831,0.02427617;0.4988695;0.01919808,0.1290614;0.368684;-0.01783009,0.1959767;0.0978241;0.005776281,0.2458462;-0.1750301;-0.03248082,-0.09779485;0.3726804;0.02362913,-0.3744187;0.3330982;0.04130568,-0.6528037;0.3399199;0.01205989,0.0676774;0.005023312;-0.04236195,0.07860391;-0.3733971;-0.00952008,0.07397164;-0.7181926;0.05043498,0.08319351;-0.7642545;-0.01382662,-0.07248066;0.002455696;-0.03377166,-0.1119444;-0.3752053;-0.01911546,-0.1308447;-0.7203629;0.03573849,-0.1189639;-0.7633588;-0.03157018,0.0192208;0.3989992;0.01980018,0;0;0,0.00594403;0.1998023;0.006612509,0.01405637;0.4996111;0.002693507,0.1204465;0.3718197;-0.03501103,0.1950224;0.1031341;-0.009585019,0.2263659;-0.1692368;-0.06643254,-0.1020738;0.3618366;0.01542383,-0.3580078;0.2494491;0.03175871,-0.6325926;0.2249351;-0.01725405,0.06521711;0.006101756;-0.04592925,0.09445526;-0.3685679;0.01035372,0.1052606;-0.7090382;0.09074789,0.1130078;-0.7602379;0.03289811,-0.07571714;-0.0003476386;-0.02582233,-0.09463012;-0.3780443;0.01142715,-0.09900688;-0.7193336;0.08890286,-0.1124192;-0.7078897;-0.008440748,0.01145471;0.3997263;0.006726291,14.84859
+0;0;0,0.009577814;0.1993334;0.01320927,0.02454107;0.4988319;0.01991321,0.129023;0.3685049;-0.01784613,0.1954164;0.09757829;0.006458197,0.2453963;-0.1753876;-0.0308463,-0.09764842;0.3727899;0.02376797,-0.3750984;0.3378859;0.03802359,-0.6535671;0.3415652;0.00901247,0.0677126;0.005068274;-0.0423003,0.0791188;-0.3732898;-0.008907378,0.07468823;-0.7182752;0.04996013,0.08490384;-0.7652638;-0.01303513,-0.07241517;0.002401875;-0.03391568,-0.1116274;-0.3752566;-0.01853744,-0.1304712;-0.7205648;0.03538055,-0.1395699;-0.7079673;-0.06267232,0.0194118;0.3989644;0.02033245,0;0;0,0.00594403;0.1998023;0.006612509,0.01405637;0.4996111;0.002693507,0.1204465;0.3718197;-0.03501103,0.1950224;0.1031341;-0.009585019,0.2263659;-0.1692368;-0.06643254,-0.1020738;0.3618366;0.01542383,-0.3580078;0.2494491;0.03175871,-0.6325926;0.2249351;-0.01725405,0.06521711;0.006101756;-0.04592925,0.09445526;-0.3685679;0.01035372,0.1052606;-0.7090382;0.09074789,0.1130078;-0.7602379;0.03289811,-0.07571714;-0.0003476386;-0.02582233,-0.09463012;-0.3780443;0.01142715,-0.09900688;-0.7193336;0.08890286,-0.1124192;-0.7078897;-0.008440748,0.01145471;0.3997263;0.006726291,14.85977
+0;0;0,0.009577814;0.1993334;0.01320927,0.02454107;0.4988319;0.01991321,0.129023;0.3685049;-0.01784613,0.1954164;0.09757829;0.006458197,0.2453963;-0.1753876;-0.0308463,-0.09764842;0.3727899;0.02376797,-0.3750984;0.3378859;0.03802359,-0.6535671;0.3415652;0.00901247,0.0677126;0.005068274;-0.0423003,0.0791188;-0.3732898;-0.008907378,0.07468823;-0.7182752;0.04996013,0.08490384;-0.7652638;-0.01303513,-0.07241517;0.002401875;-0.03391568,-0.1116274;-0.3752566;-0.01853744,-0.1304712;-0.7205648;0.03538055,-0.1395699;-0.7079673;-0.06267232,0.0194118;0.3989644;0.02033245,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009577814;0.1993334;0.01320927,0.02454107;0.4988319;0.01991321,0.129023;0.3685049;-0.01784613,0.1954164;0.09757829;0.006458197,0.2453963;-0.1753876;-0.0308463,-0.09764842;0.3727899;0.02376797,-0.3750984;0.3378859;0.03802359,-0.6535671;0.3415652;0.00901247,0.0677126;0.005068274;-0.0423003,0.0791188;-0.3732898;-0.008907378,0.07468823;-0.7182752;0.04996013,0.08490384;-0.7652638;-0.01303513,-0.07241517;0.002401875;-0.03391568,-0.1116274;-0.3752566;-0.01853744,-0.1304712;-0.7205648;0.03538055,-0.1395699;-0.7079673;-0.06267232,0.0194118;0.3989644;0.02033245,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.00945677;0.1993239;0.01343669,0.02426363;0.4988213;0.02052974,0.1286573;0.3684329;-0.01770717,0.194713;0.09751493;0.007593092,0.2442451;-0.1755524;-0.02956626,-0.0979085;0.3728544;0.02373483,-0.375838;0.3409828;0.0355428,-0.6538491;0.3437313;0.002342496,0.06780303;0.005140909;-0.0421464,0.07978269;-0.3732067;-0.00883593,0.07558344;-0.7182117;0.04993434,0.08564983;-0.7648692;-0.01348722,-0.0723125;0.002336068;-0.03413861,-0.1113226;-0.375329;-0.01841314,-0.1299036;-0.7207198;0.03506532,-0.1389459;-0.7081057;-0.06299572,0.01918317;0.3989509;0.02081652,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.00945677;0.1993239;0.01343669,0.02426363;0.4988213;0.02052974,0.1286573;0.3684329;-0.01770717,0.194713;0.09751493;0.007593092,0.2442451;-0.1755524;-0.02956626,-0.0979085;0.3728544;0.02373483,-0.375838;0.3409828;0.0355428,-0.6538491;0.3437313;0.002342496,0.06780303;0.005140909;-0.0421464,0.07978269;-0.3732067;-0.00883593,0.07558344;-0.7182117;0.04993434,0.08564983;-0.7648692;-0.01348722,-0.0723125;0.002336068;-0.03413861,-0.1113226;-0.375329;-0.01841314,-0.1299036;-0.7207198;0.03506532,-0.1389459;-0.7081057;-0.06299572,0.01918317;0.3989509;0.02081652,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.00945677;0.1993239;0.01343669,0.02426363;0.4988213;0.02052974,0.1286573;0.3684329;-0.01770717,0.194713;0.09751493;0.007593092,0.2442451;-0.1755524;-0.02956626,-0.0979085;0.3728544;0.02373483,-0.375838;0.3409828;0.0355428,-0.6538491;0.3437313;0.002342496,0.06780303;0.005140909;-0.0421464,0.07978269;-0.3732067;-0.00883593,0.07558344;-0.7182117;0.04993434,0.08564983;-0.7648692;-0.01348722,-0.0723125;0.002336068;-0.03413861,-0.1113226;-0.375329;-0.01841314,-0.1299036;-0.7207198;0.03506532,-0.1389459;-0.7081057;-0.06299572,0.01918317;0.3989509;0.02081652,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009499248;0.1993178;0.01349812,0.0244212;0.498809;0.02059767,0.1286829;0.3685367;-0.01797647,0.194291;0.09761262;0.008399831,0.2432693;-0.1755449;-0.0288304,-0.09785767;0.3730949;0.02341843,-0.3762835;0.3445212;0.03133123,-0.6541114;0.3458562;-0.003451578,0.06782638;0.005168611;-0.04210543,0.0804755;-0.3731761;-0.009010304,0.07633755;-0.7182375;0.0494319,0.08668499;-0.7648968;-0.01394234,-0.0722625;0.002281686;-0.034248,-0.1105206;-0.3754533;-0.0183556,-0.129095;-0.7209305;0.03456385,-0.1380918;-0.7083127;-0.06350204,0.01929868;0.3989407;0.02089119,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009499248;0.1993178;0.01349812,0.0244212;0.498809;0.02059767,0.1286829;0.3685367;-0.01797647,0.194291;0.09761262;0.008399831,0.2432693;-0.1755449;-0.0288304,-0.09785767;0.3730949;0.02341843,-0.3762835;0.3445212;0.03133123,-0.6541114;0.3458562;-0.003451578,0.06782638;0.005168611;-0.04210543,0.0804755;-0.3731761;-0.009010304,0.07633755;-0.7182375;0.0494319,0.08668499;-0.7648968;-0.01394234,-0.0722625;0.002281686;-0.034248,-0.1105206;-0.3754533;-0.0183556,-0.129095;-0.7209305;0.03456385,-0.1380918;-0.7083127;-0.06350204,0.01929868;0.3989407;0.02089119,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009499248;0.1993178;0.01349812,0.0244212;0.498809;0.02059767,0.1286829;0.3685367;-0.01797647,0.194291;0.09761262;0.008399831,0.2432693;-0.1755449;-0.0288304,-0.09785767;0.3730949;0.02341843,-0.3762835;0.3445212;0.03133123,-0.6541114;0.3458562;-0.003451578,0.06782638;0.005168611;-0.04210543,0.0804755;-0.3731761;-0.009010304,0.07633755;-0.7182375;0.0494319,0.08668499;-0.7648968;-0.01394234,-0.0722625;0.002281686;-0.034248,-0.1105206;-0.3754533;-0.0183556,-0.129095;-0.7209305;0.03456385,-0.1380918;-0.7083127;-0.06350204,0.01929868;0.3989407;0.02089119,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009474102;0.1993223;0.01344796,0.02440906;0.498816;0.02040242,0.1290025;0.3684364;-0.01705962,0.1943688;0.0973731;0.008473936,0.2437735;-0.1756204;-0.02939084,-0.09794569;0.3733749;0.02288621,-0.376655;0.3468718;0.02720971,-0.6541207;0.3470468;-0.01037663,0.06796549;0.005157711;-0.04188184,0.08129454;-0.3732333;-0.009593595,0.07727239;-0.7183045;0.04879952,0.06631209;-0.7056908;-0.04906563,-0.07214079;0.002275759;-0.03450401,-0.1096754;-0.3755504;-0.01906013,-0.1286003;-0.7210301;0.03371887,-0.1371109;-0.708431;-0.0643871,0.01927817;0.3989484;0.02075022,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009474102;0.1993223;0.01344796,0.02440906;0.498816;0.02040242,0.1290025;0.3684364;-0.01705962,0.1943688;0.0973731;0.008473936,0.2437735;-0.1756204;-0.02939084,-0.09794569;0.3733749;0.02288621,-0.376655;0.3468718;0.02720971,-0.6541207;0.3470468;-0.01037663,0.06796549;0.005157711;-0.04188184,0.08129454;-0.3732333;-0.009593595,0.07727239;-0.7183045;0.04879952,0.06631209;-0.7056908;-0.04906563,-0.07214079;0.002275759;-0.03450401,-0.1096754;-0.3755504;-0.01906013,-0.1286003;-0.7210301;0.03371887,-0.1371109;-0.708431;-0.0643871,0.01927817;0.3989484;0.02075022,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009474102;0.1993223;0.01344796,0.02440906;0.498816;0.02040242,0.1290025;0.3684364;-0.01705962,0.1943688;0.0973731;0.008473936,0.2437735;-0.1756204;-0.02939084,-0.09794569;0.3733749;0.02288621,-0.376655;0.3468718;0.02720971,-0.6541207;0.3470468;-0.01037663,0.06796549;0.005157711;-0.04188184,0.08129454;-0.3732333;-0.009593595,0.07727239;-0.7183045;0.04879952,0.06631209;-0.7056908;-0.04906563,-0.07214079;0.002275759;-0.03450401,-0.1096754;-0.3755504;-0.01906013,-0.1286003;-0.7210301;0.03371887,-0.1371109;-0.708431;-0.0643871,0.01927817;0.3989484;0.02075022,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009512671;0.1993205;0.01344715,0.02452056;0.4988113;0.02036673,0.1293752;0.36824;-0.01607965,0.1951171;0.09713328;0.007985631,0.2432425;-0.1761992;-0.02907258,-0.09790166;0.3735299;0.02237149,-0.3768197;0.3489382;0.02243408,-0.6535072;0.3491025;-0.02050745,0.06797694;0.00510926;-0.0418692,0.08146878;-0.3732845;-0.009679455,0.07762718;-0.7184086;0.04841119,0.06715454;-0.7057962;-0.04950713,-0.07215126;0.002315296;-0.0344795,-0.1093784;-0.3755451;-0.01912735,-0.1283158;-0.7210685;0.03335992,-0.1363338;-0.7084733;-0.06478684,0.0193646;0.398945;0.02072912,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009512671;0.1993205;0.01344715,0.02452056;0.4988113;0.02036673,0.1293752;0.36824;-0.01607965,0.1951171;0.09713328;0.007985631,0.2432425;-0.1761992;-0.02907258,-0.09790166;0.3735299;0.02237149,-0.3768197;0.3489382;0.02243408,-0.6535072;0.3491025;-0.02050745,0.06797694;0.00510926;-0.0418692,0.08146878;-0.3732845;-0.009679455,0.07762718;-0.7184086;0.04841119,0.06715454;-0.7057962;-0.04950713,-0.07215126;0.002315296;-0.0344795,-0.1093784;-0.3755451;-0.01912735,-0.1283158;-0.7210685;0.03335992,-0.1363338;-0.7084733;-0.06478684,0.0193646;0.398945;0.02072912,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009512671;0.1993205;0.01344715,0.02452056;0.4988113;0.02036673,0.1293752;0.36824;-0.01607965,0.1951171;0.09713328;0.007985631,0.2432425;-0.1761992;-0.02907258,-0.09790166;0.3735299;0.02237149,-0.3768197;0.3489382;0.02243408,-0.6535072;0.3491025;-0.02050745,0.06797694;0.00510926;-0.0418692,0.08146878;-0.3732845;-0.009679455,0.07762718;-0.7184086;0.04841119,0.06715454;-0.7057962;-0.04950713,-0.07215126;0.002315296;-0.0344795,-0.1093784;-0.3755451;-0.01912735,-0.1283158;-0.7210685;0.03335992,-0.1363338;-0.7084733;-0.06478684,0.0193646;0.398945;0.02072912,0;0;0,0.005852963;0.1998044;0.006628481,0.01395372;0.4996152;0.002795282,0.1203371;0.3718905;-0.03499087,0.1949007;0.1031984;-0.009597452,0.2261042;-0.169235;-0.06622227,-0.1022134;0.3618725;0.0152572,-0.3577709;0.2485844;0.03126314,-0.6320164;0.2221537;-0.01864544,0.06522094;0.006126261;-0.04592055,0.09428415;-0.368536;0.01050204,0.1050851;-0.7089912;0.09096067,0.1127044;-0.7593746;0.03196521,-0.07571445;-0.0003589267;-0.02583007,-0.0950208;-0.3780103;0.01167622,-0.09917761;-0.7193675;0.08886398,-0.1125307;-0.7079189;-0.00848867,0.01134332;0.399729;0.006786678,14.882
+0;0;0,0.009469994;0.1993233;0.01343614,0.02441314;0.4988181;0.02031907,0.1293864;0.3681214;-0.01571827,0.1944498;0.09683883;0.008208752,0.2424451;-0.1765088;-0.02890618,-0.09801386;0.3736435;0.02205093,-0.3769373;0.3495349;0.01752435,-0.652482;0.3522279;-0.03215311,0.06803357;0.0051069;-0.04177741,0.08150864;-0.3732893;-0.00961088,0.07781821;-0.7184662;0.04817631,0.06757054;-0.7058578;-0.0497651,-0.07211848;0.00232096;-0.03454764,-0.1093662;-0.3755167;-0.01869552,-0.1280563;-0.7211341;0.03325932,-0.1358483;-0.7085428;-0.06490493,0.01927942;0.3989507;0.02069613,0;0;0,0.01390281;0.1993165;0.008924014,0.03369267;0.4986063;0.008294756,0.1316638;0.366601;-0.03785044,0.2071193;0.09714049;-0.02797547,0.2406156;-0.1729197;-0.09389571,-0.08812033;0.3681391;0.02526708,-0.3625463;0.3126537;0.02183352,-0.6368121;0.3376532;-0.02869652,0.06165914;0.005484799;-0.0506761,0.09158339;-0.366808;0.01934262,0.09786654;-0.7031136;0.1160848,0.1013382;-0.7548594;0.05859071,-0.07806353;0.0002547318;-0.01749347,-0.09520344;-0.376823;0.02630845,-0.105689;-0.7150791;0.1155993,-0.1223502;-0.7033119;0.01869749,0.02702561;0.3988721;0.0112354,22.87947
+0;0;0,0.009469994;0.1993233;0.01343614,0.02441314;0.4988181;0.02031907,0.1293864;0.3681214;-0.01571827,0.1944498;0.09683883;0.008208752,0.2424451;-0.1765088;-0.02890618,-0.09801386;0.3736435;0.02205093,-0.3769373;0.3495349;0.01752435,-0.652482;0.3522279;-0.03215311,0.06803357;0.0051069;-0.04177741,0.08150864;-0.3732893;-0.00961088,0.07781821;-0.7184662;0.04817631,0.06757054;-0.7058578;-0.0497651,-0.07211848;0.00232096;-0.03454764,-0.1093662;-0.3755167;-0.01869552,-0.1280563;-0.7211341;0.03325932,-0.1358483;-0.7085428;-0.06490493,0.01927942;0.3989507;0.02069613,0;0;0,0.01390281;0.1993165;0.008924014,0.03369267;0.4986063;0.008294756,0.1316638;0.366601;-0.03785044,0.2071193;0.09714049;-0.02797547,0.2406156;-0.1729197;-0.09389571,-0.08812033;0.3681391;0.02526708,-0.3625463;0.3126537;0.02183352,-0.6368121;0.3376532;-0.02869652,0.06165914;0.005484799;-0.0506761,0.09158339;-0.366808;0.01934262,0.09786654;-0.7031136;0.1160848,0.1013382;-0.7548594;0.05859071,-0.07806353;0.0002547318;-0.01749347,-0.09520344;-0.376823;0.02630845,-0.105689;-0.7150791;0.1155993,-0.1223502;-0.7033119;0.01869749,0.02702561;0.3988721;0.0112354,22.90293
+0;0;0,0.009469994;0.1993233;0.01343614,0.02441314;0.4988181;0.02031907,0.1293864;0.3681214;-0.01571827,0.1944498;0.09683883;0.008208752,0.2424451;-0.1765088;-0.02890618,-0.09801386;0.3736435;0.02205093,-0.3769373;0.3495349;0.01752435,-0.652482;0.3522279;-0.03215311,0.06803357;0.0051069;-0.04177741,0.08150864;-0.3732893;-0.00961088,0.07781821;-0.7184662;0.04817631,0.06757054;-0.7058578;-0.0497651,-0.07211848;0.00232096;-0.03454764,-0.1093662;-0.3755167;-0.01869552,-0.1280563;-0.7211341;0.03325932,-0.1358483;-0.7085428;-0.06490493,0.01927942;0.3989507;0.02069613,0;0;0,0.01192441;0.1994004;0.009863408,0.02571032;0.4990188;0.01348344,0.1260216;0.3675522;-0.03496031,0.2021878;0.09834731;-0.02367143,0.2362259;-0.1720535;-0.08789624,-0.09348606;0.3664567;0.02610882,-0.3680543;0.3116456;0.02327807,-0.6421018;0.3373325;-0.02808509,0.0617426;0.005475225;-0.05057542,0.09181728;-0.3668052;0.01944441,0.09805466;-0.7030866;0.1162736,0.1009922;-0.7550594;0.05907369,-0.07804024;0.0002567073;-0.01759696,-0.09460121;-0.3768476;0.02619886,-0.1053403;-0.7151417;0.1153154,-0.1217963;-0.703291;0.01836286,0.02141311;0.3991179;0.01464474,22.92385
+0;0;0,0.009502236;0.1993275;0.01335202,0.02449096;0.4988229;0.02010151,0.1297263;0.3679791;-0.01491625,0.1948895;0.09663731;0.008048773,0.2423454;-0.1768672;-0.02860158,-0.09799816;0.3738657;0.02170517,-0.3767914;0.3499755;0.01152639,-0.6515194;0.3534268;-0.04244227,0.06810296;0.005099386;-0.04166513,0.08193663;-0.3732997;-0.009684686,0.07825056;-0.7185628;0.04758473,0.08892963;-0.7651275;-0.01584877,-0.07205939;0.002319848;-0.03467078,-0.1086418;-0.3755848;-0.01886704,-0.1273483;-0.7212359;0.03285743,-0.1347845;-0.7086527;-0.06533299,0.01934349;0.3989564;0.02052429,0;0;0,0.01193562;0.1994037;0.009782006,0.02652481;0.4989873;0.01216727,0.1264718;0.3674508;-0.03529172,0.2030722;0.09849691;-0.02128542,0.2383966;-0.1721436;-0.08378261,-0.09326114;0.366819;0.02540255,-0.3679404;0.3126795;0.02090774,-0.6418287;0.3387472;-0.03110872,0.06183463;0.005516596;-0.05045835,0.0919961;-0.366775;0.01946497,0.09822587;-0.7031194;0.1160758,0.1023606;-0.7549623;0.05876393,-0.07802356;0.0002402079;-0.01767103,-0.09447803;-0.37673;0.027303,-0.1051026;-0.7151607;0.1159131,-0.12137;-0.7033222;0.01893096,0.02174649;0.3991184;0.01400103,22.9357
+0;0;0,0.009502236;0.1993275;0.01335202,0.02449096;0.4988229;0.02010151,0.1297263;0.3679791;-0.01491625,0.1948895;0.09663731;0.008048773,0.2423454;-0.1768672;-0.02860158,-0.09799816;0.3738657;0.02170517,-0.3767914;0.3499755;0.01152639,-0.6515194;0.3534268;-0.04244227,0.06810296;0.005099386;-0.04166513,0.08193663;-0.3732997;-0.009684686,0.07825056;-0.7185628;0.04758473,0.08892963;-0.7651275;-0.01584877,-0.07205939;0.002319848;-0.03467078,-0.1086418;-0.3755848;-0.01886704,-0.1273483;-0.7212359;0.03285743,-0.1347845;-0.7086527;-0.06533299,0.01934349;0.3989564;0.02052429,0;0;0,0.01193562;0.1994037;0.009782006,0.02652481;0.4989873;0.01216727,0.1264718;0.3674508;-0.03529172,0.2030722;0.09849691;-0.02128542,0.2383966;-0.1721436;-0.08378261,-0.09326114;0.366819;0.02540255,-0.3679404;0.3126795;0.02090774,-0.6418287;0.3387472;-0.03110872,0.06183463;0.005516596;-0.05045835,0.0919961;-0.366775;0.01946497,0.09822587;-0.7031194;0.1160758,0.1023606;-0.7549623;0.05876393,-0.07802356;0.0002402079;-0.01767103,-0.09447803;-0.37673;0.027303,-0.1051026;-0.7151607;0.1159131,-0.12137;-0.7033222;0.01893096,0.02174649;0.3991184;0.01400103,22.95756
+0;0;0,0.009502236;0.1993275;0.01335202,0.02449096;0.4988229;0.02010151,0.1297263;0.3679791;-0.01491625,0.1948895;0.09663731;0.008048773,0.2423454;-0.1768672;-0.02860158,-0.09799816;0.3738657;0.02170517,-0.3767914;0.3499755;0.01152639,-0.6515194;0.3534268;-0.04244227,0.06810296;0.005099386;-0.04166513,0.08193663;-0.3732997;-0.009684686,0.07825056;-0.7185628;0.04758473,0.08892963;-0.7651275;-0.01584877,-0.07205939;0.002319848;-0.03467078,-0.1086418;-0.3755848;-0.01886704,-0.1273483;-0.7212359;0.03285743,-0.1347845;-0.7086527;-0.06533299,0.01934349;0.3989564;0.02052429,0;0;0,0.01202719;0.199406;0.009622265,0.02764864;0.4989376;0.01066388,0.1272246;0.3673088;-0.03570741,0.2040172;0.09854573;-0.01929715,0.2405995;-0.1724644;-0.0794239,-0.09274143;0.3670054;0.02446641,-0.367502;0.3134225;0.01850867,-0.6415614;0.339099;-0.03279619,0.06197403;0.005535107;-0.050285,0.0922977;-0.3667957;0.01935885,0.09859353;-0.703148;0.1159375,0.1027219;-0.7546576;0.05815221,-0.07796624;0.0002315074;-0.01792235,-0.09400894;-0.3767065;0.02746873,-0.1043969;-0.7151431;0.1160846,-0.1204321;-0.7033306;0.01906872,0.02232741;0.3991098;0.01313183,22.9797
+0;0;0,0.00940985;0.1993245;0.01346018,0.02426397;0.4988232;0.02036217,0.1296159;0.3678419;-0.0143576,0.1936863;0.09622237;0.008397875,0.2414009;-0.1772538;-0.02812717,-0.09820952;0.3739761;0.02140613,-0.3767931;0.3500453;0.006624809,-0.650328;0.3541406;-0.05305671,0.06823335;0.00510022;-0.04145114,0.08235949;-0.3733324;-0.009999763,0.07876264;-0.7186058;0.04721334,0.06914074;-0.7059883;-0.05079313,-0.0719526;0.002319265;-0.03489187,-0.1079381;-0.375635;-0.0189042,-0.1270088;-0.7213075;0.03254364,-0.134173;-0.7087198;-0.06566779,0.01916019;0.3989542;0.02073605,0;0;0,0.01205084;0.199408;0.009552578,0.02814723;0.4989137;0.01008139,0.1275599;0.3672236;-0.0358986,0.2043828;0.09851602;-0.01873842,0.2424497;-0.1731435;-0.07488102,-0.09255543;0.3671894;0.02370095,-0.3673182;0.3137271;0.01682853,-0.6414746;0.3385288;-0.03438788,0.06218931;0.005580558;-0.05001348,0.09251925;-0.3668475;0.01910578,0.09880078;-0.703222;0.1156082,0.103211;-0.7548417;0.05799943,-0.07792742;0.0002513835;-0.01809018,-0.09394787;-0.3767505;0.02677528,-0.1044416;-0.7151481;0.1155277,-0.1202419;-0.7033483;0.01847563,0.02260486;0.3991035;0.01276476,23.00221
+0;0;0,0.00940985;0.1993245;0.01346018,0.02426397;0.4988232;0.02036217,0.1296159;0.3678419;-0.0143576,0.1936863;0.09622237;0.008397875,0.2414009;-0.1772538;-0.02812717,-0.09820952;0.3739761;0.02140613,-0.3767931;0.3500453;0.006624809,-0.650328;0.3541406;-0.05305671,0.06823335;0.00510022;-0.04145114,0.08235949;-0.3733324;-0.009999763,0.07876264;-0.7186058;0.04721334,0.06914074;-0.7059883;-0.05079313,-0.0719526;0.002319265;-0.03489187,-0.1079381;-0.375635;-0.0189042,-0.1270088;-0.7213075;0.03254364,-0.134173;-0.7087198;-0.06566779,0.01916019;0.3989542;0.02073605,0;0;0,0.01205084;0.199408;0.009552578,0.02814723;0.4989137;0.01008139,0.1275599;0.3672236;-0.0358986,0.2043828;0.09851602;-0.01873842,0.2424497;-0.1731435;-0.07488102,-0.09255543;0.3671894;0.02370095,-0.3673182;0.3137271;0.01682853,-0.6414746;0.3385288;-0.03438788,0.06218931;0.005580558;-0.05001348,0.09251925;-0.3668475;0.01910578,0.09880078;-0.703222;0.1156082,0.103211;-0.7548417;0.05799943,-0.07792742;0.0002513835;-0.01809018,-0.09394787;-0.3767505;0.02677528,-0.1044416;-0.7151481;0.1155277,-0.1202419;-0.7033483;0.01847563,0.02260486;0.3991035;0.01276476,23.02454
+0;0;0,0.00940985;0.1993245;0.01346018,0.02426397;0.4988232;0.02036217,0.1296159;0.3678419;-0.0143576,0.1936863;0.09622237;0.008397875,0.2414009;-0.1772538;-0.02812717,-0.09820952;0.3739761;0.02140613,-0.3767931;0.3500453;0.006624809,-0.650328;0.3541406;-0.05305671,0.06823335;0.00510022;-0.04145114,0.08235949;-0.3733324;-0.009999763,0.07876264;-0.7186058;0.04721334,0.06914074;-0.7059883;-0.05079313,-0.0719526;0.002319265;-0.03489187,-0.1079381;-0.375635;-0.0189042,-0.1270088;-0.7213075;0.03254364,-0.134173;-0.7087198;-0.06566779,0.01916019;0.3989542;0.02073605,0;0;0,0.01204078;0.1994109;0.009502744,0.02827683;0.4989093;0.009739573,0.1276911;0.3672026;-0.03600049,0.2044077;0.09859845;-0.01685884,0.2435914;-0.1733545;-0.07076825,-0.09255385;0.3673548;0.02317145,-0.3672284;0.3135557;0.01545606,-0.6413066;0.3350638;-0.03763389,0.06231745;0.005599447;-0.0498516,0.09262531;-0.3668192;0.0193275,0.09888522;-0.7032378;0.1156776,0.1035519;-0.7548592;0.05809136,-0.07790638;0.0002394629;-0.01818074,-0.09419789;-0.3767414;0.02676325,-0.1043938;-0.7151508;0.1155052,-0.1200273;-0.7033589;0.01842763,0.02267881;0.399105;0.01252433,23.04678
+0;0;0,0.009193444;0.1993361;0.01343853,0.02346095;0.4988634;0.02032612,0.1290989;0.3681034;-0.01441687,0.1931643;0.09652656;0.008855976,0.2400322;-0.1771889;-0.02696655,-0.09876189;0.3739069;0.02067989,-0.3770538;0.3494832;0.001783246,-0.6487913;0.3555008;-0.0654663,0.06846119;0.005178334;-0.04106397,0.08253808;-0.373319;-0.01037862,0.0788033;-0.7186215;0.04664999,0.06939388;-0.7060241;-0.05137356,-0.07180595;0.002248692;-0.03519729,-0.1077164;-0.3757121;-0.0191958,-0.1268418;-0.7213941;0.03216764,-0.1337965;-0.7088111;-0.06605801,0.01858884;0.3989829;0.02071127,0;0;0,0.01198478;0.19942;0.009382275,0.02818982;0.4989189;0.009060546,0.1277647;0.3670856;-0.03606161,0.2047663;0.09867135;-0.01545748,0.2443689;-0.174053;-0.06498566,-0.09271856;0.3676634;0.02258492,-0.3670212;0.3120703;0.01437016,-0.6409555;0.3318683;-0.04010953,0.06250279;0.005634245;-0.04961509,0.09271763;-0.3668789;0.01909456,0.09883258;-0.7033253;0.1153568,0.1037949;-0.7544016;0.05702994,-0.07787056;0.0002564944;-0.01833333,-0.09431436;-0.3767072;0.02669998,-0.1043573;-0.7151287;0.1154129,-0.1197855;-0.7033601;0.01830683,0.02260547;0.3991199;0.01205627,23.06931
+0;0;0,0.009193444;0.1993361;0.01343853,0.02346095;0.4988634;0.02032612,0.1290989;0.3681034;-0.01441687,0.1931643;0.09652656;0.008855976,0.2400322;-0.1771889;-0.02696655,-0.09876189;0.3739069;0.02067989,-0.3770538;0.3494832;0.001783246,-0.6487913;0.3555008;-0.0654663,0.06846119;0.005178334;-0.04106397,0.08253808;-0.373319;-0.01037862,0.0788033;-0.7186215;0.04664999,0.06939388;-0.7060241;-0.05137356,-0.07180595;0.002248692;-0.03519729,-0.1077164;-0.3757121;-0.0191958,-0.1268418;-0.7213941;0.03216764,-0.1337965;-0.7088111;-0.06605801,0.01858884;0.3989829;0.02071127,0;0;0,0.01198478;0.19942;0.009382275,0.02818982;0.4989189;0.009060546,0.1277647;0.3670856;-0.03606161,0.2047663;0.09867135;-0.01545748,0.2443689;-0.174053;-0.06498566,-0.09271856;0.3676634;0.02258492,-0.3670212;0.3120703;0.01437016,-0.6409555;0.3318683;-0.04010953,0.06250279;0.005634245;-0.04961509,0.09271763;-0.3668789;0.01909456,0.09883258;-0.7033253;0.1153568,0.1037949;-0.7544016;0.05702994,-0.07787056;0.0002564944;-0.01833333,-0.09431436;-0.3767072;0.02669998,-0.1043573;-0.7151287;0.1154129,-0.1197855;-0.7033601;0.01830683,0.02260547;0.3991199;0.01205627,23.08034
+0;0;0,0.009193444;0.1993361;0.01343853,0.02346095;0.4988634;0.02032612,0.1290989;0.3681034;-0.01441687,0.1931643;0.09652656;0.008855976,0.2400322;-0.1771889;-0.02696655,-0.09876189;0.3739069;0.02067989,-0.3770538;0.3494832;0.001783246,-0.6487913;0.3555008;-0.0654663,0.06846119;0.005178334;-0.04106397,0.08253808;-0.373319;-0.01037862,0.0788033;-0.7186215;0.04664999,0.06939388;-0.7060241;-0.05137356,-0.07180595;0.002248692;-0.03519729,-0.1077164;-0.3757121;-0.0191958,-0.1268418;-0.7213941;0.03216764,-0.1337965;-0.7088111;-0.06605801,0.01858884;0.3989829;0.02071127,0;0;0,0.01198478;0.19942;0.009382275,0.02818982;0.4989189;0.009060546,0.1277647;0.3670856;-0.03606161,0.2047663;0.09867135;-0.01545748,0.2443689;-0.174053;-0.06498566,-0.09271856;0.3676634;0.02258492,-0.3670212;0.3120703;0.01437016,-0.6409555;0.3318683;-0.04010953,0.06250279;0.005634245;-0.04961509,0.09271763;-0.3668789;0.01909456,0.09883258;-0.7033253;0.1153568,0.1037949;-0.7544016;0.05702994,-0.07787056;0.0002564944;-0.01833333,-0.09431436;-0.3767072;0.02669998,-0.1043573;-0.7151287;0.1154129,-0.1197855;-0.7033601;0.01830683,0.02260547;0.3991199;0.01205627,23.09171
+0;0;0,0.00912783;0.1993359;0.01348581,0.02333073;0.4988648;0.02043864,0.1290782;0.3679671;-0.01390646,0.192493;0.09621009;0.009043751,0.2386746;-0.177763;-0.02568346,-0.09882601;0.3736969;0.01967562,-0.3766841;0.3491495;-0.004660854,-0.6470513;0.3541187;-0.0773031,0.06850237;0.005150314;-0.04099879,0.08269383;-0.37335;-0.01040288,0.07882175;-0.7186176;0.04682745,0.06988259;-0.7060241;-0.05123939,-0.07178559;0.002270648;-0.03523737,-0.1079756;-0.3756809;-0.01965182,-0.1273491;-0.7213088;0.03198173,-0.1338237;-0.7087381;-0.06627456,0.01847414;0.3989834;0.02080281,0;0;0,0.0119952;0.1994215;0.009336066,0.02825345;0.4989176;0.008986912,0.1280124;0.3669342;-0.03558221,0.205388;0.09866652;-0.0144757,0.2452003;-0.174341;-0.06224469,-0.09272953;0.3677894;0.02226535,-0.3665004;0.3098229;0.0128097,-0.6402423;0.3295636;-0.04264876,0.06260937;0.005604974;-0.04948384,0.09267867;-0.3669463;0.01908245,0.09914032;-0.7034446;0.1151405,0.1036699;-0.754618;0.05691372,-0.07784399;0.0002667723;-0.01844567,-0.09438618;-0.376658;0.02687638,-0.1041246;-0.7150322;0.1158037,-0.1192582;-0.7032582;0.01865029,0.02265179;0.3991198;0.01199115,23.1138
+0;0;0,0.00912783;0.1993359;0.01348581,0.02333073;0.4988648;0.02043864,0.1290782;0.3679671;-0.01390646,0.192493;0.09621009;0.009043751,0.2386746;-0.177763;-0.02568346,-0.09882601;0.3736969;0.01967562,-0.3766841;0.3491495;-0.004660854,-0.6470513;0.3541187;-0.0773031,0.06850237;0.005150314;-0.04099879,0.08269383;-0.37335;-0.01040288,0.07882175;-0.7186176;0.04682745,0.06988259;-0.7060241;-0.05123939,-0.07178559;0.002270648;-0.03523737,-0.1079756;-0.3756809;-0.01965182,-0.1273491;-0.7213088;0.03198173,-0.1338237;-0.7087381;-0.06627456,0.01847414;0.3989834;0.02080281,0;0;0,0.0119952;0.1994215;0.009336066,0.02825345;0.4989176;0.008986912,0.1280124;0.3669342;-0.03558221,0.205388;0.09866652;-0.0144757,0.2452003;-0.174341;-0.06224469,-0.09272953;0.3677894;0.02226535,-0.3665004;0.3098229;0.0128097,-0.6402423;0.3295636;-0.04264876,0.06260937;0.005604974;-0.04948384,0.09267867;-0.3669463;0.01908245,0.09914032;-0.7034446;0.1151405,0.1036699;-0.754618;0.05691372,-0.07784399;0.0002667723;-0.01844567,-0.09438618;-0.376658;0.02687638,-0.1041246;-0.7150322;0.1158037,-0.1192582;-0.7032582;0.01865029,0.02265179;0.3991198;0.01199115,23.1251
+0;0;0,0.00912783;0.1993359;0.01348581,0.02333073;0.4988648;0.02043864,0.1290782;0.3679671;-0.01390646,0.192493;0.09621009;0.009043751,0.2386746;-0.177763;-0.02568346,-0.09882601;0.3736969;0.01967562,-0.3766841;0.3491495;-0.004660854,-0.6470513;0.3541187;-0.0773031,0.06850237;0.005150314;-0.04099879,0.08269383;-0.37335;-0.01040288,0.07882175;-0.7186176;0.04682745,0.06988259;-0.7060241;-0.05123939,-0.07178559;0.002270648;-0.03523737,-0.1079756;-0.3756809;-0.01965182,-0.1273491;-0.7213088;0.03198173,-0.1338237;-0.7087381;-0.06627456,0.01847414;0.3989834;0.02080281,0;0;0,0.01218305;0.1994155;0.009220501,0.02870162;0.498897;0.008798769,0.1283558;0.3667605;-0.03559333,0.2058361;0.09859738;-0.01356275,0.245025;-0.1748215;-0.05945788,-0.09239364;0.3676287;0.02176446,-0.3660514;0.3093201;0.01120378,-0.6395056;0.3273282;-0.04622876,0.06285368;0.005572537;-0.04917684,0.09313728;-0.3670903;0.01868547,0.09967759;-0.7035972;0.1147082,0.1047009;-0.7549201;0.056731,-0.07774441;0.0003354411;-0.01885982,-0.09385145;-0.3765805;0.02669179,-0.1034724;-0.7149793;0.1155383,-0.1184476;-0.7032074;0.01836074,0.02297722;0.399107;0.01183085,23.1473
+0;0;0,0.009052266;0.1993375;0.01351382,0.02306797;0.498874;0.02051315,0.1289455;0.3678862;-0.01357052,0.1919207;0.09605396;0.009697005,0.2380142;-0.1780075;-0.02444529,-0.0989628;0.3734674;0.01916491,-0.3765315;0.3490582;-0.008399881,-0.6454064;0.3526137;-0.0864618,0.068546;0.005127218;-0.04092867,0.08229955;-0.3733487;-0.009835623,0.07867067;-0.7186977;0.04691771,0.06997692;-0.7061059;-0.05117089,-0.07176163;0.002285295;-0.03528521,-0.1075776;-0.3757138;-0.0199904,-0.1273886;-0.7212829;0.03186989,-0.133617;-0.7087134;-0.06640212,0.01827946;0.3989893;0.02086222,0;0;0,0.01242241;0.199407;0.009085207,0.02918808;0.498876;0.008641677,0.1289113;0.3669029;-0.03552894,0.205757;0.09875736;-0.01118399,0.2455519;-0.1744488;-0.05781836,-0.0920147;0.3675877;0.02129446,-0.3654401;0.3082809;0.01028199,-0.6387367;0.3256626;-0.04808617,0.06299946;0.005478382;-0.04900055,0.0933106;-0.3672178;0.01866633,0.1000663;-0.7037623;0.114542,0.1052383;-0.7552162;0.05676211,-0.07768583;0.000437437;-0.01909765,-0.09319302;-0.3765248;0.02627854,-0.1027572;-0.7149508;0.1150275,-0.1175622;-0.7031811;0.01782423,0.02337401;0.3990905;0.0116499,23.16961
+0;0;0,0.009052266;0.1993375;0.01351382,0.02306797;0.498874;0.02051315,0.1289455;0.3678862;-0.01357052,0.1919207;0.09605396;0.009697005,0.2380142;-0.1780075;-0.02444529,-0.0989628;0.3734674;0.01916491,-0.3765315;0.3490582;-0.008399881,-0.6454064;0.3526137;-0.0864618,0.068546;0.005127218;-0.04092867,0.08229955;-0.3733487;-0.009835623,0.07867067;-0.7186977;0.04691771,0.06997692;-0.7061059;-0.05117089,-0.07176163;0.002285295;-0.03528521,-0.1075776;-0.3757138;-0.0199904,-0.1273886;-0.7212829;0.03186989,-0.133617;-0.7087134;-0.06640212,0.01827946;0.3989893;0.02086222,0;0;0,0.01242241;0.199407;0.009085207,0.02918808;0.498876;0.008641677,0.1289113;0.3669029;-0.03552894,0.205757;0.09875736;-0.01118399,0.2455519;-0.1744488;-0.05781836,-0.0920147;0.3675877;0.02129446,-0.3654401;0.3082809;0.01028199,-0.6387367;0.3256626;-0.04808617,0.06299946;0.005478382;-0.04900055,0.0933106;-0.3672178;0.01866633,0.1000663;-0.7037623;0.114542,0.1052383;-0.7552162;0.05676211,-0.07768583;0.000437437;-0.01909765,-0.09319302;-0.3765248;0.02627854,-0.1027572;-0.7149508;0.1150275,-0.1175622;-0.7031811;0.01782423,0.02337401;0.3990905;0.0116499,23.18086
+0;0;0,0.009052266;0.1993375;0.01351382,0.02306797;0.498874;0.02051315,0.1289455;0.3678862;-0.01357052,0.1919207;0.09605396;0.009697005,0.2380142;-0.1780075;-0.02444529,-0.0989628;0.3734674;0.01916491,-0.3765315;0.3490582;-0.008399881,-0.6454064;0.3526137;-0.0864618,0.068546;0.005127218;-0.04092867,0.08229955;-0.3733487;-0.009835623,0.07867067;-0.7186977;0.04691771,0.06997692;-0.7061059;-0.05117089,-0.07176163;0.002285295;-0.03528521,-0.1075776;-0.3757138;-0.0199904,-0.1273886;-0.7212829;0.03186989,-0.133617;-0.7087134;-0.06640212,0.01827946;0.3989893;0.02086222,0;0;0,0.01098771;0.1994357;0.01023062,0.02422333;0.4990793;0.01341444,0.125191;0.3675537;-0.03320119,0.2022829;0.099556;-0.008020336,0.2415265;-0.1738437;-0.05398317,-0.09537689;0.3666233;0.02224158,-0.3686147;0.3067921;0.009540803,-0.6417682;0.3234497;-0.0497021,0.06320788;0.005410739;-0.04873898,0.09336753;-0.3673798;0.01847435,0.1003307;-0.7039194;0.1143525,0.1051565;-0.7553931;0.05657058,-0.07762931;0.0004801817;-0.01932509,-0.09317693;-0.376454;0.02626991,-0.1027314;-0.7149405;0.1147889,-0.1173846;-0.7030714;0.01754408,0.01988528;0.399184;0.01486368,23.20319
+0;0;0,0.008948335;0.1993354;0.01361428,0.02284574;0.4988734;0.02078321,0.1287777;0.3678489;-0.01325927,0.191876;0.09603596;0.009899614,0.2376225;-0.1781665;-0.02357086,-0.0991243;0.3733757;0.01889352,-0.375806;0.347928;-0.01574248,-0.6431854;0.3503633;-0.09882246,0.06863343;0.005070868;-0.04078894,0.08227269;-0.373428;-0.009926083,0.07848727;-0.7188486;0.04637945,0.06997844;-0.7062793;-0.05172137,-0.07171356;0.002359412;-0.03537795,-0.1070762;-0.3756847;-0.02014191,-0.127064;-0.7212211;0.03186859,-0.1331135;-0.7086464;-0.06641552,0.01809049;0.398987;0.02107373,0;0;0,0.01098771;0.1994357;0.01023062,0.02422333;0.4990793;0.01341444,0.125191;0.3675537;-0.03320119,0.2022829;0.099556;-0.008020336,0.2415265;-0.1738437;-0.05398317,-0.09537689;0.3666233;0.02224158,-0.3686147;0.3067921;0.009540803,-0.6417682;0.3234497;-0.0497021,0.06320788;0.005410739;-0.04873898,0.09336753;-0.3673798;0.01847435,0.1003307;-0.7039194;0.1143525,0.1051565;-0.7553931;0.05657058,-0.07762931;0.0004801817;-0.01932509,-0.09317693;-0.376454;0.02626991,-0.1027314;-0.7149405;0.1147889,-0.1173846;-0.7030714;0.01754408,0.01988528;0.399184;0.01486368,23.21441
+0;0;0,0.008948335;0.1993354;0.01361428,0.02284574;0.4988734;0.02078321,0.1287777;0.3678489;-0.01325927,0.191876;0.09603596;0.009899614,0.2376225;-0.1781665;-0.02357086,-0.0991243;0.3733757;0.01889352,-0.375806;0.347928;-0.01574248,-0.6431854;0.3503633;-0.09882246,0.06863343;0.005070868;-0.04078894,0.08227269;-0.373428;-0.009926083,0.07848727;-0.7188486;0.04637945,0.06997844;-0.7062793;-0.05172137,-0.07171356;0.002359412;-0.03537795,-0.1070762;-0.3756847;-0.02014191,-0.127064;-0.7212211;0.03186859,-0.1331135;-0.7086464;-0.06641552,0.01809049;0.398987;0.02107373,0;0;0,0.01098771;0.1994357;0.01023062,0.02422333;0.4990793;0.01341444,0.125191;0.3675537;-0.03320119,0.2022829;0.099556;-0.008020336,0.2415265;-0.1738437;-0.05398317,-0.09537689;0.3666233;0.02224158,-0.3686147;0.3067921;0.009540803,-0.6417682;0.3234497;-0.0497021,0.06320788;0.005410739;-0.04873898,0.09336753;-0.3673798;0.01847435,0.1003307;-0.7039194;0.1143525,0.1051565;-0.7553931;0.05657058,-0.07762931;0.0004801817;-0.01932509,-0.09317693;-0.376454;0.02626991,-0.1027314;-0.7149405;0.1147889,-0.1173846;-0.7030714;0.01754408,0.01988528;0.399184;0.01486368,23.22558
+0;0;0,0.008948335;0.1993354;0.01361428,0.02284574;0.4988734;0.02078321,0.1287777;0.3678489;-0.01325927,0.191876;0.09603596;0.009899614,0.2376225;-0.1781665;-0.02357086,-0.0991243;0.3733757;0.01889352,-0.375806;0.347928;-0.01574248,-0.6431854;0.3503633;-0.09882246,0.06863343;0.005070868;-0.04078894,0.08227269;-0.373428;-0.009926083,0.07848727;-0.7188486;0.04637945,0.06997844;-0.7062793;-0.05172137,-0.07171356;0.002359412;-0.03537795,-0.1070762;-0.3756847;-0.02014191,-0.127064;-0.7212211;0.03186859,-0.1331135;-0.7086464;-0.06641552,0.01809049;0.398987;0.02107373,0;0;0,0.01107074;0.1994337;0.01017982,0.02556103;0.4990205;0.0128998,0.1260362;0.3674669;-0.03324096,0.2028952;0.09945235;-0.007533029,0.2417988;-0.1741669;-0.05246657,-0.09461439;0.3664849;0.02155472,-0.3679035;0.3070622;0.008064676,-0.6409487;0.3227074;-0.05194851,0.06336158;0.005317282;-0.04854932,0.093003;-0.3674769;0.01887383,0.1000926;-0.7041014;0.1144443,0.1054634;-0.755653;0.05682059,-0.07759584;0.0005220984;-0.01945801,-0.09366712;-0.3763801;0.02621969,-0.1028712;-0.7148962;0.1146627,-0.1172686;-0.7030298;0.01738013,0.0206424;0.3991558;0.0145917,23.24793
+0;0;0,0.008863636;0.1993371;0.01364406,0.02262445;0.4988804;0.02085874,0.1286564;0.3678143;-0.01298492,0.1914682;0.09592393;0.01004332,0.2377749;-0.1781799;-0.02346504,-0.0992101;0.3730644;0.01800511,-0.3750162;0.3464971;-0.02230797,-0.6389389;0.3484846;-0.1158005,0.06867222;0.005048511;-0.04072638,0.08164366;-0.3735351;-0.01062276,0.07870171;-0.7188817;0.04618407,0.07053336;-0.7063148;-0.05194526,-0.07169773;0.002375933;-0.03540891,-0.1064776;-0.3757359;-0.0205155,-0.1267485;-0.7212198;0.03173307,-0.1324557;-0.7086437;-0.06657173,0.01791371;0.3989918;0.02113285,0;0;0,0.01112081;0.1994339;0.0101218,0.02616046;0.4989932;0.01259838,0.12649;0.3672502;-0.03297167,0.2032289;0.09926158;-0.006642358,0.2414331;-0.1743662;-0.0521208,-0.09434731;0.3666431;0.02129094,-0.36741;0.3065605;0.006229473,-0.6398863;0.3215271;-0.05648144,0.06346728;0.00528104;-0.04841503,0.09308408;-0.3675483;0.01882424,0.1002898;-0.7041746;0.1143793,0.1046692;-0.7555839;0.05647116,-0.07755909;0.0005476355;-0.01960324,-0.09417647;-0.3762979;0.02634614,-0.1028427;-0.7148444;0.1147266,-0.1170386;-0.7029786;0.01741461,0.02096329;0.3991451;0.01442913,23.25904
+0;0;0,0.008863636;0.1993371;0.01364406,0.02262445;0.4988804;0.02085874,0.1286564;0.3678143;-0.01298492,0.1914682;0.09592393;0.01004332,0.2377749;-0.1781799;-0.02346504,-0.0992101;0.3730644;0.01800511,-0.3750162;0.3464971;-0.02230797,-0.6389389;0.3484846;-0.1158005,0.06867222;0.005048511;-0.04072638,0.08164366;-0.3735351;-0.01062276,0.07870171;-0.7188817;0.04618407,0.07053336;-0.7063148;-0.05194526,-0.07169773;0.002375933;-0.03540891,-0.1064776;-0.3757359;-0.0205155,-0.1267485;-0.7212198;0.03173307,-0.1324557;-0.7086437;-0.06657173,0.01791371;0.3989918;0.02113285,0;0;0,0.01112081;0.1994339;0.0101218,0.02616046;0.4989932;0.01259838,0.12649;0.3672502;-0.03297167,0.2032289;0.09926158;-0.006642358,0.2414331;-0.1743662;-0.0521208,-0.09434731;0.3666431;0.02129094,-0.36741;0.3065605;0.006229473,-0.6398863;0.3215271;-0.05648144,0.06346728;0.00528104;-0.04841503,0.09308408;-0.3675483;0.01882424,0.1002898;-0.7041746;0.1143793,0.1046692;-0.7555839;0.05647116,-0.07755909;0.0005476355;-0.01960324,-0.09417647;-0.3762979;0.02634614,-0.1028427;-0.7148444;0.1147266,-0.1170386;-0.7029786;0.01741461,0.02096329;0.3991451;0.01442913,23.28153
+0;0;0,0.008893007;0.1993293;0.013738,0.02275642;0.4988651;0.02106329,0.1288494;0.3679334;-0.01260633,0.191719;0.09604302;0.01026353,0.2380688;-0.1780662;-0.02314033,-0.0990756;0.3729035;0.01781926,-0.3739393;0.3458165;-0.0281831,-0.6344855;0.3475648;-0.1307144,0.0687824;0.004912673;-0.0405567,0.08198791;-0.3736853;-0.01073704,0.07943486;-0.7190171;0.04617871,0.07140799;-0.7064473;-0.05196283,-0.07168888;0.002559757;-0.035414,-0.1056793;-0.3756271;-0.02060286,-0.1255693;-0.721083;0.03197628,-0.1311347;-0.7085004;-0.06633782,0.01800541;0.3989784;0.02130283,0;0;0,0.01122178;0.199431;0.01006638,0.0273136;0.4989358;0.01220647,0.1272319;0.3670141;-0.03299151,0.203696;0.09904394;-0.005692992,0.2411824;-0.1745509;-0.05196018,-0.09357578;0.3663659;0.02090014,-0.3670959;0.3105083;-0.0007016398,-0.6401054;0.3231628;-0.0615763,0.06369131;0.005263137;-0.04812189,0.09319258;-0.367649;0.01870761,0.100583;-0.7042973;0.1141713,0.1042426;-0.7558411;0.05640257,-0.07750627;0.0005442346;-0.01981119,-0.09448791;-0.3762926;0.02607565,-0.1030572;-0.7148887;0.1142759,-0.1170903;-0.7030237;0.01694047,0.02167451;0.3991149;0.01420152,23.30403
+0;0;0,0.008893007;0.1993293;0.013738,0.02275642;0.4988651;0.02106329,0.1288494;0.3679334;-0.01260633,0.191719;0.09604302;0.01026353,0.2380688;-0.1780662;-0.02314033,-0.0990756;0.3729035;0.01781926,-0.3739393;0.3458165;-0.0281831,-0.6344855;0.3475648;-0.1307144,0.0687824;0.004912673;-0.0405567,0.08198791;-0.3736853;-0.01073704,0.07943486;-0.7190171;0.04617871,0.07140799;-0.7064473;-0.05196283,-0.07168888;0.002559757;-0.035414,-0.1056793;-0.3756271;-0.02060286,-0.1255693;-0.721083;0.03197628,-0.1311347;-0.7085004;-0.06633782,0.01800541;0.3989784;0.02130283,0;0;0,0.01122178;0.199431;0.01006638,0.0273136;0.4989358;0.01220647,0.1272319;0.3670141;-0.03299151,0.203696;0.09904394;-0.005692992,0.2411824;-0.1745509;-0.05196018,-0.09357578;0.3663659;0.02090014,-0.3670959;0.3105083;-0.0007016398,-0.6401054;0.3231628;-0.0615763,0.06369131;0.005263137;-0.04812189,0.09319258;-0.367649;0.01870761,0.100583;-0.7042973;0.1141713,0.1042426;-0.7558411;0.05640257,-0.07750627;0.0005442346;-0.01981119,-0.09448791;-0.3762926;0.02607565,-0.1030572;-0.7148887;0.1142759,-0.1170903;-0.7030237;0.01694047,0.02167451;0.3991149;0.01420152,23.3152
+0;0;0,0.008893007;0.1993293;0.013738,0.02275642;0.4988651;0.02106329,0.1288494;0.3679334;-0.01260633,0.191719;0.09604302;0.01026353,0.2380688;-0.1780662;-0.02314033,-0.0990756;0.3729035;0.01781926,-0.3739393;0.3458165;-0.0281831,-0.6344855;0.3475648;-0.1307144,0.0687824;0.004912673;-0.0405567,0.08198791;-0.3736853;-0.01073704,0.07943486;-0.7190171;0.04617871,0.07140799;-0.7064473;-0.05196283,-0.07168888;0.002559757;-0.035414,-0.1056793;-0.3756271;-0.02060286,-0.1255693;-0.721083;0.03197628,-0.1311347;-0.7085004;-0.06633782,0.01800541;0.3989784;0.02130283,0;0;0,0.01122178;0.199431;0.01006638,0.0273136;0.4989358;0.01220647,0.1272319;0.3670141;-0.03299151,0.203696;0.09904394;-0.005692992,0.2411824;-0.1745509;-0.05196018,-0.09357578;0.3663659;0.02090014,-0.3670959;0.3105083;-0.0007016398,-0.6401054;0.3231628;-0.0615763,0.06369131;0.005263137;-0.04812189,0.09319258;-0.367649;0.01870761,0.100583;-0.7042973;0.1141713,0.1042426;-0.7558411;0.05640257,-0.07750627;0.0005442346;-0.01981119,-0.09448791;-0.3762926;0.02607565,-0.1030572;-0.7148887;0.1142759,-0.1170903;-0.7030237;0.01694047,0.02167451;0.3991149;0.01420152,23.32639
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01121917;0.1994364;0.009962252,0.02752298;0.4989301;0.0119295,0.127721;0.3670561;-0.03242434,0.2041258;0.09902725;-0.005538274,0.2417275;-0.1743623;-0.05291171,-0.09349723;0.3665719;0.02069606,-0.3669786;0.3113814;-0.003009034,-0.6393192;0.3247203;-0.06667008,0.06385536;0.005288855;-0.04790115,0.09306614;-0.3677261;0.01848097,0.1005345;-0.7043887;0.1138879,0.1040476;-0.7558808;0.05603725,-0.0774534;0.000538609;-0.02001702,-0.09508684;-0.376181;0.0265808,-0.1031175;-0.7148718;0.1144676,-0.1168667;-0.7030101;0.01709225,0.02181171;0.3991148;0.01400248,23.33766
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01121917;0.1994364;0.009962252,0.02752298;0.4989301;0.0119295,0.127721;0.3670561;-0.03242434,0.2041258;0.09902725;-0.005538274,0.2417275;-0.1743623;-0.05291171,-0.09349723;0.3665719;0.02069606,-0.3669786;0.3113814;-0.003009034,-0.6393192;0.3247203;-0.06667008,0.06385536;0.005288855;-0.04790115,0.09306614;-0.3677261;0.01848097,0.1005345;-0.7043887;0.1138879,0.1040476;-0.7558808;0.05603725,-0.0774534;0.000538609;-0.02001702,-0.09508684;-0.376181;0.0265808,-0.1031175;-0.7148718;0.1144676,-0.1168667;-0.7030101;0.01709225,0.02181171;0.3991148;0.01400248,23.34887
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01137726;0.1994281;0.009950654,0.02831786;0.498886;0.01197073,0.1283801;0.3666609;-0.03193463,0.2045977;0.09865159;-0.004332587,0.2421133;-0.1743618;-0.0538937,-0.09283809;0.3662478;0.02088871,-0.366412;0.3125723;-0.00511536,-0.637692;0.3263943;-0.07305779,0.0639955;0.005217364;-0.04772163,0.09290253;-0.3678811;0.018323,0.1007992;-0.7045953;0.1135133,0.1047441;-0.7563112;0.05600717,-0.07737497;0.0006400634;-0.02031512,-0.0950816;-0.3761104;0.02600446,-0.1030877;-0.7147923;0.1139278,-0.116785;-0.702924;0.01654392,0.02237774;0.3990837;0.0140247,23.37109
+0;0;0,0.008810093;0.1993208;0.01391405,0.02252723;0.4988538;0.02164913,0.1287507;0.3677881;-0.01178237,0.1917737;0.095893;0.01060357,0.2385932;-0.1781021;-0.02308068,-0.09917881;0.3726267;0.01764911,-0.3729829;0.344326;-0.03363843,-0.6318901;0.3476382;-0.1402033,0.06882564;0.004896507;-0.04048524,0.08219901;-0.3736951;-0.01066007,0.07973764;-0.7190242;0.04627621,0.07199639;-0.7064338;-0.05189192,-0.0716823;0.002575396;-0.0354262,-0.1052289;-0.3756527;-0.02065662,-0.1250789;-0.7210912;0.03205223,-0.1303574;-0.7084938;-0.06628029,0.01782393;0.3989645;0.02173297,0;0;0,0.01137726;0.1994281;0.009950654,0.02831786;0.498886;0.01197073,0.1283801;0.3666609;-0.03193463,0.2045977;0.09865159;-0.004332587,0.2421133;-0.1743618;-0.0538937,-0.09283809;0.3662478;0.02088871,-0.366412;0.3125723;-0.00511536,-0.637692;0.3263943;-0.07305779,0.0639955;0.005217364;-0.04772163,0.09290253;-0.3678811;0.018323,0.1007992;-0.7045953;0.1135133,0.1047441;-0.7563112;0.05600717,-0.07737497;0.0006400634;-0.02031512,-0.0950816;-0.3761104;0.02600446,-0.1030877;-0.7147923;0.1139278,-0.116785;-0.702924;0.01654392,0.02237774;0.3990837;0.0140247,23.38223
+0;0;0,0.009074706;0.1992917;0.01415927,0.02305836;0.4988042;0.02221663,0.1292812;0.3677461;-0.01106804,0.1924548;0.0958347;0.01068653,0.2396903;-0.1780712;-0.02314152,-0.09868792;0.372519;0.0174086,-0.3709643;0.3426738;-0.04068477,-0.6262959;0.3467418;-0.1555291,0.06893913;0.00469148;-0.04031609,0.08319461;-0.3738672;-0.01048171,0.08075479;-0.7191858;0.04651953,0.0732955;-0.7065845;-0.05167235,-0.07167032;0.002819662;-0.03543182,-0.1042725;-0.375487;-0.02056171,-0.1239176;-0.7208933;0.03243449,-0.1289104;-0.708281;-0.0659156,0.01827463;0.3989187;0.02218567,0;0;0,0.01137726;0.1994281;0.009950654,0.02831786;0.498886;0.01197073,0.1283801;0.3666609;-0.03193463,0.2045977;0.09865159;-0.004332587,0.2421133;-0.1743618;-0.0538937,-0.09283809;0.3662478;0.02088871,-0.366412;0.3125723;-0.00511536,-0.637692;0.3263943;-0.07305779,0.0639955;0.005217364;-0.04772163,0.09290253;-0.3678811;0.018323,0.1007992;-0.7045953;0.1135133,0.1047441;-0.7563112;0.05600717,-0.07737497;0.0006400634;-0.02031512,-0.0950816;-0.3761104;0.02600446,-0.1030877;-0.7147923;0.1139278,-0.116785;-0.702924;0.01654392,0.02237774;0.3990837;0.0140247,23.39359
+0;0;0,0.009074706;0.1992917;0.01415927,0.02305836;0.4988042;0.02221663,0.1292812;0.3677461;-0.01106804,0.1924548;0.0958347;0.01068653,0.2396903;-0.1780712;-0.02314152,-0.09868792;0.372519;0.0174086,-0.3709643;0.3426738;-0.04068477,-0.6262959;0.3467418;-0.1555291,0.06893913;0.00469148;-0.04031609,0.08319461;-0.3738672;-0.01048171,0.08075479;-0.7191858;0.04651953,0.0732955;-0.7065845;-0.05167235,-0.07167032;0.002819662;-0.03543182,-0.1042725;-0.375487;-0.02056171,-0.1239176;-0.7208933;0.03243449,-0.1289104;-0.708281;-0.0659156,0.01827463;0.3989187;0.02218567,0;0;0,0.01135364;0.1994311;0.009916333,0.02830206;0.4988893;0.01185784,0.1287611;0.3667573;-0.03121702,0.2041527;0.09849837;-0.003771368,0.2416168;-0.1743091;-0.05449166,-0.09273677;0.3659469;0.02093182,-0.3663486;0.3133082;-0.006740645,-0.6369298;0.3274527;-0.07735019,0.06424219;0.005229565;-0.04738768,0.09256425;-0.3679826;0.0182668,0.1005678;-0.7047633;0.1132128,0.1045642;-0.7566928;0.05601498,-0.07729728;0.0006496449;-0.02060846,-0.09555935;-0.3760103;0.02622951,-0.1032773;-0.7147716;0.113872,-0.1168196;-0.7029063;0.01646701,0.02238423;0.3990862;0.01393597,23.4048
+0;0;0,0.009074706;0.1992917;0.01415927,0.02305836;0.4988042;0.02221663,0.1292812;0.3677461;-0.01106804,0.1924548;0.0958347;0.01068653,0.2396903;-0.1780712;-0.02314152,-0.09868792;0.372519;0.0174086,-0.3709643;0.3426738;-0.04068477,-0.6262959;0.3467418;-0.1555291,0.06893913;0.00469148;-0.04031609,0.08319461;-0.3738672;-0.01048171,0.08075479;-0.7191858;0.04651953,0.0732955;-0.7065845;-0.05167235,-0.07167032;0.002819662;-0.03543182,-0.1042725;-0.375487;-0.02056171,-0.1239176;-0.7208933;0.03243449,-0.1289104;-0.708281;-0.0659156,0.01827463;0.3989187;0.02218567,0;0;0,0.01135364;0.1994311;0.009916333,0.02830206;0.4988893;0.01185784,0.1287611;0.3667573;-0.03121702,0.2041527;0.09849837;-0.003771368,0.2416168;-0.1743091;-0.05449166,-0.09273677;0.3659469;0.02093182,-0.3663486;0.3133082;-0.006740645,-0.6369298;0.3274527;-0.07735019,0.06424219;0.005229565;-0.04738768,0.09256425;-0.3679826;0.0182668,0.1005678;-0.7047633;0.1132128,0.1045642;-0.7566928;0.05601498,-0.07729728;0.0006496449;-0.02060846,-0.09555935;-0.3760103;0.02622951,-0.1032773;-0.7147716;0.113872,-0.1168196;-0.7029063;0.01646701,0.02238423;0.3990862;0.01393597,23.42676
+0;0;0,0.008999027;0.1992798;0.01437304,0.02276344;0.4987909;0.02288176,0.1291625;0.367858;-0.01036985,0.1924934;0.09598103;0.01135788,0.2394876;-0.1779203;-0.02284142,-0.09879353;0.3721749;0.0170784,-0.3689536;0.3406247;-0.04939043,-0.6215575;0.3453265;-0.1700934,0.06903992;0.00465561;-0.04014742,0.08319081;-0.3739273;-0.01057174,0.08119445;-0.7192106;0.04666029,0.07401158;-0.7065937;-0.05155496,-0.07159429;0.002858565;-0.0355821,-0.1032307;-0.3755163;-0.0203642,-0.1233996;-0.7208543;0.0328798,-0.1281123;-0.7082273;-0.06548671,0.01805819;0.3989018;0.02267731,0;0;0,0.01137702;0.1994335;0.009841695,0.02839381;0.4988892;0.01162665,0.1293737;0.3668899;-0.03026095,0.2039403;0.09831452;-0.003670096,0.241502;-0.1742109;-0.05581445,-0.09274486;0.3662303;0.02037049,-0.366232;0.3145458;-0.01018276,-0.635974;0.3285695;-0.08395636,0.06487337;0.005073624;-0.04653712,0.0924779;-0.3684586;0.01758504,0.100606;-0.7052706;0.1124088,0.1039915;-0.7575691;0.05570333,-0.07710827;0.0006738875;-0.02130399,-0.09564477;-0.3759468;0.02574162,-0.1032461;-0.7147621;0.1131852,-0.116267;-0.7029029;0.01571026,0.02247933;0.3990868;0.0137498,23.4384
+0;0;0,0.008999027;0.1992798;0.01437304,0.02276344;0.4987909;0.02288176,0.1291625;0.367858;-0.01036985,0.1924934;0.09598103;0.01135788,0.2394876;-0.1779203;-0.02284142,-0.09879353;0.3721749;0.0170784,-0.3689536;0.3406247;-0.04939043,-0.6215575;0.3453265;-0.1700934,0.06903992;0.00465561;-0.04014742,0.08319081;-0.3739273;-0.01057174,0.08119445;-0.7192106;0.04666029,0.07401158;-0.7065937;-0.05155496,-0.07159429;0.002858565;-0.0355821,-0.1032307;-0.3755163;-0.0203642,-0.1233996;-0.7208543;0.0328798,-0.1281123;-0.7082273;-0.06548671,0.01805819;0.3989018;0.02267731,0;0;0,0.01137702;0.1994335;0.009841695,0.02839381;0.4988892;0.01162665,0.1293737;0.3668899;-0.03026095,0.2039403;0.09831452;-0.003670096,0.241502;-0.1742109;-0.05581445,-0.09274486;0.3662303;0.02037049,-0.366232;0.3145458;-0.01018276,-0.635974;0.3285695;-0.08395636,0.06487337;0.005073624;-0.04653712,0.0924779;-0.3684586;0.01758504,0.100606;-0.7052706;0.1124088,0.1039915;-0.7575691;0.05570333,-0.07710827;0.0006738875;-0.02130399,-0.09564477;-0.3759468;0.02574162,-0.1032461;-0.7147621;0.1131852,-0.116267;-0.7029029;0.01571026,0.02247933;0.3990868;0.0137498,23.46041
+0;0;0,0.008999027;0.1992798;0.01437304,0.02276344;0.4987909;0.02288176,0.1291625;0.367858;-0.01036985,0.1924934;0.09598103;0.01135788,0.2394876;-0.1779203;-0.02284142,-0.09879353;0.3721749;0.0170784,-0.3689536;0.3406247;-0.04939043,-0.6215575;0.3453265;-0.1700934,0.06903992;0.00465561;-0.04014742,0.08319081;-0.3739273;-0.01057174,0.08119445;-0.7192106;0.04666029,0.07401158;-0.7065937;-0.05155496,-0.07159429;0.002858565;-0.0355821,-0.1032307;-0.3755163;-0.0203642,-0.1233996;-0.7208543;0.0328798,-0.1281123;-0.7082273;-0.06548671,0.01805819;0.3989018;0.02267731,0;0;0,0.01147607;0.1994214;0.009970873,0.02879612;0.4988589;0.01200832,0.129589;0.3668742;-0.03020697,0.2041467;0.09834456;-0.003133614,0.2417059;-0.1740129;-0.05615006,-0.09255248;0.3665132;0.02021533,-0.3658427;0.3151991;-0.0126378,-0.633958;0.330033;-0.09197317,0.06496655;0.004995177;-0.04641547,0.09257932;-0.3685781;0.01746378,0.1007903;-0.7054542;0.1120527,0.1047736;-0.758007;0.05575729,-0.07702809;0.0007298954;-0.02159029,-0.09560379;-0.3759427;0.02502193,-0.1032575;-0.7147536;0.1124784,-0.1161502;-0.7028786;0.01498346,0.02278352;0.3990603;0.01402708,23.47176
+0;0;0,0.008968758;0.1992739;0.01447275,0.02269638;0.4987829;0.02311393,0.1291225;0.3677888;-0.01006679,0.1925236;0.09591734;0.01152558,0.2397155;-0.1779338;-0.0228039,-0.09875019;0.3718469;0.01673633,-0.3673888;0.3390418;-0.05507681,-0.6166761;0.3448937;-0.1824408,0.06906668;0.004599194;-0.04010788,0.08320375;-0.3739745;-0.01040774,0.08136626;-0.7192694;0.04675926,0.07436003;-0.7066436;-0.05147032,-0.07158189;0.002916613;-0.03560232,-0.1029504;-0.3754724;-0.02018187,-0.1231058;-0.720812;0.03305601,-0.1276415;-0.7081797;-0.06531976,0.01800129;0.3988935;0.02286586,0;0;0,0.01147607;0.1994214;0.009970873,0.02879612;0.4988589;0.01200832,0.129589;0.3668742;-0.03020697,0.2041467;0.09834456;-0.003133614,0.2417059;-0.1740129;-0.05615006,-0.09255248;0.3665132;0.02021533,-0.3658427;0.3151991;-0.0126378,-0.633958;0.330033;-0.09197317,0.06496655;0.004995177;-0.04641547,0.09257932;-0.3685781;0.01746378,0.1007903;-0.7054542;0.1120527,0.1047736;-0.758007;0.05575729,-0.07702809;0.0007298954;-0.02159029,-0.09560379;-0.3759427;0.02502193,-0.1032575;-0.7147536;0.1124784,-0.1161502;-0.7028786;0.01498346,0.02278352;0.3990603;0.01402708,23.4938
+0;0;0,0.008968758;0.1992739;0.01447275,0.02269638;0.4987829;0.02311393,0.1291225;0.3677888;-0.01006679,0.1925236;0.09591734;0.01152558,0.2397155;-0.1779338;-0.0228039,-0.09875019;0.3718469;0.01673633,-0.3673888;0.3390418;-0.05507681,-0.6166761;0.3448937;-0.1824408,0.06906668;0.004599194;-0.04010788,0.08320375;-0.3739745;-0.01040774,0.08136626;-0.7192694;0.04675926,0.07436003;-0.7066436;-0.05147032,-0.07158189;0.002916613;-0.03560232,-0.1029504;-0.3754724;-0.02018187,-0.1231058;-0.720812;0.03305601,-0.1276415;-0.7081797;-0.06531976,0.01800129;0.3988935;0.02286586,0;0;0,0.01049737;0.1994219;0.01098711,0.02555203;0.4989626;0.01544025,0.1274234;0.3675578;-0.02786836,0.2014065;0.09881231;-0.001366239,0.2388626;-0.1733427;-0.05548351,-0.09480903;0.3660516;0.02064143,-0.3677114;0.3155214;-0.01638543,-0.6351821;0.3299785;-0.09793556,0.06513552;0.004878804;-0.04619049,0.09307868;-0.3687776;0.01705572,0.1012987;-0.7056698;0.1115866,0.104962;-0.7578664;0.05475098,-0.07689702;0.0008786296;-0.02204713,-0.09482668;-0.375829;0.02453542,-0.1026273;-0.7147024;0.1117361,-0.115114;-0.7027429;0.01417264,0.02047657;0.399097;0.01648992,23.51621
+0;0;0,0.008968758;0.1992739;0.01447275,0.02269638;0.4987829;0.02311393,0.1291225;0.3677888;-0.01006679,0.1925236;0.09591734;0.01152558,0.2397155;-0.1779338;-0.0228039,-0.09875019;0.3718469;0.01673633,-0.3673888;0.3390418;-0.05507681,-0.6166761;0.3448937;-0.1824408,0.06906668;0.004599194;-0.04010788,0.08320375;-0.3739745;-0.01040774,0.08136626;-0.7192694;0.04675926,0.07436003;-0.7066436;-0.05147032,-0.07158189;0.002916613;-0.03560232,-0.1029504;-0.3754724;-0.02018187,-0.1231058;-0.720812;0.03305601,-0.1276415;-0.7081797;-0.06531976,0.01800129;0.3988935;0.02286586,0;0;0,0.01049737;0.1994219;0.01098711,0.02555203;0.4989626;0.01544025,0.1274234;0.3675578;-0.02786836,0.2014065;0.09881231;-0.001366239,0.2388626;-0.1733427;-0.05548351,-0.09480903;0.3660516;0.02064143,-0.3677114;0.3155214;-0.01638543,-0.6351821;0.3299785;-0.09793556,0.06513552;0.004878804;-0.04619049,0.09307868;-0.3687776;0.01705572,0.1012987;-0.7056698;0.1115866,0.104962;-0.7578664;0.05475098,-0.07689702;0.0008786296;-0.02204713,-0.09482668;-0.375829;0.02453542,-0.1026273;-0.7147024;0.1117361,-0.115114;-0.7027429;0.01417264,0.02047657;0.399097;0.01648992,23.52742
+0;0;0,0.009025386;0.1992467;0.01480798,0.02268765;0.4987335;0.02437371,0.1291844;0.3679196;-0.009159103,0.1925973;0.0960106;0.01191887,0.2399742;-0.1777817;-0.02262416,-0.09864672;0.3715726;0.01675379,-0.36483;0.3355657;-0.06230289,-0.6119882;0.3436427;-0.193633,0.06912264;0.004561583;-0.04001565,0.08348958;-0.3739895;-0.01013799,0.08174594;-0.7192749;0.04708975,0.07498935;-0.7066187;-0.05116268,-0.07158463;0.002951887;-0.0355939,-0.1024001;-0.375471;-0.01989374,-0.1225556;-0.7207954;0.03344343,-0.1268406;-0.7081326;-0.06494896,0.01800391;0.3988453;0.0237423,0;0;0,0.0109105;0.1994075;0.01084548,0.02693243;0.4988973;0.01531083,0.128507;0.3673434;-0.02747289,0.2016484;0.09841865;-0.000457583,0.2396142;-0.1733454;-0.05616122,-0.09395269;0.366194;0.02020536,-0.3664248;0.3164741;-0.02086653,-0.632273;0.3307555;-0.107589,0.0652775;0.004803482;-0.04599754,0.09354188;-0.3688857;0.01691147,0.1018812;-0.7057952;0.1113702,0.1054402;-0.7580662;0.0546356,-0.07677696;0.0009730467;-0.02245776,-0.09397584;-0.3757535;0.02424647,-0.1019575;-0.7147139;0.111092,-0.1141418;-0.70275;0.01348952,0.02139593;0.3990562;0.01636213,23.53877
+0;0;0,0.009025386;0.1992467;0.01480798,0.02268765;0.4987335;0.02437371,0.1291844;0.3679196;-0.009159103,0.1925973;0.0960106;0.01191887,0.2399742;-0.1777817;-0.02262416,-0.09864672;0.3715726;0.01675379,-0.36483;0.3355657;-0.06230289,-0.6119882;0.3436427;-0.193633,0.06912264;0.004561583;-0.04001565,0.08348958;-0.3739895;-0.01013799,0.08174594;-0.7192749;0.04708975,0.07498935;-0.7066187;-0.05116268,-0.07158463;0.002951887;-0.0355939,-0.1024001;-0.375471;-0.01989374,-0.1225556;-0.7207954;0.03344343,-0.1268406;-0.7081326;-0.06494896,0.01800391;0.3988453;0.0237423,0;0;0,0.0109105;0.1994075;0.01084548,0.02693243;0.4988973;0.01531083,0.128507;0.3673434;-0.02747289,0.2016484;0.09841865;-0.000457583,0.2396142;-0.1733454;-0.05616122,-0.09395269;0.366194;0.02020536,-0.3664248;0.3164741;-0.02086653,-0.632273;0.3307555;-0.107589,0.0652775;0.004803482;-0.04599754,0.09354188;-0.3688857;0.01691147,0.1018812;-0.7057952;0.1113702,0.1054402;-0.7580662;0.0546356,-0.07677696;0.0009730467;-0.02245776,-0.09397584;-0.3757535;0.02424647,-0.1019575;-0.7147139;0.111092,-0.1141418;-0.70275;0.01348952,0.02139593;0.3990562;0.01636213,23.56086
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.01114265;0.1993981;0.01078098,0.02760624;0.4988674;0.01499762,0.1293354;0.3669349;-0.02668512,0.2016222;0.09773287;-0.000135472,0.239635;-0.1736785;-0.05750174,-0.0934991;0.3663945;0.01937017,-0.3655344;0.3178698;-0.02582001,-0.6301641;0.3301325;-0.1164884,0.06545933;0.004729086;-0.04574617,0.09360538;-0.3690675;0.01657446,0.1022635;-0.7060331;0.110804,0.1052803;-0.7579505;0.0535288,-0.07660494;0.001140298;-0.02303002,-0.09391393;-0.375515;0.02420571,-0.1016505;-0.7145804;0.1106623,-0.1132816;-0.7026172;0.01299243,0.0219312;0.399035;0.01613919,23.5724
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.0114055;0.1993744;0.01094415,0.02850808;0.4988064;0.01518781,0.1297726;0.3671117;-0.02728644,0.2021301;0.09807205;0.0006789174,0.2397456;-0.173347;-0.0569126,-0.09293924;0.3667728;0.01892904,-0.3642495;0.3182763;-0.03045559,-0.6279712;0.3300181;-0.123799,0.06566545;0.004773864;-0.04544513,0.0935646;-0.3691634;0.01613891,0.1023031;-0.7062036;0.1100938,0.1057436;-0.7583959;0.05323791,-0.07644846;0.001217121;-0.02354041,-0.09384821;-0.375424;0.02377467,-0.101585;-0.7145831;0.1098633,-0.1131693;-0.7026063;0.01218534,0.02262734;0.3989862;0.01634724,23.59441
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.0114055;0.1993744;0.01094415,0.02850808;0.4988064;0.01518781,0.1297726;0.3671117;-0.02728644,0.2021301;0.09807205;0.0006789174,0.2397456;-0.173347;-0.0569126,-0.09293924;0.3667728;0.01892904,-0.3642495;0.3182763;-0.03045559,-0.6279712;0.3300181;-0.123799,0.06566545;0.004773864;-0.04544513,0.0935646;-0.3691634;0.01613891,0.1023031;-0.7062036;0.1100938,0.1057436;-0.7583959;0.05323791,-0.07644846;0.001217121;-0.02354041,-0.09384821;-0.375424;0.02377467,-0.101585;-0.7145831;0.1098633,-0.1131693;-0.7026063;0.01218534,0.02262734;0.3989862;0.01634724,23.60577
+0;0;0,0.008949515;0.1992441;0.01488911,0.02261911;0.4987282;0.0245121,0.1292428;0.3681084;-0.008746143,0.1926525;0.09617561;0.0120333,0.2402713;-0.1775702;-0.02254548,-0.09865969;0.3713579;0.01663038,-0.3618282;0.3346685;-0.07166574,-0.6072575;0.3410169;-0.2062918,0.06913912;0.004521556;-0.03999173,0.08392427;-0.3740119;-0.01009517,0.08215817;-0.7192622;0.04734211,0.07552613;-0.7066031;-0.05091934,-0.07157407;0.002991157;-0.03561188,-0.1020204;-0.3754483;-0.01959446,-0.1220255;-0.7207961;0.03364785,-0.126187;-0.7081295;-0.06475051,0.01792603;0.3988404;0.02387453,0;0;0,0.01167097;0.1993493;0.01112018,0.02944059;0.4987395;0.01551711,0.1306982;0.3667157;-0.02620663,0.2025062;0.09743014;0.0007914733,0.2394914;-0.174063;-0.05685899,-0.09232379;0.3670299;0.01872696,-0.3624672;0.3189597;-0.03705653,-0.6243664;0.3294993;-0.1355335,0.06582722;0.004691537;-0.04521909,0.09339476;-0.3693211;0.01605518,0.1021882;-0.7063991;0.1098694,0.1055192;-0.7584124;0.05274909,-0.07636096;0.001348512;-0.02381565,-0.09389828;-0.3752692;0.02363461,-0.1017286;-0.7144988;0.1094364,-0.1128485;-0.7024911;0.0116989,0.02333908;0.3989322;0.01664318,23.62784
+0;0;0,0.008968897;0.1992237;0.01514871,0.02259485;0.4987033;0.02497855,0.1292754;0.3680831;-0.008248663,0.1927045;0.09615019;0.01246983,0.2406588;-0.1774838;-0.02252793,-0.09844743;0.3708144;0.01572885,-0.3593503;0.3302569;-0.07746339,-0.5986934;0.3371424;-0.2226099,0.06922555;0.004543555;-0.03983941,0.08399646;-0.3739971;-0.01002621,0.08240544;-0.7192113;0.04763288,0.07618518;-0.7065443;-0.0506569,-0.07148305;0.002963221;-0.03579654,-0.1018457;-0.3754545;-0.01911763,-0.1217557;-0.7208066;0.03413163,-0.1255034;-0.7081304;-0.06428505,0.01792739;0.3988148;0.02426573,0;0;0,0.01167097;0.1993493;0.01112018,0.02944059;0.4987395;0.01551711,0.1306982;0.3667157;-0.02620663,0.2025062;0.09743014;0.0007914733,0.2394914;-0.174063;-0.05685899,-0.09232379;0.3670299;0.01872696,-0.3624672;0.3189597;-0.03705653,-0.6243664;0.3294993;-0.1355335,0.06582722;0.004691537;-0.04521909,0.09339476;-0.3693211;0.01605518,0.1021882;-0.7063991;0.1098694,0.1055192;-0.7584124;0.05274909,-0.07636096;0.001348512;-0.02381565,-0.09389828;-0.3752692;0.02363461,-0.1017286;-0.7144988;0.1094364,-0.1128485;-0.7024911;0.0116989,0.02333908;0.3989322;0.01664318,23.63984
+0;0;0,0.008968897;0.1992237;0.01514871,0.02259485;0.4987033;0.02497855,0.1292754;0.3680831;-0.008248663,0.1927045;0.09615019;0.01246983,0.2406588;-0.1774838;-0.02252793,-0.09844743;0.3708144;0.01572885,-0.3593503;0.3302569;-0.07746339,-0.5986934;0.3371424;-0.2226099,0.06922555;0.004543555;-0.03983941,0.08399646;-0.3739971;-0.01002621,0.08240544;-0.7192113;0.04763288,0.07618518;-0.7065443;-0.0506569,-0.07148305;0.002963221;-0.03579654,-0.1018457;-0.3754545;-0.01911763,-0.1217557;-0.7208066;0.03413163,-0.1255034;-0.7081304;-0.06428505,0.01792739;0.3988148;0.02426573,0;0;0,0.01184447;0.199331;0.01126266,0.02998067;0.4986975;0.0157626,0.1313611;0.3666413;-0.02535144,0.2029115;0.09723234;0.001094071,0.2391639;-0.1744975;-0.05590312,-0.09195893;0.3671709;0.01830772,-0.3613434;0.3186214;-0.04064094,-0.6211057;0.3281205;-0.1447242,0.06604658;0.004676334;-0.04489968,0.09362802;-0.3693988;0.01598591,0.102359;-0.7065718;0.1094639,0.1066127;-0.7589096;0.05287431,-0.07623728;0.001385485;-0.02420657,-0.09362036;-0.3752708;0.02299343,-0.1014065;-0.7144445;0.1090203,-0.1120945;-0.7024264;0.01123264,0.02376212;0.3988971;0.01686241,23.66133
+0;0;0,0.008968897;0.1992237;0.01514871,0.02259485;0.4987033;0.02497855,0.1292754;0.3680831;-0.008248663,0.1927045;0.09615019;0.01246983,0.2406588;-0.1774838;-0.02252793,-0.09844743;0.3708144;0.01572885,-0.3593503;0.3302569;-0.07746339,-0.5986934;0.3371424;-0.2226099,0.06922555;0.004543555;-0.03983941,0.08399646;-0.3739971;-0.01002621,0.08240544;-0.7192113;0.04763288,0.07618518;-0.7065443;-0.0506569,-0.07148305;0.002963221;-0.03579654,-0.1018457;-0.3754545;-0.01911763,-0.1217557;-0.7208066;0.03413163,-0.1255034;-0.7081304;-0.06428505,0.01792739;0.3988148;0.02426573,0;0;0,0.01184447;0.199331;0.01126266,0.02998067;0.4986975;0.0157626,0.1313611;0.3666413;-0.02535144,0.2029115;0.09723234;0.001094071,0.2391639;-0.1744975;-0.05590312,-0.09195893;0.3671709;0.01830772,-0.3613434;0.3186214;-0.04064094,-0.6211057;0.3281205;-0.1447242,0.06604658;0.004676334;-0.04489968,0.09362802;-0.3693988;0.01598591,0.102359;-0.7065718;0.1094639,0.1066127;-0.7589096;0.05287431,-0.07623728;0.001385485;-0.02420657,-0.09362036;-0.3752708;0.02299343,-0.1014065;-0.7144445;0.1090203,-0.1120945;-0.7024264;0.01123264,0.02376212;0.3988971;0.01686241,23.6729
+0;0;0,0.00884441;0.1992066;0.01544376,0.02216038;0.4986817;0.02583763,0.1290732;0.368305;-0.007403616,0.1931046;0.09650162;0.01316117,0.2410519;-0.1770459;-0.02251584,-0.09866249;0.3705648;0.01565779,-0.3568109;0.3312112;-0.08539014,-0.5928284;0.3351103;-0.2359907,0.06926436;0.004489203;-0.03977807,0.08430566;-0.3740386;-0.009938097,0.08294734;-0.7192001;0.04804199,0.07695902;-0.7065134;-0.05026565,-0.07149493;0.003011992;-0.03576873,-0.1016761;-0.3753847;-0.01830344,-0.1208335;-0.7207862;0.03490185,-0.1243524;-0.7080831;-0.063528,0.01760241;0.3987898;0.02492172,0;0;0,0.01184447;0.199331;0.01126266,0.02998067;0.4986975;0.0157626,0.1313611;0.3666413;-0.02535144,0.2029115;0.09723234;0.001094071,0.2391639;-0.1744975;-0.05590312,-0.09195893;0.3671709;0.01830772,-0.3613434;0.3186214;-0.04064094,-0.6211057;0.3281205;-0.1447242,0.06604658;0.004676334;-0.04489968,0.09362802;-0.3693988;0.01598591,0.102359;-0.7065718;0.1094639,0.1066127;-0.7589096;0.05287431,-0.07623728;0.001385485;-0.02420657,-0.09362036;-0.3752708;0.02299343,-0.1014065;-0.7144445;0.1090203,-0.1120945;-0.7024264;0.01123264,0.02376212;0.3988971;0.01686241,23.68478
+0;0;0,0.00884441;0.1992066;0.01544376,0.02216038;0.4986817;0.02583763,0.1290732;0.368305;-0.007403616,0.1931046;0.09650162;0.01316117,0.2410519;-0.1770459;-0.02251584,-0.09866249;0.3705648;0.01565779,-0.3568109;0.3312112;-0.08539014,-0.5928284;0.3351103;-0.2359907,0.06926436;0.004489203;-0.03977807,0.08430566;-0.3740386;-0.009938097,0.08294734;-0.7192001;0.04804199,0.07695902;-0.7065134;-0.05026565,-0.07149493;0.003011992;-0.03576873,-0.1016761;-0.3753847;-0.01830344,-0.1208335;-0.7207862;0.03490185,-0.1243524;-0.7080831;-0.063528,0.01760241;0.3987898;0.02492172,0;0;0,0.01194109;0.1993164;0.01141801,0.03016798;0.4986766;0.01592889,0.1319621;0.3668146;-0.0242413,0.2032426;0.09728876;0.001737548,0.2392674;-0.1743524;-0.05582378,-0.09180485;0.3672303;0.01779787,-0.359713;0.3169562;-0.04621567,-0.6183808;0.3261789;-0.1530141,0.06649722;0.004604348;-0.04423708,0.09326684;-0.3697223;0.01545344,0.1018058;-0.7069374;0.1087971,0.1065211;-0.7587339;0.05146372,-0.07603288;0.001507519;-0.02483401,-0.09372495;-0.3750277;0.0232101,-0.1012625;-0.7143298;0.1087509,-0.1114074;-0.7023056;0.01090433,0.02394459;0.3988767;0.01704119,23.70644
+0;0;0,0.00884441;0.1992066;0.01544376,0.02216038;0.4986817;0.02583763,0.1290732;0.368305;-0.007403616,0.1931046;0.09650162;0.01316117,0.2410519;-0.1770459;-0.02251584,-0.09866249;0.3705648;0.01565779,-0.3568109;0.3312112;-0.08539014,-0.5928284;0.3351103;-0.2359907,0.06926436;0.004489203;-0.03977807,0.08430566;-0.3740386;-0.009938097,0.08294734;-0.7192001;0.04804199,0.07695902;-0.7065134;-0.05026565,-0.07149493;0.003011992;-0.03576873,-0.1016761;-0.3753847;-0.01830344,-0.1208335;-0.7207862;0.03490185,-0.1243524;-0.7080831;-0.063528,0.01760241;0.3987898;0.02492172,0;0;0,0.01196229;0.1993094;0.01151857,0.03018984;0.4986691;0.01604003,0.132358;0.3665871;-0.02299427,0.202853;0.09683272;0.002754657,0.239249;-0.1748194;-0.05452054,-0.0917846;0.3672702;0.017427,-0.3585128;0.3163267;-0.05084338,-0.6144325;0.3250925;-0.1641052,0.06649744;0.004665173;-0.04423038,0.09293251;-0.3697188;0.01524954,0.1014424;-0.7070105;0.1083187,0.105795;-0.758688;0.0507874,-0.07596847;0.001446753;-0.02503392,-0.09382905;-0.3751238;0.0226695,-0.1014069;-0.7144215;0.1082242,-0.1110476;-0.702394;0.01032607,0.02398018;0.3988683;0.01715759,23.72836
+0;0;0,0.008814481;0.1991787;0.01581634,0.02190014;0.4986467;0.02671753,0.1290256;0.3682558;-0.006290764,0.1932021;0.09641927;0.01336356,0.2415819;-0.1770136;-0.02260631,-0.09868564;0.3702148;0.01554532,-0.3537786;0.3319015;-0.09335675,-0.5846322;0.3289033;-0.2517791,0.06940819;0.004451421;-0.03953084,0.08458332;-0.3740621;-0.009576781,0.08348087;-0.71927;0.04813139,0.07783444;-0.70655;-0.05020233,-0.07143277;0.003049595;-0.03588954,-0.1009992;-0.375356;-0.0175861,-0.1200122;-0.7207638;0.03563031,-0.1231869;-0.7080436;-0.06281426,0.01743616;0.3987525;0.02561137,0;0;0,0.01196229;0.1993094;0.01151857,0.03018984;0.4986691;0.01604003,0.132358;0.3665871;-0.02299427,0.202853;0.09683272;0.002754657,0.239249;-0.1748194;-0.05452054,-0.0917846;0.3672702;0.017427,-0.3585128;0.3163267;-0.05084338,-0.6144325;0.3250925;-0.1641052,0.06649744;0.004665173;-0.04423038,0.09293251;-0.3697188;0.01524954,0.1014424;-0.7070105;0.1083187,0.105795;-0.758688;0.0507874,-0.07596847;0.001446753;-0.02503392,-0.09382905;-0.3751238;0.0226695,-0.1014069;-0.7144215;0.1082242,-0.1110476;-0.702394;0.01032607,0.02398018;0.3988683;0.01715759,23.75084
+0;0;0,0.008814481;0.1991787;0.01581634,0.02190014;0.4986467;0.02671753,0.1290256;0.3682558;-0.006290764,0.1932021;0.09641927;0.01336356,0.2415819;-0.1770136;-0.02260631,-0.09868564;0.3702148;0.01554532,-0.3537786;0.3319015;-0.09335675,-0.5846322;0.3289033;-0.2517791,0.06940819;0.004451421;-0.03953084,0.08458332;-0.3740621;-0.009576781,0.08348087;-0.71927;0.04813139,0.07783444;-0.70655;-0.05020233,-0.07143277;0.003049595;-0.03588954,-0.1009992;-0.375356;-0.0175861,-0.1200122;-0.7207638;0.03563031,-0.1231869;-0.7080436;-0.06281426,0.01743616;0.3987525;0.02561137,0;0;0,0.0119029;0.1993029;0.01169128,0.03003281;0.4986658;0.01639549,0.131988;0.3667511;-0.02352528,0.202869;0.09730509;0.00430892,0.2394106;-0.1748541;-0.05040944,-0.09187067;0.3671682;0.01704086,-0.3574362;0.3157868;-0.0553119,-0.6108962;0.3235272;-0.1740474,0.06669226;0.004640442;-0.04393869,0.09306172;-0.3697951;0.0152449,0.1016915;-0.7072248;0.1078011,0.1061204;-0.7588905;0.05025881,-0.07582041;0.00150827;-0.02547529,-0.09358044;-0.3750492;0.02236857,-0.1012217;-0.714418;0.1076355,-0.1108869;-0.7023804;0.009737931,0.02386766;0.3988616;0.01744909,23.76219
+0;0;0,0.008814481;0.1991787;0.01581634,0.02190014;0.4986467;0.02671753,0.1290256;0.3682558;-0.006290764,0.1932021;0.09641927;0.01336356,0.2415819;-0.1770136;-0.02260631,-0.09868564;0.3702148;0.01554532,-0.3537786;0.3319015;-0.09335675,-0.5846322;0.3289033;-0.2517791,0.06940819;0.004451421;-0.03953084,0.08458332;-0.3740621;-0.009576781,0.08348087;-0.71927;0.04813139,0.07783444;-0.70655;-0.05020233,-0.07143277;0.003049595;-0.03588954,-0.1009992;-0.375356;-0.0175861,-0.1200122;-0.7207638;0.03563031,-0.1231869;-0.7080436;-0.06281426,0.01743616;0.3987525;0.02561137,0;0;0,0.0119029;0.1993029;0.01169128,0.03003281;0.4986658;0.01639549,0.131988;0.3667511;-0.02352528,0.202869;0.09730509;0.00430892,0.2394106;-0.1748541;-0.05040944,-0.09187067;0.3671682;0.01704086,-0.3574362;0.3157868;-0.0553119,-0.6108962;0.3235272;-0.1740474,0.06669226;0.004640442;-0.04393869,0.09306172;-0.3697951;0.0152449,0.1016915;-0.7072248;0.1078011,0.1061204;-0.7588905;0.05025881,-0.07582041;0.00150827;-0.02547529,-0.09358044;-0.3750492;0.02236857,-0.1012217;-0.714418;0.1076355,-0.1108869;-0.7023804;0.009737931,0.02386766;0.3988616;0.01744909,23.77343
+0;0;0,0.008837971;0.1991528;0.01612674,0.02191129;0.4986082;0.02738488,0.12917;0.3683781;-0.005460795,0.1933853;0.09650686;0.01357682,0.2420457;-0.1768261;-0.02277203,-0.09846433;0.3698696;0.01474128,-0.3501766;0.3314779;-0.1017362,-0.5768598;0.3256874;-0.2659957,0.06949451;0.004477662;-0.03937593,0.08465218;-0.3740593;-0.009710431,0.0839133;-0.7191696;0.04858467,0.07875064;-0.7064375;-0.04977776,-0.07140191;0.003012182;-0.03595406,-0.1006879;-0.3753871;-0.0170779,-0.1193024;-0.7208017;0.03623461,-0.1219935;-0.7080728;-0.0622259,0.01745633;0.398715;0.02615776,0;0;0,0.0119029;0.1993029;0.01169128,0.03003281;0.4986658;0.01639549,0.131988;0.3667511;-0.02352528,0.202869;0.09730509;0.00430892,0.2394106;-0.1748541;-0.05040944,-0.09187067;0.3671682;0.01704086,-0.3574362;0.3157868;-0.0553119,-0.6108962;0.3235272;-0.1740474,0.06669226;0.004640442;-0.04393869,0.09306172;-0.3697951;0.0152449,0.1016915;-0.7072248;0.1078011,0.1061204;-0.7588905;0.05025881,-0.07582041;0.00150827;-0.02547529,-0.09358044;-0.3750492;0.02236857,-0.1012217;-0.714418;0.1076355,-0.1108869;-0.7023804;0.009737931,0.02386766;0.3988616;0.01744909,23.78481
+0;0;0,0.008837971;0.1991528;0.01612674,0.02191129;0.4986082;0.02738488,0.12917;0.3683781;-0.005460795,0.1933853;0.09650686;0.01357682,0.2420457;-0.1768261;-0.02277203,-0.09846433;0.3698696;0.01474128,-0.3501766;0.3314779;-0.1017362,-0.5768598;0.3256874;-0.2659957,0.06949451;0.004477662;-0.03937593,0.08465218;-0.3740593;-0.009710431,0.0839133;-0.7191696;0.04858467,0.07875064;-0.7064375;-0.04977776,-0.07140191;0.003012182;-0.03595406,-0.1006879;-0.3753871;-0.0170779,-0.1193024;-0.7208017;0.03623461,-0.1219935;-0.7080728;-0.0622259,0.01745633;0.398715;0.02615776,0;0;0,0.01173577;0.1993031;0.01185544,0.02956375;0.4986808;0.01678487,0.1321654;0.3669576;-0.02195379,0.2027629;0.09740123;0.005530076,0.2398722;-0.1746774;-0.04920685,-0.09222291;0.3672065;0.01634605,-0.3543659;0.3100672;-0.06375505,-0.6073441;0.3195257;-0.1833901,0.06704726;0.004647468;-0.04339429,0.09280544;-0.3699901;0.01477139,0.1015882;-0.7075295;0.1069125,0.1065122;-0.7593052;0.04956714,-0.07561743;0.001524117;-0.02607069,-0.09352118;-0.3750296;0.02174929,-0.1011853;-0.7144432;0.1068353,-0.1101466;-0.7023945;0.008868769,0.0235161;0.3988686;0.01775798,23.8068
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.01173577;0.1993031;0.01185544,0.02956375;0.4986808;0.01678487,0.1321654;0.3669576;-0.02195379,0.2027629;0.09740123;0.005530076,0.2398722;-0.1746774;-0.04920685,-0.09222291;0.3672065;0.01634605,-0.3543659;0.3100672;-0.06375505,-0.6073441;0.3195257;-0.1833901,0.06704726;0.004647468;-0.04339429,0.09280544;-0.3699901;0.01477139,0.1015882;-0.7075295;0.1069125,0.1065122;-0.7593052;0.04956714,-0.07561743;0.001524117;-0.02607069,-0.09352118;-0.3750296;0.02174929,-0.1011853;-0.7144432;0.1068353,-0.1101466;-0.7023945;0.008868769,0.0235161;0.3988686;0.01775798,23.81798
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.01179256;0.1992882;0.01204813,0.02973301;0.4986545;0.01725001,0.1319667;0.3671299;-0.02263724,0.2030679;0.09808356;0.008324942,0.2404324;-0.1739464;-0.04648013,-0.09210055;0.3673079;0.01552059,-0.35315;0.3078134;-0.06641605,-0.6028842;0.3166677;-0.1927267,0.06728595;0.00473123;-0.04301415,0.09285333;-0.3699917;0.01468318,0.1015369;-0.7076004;0.1065798,0.1063568;-0.7596167;0.04957024,-0.07550217;0.001521565;-0.02640277,-0.09379064;-0.3746859;0.02393077,-0.1012134;-0.7143911;0.1078668,-0.1100736;-0.7023212;0.009887166,0.02365213;0.3988435;0.01813296,23.82897
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.01179256;0.1992882;0.01204813,0.02973301;0.4986545;0.01725001,0.1319667;0.3671299;-0.02263724,0.2030679;0.09808356;0.008324942,0.2404324;-0.1739464;-0.04648013,-0.09210055;0.3673079;0.01552059,-0.35315;0.3078134;-0.06641605,-0.6028842;0.3166677;-0.1927267,0.06728595;0.00473123;-0.04301415,0.09285333;-0.3699917;0.01468318,0.1015369;-0.7076004;0.1065798,0.1063568;-0.7596167;0.04957024,-0.07550217;0.001521565;-0.02640277,-0.09379064;-0.3746859;0.02393077,-0.1012134;-0.7143911;0.1078668,-0.1100736;-0.7023212;0.009887166,0.02365213;0.3988435;0.01813296,23.84053
+0;0;0,0.008673065;0.1991507;0.01624135,0.02123678;0.4986154;0.02784648,0.1282985;0.3686261;-0.006685985,0.1919367;0.09680688;0.01486609,0.2406246;-0.1765142;-0.02153546,-0.09881931;0.3696885;0.01422699,-0.3477032;0.330303;-0.1078615,-0.5714862;0.3226882;-0.275978,0.06955304;0.004497035;-0.03927023,0.08457677;-0.3740586;-0.009775966,0.08396182;-0.7191264;0.04877144,0.07855122;-0.7063828;-0.04957969,-0.07130877;0.002984958;-0.03614071,-0.1009367;-0.3753491;-0.01650591,-0.1192138;-0.7208524;0.03634684,-0.1221535;-0.7081039;-0.06210998,0.01696968;0.3987157;0.02648791,0;0;0,0.01179256;0.1992882;0.01204813,0.02973301;0.4986545;0.01725001,0.1319667;0.3671299;-0.02263724,0.2030679;0.09808356;0.008324942,0.2404324;-0.1739464;-0.04648013,-0.09210055;0.3673079;0.01552059,-0.35315;0.3078134;-0.06641605,-0.6028842;0.3166677;-0.1927267,0.06728595;0.00473123;-0.04301415,0.09285333;-0.3699917;0.01468318,0.1015369;-0.7076004;0.1065798,0.1063568;-0.7596167;0.04957024,-0.07550217;0.001521565;-0.02640277,-0.09379064;-0.3746859;0.02393077,-0.1012134;-0.7143911;0.1078668,-0.1100736;-0.7023212;0.009887166,0.02365213;0.3988435;0.01813296,23.8518
+0;0;0,0.008523692;0.1991406;0.01644346,0.02077912;0.4985937;0.02866927,0.1282087;0.3683974;-0.004973046,0.1925485;0.09658474;0.01447527,0.2412451;-0.1766341;-0.02267466,-0.09905575;0.3696392;0.01379165,-0.3445819;0.3285261;-0.1143748,-0.5649258;0.3193228;-0.2868968,0.06958961;0.004512099;-0.03920365,0.08435691;-0.3740601;-0.009792963,0.08390636;-0.7191446;0.04865737,0.0791655;-0.7063802;-0.04973195,-0.0712678;0.002932897;-0.03622567,-0.1023663;-0.375274;-0.0164163,-0.119041;-0.720816;0.03671267,-0.1213129;-0.7080525;-0.06176446,0.01661161;0.398693;0.02709365,0;0;0,0.01169893;0.1992843;0.01220269,0.02947789;0.4986569;0.01759623,0.1326903;0.3670744;-0.01978841,0.2035299;0.09772009;0.009021098,0.2415899;-0.174446;-0.0446169,-0.09221534;0.3671545;0.01452242,-0.3479909;0.3073623;-0.08245056,-0.6002055;0.3131746;-0.2039165,0.06761999;0.004766678;-0.04248312,0.09232402;-0.3701469;0.01434547,0.1011037;-0.7078502;0.1058846,0.105718;-0.759796;0.04875662,-0.07533132;0.001527625;-0.02688604,-0.09374885;-0.3746569;0.02357228,-0.1010304;-0.7143565;0.1075428,-0.108707;-0.702278;0.00946179,0.02345996;0.3988415;0.01841624,23.87399
+0;0;0,0.008523692;0.1991406;0.01644346,0.02077912;0.4985937;0.02866927,0.1282087;0.3683974;-0.004973046,0.1925485;0.09658474;0.01447527,0.2412451;-0.1766341;-0.02267466,-0.09905575;0.3696392;0.01379165,-0.3445819;0.3285261;-0.1143748,-0.5649258;0.3193228;-0.2868968,0.06958961;0.004512099;-0.03920365,0.08435691;-0.3740601;-0.009792963,0.08390636;-0.7191446;0.04865737,0.0791655;-0.7063802;-0.04973195,-0.0712678;0.002932897;-0.03622567,-0.1023663;-0.375274;-0.0164163,-0.119041;-0.720816;0.03671267,-0.1213129;-0.7080525;-0.06176446,0.01661161;0.398693;0.02709365,0;0;0,0.01169893;0.1992843;0.01220269,0.02947789;0.4986569;0.01759623,0.1326903;0.3670744;-0.01978841,0.2035299;0.09772009;0.009021098,0.2415899;-0.174446;-0.0446169,-0.09221534;0.3671545;0.01452242,-0.3479909;0.3073623;-0.08245056,-0.6002055;0.3131746;-0.2039165,0.06761999;0.004766678;-0.04248312,0.09232402;-0.3701469;0.01434547,0.1011037;-0.7078502;0.1058846,0.105718;-0.759796;0.04875662,-0.07533132;0.001527625;-0.02688604,-0.09374885;-0.3746569;0.02357228,-0.1010304;-0.7143565;0.1075428,-0.108707;-0.702278;0.00946179,0.02345996;0.3988415;0.01841624,23.88549
+0;0;0,0.008523692;0.1991406;0.01644346,0.02077912;0.4985937;0.02866927,0.1282087;0.3683974;-0.004973046,0.1925485;0.09658474;0.01447527,0.2412451;-0.1766341;-0.02267466,-0.09905575;0.3696392;0.01379165,-0.3445819;0.3285261;-0.1143748,-0.5649258;0.3193228;-0.2868968,0.06958961;0.004512099;-0.03920365,0.08435691;-0.3740601;-0.009792963,0.08390636;-0.7191446;0.04865737,0.0791655;-0.7063802;-0.04973195,-0.0712678;0.002932897;-0.03622567,-0.1023663;-0.375274;-0.0164163,-0.119041;-0.720816;0.03671267,-0.1213129;-0.7080525;-0.06176446,0.01661161;0.398693;0.02709365,0;0;0,0.0115011;0.1992908;0.01228482,0.02893735;0.4986805;0.01786637,0.1326787;0.3673449;-0.01865206,0.2040651;0.09821528;0.01089869,0.2419694;-0.174066;-0.04226309,-0.09254947;0.3669909;0.01400227,-0.3477668;0.3055175;-0.08338951,-0.594664;0.3092871;-0.215403,0.06805328;0.004943366;-0.04176497,0.0921301;-0.3702082;0.0137471,0.1009364;-0.7079422;0.1051703,0.1055936;-0.759997;0.04820253,-0.07516576;0.001453507;-0.02734953,-0.09350318;-0.3745616;0.02438413,-0.1009087;-0.7144495;0.1075787,-0.1080773;-0.7023652;0.009458169,0.02305033;0.3988568;0.01861207,23.90724
+0;0;0,0.008411995;0.1991321;0.0166025,0.02036962;0.4985753;0.02937889,0.1278689;0.3678838;-0.004132805,0.1929587;0.09618902;0.0144478,0.2418277;-0.1769262;-0.02323354,-0.09919359;0.3693616;0.01345542,-0.3406046;0.3267117;-0.1218284,-0.557075;0.3166867;-0.2991418,0.06964614;0.004496621;-0.03910493,0.08417851;-0.3740791;-0.009623155,0.08376304;-0.7191333;0.04900697,0.07940192;-0.7063613;-0.04940125,-0.07122715;0.002912838;-0.03630713,-0.1026518;-0.3752487;-0.01615056,-0.1190463;-0.7208163;0.03689961,-0.1209383;-0.7080406;-0.06158767,0.01630947;0.3986737;0.02759216,0;0;0,0.0115011;0.1992908;0.01228482,0.02893735;0.4986805;0.01786637,0.1326787;0.3673449;-0.01865206,0.2040651;0.09821528;0.01089869,0.2419694;-0.174066;-0.04226309,-0.09254947;0.3669909;0.01400227,-0.3477668;0.3055175;-0.08338951,-0.594664;0.3092871;-0.215403,0.06805328;0.004943366;-0.04176497,0.0921301;-0.3702082;0.0137471,0.1009364;-0.7079422;0.1051703,0.1055936;-0.759997;0.04820253,-0.07516576;0.001453507;-0.02734953,-0.09350318;-0.3745616;0.02438413,-0.1009087;-0.7144495;0.1075787,-0.1080773;-0.7023652;0.009458169,0.02305033;0.3988568;0.01861207,23.91876
+0;0;0,0.008411995;0.1991321;0.0166025,0.02036962;0.4985753;0.02937889,0.1278689;0.3678838;-0.004132805,0.1929587;0.09618902;0.0144478,0.2418277;-0.1769262;-0.02323354,-0.09919359;0.3693616;0.01345542,-0.3406046;0.3267117;-0.1218284,-0.557075;0.3166867;-0.2991418,0.06964614;0.004496621;-0.03910493,0.08417851;-0.3740791;-0.009623155,0.08376304;-0.7191333;0.04900697,0.07940192;-0.7063613;-0.04940125,-0.07122715;0.002912838;-0.03630713,-0.1026518;-0.3752487;-0.01615056,-0.1190463;-0.7208163;0.03689961,-0.1209383;-0.7080406;-0.06158767,0.01630947;0.3986737;0.02759216,0;0;0,0.01096653;0.199323;0.0122511,0.0276602;0.4987525;0.01803544,0.1321688;0.3675842;-0.01728129,0.2038021;0.09858498;0.01285361,0.2420131;-0.1739698;-0.03866171,-0.09344168;0.3668554;0.01292522,-0.3471567;0.3033344;-0.08704368,-0.5909671;0.3072043;-0.2246719,0.06860182;0.005040317;-0.04084586,0.09147094;-0.3704531;0.01283523,0.1002521;-0.7082691;0.1039576,0.09124261;-0.6961365;0.005980156,-0.07487959;0.00139047;-0.02812676,-0.09336887;-0.3746592;0.02330087,-0.1012093;-0.714569;0.106366,-0.1076555;-0.7024877;0.008195952,0.022054;0.3989119;0.01868119,23.9408
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.01064996;0.1993531;0.01203735,0.02701229;0.4988061;0.01757629,0.1322091;0.368083;-0.01625058,0.2038678;0.09909365;0.01391122,0.242697;-0.1739685;-0.03435223,-0.09388955;0.3666872;0.01191838,-0.3423585;0.3008844;-0.09913657,-0.5869576;0.3041593;-0.2353736,0.06908164;0.005118638;-0.04001906,0.09142726;-0.3706326;0.01205457,0.1002015;-0.7085069;0.1029609,0.09178039;-0.696398;0.004935421,-0.07458434;0.001268052;-0.02890621,-0.09264238;-0.374673;0.02346011,-0.1010175;-0.7147136;0.105936,-0.1068734;-0.7026481;0.007731788,0.0215135;0.39896;0.01829065,23.96343
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.01064996;0.1993531;0.01203735,0.02701229;0.4988061;0.01757629,0.1322091;0.368083;-0.01625058,0.2038678;0.09909365;0.01391122,0.242697;-0.1739685;-0.03435223,-0.09388955;0.3666872;0.01191838,-0.3423585;0.3008844;-0.09913657,-0.5869576;0.3041593;-0.2353736,0.06908164;0.005118638;-0.04001906,0.09142726;-0.3706326;0.01205457,0.1002015;-0.7085069;0.1029609,0.09178039;-0.696398;0.004935421,-0.07458434;0.001268052;-0.02890621,-0.09264238;-0.374673;0.02346011,-0.1010175;-0.7147136;0.105936,-0.1068734;-0.7026481;0.007731788,0.0215135;0.39896;0.01829065,23.97439
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.01064996;0.1993531;0.01203735,0.02701229;0.4988061;0.01757629,0.1322091;0.368083;-0.01625058,0.2038678;0.09909365;0.01391122,0.242697;-0.1739685;-0.03435223,-0.09388955;0.3666872;0.01191838,-0.3423585;0.3008844;-0.09913657,-0.5869576;0.3041593;-0.2353736,0.06908164;0.005118638;-0.04001906,0.09142726;-0.3706326;0.01205457,0.1002015;-0.7085069;0.1029609,0.09178039;-0.696398;0.004935421,-0.07458434;0.001268052;-0.02890621,-0.09264238;-0.374673;0.02346011,-0.1010175;-0.7147136;0.105936,-0.1068734;-0.7026481;0.007731788,0.0215135;0.39896;0.01829065,23.98562
+0;0;0,0.008399769;0.1991132;0.01683345,0.02039204;0.4985389;0.02998162,0.1279269;0.3679319;-0.003511108,0.1924955;0.09610394;0.01494004,0.2421043;-0.176796;-0.02333027,-0.09905817;0.369265;0.01295639,-0.3367494;0.3199838;-0.1265936,-0.5498998;0.311408;-0.3079589,0.06978647;0.00446562;-0.03885752,0.08430481;-0.3741197;-0.009491092,0.08355054;-0.7190812;0.04967856,0.07952496;-0.706287;-0.04874784,-0.0710526;0.002963956;-0.03664345,-0.1019435;-0.3751885;-0.01551324,-0.1182267;-0.7207576;0.03756024,-0.1197905;-0.707966;-0.06093558,0.01630474;0.3986407;0.02807152,0;0;0,0.01041778;0.199361;0.01211023,0.02637722;0.4988331;0.0177954,0.1320691;0.3681707;-0.01501545,0.2035663;0.099253;0.0161516,0.2427304;-0.17374;-0.03223231,-0.09430362;0.3665816;0.01143414,-0.3404688;0.2996811;-0.1040087,-0.5811784;0.3024192;-0.247017,0.06946309;0.00501804;-0.0393662,0.09144551;-0.3708006;0.0123744,0.0999221;-0.7088522;0.1026478,0.1052923;-0.760474;0.04512347,-0.0744068;0.001298582;-0.02935883,-0.09235878;-0.3746386;0.02307206,-0.1010655;-0.714708;0.1053945,-0.1064133;-0.702639;0.007160693,0.02102677;0.3989785;0.01845823,24.00789
+0;0;0,0.008324474;0.1990914;0.01712699,0.02044935;0.4984923;0.03069105,0.1282748;0.3685888;-0.002317216,0.1929369;0.09668931;0.01469739,0.2429166;-0.176131;-0.02365745,-0.0988839;0.3690458;0.01252273,-0.3331612;0.3161512;-0.131409,-0.5396619;0.3052497;-0.3201908,0.06986541;0.004418123;-0.03872084,0.0849077;-0.3741648;-0.009588441,0.08429945;-0.7191525;0.04942977,0.09523705;-0.7661968;-0.01337574,-0.07097844;0.00301421;-0.03678281,-0.1014452;-0.3751506;-0.01526169,-0.1176184;-0.7207685;0.03752786,-0.1187155;-0.7079601;-0.06097719,0.01629455;0.3985992;0.02866325,0;0;0,0.01041778;0.199361;0.01211023,0.02637722;0.4988331;0.0177954,0.1320691;0.3681707;-0.01501545,0.2035663;0.099253;0.0161516,0.2427304;-0.17374;-0.03223231,-0.09430362;0.3665816;0.01143414,-0.3404688;0.2996811;-0.1040087,-0.5811784;0.3024192;-0.247017,0.06946309;0.00501804;-0.0393662,0.09144551;-0.3708006;0.0123744,0.0999221;-0.7088522;0.1026478,0.1052923;-0.760474;0.04512347,-0.0744068;0.001298582;-0.02935883,-0.09235878;-0.3746386;0.02307206,-0.1010655;-0.714708;0.1053945,-0.1064133;-0.702639;0.007160693,0.02102677;0.3989785;0.01845823,24.01923
+0;0;0,0.008324474;0.1990914;0.01712699,0.02044935;0.4984923;0.03069105,0.1282748;0.3685888;-0.002317216,0.1929369;0.09668931;0.01469739,0.2429166;-0.176131;-0.02365745,-0.0988839;0.3690458;0.01252273,-0.3331612;0.3161512;-0.131409,-0.5396619;0.3052497;-0.3201908,0.06986541;0.004418123;-0.03872084,0.0849077;-0.3741648;-0.009588441,0.08429945;-0.7191525;0.04942977,0.09523705;-0.7661968;-0.01337574,-0.07097844;0.00301421;-0.03678281,-0.1014452;-0.3751506;-0.01526169,-0.1176184;-0.7207685;0.03752786,-0.1187155;-0.7079601;-0.06097719,0.01629455;0.3985992;0.02866325,0;0;0,0.009895265;0.1993836;0.0121772,0.02515259;0.4988875;0.01815328,0.1302073;0.3686392;-0.01798573,0.204066;0.1012578;0.02012094,0.2424853;-0.1718209;-0.0283761,-0.0952002;0.3665684;0.01086284,-0.3380348;0.2990953;-0.1111156,-0.5766706;0.3006875;-0.2575753,0.06973177;0.005019307;-0.03888812,0.09084282;-0.3709749;0.01193161,0.09903351;-0.7090809;0.1020273,0.1041526;-0.7603475;0.04397963,-0.07415566;0.001279118;-0.02998836,-0.0923464;-0.374684;0.02217344,-0.1015933;-0.714676;0.104756,-0.1075813;-0.7025999;0.006557845,0.02006325;0.3990186;0.01869367,24.04155
+0;0;0,0.008324474;0.1990914;0.01712699,0.02044935;0.4984923;0.03069105,0.1282748;0.3685888;-0.002317216,0.1929369;0.09668931;0.01469739,0.2429166;-0.176131;-0.02365745,-0.0988839;0.3690458;0.01252273,-0.3331612;0.3161512;-0.131409,-0.5396619;0.3052497;-0.3201908,0.06986541;0.004418123;-0.03872084,0.0849077;-0.3741648;-0.009588441,0.08429945;-0.7191525;0.04942977,0.09523705;-0.7661968;-0.01337574,-0.07097844;0.00301421;-0.03678281,-0.1014452;-0.3751506;-0.01526169,-0.1176184;-0.7207685;0.03752786,-0.1187155;-0.7079601;-0.06097719,0.01629455;0.3985992;0.02866325,0;0;0,0.009895265;0.1993836;0.0121772,0.02515259;0.4988875;0.01815328,0.1302073;0.3686392;-0.01798573,0.204066;0.1012578;0.02012094,0.2424853;-0.1718209;-0.0283761,-0.0952002;0.3665684;0.01086284,-0.3380348;0.2990953;-0.1111156,-0.5766706;0.3006875;-0.2575753,0.06973177;0.005019307;-0.03888812,0.09084282;-0.3709749;0.01193161,0.09903351;-0.7090809;0.1020273,0.1041526;-0.7603475;0.04397963,-0.07415566;0.001279118;-0.02998836,-0.0923464;-0.374684;0.02217344,-0.1015933;-0.714676;0.104756,-0.1075813;-0.7025999;0.006557845,0.02006325;0.3990186;0.01869367,24.05276
+0;0;0,0.008338833;0.1990665;0.01740703,0.02060412;0.4984332;0.03159777,0.1284764;0.3685631;-0.001238132,0.1932236;0.09661639;0.01466149,0.2431759;-0.1761773;-0.02391769,-0.09848702;0.3684997;0.01194824,-0.3293165;0.3114751;-0.1359232,-0.5320305;0.301327;-0.3288067,0.06997531;0.00433738;-0.03853107,0.08463211;-0.3742291;-0.008990765,0.08405611;-0.7192655;0.04974228,0.0809923;-0.7064541;-0.04872176,-0.07088203;0.003049572;-0.03696536,-0.101816;-0.3750794;-0.01548042,-0.1173444;-0.7207028;0.03746607,-0.1179505;-0.7078789;-0.06104594,0.01638008;0.3985478;0.02934523,0;0;0,0.00917861;0.1994146;0.01222947,0.02315572;0.4989724;0.0186762,0.1293622;0.3691539;-0.01605198,0.2040604;0.1017858;0.02047839,0.2429255;-0.1716452;-0.02561899,-0.09651881;0.366361;0.009917823,-0.3366767;0.2990519;-0.1173366,-0.5727026;0.2990166;-0.2679744,0.07007948;0.005126602;-0.03824376,0.09073547;-0.3708749;0.01270942,0.09820943;-0.7093922;0.1013106,0.1025904;-0.761122;0.04385576,-0.07385702;0.001199424;-0.03071973,-0.09242814;-0.3746269;0.02228689,-0.1021498;-0.7147478;0.1042823,-0.1072941;-0.7026652;0.006035104,0.01857493;0.399078;0.01902984,24.07496
+0;0;0,0.008338833;0.1990665;0.01740703,0.02060412;0.4984332;0.03159777,0.1284764;0.3685631;-0.001238132,0.1932236;0.09661639;0.01466149,0.2431759;-0.1761773;-0.02391769,-0.09848702;0.3684997;0.01194824,-0.3293165;0.3114751;-0.1359232,-0.5320305;0.301327;-0.3288067,0.06997531;0.00433738;-0.03853107,0.08463211;-0.3742291;-0.008990765,0.08405611;-0.7192655;0.04974228,0.0809923;-0.7064541;-0.04872176,-0.07088203;0.003049572;-0.03696536,-0.101816;-0.3750794;-0.01548042,-0.1173444;-0.7207028;0.03746607,-0.1179505;-0.7078789;-0.06104594,0.01638008;0.3985478;0.02934523,0;0;0,0.008732098;0.1994397;0.01214625,0.02216018;0.4990236;0.01855661,0.1294502;0.3698499;-0.01382488,0.2042161;0.1024461;0.02230329,0.2431902;-0.1713505;-0.0214742,-0.09723339;0.366298;0.00914177,-0.3347683;0.2975672;-0.1222098,-0.5679032;0.2964337;-0.2772804,0.07041144;0.005346737;-0.03759843,0.09034445;-0.3708228;0.0123933,0.09768724;-0.709465;0.100527,0.1018701;-0.7611696;0.04302158,-0.07363372;0.0009972784;-0.03125829,-0.09248428;-0.3747536;0.02218265,-0.1025265;-0.7149535;0.1038106,-0.1068129;-0.7028759;0.005523205,0.01777583;0.3991204;0.01891779,24.09697
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.008732098;0.1994397;0.01214625,0.02216018;0.4990236;0.01855661,0.1294502;0.3698499;-0.01382488,0.2042161;0.1024461;0.02230329,0.2431902;-0.1713505;-0.0214742,-0.09723339;0.366298;0.00914177,-0.3347683;0.2975672;-0.1222098,-0.5679032;0.2964337;-0.2772804,0.07041144;0.005346737;-0.03759843,0.09034445;-0.3708228;0.0123933,0.09768724;-0.709465;0.100527,0.1018701;-0.7611696;0.04302158,-0.07363372;0.0009972784;-0.03125829,-0.09248428;-0.3747536;0.02218265,-0.1025265;-0.7149535;0.1038106,-0.1068129;-0.7028759;0.005523205,0.01777583;0.3991204;0.01891779,24.10849
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.00840371;0.1994505;0.01220076,0.02130052;0.4990574;0.01859584,0.1294825;0.3703656;-0.01165885,0.2046416;0.1030648;0.02441652,0.2435017;-0.170787;-0.01911573,-0.09778009;0.3660618;0.008432065,-0.33266;0.2968652;-0.127374,-0.5636946;0.2946707;-0.2855453,0.07077428;0.005428521;-0.03689895,0.09031475;-0.3709251;0.01184648,0.09750775;-0.7096469;0.09968583,0.1018022;-0.7615319;0.04244584,-0.07339446;0.0009341359;-0.03181793,-0.0922192;-0.3747843;0.0218598,-0.1025629;-0.715044;0.1032005,-0.1060264;-0.7029676;0.004880838,0.01708574;0.399147;0.01897751,24.13048
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.00840371;0.1994505;0.01220076,0.02130052;0.4990574;0.01859584,0.1294825;0.3703656;-0.01165885,0.2046416;0.1030648;0.02441652,0.2435017;-0.170787;-0.01911573,-0.09778009;0.3660618;0.008432065,-0.33266;0.2968652;-0.127374,-0.5636946;0.2946707;-0.2855453,0.07077428;0.005428521;-0.03689895,0.09031475;-0.3709251;0.01184648,0.09750775;-0.7096469;0.09968583,0.1018022;-0.7615319;0.04244584,-0.07339446;0.0009341359;-0.03181793,-0.0922192;-0.3747843;0.0218598,-0.1025629;-0.715044;0.1032005,-0.1060264;-0.7029676;0.004880838,0.01708574;0.399147;0.01897751,24.14193
+0;0;0,0.008235549;0.199047;0.01767632,0.0203716;0.4983906;0.03246067,0.1283185;0.3684245;-0.0003255531,0.1931567;0.09648654;0.01535027,0.2432119;-0.1762263;-0.02366478,-0.09840967;0.3681947;0.01128356,-0.3269766;0.309454;-0.1394038,-0.5239821;0.2980002;-0.3380433,0.07010544;0.004261353;-0.03830232,0.08499188;-0.3743037;-0.008859638,0.08448804;-0.7193535;0.04979509,0.08189312;-0.7065285;-0.0486848,-0.07073789;0.003111381;-0.03723533,-0.1016108;-0.3750025;-0.01540075,-0.1167655;-0.7206231;0.0376716,-0.1169011;-0.7077847;-0.06084472,0.01617946;0.3985087;0.03000231,0;0;0,0.007921121;0.1994659;0.01227328,0.02014952;0.4990985;0.01877896,0.1288667;0.3708146;-0.0107379,0.204474;0.1037492;0.02613441,0.2423486;-0.1702448;-0.0173718,-0.09851635;0.3657681;0.007537227,-0.3304391;0.2954435;-0.1326994,-0.558875;0.2923899;-0.2945873,0.07103392;0.005402246;-0.03640052,0.08981104;-0.3710659;0.01175667,0.09670456;-0.7099822;0.09886725,0.1010539;-0.7620141;0.04184226,-0.07314217;0.0009127028;-0.03239429,-0.09223218;-0.3747942;0.0212702,-0.1030466;-0.7150874;0.1024097,-0.1059834;-0.703009;0.00407254,0.01615506;0.3991789;0.01912087,24.16411
+0;0;0,0.008144894;0.1990217;0.01800066,0.01989739;0.4983492;0.03343815,0.1279665;0.368328;0.000358576,0.1929404;0.0964517;0.01653445,0.2431006;-0.1761148;-0.02335841,-0.09844411;0.3677257;0.01092973,-0.3221602;0.30632;-0.1458519,-0.5139796;0.2948489;-0.3495029,0.07027199;0.004323266;-0.03798891,0.08519324;-0.3742439;-0.008590279,0.084598;-0.7192216;0.05048584,0.08227533;-0.706381;-0.04800355,-0.07050784;0.003083008;-0.03767147,-0.1014591;-0.3749749;-0.01499479,-0.116267;-0.7205989;0.03815375,-0.116132;-0.7077399;-0.06036614,0.01585088;0.3984682;0.03071749,0;0;0,0.007921121;0.1994659;0.01227328,0.02014952;0.4990985;0.01877896,0.1288667;0.3708146;-0.0107379,0.204474;0.1037492;0.02613441,0.2423486;-0.1702448;-0.0173718,-0.09851635;0.3657681;0.007537227,-0.3304391;0.2954435;-0.1326994,-0.558875;0.2923899;-0.2945873,0.07103392;0.005402246;-0.03640052,0.08981104;-0.3710659;0.01175667,0.09670456;-0.7099822;0.09886725,0.1010539;-0.7620141;0.04184226,-0.07314217;0.0009127028;-0.03239429,-0.09223218;-0.3747942;0.0212702,-0.1030466;-0.7150874;0.1024097,-0.1059834;-0.703009;0.00407254,0.01615506;0.3991789;0.01912087,24.1753
+0;0;0,0.008144894;0.1990217;0.01800066,0.01989739;0.4983492;0.03343815,0.1279665;0.368328;0.000358576,0.1929404;0.0964517;0.01653445,0.2431006;-0.1761148;-0.02335841,-0.09844411;0.3677257;0.01092973,-0.3221602;0.30632;-0.1458519,-0.5139796;0.2948489;-0.3495029,0.07027199;0.004323266;-0.03798891,0.08519324;-0.3742439;-0.008590279,0.084598;-0.7192216;0.05048584,0.08227533;-0.706381;-0.04800355,-0.07050784;0.003083008;-0.03767147,-0.1014591;-0.3749749;-0.01499479,-0.116267;-0.7205989;0.03815375,-0.116132;-0.7077399;-0.06036614,0.01585088;0.3984682;0.03071749,0;0;0,0.00736346;0.1994882;0.01225656,0.01868916;0.4991525;0.0189476,0.1280448;0.3716458;-0.01027043,0.2037372;0.1046252;0.02675205,0.2416211;-0.1696938;-0.01464715,-0.09948379;0.3657386;0.006444807,-0.3290974;0.2948129;-0.1372462,-0.5538289;0.2903854;-0.3042078,0.07129903;0.005620101;-0.03584497,0.08955555;-0.3709829;0.01145074,0.09603377;-0.7100226;0.09811154,0.09097162;-0.6979164;-0.0001441836,-0.07287989;0.000717062;-0.03298495,-0.09278998;-0.3748312;0.02148609,-0.1035483;-0.7152725;0.1020092,-0.1060364;-0.7031897;0.003658846,0.0150405;0.3992195;0.01922053,24.19767
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.00736346;0.1994882;0.01225656,0.01868916;0.4991525;0.0189476,0.1280448;0.3716458;-0.01027043,0.2037372;0.1046252;0.02675205,0.2416211;-0.1696938;-0.01464715,-0.09948379;0.3657386;0.006444807,-0.3290974;0.2948129;-0.1372462,-0.5538289;0.2903854;-0.3042078,0.07129903;0.005620101;-0.03584497,0.08955555;-0.3709829;0.01145074,0.09603377;-0.7100226;0.09811154,0.09097162;-0.6979164;-0.0001441836,-0.07287989;0.000717062;-0.03298495,-0.09278998;-0.3748312;0.02148609,-0.1035483;-0.7152725;0.1020092,-0.1060364;-0.7031897;0.003658846,0.0150405;0.3992195;0.01922053,24.20898
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.00736346;0.1994882;0.01225656,0.01868916;0.4991525;0.0189476,0.1280448;0.3716458;-0.01027043,0.2037372;0.1046252;0.02675205,0.2416211;-0.1696938;-0.01464715,-0.09948379;0.3657386;0.006444807,-0.3290974;0.2948129;-0.1372462,-0.5538289;0.2903854;-0.3042078,0.07129903;0.005620101;-0.03584497,0.08955555;-0.3709829;0.01145074,0.09603377;-0.7100226;0.09811154,0.09097162;-0.6979164;-0.0001441836,-0.07287989;0.000717062;-0.03298495,-0.09278998;-0.3748312;0.02148609,-0.1035483;-0.7152725;0.1020092,-0.1060364;-0.7031897;0.003658846,0.0150405;0.3992195;0.01922053,24.22007
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.007254754;0.1994872;0.01233791,0.01841725;0.4991605;0.01886469,0.1281034;0.3717453;-0.009185132,0.2041369;0.1047419;0.02725726,0.2417512;-0.1697794;-0.01303195,-0.09953564;0.3653481;0.005790002,-0.3253457;0.2932627;-0.1432521,-0.5435894;0.2868666;-0.3185484,0.07156878;0.005756868;-0.03528127,0.08971725;-0.3708991;0.01163236,0.09606566;-0.710113;0.09761856,0.1012138;-0.7618732;0.04027065,-0.07268088;0.0005729318;-0.03342395,-0.09270926;-0.3749743;0.02101031,-0.1034044;-0.7153999;0.1016083,-0.1053837;-0.7033221;0.00324735,0.01479736;0.3992266;0.0192142,24.24238
+0;0;0,0.008006116;0.198994;0.01836527,0.01922254;0.4982714;0.03516957,0.1272899;0.3679934;0.00111915,0.1923856;0.09615654;0.01746828,0.2424809;-0.1764342;-0.02234045,-0.09858672;0.3673696;0.01064615,-0.318597;0.3035873;-0.1503734,-0.5051693;0.2917496;-0.3588216,0.07039504;0.004351827;-0.0377571,0.08525393;-0.374222;-0.008412305,0.0842013;-0.719071;0.05140433,0.0821877;-0.7062231;-0.04709313,-0.0703454;0.003102771;-0.03797232,-0.1013518;-0.3749184;-0.01476542,-0.1160466;-0.7205132;0.03860386,-0.1156087;-0.7076218;-0.0599208,0.01536465;0.3983989;0.03191262,0;0;0,0.007254754;0.1994872;0.01233791,0.01841725;0.4991605;0.01886469,0.1281034;0.3717453;-0.009185132,0.2041369;0.1047419;0.02725726,0.2417512;-0.1697794;-0.01303195,-0.09953564;0.3653481;0.005790002,-0.3253457;0.2932627;-0.1432521,-0.5435894;0.2868666;-0.3185484,0.07156878;0.005756868;-0.03528127,0.08971725;-0.3708991;0.01163236,0.09606566;-0.710113;0.09761856,0.1012138;-0.7618732;0.04027065,-0.07268088;0.0005729318;-0.03342395,-0.09270926;-0.3749743;0.02101031,-0.1034044;-0.7153999;0.1016083,-0.1053837;-0.7033221;0.00324735,0.01479736;0.3992266;0.0192142,24.25349
+0;0;0,0.007918273;0.1989851;0.01849978,0.01903481;0.4982572;0.0354491,0.1271685;0.3679158;0.001600681,0.1923813;0.09609854;0.01780808,0.2424355;-0.176588;-0.02139146,-0.0985169;0.3670014;0.01016702,-0.3125734;0.3019795;-0.1582134,-0.494857;0.2900273;-0.3704158,0.07046978;0.004354909;-0.03761708,0.08480593;-0.3742352;-0.008223133,0.08431636;-0.719112;0.05144034,0.08257411;-0.7062631;-0.04706249,-0.07019239;0.003050068;-0.03825868,-0.1012345;-0.3749479;-0.01472289,-0.1159995;-0.720525;0.03874119,-0.1152875;-0.7076316;-0.05978222,0.0151981;0.3983847;0.03216667,0;0;0,0.007068112;0.1994751;0.01263862,0.01782081;0.4991555;0.01948633,0.1279884;0.3720525;-0.007498989,0.2040692;0.1050067;0.0285324,0.2416645;-0.1694679;-0.01209108,-0.09970384;0.3648425;0.005043845,-0.3203993;0.2934126;-0.1517722,-0.5402126;0.286867;-0.3250906,0.07163407;0.00579955;-0.03514149,0.08968424;-0.3708853;0.01157838,0.09585892;-0.7102504;0.0969786,0.1008137;-0.7619646;0.03954827,-0.07250425;0.0005239171;-0.03380618,-0.09285111;-0.3750173;0.02055154,-0.103621;-0.7154098;0.1012792,-0.1048896;-0.7033197;0.002904311,0.01432339;0.399217;0.01974709,24.26477
+0;0;0,0.007918273;0.1989851;0.01849978,0.01903481;0.4982572;0.0354491,0.1271685;0.3679158;0.001600681,0.1923813;0.09609854;0.01780808,0.2424355;-0.176588;-0.02139146,-0.0985169;0.3670014;0.01016702,-0.3125734;0.3019795;-0.1582134,-0.494857;0.2900273;-0.3704158,0.07046978;0.004354909;-0.03761708,0.08480593;-0.3742352;-0.008223133,0.08431636;-0.719112;0.05144034,0.08257411;-0.7062631;-0.04706249,-0.07019239;0.003050068;-0.03825868,-0.1012345;-0.3749479;-0.01472289,-0.1159995;-0.720525;0.03874119,-0.1152875;-0.7076316;-0.05978222,0.0151981;0.3983847;0.03216667,0;0;0,0.007068112;0.1994751;0.01263862,0.01782081;0.4991555;0.01948633,0.1279884;0.3720525;-0.007498989,0.2040692;0.1050067;0.0285324,0.2416645;-0.1694679;-0.01209108,-0.09970384;0.3648425;0.005043845,-0.3203993;0.2934126;-0.1517722,-0.5402126;0.286867;-0.3250906,0.07163407;0.00579955;-0.03514149,0.08968424;-0.3708853;0.01157838,0.09585892;-0.7102504;0.0969786,0.1008137;-0.7619646;0.03954827,-0.07250425;0.0005239171;-0.03380618,-0.09285111;-0.3750173;0.02055154,-0.103621;-0.7154098;0.1012792,-0.1048896;-0.7033197;0.002904311,0.01432339;0.399217;0.01974709,24.2872
+0;0;0,0.007918273;0.1989851;0.01849978,0.01903481;0.4982572;0.0354491,0.1271685;0.3679158;0.001600681,0.1923813;0.09609854;0.01780808,0.2424355;-0.176588;-0.02139146,-0.0985169;0.3670014;0.01016702,-0.3125734;0.3019795;-0.1582134,-0.494857;0.2900273;-0.3704158,0.07046978;0.004354909;-0.03761708,0.08480593;-0.3742352;-0.008223133,0.08431636;-0.719112;0.05144034,0.08257411;-0.7062631;-0.04706249,-0.07019239;0.003050068;-0.03825868,-0.1012345;-0.3749479;-0.01472289,-0.1159995;-0.720525;0.03874119,-0.1152875;-0.7076316;-0.05978222,0.0151981;0.3983847;0.03216667,0;0;0,0.006973944;0.1994571;0.01297008,0.01751341;0.4991371;0.02013461,0.1277286;0.371898;-0.006826293,0.20368;0.105011;0.03062626,0.2408749;-0.1693165;-0.01133757,-0.09972042;0.3645555;0.004430985,-0.3177603;0.2922371;-0.1556585,-0.5338063;0.28567;-0.3336501,0.07172047;0.005826739;-0.03496031,0.08943775;-0.3709552;0.01109909,0.09546006;-0.7103344;0.09645429,0.1005492;-0.7619196;0.03885246,-0.07233325;0.0004638296;-0.03417141,-0.09302134;-0.3750524;0.02023031,-0.1038217;-0.7154646;0.1008705,-0.1046678;-0.7033591;0.002488278,0.01406867;0.3991966;0.02030672,24.30935
+0;0;0,0.007826156;0.1989675;0.01872643,0.0187931;0.4982106;0.03625856,0.1270482;0.3680882;0.002320098,0.1926152;0.09641176;0.01943337,0.242265;-0.1761947;-0.02082334,-0.09842651;0.3666668;0.009754043,-0.3095713;0.2999997;-0.1616326,-0.4866864;0.2876658;-0.3781461,0.07048087;0.004349949;-0.03759687,0.08464874;-0.3742417;-0.008141965,0.08448438;-0.7191165;0.0515352,0.0830617;-0.7062508;-0.04697568,-0.07017517;0.003064014;-0.03828913,-0.1015174;-0.3749124;-0.01480443,-0.1162926;-0.7204671;0.03880195,-0.1152544;-0.7075609;-0.05972076,0.0149983;0.3983422;0.03280794,0;0;0,0.006388388;0.1994634;0.01317334,0.01587035;0.4991648;0.02093284,0.1266573;0.3725378;-0.006103162,0.2027079;0.105699;0.03149155,0.2394937;-0.1687334;-0.01014571,-0.1006829;0.3642972;0.003577618,-0.3169467;0.2921047;-0.1589592,-0.5295115;0.2838863;-0.3410269,0.07215494;0.005918288;-0.03403877,0.08899304;-0.3711073;0.01032518,0.09495223;-0.7105416;0.09546526,0.1007318;-0.761928;0.03764787,-0.0719768;0.0003871611;-0.0349169,-0.09363776;-0.37497;0.02019905,-0.1043279;-0.7155167;0.1002843,-0.1047302;-0.7033917;0.001895629,0.01281399;0.3992115;0.02088233,24.33157
+0;0;0,0.007826156;0.1989675;0.01872643,0.0187931;0.4982106;0.03625856,0.1270482;0.3680882;0.002320098,0.1926152;0.09641176;0.01943337,0.242265;-0.1761947;-0.02082334,-0.09842651;0.3666668;0.009754043,-0.3095713;0.2999997;-0.1616326,-0.4866864;0.2876658;-0.3781461,0.07048087;0.004349949;-0.03759687,0.08464874;-0.3742417;-0.008141965,0.08448438;-0.7191165;0.0515352,0.0830617;-0.7062508;-0.04697568,-0.07017517;0.003064014;-0.03828913,-0.1015174;-0.3749124;-0.01480443,-0.1162926;-0.7204671;0.03880195,-0.1152544;-0.7075609;-0.05972076,0.0149983;0.3983422;0.03280794,0;0;0,0.006388388;0.1994634;0.01317334,0.01587035;0.4991648;0.02093284,0.1266573;0.3725378;-0.006103162,0.2027079;0.105699;0.03149155,0.2394937;-0.1687334;-0.01014571,-0.1006829;0.3642972;0.003577618,-0.3169467;0.2921047;-0.1589592,-0.5295115;0.2838863;-0.3410269,0.07215494;0.005918288;-0.03403877,0.08899304;-0.3711073;0.01032518,0.09495223;-0.7105416;0.09546526,0.1007318;-0.761928;0.03764787,-0.0719768;0.0003871611;-0.0349169,-0.09363776;-0.37497;0.02019905,-0.1043279;-0.7155167;0.1002843,-0.1047302;-0.7033917;0.001895629,0.01281399;0.3992115;0.02088233,24.34295
+0;0;0,0.007826156;0.1989675;0.01872643,0.0187931;0.4982106;0.03625856,0.1270482;0.3680882;0.002320098,0.1926152;0.09641176;0.01943337,0.242265;-0.1761947;-0.02082334,-0.09842651;0.3666668;0.009754043,-0.3095713;0.2999997;-0.1616326,-0.4866864;0.2876658;-0.3781461,0.07048087;0.004349949;-0.03759687,0.08464874;-0.3742417;-0.008141965,0.08448438;-0.7191165;0.0515352,0.0830617;-0.7062508;-0.04697568,-0.07017517;0.003064014;-0.03828913,-0.1015174;-0.3749124;-0.01480443,-0.1162926;-0.7204671;0.03880195,-0.1152544;-0.7075609;-0.05972076,0.0149983;0.3983422;0.03280794,0;0;0,0.006388388;0.1994634;0.01317334,0.01587035;0.4991648;0.02093284,0.1266573;0.3725378;-0.006103162,0.2027079;0.105699;0.03149155,0.2394937;-0.1687334;-0.01014571,-0.1006829;0.3642972;0.003577618,-0.3169467;0.2921047;-0.1589592,-0.5295115;0.2838863;-0.3410269,0.07215494;0.005918288;-0.03403877,0.08899304;-0.3711073;0.01032518,0.09495223;-0.7105416;0.09546526,0.1007318;-0.761928;0.03764787,-0.0719768;0.0003871611;-0.0349169,-0.09363776;-0.37497;0.02019905,-0.1043279;-0.7155167;0.1002843,-0.1047302;-0.7033917;0.001895629,0.01281399;0.3992115;0.02088233,24.35406
+0;0;0,0.007665579;0.1989603;0.01886848,0.01820926;0.4982029;0.03665485,0.1267032;0.3681743;0.002865661,0.1926292;0.09659424;0.02012929,0.2421329;-0.1760635;-0.01995977,-0.0985647;0.3664234;0.009002095,-0.3064822;0.2981521;-0.1656672,-0.4762749;0.286665;-0.3880149,0.07055858;0.004345004;-0.0374514,0.08427012;-0.3742929;-0.008377356,0.08462313;-0.7191586;0.05135155,0.08355474;-0.7062806;-0.04716594,-0.07006443;0.003009631;-0.03849568,-0.1018118;-0.374925;-0.01488374,-0.1162923;-0.7204481;0.03900551,-0.1148973;-0.7075366;-0.05951371,0.01456917;0.398331;0.03313972,0;0;0,0.005664088;0.1994912;0.0130836,0.014474;0.499213;0.02088551,0.1257357;0.3727889;-0.005365068,0.2021251;0.106064;0.03235096,0.2387367;-0.1682841;-0.009989902,-0.1016499;0.3641336;0.00263864,-0.3133643;0.2918733;-0.1657522,-0.5240794;0.2826818;-0.3499115,0.07238236;0.006104526;-0.03351907,0.08773262;-0.3711077;0.009785853,0.09373995;-0.710606;0.09466688,0.09989592;-0.7623133;0.03734302,-0.07168332;0.0002119396;-0.03551697,-0.09423034;-0.3751075;0.0195006,-0.1053602;-0.7156616;0.09949414,-0.1052574;-0.7035434;0.001105972,0.01165072;0.3992529;0.02079349,24.36527
+0;0;0,0.007665579;0.1989603;0.01886848,0.01820926;0.4982029;0.03665485,0.1267032;0.3681743;0.002865661,0.1926292;0.09659424;0.02012929,0.2421329;-0.1760635;-0.01995977,-0.0985647;0.3664234;0.009002095,-0.3064822;0.2981521;-0.1656672,-0.4762749;0.286665;-0.3880149,0.07055858;0.004345004;-0.0374514,0.08427012;-0.3742929;-0.008377356,0.08462313;-0.7191586;0.05135155,0.08355474;-0.7062806;-0.04716594,-0.07006443;0.003009631;-0.03849568,-0.1018118;-0.374925;-0.01488374,-0.1162923;-0.7204481;0.03900551,-0.1148973;-0.7075366;-0.05951371,0.01456917;0.398331;0.03313972,0;0;0,0.005664088;0.1994912;0.0130836,0.014474;0.499213;0.02088551,0.1257357;0.3727889;-0.005365068,0.2021251;0.106064;0.03235096,0.2387367;-0.1682841;-0.009989902,-0.1016499;0.3641336;0.00263864,-0.3133643;0.2918733;-0.1657522,-0.5240794;0.2826818;-0.3499115,0.07238236;0.006104526;-0.03351907,0.08773262;-0.3711077;0.009785853,0.09373995;-0.710606;0.09466688,0.09989592;-0.7623133;0.03734302,-0.07168332;0.0002119396;-0.03551697,-0.09423034;-0.3751075;0.0195006,-0.1053602;-0.7156616;0.09949414,-0.1052574;-0.7035434;0.001105972,0.01165072;0.3992529;0.02079349,24.3876
+0;0;0,0.007665579;0.1989603;0.01886848,0.01820926;0.4982029;0.03665485,0.1267032;0.3681743;0.002865661,0.1926292;0.09659424;0.02012929,0.2421329;-0.1760635;-0.01995977,-0.0985647;0.3664234;0.009002095,-0.3064822;0.2981521;-0.1656672,-0.4762749;0.286665;-0.3880149,0.07055858;0.004345004;-0.0374514,0.08427012;-0.3742929;-0.008377356,0.08462313;-0.7191586;0.05135155,0.08355474;-0.7062806;-0.04716594,-0.07006443;0.003009631;-0.03849568,-0.1018118;-0.374925;-0.01488374,-0.1162923;-0.7204481;0.03900551,-0.1148973;-0.7075366;-0.05951371,0.01456917;0.398331;0.03313972,0;0;0,0.005299746;0.1994934;0.01320202,0.01347185;0.4992251;0.02131455,0.1251204;0.3729223;-0.004557192,0.2015446;0.1061425;0.03269714,0.237987;-0.1682031;-0.009805385,-0.1021353;0.3638556;0.001860846,-0.3103543;0.2912424;-0.1706853,-0.5165628;0.2822759;-0.359888,0.07241543;0.006110027;-0.03344658,0.08731807;-0.3711092;0.009953655,0.093367;-0.7107004;0.09445955,0.099366;-0.7624719;0.03721069,-0.07154261;0.0001831621;-0.03579973,-0.09454;-0.3750846;0.01938378,-0.1059671;-0.7156643;0.09922692,-0.1054038;-0.7035366;0.0008385926,0.01089539;0.3992585;0.02111454,24.39859
+0;0;0,0.007552095;0.1989474;0.01905033,0.01786859;0.4981713;0.037273,0.1266676;0.3683324;0.004030386,0.1925147;0.09670281;0.02080893,0.242254;-0.1758547;-0.01966847,-0.0984962;0.3658742;0.008619094,-0.3027328;0.2953611;-0.1694689,-0.4664696;0.2854521;-0.3963875,0.07060273;0.004351287;-0.03736738,0.08425039;-0.3742927;-0.008342525,0.08465642;-0.7191483;0.05144447,0.08402677;-0.706264;-0.04707789,-0.06995066;0.003008975;-0.03870208,-0.1022781;-0.3748697;-0.01498191,-0.1163008;-0.7203708;0.03916951,-0.1144658;-0.7074513;-0.05934388,0.01430139;0.3983016;0.0336224,0;0;0,0.005299746;0.1994934;0.01320202,0.01347185;0.4992251;0.02131455,0.1251204;0.3729223;-0.004557192,0.2015446;0.1061425;0.03269714,0.237987;-0.1682031;-0.009805385,-0.1021353;0.3638556;0.001860846,-0.3103543;0.2912424;-0.1706853,-0.5165628;0.2822759;-0.359888,0.07241543;0.006110027;-0.03344658,0.08731807;-0.3711092;0.009953655,0.093367;-0.7107004;0.09445955,0.099366;-0.7624719;0.03721069,-0.07154261;0.0001831621;-0.03579973,-0.09454;-0.3750846;0.01938378,-0.1059671;-0.7156643;0.09922692,-0.1054038;-0.7035366;0.0008385926,0.01089539;0.3992585;0.02111454,24.42105
+0;0;0,0.007552095;0.1989474;0.01905033,0.01786859;0.4981713;0.037273,0.1266676;0.3683324;0.004030386,0.1925147;0.09670281;0.02080893,0.242254;-0.1758547;-0.01966847,-0.0984962;0.3658742;0.008619094,-0.3027328;0.2953611;-0.1694689,-0.4664696;0.2854521;-0.3963875,0.07060273;0.004351287;-0.03736738,0.08425039;-0.3742927;-0.008342525,0.08465642;-0.7191483;0.05144447,0.08402677;-0.706264;-0.04707789,-0.06995066;0.003008975;-0.03870208,-0.1022781;-0.3748697;-0.01498191,-0.1163008;-0.7203708;0.03916951,-0.1144658;-0.7074513;-0.05934388,0.01430139;0.3983016;0.0336224,0;0;0,0.004895379;0.1994983;0.01328459,0.01237432;0.4992436;0.02154459,0.1244482;0.3733305;-0.003927272,0.2008021;0.1065388;0.03338605,0.2364599;-0.1678891;-0.009250473,-0.1028266;0.3638404;0.001130736,-0.3078708;0.2881889;-0.1738943,-0.5117869;0.2787216;-0.3655413,0.07254787;0.006093672;-0.03316133,0.08698153;-0.3711805;0.009918414,0.09278814;-0.7108822;0.09399563,0.09858916;-0.7620624;0.03589112,-0.07135789;0.0001806186;-0.03616653,-0.09526752;-0.3749422;0.01961125,-0.1064709;-0.7155093;0.09953956,-0.1055254;-0.7033912;0.001155898,0.0100347;0.3992713;0.02130426,24.43212
+0;0;0,0.007552095;0.1989474;0.01905033,0.01786859;0.4981713;0.037273,0.1266676;0.3683324;0.004030386,0.1925147;0.09670281;0.02080893,0.242254;-0.1758547;-0.01966847,-0.0984962;0.3658742;0.008619094,-0.3027328;0.2953611;-0.1694689,-0.4664696;0.2854521;-0.3963875,0.07060273;0.004351287;-0.03736738,0.08425039;-0.3742927;-0.008342525,0.08465642;-0.7191483;0.05144447,0.08402677;-0.706264;-0.04707789,-0.06995066;0.003008975;-0.03870208,-0.1022781;-0.3748697;-0.01498191,-0.1163008;-0.7203708;0.03916951,-0.1144658;-0.7074513;-0.05934388,0.01430139;0.3983016;0.0336224,0;0;0,0.004895379;0.1994983;0.01328459,0.01237432;0.4992436;0.02154459,0.1244482;0.3733305;-0.003927272,0.2008021;0.1065388;0.03338605,0.2364599;-0.1678891;-0.009250473,-0.1028266;0.3638404;0.001130736,-0.3078708;0.2881889;-0.1738943,-0.5117869;0.2787216;-0.3655413,0.07254787;0.006093672;-0.03316133,0.08698153;-0.3711805;0.009918414,0.09278814;-0.7108822;0.09399563,0.09858916;-0.7620624;0.03589112,-0.07135789;0.0001806186;-0.03616653,-0.09526752;-0.3749422;0.01961125,-0.1064709;-0.7155093;0.09953956,-0.1055254;-0.7033912;0.001155898,0.0100347;0.3992713;0.02130426,24.44349
+0;0;0,0.007379658;0.1989361;0.0192346,0.01731209;0.4981488;0.03784726,0.1262367;0.3681278;0.00460095,0.1925505;0.09663573;0.02176324,0.2421385;-0.1759638;-0.0186162,-0.09859858;0.3655689;0.0080531,-0.2992604;0.292643;-0.1731006,-0.4584155;0.2843188;-0.4033187,0.07070523;0.004353631;-0.0371728,0.08413105;-0.3743106;-0.008308649,0.08478254;-0.7191668;0.05147285,0.08448877;-0.706276;-0.04705222,-0.06974737;0.002959223;-0.03907107,-0.1022773;-0.3748659;-0.01478061,-0.1163704;-0.7203728;0.03931477,-0.1141968;-0.7074454;-0.05919312,0.01388733;0.3982788;0.03407195,0;0;0,0.004895379;0.1994983;0.01328459,0.01237432;0.4992436;0.02154459,0.1244482;0.3733305;-0.003927272,0.2008021;0.1065388;0.03338605,0.2364599;-0.1678891;-0.009250473,-0.1028266;0.3638404;0.001130736,-0.3078708;0.2881889;-0.1738943,-0.5117869;0.2787216;-0.3655413,0.07254787;0.006093672;-0.03316133,0.08698153;-0.3711805;0.009918414,0.09278814;-0.7108822;0.09399563,0.09858916;-0.7620624;0.03589112,-0.07135789;0.0001806186;-0.03616653,-0.09526752;-0.3749422;0.01961125,-0.1064709;-0.7155093;0.09953956,-0.1055254;-0.7033912;0.001155898,0.0100347;0.3992713;0.02130426,24.45459
+0;0;0,0.007379658;0.1989361;0.0192346,0.01731209;0.4981488;0.03784726,0.1262367;0.3681278;0.00460095,0.1925505;0.09663573;0.02176324,0.2421385;-0.1759638;-0.0186162,-0.09859858;0.3655689;0.0080531,-0.2992604;0.292643;-0.1731006,-0.4584155;0.2843188;-0.4033187,0.07070523;0.004353631;-0.0371728,0.08413105;-0.3743106;-0.008308649,0.08478254;-0.7191668;0.05147285,0.08448877;-0.706276;-0.04705222,-0.06974737;0.002959223;-0.03907107,-0.1022773;-0.3748659;-0.01478061,-0.1163704;-0.7203728;0.03931477,-0.1141968;-0.7074454;-0.05919312,0.01388733;0.3982788;0.03407195,0;0;0,0.004164171;0.1995244;0.01314104,0.01089439;0.4992906;0.02131356,0.1234705;0.3738055;-0.003433965,0.1995377;0.1069375;0.03391912,0.234666;-0.1675113;-0.009021103,-0.1039012;0.3638265;0.0001507364,-0.3087124;0.2825601;-0.1726154,-0.5019964;0.2692694;-0.3747655,0.07262184;0.006282993;-0.03296348,0.08582368;-0.3710843;0.00969347,0.09154926;-0.7109038;0.09329952,0.09752741;-0.7617621;0.0347659,-0.07114038;-2.592623E-06;-0.03659299,-0.09648558;-0.3750426;0.01910764,-0.1074963;-0.7157149;0.09861358,-0.1061488;-0.7036006;0.0002352819,0.008804472;0.3993127;0.02108314,24.4768
+0;0;0,0.007379658;0.1989361;0.0192346,0.01731209;0.4981488;0.03784726,0.1262367;0.3681278;0.00460095,0.1925505;0.09663573;0.02176324,0.2421385;-0.1759638;-0.0186162,-0.09859858;0.3655689;0.0080531,-0.2992604;0.292643;-0.1731006,-0.4584155;0.2843188;-0.4033187,0.07070523;0.004353631;-0.0371728,0.08413105;-0.3743106;-0.008308649,0.08478254;-0.7191668;0.05147285,0.08448877;-0.706276;-0.04705222,-0.06974737;0.002959223;-0.03907107,-0.1022773;-0.3748659;-0.01478061,-0.1163704;-0.7203728;0.03931477,-0.1141968;-0.7074454;-0.05919312,0.01388733;0.3982788;0.03407195,0;0;0,0.004164171;0.1995244;0.01314104,0.01089439;0.4992906;0.02131356,0.1234705;0.3738055;-0.003433965,0.1995377;0.1069375;0.03391912,0.234666;-0.1675113;-0.009021103,-0.1039012;0.3638265;0.0001507364,-0.3087124;0.2825601;-0.1726154,-0.5019964;0.2692694;-0.3747655,0.07262184;0.006282993;-0.03296348,0.08582368;-0.3710843;0.00969347,0.09154926;-0.7109038;0.09329952,0.09752741;-0.7617621;0.0347659,-0.07114038;-2.592623E-06;-0.03659299,-0.09648558;-0.3750426;0.01910764,-0.1074963;-0.7157149;0.09861358,-0.1061488;-0.7036006;0.0002352819,0.008804472;0.3993127;0.02108314,24.48804
+0;0;0,0.007156846;0.1989314;0.01936726,0.01681672;0.4981482;0.03804411,0.1259628;0.3681702;0.005284488,0.1927848;0.09677285;0.02196697,0.2426381;-0.1758949;-0.01761755,-0.09881199;0.3653628;0.007652057,-0.2930401;0.2823596;-0.1761574,-0.4513682;0.2753744;-0.4069894,0.07083217;0.004290945;-0.03693767,0.08418414;-0.3743883;-0.008236077,0.08495065;-0.7191908;0.05185203,0.08497252;-0.7063062;-0.0466724,-0.06960882;0.002901668;-0.03932166,-0.1019588;-0.374899;-0.01441942,-0.1160867;-0.7204356;0.03947767,-0.1135968;-0.7075058;-0.05902313,0.01347468;0.3982753;0.03426912,0;0;0,0.004002327;0.1995163;0.01331217,0.01042087;0.4992899;0.02143108,0.1231441;0.3740024;-0.003139954,0.1993032;0.1072484;0.03483482,0.2342471;-0.1670822;-0.009002041,-0.1041261;0.363726;-0.0004426744,-0.3085685;0.2817056;-0.1732894,-0.495395;0.2658313;-0.381241,0.07262193;0.006246;-0.03297033,0.08540756;-0.3711862;0.009236977,0.09096609;-0.7110605;0.09263086,0.09718716;-0.7617563;0.03389848,-0.07105511;2.200147E-05;-0.03675827,-0.09684081;-0.3749484;0.01920886,-0.1078578;-0.7156841;0.09844127,-0.1062315;-0.7035645;6.622076E-05,0.008405669;0.3993104;0.0212446,24.51034
+0;0;0,0.007156846;0.1989314;0.01936726,0.01681672;0.4981482;0.03804411,0.1259628;0.3681702;0.005284488,0.1927848;0.09677285;0.02196697,0.2426381;-0.1758949;-0.01761755,-0.09881199;0.3653628;0.007652057,-0.2930401;0.2823596;-0.1761574,-0.4513682;0.2753744;-0.4069894,0.07083217;0.004290945;-0.03693767,0.08418414;-0.3743883;-0.008236077,0.08495065;-0.7191908;0.05185203,0.08497252;-0.7063062;-0.0466724,-0.06960882;0.002901668;-0.03932166,-0.1019588;-0.374899;-0.01441942,-0.1160867;-0.7204356;0.03947767,-0.1135968;-0.7075058;-0.05902313,0.01347468;0.3982753;0.03426912,0;0;0,0.004002327;0.1995163;0.01331217,0.01042087;0.4992899;0.02143108,0.1231441;0.3740024;-0.003139954,0.1993032;0.1072484;0.03483482,0.2342471;-0.1670822;-0.009002041,-0.1041261;0.363726;-0.0004426744,-0.3085685;0.2817056;-0.1732894,-0.495395;0.2658313;-0.381241,0.07262193;0.006246;-0.03297033,0.08540756;-0.3711862;0.009236977,0.09096609;-0.7110605;0.09263086,0.09718716;-0.7617563;0.03389848,-0.07105511;2.200147E-05;-0.03675827,-0.09684081;-0.3749484;0.01920886,-0.1078578;-0.7156841;0.09844127,-0.1062315;-0.7035645;6.622076E-05,0.008405669;0.3993104;0.0212446,24.52152
+0;0;0,0.007156846;0.1989314;0.01936726,0.01681672;0.4981482;0.03804411,0.1259628;0.3681702;0.005284488,0.1927848;0.09677285;0.02196697,0.2426381;-0.1758949;-0.01761755,-0.09881199;0.3653628;0.007652057,-0.2930401;0.2823596;-0.1761574,-0.4513682;0.2753744;-0.4069894,0.07083217;0.004290945;-0.03693767,0.08418414;-0.3743883;-0.008236077,0.08495065;-0.7191908;0.05185203,0.08497252;-0.7063062;-0.0466724,-0.06960882;0.002901668;-0.03932166,-0.1019588;-0.374899;-0.01441942,-0.1160867;-0.7204356;0.03947767,-0.1135968;-0.7075058;-0.05902313,0.01347468;0.3982753;0.03426912,0;0;0,0.00390564;0.1995071;0.0134791,0.01009402;0.4992815;0.02172588,0.1229389;0.3741634;-0.002770126,0.1988003;0.1073245;0.03520436,0.2339334;-0.1669893;-0.008585878,-0.1042219;0.3635493;-0.0007655323,-0.3067686;0.2804946;-0.1753414,-0.4866776;0.2636245;-0.3892295,0.07272683;0.006275108;-0.03273272,0.08524209;-0.3711542;0.009581644,0.09077144;-0.7111547;0.09246127,0.09710991;-0.7617549;0.03361028,-0.07094391;-6.474739E-06;-0.03697244,-0.09682743;-0.374984;0.01890138,-0.1080582;-0.7157155;0.09812202,-0.1062327;-0.7035868;-0.0002511814,0.008141438;0.3993008;0.02151257,24.53268
+0;0;0,0.006991268;0.1989224;0.01951917,0.0162721;0.4981351;0.03844441,0.1255831;0.3680903;0.005806064,0.1927655;0.09678149;0.02248098,0.2427321;-0.1758943;-0.01690544,-0.098753;0.3648006;0.006714661,-0.2915248;0.2807401;-0.1781444,-0.4355003;0.2719448;-0.4181312,0.07095981;0.004296857;-0.03669119,0.08404975;-0.3744222;-0.008397341,0.08464596;-0.7191479;0.05213202,0.08510656;-0.7062451;-0.0463945,-0.06947406;0.002802112;-0.03956644,-0.1022181;-0.3749504;-0.01444964,-0.1159772;-0.7204961;0.0394847,-0.1130525;-0.7075636;-0.05900462,0.0130633;0.3982607;0.03459913,0;0;0,0.00390564;0.1995071;0.0134791,0.01009402;0.4992815;0.02172588,0.1229389;0.3741634;-0.002770126,0.1988003;0.1073245;0.03520436,0.2339334;-0.1669893;-0.008585878,-0.1042219;0.3635493;-0.0007655323,-0.3067686;0.2804946;-0.1753414,-0.4866776;0.2636245;-0.3892295,0.07272683;0.006275108;-0.03273272,0.08524209;-0.3711542;0.009581644,0.09077144;-0.7111547;0.09246127,0.09710991;-0.7617549;0.03361028,-0.07094391;-6.474739E-06;-0.03697244,-0.09682743;-0.374984;0.01890138,-0.1080582;-0.7157155;0.09812202,-0.1062327;-0.7035868;-0.0002511814,0.008141438;0.3993008;0.02151257,24.54394
+0;0;0,0.006991268;0.1989224;0.01951917,0.0162721;0.4981351;0.03844441,0.1255831;0.3680903;0.005806064,0.1927655;0.09678149;0.02248098,0.2427321;-0.1758943;-0.01690544,-0.098753;0.3648006;0.006714661,-0.2915248;0.2807401;-0.1781444,-0.4355003;0.2719448;-0.4181312,0.07095981;0.004296857;-0.03669119,0.08404975;-0.3744222;-0.008397341,0.08464596;-0.7191479;0.05213202,0.08510656;-0.7062451;-0.0463945,-0.06947406;0.002802112;-0.03956644,-0.1022181;-0.3749504;-0.01444964,-0.1159772;-0.7204961;0.0394847,-0.1130525;-0.7075636;-0.05900462,0.0130633;0.3982607;0.03459913,0;0;0,0.00390564;0.1995071;0.0134791,0.01009402;0.4992815;0.02172588,0.1229389;0.3741634;-0.002770126,0.1988003;0.1073245;0.03520436,0.2339334;-0.1669893;-0.008585878,-0.1042219;0.3635493;-0.0007655323,-0.3067686;0.2804946;-0.1753414,-0.4866776;0.2636245;-0.3892295,0.07272683;0.006275108;-0.03273272,0.08524209;-0.3711542;0.009581644,0.09077144;-0.7111547;0.09246127,0.09710991;-0.7617549;0.03361028,-0.07094391;-6.474739E-06;-0.03697244,-0.09682743;-0.374984;0.01890138,-0.1080582;-0.7157155;0.09812202,-0.1062327;-0.7035868;-0.0002511814,0.008141438;0.3993008;0.02151257,24.55519
+0;0;0,0.006991268;0.1989224;0.01951917,0.0162721;0.4981351;0.03844441,0.1255831;0.3680903;0.005806064,0.1927655;0.09678149;0.02248098,0.2427321;-0.1758943;-0.01690544,-0.098753;0.3648006;0.006714661,-0.2915248;0.2807401;-0.1781444,-0.4355003;0.2719448;-0.4181312,0.07095981;0.004296857;-0.03669119,0.08404975;-0.3744222;-0.008397341,0.08464596;-0.7191479;0.05213202,0.08510656;-0.7062451;-0.0463945,-0.06947406;0.002802112;-0.03956644,-0.1022181;-0.3749504;-0.01444964,-0.1159772;-0.7204961;0.0394847,-0.1130525;-0.7075636;-0.05900462,0.0130633;0.3982607;0.03459913,0;0;0,0.003670971;0.1995021;0.01361847,0.009484628;0.4992822;0.02192562,0.1224009;0.3739767;-0.002542887,0.1981064;0.1070745;0.03529724,0.2332326;-0.1672613;-0.008360501,-0.1044992;0.3632275;-0.001212096,-0.2949935;0.2808445;-0.1891613,-0.4819087;0.266453;-0.3971412,0.07277887;0.006360005;-0.03260041,0.08452909;-0.3711377;0.009320825,0.09005123;-0.7112371;0.09179456,0.09544548;-0.7620679;0.03316611,-0.07083748;-9.384888E-05;-0.03717582,-0.0975613;-0.3749427;0.01916386,-0.1086583;-0.7158664;0.09757212,-0.1066199;-0.7037312;-0.0007980987,0.007634863;0.3992996;0.02169572,24.56644
+0;0;0,0.006866404;0.1989136;0.01965254,0.0159817;0.4981217;0.03872198,0.1254815;0.3684149;0.006243197,0.1931729;0.09723422;0.02294394,0.2432172;-0.1754378;-0.01636932,-0.09867869;0.3643088;0.006281735,-0.289485;0.2793046;-0.180178,-0.4298535;0.269723;-0.4222624,0.07106297;0.00427394;-0.03649366,0.08393474;-0.3744452;-0.008101547,0.08478298;-0.7192132;0.05218357,0.08548663;-0.7063061;-0.04634227,-0.06936958;0.002748886;-0.03975304,-0.1018925;-0.3749759;-0.0139405,-0.1158129;-0.7205529;0.03975087,-0.1126433;-0.7076172;-0.05873144,0.01282228;0.398247;0.03484283,0;0;0,0.003670971;0.1995021;0.01361847,0.009484628;0.4992822;0.02192562,0.1224009;0.3739767;-0.002542887,0.1981064;0.1070745;0.03529724,0.2332326;-0.1672613;-0.008360501,-0.1044992;0.3632275;-0.001212096,-0.2949935;0.2808445;-0.1891613,-0.4819087;0.266453;-0.3971412,0.07277887;0.006360005;-0.03260041,0.08452909;-0.3711377;0.009320825,0.09005123;-0.7112371;0.09179456,0.09544548;-0.7620679;0.03316611,-0.07083748;-9.384888E-05;-0.03717582,-0.0975613;-0.3749427;0.01916386,-0.1086583;-0.7158664;0.09757212,-0.1066199;-0.7037312;-0.0007980987,0.007634863;0.3992996;0.02169572,24.5885
+0;0;0,0.006866404;0.1989136;0.01965254,0.0159817;0.4981217;0.03872198,0.1254815;0.3684149;0.006243197,0.1931729;0.09723422;0.02294394,0.2432172;-0.1754378;-0.01636932,-0.09867869;0.3643088;0.006281735,-0.289485;0.2793046;-0.180178,-0.4298535;0.269723;-0.4222624,0.07106297;0.00427394;-0.03649366,0.08393474;-0.3744452;-0.008101547,0.08478298;-0.7192132;0.05218357,0.08548663;-0.7063061;-0.04634227,-0.06936958;0.002748886;-0.03975304,-0.1018925;-0.3749759;-0.0139405,-0.1158129;-0.7205529;0.03975087,-0.1126433;-0.7076172;-0.05873144,0.01282228;0.398247;0.03484283,0;0;0,0.003565166;0.1994961;0.01373377,0.009184129;0.4992794;0.0220421,0.1222158;0.3736999;-0.001801185,0.1975975;0.1065994;0.0352786,0.2324246;-0.1678504;-0.007900026,-0.1049299;0.3631754;-0.0001085829,-0.291595;0.2812546;-0.1920595,-0.4693927;0.2634852;-0.4076335,0.07290513;0.00628812;-0.03233112,0.08438271;-0.3712638;0.009175979,0.08982335;-0.7114472;0.09130798,0.09512085;-0.762126;0.03246177,-0.07070716;-5.433463E-05;-0.03742318,-0.09788311;-0.3748561;0.0190135,-0.1088739;-0.7158403;0.09717323,-0.1070505;-0.7036996;-0.001202188,0.007382931;0.3992958;0.02182631,24.61081
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003457587;0.1994924;0.01381413,0.008904814;0.4992778;0.02214888,0.1220322;0.3736586;-0.001405269,0.1972109;0.1065411;0.0359634,0.2316901;-0.1679532;-0.007211782,-0.1050519;0.3631701;-0.0005629435,-0.2869608;0.28012;-0.1965522,-0.4640576;0.2618273;-0.4126589,0.07298175;0.006261754;-0.03216293,0.08410873;-0.3712887;0.009452756,0.08942987;-0.7115893;0.09110527,0.09498358;-0.7618148;0.0316659,-0.07060479;-4.560448E-05;-0.03761595,-0.09808702;-0.3748162;0.01887922,-0.109011;-0.7157416;0.09730481,-0.1069309;-0.7035993;-0.001065791,0.00714897;0.3992934;0.02193336,24.63301
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003457587;0.1994924;0.01381413,0.008904814;0.4992778;0.02214888,0.1220322;0.3736586;-0.001405269,0.1972109;0.1065411;0.0359634,0.2316901;-0.1679532;-0.007211782,-0.1050519;0.3631701;-0.0005629435,-0.2869608;0.28012;-0.1965522,-0.4640576;0.2618273;-0.4126589,0.07298175;0.006261754;-0.03216293,0.08410873;-0.3712887;0.009452756,0.08942987;-0.7115893;0.09110527,0.09498358;-0.7618148;0.0316659,-0.07060479;-4.560448E-05;-0.03761595,-0.09808702;-0.3748162;0.01887922,-0.109011;-0.7157416;0.09730481,-0.1069309;-0.7035993;-0.001065791,0.00714897;0.3992934;0.02193336,24.64444
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003457587;0.1994924;0.01381413,0.008904814;0.4992778;0.02214888,0.1220322;0.3736586;-0.001405269,0.1972109;0.1065411;0.0359634,0.2316901;-0.1679532;-0.007211782,-0.1050519;0.3631701;-0.0005629435,-0.2869608;0.28012;-0.1965522,-0.4640576;0.2618273;-0.4126589,0.07298175;0.006261754;-0.03216293,0.08410873;-0.3712887;0.009452756,0.08942987;-0.7115893;0.09110527,0.09498358;-0.7618148;0.0316659,-0.07060479;-4.560448E-05;-0.03761595,-0.09808702;-0.3748162;0.01887922,-0.109011;-0.7157416;0.09730481,-0.1069309;-0.7035993;-0.001065791,0.00714897;0.3992934;0.02193336,24.65582
+0;0;0,0.006625866;0.1989093;0.01977802,0.01529988;0.4981205;0.0389999,0.1251231;0.3688746;0.006595178,0.1928385;0.0976817;0.02299783,0.2433275;-0.1751157;-0.01485015,-0.09888336;0.3639455;0.005770311,-0.2869077;0.2772187;-0.1827114,-0.4142395;0.265305;-0.4317991,0.07134414;0.00418497;-0.03595135,0.08368898;-0.3745892;-0.00806345,0.08460435;-0.7193626;0.0521896,0.08552264;-0.7064532;-0.04633485,-0.06922776;0.002751854;-0.03999931,-0.1021754;-0.3748997;-0.01365978,-0.1157707;-0.7205155;0.03986464,-0.1123883;-0.7075743;-0.05861153,0.012313;0.3982419;0.03508108,0;0;0,0.003310408;0.1994932;0.01383778,0.008565024;0.4992833;0.02212301,0.1218118;0.3737971;-0.001218112,0.1966624;0.1065484;0.03586935,0.2311404;-0.1679451;-0.007311333,-0.1051655;0.3631557;-0.001395714,-0.285668;0.2745107;-0.1962313,-0.4552034;0.2538522;-0.4181119,0.07313695;0.00618248;-0.03182394,0.08381336;-0.3714477;0.009181682,0.0891192;-0.711744;0.09085357,0.0950034;-0.7620418;0.03154381,-0.07046641;8.702302E-06;-0.03787461,-0.09842227;-0.3747227;0.01864801,-0.1093823;-0.7156857;0.09690452,-0.1069997;-0.7035478;-0.001458444,0.006859935;0.399298;0.02192892,24.67775
+0;0;0,0.006467922;0.1988974;0.01994927,0.01479397;0.4980954;0.03952514,0.124766;0.3688349;0.007133458,0.1925938;0.09765354;0.02325889,0.243199;-0.1752245;-0.01384525,-0.09895265;0.3634564;0.005536778,-0.2820477;0.2750441;-0.1869716,-0.4088861;0.2638717;-0.4363452,0.07147414;0.004146011;-0.03569674,0.0835212;-0.3746383;-0.007816752,0.08460006;-0.7194272;0.0523454,0.08572516;-0.7065148;-0.04617742,-0.06907173;0.002792053;-0.04026537,-0.1020854;-0.3748197;-0.01344282,-0.1157207;-0.7204503;0.03997643,-0.1121307;-0.7075017;-0.05849368,0.01192753;0.398218;0.03549041,0;0;0,0.003310408;0.1994932;0.01383778,0.008565024;0.4992833;0.02212301,0.1218118;0.3737971;-0.001218112,0.1966624;0.1065484;0.03586935,0.2311404;-0.1679451;-0.007311333,-0.1051655;0.3631557;-0.001395714,-0.285668;0.2745107;-0.1962313,-0.4552034;0.2538522;-0.4181119,0.07313695;0.00618248;-0.03182394,0.08381336;-0.3714477;0.009181682,0.0891192;-0.711744;0.09085357,0.0950034;-0.7620418;0.03154381,-0.07046641;8.702302E-06;-0.03787461,-0.09842227;-0.3747227;0.01864801,-0.1093823;-0.7156857;0.09690452,-0.1069997;-0.7035478;-0.001458444,0.006859935;0.399298;0.02192892,24.68906
+0;0;0,0.006467922;0.1988974;0.01994927,0.01479397;0.4980954;0.03952514,0.124766;0.3688349;0.007133458,0.1925938;0.09765354;0.02325889,0.243199;-0.1752245;-0.01384525,-0.09895265;0.3634564;0.005536778,-0.2820477;0.2750441;-0.1869716,-0.4088861;0.2638717;-0.4363452,0.07147414;0.004146011;-0.03569674,0.0835212;-0.3746383;-0.007816752,0.08460006;-0.7194272;0.0523454,0.08572516;-0.7065148;-0.04617742,-0.06907173;0.002792053;-0.04026537,-0.1020854;-0.3748197;-0.01344282,-0.1157207;-0.7204503;0.03997643,-0.1121307;-0.7075017;-0.05849368,0.01192753;0.398218;0.03549041,0;0;0,0.00323091;0.199475;0.01411639,0.008269712;0.4992543;0.02292253,0.121559;0.3737641;-0.000734603,0.1962134;0.1064127;0.03600717,0.2304931;-0.1680961;-0.007234409,-0.1051012;0.3629274;-0.001839887,-0.2849874;0.2729288;-0.196625,-0.4450272;0.2490887;-0.4251395,0.07310364;0.00610227;-0.03191582,0.08347972;-0.3715525;0.008940015,0.08864739;-0.7119443;0.09022164,0.09457756;-0.7616514;0.03012489,-0.07041404;0.0001105331;-0.03797171,-0.09888362;-0.3746073;0.01838461,-0.1102703;-0.7155041;0.09686854,-0.107583;-0.7033586;-0.001487918,0.006634251;0.3992684;0.02254277,24.71134
+0;0;0,0.006467922;0.1988974;0.01994927,0.01479397;0.4980954;0.03952514,0.124766;0.3688349;0.007133458,0.1925938;0.09765354;0.02325889,0.243199;-0.1752245;-0.01384525,-0.09895265;0.3634564;0.005536778,-0.2820477;0.2750441;-0.1869716,-0.4088861;0.2638717;-0.4363452,0.07147414;0.004146011;-0.03569674,0.0835212;-0.3746383;-0.007816752,0.08460006;-0.7194272;0.0523454,0.08572516;-0.7065148;-0.04617742,-0.06907173;0.002792053;-0.04026537,-0.1020854;-0.3748197;-0.01344282,-0.1157207;-0.7204503;0.03997643,-0.1121307;-0.7075017;-0.05849368,0.01192753;0.398218;0.03549041,0;0;0,0.00323091;0.199475;0.01411639,0.008269712;0.4992543;0.02292253,0.121559;0.3737641;-0.000734603,0.1962134;0.1064127;0.03600717,0.2304931;-0.1680961;-0.007234409,-0.1051012;0.3629274;-0.001839887,-0.2849874;0.2729288;-0.196625,-0.4450272;0.2490887;-0.4251395,0.07310364;0.00610227;-0.03191582,0.08347972;-0.3715525;0.008940015,0.08864739;-0.7119443;0.09022164,0.09457756;-0.7616514;0.03012489,-0.07041404;0.0001105331;-0.03797171,-0.09888362;-0.3746073;0.01838461,-0.1102703;-0.7155041;0.09686854,-0.107583;-0.7033586;-0.001487918,0.006634251;0.3992684;0.02254277,24.72273
+0;0;0,0.006230859;0.1988957;0.02004217,0.01436603;0.4981159;0.03933277,0.1245167;0.3689393;0.007372716,0.1922856;0.09773651;0.02338704,0.2426943;-0.1752326;-0.01331228,-0.09905154;0.3630142;0.005098227,-0.2653954;0.2777042;-0.203353,-0.4028996;0.2643169;-0.4468964,0.07158545;0.004183928;-0.03546855,0.08340482;-0.3746185;-0.007737095,0.08454886;-0.7194128;0.05239239,0.08584622;-0.7065066;-0.04612725,-0.06882317;0.002808681;-0.04068761,-0.1022838;-0.3747115;-0.01313913,-0.1159964;-0.7203566;0.0401655,-0.1122327;-0.7074122;-0.05829742,0.01158073;0.3982307;0.03543461,0;0;0,0.002854961;0.1994786;0.01414763,0.00741275;0.4992599;0.0231627,0.1211012;0.374243;-1.714937E-05,0.1953882;0.1066935;0.0360207,0.2299767;-0.1677665;-0.007284522,-0.105638;0.3629467;-0.002332434,-0.2764315;0.2691688;-0.2034177,-0.4375651;0.2480577;-0.4314315,0.07320457;0.006173624;-0.03166982,0.08269313;-0.3715568;0.008699793,0.08796747;-0.7119816;0.08983633,0.09365501;-0.7614825;0.02944369,-0.07028713;5.208876E-05;-0.03820623,-0.09939362;-0.3745952;0.01829337,-0.1108884;-0.7155516;0.09650217,-0.1078673;-0.7034009;-0.001845583,0.005959507;0.3992716;0.02269753,24.74488
+0;0;0,0.006230859;0.1988957;0.02004217,0.01436603;0.4981159;0.03933277,0.1245167;0.3689393;0.007372716,0.1922856;0.09773651;0.02338704,0.2426943;-0.1752326;-0.01331228,-0.09905154;0.3630142;0.005098227,-0.2653954;0.2777042;-0.203353,-0.4028996;0.2643169;-0.4468964,0.07158545;0.004183928;-0.03546855,0.08340482;-0.3746185;-0.007737095,0.08454886;-0.7194128;0.05239239,0.08584622;-0.7065066;-0.04612725,-0.06882317;0.002808681;-0.04068761,-0.1022838;-0.3747115;-0.01313913,-0.1159964;-0.7203566;0.0401655,-0.1122327;-0.7074122;-0.05829742,0.01158073;0.3982307;0.03543461,0;0;0,0.002799085;0.1994562;0.01446979,0.007170937;0.4992269;0.02390462,0.1209091;0.3744043;0.0003737826,0.1950663;0.1067632;0.0359965,0.2294583;-0.1677243;-0.007290747,-0.105637;0.3629278;-0.002570152,-0.2699965;0.2679807;-0.2084123,-0.4291116;0.2471493;-0.4378648,0.0732135;0.00614253;-0.03165523,0.0824085;-0.371595;0.008715332,0.08779671;-0.712079;0.0895955,0.09391453;-0.7619114;0.02968409,-0.07021546;8.519932E-05;-0.03833773,-0.09929831;-0.3744575;0.01886284,-0.1107162;-0.7156179;0.09618859,-0.1075041;-0.7034369;-0.002158582,0.005770082;0.3992385;0.02331419,24.76733
+0;0;0,0.006064021;0.1988737;0.02030969,0.01396355;0.4980679;0.0400993,0.1241473;0.3686503;0.008067686,0.1919493;0.0974392;0.02379788,0.2420444;-0.1755578;-0.01312308,-0.0989825;0.3624789;0.004820269,-0.2621418;0.2773399;-0.206202,-0.3925751;0.2604846;-0.4533923,0.07186551;0.004052603;-0.0349131,0.08360917;-0.3747958;-0.00778473,0.08455273;-0.7196006;0.05228849,0.08613262;-0.706681;-0.04622936,-0.06867569;0.002723663;-0.0409418,-0.1020672;-0.3747687;-0.01293221,-0.1157439;-0.7204311;0.04026959,-0.1117012;-0.7074744;-0.05818438,0.01124956;0.3981878;0.03602555,0;0;0,0.002799085;0.1994562;0.01446979,0.007170937;0.4992269;0.02390462,0.1209091;0.3744043;0.0003737826,0.1950663;0.1067632;0.0359965,0.2294583;-0.1677243;-0.007290747,-0.105637;0.3629278;-0.002570152,-0.2699965;0.2679807;-0.2084123,-0.4291116;0.2471493;-0.4378648,0.0732135;0.00614253;-0.03165523,0.0824085;-0.371595;0.008715332,0.08779671;-0.712079;0.0895955,0.09391453;-0.7619114;0.02968409,-0.07021546;8.519932E-05;-0.03833773,-0.09929831;-0.3744575;0.01886284,-0.1107162;-0.7156179;0.09618859,-0.1075041;-0.7034369;-0.002158582,0.005770082;0.3992385;0.02331419,24.77846
+0;0;0,0.006064021;0.1988737;0.02030969,0.01396355;0.4980679;0.0400993,0.1241473;0.3686503;0.008067686,0.1919493;0.0974392;0.02379788,0.2420444;-0.1755578;-0.01312308,-0.0989825;0.3624789;0.004820269,-0.2621418;0.2773399;-0.206202,-0.3925751;0.2604846;-0.4533923,0.07186551;0.004052603;-0.0349131,0.08360917;-0.3747958;-0.00778473,0.08455273;-0.7196006;0.05228849,0.08613262;-0.706681;-0.04622936,-0.06867569;0.002723663;-0.0409418,-0.1020672;-0.3747687;-0.01293221,-0.1157439;-0.7204311;0.04026959,-0.1117012;-0.7074744;-0.05818438,0.01124956;0.3981878;0.03602555,0;0;0,0.002799085;0.1994562;0.01446979,0.007170937;0.4992269;0.02390462,0.1209091;0.3744043;0.0003737826,0.1950663;0.1067632;0.0359965,0.2294583;-0.1677243;-0.007290747,-0.105637;0.3629278;-0.002570152,-0.2699965;0.2679807;-0.2084123,-0.4291116;0.2471493;-0.4378648,0.0732135;0.00614253;-0.03165523,0.0824085;-0.371595;0.008715332,0.08779671;-0.712079;0.0895955,0.09391453;-0.7619114;0.02968409,-0.07021546;8.519932E-05;-0.03833773,-0.09929831;-0.3744575;0.01886284,-0.1107162;-0.7156179;0.09618859,-0.1075041;-0.7034369;-0.002158582,0.005770082;0.3992385;0.02331419,24.78964
+0;0;0,0.006064021;0.1988737;0.02030969,0.01396355;0.4980679;0.0400993,0.1241473;0.3686503;0.008067686,0.1919493;0.0974392;0.02379788,0.2420444;-0.1755578;-0.01312308,-0.0989825;0.3624789;0.004820269,-0.2621418;0.2773399;-0.206202,-0.3925751;0.2604846;-0.4533923,0.07186551;0.004052603;-0.0349131,0.08360917;-0.3747958;-0.00778473,0.08455273;-0.7196006;0.05228849,0.08613262;-0.706681;-0.04622936,-0.06867569;0.002723663;-0.0409418,-0.1020672;-0.3747687;-0.01293221,-0.1157439;-0.7204311;0.04026959,-0.1117012;-0.7074744;-0.05818438,0.01124956;0.3981878;0.03602555,0;0;0,0.002566212;0.1994556;0.01452202,0.006553177;0.499227;0.02411035,0.1204089;0.3743837;0.0004298128,0.1945471;0.1067874;0.03642697,0.2289007;-0.1676848;-0.006987613,-0.105833;0.3625573;-0.003101129,-0.2681732;0.2659298;-0.2097622,-0.4175176;0.2416946;-0.4453655,0.07330099;0.006144498;-0.03145172,0.08201171;-0.3716488;0.008502595,0.08747829;-0.7121317;0.08938193,0.09348892;-0.7617866;0.02922403,-0.07014544;8.347648E-05;-0.03846572,-0.09949739;-0.3744444;0.01869504,-0.110857;-0.7156597;0.0957863,-0.1075027;-0.7034661;-0.002558403,0.005292675;0.399237;0.02346359,24.81218
+0;0;0,0.005888447;0.1988672;0.02042429,0.01350858;0.4980553;0.04041595,0.1238149;0.3684605;0.008582475,0.1917652;0.09726253;0.02389366,0.2417566;-0.1757497;-0.01305424,-0.09898613;0.3619062;0.004494727,-0.2575357;0.2752435;-0.2094015,-0.3824712;0.2573562;-0.4593439,0.07195214;0.00406527;-0.03473274,0.08339699;-0.3748068;-0.00780734,0.08385237;-0.719619;0.05222848,0.08566728;-0.7066908;-0.04628681,-0.06860752;0.002744291;-0.04105457,-0.1021138;-0.3747219;-0.01282962,-0.1158361;-0.7203979;0.04027196,-0.1115663;-0.7074323;-0.05817397,0.01089828;0.3981752;0.03627488,0;0;0,0.002566212;0.1994556;0.01452202,0.006553177;0.499227;0.02411035,0.1204089;0.3743837;0.0004298128,0.1945471;0.1067874;0.03642697,0.2289007;-0.1676848;-0.006987613,-0.105833;0.3625573;-0.003101129,-0.2681732;0.2659298;-0.2097622,-0.4175176;0.2416946;-0.4453655,0.07330099;0.006144498;-0.03145172,0.08201171;-0.3716488;0.008502595,0.08747829;-0.7121317;0.08938193,0.09348892;-0.7617866;0.02922403,-0.07014544;8.347648E-05;-0.03846572,-0.09949739;-0.3744444;0.01869504,-0.110857;-0.7156597;0.0957863,-0.1075027;-0.7034661;-0.002558403,0.005292675;0.399237;0.02346359,24.82319
+0;0;0,0.005888447;0.1988672;0.02042429,0.01350858;0.4980553;0.04041595,0.1238149;0.3684605;0.008582475,0.1917652;0.09726253;0.02389366,0.2417566;-0.1757497;-0.01305424,-0.09898613;0.3619062;0.004494727,-0.2575357;0.2752435;-0.2094015,-0.3824712;0.2573562;-0.4593439,0.07195214;0.00406527;-0.03473274,0.08339699;-0.3748068;-0.00780734,0.08385237;-0.719619;0.05222848,0.08566728;-0.7066908;-0.04628681,-0.06860752;0.002744291;-0.04105457,-0.1021138;-0.3747219;-0.01282962,-0.1158361;-0.7203979;0.04027196,-0.1115663;-0.7074323;-0.05817397,0.01089828;0.3981752;0.03627488,0;0;0,0.00253241;0.1994522;0.01457375,0.006478915;0.4992261;0.02408665,0.1203974;0.374545;0.0005763732,0.1945451;0.1069004;0.03619231,0.2290717;-0.1675828;-0.007015161,-0.1061456;0.3627111;-0.002283301,-0.26121;0.2641479;-0.2135659,-0.4066305;0.2380559;-0.4514148,0.07328937;0.006160282;-0.03147568,0.08197967;-0.3716646;0.008183453,0.08749283;-0.7121472;0.08906102,0.0932669;-0.7617781;0.02884809,-0.07010281;6.047223E-05;-0.03854339,-0.09951108;-0.3744701;0.01857063,-0.1108548;-0.7156925;0.09563309,-0.1077663;-0.703503;-0.002719574,0.005219881;0.3992358;0.02347834,24.83455
+0;0;0,0.005888447;0.1988672;0.02042429,0.01350858;0.4980553;0.04041595,0.1238149;0.3684605;0.008582475,0.1917652;0.09726253;0.02389366,0.2417566;-0.1757497;-0.01305424,-0.09898613;0.3619062;0.004494727,-0.2575357;0.2752435;-0.2094015,-0.3824712;0.2573562;-0.4593439,0.07195214;0.00406527;-0.03473274,0.08339699;-0.3748068;-0.00780734,0.08385237;-0.719619;0.05222848,0.08566728;-0.7066908;-0.04628681,-0.06860752;0.002744291;-0.04105457,-0.1021138;-0.3747219;-0.01282962,-0.1158361;-0.7203979;0.04027196,-0.1115663;-0.7074323;-0.05817397,0.01089828;0.3981752;0.03627488,0;0;0,0.00253241;0.1994522;0.01457375,0.006478915;0.4992261;0.02408665,0.1203974;0.374545;0.0005763732,0.1945451;0.1069004;0.03619231,0.2290717;-0.1675828;-0.007015161,-0.1061456;0.3627111;-0.002283301,-0.26121;0.2641479;-0.2135659,-0.4066305;0.2380559;-0.4514148,0.07328937;0.006160282;-0.03147568,0.08197967;-0.3716646;0.008183453,0.08749283;-0.7121472;0.08906102,0.0932669;-0.7617781;0.02884809,-0.07010281;6.047223E-05;-0.03854339,-0.09951108;-0.3744701;0.01857063,-0.1108548;-0.7156925;0.09563309,-0.1077663;-0.703503;-0.002719574,0.005219881;0.3992358;0.02347834,24.85657
+0;0;0,0.005769609;0.1988591;0.02053695,0.01321562;0.4980421;0.04066492,0.1237511;0.3686638;0.009301839,0.1919217;0.09747511;0.02377345,0.2414583;-0.1755999;-0.0133237,-0.0989049;0.3615934;0.003936727,-0.2569385;0.2692635;-0.2079608,-0.3730713;0.2518171;-0.4621435,0.07203443;0.004047479;-0.03456383,0.08328164;-0.3748392;-0.007761203,0.08388373;-0.719651;0.05227552,0.08606005;-0.7067233;-0.04623237,-0.06851482;0.002744838;-0.04120904,-0.1023238;-0.3746629;-0.01256642,-0.1156571;-0.7203685;0.04044176,-0.1110264;-0.7074032;-0.05798778,0.01065444;0.3981623;0.03648613,0;0;0,0.002399185;0.1994439;0.01470946,0.006075003;0.499215;0.02440676,0.1200955;0.3747429;0.0006919242,0.194278;0.1071416;0.03655943,0.2290061;-0.1672527;-0.007049322,-0.1062182;0.3626851;-0.003031584,-0.2581504;0.2628506;-0.2159861,-0.3985845;0.2339068;-0.4564867,0.07344057;0.00620989;-0.0311114,0.08176587;-0.3716709;0.008090323,0.08746989;-0.7121117;0.08913067,0.0931658;-0.7619534;0.02919012,-0.06999852;1.877604E-05;-0.0387325,-0.09984946;-0.3743975;0.0188984,-0.1108213;-0.7157108;0.09561151,-0.1074875;-0.7035137;-0.002734512,0.00490321;0.399224;0.02374435,24.8679
+0;0;0,0.005769609;0.1988591;0.02053695,0.01321562;0.4980421;0.04066492,0.1237511;0.3686638;0.009301839,0.1919217;0.09747511;0.02377345,0.2414583;-0.1755999;-0.0133237,-0.0989049;0.3615934;0.003936727,-0.2569385;0.2692635;-0.2079608,-0.3730713;0.2518171;-0.4621435,0.07203443;0.004047479;-0.03456383,0.08328164;-0.3748392;-0.007761203,0.08388373;-0.719651;0.05227552,0.08606005;-0.7067233;-0.04623237,-0.06851482;0.002744838;-0.04120904,-0.1023238;-0.3746629;-0.01256642,-0.1156571;-0.7203685;0.04044176,-0.1110264;-0.7074032;-0.05798778,0.01065444;0.3981623;0.03648613,0;0;0,0.002399185;0.1994439;0.01470946,0.006075003;0.499215;0.02440676,0.1200955;0.3747429;0.0006919242,0.194278;0.1071416;0.03655943,0.2290061;-0.1672527;-0.007049322,-0.1062182;0.3626851;-0.003031584,-0.2581504;0.2628506;-0.2159861,-0.3985845;0.2339068;-0.4564867,0.07344057;0.00620989;-0.0311114,0.08176587;-0.3716709;0.008090323,0.08746989;-0.7121117;0.08913067,0.0931658;-0.7619534;0.02919012,-0.06999852;1.877604E-05;-0.0387325,-0.09984946;-0.3743975;0.0188984,-0.1108213;-0.7157108;0.09561151,-0.1074875;-0.7035137;-0.002734512,0.00490321;0.399224;0.02374435,24.87897
+0;0;0,0.005769609;0.1988591;0.02053695,0.01321562;0.4980421;0.04066492,0.1237511;0.3686638;0.009301839,0.1919217;0.09747511;0.02377345,0.2414583;-0.1755999;-0.0133237,-0.0989049;0.3615934;0.003936727,-0.2569385;0.2692635;-0.2079608,-0.3730713;0.2518171;-0.4621435,0.07203443;0.004047479;-0.03456383,0.08328164;-0.3748392;-0.007761203,0.08388373;-0.719651;0.05227552,0.08606005;-0.7067233;-0.04623237,-0.06851482;0.002744838;-0.04120904,-0.1023238;-0.3746629;-0.01256642,-0.1156571;-0.7203685;0.04044176,-0.1110264;-0.7074032;-0.05798778,0.01065444;0.3981623;0.03648613,0;0;0,0.002291668;0.1994375;0.01481411,0.005777287;0.499208;0.02458226,0.1198861;0.3746324;0.001135321,0.1942057;0.1070558;0.03690401,0.2290433;-0.1672692;-0.007051803,-0.1065817;0.3627613;-0.002478162,-0.2509131;0.261915;-0.22019,-0.3905356;0.2305125;-0.4608546,0.07350737;0.006123225;-0.03097052,0.08175619;-0.3717497;0.008323532,0.08756395;-0.7123289;0.08877268,0.09318189;-0.7629338;0.02985494,-0.06992469;6.534138E-05;-0.03886558,-0.09982175;-0.3743661;0.01864327,-0.1107686;-0.715699;0.09527267,-0.1075206;-0.7034952;-0.00307744,0.004660184;0.3992165;0.0239084,24.90144
+0;0;0,0.005592796;0.1988516;0.02065784,0.01260986;0.498031;0.04099435,0.1233066;0.3686753;0.009570898,0.191607;0.09751898;0.02403831,0.2411605;-0.1755274;-0.0132463,-0.09900659;0.361148;0.003509074,-0.2564123;0.2679641;-0.208482,-0.3647446;0.2478025;-0.4658875,0.07209961;0.004072186;-0.03442475,0.08312015;-0.3748248;-0.007673634,0.08421653;-0.7196525;0.05226509,0.08654968;-0.7067274;-0.04623875,-0.06839893;0.002710414;-0.04140338,-0.1028844;-0.3746107;-0.01242897,-0.1156131;-0.720329;0.0406451,-0.1108223;-0.7073594;-0.05777754,0.01020101;0.3981504;0.03674337,0;0;0,0.002291668;0.1994375;0.01481411,0.005777287;0.499208;0.02458226,0.1198861;0.3746324;0.001135321,0.1942057;0.1070558;0.03690401,0.2290433;-0.1672692;-0.007051803,-0.1065817;0.3627613;-0.002478162,-0.2509131;0.261915;-0.22019,-0.3905356;0.2305125;-0.4608546,0.07350737;0.006123225;-0.03097052,0.08175619;-0.3717497;0.008323532,0.08756395;-0.7123289;0.08877268,0.09318189;-0.7629338;0.02985494,-0.06992469;6.534138E-05;-0.03886558,-0.09982175;-0.3743661;0.01864327,-0.1107686;-0.715699;0.09527267,-0.1075206;-0.7034952;-0.00307744,0.004660184;0.3992165;0.0239084,24.92382
+0;0;0,0.005592796;0.1988516;0.02065784,0.01260986;0.498031;0.04099435,0.1233066;0.3686753;0.009570898,0.191607;0.09751898;0.02403831,0.2411605;-0.1755274;-0.0132463,-0.09900659;0.361148;0.003509074,-0.2564123;0.2679641;-0.208482,-0.3647446;0.2478025;-0.4658875,0.07209961;0.004072186;-0.03442475,0.08312015;-0.3748248;-0.007673634,0.08421653;-0.7196525;0.05226509,0.08654968;-0.7067274;-0.04623875,-0.06839893;0.002710414;-0.04140338,-0.1028844;-0.3746107;-0.01242897,-0.1156131;-0.720329;0.0406451,-0.1108223;-0.7073594;-0.05777754,0.01020101;0.3981504;0.03674337,0;0;0,0.002283731;0.1994122;0.0151515,0.005719717;0.4991652;0.02546909,0.1197729;0.3747628;0.001338769,0.194018;0.1071078;0.03667225,0.2289584;-0.1671703;-0.007494558,-0.1060214;0.3623701;-0.003786735,-0.2478512;0.2592683;-0.2220854,-0.3815762;0.2270844;-0.4659744,0.07354075;0.006109422;-0.03089387,0.08166569;-0.3717622;0.008437835,0.08741772;-0.7123666;0.08878434,0.09272427;-0.7630082;0.02988793,-0.06987358;8.118674E-05;-0.03895736,-0.09998222;-0.3742936;0.01880926,-0.1107839;-0.7157034;0.09511544,-0.1070783;-0.7034773;-0.00322254,0.004609415;0.399175;0.02460713,24.93499
+0;0;0,0.005592796;0.1988516;0.02065784,0.01260986;0.498031;0.04099435,0.1233066;0.3686753;0.009570898,0.191607;0.09751898;0.02403831,0.2411605;-0.1755274;-0.0132463,-0.09900659;0.361148;0.003509074,-0.2564123;0.2679641;-0.208482,-0.3647446;0.2478025;-0.4658875,0.07209961;0.004072186;-0.03442475,0.08312015;-0.3748248;-0.007673634,0.08421653;-0.7196525;0.05226509,0.08654968;-0.7067274;-0.04623875,-0.06839893;0.002710414;-0.04140338,-0.1028844;-0.3746107;-0.01242897,-0.1156131;-0.720329;0.0406451,-0.1108223;-0.7073594;-0.05777754,0.01020101;0.3981504;0.03674337,0;0;0,0.002283731;0.1994122;0.0151515,0.005719717;0.4991652;0.02546909,0.1197729;0.3747628;0.001338769,0.194018;0.1071078;0.03667225,0.2289584;-0.1671703;-0.007494558,-0.1060214;0.3623701;-0.003786735,-0.2478512;0.2592683;-0.2220854,-0.3815762;0.2270844;-0.4659744,0.07354075;0.006109422;-0.03089387,0.08166569;-0.3717622;0.008437835,0.08741772;-0.7123666;0.08878434,0.09272427;-0.7630082;0.02988793,-0.06987358;8.118674E-05;-0.03895736,-0.09998222;-0.3742936;0.01880926,-0.1107839;-0.7157034;0.09511544,-0.1070783;-0.7034773;-0.00322254,0.004609415;0.399175;0.02460713,24.95728
+0;0;0,0.005440231;0.1988423;0.02078854,0.01215353;0.4980163;0.04130832,0.1229244;0.3684109;0.00996745,0.1915797;0.09732926;0.02415237,0.2412356;-0.1756572;-0.01343341,-0.09908158;0.3608552;0.003163688,-0.2538898;0.2654094;-0.2097318,-0.3531414;0.2435808;-0.4706392,0.0721596;0.004139113;-0.0342908,0.08308928;-0.3747654;-0.007610181,0.08426476;-0.7195814;0.05239441,0.08680408;-0.7066545;-0.04610464,-0.06826685;0.00265804;-0.04162417,-0.1029754;-0.3746192;-0.01234658,-0.1155736;-0.7203335;0.04078415,-0.1105762;-0.7073608;-0.05762875,0.009848736;0.3981361;0.0369915,0;0;0,0.002189777;0.1994124;0.01516226,0.005519314;0.499167;0.02546694,0.1196259;0.3748572;0.001358794,0.1937127;0.1071718;0.03679466,0.2287989;-0.1670325;-0.007713351,-0.1057346;0.3619242;-0.004953586,-0.2374312;0.260938;-0.2304703,-0.3765242;0.2154074;-0.4691754,0.07362076;0.006086787;-0.03070725,0.08150242;-0.3717721;0.008795997,0.08727365;-0.7125698;0.08831738,0.09266259;-0.7631075;0.02928644,-0.06982505;9.376796E-05;-0.03904425,-0.100133;-0.3742647;0.01872407,-0.110832;-0.7156754;0.0950412,-0.1067844;-0.7034524;-0.003282726,0.004439257;0.3991765;0.02460979,24.9689
+0;0;0,0.005440231;0.1988423;0.02078854,0.01215353;0.4980163;0.04130832,0.1229244;0.3684109;0.00996745,0.1915797;0.09732926;0.02415237,0.2412356;-0.1756572;-0.01343341,-0.09908158;0.3608552;0.003163688,-0.2538898;0.2654094;-0.2097318,-0.3531414;0.2435808;-0.4706392,0.0721596;0.004139113;-0.0342908,0.08308928;-0.3747654;-0.007610181,0.08426476;-0.7195814;0.05239441,0.08680408;-0.7066545;-0.04610464,-0.06826685;0.00265804;-0.04162417,-0.1029754;-0.3746192;-0.01234658,-0.1155736;-0.7203335;0.04078415,-0.1105762;-0.7073608;-0.05762875,0.009848736;0.3981361;0.0369915,0;0;0,0.002189777;0.1994124;0.01516226,0.005519314;0.499167;0.02546694,0.1196259;0.3748572;0.001358794,0.1937127;0.1071718;0.03679466,0.2287989;-0.1670325;-0.007713351,-0.1057346;0.3619242;-0.004953586,-0.2374312;0.260938;-0.2304703,-0.3765242;0.2154074;-0.4691754,0.07362076;0.006086787;-0.03070725,0.08150242;-0.3717721;0.008795997,0.08727365;-0.7125698;0.08831738,0.09266259;-0.7631075;0.02928644,-0.06982505;9.376796E-05;-0.03904425,-0.100133;-0.3742647;0.01872407,-0.110832;-0.7156754;0.0950412,-0.1067844;-0.7034524;-0.003282726,0.004439257;0.3991765;0.02460979,24.9906
+0;0;0,0.005440231;0.1988423;0.02078854,0.01215353;0.4980163;0.04130832,0.1229244;0.3684109;0.00996745,0.1915797;0.09732926;0.02415237,0.2412356;-0.1756572;-0.01343341,-0.09908158;0.3608552;0.003163688,-0.2538898;0.2654094;-0.2097318,-0.3531414;0.2435808;-0.4706392,0.0721596;0.004139113;-0.0342908,0.08308928;-0.3747654;-0.007610181,0.08426476;-0.7195814;0.05239441,0.08680408;-0.7066545;-0.04610464,-0.06826685;0.00265804;-0.04162417,-0.1029754;-0.3746192;-0.01234658,-0.1155736;-0.7203335;0.04078415,-0.1105762;-0.7073608;-0.05762875,0.009848736;0.3981361;0.0369915,0;0;0,0.002234137;0.1993968;0.01536034,0.005651942;0.4991417;0.02591934,0.1196413;0.3742931;0.001932155,0.1936036;0.1064681;0.03656355,0.2287247;-0.1676462;-0.008468408,-0.1052508;0.3614263;-0.005447567,-0.2321092;0.2482803;-0.2279446,-0.3670618;0.2204151;-0.471689,0.07374407;0.00611187;-0.03040488,0.08112195;-0.3718204;0.008489078,0.08699587;-0.7126122;0.08802803,0.09206969;-0.7629432;0.02868837,-0.06973028;5.050161E-05;-0.03921332,-0.1001251;-0.3742599;0.01881977,-0.1109478;-0.7157522;0.09475303,-0.1065371;-0.7035217;-0.003556661,0.004527747;0.3991525;0.02497287,25.01297
+0;0;0,0.005383483;0.1988488;0.02074042,0.01219989;0.4980485;0.0408013,0.1230253;0.3685634;0.01002221,0.1916751;0.09748045;0.02420885,0.2415355;-0.1753957;-0.01390383,-0.09885462;0.360591;0.002444223,-0.2388359;0.2683062;-0.2218073,-0.3461741;0.2433977;-0.4792138,0.07234643;0.004081053;-0.0339019,0.08302953;-0.3748665;-0.007737322,0.08440361;-0.7196999;0.05216326,0.08715745;-0.7067826;-0.04632836,-0.06819448;0.002655979;-0.04174277,-0.102861;-0.374612;-0.01229621,-0.1155437;-0.7202956;0.04101423,-0.1103312;-0.7073389;-0.05738474,0.009837555;0.39816;0.03671643,0;0;0,0.002055274;0.1994032;0.01530205,0.005277182;0.499153;0.02578362,0.1193651;0.374501;0.001795711,0.1932145;0.1066541;0.03649879,0.2284955;-0.167424;-0.008628204,-0.1052556;0.3612033;-0.006373314,-0.2339005;0.2478366;-0.2277294,-0.3547646;0.2123542;-0.4777951,0.07378972;0.006119943;-0.03029229,0.08120108;-0.3717998;0.008717496,0.08682032;-0.7127302;0.08767864,0.08885548;-0.7004986;-0.01070906,-0.06965426;4.682101E-05;-0.03934819,-0.1005385;-0.3741017;0.01946568,-0.1111047;-0.7157907;0.09454538,-0.1064982;-0.7035644;-0.003754564,0.004213765;0.399163;0.02486011,25.03551
+0;0;0,0.005383483;0.1988488;0.02074042,0.01219989;0.4980485;0.0408013,0.1230253;0.3685634;0.01002221,0.1916751;0.09748045;0.02420885,0.2415355;-0.1753957;-0.01390383,-0.09885462;0.360591;0.002444223,-0.2388359;0.2683062;-0.2218073,-0.3461741;0.2433977;-0.4792138,0.07234643;0.004081053;-0.0339019,0.08302953;-0.3748665;-0.007737322,0.08440361;-0.7196999;0.05216326,0.08715745;-0.7067826;-0.04632836,-0.06819448;0.002655979;-0.04174277,-0.102861;-0.374612;-0.01229621,-0.1155437;-0.7202956;0.04101423,-0.1103312;-0.7073389;-0.05738474,0.009837555;0.39816;0.03671643,0;0;0,0.002055274;0.1994032;0.01530205,0.005277182;0.499153;0.02578362,0.1193651;0.374501;0.001795711,0.1932145;0.1066541;0.03649879,0.2284955;-0.167424;-0.008628204,-0.1052556;0.3612033;-0.006373314,-0.2339005;0.2478366;-0.2277294,-0.3547646;0.2123542;-0.4777951,0.07378972;0.006119943;-0.03029229,0.08120108;-0.3717998;0.008717496,0.08682032;-0.7127302;0.08767864,0.08885548;-0.7004986;-0.01070906,-0.06965426;4.682101E-05;-0.03934819,-0.1005385;-0.3741017;0.01946568,-0.1111047;-0.7157907;0.09454538,-0.1064982;-0.7035644;-0.003754564,0.004213765;0.399163;0.02486011,25.05758
+0;0;0,0.005383483;0.1988488;0.02074042,0.01219989;0.4980485;0.0408013,0.1230253;0.3685634;0.01002221,0.1916751;0.09748045;0.02420885,0.2415355;-0.1753957;-0.01390383,-0.09885462;0.360591;0.002444223,-0.2388359;0.2683062;-0.2218073,-0.3461741;0.2433977;-0.4792138,0.07234643;0.004081053;-0.0339019,0.08302953;-0.3748665;-0.007737322,0.08440361;-0.7196999;0.05216326,0.08715745;-0.7067826;-0.04632836,-0.06819448;0.002655979;-0.04174277,-0.102861;-0.374612;-0.01229621,-0.1155437;-0.7202956;0.04101423,-0.1103312;-0.7073389;-0.05738474,0.009837555;0.39816;0.03671643,0;0;0,0.002094614;0.1993973;0.01537371,0.005401717;0.4991438;0.0259214,0.1194253;0.3742938;0.001992634,0.1932614;0.1063976;0.03634134,0.2288067;-0.1676207;-0.008941229,-0.1049401;0.361142;-0.006982723,-0.2330566;0.2515971;-0.2305584,-0.3494666;0.2003178;-0.4799961,0.07388549;0.006114236;-0.03005912,0.08118229;-0.3718062;0.008964906,0.08673023;-0.7128336;0.08751142,0.08901323;-0.7006015;-0.01087096,-0.06960069;3.086499E-05;-0.03944292,-0.1004995;-0.3741193;0.01935278,-0.11114;-0.7158056;0.0944338,-0.1062856;-0.7035788;-0.00385429,0.004300826;0.3991543;0.02497775,25.07992
+0;0;0,0.005365899;0.1988491;0.02074247,0.01226363;0.498052;0.0407193,0.1233644;0.3688285;0.01107123,0.1917907;0.0976274;0.02402377,0.2420425;-0.1751218;-0.01448154,-0.09870488;0.3605537;0.002040245,-0.2352069;0.277608;-0.2279319,-0.3417861;0.2374864;-0.4837271,0.07248884;0.004057187;-0.03359922,0.08304611;-0.3749157;-0.007752348,0.08444599;-0.7197511;0.0521362,0.08762224;-0.7068422;-0.04634126,-0.06814645;0.002673999;-0.04181997,-0.1030037;-0.3745686;-0.01227354,-0.1155154;-0.7202476;0.04110724,-0.1098809;-0.7072999;-0.05726689,0.009857518;0.3981626;0.03667799,0;0;0,0.001884548;0.1994047;0.01530383,0.00500147;0.4991565;0.02576922,0.1190677;0.3741548;0.001970291,0.192994;0.106266;0.03618234,0.2286423;-0.1678027;-0.008713026,-0.1050973;0.3609825;-0.007554969,-0.2331282;0.2517213;-0.2313184,-0.3393322;0.1928409;-0.4836155,0.07400616;0.006097544;-0.02976421,0.08073809;-0.3718647;0.008955661,0.08615878;-0.7129665;0.08718711,0.08860433;-0.7007415;-0.01119007,-0.06952631;4.538599E-05;-0.03957384,-0.1005011;-0.3741246;0.01905507,-0.1118285;-0.715875;0.09374355,-0.1068111;-0.7036514;-0.004535779,0.003954101;0.3991662;0.0248456,25.10227
+0;0;0,0.005365899;0.1988491;0.02074247,0.01226363;0.498052;0.0407193,0.1233644;0.3688285;0.01107123,0.1917907;0.0976274;0.02402377,0.2420425;-0.1751218;-0.01448154,-0.09870488;0.3605537;0.002040245,-0.2352069;0.277608;-0.2279319,-0.3417861;0.2374864;-0.4837271,0.07248884;0.004057187;-0.03359922,0.08304611;-0.3749157;-0.007752348,0.08444599;-0.7197511;0.0521362,0.08762224;-0.7068422;-0.04634126,-0.06814645;0.002673999;-0.04181997,-0.1030037;-0.3745686;-0.01227354,-0.1155154;-0.7202476;0.04110724,-0.1098809;-0.7072999;-0.05726689,0.009857518;0.3981626;0.03667799,0;0;0,0.001884548;0.1994047;0.01530383,0.00500147;0.4991565;0.02576922,0.1190677;0.3741548;0.001970291,0.192994;0.106266;0.03618234,0.2286423;-0.1678027;-0.008713026,-0.1050973;0.3609825;-0.007554969,-0.2331282;0.2517213;-0.2313184,-0.3393322;0.1928409;-0.4836155,0.07400616;0.006097544;-0.02976421,0.08073809;-0.3718647;0.008955661,0.08615878;-0.7129665;0.08718711,0.08860433;-0.7007415;-0.01119007,-0.06952631;4.538599E-05;-0.03957384,-0.1005011;-0.3741246;0.01905507,-0.1118285;-0.715875;0.09374355,-0.1068111;-0.7036514;-0.004535779,0.003954101;0.3991662;0.0248456,25.12478
+0;0;0,0.005365899;0.1988491;0.02074247,0.01226363;0.498052;0.0407193,0.1233644;0.3688285;0.01107123,0.1917907;0.0976274;0.02402377,0.2420425;-0.1751218;-0.01448154,-0.09870488;0.3605537;0.002040245,-0.2352069;0.277608;-0.2279319,-0.3417861;0.2374864;-0.4837271,0.07248884;0.004057187;-0.03359922,0.08304611;-0.3749157;-0.007752348,0.08444599;-0.7197511;0.0521362,0.08762224;-0.7068422;-0.04634126,-0.06814645;0.002673999;-0.04181997,-0.1030037;-0.3745686;-0.01227354,-0.1155154;-0.7202476;0.04110724,-0.1098809;-0.7072999;-0.05726689,0.009857518;0.3981626;0.03667799,0;0;0,0.001718398;0.1994144;0.01519694,0.004607687;0.4991723;0.02555829,0.1188011;0.3743161;0.001851296,0.192843;0.1065097;0.03645662,0.2288298;-0.167385;-0.009223267,-0.1052293;0.3612041;-0.008568604,-0.231803;0.2532422;-0.233787,-0.3302724;0.1757452;-0.4841827,0.0742876;0.006099087;-0.0290543,0.08072601;-0.3719874;0.00848474,0.08608633;-0.713092;0.08670834,0.08878897;-0.7008754;-0.01166061,-0.06936365;4.995034E-05;-0.03985827,-0.1004305;-0.3741106;0.01878275,-0.1118454;-0.7158735;0.09340051,-0.1065706;-0.7036568;-0.004864089,0.003643509;0.3991809;0.02466516,25.13582
+0;0;0,0.005136026;0.1988254;0.02102602,0.01143919;0.4979854;0.04185871,0.1227718;0.3692208;0.01136643,0.1912778;0.09804234;0.02437333,0.2417071;-0.1746117;-0.01457102,-0.09888788;0.3604468;0.001620863,-0.2336974;0.2816013;-0.2307792,-0.3349861;0.2316002;-0.4869832,0.07256498;0.004065953;-0.03343338,0.08303466;-0.3749151;-0.007670643,0.08438952;-0.7197912;0.05198393,0.08771018;-0.706862;-0.04649226,-0.06802666;0.002667477;-0.04201498,-0.10328;-0.374527;-0.0123242,-0.1156516;-0.7202038;0.04110339,-0.1028486;-0.7640436;-0.02510655,0.009263003;0.3981054;0.03747063,0;0;0,0.001718398;0.1994144;0.01519694,0.004607687;0.4991723;0.02555829,0.1188011;0.3743161;0.001851296,0.192843;0.1065097;0.03645662,0.2288298;-0.167385;-0.009223267,-0.1052293;0.3612041;-0.008568604,-0.231803;0.2532422;-0.233787,-0.3302724;0.1757452;-0.4841827,0.0742876;0.006099087;-0.0290543,0.08072601;-0.3719874;0.00848474,0.08608633;-0.713092;0.08670834,0.08878897;-0.7008754;-0.01166061,-0.06936365;4.995034E-05;-0.03985827,-0.1004305;-0.3741106;0.01878275,-0.1118454;-0.7158735;0.09340051,-0.1065706;-0.7036568;-0.004864089,0.003643509;0.3991809;0.02466516,25.15811
+0;0;0,0.005136026;0.1988254;0.02102602,0.01143919;0.4979854;0.04185871,0.1227718;0.3692208;0.01136643,0.1912778;0.09804234;0.02437333,0.2417071;-0.1746117;-0.01457102,-0.09888788;0.3604468;0.001620863,-0.2336974;0.2816013;-0.2307792,-0.3349861;0.2316002;-0.4869832,0.07256498;0.004065953;-0.03343338,0.08303466;-0.3749151;-0.007670643,0.08438952;-0.7197912;0.05198393,0.08771018;-0.706862;-0.04649226,-0.06802666;0.002667477;-0.04201498,-0.10328;-0.374527;-0.0123242,-0.1156516;-0.7202038;0.04110339,-0.1028486;-0.7640436;-0.02510655,0.009263003;0.3981054;0.03747063,0;0;0,0.001332206;0.1994247;0.01509971,0.003927457;0.4991896;0.02534355,0.1182201;0.3742973;0.001881,0.1920558;0.1064338;0.03648479,0.2284059;-0.1673967;-0.009292431,-0.1056474;0.3610851;-0.00923935,-0.2288188;0.2538266;-0.2366694,-0.3282768;0.1747124;-0.486167,0.07422756;0.006119172;-0.02920314,0.07994977;-0.3719894;0.008229246,0.08516795;-0.7131;0.08643613,0.0880653;-0.7008913;-0.01192584,-0.06933019;3.58882E-05;-0.03991646,-0.1011426;-0.3740333;0.01890728,-0.1129074;-0.7158692;0.09313543,-0.1074363;-0.703654;-0.005118161,0.003028067;0.3991973;0.0244816,25.16993
+0;0;0,0.005136026;0.1988254;0.02102602,0.01143919;0.4979854;0.04185871,0.1227718;0.3692208;0.01136643,0.1912778;0.09804234;0.02437333,0.2417071;-0.1746117;-0.01457102,-0.09888788;0.3604468;0.001620863,-0.2336974;0.2816013;-0.2307792,-0.3349861;0.2316002;-0.4869832,0.07256498;0.004065953;-0.03343338,0.08303466;-0.3749151;-0.007670643,0.08438952;-0.7197912;0.05198393,0.08771018;-0.706862;-0.04649226,-0.06802666;0.002667477;-0.04201498,-0.10328;-0.374527;-0.0123242,-0.1156516;-0.7202038;0.04110339,-0.1028486;-0.7640436;-0.02510655,0.009263003;0.3981054;0.03747063,0;0;0,0.001332206;0.1994247;0.01509971,0.003927457;0.4991896;0.02534355,0.1182201;0.3742973;0.001881,0.1920558;0.1064338;0.03648479,0.2284059;-0.1673967;-0.009292431,-0.1056474;0.3610851;-0.00923935,-0.2288188;0.2538266;-0.2366694,-0.3282768;0.1747124;-0.486167,0.07422756;0.006119172;-0.02920314,0.07994977;-0.3719894;0.008229246,0.08516795;-0.7131;0.08643613,0.0880653;-0.7008913;-0.01192584,-0.06933019;3.58882E-05;-0.03991646,-0.1011426;-0.3740333;0.01890728,-0.1129074;-0.7158692;0.09313543,-0.1074363;-0.703654;-0.005118161,0.003028067;0.3991973;0.0244816,25.19176
+0;0;0,0.004948966;0.198818;0.02114036,0.01102503;0.4979692;0.04216907,0.1224071;0.3690864;0.01158252,0.1909676;0.0979175;0.02450049,0.2415323;-0.1746811;-0.01465616,-0.09898213;0.3602473;0.00135022,-0.2296287;0.286165;-0.2349616,-0.326412;0.2281782;-0.4912242,0.07267489;0.004088005;-0.03319109,0.08283916;-0.3749152;-0.007632365,0.08433706;-0.7197639;0.0521771,0.08779237;-0.7068375;-0.04629397,-0.06793826;0.002691816;-0.04215622,-0.1037259;-0.374447;-0.01239778,-0.1160214;-0.720126;0.04103294,-0.1041771;-0.7645149;-0.02473947,0.008934015;0.3980906;0.0377093,0;0;0,0.001319007;0.1994308;0.01502056,0.003872951;0.4992002;0.02514801,0.1181568;0.3742722;0.001669604,0.1922251;0.1065094;0.03655481,0.2283744;-0.1673418;-0.009256948,-0.1056324;0.3613573;-0.00988853,-0.2206451;0.2522365;-0.2406801,-0.3253745;0.1757263;-0.4888291,0.07419135;0.006104232;-0.02929817,0.0798729;-0.3720151;0.00803162,0.08502401;-0.7131581;0.0861015,0.08805467;-0.7009433;-0.01225756,-0.06931511;5.498779E-05;-0.03994261,-0.1009167;-0.3741128;0.01836514,-0.1131861;-0.7158858;0.09280121,-0.1075821;-0.7036765;-0.005443819,0.002982201;0.3992076;0.02431992,25.21394
+0;0;0,0.004948966;0.198818;0.02114036,0.01102503;0.4979692;0.04216907,0.1224071;0.3690864;0.01158252,0.1909676;0.0979175;0.02450049,0.2415323;-0.1746811;-0.01465616,-0.09898213;0.3602473;0.00135022,-0.2296287;0.286165;-0.2349616,-0.326412;0.2281782;-0.4912242,0.07267489;0.004088005;-0.03319109,0.08283916;-0.3749152;-0.007632365,0.08433706;-0.7197639;0.0521771,0.08779237;-0.7068375;-0.04629397,-0.06793826;0.002691816;-0.04215622,-0.1037259;-0.374447;-0.01239778,-0.1160214;-0.720126;0.04103294,-0.1041771;-0.7645149;-0.02473947,0.008934015;0.3980906;0.0377093,0;0;0,0.001237876;0.1994347;0.0149761,0.003730706;0.4992063;0.02505557,0.118095;0.3744212;0.001766013,0.1921824;0.1066925;0.03687162,0.2283145;-0.1671183;-0.009194665,-0.1065952;0.3617173;-0.00761402,-0.2143133;0.248864;-0.2401241,-0.3120598;0.1644778;-0.4885684,0.07425518;0.006105016;-0.02913582,0.07979116;-0.37204;0.00795497,0.08485603;-0.7131608;0.08612752,0.09052673;-0.7629049;0.02605486,-0.06925305;6.532732E-05;-0.0400501,-0.1008359;-0.3741302;0.01808945,-0.1133733;-0.7158682;0.09264099,-0.1084765;-0.703656;-0.005642369,0.002854992;0.3992134;0.0242403,25.22527
+0;0;0,0.004948966;0.198818;0.02114036,0.01102503;0.4979692;0.04216907,0.1224071;0.3690864;0.01158252,0.1909676;0.0979175;0.02450049,0.2415323;-0.1746811;-0.01465616,-0.09898213;0.3602473;0.00135022,-0.2296287;0.286165;-0.2349616,-0.326412;0.2281782;-0.4912242,0.07267489;0.004088005;-0.03319109,0.08283916;-0.3749152;-0.007632365,0.08433706;-0.7197639;0.0521771,0.08779237;-0.7068375;-0.04629397,-0.06793826;0.002691816;-0.04215622,-0.1037259;-0.374447;-0.01239778,-0.1160214;-0.720126;0.04103294,-0.1041771;-0.7645149;-0.02473947,0.008934015;0.3980906;0.0377093,0;0;0,0.001237876;0.1994347;0.0149761,0.003730706;0.4992063;0.02505557,0.118095;0.3744212;0.001766013,0.1921824;0.1066925;0.03687162,0.2283145;-0.1671183;-0.009194665,-0.1065952;0.3617173;-0.00761402,-0.2143133;0.248864;-0.2401241,-0.3120598;0.1644778;-0.4885684,0.07425518;0.006105016;-0.02913582,0.07979116;-0.37204;0.00795497,0.08485603;-0.7131608;0.08612752,0.09052673;-0.7629049;0.02605486,-0.06925305;6.532732E-05;-0.0400501,-0.1008359;-0.3741302;0.01808945,-0.1133733;-0.7158682;0.09264099,-0.1084765;-0.703656;-0.005642369,0.002854992;0.3992134;0.0242403,25.24743
+0;0;0,0.004655322;0.1988114;0.02126842,0.01059919;0.4979558;0.04243958,0.1220205;0.3691573;0.01164663,0.1907668;0.09804067;0.02467328,0.2413493;-0.1744685;-0.01507799,-0.09909587;0.3600836;0.0009538308,-0.2257254;0.2875035;-0.2379962,-0.3180884;0.2251409;-0.4948618,0.07281217;0.004192243;-0.03287572,0.08237994;-0.3748402;-0.007520754,0.08387946;-0.7196791;0.05234437,0.08747265;-0.7067448;-0.04612315,-0.06773836;0.002605296;-0.04248207,-0.1041295;-0.3744587;-0.01250841,-0.116524;-0.7200942;0.04118009,-0.1047017;-0.7647598;-0.02428201,0.008560233;0.3980787;0.03792046,0;0;0,0.001040532;0.1994352;0.01498329,0.003286028;0.499211;0.024993,0.1177327;0.3744419;0.001780851,0.1919571;0.106789;0.03717396,0.2282983;-0.1670222;-0.008725442,-0.1066848;0.3616703;-0.008558463,-0.2127652;0.2372238;-0.2358469,-0.2868173;0.125927;-0.481874,0.07421207;0.00617175;-0.02923144,0.07913484;-0.3719865;0.007810362,0.08425811;-0.7130911;0.08604937,0.08948775;-0.7623445;0.02529118,-0.06924932;-1.454208E-06;-0.04005661,-0.1014977;-0.3741161;0.0182381,-0.1143205;-0.7158858;0.09259558,-0.1091275;-0.7036832;-0.005670838,0.00247923;0.3992174;0.02420454,25.26982
+0;0;0,0.004655322;0.1988114;0.02126842,0.01059919;0.4979558;0.04243958,0.1220205;0.3691573;0.01164663,0.1907668;0.09804067;0.02467328,0.2413493;-0.1744685;-0.01507799,-0.09909587;0.3600836;0.0009538308,-0.2257254;0.2875035;-0.2379962,-0.3180884;0.2251409;-0.4948618,0.07281217;0.004192243;-0.03287572,0.08237994;-0.3748402;-0.007520754,0.08387946;-0.7196791;0.05234437,0.08747265;-0.7067448;-0.04612315,-0.06773836;0.002605296;-0.04248207,-0.1041295;-0.3744587;-0.01250841,-0.116524;-0.7200942;0.04118009,-0.1047017;-0.7647598;-0.02428201,0.008560233;0.3980787;0.03792046,0;0;0,0.001040532;0.1994352;0.01498329,0.003286028;0.499211;0.024993,0.1177327;0.3744419;0.001780851,0.1919571;0.106789;0.03717396,0.2282983;-0.1670222;-0.008725442,-0.1066848;0.3616703;-0.008558463,-0.2127652;0.2372238;-0.2358469,-0.2868173;0.125927;-0.481874,0.07421207;0.00617175;-0.02923144,0.07913484;-0.3719865;0.007810362,0.08425811;-0.7130911;0.08604937,0.08948775;-0.7623445;0.02529118,-0.06924932;-1.454208E-06;-0.04005661,-0.1014977;-0.3741161;0.0182381,-0.1143205;-0.7158858;0.09259558,-0.1091275;-0.7036832;-0.005670838,0.00247923;0.3992174;0.02420454,25.28116
+0;0;0,0.004655322;0.1988114;0.02126842,0.01059919;0.4979558;0.04243958,0.1220205;0.3691573;0.01164663,0.1907668;0.09804067;0.02467328,0.2413493;-0.1744685;-0.01507799,-0.09909587;0.3600836;0.0009538308,-0.2257254;0.2875035;-0.2379962,-0.3180884;0.2251409;-0.4948618,0.07281217;0.004192243;-0.03287572,0.08237994;-0.3748402;-0.007520754,0.08387946;-0.7196791;0.05234437,0.08747265;-0.7067448;-0.04612315,-0.06773836;0.002605296;-0.04248207,-0.1041295;-0.3744587;-0.01250841,-0.116524;-0.7200942;0.04118009,-0.1047017;-0.7647598;-0.02428201,0.008560233;0.3980787;0.03792046,0;0;0,0.001050371;0.199438;0.01494622,0.00327032;0.4992171;0.02485758,0.1177413;0.3744427;0.001783147,0.1918287;0.106775;0.03735051,0.2284772;-0.166977;-0.0086574,-0.106449;0.3615018;-0.009270314,-0.2143543;0.2370717;-0.2357071,-0.3110553;0.1539558;-0.4849874,0.07423846;0.006121734;-0.02917492,0.07889021;-0.3720548;0.007715007,0.08401009;-0.7131534;0.08598096,0.08984195;-0.7622932;0.02512968,-0.06922314;4.486924E-05;-0.04010181,-0.1013077;-0.3739547;0.01901554,-0.1143523;-0.7158459;0.09277328,-0.1089429;-0.7036492;-0.005480401,0.002469167;0.3992231;0.02410518,25.30325
+0;0;0,0.004611138;0.1987918;0.0214611,0.01059837;0.4979239;0.04279137,0.121915;0.3690767;0.01167211,0.1908776;0.0980325;0.0250586,0.2414937;-0.174412;-0.01509163,-0.09880417;0.3598509;0.0005397797,-0.2198813;0.2862264;-0.2409551,-0.3085092;0.219636;-0.4980753,0.07300062;0.004176998;-0.03245707,0.08237513;-0.374885;-0.007475207,0.08394299;-0.7197448;0.05226807,0.09655989;-0.7666065;-0.01044635,-0.06770197;0.002631153;-0.04253846,-0.1038779;-0.3744403;-0.01239921,-0.1166211;-0.7200844;0.04115218,-0.1044829;-0.7646757;-0.02433683,0.008531828;0.3980498;0.03822042,0;0;0,0.001050371;0.199438;0.01494622,0.00327032;0.4992171;0.02485758,0.1177413;0.3744427;0.001783147,0.1918287;0.106775;0.03735051,0.2284772;-0.166977;-0.0086574,-0.106449;0.3615018;-0.009270314,-0.2143543;0.2370717;-0.2357071,-0.3110553;0.1539558;-0.4849874,0.07423846;0.006121734;-0.02917492,0.07889021;-0.3720548;0.007715007,0.08401009;-0.7131534;0.08598096,0.08984195;-0.7622932;0.02512968,-0.06922314;4.486924E-05;-0.04010181,-0.1013077;-0.3739547;0.01901554,-0.1143523;-0.7158459;0.09277328,-0.1089429;-0.7036492;-0.005480401,0.002469167;0.3992231;0.02410518,25.32567
+0;0;0,0.004611138;0.1987918;0.0214611,0.01059837;0.4979239;0.04279137,0.121915;0.3690767;0.01167211,0.1908776;0.0980325;0.0250586,0.2414937;-0.174412;-0.01509163,-0.09880417;0.3598509;0.0005397797,-0.2198813;0.2862264;-0.2409551,-0.3085092;0.219636;-0.4980753,0.07300062;0.004176998;-0.03245707,0.08237513;-0.374885;-0.007475207,0.08394299;-0.7197448;0.05226807,0.09655989;-0.7666065;-0.01044635,-0.06770197;0.002631153;-0.04253846,-0.1038779;-0.3744403;-0.01239921,-0.1166211;-0.7200844;0.04115218,-0.1044829;-0.7646757;-0.02433683,0.008531828;0.3980498;0.03822042,0;0;0,0.0009828898;0.1994453;0.01485286,0.003167885;0.4992274;0.02464945,0.1176942;0.374506;0.001781719,0.1921159;0.1069634;0.03759155,0.2287932;-0.1668845;-0.00781906,-0.1064426;0.3617259;-0.009950206,-0.215089;0.2366617;-0.2356822,-0.3097957;0.1504651;-0.4846817,0.0742948;0.006161846;-0.02902266,0.07880364;-0.3719831;0.008207452,0.08397965;-0.7131706;0.08608097,0.0895882;-0.7621303;0.02497518,-0.06917302;1.36216E-05;-0.04018821,-0.1012007;-0.3739725;0.01904483,-0.1140518;-0.7158753;0.09278314,-0.108448;-0.7036769;-0.00545992,0.002383446;0.3992328;0.02396329,25.33681
+0;0;0,0.004611138;0.1987918;0.0214611,0.01059837;0.4979239;0.04279137,0.121915;0.3690767;0.01167211,0.1908776;0.0980325;0.0250586,0.2414937;-0.174412;-0.01509163,-0.09880417;0.3598509;0.0005397797,-0.2198813;0.2862264;-0.2409551,-0.3085092;0.219636;-0.4980753,0.07300062;0.004176998;-0.03245707,0.08237513;-0.374885;-0.007475207,0.08394299;-0.7197448;0.05226807,0.09655989;-0.7666065;-0.01044635,-0.06770197;0.002631153;-0.04253846,-0.1038779;-0.3744403;-0.01239921,-0.1166211;-0.7200844;0.04115218,-0.1044829;-0.7646757;-0.02433683,0.008531828;0.3980498;0.03822042,0;0;0,0.0009828898;0.1994453;0.01485286,0.003167885;0.4992274;0.02464945,0.1176942;0.374506;0.001781719,0.1921159;0.1069634;0.03759155,0.2287932;-0.1668845;-0.00781906,-0.1064426;0.3617259;-0.009950206,-0.215089;0.2366617;-0.2356822,-0.3097957;0.1504651;-0.4846817,0.0742948;0.006161846;-0.02902266,0.07880364;-0.3719831;0.008207452,0.08397965;-0.7131706;0.08608097,0.0895882;-0.7621303;0.02497518,-0.06917302;1.36216E-05;-0.04018821,-0.1012007;-0.3739725;0.01904483,-0.1140518;-0.7158753;0.09278314,-0.108448;-0.7036769;-0.00545992,0.002383446;0.3992328;0.02396329,25.35915
+0;0;0,0.004500248;0.1987898;0.02150296,0.01044429;0.4979225;0.0428353,0.1217967;0.3690442;0.01183256,0.1909466;0.09803677;0.02499511,0.2416206;-0.1743944;-0.01517202,-0.09873268;0.3598256;1.955032E-05,-0.2110975;0.2802946;-0.2438021,-0.3007583;0.2178542;-0.5016046,0.07303713;0.004180303;-0.03237442,0.08220801;-0.3748955;-0.007525455,0.08391591;-0.7197546;0.05221811,0.09642045;-0.765885;-0.0114042,-0.06763681;0.00267967;-0.04263897,-0.1041063;-0.3744061;-0.01303634,-0.1167869;-0.7199442;0.04120917,-0.1044902;-0.7640785;-0.02476737,0.008394532;0.398048;0.03826625,0;0;0,0.000875017;0.1994409;0.01491868,0.00293236;0.499223;0.02473454,0.1174837;0.3745184;0.001806011,0.1918071;0.1069882;0.03791169,0.2284596;-0.1669217;-0.007143717,-0.1064556;0.3618185;-0.010575,-0.215909;0.2360332;-0.235515,-0.2945094;0.1321929;-0.4833843,0.0743029;0.006092037;-0.02901665,0.0793457;-0.3719572;0.00910601,0.08372927;-0.7133186;0.08626289,0.08837859;-0.762459;0.02531065,-0.06909069;0.0001219016;-0.04032942,-0.1012899;-0.3738402;0.01896303,-0.1144258;-0.7156963;0.09286712,-0.1086336;-0.7034975;-0.005365096,0.002180764;0.3992282;0.02404667,25.38144
+0;0;0,0.004500248;0.1987898;0.02150296,0.01044429;0.4979225;0.0428353,0.1217967;0.3690442;0.01183256,0.1909466;0.09803677;0.02499511,0.2416206;-0.1743944;-0.01517202,-0.09873268;0.3598256;1.955032E-05,-0.2110975;0.2802946;-0.2438021,-0.3007583;0.2178542;-0.5016046,0.07303713;0.004180303;-0.03237442,0.08220801;-0.3748955;-0.007525455,0.08391591;-0.7197546;0.05221811,0.09642045;-0.765885;-0.0114042,-0.06763681;0.00267967;-0.04263897,-0.1041063;-0.3744061;-0.01303634,-0.1167869;-0.7199442;0.04120917,-0.1044902;-0.7640785;-0.02476737,0.008394532;0.398048;0.03826625,0;0;0,0.000875017;0.1994409;0.01491868,0.00293236;0.499223;0.02473454,0.1174837;0.3745184;0.001806011,0.1918071;0.1069882;0.03791169,0.2284596;-0.1669217;-0.007143717,-0.1064556;0.3618185;-0.010575,-0.215909;0.2360332;-0.235515,-0.2945094;0.1321929;-0.4833843,0.0743029;0.006092037;-0.02901665,0.0793457;-0.3719572;0.00910601,0.08372927;-0.7133186;0.08626289,0.08837859;-0.762459;0.02531065,-0.06909069;0.0001219016;-0.04032942,-0.1012899;-0.3738402;0.01896303,-0.1144258;-0.7156963;0.09286712,-0.1086336;-0.7034975;-0.005365096,0.002180764;0.3992282;0.02404667,25.39276
+0;0;0,0.004500248;0.1987898;0.02150296,0.01044429;0.4979225;0.0428353,0.1217967;0.3690442;0.01183256,0.1909466;0.09803677;0.02499511,0.2416206;-0.1743944;-0.01517202,-0.09873268;0.3598256;1.955032E-05,-0.2110975;0.2802946;-0.2438021,-0.3007583;0.2178542;-0.5016046,0.07303713;0.004180303;-0.03237442,0.08220801;-0.3748955;-0.007525455,0.08391591;-0.7197546;0.05221811,0.09642045;-0.765885;-0.0114042,-0.06763681;0.00267967;-0.04263897,-0.1041063;-0.3744061;-0.01303634,-0.1167869;-0.7199442;0.04120917,-0.1044902;-0.7640785;-0.02476737,0.008394532;0.398048;0.03826625,0;0;0,0.0008187499;0.1994415;0.01491382,0.002748625;0.4992259;0.02468693,0.1173241;0.374463;0.001758849,0.1916843;0.1069621;0.03800599,0.2287729;-0.1669627;-0.006598745,-0.1065095;0.3618575;-0.01093032,-0.2041318;0.2133031;-0.2272668,-0.2932455;0.1405149;-0.4825326,0.07429971;0.006092075;-0.02902483,0.07909871;-0.3719613;0.009088395,0.0834017;-0.7132789;0.08644341,0.08822709;-0.7623424;0.02540505,-0.06905054;0.000126773;-0.0403981,-0.1017997;-0.3738007;0.01881114,-0.1147222;-0.7156518;0.0927763,-0.1088174;-0.7034537;-0.005449094,0.002036269;0.3992307;0.02401349,25.40389
+0;0;0,0.004454913;0.1987842;0.02156343,0.01036388;0.4979124;0.04296704,0.1217911;0.3691167;0.01215567,0.1909391;0.09809297;0.02499,0.2418616;-0.1742656;-0.01535505,-0.09872527;0.3597714;-5.624071E-05,-0.2077273;0.2754335;-0.243789,-0.2947848;0.2049475;-0.5004069,0.0730681;0.004182086;-0.03230424,0.08221194;-0.3748975;-0.007504828,0.08396906;-0.7197663;0.05218141,0.09595455;-0.7665966;-0.01069506,-0.06753217;0.002727551;-0.04280147,-0.1040079;-0.3743934;-0.01365813,-0.1167755;-0.7198439;0.04112244,-0.1048011;-0.7644975;-0.0243257,0.008318959;0.3980387;0.03837739,0;0;0,0.0008187499;0.1994415;0.01491382,0.002748625;0.4992259;0.02468693,0.1173241;0.374463;0.001758849,0.1916843;0.1069621;0.03800599,0.2287729;-0.1669627;-0.006598745,-0.1065095;0.3618575;-0.01093032,-0.2041318;0.2133031;-0.2272668,-0.2932455;0.1405149;-0.4825326,0.07429971;0.006092075;-0.02902483,0.07909871;-0.3719613;0.009088395,0.0834017;-0.7132789;0.08644341,0.08822709;-0.7623424;0.02540505,-0.06905054;0.000126773;-0.0403981,-0.1017997;-0.3738007;0.01881114,-0.1147222;-0.7156518;0.0927763,-0.1088174;-0.7034537;-0.005449094,0.002036269;0.3992307;0.02401349,25.42623
+0;0;0,0.004454913;0.1987842;0.02156343,0.01036388;0.4979124;0.04296704,0.1217911;0.3691167;0.01215567,0.1909391;0.09809297;0.02499,0.2418616;-0.1742656;-0.01535505,-0.09872527;0.3597714;-5.624071E-05,-0.2077273;0.2754335;-0.243789,-0.2947848;0.2049475;-0.5004069,0.0730681;0.004182086;-0.03230424,0.08221194;-0.3748975;-0.007504828,0.08396906;-0.7197663;0.05218141,0.09595455;-0.7665966;-0.01069506,-0.06753217;0.002727551;-0.04280147,-0.1040079;-0.3743934;-0.01365813,-0.1167755;-0.7198439;0.04112244,-0.1048011;-0.7644975;-0.0243257,0.008318959;0.3980387;0.03837739,0;0;0,0.0007069847;0.1994415;0.01491975,0.002523705;0.4992272;0.02467291,0.1171684;0.3746214;0.001794837,0.1915085;0.1071216;0.03809115,0.228881;-0.1669529;-0.005342171,-0.1066767;0.3619624;-0.01114368,-0.2059861;0.2152649;-0.2279789,-0.2943627;0.1100806;-0.4719581,0.07430813;0.006136223;-0.02899392,0.07868087;-0.3719014;0.009326622,0.08303542;-0.7132588;0.08650278,0.08820393;-0.7625623;0.0258048,-0.06905469;8.913898E-05;-0.04039112,-0.1016677;-0.3738585;0.01876571,-0.1150006;-0.7156879;0.0927588,-0.1090384;-0.7034899;-0.005463094,0.001838367;0.3992318;0.0240055,25.43744
+0;0;0,0.004454913;0.1987842;0.02156343,0.01036388;0.4979124;0.04296704,0.1217911;0.3691167;0.01215567,0.1909391;0.09809297;0.02499,0.2418616;-0.1742656;-0.01535505,-0.09872527;0.3597714;-5.624071E-05,-0.2077273;0.2754335;-0.243789,-0.2947848;0.2049475;-0.5004069,0.0730681;0.004182086;-0.03230424,0.08221194;-0.3748975;-0.007504828,0.08396906;-0.7197663;0.05218141,0.09595455;-0.7665966;-0.01069506,-0.06753217;0.002727551;-0.04280147,-0.1040079;-0.3743934;-0.01365813,-0.1167755;-0.7198439;0.04112244,-0.1048011;-0.7644975;-0.0243257,0.008318959;0.3980387;0.03837739,0;0;0,0.0007069847;0.1994415;0.01491975,0.002523705;0.4992272;0.02467291,0.1171684;0.3746214;0.001794837,0.1915085;0.1071216;0.03809115,0.228881;-0.1669529;-0.005342171,-0.1066767;0.3619624;-0.01114368,-0.2059861;0.2152649;-0.2279789,-0.2943627;0.1100806;-0.4719581,0.07430813;0.006136223;-0.02899392,0.07868087;-0.3719014;0.009326622,0.08303542;-0.7132588;0.08650278,0.08820393;-0.7625623;0.0258048,-0.06905469;8.913898E-05;-0.04039112,-0.1016677;-0.3738585;0.01876571,-0.1150006;-0.7156879;0.0927588,-0.1090384;-0.7034899;-0.005463094,0.001838367;0.3992318;0.0240055,25.45964
+0;0;0,0.00422672;0.1987711;0.02172977,0.009751295;0.4978861;0.04342244,0.1214794;0.3695135;0.01272122,0.1907984;0.09851208;0.02509522,0.2417641;-0.1737763;-0.01566679,-0.09899091;0.3598074;-0.0003221929,-0.2086294;0.2755217;-0.2437874,-0.2910487;0.2004276;-0.5006297,0.07309777;0.00425204;-0.03222787,0.08203939;-0.3748409;-0.007558236,0.08394396;-0.7197536;0.05186901,0.09632742;-0.766909;-0.01053044,-0.06748423;0.002721628;-0.04287739,-0.1043391;-0.3743553;-0.01364251,-0.1172114;-0.7197759;0.04130238,-0.1051351;-0.7647356;-0.02377616,0.00785138;0.3980144;0.03872841,0;0;0,0.0006133716;0.199445;0.01487656,0.002282695;0.4992369;0.02444353,0.1170231;0.3748003;0.001678694,0.1914442;0.1073562;0.03821846,0.2291205;-0.1667818;-0.00454681,-0.1069096;0.3621321;-0.01132085,-0.2012721;0.2053456;-0.2232494,-0.2926283;0.1139534;-0.4716473,0.07432033;0.006162399;-0.0289571,0.07824783;-0.3718684;0.009478157,0.08249042;-0.7132261;0.08665927,0.08782274;-0.7625531;0.02600615,-0.06905728;6.014225E-05;-0.04038674,-0.1018125;-0.3739002;0.01861108,-0.1155004;-0.7156745;0.09279306,-0.1095093;-0.7034791;-0.005426623,0.001650937;0.3992406;0.02385844,25.4712
+0;0;0,0.00422672;0.1987711;0.02172977,0.009751295;0.4978861;0.04342244,0.1214794;0.3695135;0.01272122,0.1907984;0.09851208;0.02509522,0.2417641;-0.1737763;-0.01566679,-0.09899091;0.3598074;-0.0003221929,-0.2086294;0.2755217;-0.2437874,-0.2910487;0.2004276;-0.5006297,0.07309777;0.00425204;-0.03222787,0.08203939;-0.3748409;-0.007558236,0.08394396;-0.7197536;0.05186901,0.09632742;-0.766909;-0.01053044,-0.06748423;0.002721628;-0.04287739,-0.1043391;-0.3743553;-0.01364251,-0.1172114;-0.7197759;0.04130238,-0.1051351;-0.7647356;-0.02377616,0.00785138;0.3980144;0.03872841,0;0;0,0.0006133716;0.199445;0.01487656,0.002282695;0.4992369;0.02444353,0.1170231;0.3748003;0.001678694,0.1914442;0.1073562;0.03821846,0.2291205;-0.1667818;-0.00454681,-0.1069096;0.3621321;-0.01132085,-0.2012721;0.2053456;-0.2232494,-0.2926283;0.1139534;-0.4716473,0.07432033;0.006162399;-0.0289571,0.07824783;-0.3718684;0.009478157,0.08249042;-0.7132261;0.08665927,0.08782274;-0.7625531;0.02600615,-0.06905728;6.014225E-05;-0.04038674,-0.1018125;-0.3739002;0.01861108,-0.1155004;-0.7156745;0.09279306,-0.1095093;-0.7034791;-0.005426623,0.001650937;0.3992406;0.02385844,25.48216
+0;0;0,0.00422672;0.1987711;0.02172977,0.009751295;0.4978861;0.04342244,0.1214794;0.3695135;0.01272122,0.1907984;0.09851208;0.02509522,0.2417641;-0.1737763;-0.01566679,-0.09899091;0.3598074;-0.0003221929,-0.2086294;0.2755217;-0.2437874,-0.2910487;0.2004276;-0.5006297,0.07309777;0.00425204;-0.03222787,0.08203939;-0.3748409;-0.007558236,0.08394396;-0.7197536;0.05186901,0.09632742;-0.766909;-0.01053044,-0.06748423;0.002721628;-0.04287739,-0.1043391;-0.3743553;-0.01364251,-0.1172114;-0.7197759;0.04130238,-0.1051351;-0.7647356;-0.02377616,0.00785138;0.3980144;0.03872841,0;0;0,0.0004291598;0.1994559;0.01473662,0.001670619;0.4992648;0.02374312,0.1167535;0.375298;0.001505071,0.1911941;0.1078559;0.0380199,0.2290287;-0.1663605;-0.004097454,-0.1072915;0.3620369;-0.0117686,-0.2136641;0.1968047;-0.2112258,-0.2890918;0.09832139;-0.4622471,0.07432295;0.006192198;-0.02894402,0.07781964;-0.3718411;0.009508487,0.08200999;-0.7131637;0.0868472,0.08738884;-0.7624357;0.02612634,-0.06904696;3.621361E-05;-0.04040439,-0.1022145;-0.3738761;0.01866754,-0.1158736;-0.7156373;0.092915,-0.109843;-0.703455;-0.005299896,0.001229129;0.3992663;0.023406,25.5044
+0;0;0,0.00347111;0.198795;0.02164474,0.008670354;0.4979211;0.04326024,0.120579;0.3695348;0.01261187,0.1898987;0.0985361;0.02504172,0.2411554;-0.1737481;-0.0153817,-0.09959909;0.3595088;-0.0009238012,-0.2072963;0.270191;-0.2434597,-0.2885759;0.1933861;-0.5001591,0.07325193;0.004417154;-0.03185346,0.08085428;-0.3747227;-0.007456822,0.08285625;-0.7196714;0.05175792,0.09500092;-0.766553;-0.01102518,-0.06736659;0.002655418;-0.04306612,-0.1054253;-0.3742855;-0.01361944,-0.1178504;-0.7197477;0.0411662,-0.1057882;-0.7637674;-0.02498206,0.006949577;0.3980444;0.03860323,0;0;0,0.0004291598;0.1994559;0.01473662,0.001670619;0.4992648;0.02374312,0.1167535;0.375298;0.001505071,0.1911941;0.1078559;0.0380199,0.2290287;-0.1663605;-0.004097454,-0.1072915;0.3620369;-0.0117686,-0.2136641;0.1968047;-0.2112258,-0.2890918;0.09832139;-0.4622471,0.07432295;0.006192198;-0.02894402,0.07781964;-0.3718411;0.009508487,0.08200999;-0.7131637;0.0868472,0.08738884;-0.7624357;0.02612634,-0.06904696;3.621361E-05;-0.04040439,-0.1022145;-0.3738761;0.01866754,-0.1158736;-0.7156373;0.092915,-0.109843;-0.703455;-0.005299896,0.001229129;0.3992663;0.023406,25.51579
+0;0;0,0.00347111;0.198795;0.02164474,0.008670354;0.4979211;0.04326024,0.120579;0.3695348;0.01261187,0.1898987;0.0985361;0.02504172,0.2411554;-0.1737481;-0.0153817,-0.09959909;0.3595088;-0.0009238012,-0.2072963;0.270191;-0.2434597,-0.2885759;0.1933861;-0.5001591,0.07325193;0.004417154;-0.03185346,0.08085428;-0.3747227;-0.007456822,0.08285625;-0.7196714;0.05175792,0.09500092;-0.766553;-0.01102518,-0.06736659;0.002655418;-0.04306612,-0.1054253;-0.3742855;-0.01361944,-0.1178504;-0.7197477;0.0411662,-0.1057882;-0.7637674;-0.02498206,0.006949577;0.3980444;0.03860323,0;0;0,9.530435E-05;0.1994601;0.01468577,0.0008524049;0.4992774;0.02343049,0.1161292;0.3756376;0.0009864643,0.1906814;0.1083172;0.03815907,0.2284763;-0.1659167;-0.003880691,-0.1079667;0.3620858;-0.01187228,-0.2140313;0.1961184;-0.2108827,-0.2852516;0.09345455;-0.4614576,0.07433102;0.006334025;-0.02889254,0.07699127;-0.3716807;0.009808624,0.08117887;-0.7130156;0.08709364,0.08650264;-0.7624326;0.02655775,-0.0690523;-0.0001084816;-0.04039515,-0.1027569;-0.3740188;0.01838457,-0.1166404;-0.7156658;0.09311455,-0.1107557;-0.7034876;-0.005108424,0.0005980668;0.3992779;0.02320537,25.53805
+0;0;0,0.00347111;0.198795;0.02164474,0.008670354;0.4979211;0.04326024,0.120579;0.3695348;0.01261187,0.1898987;0.0985361;0.02504172,0.2411554;-0.1737481;-0.0153817,-0.09959909;0.3595088;-0.0009238012,-0.2072963;0.270191;-0.2434597,-0.2885759;0.1933861;-0.5001591,0.07325193;0.004417154;-0.03185346,0.08085428;-0.3747227;-0.007456822,0.08285625;-0.7196714;0.05175792,0.09500092;-0.766553;-0.01102518,-0.06736659;0.002655418;-0.04306612,-0.1054253;-0.3742855;-0.01361944,-0.1178504;-0.7197477;0.0411662,-0.1057882;-0.7637674;-0.02498206,0.006949577;0.3980444;0.03860323,0;0;0,6.500779E-06;0.1994709;0.01453884,0.0004697711;0.4992988;0.02292021,0.1159258;0.3759987;0.0006076917,0.1905802;0.1087624;0.03817683,0.2285197;-0.1655006;-0.003541391,-0.1083543;0.3621905;-0.0119864,-0.2136846;0.1960111;-0.2112097,-0.2855575;0.08979642;-0.4601128,0.07424869;0.006379786;-0.02909346,0.07672235;-0.3716443;0.00952835,0.08093002;-0.7128954;0.0871814,0.0862257;-0.7625345;0.02693549,-0.06911757;-0.0001760678;-0.04028314,-0.1031614;-0.374075;0.01837383,-0.1168161;-0.7156574;0.0934407,-0.1110396;-0.7034896;-0.004786812,0.0003250443;0.3992989;0.02282393,25.56016
+0;0;0,0.003358129;0.1987849;0.02175514,0.008336162;0.4979108;0.04341868,0.1203756;0.3698526;0.0127059,0.1896233;0.09885991;0.0256549,0.2408741;-0.1733803;-0.01507125,-0.0997611;0.3595486;-0.001116186,-0.2058448;0.2672912;-0.2432625,-0.2819045;0.1858927;-0.5001462,0.07334181;0.004420942;-0.03164545,0.08090696;-0.3747281;-0.007380292,0.08297193;-0.7196897;0.05175717,0.09492985;-0.7667217;-0.01087736,-0.0673288;0.002640695;-0.04312608,-0.1050899;-0.3743186;-0.01353277,-0.1177677;-0.7197704;0.04126081,-0.1059822;-0.764161;-0.02452019,0.006677448;0.3980334;0.03875554,0;0;0,6.500779E-06;0.1994709;0.01453884,0.0004697711;0.4992988;0.02292021,0.1159258;0.3759987;0.0006076917,0.1905802;0.1087624;0.03817683,0.2285197;-0.1655006;-0.003541391,-0.1083543;0.3621905;-0.0119864,-0.2136846;0.1960111;-0.2112097,-0.2855575;0.08979642;-0.4601128,0.07424869;0.006379786;-0.02909346,0.07672235;-0.3716443;0.00952835,0.08093002;-0.7128954;0.0871814,0.0862257;-0.7625345;0.02693549,-0.06911757;-0.0001760678;-0.04028314,-0.1031614;-0.374075;0.01837383,-0.1168161;-0.7156574;0.0934407,-0.1110396;-0.7034896;-0.004786812,0.0003250443;0.3992989;0.02282393,25.57178
+0;0;0,0.003358129;0.1987849;0.02175514,0.008336162;0.4979108;0.04341868,0.1203756;0.3698526;0.0127059,0.1896233;0.09885991;0.0256549,0.2408741;-0.1733803;-0.01507125,-0.0997611;0.3595486;-0.001116186,-0.2058448;0.2672912;-0.2432625,-0.2819045;0.1858927;-0.5001462,0.07334181;0.004420942;-0.03164545,0.08090696;-0.3747281;-0.007380292,0.08297193;-0.7196897;0.05175717,0.09492985;-0.7667217;-0.01087736,-0.0673288;0.002640695;-0.04312608,-0.1050899;-0.3743186;-0.01353277,-0.1177677;-0.7197704;0.04126081,-0.1059822;-0.764161;-0.02452019,0.006677448;0.3980334;0.03875554,0;0;0,6.500779E-06;0.1994709;0.01453884,0.0004697711;0.4992988;0.02292021,0.1159258;0.3759987;0.0006076917,0.1905802;0.1087624;0.03817683,0.2285197;-0.1655006;-0.003541391,-0.1083543;0.3621905;-0.0119864,-0.2136846;0.1960111;-0.2112097,-0.2855575;0.08979642;-0.4601128,0.07424869;0.006379786;-0.02909346,0.07672235;-0.3716443;0.00952835,0.08093002;-0.7128954;0.0871814,0.0862257;-0.7625345;0.02693549,-0.06911757;-0.0001760678;-0.04028314,-0.1031614;-0.374075;0.01837383,-0.1168161;-0.7156574;0.0934407,-0.1110396;-0.7034896;-0.004786812,0.0003250443;0.3992989;0.02282393,25.59396
+0;0;0,0.003358129;0.1987849;0.02175514,0.008336162;0.4979108;0.04341868,0.1203756;0.3698526;0.0127059,0.1896233;0.09885991;0.0256549,0.2408741;-0.1733803;-0.01507125,-0.0997611;0.3595486;-0.001116186,-0.2058448;0.2672912;-0.2432625,-0.2819045;0.1858927;-0.5001462,0.07334181;0.004420942;-0.03164545,0.08090696;-0.3747281;-0.007380292,0.08297193;-0.7196897;0.05175717,0.09492985;-0.7667217;-0.01087736,-0.0673288;0.002640695;-0.04312608,-0.1050899;-0.3743186;-0.01353277,-0.1177677;-0.7197704;0.04126081,-0.1059822;-0.764161;-0.02452019,0.006677448;0.3980334;0.03875554,0;0;0,-0.0001628643;0.1994846;0.01434874,-0.0002020933;0.4993289;0.02207964,0.1155579;0.3762619;0.0002967864,0.1902927;0.1090818;0.03810544,0.2281642;-0.1652118;-0.003473133,-0.108992;0.3623419;-0.01216925,-0.2111199;0.1945291;-0.2116905,-0.2866591;0.05608733;-0.4430511,0.07419019;0.006428593;-0.02923163,0.07630968;-0.371549;0.009863503,0.08040868;-0.7128675;0.08722552,0.08562969;-0.7622887;0.02668618,-0.06917907;-0.0002277813;-0.04017714,-0.1035355;-0.3740069;0.01905768,-0.117165;-0.7156874;0.09368141,-0.1114688;-0.703535;-0.004547998,-0.000142448;0.399329;0.02223626,25.61597
+0;0;0,0.003308204;0.198778;0.02182536,0.008289687;0.4979095;0.04341134,0.120466;0.3697885;0.0134578,0.1894831;0.09871352;0.02590712,0.240705;-0.1734492;-0.0153697,-0.09972856;0.3597045;-0.001490984,-0.2058421;0.2658134;-0.2429954,-0.275884;0.1601129;-0.4926382,0.0734155;0.004395464;-0.03147769,0.08099576;-0.3747626;-0.007359523,0.0829182;-0.7196434;0.05225226,0.0876807;-0.7067093;-0.04616559,-0.06729433;0.002671055;-0.04317798,-0.1049187;-0.3743005;-0.01356617,-0.1177087;-0.7197644;0.04112537,-0.1051332;-0.7638004;-0.02490889,0.006618117;0.3980309;0.03877641,0;0;0,-0.0002932342;0.1995023;0.01409736,-0.0006553016;0.4993629;0.02110704,0.1153099;0.3762966;2.17855E-05,0.1901013;0.1091375;0.03786654,0.2281569;-0.1651808;-0.003379539,-0.1095347;0.3624438;-0.01226082,-0.2117477;0.1918839;-0.2093949,-0.2866734;0.04519776;-0.4358221,0.07417503;0.006475337;-0.0292598,0.07602061;-0.3714876;0.009991113,0.08005992;-0.7128088;0.08734371,0.08518656;-0.7620066;0.02650421,-0.06917362;-0.0002710954;-0.04018626,-0.103726;-0.3741165;0.01851401,-0.1178895;-0.7156539;0.09369107,-0.112267;-0.7035316;-0.00453712,-0.0004709011;0.399364;0.02153241,25.6274
+0;0;0,0.003308204;0.198778;0.02182536,0.008289687;0.4979095;0.04341134,0.120466;0.3697885;0.0134578,0.1894831;0.09871352;0.02590712,0.240705;-0.1734492;-0.0153697,-0.09972856;0.3597045;-0.001490984,-0.2058421;0.2658134;-0.2429954,-0.275884;0.1601129;-0.4926382,0.0734155;0.004395464;-0.03147769,0.08099576;-0.3747626;-0.007359523,0.0829182;-0.7196434;0.05225226,0.0876807;-0.7067093;-0.04616559,-0.06729433;0.002671055;-0.04317798,-0.1049187;-0.3743005;-0.01356617,-0.1177087;-0.7197644;0.04112537,-0.1051332;-0.7638004;-0.02490889,0.006618117;0.3980309;0.03877641,0;0;0,-0.0002932342;0.1995023;0.01409736,-0.0006553016;0.4993629;0.02110704,0.1153099;0.3762966;2.17855E-05,0.1901013;0.1091375;0.03786654,0.2281569;-0.1651808;-0.003379539,-0.1095347;0.3624438;-0.01226082,-0.2117477;0.1918839;-0.2093949,-0.2866734;0.04519776;-0.4358221,0.07417503;0.006475337;-0.0292598,0.07602061;-0.3714876;0.009991113,0.08005992;-0.7128088;0.08734371,0.08518656;-0.7620066;0.02650421,-0.06917362;-0.0002710954;-0.04018626,-0.103726;-0.3741165;0.01851401,-0.1178895;-0.7156539;0.09369107,-0.112267;-0.7035316;-0.00453712,-0.0004709011;0.399364;0.02153241,25.63861
+0;0;0,0.003308204;0.198778;0.02182536,0.008289687;0.4979095;0.04341134,0.120466;0.3697885;0.0134578,0.1894831;0.09871352;0.02590712,0.240705;-0.1734492;-0.0153697,-0.09972856;0.3597045;-0.001490984,-0.2058421;0.2658134;-0.2429954,-0.275884;0.1601129;-0.4926382,0.0734155;0.004395464;-0.03147769,0.08099576;-0.3747626;-0.007359523,0.0829182;-0.7196434;0.05225226,0.0876807;-0.7067093;-0.04616559,-0.06729433;0.002671055;-0.04317798,-0.1049187;-0.3743005;-0.01356617,-0.1177087;-0.7197644;0.04112537,-0.1051332;-0.7638004;-0.02490889,0.006618117;0.3980309;0.03877641,0;0;0,-0.000355546;0.1995174;0.01388148,-0.001017327;0.4993903;0.02029904,0.1151224;0.3766364;-0.0005506761,0.1901207;0.1095819;0.03762206,0.2286105;-0.1646802;-0.00359486,-0.1099568;0.362554;-0.01240671,-0.207125;0.1844236;-0.205352,-0.2878117;0.04477242;-0.4342345,0.07410425;0.006535381;-0.0294253,0.0759549;-0.3714028;0.01006322,0.08001292;-0.7126602;0.08769639,0.0849011;-0.7617303;0.02667148,-0.06921226;-0.0003298533;-0.04011924,-0.1034426;-0.3742241;0.01845835,-0.118059;-0.7157893;0.09342223,-0.1126;-0.7036809;-0.004812658,-0.0007252858;0.3993927;0.02093088,25.66071
+0;0;0,0.003196604;0.1987761;0.02185964,0.008059246;0.4979167;0.04333966,0.1203097;0.3700302;0.01338947,0.1894408;0.09900624;0.02630951,0.2406613;-0.1731736;-0.01485596,-0.09983354;0.3596388;-0.001715705,-0.2018526;0.2106244;-0.2156942,-0.273526;0.1438558;-0.4780011,0.07348315;0.004384139;-0.031321,0.08117265;-0.37478;-0.007333415,0.08299768;-0.7196535;0.05232359,0.08776499;-0.7067182;-0.04609425,-0.06725282;0.002670431;-0.04324264,-0.1044924;-0.3743303;-0.01351582,-0.1175018;-0.7197598;0.04134026,-0.1046748;-0.763185;-0.02532466,0.006412582;0.3980357;0.03874958,0;0;0,-0.000355546;0.1995174;0.01388148,-0.001017327;0.4993903;0.02029904,0.1151224;0.3766364;-0.0005506761,0.1901207;0.1095819;0.03762206,0.2286105;-0.1646802;-0.00359486,-0.1099568;0.362554;-0.01240671,-0.207125;0.1844236;-0.205352,-0.2878117;0.04477242;-0.4342345,0.07410425;0.006535381;-0.0294253,0.0759549;-0.3714028;0.01006322,0.08001292;-0.7126602;0.08769639,0.0849011;-0.7617303;0.02667148,-0.06921226;-0.0003298533;-0.04011924,-0.1034426;-0.3742241;0.01845835,-0.118059;-0.7157893;0.09342223,-0.1126;-0.7036809;-0.004812658,-0.0007252858;0.3993927;0.02093088,25.67214
+0;0;0,0.003196604;0.1987761;0.02185964,0.008059246;0.4979167;0.04333966,0.1203097;0.3700302;0.01338947,0.1894408;0.09900624;0.02630951,0.2406613;-0.1731736;-0.01485596,-0.09983354;0.3596388;-0.001715705,-0.2018526;0.2106244;-0.2156942,-0.273526;0.1438558;-0.4780011,0.07348315;0.004384139;-0.031321,0.08117265;-0.37478;-0.007333415,0.08299768;-0.7196535;0.05232359,0.08776499;-0.7067182;-0.04609425,-0.06725282;0.002670431;-0.04324264,-0.1044924;-0.3743303;-0.01351582,-0.1175018;-0.7197598;0.04134026,-0.1046748;-0.763185;-0.02532466,0.006412582;0.3980357;0.03874958,0;0;0,-0.000355546;0.1995174;0.01388148,-0.001017327;0.4993903;0.02029904,0.1151224;0.3766364;-0.0005506761,0.1901207;0.1095819;0.03762206,0.2286105;-0.1646802;-0.00359486,-0.1099568;0.362554;-0.01240671,-0.207125;0.1844236;-0.205352,-0.2878117;0.04477242;-0.4342345,0.07410425;0.006535381;-0.0294253,0.0759549;-0.3714028;0.01006322,0.08001292;-0.7126602;0.08769639,0.0849011;-0.7617303;0.02667148,-0.06921226;-0.0003298533;-0.04011924,-0.1034426;-0.3742241;0.01845835,-0.118059;-0.7157893;0.09342223,-0.1126;-0.7036809;-0.004812658,-0.0007252858;0.3993927;0.02093088,25.69419
+0;0;0,0.003196604;0.1987761;0.02185964,0.008059246;0.4979167;0.04333966,0.1203097;0.3700302;0.01338947,0.1894408;0.09900624;0.02630951,0.2406613;-0.1731736;-0.01485596,-0.09983354;0.3596388;-0.001715705,-0.2018526;0.2106244;-0.2156942,-0.273526;0.1438558;-0.4780011,0.07348315;0.004384139;-0.031321,0.08117265;-0.37478;-0.007333415,0.08299768;-0.7196535;0.05232359,0.08776499;-0.7067182;-0.04609425,-0.06725282;0.002670431;-0.04324264,-0.1044924;-0.3743303;-0.01351582,-0.1175018;-0.7197598;0.04134026,-0.1046748;-0.763185;-0.02532466,0.006412582;0.3980357;0.03874958,0;0;0,-0.00047746;0.1995367;0.01359694,-0.001624047;0.4994234;0.01922439,0.1145956;0.376684;-0.001888843,0.1899374;0.1098303;0.03700471,0.2291469;-0.1642687;-0.004616641,-0.1117438;0.3628249;-0.008669054,-0.2038584;0.1858314;-0.2051078,-0.2829045;0.03378507;-0.4265432,0.07404176;0.006601014;-0.02956761,0.07570573;-0.3713131;0.0101582,0.07963362;-0.7125711;0.08779563,0.08528025;-0.7614835;0.02663232,-0.06926451;-0.0003969386;-0.04002838,-0.1035602;-0.3742998;0.01845631,-0.1184573;-0.7158974;0.09321653,-0.1145612;-0.703804;-0.005090021,-0.001152444;0.3994287;0.02013572,25.70568
+0;0;0,0.003064128;0.1987831;0.02181469,0.007599229;0.4979495;0.04298859,0.1200618;0.3702884;0.01333303,0.1893982;0.09933811;0.02669009,0.2407994;-0.1729631;-0.01343447,-0.09996049;0.3593629;-0.00220691,-0.1992966;0.2500588;-0.2400828,-0.2722931;0.1494546;-0.4909818,0.07358722;0.004324448;-0.03108409,0.08149249;-0.3748172;-0.006812377,0.08315323;-0.7198504;0.05191871,0.08799656;-0.7069143;-0.04649556,-0.06718808;0.00271605;-0.04334033,-0.1043646;-0.3742844;-0.01353272,-0.117444;-0.7197065;0.04135405,-0.1048645;-0.7635687;-0.02487385,0.006071795;0.3980606;0.03853176,0;0;0,-0.00047746;0.1995367;0.01359694,-0.001624047;0.4994234;0.01922439,0.1145956;0.376684;-0.001888843,0.1899374;0.1098303;0.03700471,0.2291469;-0.1642687;-0.004616641,-0.1117438;0.3628249;-0.008669054,-0.2038584;0.1858314;-0.2051078,-0.2829045;0.03378507;-0.4265432,0.07404176;0.006601014;-0.02956761,0.07570573;-0.3713131;0.0101582,0.07963362;-0.7125711;0.08779563,0.08528025;-0.7614835;0.02663232,-0.06926451;-0.0003969386;-0.04002838,-0.1035602;-0.3742998;0.01845631,-0.1184573;-0.7158974;0.09321653,-0.1145612;-0.703804;-0.005090021,-0.001152444;0.3994287;0.02013572,25.72777
+0;0;0,0.003064128;0.1987831;0.02181469,0.007599229;0.4979495;0.04298859,0.1200618;0.3702884;0.01333303,0.1893982;0.09933811;0.02669009,0.2407994;-0.1729631;-0.01343447,-0.09996049;0.3593629;-0.00220691,-0.1992966;0.2500588;-0.2400828,-0.2722931;0.1494546;-0.4909818,0.07358722;0.004324448;-0.03108409,0.08149249;-0.3748172;-0.006812377,0.08315323;-0.7198504;0.05191871,0.08799656;-0.7069143;-0.04649556,-0.06718808;0.00271605;-0.04334033,-0.1043646;-0.3742844;-0.01353272,-0.117444;-0.7197065;0.04135405,-0.1048645;-0.7635687;-0.02487385,0.006071795;0.3980606;0.03853176,0;0;0,-0.0006755633;0.199548;0.01342118,-0.002075606;0.4994386;0.01877388,0.1142076;0.3770466;-0.002713319,0.1898326;0.1103519;0.03671744,0.2294484;-0.1637411;-0.004557505,-0.1120578;0.3630178;-0.00944747,-0.2048347;0.1817613;-0.2016415,-0.2850046;0.02680528;-0.4206424,0.07399455;0.006805301;-0.02963938,0.07511032;-0.3710985;0.0102033,0.07925284;-0.7123795;0.08772869,0.08470403;-0.7615666;0.02690365,-0.0693197;-0.000632553;-0.03992968,-0.103926;-0.3745227;0.01845315,-0.118976;-0.7161633;0.09298606,-0.1150728;-0.7040713;-0.005319953,-0.001518336;0.3994452;0.01977687,25.73912
+0;0;0,0.003064128;0.1987831;0.02181469,0.007599229;0.4979495;0.04298859,0.1200618;0.3702884;0.01333303,0.1893982;0.09933811;0.02669009,0.2407994;-0.1729631;-0.01343447,-0.09996049;0.3593629;-0.00220691,-0.1992966;0.2500588;-0.2400828,-0.2722931;0.1494546;-0.4909818,0.07358722;0.004324448;-0.03108409,0.08149249;-0.3748172;-0.006812377,0.08315323;-0.7198504;0.05191871,0.08799656;-0.7069143;-0.04649556,-0.06718808;0.00271605;-0.04334033,-0.1043646;-0.3742844;-0.01353272,-0.117444;-0.7197065;0.04135405,-0.1048645;-0.7635687;-0.02487385,0.006071795;0.3980606;0.03853176,0;0;0,-0.0006755633;0.199548;0.01342118,-0.002075606;0.4994386;0.01877388,0.1142076;0.3770466;-0.002713319,0.1898326;0.1103519;0.03671744,0.2294484;-0.1637411;-0.004557505,-0.1120578;0.3630178;-0.00944747,-0.2048347;0.1817613;-0.2016415,-0.2850046;0.02680528;-0.4206424,0.07399455;0.006805301;-0.02963938,0.07511032;-0.3710985;0.0102033,0.07925284;-0.7123795;0.08772869,0.08470403;-0.7615666;0.02690365,-0.0693197;-0.000632553;-0.03992968,-0.103926;-0.3745227;0.01845315,-0.118976;-0.7161633;0.09298606,-0.1150728;-0.7040713;-0.005319953,-0.001518336;0.3994452;0.01977687,25.76139
+0;0;0,0.00295069;0.198785;0.02181308,0.0074262;0.4979555;0.04294262,0.1199141;0.3703309;0.01330951,0.189343;0.09943336;0.02724338,0.2408036;-0.1730078;-0.01184104,-0.1001035;0.3593764;-0.002289593,-0.2010185;0.2470561;-0.2380868,-0.2734927;0.144959;-0.4885337,0.07359081;0.004356043;-0.03107117,0.08153579;-0.3747908;-0.006893724,0.0829995;-0.7198293;0.05181152,0.08785552;-0.7068939;-0.046602,-0.06718776;0.002747285;-0.04333886,-0.1044284;-0.3742461;-0.01352026,-0.1175952;-0.7196653;0.04136351,-0.1046116;-0.7628346;-0.02555196,0.005912826;0.3980658;0.03849848,0;0;0,-0.0006698082;0.1995618;0.01321467,-0.001932714;0.4994602;0.01815197,0.1141103;0.3767966;-0.003784364,0.1899592;0.110165;0.03564296,0.2301978;-0.1638887;-0.005289234,-0.112018;0.3630276;-0.009792993,-0.2055986;0.1795275;-0.1994516,-0.286296;0.02296288;-0.4171106,0.07394292;0.006816428;-0.02976543,0.07512648;-0.3710708;0.01023283,0.07925099;-0.7123221;0.08788916,0.08494511;-0.7614136;0.02696202,-0.06935033;-0.0006657588;-0.03987591,-0.1038464;-0.3745774;0.01843471,-0.1189054;-0.7162473;0.0928313,-0.1151968;-0.7041723;-0.005479142,-0.001446599;0.3994679;0.01929421,25.77301
+0;0;0,0.00295069;0.198785;0.02181308,0.0074262;0.4979555;0.04294262,0.1199141;0.3703309;0.01330951,0.189343;0.09943336;0.02724338,0.2408036;-0.1730078;-0.01184104,-0.1001035;0.3593764;-0.002289593,-0.2010185;0.2470561;-0.2380868,-0.2734927;0.144959;-0.4885337,0.07359081;0.004356043;-0.03107117,0.08153579;-0.3747908;-0.006893724,0.0829995;-0.7198293;0.05181152,0.08785552;-0.7068939;-0.046602,-0.06718776;0.002747285;-0.04333886,-0.1044284;-0.3742461;-0.01352026,-0.1175952;-0.7196653;0.04136351,-0.1046116;-0.7628346;-0.02555196,0.005912826;0.3980658;0.03849848,0;0;0,-0.0006513918;0.1995737;0.01303513,-0.001865432;0.4994764;0.01773979,0.1140536;0.376662;-0.004459189,0.1899853;0.1100675;0.03505943,0.2310974;-0.1635888;-0.007626127,-0.1119218;0.3629602;-0.01024513,-0.206203;0.1740418;-0.1941496,-0.2883644;0.01653244;-0.4105759,0.07393003;0.0068121;-0.02979841,0.07514483;-0.3710527;0.01040967,0.07922515;-0.71232;0.08799825,0.08480145;-0.7613429;0.02697126,-0.06936709;-0.0006530141;-0.03984695,-0.1039481;-0.3745536;0.01848416,-0.118922;-0.7162436;0.09280582,-0.1152609;-0.7041832;-0.005503736,-0.001406785;0.3994848;0.01895063,25.79476
+0;0;0,0.00295069;0.198785;0.02181308,0.0074262;0.4979555;0.04294262,0.1199141;0.3703309;0.01330951,0.189343;0.09943336;0.02724338,0.2408036;-0.1730078;-0.01184104,-0.1001035;0.3593764;-0.002289593,-0.2010185;0.2470561;-0.2380868,-0.2734927;0.144959;-0.4885337,0.07359081;0.004356043;-0.03107117,0.08153579;-0.3747908;-0.006893724,0.0829995;-0.7198293;0.05181152,0.08785552;-0.7068939;-0.046602,-0.06718776;0.002747285;-0.04333886,-0.1044284;-0.3742461;-0.01352026,-0.1175952;-0.7196653;0.04136351,-0.1046116;-0.7628346;-0.02555196,0.005912826;0.3980658;0.03849848,0;0;0,-0.0006513918;0.1995737;0.01303513,-0.001865432;0.4994764;0.01773979,0.1140536;0.376662;-0.004459189,0.1899853;0.1100675;0.03505943,0.2310974;-0.1635888;-0.007626127,-0.1119218;0.3629602;-0.01024513,-0.206203;0.1740418;-0.1941496,-0.2883644;0.01653244;-0.4105759,0.07393003;0.0068121;-0.02979841,0.07514483;-0.3710527;0.01040967,0.07922515;-0.71232;0.08799825,0.08480145;-0.7613429;0.02697126,-0.06936709;-0.0006530141;-0.03984695,-0.1039481;-0.3745536;0.01848416,-0.118922;-0.7162436;0.09280582,-0.1152609;-0.7041832;-0.005503736,-0.001406785;0.3994848;0.01895063,25.80622
+0;0;0,0.00266626;0.1988012;0.02170156,0.00698335;0.4979832;0.04271315,0.1194909;0.3703617;0.01307647,0.1888585;0.09946433;0.02731621,0.2406782;-0.1729673;-0.01135888,-0.1005331;0.359422;-0.002494093,-0.2035932;0.2418308;-0.2347675,-0.2739467;0.1407811;-0.4862418,0.07367028;0.004449304;-0.03086896,0.08094009;-0.374742;-0.007180942,0.08237701;-0.7197838;0.0515057,0.08722957;-0.7068527;-0.04690722,-0.06714847;0.002728315;-0.04340091,-0.1046038;-0.3742369;-0.01349615,-0.117996;-0.7196485;0.04138081,-0.1061042;-0.7638702;-0.02457158,0.005493185;0.3980924;0.03828611,0;0;0,-0.0006513918;0.1995737;0.01303513,-0.001865432;0.4994764;0.01773979,0.1140536;0.376662;-0.004459189,0.1899853;0.1100675;0.03505943,0.2310974;-0.1635888;-0.007626127,-0.1119218;0.3629602;-0.01024513,-0.206203;0.1740418;-0.1941496,-0.2883644;0.01653244;-0.4105759,0.07393003;0.0068121;-0.02979841,0.07514483;-0.3710527;0.01040967,0.07922515;-0.71232;0.08799825,0.08480145;-0.7613429;0.02697126,-0.06936709;-0.0006530141;-0.03984695,-0.1039481;-0.3745536;0.01848416,-0.118922;-0.7162436;0.09280582,-0.1152609;-0.7041832;-0.005503736,-0.001406785;0.3994848;0.01895063,25.82833
+0;0;0,0.00266626;0.1988012;0.02170156,0.00698335;0.4979832;0.04271315,0.1194909;0.3703617;0.01307647,0.1888585;0.09946433;0.02731621,0.2406782;-0.1729673;-0.01135888,-0.1005331;0.359422;-0.002494093,-0.2035932;0.2418308;-0.2347675,-0.2739467;0.1407811;-0.4862418,0.07367028;0.004449304;-0.03086896,0.08094009;-0.374742;-0.007180942,0.08237701;-0.7197838;0.0515057,0.08722957;-0.7068527;-0.04690722,-0.06714847;0.002728315;-0.04340091,-0.1046038;-0.3742369;-0.01349615,-0.117996;-0.7196485;0.04138081,-0.1061042;-0.7638702;-0.02457158,0.005493185;0.3980924;0.03828611,0;0;0,-0.001468366;0.1996389;0.01192343,-0.005041662;0.4995511;0.01332136,0.1119163;0.3754375;-0.005338151,0.187531;0.1086983;0.03381059,0.2293176;-0.1647092;-0.009803772,-0.114886;0.3619716;-0.009284131,-0.2050783;0.1675863;-0.1895054,-0.2906482;0.009838626;-0.4044321,0.07389509;0.006879458;-0.02986953,0.07531501;-0.370997;0.01022267,0.07962935;-0.7122382;0.08791307,0.0846514;-0.7616741;0.02737617,-0.06937365;-0.000693185;-0.03983485,-0.1039674;-0.3744984;0.01909652,-0.1188161;-0.7162989;0.09293354,-0.1159582;-0.7043746;-0.005377717,-0.003719904;0.3995895;0.01575588,25.85073
+0;0;0,0.00266626;0.1988012;0.02170156,0.00698335;0.4979832;0.04271315,0.1194909;0.3703617;0.01307647,0.1888585;0.09946433;0.02731621,0.2406782;-0.1729673;-0.01135888,-0.1005331;0.359422;-0.002494093,-0.2035932;0.2418308;-0.2347675,-0.2739467;0.1407811;-0.4862418,0.07367028;0.004449304;-0.03086896,0.08094009;-0.374742;-0.007180942,0.08237701;-0.7197838;0.0515057,0.08722957;-0.7068527;-0.04690722,-0.06714847;0.002728315;-0.04340091,-0.1046038;-0.3742369;-0.01349615,-0.117996;-0.7196485;0.04138081,-0.1061042;-0.7638702;-0.02457158,0.005493185;0.3980924;0.03828611,0;0;0,-0.001926657;0.1996635;0.01143628,-0.006296898;0.49957;0.01220132,0.1109599;0.3751954;-0.005606578,0.1867557;0.1083912;0.03274116,0.2290735;-0.1649672;-0.01066834,-0.116129;0.3612776;-0.008101827,-0.2045797;0.1638539;-0.1858668,-0.2931508;-0.001934558;-0.3933983,0.07388004;0.0068935;-0.02990349,0.07572646;-0.3708435;0.01146549,0.07999412;-0.7123308;0.08806968,0.08489153;-0.761104;0.02666285,-0.06937964;-0.0007053101;-0.03982422,-0.1037191;-0.3746051;0.01865414,-0.1189004;-0.7163251;0.0927958,-0.1165714;-0.704443;-0.005521625,-0.004745489;0.3996155;0.01478722,25.86186
+0;0;0,0.002629479;0.198806;0.02166237,0.006921236;0.4979942;0.04259568,0.1194641;0.3704535;0.01305257,0.1890879;0.0996781;0.02832307,0.2409828;-0.1727118;-0.01054452,-0.1005789;0.3594499;-0.002659097,-0.205712;0.193307;-0.2020169,-0.2727647;0.1313741;-0.466721,0.07365928;0.004496602;-0.03088836,0.08079879;-0.3747021;-0.007279446,0.08232316;-0.7197468;0.05138753,0.08721792;-0.7068188;-0.04702278,-0.06714832;0.002704446;-0.04340264,-0.1045173;-0.3742828;-0.013668,-0.1181027;-0.7196752;0.04128228,-0.1056036;-0.7637126;-0.02476493,0.00542941;0.3981027;0.03818456,0;0;0,-0.001926657;0.1996635;0.01143628,-0.006296898;0.49957;0.01220132,0.1109599;0.3751954;-0.005606578,0.1867557;0.1083912;0.03274116,0.2290735;-0.1649672;-0.01066834,-0.116129;0.3612776;-0.008101827,-0.2045797;0.1638539;-0.1858668,-0.2931508;-0.001934558;-0.3933983,0.07388004;0.0068935;-0.02990349,0.07572646;-0.3708435;0.01146549,0.07999412;-0.7123308;0.08806968,0.08489153;-0.761104;0.02666285,-0.06937964;-0.0007053101;-0.03982422,-0.1037191;-0.3746051;0.01865414,-0.1189004;-0.7163251;0.0927958,-0.1165714;-0.704443;-0.005521625,-0.004745489;0.3996155;0.01478722,25.87319
+0;0;0,0.002629479;0.198806;0.02166237,0.006921236;0.4979942;0.04259568,0.1194641;0.3704535;0.01305257,0.1890879;0.0996781;0.02832307,0.2409828;-0.1727118;-0.01054452,-0.1005789;0.3594499;-0.002659097,-0.205712;0.193307;-0.2020169,-0.2727647;0.1313741;-0.466721,0.07365928;0.004496602;-0.03088836,0.08079879;-0.3747021;-0.007279446,0.08232316;-0.7197468;0.05138753,0.08721792;-0.7068188;-0.04702278,-0.06714832;0.002704446;-0.04340264,-0.1045173;-0.3742828;-0.013668,-0.1181027;-0.7196752;0.04128228,-0.1056036;-0.7637126;-0.02476493,0.00542941;0.3981027;0.03818456,0;0;0,-0.001926657;0.1996635;0.01143628,-0.006296898;0.49957;0.01220132,0.1109599;0.3751954;-0.005606578,0.1867557;0.1083912;0.03274116,0.2290735;-0.1649672;-0.01066834,-0.116129;0.3612776;-0.008101827,-0.2045797;0.1638539;-0.1858668,-0.2931508;-0.001934558;-0.3933983,0.07388004;0.0068935;-0.02990349,0.07572646;-0.3708435;0.01146549,0.07999412;-0.7123308;0.08806968,0.08489153;-0.761104;0.02666285,-0.06937964;-0.0007053101;-0.03982422,-0.1037191;-0.3746051;0.01865414,-0.1189004;-0.7163251;0.0927958,-0.1165714;-0.704443;-0.005521625,-0.004745489;0.3996155;0.01478722,25.88489
+0;0;0,0.002629479;0.198806;0.02166237,0.006921236;0.4979942;0.04259568,0.1194641;0.3704535;0.01305257,0.1890879;0.0996781;0.02832307,0.2409828;-0.1727118;-0.01054452,-0.1005789;0.3594499;-0.002659097,-0.205712;0.193307;-0.2020169,-0.2727647;0.1313741;-0.466721,0.07365928;0.004496602;-0.03088836,0.08079879;-0.3747021;-0.007279446,0.08232316;-0.7197468;0.05138753,0.08721792;-0.7068188;-0.04702278,-0.06714832;0.002704446;-0.04340264,-0.1045173;-0.3742828;-0.013668,-0.1181027;-0.7196752;0.04128228,-0.1056036;-0.7637126;-0.02476493,0.00542941;0.3981027;0.03818456,0;0;0,-0.001936642;0.1996761;0.0112117,-0.006067416;0.4995869;0.01186431,0.1111006;0.3754801;-0.006130327,0.1868298;0.1086207;0.03196357,0.229106;-0.1646295;-0.0121619,-0.1162389;0.3613633;-0.007379729,-0.2043445;0.1565088;-0.176708,-0.297639;-0.01303543;-0.3790713,0.07383078;0.006921429;-0.03001849,0.075864;-0.3708334;0.01117789,0.0798787;-0.7122533;0.0880954,0.08469828;-0.7607209;0.02629235,-0.06941049;-0.0007628927;-0.03976936,-0.103626;-0.3746796;0.01867359,-0.1188721;-0.7163808;0.09288843,-0.1169187;-0.7045052;-0.005435988,-0.004623852;0.3996314;0.01447474,25.90668
+0;0;0,0.002488574;0.1988081;0.02166024,0.006567553;0.4980018;0.04255237,0.1192244;0.3705814;0.01299998,0.1885627;0.09977543;0.02900935,0.2411126;-0.1725721;-0.009270448,-0.1008404;0.3593947;-0.002624817,-0.2061957;0.1933259;-0.2019271,-0.2728609;0.1230573;-0.46464,0.0736711;0.004547661;-0.0308527,0.08076755;-0.374672;-0.007569727,0.08207952;-0.7196915;0.05125074,0.08690919;-0.7067615;-0.04716314,-0.06717;0.00268875;-0.04337005,-0.1046222;-0.3742915;-0.01365102,-0.1182597;-0.7197011;0.04117846,-0.10627;-0.764802;-0.02375308,0.005167046;0.398108;0.03816371,0;0;0,-0.002241409;0.1996986;0.01074421,-0.007242159;0.4995976;0.01054312,0.1101789;0.3750861;-0.006966429,0.1862765;0.1083697;0.03139393,0.2286571;-0.1648081;-0.01307837,-0.1171598;0.3607512;-0.00702237,-0.2050088;0.152461;-0.1722428,-0.2987631;-0.01514484;-0.3760034,0.07377551;0.006926571;-0.03015289,0.07575466;-0.3708154;0.01116396,0.07978702;-0.7122229;0.08813558,0.08464261;-0.760935;0.0266471,-0.06944403;-0.0007937221;-0.03971016,-0.1037192;-0.3747171;0.01865545,-0.1193265;-0.7163745;0.09299658,-0.1177873;-0.7045488;-0.00532598,-0.005496547;0.3996542;0.01341966,25.92883
+0;0;0,0.002488574;0.1988081;0.02166024,0.006567553;0.4980018;0.04255237,0.1192244;0.3705814;0.01299998,0.1885627;0.09977543;0.02900935,0.2411126;-0.1725721;-0.009270448,-0.1008404;0.3593947;-0.002624817,-0.2061957;0.1933259;-0.2019271,-0.2728609;0.1230573;-0.46464,0.0736711;0.004547661;-0.0308527,0.08076755;-0.374672;-0.007569727,0.08207952;-0.7196915;0.05125074,0.08690919;-0.7067615;-0.04716314,-0.06717;0.00268875;-0.04337005,-0.1046222;-0.3742915;-0.01365102,-0.1182597;-0.7197011;0.04117846,-0.10627;-0.764802;-0.02375308,0.005167046;0.398108;0.03816371,0;0;0,-0.002241409;0.1996986;0.01074421,-0.007242159;0.4995976;0.01054312,0.1101789;0.3750861;-0.006966429,0.1862765;0.1083697;0.03139393,0.2286571;-0.1648081;-0.01307837,-0.1171598;0.3607512;-0.00702237,-0.2050088;0.152461;-0.1722428,-0.2987631;-0.01514484;-0.3760034,0.07377551;0.006926571;-0.03015289,0.07575466;-0.3708154;0.01116396,0.07978702;-0.7122229;0.08813558,0.08464261;-0.760935;0.0266471,-0.06944403;-0.0007937221;-0.03971016,-0.1037192;-0.3747171;0.01865545,-0.1193265;-0.7163745;0.09299658,-0.1177873;-0.7045488;-0.00532598,-0.005496547;0.3996542;0.01341966,25.94027
+0;0;0,0.002488574;0.1988081;0.02166024,0.006567553;0.4980018;0.04255237,0.1192244;0.3705814;0.01299998,0.1885627;0.09977543;0.02900935,0.2411126;-0.1725721;-0.009270448,-0.1008404;0.3593947;-0.002624817,-0.2061957;0.1933259;-0.2019271,-0.2728609;0.1230573;-0.46464,0.0736711;0.004547661;-0.0308527,0.08076755;-0.374672;-0.007569727,0.08207952;-0.7196915;0.05125074,0.08690919;-0.7067615;-0.04716314,-0.06717;0.00268875;-0.04337005,-0.1046222;-0.3742915;-0.01365102,-0.1182597;-0.7197011;0.04117846,-0.10627;-0.764802;-0.02375308,0.005167046;0.398108;0.03816371,0;0;0,-0.002548079;0.1997114;0.01043339,-0.007673472;0.4996098;0.01019346,0.1096332;0.3749896;-0.007894959,0.1860881;0.1084356;0.03088121,0.2291274;-0.1646766;-0.01336082,-0.1176369;0.3604849;-0.006551435,-0.2052746;0.150061;-0.1691597,-0.3012519;-0.02025397;-0.369612,0.07367748;0.006976762;-0.03038016,0.07582286;-0.3707391;0.01116619,0.07986381;-0.7121111;0.08829506,0.08447579;-0.7612478;0.02733508,-0.06948053;-0.0008076524;-0.03964598,-0.1036913;-0.3747467;0.01865625,-0.1192439;-0.7164207;0.09293292,-0.1181657;-0.7046102;-0.005392954,-0.005919736;0.3996659;0.01304769,25.96237
+0;0;0,0.002294835;0.1988172;0.02159729,0.006316654;0.4980215;0.04233687,0.1189678;0.3705231;0.01291236,0.1882772;0.0997237;0.02915763,0.2410373;-0.1727878;-0.007636799,-0.1010851;0.359226;-0.002607521,-0.2068868;0.1928862;-0.2014469,-0.2734339;0.1131911;-0.4614857,0.07370936;0.00464898;-0.030746,0.08031068;-0.3745866;-0.007576684,0.08162776;-0.7195863;0.05135913,0.08641103;-0.7066571;-0.04705688,-0.0671443;0.002625979;-0.04341368,-0.1048952;-0.3743235;-0.01368169,-0.1188803;-0.7196827;0.04137646,-0.1063007;-0.7646045;-0.02365032,0.004916242;0.3981246;0.0380201,0;0;0,-0.002548079;0.1997114;0.01043339,-0.007673472;0.4996098;0.01019346,0.1096332;0.3749896;-0.007894959,0.1860881;0.1084356;0.03088121,0.2291274;-0.1646766;-0.01336082,-0.1176369;0.3604849;-0.006551435,-0.2052746;0.150061;-0.1691597,-0.3012519;-0.02025397;-0.369612,0.07367748;0.006976762;-0.03038016,0.07582286;-0.3707391;0.01116619,0.07986381;-0.7121111;0.08829506,0.08447579;-0.7612478;0.02733508,-0.06948053;-0.0008076524;-0.03964598,-0.1036913;-0.3747467;0.01865625,-0.1192439;-0.7164207;0.09293292,-0.1181657;-0.7046102;-0.005392954,-0.005919736;0.3996659;0.01304769,25.98513
+0;0;0,0.002294835;0.1988172;0.02159729,0.006316654;0.4980215;0.04233687,0.1189678;0.3705231;0.01291236,0.1882772;0.0997237;0.02915763,0.2410373;-0.1727878;-0.007636799,-0.1010851;0.359226;-0.002607521,-0.2068868;0.1928862;-0.2014469,-0.2734339;0.1131911;-0.4614857,0.07370936;0.00464898;-0.030746,0.08031068;-0.3745866;-0.007576684,0.08162776;-0.7195863;0.05135913,0.08641103;-0.7066571;-0.04705688,-0.0671443;0.002625979;-0.04341368,-0.1048952;-0.3743235;-0.01368169,-0.1188803;-0.7196827;0.04137646,-0.1063007;-0.7646045;-0.02365032,0.004916242;0.3981246;0.0380201,0;0;0,-0.002515854;0.1997102;0.01046481,-0.007451478;0.4996128;0.01045957,0.1096077;0.3751689;-0.008790424,0.185906;0.1085922;0.03013792,0.2296073;-0.1644614;-0.01381529,-0.1176657;0.360789;-0.006066712,-0.203163;0.1376433;-0.1519989,-0.3010541;-0.02542631;-0.3574877,0.07354958;0.006993754;-0.03068464,0.07590079;-0.3706968;0.01108081,0.07995758;-0.7120836;0.08814326,0.08521296;-0.7617654;0.02795032,-0.069542;-0.0008078431;-0.03953805,-0.103627;-0.3747871;0.01858052,-0.1192918;-0.7164084;0.09307531,-0.1186256;-0.7045905;-0.005255595,-0.005786424;0.3996646;0.01321327,26.00718
+0;0;0,0.002294835;0.1988172;0.02159729,0.006316654;0.4980215;0.04233687,0.1189678;0.3705231;0.01291236,0.1882772;0.0997237;0.02915763,0.2410373;-0.1727878;-0.007636799,-0.1010851;0.359226;-0.002607521,-0.2068868;0.1928862;-0.2014469,-0.2734339;0.1131911;-0.4614857,0.07370936;0.00464898;-0.030746,0.08031068;-0.3745866;-0.007576684,0.08162776;-0.7195863;0.05135913,0.08641103;-0.7066571;-0.04705688,-0.0671443;0.002625979;-0.04341368,-0.1048952;-0.3743235;-0.01368169,-0.1188803;-0.7196827;0.04137646,-0.1063007;-0.7646045;-0.02365032,0.004916242;0.3981246;0.0380201,0;0;0,-0.002844167;0.1997256;0.01007984,-0.008099137;0.4996235;0.009909259,0.1089277;0.3748915;-0.009664921,0.1853147;0.1082424;0.02858825,0.2292827;-0.1649737;-0.01407073,-0.1175392;0.3595154;-0.007809989,-0.2042433;0.1338448;-0.1490728,-0.3043379;-0.0325644;-0.3507881,0.07334709;0.007003967;-0.03116324,0.07595091;-0.3706272;0.01112055,0.07992894;-0.7119224;0.08859152,0.08523582;-0.7614732;0.02822994,-0.06968188;-0.0008120346;-0.03929093,-0.1034367;-0.3748846;0.01841778,-0.119289;-0.7164105;0.09330929,-0.1184238;-0.7046164;-0.005015671,-0.006335055;0.399678;0.01269843,26.02935
+0;0;0,0.00221305;0.1988524;0.02127964,0.006405191;0.4981396;0.04066724,0.1191406;0.3706484;0.01255006,0.1882717;0.09982917;0.02921886,0.241567;-0.1726764;-0.006841062,-0.1014699;0.3594482;-0.002769589,-0.2024513;0.2154913;-0.2206666,-0.2685749;0.1139893;-0.4731048,0.0737516;0.004752687;-0.03062864,0.07986162;-0.3745041;-0.007672263,0.0810483;-0.7195059;0.05125418,0.08580342;-0.7066063;-0.04715805,-0.06711435;0.002565798;-0.04346355,-0.1053703;-0.3743279;-0.01367062,-0.1194289;-0.7196829;0.04139506,-0.1069497;-0.7648256;-0.02339575,0.004925814;0.3982201;0.03693815,0;0;0,-0.002844167;0.1997256;0.01007984,-0.008099137;0.4996235;0.009909259,0.1089277;0.3748915;-0.009664921,0.1853147;0.1082424;0.02858825,0.2292827;-0.1649737;-0.01407073,-0.1175392;0.3595154;-0.007809989,-0.2042433;0.1338448;-0.1490728,-0.3043379;-0.0325644;-0.3507881,0.07334709;0.007003967;-0.03116324,0.07595091;-0.3706272;0.01112055,0.07992894;-0.7119224;0.08859152,0.08523582;-0.7614732;0.02822994,-0.06968188;-0.0008120346;-0.03929093,-0.1034367;-0.3748846;0.01841778,-0.119289;-0.7164105;0.09330929,-0.1184238;-0.7046164;-0.005015671,-0.006335055;0.399678;0.01269843,26.0407
+0;0;0,0.00221305;0.1988524;0.02127964,0.006405191;0.4981396;0.04066724,0.1191406;0.3706484;0.01255006,0.1882717;0.09982917;0.02921886,0.241567;-0.1726764;-0.006841062,-0.1014699;0.3594482;-0.002769589,-0.2024513;0.2154913;-0.2206666,-0.2685749;0.1139893;-0.4731048,0.0737516;0.004752687;-0.03062864,0.07986162;-0.3745041;-0.007672263,0.0810483;-0.7195059;0.05125418,0.08580342;-0.7066063;-0.04715805,-0.06711435;0.002565798;-0.04346355,-0.1053703;-0.3743279;-0.01367062,-0.1194289;-0.7196829;0.04139506,-0.1069497;-0.7648256;-0.02339575,0.004925814;0.3982201;0.03693815,0;0;0,-0.002844167;0.1997256;0.01007984,-0.008099137;0.4996235;0.009909259,0.1089277;0.3748915;-0.009664921,0.1853147;0.1082424;0.02858825,0.2292827;-0.1649737;-0.01407073,-0.1175392;0.3595154;-0.007809989,-0.2042433;0.1338448;-0.1490728,-0.3043379;-0.0325644;-0.3507881,0.07334709;0.007003967;-0.03116324,0.07595091;-0.3706272;0.01112055,0.07992894;-0.7119224;0.08859152,0.08523582;-0.7614732;0.02822994,-0.06968188;-0.0008120346;-0.03929093,-0.1034367;-0.3748846;0.01841778,-0.119289;-0.7164105;0.09330929,-0.1184238;-0.7046164;-0.005015671,-0.006335055;0.399678;0.01269843,26.05229
+0;0;0,0.00221305;0.1988524;0.02127964,0.006405191;0.4981396;0.04066724,0.1191406;0.3706484;0.01255006,0.1882717;0.09982917;0.02921886,0.241567;-0.1726764;-0.006841062,-0.1014699;0.3594482;-0.002769589,-0.2024513;0.2154913;-0.2206666,-0.2685749;0.1139893;-0.4731048,0.0737516;0.004752687;-0.03062864,0.07986162;-0.3745041;-0.007672263,0.0810483;-0.7195059;0.05125418,0.08580342;-0.7066063;-0.04715805,-0.06711435;0.002565798;-0.04346355,-0.1053703;-0.3743279;-0.01367062,-0.1194289;-0.7196829;0.04139506,-0.1069497;-0.7648256;-0.02339575,0.004925814;0.3982201;0.03693815,0;0;0,-0.002947177;0.1997325;0.009911721,-0.008034679;0.499634;0.009884765,0.108889;0.374774;-0.009795041,0.1849017;0.1079172;0.02774857,0.2298148;-0.1652643;-0.01414049,-0.1174073;0.3592775;-0.008146617,-0.2045959;0.1305435;-0.1440837,-0.3043768;-0.0435131;-0.339399,0.07327057;0.007038821;-0.03133496,0.07646129;-0.3705794;0.01102361,0.08024555;-0.7117543;0.08903259,0.08578348;-0.761048;0.02835442,-0.06977446;-0.0008352551;-0.03912579,-0.10315;-0.3749226;0.01870763,-0.1189391;-0.7164367;0.09366639,-0.1180393;-0.7046468;-0.004657499,-0.006338418;0.3996855;0.0126116,26.07429
+0;0;0,0.002117898;0.1988613;0.02120648,0.00623195;0.4981575;0.04046623,0.119008;0.3707077;0.01241787,0.1881093;0.09990022;0.02939743,0.2417735;-0.1726771;-0.005555894,-0.1017141;0.3594246;-0.002621885,-0.2028781;0.2136186;-0.2192009,-0.2696616;0.1022899;-0.4672853,0.07378619;0.004820642;-0.03053455,0.0796903;-0.3744462;-0.007690752,0.0808432;-0.7194587;0.05117399,0.08549567;-0.7065607;-0.04724287,-0.06710357;0.002527673;-0.04348242,-0.1057098;-0.3743446;-0.01387123,-0.1195114;-0.7196705;0.04144118,-0.1069996;-0.7644911;-0.02371513,0.004778528;0.3982358;0.03678653,0;0;0,-0.002548131;0.1997313;0.01004642,-0.006851332;0.4996461;0.0101418,0.1095137;0.3747492;-0.01030459,0.1852567;0.1077894;0.02705135,0.2308003;-0.1653499;-0.01443011,-0.1170575;0.3598256;-0.006734617,-0.2034815;0.129107;-0.1397753,-0.3028319;-0.04851551;-0.3320765,0.07313102;0.007120448;-0.031641,0.07700469;-0.3704547;0.01104434,0.08063214;-0.7115276;0.08950534,0.08652224;-0.7606837;0.02868078,-0.06989077;-0.0009037114;-0.0389161,-0.1025651;-0.3750593;0.01887677,-0.1184449;-0.7165546;0.09390174,-0.1180847;-0.7047557;-0.004427277,-0.005570255;0.3996895;0.01279637,26.09637
+0;0;0,0.002117898;0.1988613;0.02120648,0.00623195;0.4981575;0.04046623,0.119008;0.3707077;0.01241787,0.1881093;0.09990022;0.02939743,0.2417735;-0.1726771;-0.005555894,-0.1017141;0.3594246;-0.002621885,-0.2028781;0.2136186;-0.2192009,-0.2696616;0.1022899;-0.4672853,0.07378619;0.004820642;-0.03053455,0.0796903;-0.3744462;-0.007690752,0.0808432;-0.7194587;0.05117399,0.08549567;-0.7065607;-0.04724287,-0.06710357;0.002527673;-0.04348242,-0.1057098;-0.3743446;-0.01387123,-0.1195114;-0.7196705;0.04144118,-0.1069996;-0.7644911;-0.02371513,0.004778528;0.3982358;0.03678653,0;0;0,-0.002548131;0.1997313;0.01004642,-0.006851332;0.4996461;0.0101418,0.1095137;0.3747492;-0.01030459,0.1852567;0.1077894;0.02705135,0.2308003;-0.1653499;-0.01443011,-0.1170575;0.3598256;-0.006734617,-0.2034815;0.129107;-0.1397753,-0.3028319;-0.04851551;-0.3320765,0.07313102;0.007120448;-0.031641,0.07700469;-0.3704547;0.01104434,0.08063214;-0.7115276;0.08950534,0.08652224;-0.7606837;0.02868078,-0.06989077;-0.0009037114;-0.0389161,-0.1025651;-0.3750593;0.01887677,-0.1184449;-0.7165546;0.09390174,-0.1180847;-0.7047557;-0.004427277,-0.005570255;0.3996895;0.01279637,26.11909
+0;0;0,0.002085971;0.1988634;0.02118941,0.006151325;0.4981619;0.04042487,0.1188886;0.3705202;0.01233228,0.1881224;0.09978476;0.02991118,0.2414824;-0.1728489;-0.005069148,-0.1018478;0.3594709;-0.002507228,-0.2022986;0.2103396;-0.2171452,-0.2700585;0.09104492;-0.46123,0.07381361;0.004822102;-0.03046799,0.07975923;-0.3744523;-0.007761704,0.08083019;-0.7194777;0.05102915,0.08539385;-0.7065783;-0.0473921,-0.06709421;0.002532058;-0.04349663,-0.1057193;-0.3743394;-0.01389972,-0.1194908;-0.7196587;0.04146169,-0.1071091;-0.764733;-0.02342714,0.004715964;0.3982398;0.03675022,0;0;0,-0.002455755;0.1997445;0.009803254,-0.006361661;0.4996644;0.009697872,0.1099262;0.375251;-0.01091495,0.1858457;0.1083608;0.02658018,0.2317986;-0.1647326;-0.01475136,-0.1165265;0.3596799;-0.007745557,-0.2042583;0.1267305;-0.135955,-0.3030696;-0.05396783;-0.3256508,0.07293744;0.007099711;-0.0320893,0.07713241;-0.3704275;0.0109872,0.0807259;-0.7114357;0.08973058,0.08634447;-0.7605217;0.02878934,-0.07005132;-0.0008994473;-0.03862645,-0.1025768;-0.3751501;0.01863213,-0.1185854;-0.7164495;0.09451638,-0.1180908;-0.7046849;-0.003805682,-0.00521268;0.3997083;0.01242778,26.12988
+0;0;0,0.002085971;0.1988634;0.02118941,0.006151325;0.4981619;0.04042487,0.1188886;0.3705202;0.01233228,0.1881224;0.09978476;0.02991118,0.2414824;-0.1728489;-0.005069148,-0.1018478;0.3594709;-0.002507228,-0.2022986;0.2103396;-0.2171452,-0.2700585;0.09104492;-0.46123,0.07381361;0.004822102;-0.03046799,0.07975923;-0.3744523;-0.007761704,0.08083019;-0.7194777;0.05102915,0.08539385;-0.7065783;-0.0473921,-0.06709421;0.002532058;-0.04349663,-0.1057193;-0.3743394;-0.01389972,-0.1194908;-0.7196587;0.04146169,-0.1071091;-0.764733;-0.02342714,0.004715964;0.3982398;0.03675022,0;0;0,-0.002455755;0.1997445;0.009803254,-0.006361661;0.4996644;0.009697872,0.1099262;0.375251;-0.01091495,0.1858457;0.1083608;0.02658018,0.2317986;-0.1647326;-0.01475136,-0.1165265;0.3596799;-0.007745557,-0.2042583;0.1267305;-0.135955,-0.3030696;-0.05396783;-0.3256508,0.07293744;0.007099711;-0.0320893,0.07713241;-0.3704275;0.0109872,0.0807259;-0.7114357;0.08973058,0.08634447;-0.7605217;0.02878934,-0.07005132;-0.0008994473;-0.03862645,-0.1025768;-0.3751501;0.01863213,-0.1185854;-0.7164495;0.09451638,-0.1180908;-0.7046849;-0.003805682,-0.00521268;0.3997083;0.01242778,26.14128
+0;0;0,0.002085971;0.1988634;0.02118941,0.006151325;0.4981619;0.04042487,0.1188886;0.3705202;0.01233228,0.1881224;0.09978476;0.02991118,0.2414824;-0.1728489;-0.005069148,-0.1018478;0.3594709;-0.002507228,-0.2022986;0.2103396;-0.2171452,-0.2700585;0.09104492;-0.46123,0.07381361;0.004822102;-0.03046799,0.07975923;-0.3744523;-0.007761704,0.08083019;-0.7194777;0.05102915,0.08539385;-0.7065783;-0.0473921,-0.06709421;0.002532058;-0.04349663,-0.1057193;-0.3743394;-0.01389972,-0.1194908;-0.7196587;0.04146169,-0.1071091;-0.764733;-0.02342714,0.004715964;0.3982398;0.03675022,0;0;0,-0.002455755;0.1997445;0.009803254,-0.006361661;0.4996644;0.009697872,0.1099262;0.375251;-0.01091495,0.1858457;0.1083608;0.02658018,0.2317986;-0.1647326;-0.01475136,-0.1165265;0.3596799;-0.007745557,-0.2042583;0.1267305;-0.135955,-0.3030696;-0.05396783;-0.3256508,0.07293744;0.007099711;-0.0320893,0.07713241;-0.3704275;0.0109872,0.0807259;-0.7114357;0.08973058,0.08634447;-0.7605217;0.02878934,-0.07005132;-0.0008994473;-0.03862645,-0.1025768;-0.3751501;0.01863213,-0.1185854;-0.7164495;0.09451638,-0.1180908;-0.7046849;-0.003805682,-0.00521268;0.3997083;0.01242778,26.15254
+0;0;0,0.002228104;0.1988847;0.02097426,0.006701581;0.4982225;0.0394835,0.1193394;0.3704915;0.0120525,0.1886549;0.09978926;0.02981866,0.2420964;-0.1728547;-0.004956424,-0.1017734;0.3595755;-0.002385352,-0.2022995;0.2074671;-0.2148883,-0.2679195;0.07160945;-0.4507627,0.07380567;0.004861858;-0.03048088,0.07998134;-0.3744213;-0.007983016,0.08043843;-0.7193404;0.05143525,0.08491179;-0.7064673;-0.04698558,-0.06710454;0.002496594;-0.04348273,-0.1048775;-0.3744385;-0.01359729,-0.1192081;-0.7197092;0.04192591,-0.1067834;-0.7645778;-0.0231918,0.0051015;0.3982936;0.03606807,0;0;0,-0.002352255;0.1997445;0.009827828,-0.006056743;0.4996668;0.009914367,0.1099984;0.3752553;-0.01163954,0.1868996;0.1086923;0.02618031,0.2329948;-0.1644466;-0.01468981,-0.116596;0.3601357;-0.006676488,-0.2036661;0.1262054;-0.1335441,-0.3024678;-0.06013426;-0.3177065,0.07287455;0.007146453;-0.03222155,0.07745697;-0.3703105;0.01142738,0.08125011;-0.7112966;0.0902569,0.08744036;-0.760691;0.02977376,-0.07015517;-0.000929096;-0.0384368,-0.1026666;-0.3749834;0.02009841,-0.11806;-0.7164489;0.09536029,-0.1181006;-0.704677;-0.002964355,-0.004958604;0.3997085;0.01258726,26.1746
+0;0;0,0.002228104;0.1988847;0.02097426,0.006701581;0.4982225;0.0394835,0.1193394;0.3704915;0.0120525,0.1886549;0.09978926;0.02981866,0.2420964;-0.1728547;-0.004956424,-0.1017734;0.3595755;-0.002385352,-0.2022995;0.2074671;-0.2148883,-0.2679195;0.07160945;-0.4507627,0.07380567;0.004861858;-0.03048088,0.07998134;-0.3744213;-0.007983016,0.08043843;-0.7193404;0.05143525,0.08491179;-0.7064673;-0.04698558,-0.06710454;0.002496594;-0.04348273,-0.1048775;-0.3744385;-0.01359729,-0.1192081;-0.7197092;0.04192591,-0.1067834;-0.7645778;-0.0231918,0.0051015;0.3982936;0.03606807,0;0;0,-0.002352255;0.1997445;0.009827828,-0.006056743;0.4996668;0.009914367,0.1099984;0.3752553;-0.01163954,0.1868996;0.1086923;0.02618031,0.2329948;-0.1644466;-0.01468981,-0.116596;0.3601357;-0.006676488,-0.2036661;0.1262054;-0.1335441,-0.3024678;-0.06013426;-0.3177065,0.07287455;0.007146453;-0.03222155,0.07745697;-0.3703105;0.01142738,0.08125011;-0.7112966;0.0902569,0.08744036;-0.760691;0.02977376,-0.07015517;-0.000929096;-0.0384368,-0.1026666;-0.3749834;0.02009841,-0.11806;-0.7164489;0.09536029,-0.1181006;-0.704677;-0.002964355,-0.004958604;0.3997085;0.01258726,26.18586
+0;0;0,0.002228104;0.1988847;0.02097426,0.006701581;0.4982225;0.0394835,0.1193394;0.3704915;0.0120525,0.1886549;0.09978926;0.02981866,0.2420964;-0.1728547;-0.004956424,-0.1017734;0.3595755;-0.002385352,-0.2022995;0.2074671;-0.2148883,-0.2679195;0.07160945;-0.4507627,0.07380567;0.004861858;-0.03048088,0.07998134;-0.3744213;-0.007983016,0.08043843;-0.7193404;0.05143525,0.08491179;-0.7064673;-0.04698558,-0.06710454;0.002496594;-0.04348273,-0.1048775;-0.3744385;-0.01359729,-0.1192081;-0.7197092;0.04192591,-0.1067834;-0.7645778;-0.0231918,0.0051015;0.3982936;0.03606807,0;0;0,-0.002134832;0.1997412;0.009945263,-0.005481686;0.4996672;0.01017821,0.1102364;0.3753581;-0.01247223,0.1878597;0.1090611;0.0257445,0.2342061;-0.1641518;-0.01433909,-0.1164959;0.3605749;-0.005328091,-0.2031748;0.1248159;-0.1290395,-0.3011835;-0.06433423;-0.3107439,0.07271953;0.007228089;-0.03255188,0.07746562;-0.3701666;0.01161518,0.08128546;-0.7111139;0.09061082,0.08762848;-0.7607072;0.03040549,-0.07030433;-0.0009898545;-0.03816177,-0.102503;-0.3751122;0.0201107,-0.117902;-0.7164997;0.09572476,-0.1185746;-0.7047198;-0.002599083,-0.004515183;0.3997065;0.01281095,26.20844
+0;0;0,0.002280583;0.1989057;0.02076844,0.006827598;0.4982837;0.03858253,0.1195794;0.3706887;0.01191,0.1890315;0.1000109;0.02951368,0.2425346;-0.17263;-0.005190808,-0.1020453;0.3597915;-0.002150621,-0.2037352;0.2005081;-0.2087612,-0.2673996;0.06644924;-0.4461956,0.07378983;0.004922254;-0.03050952,0.0798988;-0.3743609;-0.007993193,0.08037061;-0.7192907;0.05136298,0.08472345;-0.7064332;-0.04706055,-0.06710666;0.002455794;-0.04348177,-0.105118;-0.3744604;-0.01366019,-0.1193483;-0.7197135;0.04199743,-0.106796;-0.7646036;-0.02307112,0.005201613;0.3983469;0.0354204,0;0;0,-0.002311689;0.1997474;0.009778116,-0.005981444;0.4996694;0.00989348,0.1097026;0.3752695;-0.01342641,0.1876815;0.1092266;0.02582247,0.2341507;-0.1638621;-0.01495898,-0.1164784;0.3599036;-0.006362496,-0.203307;0.1214888;-0.1247652,-0.3018452;-0.07099883;-0.302638,0.07262481;0.007227752;-0.03276273,0.07743245;-0.3701347;0.01167225,0.08125586;-0.7110032;0.09100699,0.08751889;-0.7606201;0.03082445,-0.07042242;-0.0009738675;-0.03794384,-0.1024274;-0.3751202;0.02028181,-0.1178411;-0.7164944;0.09595235,-0.1185239;-0.7047265;-0.002369188,-0.004868641;0.3997115;0.01257374,26.23072
+0;0;0,0.002280583;0.1989057;0.02076844,0.006827598;0.4982837;0.03858253,0.1195794;0.3706887;0.01191,0.1890315;0.1000109;0.02951368,0.2425346;-0.17263;-0.005190808,-0.1020453;0.3597915;-0.002150621,-0.2037352;0.2005081;-0.2087612,-0.2673996;0.06644924;-0.4461956,0.07378983;0.004922254;-0.03050952,0.0798988;-0.3743609;-0.007993193,0.08037061;-0.7192907;0.05136298,0.08472345;-0.7064332;-0.04706055,-0.06710666;0.002455794;-0.04348177,-0.105118;-0.3744604;-0.01366019,-0.1193483;-0.7197135;0.04199743,-0.106796;-0.7646036;-0.02307112,0.005201613;0.3983469;0.0354204,0;0;0,-0.002311689;0.1997474;0.009778116,-0.005981444;0.4996694;0.00989348,0.1097026;0.3752695;-0.01342641,0.1876815;0.1092266;0.02582247,0.2341507;-0.1638621;-0.01495898,-0.1164784;0.3599036;-0.006362496,-0.203307;0.1214888;-0.1247652,-0.3018452;-0.07099883;-0.302638,0.07262481;0.007227752;-0.03276273,0.07743245;-0.3701347;0.01167225,0.08125586;-0.7110032;0.09100699,0.08751889;-0.7606201;0.03082445,-0.07042242;-0.0009738675;-0.03794384,-0.1024274;-0.3751202;0.02028181,-0.1178411;-0.7164944;0.09595235,-0.1185239;-0.7047265;-0.002369188,-0.004868641;0.3997115;0.01257374,26.25283
+0;0;0,0.002280583;0.1989057;0.02076844,0.006827598;0.4982837;0.03858253,0.1195794;0.3706887;0.01191,0.1890315;0.1000109;0.02951368,0.2425346;-0.17263;-0.005190808,-0.1020453;0.3597915;-0.002150621,-0.2037352;0.2005081;-0.2087612,-0.2673996;0.06644924;-0.4461956,0.07378983;0.004922254;-0.03050952,0.0798988;-0.3743609;-0.007993193,0.08037061;-0.7192907;0.05136298,0.08472345;-0.7064332;-0.04706055,-0.06710666;0.002455794;-0.04348177,-0.105118;-0.3744604;-0.01366019,-0.1193483;-0.7197135;0.04199743,-0.106796;-0.7646036;-0.02307112,0.005201613;0.3983469;0.0354204,0;0;0,-0.002189878;0.1997501;0.009751854,-0.005621663;0.4996747;0.009867843,0.1098954;0.3752114;-0.01375078,0.1877704;0.1091138;0.025334,0.2341206;-0.1638394;-0.01647744,-0.1161118;0.3597893;-0.006669126,-0.2035225;0.1200148;-0.1218541,-0.300144;-0.07854044;-0.2940171,0.07249241;0.007258177;-0.03304797,0.07729802;-0.3701236;0.01122298,0.08145654;-0.7107543;0.09155623,0.08699108;-0.7614409;0.03274265,-0.070516;-0.001001674;-0.03776892,-0.1023175;-0.3751921;0.02028424,-0.1176954;-0.7165695;0.09594767,-0.1183718;-0.7047943;-0.002375275,-0.00459325;0.3997161;0.01255241,26.26414
+0;0;0,0.002116634;0.1988923;0.02091369,0.006525266;0.4982644;0.03886064,0.1192983;0.3709493;0.01177609,0.1890479;0.1003324;0.02913889,0.2420621;-0.1724799;-0.004963642,-0.1023862;0.359867;-0.001817338,-0.2046373;0.1960956;-0.204607,-0.2692367;0.05678247;-0.4387411,0.0737167;0.004977687;-0.03067688,0.0794136;-0.3743103;-0.008134179,0.07998904;-0.7192218;0.05132717,0.08416414;-0.7063547;-0.04710572,-0.06720677;0.002428596;-0.04332842,-0.1055967;-0.3744476;-0.01348614,-0.1197749;-0.7196971;0.04220726,-0.1073663;-0.765072;-0.02232687,0.004929435;0.3983285;0.03565349,0;0;0,-0.002189878;0.1997501;0.009751854,-0.005621663;0.4996747;0.009867843,0.1098954;0.3752114;-0.01375078,0.1877704;0.1091138;0.025334,0.2341206;-0.1638394;-0.01647744,-0.1161118;0.3597893;-0.006669126,-0.2035225;0.1200148;-0.1218541,-0.300144;-0.07854044;-0.2940171,0.07249241;0.007258177;-0.03304797,0.07729802;-0.3701236;0.01122298,0.08145654;-0.7107543;0.09155623,0.08699108;-0.7614409;0.03274265,-0.070516;-0.001001674;-0.03776892,-0.1023175;-0.3751921;0.02028424,-0.1176954;-0.7165695;0.09594767,-0.1183718;-0.7047943;-0.002375275,-0.00459325;0.3997161;0.01255241,26.28627
+0;0;0,0.002116634;0.1988923;0.02091369,0.006525266;0.4982644;0.03886064,0.1192983;0.3709493;0.01177609,0.1890479;0.1003324;0.02913889,0.2420621;-0.1724799;-0.004963642,-0.1023862;0.359867;-0.001817338,-0.2046373;0.1960956;-0.204607,-0.2692367;0.05678247;-0.4387411,0.0737167;0.004977687;-0.03067688,0.0794136;-0.3743103;-0.008134179,0.07998904;-0.7192218;0.05132717,0.08416414;-0.7063547;-0.04710572,-0.06720677;0.002428596;-0.04332842,-0.1055967;-0.3744476;-0.01348614,-0.1197749;-0.7196971;0.04220726,-0.1073663;-0.765072;-0.02232687,0.004929435;0.3983285;0.03565349,0;0;0,-0.002123058;0.1997537;0.009693405,-0.005408525;0.4996803;0.009907443,0.1100128;0.3752314;-0.01401488,0.1879217;0.1091012;0.02477837,0.2338239;-0.1638737;-0.01738444,-0.1157673;0.359633;-0.007313473,-0.2038232;0.1186902;-0.1195309,-0.3000871;-0.08077422;-0.2908411,0.07235833;0.007236769;-0.03334519,0.07696804;-0.3700795;0.01150081,0.08114746;-0.7106138;0.09224056,0.08669831;-0.7612355;0.03333939,-0.07070133;-0.0009606805;-0.03742189,-0.1024749;-0.3751422;0.02070375,-0.1176971;-0.7165871;0.09609376,-0.1182354;-0.7048;-0.002232239,-0.004418918;0.3997201;0.01254991,26.2976
+0;0;0,0.002116634;0.1988923;0.02091369,0.006525266;0.4982644;0.03886064,0.1192983;0.3709493;0.01177609,0.1890479;0.1003324;0.02913889,0.2420621;-0.1724799;-0.004963642,-0.1023862;0.359867;-0.001817338,-0.2046373;0.1960956;-0.204607,-0.2692367;0.05678247;-0.4387411,0.0737167;0.004977687;-0.03067688,0.0794136;-0.3743103;-0.008134179,0.07998904;-0.7192218;0.05132717,0.08416414;-0.7063547;-0.04710572,-0.06720677;0.002428596;-0.04332842,-0.1055967;-0.3744476;-0.01348614,-0.1197749;-0.7196971;0.04220726,-0.1073663;-0.765072;-0.02232687,0.004929435;0.3983285;0.03565349,0;0;0,-0.002123058;0.1997537;0.009693405,-0.005408525;0.4996803;0.009907443,0.1100128;0.3752314;-0.01401488,0.1879217;0.1091012;0.02477837,0.2338239;-0.1638737;-0.01738444,-0.1157673;0.359633;-0.007313473,-0.2038232;0.1186902;-0.1195309,-0.3000871;-0.08077422;-0.2908411,0.07235833;0.007236769;-0.03334519,0.07696804;-0.3700795;0.01150081,0.08114746;-0.7106138;0.09224056,0.08669831;-0.7612355;0.03333939,-0.07070133;-0.0009606805;-0.03742189,-0.1024749;-0.3751422;0.02070375,-0.1176971;-0.7165871;0.09609376,-0.1182354;-0.7048;-0.002232239,-0.004418918;0.3997201;0.01254991,26.31982
+0;0;0,0.001584375;0.1989154;0.02074062,0.005686924;0.4982976;0.03858189,0.1185558;0.3711117;0.01133269,0.1887068;0.100639;0.029315,0.2413239;-0.1722136;-0.005078206,-0.1031696;0.3597813;-0.001773134,-0.2065902;0.1904353;-0.1993235,-0.2696183;0.04313105;-0.4289513,0.07379086;0.005089019;-0.03047968,0.07834414;-0.3742406;-0.008381741,0.07900493;-0.7191538;0.05106971,0.08297904;-0.7062885;-0.04737119,-0.06719015;0.002353766;-0.04335831,-0.1064312;-0.3744443;-0.01363687,-0.1206383;-0.7196846;0.04210598,-0.1080287;-0.7648872;-0.02258999,0.004199963;0.3983585;0.0354232,0;0;0,-0.002234586;0.1997591;0.009555603,-0.005801915;0.4996824;0.009519655,0.1096643;0.3749304;-0.01436033,0.1875156;0.1087339;0.0240917,0.2337811;-0.1642537;-0.01758926,-0.1153963;0.3581709;-0.008180829,-0.203876;0.1156871;-0.1166841,-0.2993031;-0.08401348;-0.2881874,0.07230049;0.007239686;-0.03346976,0.07689796;-0.3700488;0.01161066,0.08106869;-0.7105508;0.09248711,0.08667681;-0.7606584;0.0328942,-0.07077015;-0.0009622138;-0.03729155,-0.102762;-0.3750623;0.02123768,-0.1177753;-0.7165576;0.0964407,-0.1181729;-0.7047876;-0.001882799,-0.004690642;0.3997259;0.01225045,26.33109
+0;0;0,0.001584375;0.1989154;0.02074062,0.005686924;0.4982976;0.03858189,0.1185558;0.3711117;0.01133269,0.1887068;0.100639;0.029315,0.2413239;-0.1722136;-0.005078206,-0.1031696;0.3597813;-0.001773134,-0.2065902;0.1904353;-0.1993235,-0.2696183;0.04313105;-0.4289513,0.07379086;0.005089019;-0.03047968,0.07834414;-0.3742406;-0.008381741,0.07900493;-0.7191538;0.05106971,0.08297904;-0.7062885;-0.04737119,-0.06719015;0.002353766;-0.04335831,-0.1064312;-0.3744443;-0.01363687,-0.1206383;-0.7196846;0.04210598,-0.1080287;-0.7648872;-0.02258999,0.004199963;0.3983585;0.0354232,0;0;0,-0.002234586;0.1997591;0.009555603,-0.005801915;0.4996824;0.009519655,0.1096643;0.3749304;-0.01436033,0.1875156;0.1087339;0.0240917,0.2337811;-0.1642537;-0.01758926,-0.1153963;0.3581709;-0.008180829,-0.203876;0.1156871;-0.1166841,-0.2993031;-0.08401348;-0.2881874,0.07230049;0.007239686;-0.03346976,0.07689796;-0.3700488;0.01161066,0.08106869;-0.7105508;0.09248711,0.08667681;-0.7606584;0.0328942,-0.07077015;-0.0009622138;-0.03729155,-0.102762;-0.3750623;0.02123768,-0.1177753;-0.7165576;0.0964407,-0.1181729;-0.7047876;-0.001882799,-0.004690642;0.3997259;0.01225045,26.3423
+0;0;0,0.001584375;0.1989154;0.02074062,0.005686924;0.4982976;0.03858189,0.1185558;0.3711117;0.01133269,0.1887068;0.100639;0.029315,0.2413239;-0.1722136;-0.005078206,-0.1031696;0.3597813;-0.001773134,-0.2065902;0.1904353;-0.1993235,-0.2696183;0.04313105;-0.4289513,0.07379086;0.005089019;-0.03047968,0.07834414;-0.3742406;-0.008381741,0.07900493;-0.7191538;0.05106971,0.08297904;-0.7062885;-0.04737119,-0.06719015;0.002353766;-0.04335831,-0.1064312;-0.3744443;-0.01363687,-0.1206383;-0.7196846;0.04210598,-0.1080287;-0.7648872;-0.02258999,0.004199963;0.3983585;0.0354232,0;0;0,-0.002021135;0.1997629;0.009523869,-0.004940187;0.4996924;0.009273143,0.1102733;0.3750917;-0.01453618,0.1882064;0.1089117;0.02386489,0.2346915;-0.1640161;-0.01796264,-0.1154416;0.3589104;-0.006317047,-0.2017334;0.1153604;-0.1141925,-0.2968411;-0.08566289;-0.2843224,0.07223731;0.007262028;-0.03360111,0.0770507;-0.3699914;0.01174933,0.08142447;-0.7105198;0.09250394,0.08666302;-0.7602789;0.03241198,-0.07083627;-0.0009933928;-0.03716499,-0.1026043;-0.3751086;0.02138938,-0.1176271;-0.7165365;0.09689605,-0.1082393;-0.7633296;0.03353436,-0.004110973;0.3997355;0.01208943,26.36451
+0;0;0,0.001504668;0.1989135;0.02076465,0.005507102;0.4982966;0.03861374,0.118367;0.3710123;0.01130676,0.1890365;0.1006679;0.02918758,0.2415575;-0.1721533;-0.005599681,-0.1033304;0.3595148;-0.001448069,-0.2071787;0.1853363;-0.1945216,-0.2717286;0.0315233;-0.4194102,0.07377569;0.005181323;-0.03050081,0.078195;-0.3741425;-0.008276135,0.07877938;-0.7190907;0.05097271,0.08261752;-0.7062271;-0.04747328,-0.0671996;0.002271743;-0.04334803,-0.1061623;-0.3745269;-0.01326952,-0.1208133;-0.7197637;0.04238029,-0.1081613;-0.7647482;-0.0225601,0.004045974;0.3983573;0.03545144,0;0;0,-0.002021135;0.1997629;0.009523869,-0.004940187;0.4996924;0.009273143,0.1102733;0.3750917;-0.01453618,0.1882064;0.1089117;0.02386489,0.2346915;-0.1640161;-0.01796264,-0.1154416;0.3589104;-0.006317047,-0.2017334;0.1153604;-0.1141925,-0.2968411;-0.08566289;-0.2843224,0.07223731;0.007262028;-0.03360111,0.0770507;-0.3699914;0.01174933,0.08142447;-0.7105198;0.09250394,0.08666302;-0.7602789;0.03241198,-0.07083627;-0.0009933928;-0.03716499,-0.1026043;-0.3751086;0.02138938,-0.1176271;-0.7165365;0.09689605,-0.1082393;-0.7633296;0.03353436,-0.004110973;0.3997355;0.01208943,26.3868
+0;0;0,0.001504668;0.1989135;0.02076465,0.005507102;0.4982966;0.03861374,0.118367;0.3710123;0.01130676,0.1890365;0.1006679;0.02918758,0.2415575;-0.1721533;-0.005599681,-0.1033304;0.3595148;-0.001448069,-0.2071787;0.1853363;-0.1945216,-0.2717286;0.0315233;-0.4194102,0.07377569;0.005181323;-0.03050081,0.078195;-0.3741425;-0.008276135,0.07877938;-0.7190907;0.05097271,0.08261752;-0.7062271;-0.04747328,-0.0671996;0.002271743;-0.04334803,-0.1061623;-0.3745269;-0.01326952,-0.1208133;-0.7197637;0.04238029,-0.1081613;-0.7647482;-0.0225601,0.004045974;0.3983573;0.03545144,0;0;0,-0.002008595;0.1997667;0.009446904,-0.004874052;0.4996969;0.009157062,0.1102485;0.3754187;-0.01527096,0.1882764;0.1093139;0.02345763,0.2342858;-0.1636381;-0.01873612,-0.1151888;0.3587171;-0.007172609,-0.2017753;0.1140569;-0.1122639,-0.2965833;-0.08906804;-0.2800486,0.07220614;0.007255462;-0.03366944,0.07697733;-0.3700162;0.01153323,0.0815386;-0.7104738;0.09257567,0.08702458;-0.7604456;0.03278925,-0.07086597;-0.0009878223;-0.03710847,-0.1029029;-0.3750392;0.02170646,-0.1175076;-0.7164948;0.09717029,-0.1184268;-0.7047378;-0.001147307,-0.004057184;0.3997401;0.01198134,26.39804
+0;0;0,0.001504668;0.1989135;0.02076465,0.005507102;0.4982966;0.03861374,0.118367;0.3710123;0.01130676,0.1890365;0.1006679;0.02918758,0.2415575;-0.1721533;-0.005599681,-0.1033304;0.3595148;-0.001448069,-0.2071787;0.1853363;-0.1945216,-0.2717286;0.0315233;-0.4194102,0.07377569;0.005181323;-0.03050081,0.078195;-0.3741425;-0.008276135,0.07877938;-0.7190907;0.05097271,0.08261752;-0.7062271;-0.04747328,-0.0671996;0.002271743;-0.04334803,-0.1061623;-0.3745269;-0.01326952,-0.1208133;-0.7197637;0.04238029,-0.1081613;-0.7647482;-0.0225601,0.004045974;0.3983573;0.03545144,0;0;0,-0.002008595;0.1997667;0.009446904,-0.004874052;0.4996969;0.009157062,0.1102485;0.3754187;-0.01527096,0.1882764;0.1093139;0.02345763,0.2342858;-0.1636381;-0.01873612,-0.1151888;0.3587171;-0.007172609,-0.2017753;0.1140569;-0.1122639,-0.2965833;-0.08906804;-0.2800486,0.07220614;0.007255462;-0.03366944,0.07697733;-0.3700162;0.01153323,0.0815386;-0.7104738;0.09257567,0.08702458;-0.7604456;0.03278925,-0.07086597;-0.0009878223;-0.03710847,-0.1029029;-0.3750392;0.02170646,-0.1175076;-0.7164948;0.09717029,-0.1184268;-0.7047378;-0.001147307,-0.004057184;0.3997401;0.01198134,26.40918
+0;0;0,0.001317617;0.1989157;0.02075584,0.005032256;0.4983068;0.03853588,0.1179993;0.3710591;0.01122473,0.1889003;0.1007678;0.02899046,0.241209;-0.1720358;-0.006251493,-0.1037764;0.3594296;-0.001188874,-0.2078906;0.1768344;-0.1861733,-0.2723747;0.02111651;-0.4097661,0.07376704;0.005224128;-0.03051444,0.07777827;-0.3740918;-0.008080354,0.07825615;-0.7190371;0.0511865,0.08193359;-0.7061706;-0.04726613,-0.06723781;0.002245195;-0.04329014,-0.106127;-0.3745414;-0.01296724,-0.1213315;-0.719779;0.04252867,-0.1088914;-0.764493;-0.02276348,0.003674381;0.3983654;0.03539451,0;0;0,-0.001982782;0.1997698;0.009386675,-0.004791199;0.4997008;0.009092093,0.110144;0.3755223;-0.01614879,0.1885619;0.1095707;0.02284313,0.2345136;-0.1633856;-0.01938584,-0.1150562;0.3586282;-0.007404817,-0.202065;0.1135506;-0.1111663,-0.2963648;-0.08979033;-0.2789758,0.07212382;0.007251859;-0.0338462,0.07692219;-0.3700074;0.01145754,0.08139362;-0.7103478;0.09299556,0.08685954;-0.7607145;0.03373919,-0.07091521;-0.0009837176;-0.03701437,-0.1030083;-0.3750863;0.02144321,-0.1173729;-0.7164778;0.09724261,-0.1184724;-0.7047216;-0.001072988,-0.003987083;0.3997438;0.01191239,26.43134
+0;0;0,0.001317617;0.1989157;0.02075584,0.005032256;0.4983068;0.03853588,0.1179993;0.3710591;0.01122473,0.1889003;0.1007678;0.02899046,0.241209;-0.1720358;-0.006251493,-0.1037764;0.3594296;-0.001188874,-0.2078906;0.1768344;-0.1861733,-0.2723747;0.02111651;-0.4097661,0.07376704;0.005224128;-0.03051444,0.07777827;-0.3740918;-0.008080354,0.07825615;-0.7190371;0.0511865,0.08193359;-0.7061706;-0.04726613,-0.06723781;0.002245195;-0.04329014,-0.106127;-0.3745414;-0.01296724,-0.1213315;-0.719779;0.04252867,-0.1088914;-0.764493;-0.02276348,0.003674381;0.3983654;0.03539451,0;0;0,-0.001982782;0.1997698;0.009386675,-0.004791199;0.4997008;0.009092093,0.110144;0.3755223;-0.01614879,0.1885619;0.1095707;0.02284313,0.2345136;-0.1633856;-0.01938584,-0.1150562;0.3586282;-0.007404817,-0.202065;0.1135506;-0.1111663,-0.2963648;-0.08979033;-0.2789758,0.07212382;0.007251859;-0.0338462,0.07692219;-0.3700074;0.01145754,0.08139362;-0.7103478;0.09299556,0.08685954;-0.7607145;0.03373919,-0.07091521;-0.0009837176;-0.03701437,-0.1030083;-0.3750863;0.02144321,-0.1173729;-0.7164778;0.09724261,-0.1184724;-0.7047216;-0.001072988,-0.003987083;0.3997438;0.01191239,26.44273
+0;0;0,0.001317617;0.1989157;0.02075584,0.005032256;0.4983068;0.03853588,0.1179993;0.3710591;0.01122473,0.1889003;0.1007678;0.02899046,0.241209;-0.1720358;-0.006251493,-0.1037764;0.3594296;-0.001188874,-0.2078906;0.1768344;-0.1861733,-0.2723747;0.02111651;-0.4097661,0.07376704;0.005224128;-0.03051444,0.07777827;-0.3740918;-0.008080354,0.07825615;-0.7190371;0.0511865,0.08193359;-0.7061706;-0.04726613,-0.06723781;0.002245195;-0.04329014,-0.106127;-0.3745414;-0.01296724,-0.1213315;-0.719779;0.04252867,-0.1088914;-0.764493;-0.02276348,0.003674381;0.3983654;0.03539451,0;0;0,-0.001982782;0.1997698;0.009386675,-0.004791199;0.4997008;0.009092093,0.110144;0.3755223;-0.01614879,0.1885619;0.1095707;0.02284313,0.2345136;-0.1633856;-0.01938584,-0.1150562;0.3586282;-0.007404817,-0.202065;0.1135506;-0.1111663,-0.2963648;-0.08979033;-0.2789758,0.07212382;0.007251859;-0.0338462,0.07692219;-0.3700074;0.01145754,0.08139362;-0.7103478;0.09299556,0.08685954;-0.7607145;0.03373919,-0.07091521;-0.0009837176;-0.03701437,-0.1030083;-0.3750863;0.02144321,-0.1173729;-0.7164778;0.09724261,-0.1184724;-0.7047216;-0.001072988,-0.003987083;0.3997438;0.01191239,26.45401
+0;0;0,0.001154753;0.198925;0.02067597,0.004559576;0.4983305;0.03827142,0.1177162;0.371336;0.01104456,0.188852;0.1010996;0.0287072,0.24158;-0.1714912;-0.007542236,-0.1040984;0.3591693;-0.001163088,-0.2042235;0.1392701;-0.1426525,-0.2766539;0.0104129;-0.3804543,0.07375817;0.005247651;-0.03053186,0.07753406;-0.3740743;-0.008158442,0.07808522;-0.7189903;0.05127793,0.08164451;-0.7061291;-0.04717814,-0.06724831;0.002241926;-0.043274,-0.1062833;-0.3745168;-0.01279208,-0.1216587;-0.7197767;0.04251741,-0.1091451;-0.7642163;-0.0230735,0.003326401;0.3983854;0.03519644,0;0;0,-0.002233572;0.1997754;0.00920797,-0.005636964;0.4997002;0.008704648,0.1093312;0.3752043;-0.01704853,0.188443;0.1094992;0.02222178,0.2334956;-0.1635639;-0.02028485,-0.116042;0.3588629;-0.005909344,-0.2015973;0.113908;-0.1111585,-0.2950854;-0.09060982;-0.2779891,0.07207434;0.007272234;-0.03394706,0.07705991;-0.3699774;0.01141653,0.08160526;-0.7102785;0.09311408,0.08702651;-0.7605963;0.03378734,-0.07095306;-0.0009977532;-0.0369414,-0.1027529;-0.3751668;0.02125042,-0.1173808;-0.7165136;0.09720042,-0.1192456;-0.7047786;-0.001099706,-0.004587141;0.3997474;0.01159125,26.47608
+0;0;0,0.001154753;0.198925;0.02067597,0.004559576;0.4983305;0.03827142,0.1177162;0.371336;0.01104456,0.188852;0.1010996;0.0287072,0.24158;-0.1714912;-0.007542236,-0.1040984;0.3591693;-0.001163088,-0.2042235;0.1392701;-0.1426525,-0.2766539;0.0104129;-0.3804543,0.07375817;0.005247651;-0.03053186,0.07753406;-0.3740743;-0.008158442,0.07808522;-0.7189903;0.05127793,0.08164451;-0.7061291;-0.04717814,-0.06724831;0.002241926;-0.043274,-0.1062833;-0.3745168;-0.01279208,-0.1216587;-0.7197767;0.04251741,-0.1091451;-0.7642163;-0.0230735,0.003326401;0.3983854;0.03519644,0;0;0,-0.002233572;0.1997754;0.00920797,-0.005636964;0.4997002;0.008704648,0.1093312;0.3752043;-0.01704853,0.188443;0.1094992;0.02222178,0.2334956;-0.1635639;-0.02028485,-0.116042;0.3588629;-0.005909344,-0.2015973;0.113908;-0.1111585,-0.2950854;-0.09060982;-0.2779891,0.07207434;0.007272234;-0.03394706,0.07705991;-0.3699774;0.01141653,0.08160526;-0.7102785;0.09311408,0.08702651;-0.7605963;0.03378734,-0.07095306;-0.0009977532;-0.0369414,-0.1027529;-0.3751668;0.02125042,-0.1173808;-0.7165136;0.09720042,-0.1192456;-0.7047786;-0.001099706,-0.004587141;0.3997474;0.01159125,26.48742
+0;0;0,0.001154753;0.198925;0.02067597,0.004559576;0.4983305;0.03827142,0.1177162;0.371336;0.01104456,0.188852;0.1010996;0.0287072,0.24158;-0.1714912;-0.007542236,-0.1040984;0.3591693;-0.001163088,-0.2042235;0.1392701;-0.1426525,-0.2766539;0.0104129;-0.3804543,0.07375817;0.005247651;-0.03053186,0.07753406;-0.3740743;-0.008158442,0.07808522;-0.7189903;0.05127793,0.08164451;-0.7061291;-0.04717814,-0.06724831;0.002241926;-0.043274,-0.1062833;-0.3745168;-0.01279208,-0.1216587;-0.7197767;0.04251741,-0.1091451;-0.7642163;-0.0230735,0.003326401;0.3983854;0.03519644,0;0;0,-0.002247971;0.1997855;0.008983765,-0.005584448;0.4997098;0.008129902,0.1094496;0.3754978;-0.0173825,0.1886708;0.1097704;0.02151428,0.233565;-0.1632001;-0.02174784,-0.1159549;0.3591517;-0.007339632,-0.2023093;0.1134855;-0.1102526,-0.2958633;-0.09068671;-0.2774691,0.07198723;0.007237472;-0.03413877,0.07714631;-0.3699538;0.01168852,0.08162393;-0.7102802;0.09328408,0.08929825;-0.7620713;0.03626359,-0.07103407;-0.0009686273;-0.03678617,-0.1031955;-0.3751124;0.02136957,-0.1172601;-0.7164339;0.09753915,-0.1187771;-0.7047144;-0.0007640645,-0.004557668;0.3997605;0.01114242,26.50973
+0;0;0,0.001111198;0.1989284;0.02064578,0.004437975;0.4983357;0.03822948,0.1175866;0.371366;0.01086114,0.1892832;0.1012687;0.02838383,0.2421861;-0.1712633;-0.008052431,-0.104244;0.3591455;-0.001055442,-0.2038783;0.1384753;-0.1416886,-0.2787604;-5.204976E-05;-0.3732115,0.0737558;0.00523257;-0.03054017,0.07760308;-0.3740856;-0.008114347,0.07747604;-0.7189642;0.05154093,0.08094659;-0.7060804;-0.04692222,-0.06724804;0.002265622;-0.04327318,-0.1063078;-0.3744696;-0.01253426,-0.1217923;-0.7197448;0.04264941,-0.1105669;-0.7653517;-0.02183004,0.003220866;0.3983904;0.03515425,0;0;0,-0.001997485;0.1997866;0.009018707,-0.005028891;0.4997137;0.008173591,0.1097283;0.3753324;-0.01784616,0.1894725;0.1097261;0.02080791,0.2338213;-0.1633863;-0.02211978,-0.115829;0.3594281;-0.00590685,-0.2005113;0.1136715;-0.1099867,-0.2933258;-0.09064524;-0.2774385,0.07194623;0.007320312;-0.03420748,0.07762291;-0.3698745;0.01152906,0.08213282;-0.7101101;0.09350131,0.08945962;-0.761728;0.03618778,-0.07108779;-0.001047317;-0.03668009,-0.1027859;-0.3753075;0.02097874,-0.1168471;-0.7164999;0.09772538,-0.1189144;-0.7047808;-0.0005677417,-0.004112525;0.3997636;0.01119505,26.53208
+0;0;0,0.001111198;0.1989284;0.02064578,0.004437975;0.4983357;0.03822948,0.1175866;0.371366;0.01086114,0.1892832;0.1012687;0.02838383,0.2421861;-0.1712633;-0.008052431,-0.104244;0.3591455;-0.001055442,-0.2038783;0.1384753;-0.1416886,-0.2787604;-5.204976E-05;-0.3732115,0.0737558;0.00523257;-0.03054017,0.07760308;-0.3740856;-0.008114347,0.07747604;-0.7189642;0.05154093,0.08094659;-0.7060804;-0.04692222,-0.06724804;0.002265622;-0.04327318,-0.1063078;-0.3744696;-0.01253426,-0.1217923;-0.7197448;0.04264941,-0.1105669;-0.7653517;-0.02183004,0.003220866;0.3983904;0.03515425,0;0;0,-0.001997485;0.1997866;0.009018707,-0.005028891;0.4997137;0.008173591,0.1097283;0.3753324;-0.01784616,0.1894725;0.1097261;0.02080791,0.2338213;-0.1633863;-0.02211978,-0.115829;0.3594281;-0.00590685,-0.2005113;0.1136715;-0.1099867,-0.2933258;-0.09064524;-0.2774385,0.07194623;0.007320312;-0.03420748,0.07762291;-0.3698745;0.01152906,0.08213282;-0.7101101;0.09350131,0.08945962;-0.761728;0.03618778,-0.07108779;-0.001047317;-0.03668009,-0.1027859;-0.3753075;0.02097874,-0.1168471;-0.7164999;0.09772538,-0.1189144;-0.7047808;-0.0005677417,-0.004112525;0.3997636;0.01119505,26.55429
+0;0;0,0.001111198;0.1989284;0.02064578,0.004437975;0.4983357;0.03822948,0.1175866;0.371366;0.01086114,0.1892832;0.1012687;0.02838383,0.2421861;-0.1712633;-0.008052431,-0.104244;0.3591455;-0.001055442,-0.2038783;0.1384753;-0.1416886,-0.2787604;-5.204976E-05;-0.3732115,0.0737558;0.00523257;-0.03054017,0.07760308;-0.3740856;-0.008114347,0.07747604;-0.7189642;0.05154093,0.08094659;-0.7060804;-0.04692222,-0.06724804;0.002265622;-0.04327318,-0.1063078;-0.3744696;-0.01253426,-0.1217923;-0.7197448;0.04264941,-0.1105669;-0.7653517;-0.02183004,0.003220866;0.3983904;0.03515425,0;0;0,-0.002162022;0.1997834;0.009050956,-0.005650524;0.4997061;0.008234382,0.1090976;0.3748711;-0.01823879,0.1889912;0.1092868;0.0202581,0.2337159;-0.1637917;-0.02249508,-0.1162236;0.3589626;-0.004918691,-0.1999123;0.1132712;-0.1099519,-0.2928096;-0.09080006;-0.277657,0.07182673;0.00748609;-0.03442208,0.07739119;-0.3696365;0.01192017,0.08150159;-0.7100639;0.09311272,0.09038796;-0.7594925;0.03301157,-0.07118967;-0.001221375;-0.03647655,-0.1027565;-0.3755016;0.02112418,-0.1169586;-0.7166958;0.09783711,-0.1194758;-0.7049817;-0.0004445836,-0.004532953;0.3997574;0.01123595,26.56546
+0;0;0,0.001174802;0.1989428;0.02050358,0.004521118;0.4983671;0.03779746,0.1174737;0.370927;0.01015662,0.189583;0.1009706;0.02815072,0.2423968;-0.1715428;-0.008552358,-0.104212;0.3588718;-0.0009412058,-0.2030577;0.1357332;-0.1381953,-0.2811042;-0.01537655;-0.3606242,0.0737325;0.005163599;-0.03060809,0.07730929;-0.3741416;-0.007920412,0.07767803;-0.7190086;0.05180085,0.08088639;-0.7061564;-0.04666569,-0.06730565;0.002313219;-0.043181,-0.1062028;-0.3744397;-0.01245209,-0.1220105;-0.7196944;0.04276847,-0.109975;-0.7646928;-0.02227294,0.003296231;0.3984193;0.03480762,0;0;0,-0.002162022;0.1997834;0.009050956,-0.005650524;0.4997061;0.008234382,0.1090976;0.3748711;-0.01823879,0.1889912;0.1092868;0.0202581,0.2337159;-0.1637917;-0.02249508,-0.1162236;0.3589626;-0.004918691,-0.1999123;0.1132712;-0.1099519,-0.2928096;-0.09080006;-0.277657,0.07182673;0.00748609;-0.03442208,0.07739119;-0.3696365;0.01192017,0.08150159;-0.7100639;0.09311272,0.09038796;-0.7594925;0.03301157,-0.07118967;-0.001221375;-0.03647655,-0.1027565;-0.3755016;0.02112418,-0.1169586;-0.7166958;0.09783711,-0.1194758;-0.7049817;-0.0004445836,-0.004532953;0.3997574;0.01123595,26.57669
+0;0;0,0.001174802;0.1989428;0.02050358,0.004521118;0.4983671;0.03779746,0.1174737;0.370927;0.01015662,0.189583;0.1009706;0.02815072,0.2423968;-0.1715428;-0.008552358,-0.104212;0.3588718;-0.0009412058,-0.2030577;0.1357332;-0.1381953,-0.2811042;-0.01537655;-0.3606242,0.0737325;0.005163599;-0.03060809,0.07730929;-0.3741416;-0.007920412,0.07767803;-0.7190086;0.05180085,0.08088639;-0.7061564;-0.04666569,-0.06730565;0.002313219;-0.043181,-0.1062028;-0.3744397;-0.01245209,-0.1220105;-0.7196944;0.04276847,-0.109975;-0.7646928;-0.02227294,0.003296231;0.3984193;0.03480762,0;0;0,-0.002162022;0.1997834;0.009050956,-0.005650524;0.4997061;0.008234382,0.1090976;0.3748711;-0.01823879,0.1889912;0.1092868;0.0202581,0.2337159;-0.1637917;-0.02249508,-0.1162236;0.3589626;-0.004918691,-0.1999123;0.1132712;-0.1099519,-0.2928096;-0.09080006;-0.277657,0.07182673;0.00748609;-0.03442208,0.07739119;-0.3696365;0.01192017,0.08150159;-0.7100639;0.09311272,0.09038796;-0.7594925;0.03301157,-0.07118967;-0.001221375;-0.03647655,-0.1027565;-0.3755016;0.02112418,-0.1169586;-0.7166958;0.09783711,-0.1194758;-0.7049817;-0.0004445836,-0.004532953;0.3997574;0.01123595,26.58799
+0;0;0,0.001174802;0.1989428;0.02050358,0.004521118;0.4983671;0.03779746,0.1174737;0.370927;0.01015662,0.189583;0.1009706;0.02815072,0.2423968;-0.1715428;-0.008552358,-0.104212;0.3588718;-0.0009412058,-0.2030577;0.1357332;-0.1381953,-0.2811042;-0.01537655;-0.3606242,0.0737325;0.005163599;-0.03060809,0.07730929;-0.3741416;-0.007920412,0.07767803;-0.7190086;0.05180085,0.08088639;-0.7061564;-0.04666569,-0.06730565;0.002313219;-0.043181,-0.1062028;-0.3744397;-0.01245209,-0.1220105;-0.7196944;0.04276847,-0.109975;-0.7646928;-0.02227294,0.003296231;0.3984193;0.03480762,0;0;0,-0.002160167;0.1997884;0.008940621,-0.005564137;0.4997119;0.00804284,0.1092149;0.3750159;-0.01828256,0.189382;0.1094186;0.01954988,0.234195;-0.163726;-0.02268589,-0.1164348;0.3592964;-0.004030458,-0.1990436;0.1135834;-0.1098649,-0.2922496;-0.09032254;-0.2775999,0.07176767;0.00758837;-0.03452271,0.07745677;-0.3695018;0.01206755,0.08155931;-0.7099006;0.09338068,0.09073038;-0.7604566;0.03484329,-0.07125274;-0.001335091;-0.0363492,-0.1027363;-0.3755836;0.02150251,-0.1167517;-0.7167759;0.09825787,-0.1195385;-0.7050703;-1.497567E-05,-0.004477754;0.3997636;0.01106945,26.61014
+0;0;0,0.0008506661;0.1989552;0.02039885,0.003806627;0.4983977;0.0374323,0.1169879;0.3710735;0.01009603,0.1892912;0.1011495;0.02779689,0.2421146;-0.1712745;-0.009550974,-0.1048117;0.3588037;-0.0009637885,-0.2028118;0.1320803;-0.1328443,-0.2824911;-0.02381709;-0.3513556,0.07372912;0.005237811;-0.03060362,0.07685094;-0.3740765;-0.007999156,0.07711833;-0.7189528;0.05166886,0.08027396;-0.7061051;-0.04679859,-0.06731994;0.002256365;-0.04316172,-0.1069137;-0.374423;-0.01242093,-0.1226867;-0.7196651;0.04288843,-0.1100572;-0.7641016;-0.0226837,0.002739387;0.3984449;0.03455163,0;0;0,-0.002160167;0.1997884;0.008940621,-0.005564137;0.4997119;0.00804284,0.1092149;0.3750159;-0.01828256,0.189382;0.1094186;0.01954988,0.234195;-0.163726;-0.02268589,-0.1164348;0.3592964;-0.004030458,-0.1990436;0.1135834;-0.1098649,-0.2922496;-0.09032254;-0.2775999,0.07176767;0.00758837;-0.03452271,0.07745677;-0.3695018;0.01206755,0.08155931;-0.7099006;0.09338068,0.09073038;-0.7604566;0.03484329,-0.07125274;-0.001335091;-0.0363492,-0.1027363;-0.3755836;0.02150251,-0.1167517;-0.7167759;0.09825787,-0.1195385;-0.7050703;-1.497567E-05,-0.004477754;0.3997636;0.01106945,26.62138
+0;0;0,0.0008506661;0.1989552;0.02039885,0.003806627;0.4983977;0.0374323,0.1169879;0.3710735;0.01009603,0.1892912;0.1011495;0.02779689,0.2421146;-0.1712745;-0.009550974,-0.1048117;0.3588037;-0.0009637885,-0.2028118;0.1320803;-0.1328443,-0.2824911;-0.02381709;-0.3513556,0.07372912;0.005237811;-0.03060362,0.07685094;-0.3740765;-0.007999156,0.07711833;-0.7189528;0.05166886,0.08027396;-0.7061051;-0.04679859,-0.06731994;0.002256365;-0.04316172,-0.1069137;-0.374423;-0.01242093,-0.1226867;-0.7196651;0.04288843,-0.1100572;-0.7641016;-0.0226837,0.002739387;0.3984449;0.03455163,0;0;0,-0.002061937;0.1997837;0.009067676,-0.005318781;0.4997094;0.008450281,0.1094505;0.3751551;-0.01796425,0.1897448;0.1095456;0.01951133,0.2343638;-0.1636767;-0.02242602,-0.1153852;0.3580049;-0.006240159,-0.1994989;0.1114145;-0.1087979,-0.2927911;-0.09237687;-0.2766241,0.07170491;0.00758318;-0.03465402,0.07756747;-0.3694135;0.01266557,0.08168583;-0.7097434;0.09426558,0.08951703;-0.7601041;0.03526691,-0.07138782;-0.001340624;-0.03608299,-0.102492;-0.3756182;0.02178617,-0.1165837;-0.7167344;0.09886492,-0.1186037;-0.7050071;0.0005692914,-0.004273189;0.399758;0.01138896,26.63247
+0;0;0,0.0008506661;0.1989552;0.02039885,0.003806627;0.4983977;0.0374323,0.1169879;0.3710735;0.01009603,0.1892912;0.1011495;0.02779689,0.2421146;-0.1712745;-0.009550974,-0.1048117;0.3588037;-0.0009637885,-0.2028118;0.1320803;-0.1328443,-0.2824911;-0.02381709;-0.3513556,0.07372912;0.005237811;-0.03060362,0.07685094;-0.3740765;-0.007999156,0.07711833;-0.7189528;0.05166886,0.08027396;-0.7061051;-0.04679859,-0.06731994;0.002256365;-0.04316172,-0.1069137;-0.374423;-0.01242093,-0.1226867;-0.7196651;0.04288843,-0.1100572;-0.7641016;-0.0226837,0.002739387;0.3984449;0.03455163,0;0;0,-0.002061937;0.1997837;0.009067676,-0.005318781;0.4997094;0.008450281,0.1094505;0.3751551;-0.01796425,0.1897448;0.1095456;0.01951133,0.2343638;-0.1636767;-0.02242602,-0.1153852;0.3580049;-0.006240159,-0.1994989;0.1114145;-0.1087979,-0.2927911;-0.09237687;-0.2766241,0.07170491;0.00758318;-0.03465402,0.07756747;-0.3694135;0.01266557,0.08168583;-0.7097434;0.09426558,0.08951703;-0.7601041;0.03526691,-0.07138782;-0.001340624;-0.03608299,-0.102492;-0.3756182;0.02178617,-0.1165837;-0.7167344;0.09886492,-0.1186037;-0.7050071;0.0005692914,-0.004273189;0.399758;0.01138896,26.64372
+0;0;0,0.0008855423;0.1989719;0.0202335,0.003764255;0.498438;0.03686928,0.1170186;0.3713342;0.009615172,0.1892388;0.101408;0.02761882,0.2432917;-0.1706062;-0.01093688,-0.1049847;0.3588562;-0.0009401813,-0.2023887;0.1283153;-0.1264925,-0.2838419;-0.03415759;-0.33949,0.07374164;0.005235011;-0.03057391,0.07687508;-0.3740753;-0.007904574,0.07709164;-0.7189616;0.05170548,0.08004939;-0.7061218;-0.04676675,-0.06729158;0.002263149;-0.04320557,-0.1065159;-0.3744183;-0.01202085,-0.1227289;-0.7196918;0.04296454,-0.1098757;-0.7639897;-0.0227211,0.002724908;0.3984815;0.03410938,0;0;0,-0.001894666;0.1997814;0.009154267,-0.004810263;0.4997107;0.008654674,0.1098181;0.3751343;-0.0178138,0.1902234;0.1095307;0.01946441,0.2347873;-0.163679;-0.02261344,-0.1146665;0.3575052;-0.007017751,-0.1991384;0.1103122;-0.107815,-0.2904265;-0.09597073;-0.273688,0.07173091;0.007710167;-0.03457208,0.07758301;-0.3692995;0.01264523,0.08205359;-0.7095052;0.09474345,0.08883217;-0.7607969;0.03690132,-0.07141948;-0.001473619;-0.03601509,-0.1022341;-0.3757851;0.0217895,-0.1165066;-0.7167661;0.09943151,-0.1182029;-0.7050294;0.001128018,-0.003897219;0.399757;0.01155535,26.6659
+0;0;0,0.0008855423;0.1989719;0.0202335,0.003764255;0.498438;0.03686928,0.1170186;0.3713342;0.009615172,0.1892388;0.101408;0.02761882,0.2432917;-0.1706062;-0.01093688,-0.1049847;0.3588562;-0.0009401813,-0.2023887;0.1283153;-0.1264925,-0.2838419;-0.03415759;-0.33949,0.07374164;0.005235011;-0.03057391,0.07687508;-0.3740753;-0.007904574,0.07709164;-0.7189616;0.05170548,0.08004939;-0.7061218;-0.04676675,-0.06729158;0.002263149;-0.04320557,-0.1065159;-0.3744183;-0.01202085,-0.1227289;-0.7196918;0.04296454,-0.1098757;-0.7639897;-0.0227211,0.002724908;0.3984815;0.03410938,0;0;0,-0.001894666;0.1997814;0.009154267,-0.004810263;0.4997107;0.008654674,0.1098181;0.3751343;-0.0178138,0.1902234;0.1095307;0.01946441,0.2347873;-0.163679;-0.02261344,-0.1146665;0.3575052;-0.007017751,-0.1991384;0.1103122;-0.107815,-0.2904265;-0.09597073;-0.273688,0.07173091;0.007710167;-0.03457208,0.07758301;-0.3692995;0.01264523,0.08205359;-0.7095052;0.09474345,0.08883217;-0.7607969;0.03690132,-0.07141948;-0.001473619;-0.03601509,-0.1022341;-0.3757851;0.0217895,-0.1165066;-0.7167661;0.09943151,-0.1182029;-0.7050294;0.001128018,-0.003897219;0.399757;0.01155535,26.67722
+0;0;0,0.0008855423;0.1989719;0.0202335,0.003764255;0.498438;0.03686928,0.1170186;0.3713342;0.009615172,0.1892388;0.101408;0.02761882,0.2432917;-0.1706062;-0.01093688,-0.1049847;0.3588562;-0.0009401813,-0.2023887;0.1283153;-0.1264925,-0.2838419;-0.03415759;-0.33949,0.07374164;0.005235011;-0.03057391,0.07687508;-0.3740753;-0.007904574,0.07709164;-0.7189616;0.05170548,0.08004939;-0.7061218;-0.04676675,-0.06729158;0.002263149;-0.04320557,-0.1065159;-0.3744183;-0.01202085,-0.1227289;-0.7196918;0.04296454,-0.1098757;-0.7639897;-0.0227211,0.002724908;0.3984815;0.03410938,0;0;0,-0.002141895;0.1997664;0.009422363,-0.005537732;0.4996914;0.009103561,0.1092346;0.3747366;-0.01739365,0.1899622;0.1092547;0.02005549,0.2344568;-0.1637921;-0.0231376,-0.114598;0.3563108;-0.007367169,-0.1987782;0.1081656;-0.1060467,-0.2906412;-0.09951845;-0.2698408,0.07174017;0.007945757;-0.03449946,0.07724761;-0.3690307;0.01302404,0.08176234;-0.7091124;0.09563179,0.08842622;-0.7601829;0.03746675,-0.0714519;-0.001735093;-0.03593905,-0.1024541;-0.3759381;0.02246401,-0.1166564;-0.7168694;0.1003367,-0.1181394;-0.7051175;0.002026938,-0.004409049;0.3997378;0.01193308,26.69949
+0;0;0,0.001018759;0.1990008;0.01994084,0.003979407;0.4984977;0.03600448,0.1172056;0.3711936;0.009170264,0.1894094;0.1012436;0.02688,0.2437487;-0.1706325;-0.0122433,-0.1050527;0.3589957;-0.0009395778,-0.2039133;0.1259566;-0.120603,-0.283396;-0.04438491;-0.3281272,0.07371237;0.005285033;-0.03063583,0.07658362;-0.3740181;-0.00781247,0.07686482;-0.7188658;0.0520207,0.07969312;-0.7060499;-0.04645117,-0.06736034;0.002224101;-0.04310032,-0.1070381;-0.3744023;-0.0118229,-0.1230041;-0.7196872;0.04316257,-0.1101221;-0.7639771;-0.02252655,0.002907836;0.3985367;0.03342646,0;0;0,-0.002141895;0.1997664;0.009422363,-0.005537732;0.4996914;0.009103561,0.1092346;0.3747366;-0.01739365,0.1899622;0.1092547;0.02005549,0.2344568;-0.1637921;-0.0231376,-0.114598;0.3563108;-0.007367169,-0.1987782;0.1081656;-0.1060467,-0.2906412;-0.09951845;-0.2698408,0.07174017;0.007945757;-0.03449946,0.07724761;-0.3690307;0.01302404,0.08176234;-0.7091124;0.09563179,0.08842622;-0.7601829;0.03746675,-0.0714519;-0.001735093;-0.03593905,-0.1024541;-0.3759381;0.02246401,-0.1166564;-0.7168694;0.1003367,-0.1181394;-0.7051175;0.002026938,-0.004409049;0.3997378;0.01193308,26.72186
+0;0;0,0.001018759;0.1990008;0.01994084,0.003979407;0.4984977;0.03600448,0.1172056;0.3711936;0.009170264,0.1894094;0.1012436;0.02688,0.2437487;-0.1706325;-0.0122433,-0.1050527;0.3589957;-0.0009395778,-0.2039133;0.1259566;-0.120603,-0.283396;-0.04438491;-0.3281272,0.07371237;0.005285033;-0.03063583,0.07658362;-0.3740181;-0.00781247,0.07686482;-0.7188658;0.0520207,0.07969312;-0.7060499;-0.04645117,-0.06736034;0.002224101;-0.04310032,-0.1070381;-0.3744023;-0.0118229,-0.1230041;-0.7196872;0.04316257,-0.1101221;-0.7639771;-0.02252655,0.002907836;0.3985367;0.03342646,0;0;0,-0.002019565;0.1997672;0.009434497,-0.005211505;0.4996945;0.009283872,0.1095539;0.3747914;-0.01707353,0.1904193;0.1093255;0.02019094,0.2346988;-0.1635973;-0.02399596,-0.1143401;0.3563707;-0.007376031,-0.1976772;0.1069859;-0.103616,-0.2896238;-0.1040465;-0.2630247,0.07183055;0.007978086;-0.03430339,0.07747832;-0.3689418;0.01364987,0.08206134;-0.7090263;0.09624238,0.08867306;-0.7601674;0.03816995,-0.07139611;-0.001759724;-0.03604856,-0.1024327;-0.3758478;0.02306866,-0.1163197;-0.7167438;0.1011524,-0.1176944;-0.7049853;0.002839856,-0.004151615;0.3997386;0.01205885,26.74421
+0;0;0,0.001018759;0.1990008;0.01994084,0.003979407;0.4984977;0.03600448,0.1172056;0.3711936;0.009170264,0.1894094;0.1012436;0.02688,0.2437487;-0.1706325;-0.0122433,-0.1050527;0.3589957;-0.0009395778,-0.2039133;0.1259566;-0.120603,-0.283396;-0.04438491;-0.3281272,0.07371237;0.005285033;-0.03063583,0.07658362;-0.3740181;-0.00781247,0.07686482;-0.7188658;0.0520207,0.07969312;-0.7060499;-0.04645117,-0.06736034;0.002224101;-0.04310032,-0.1070381;-0.3744023;-0.0118229,-0.1230041;-0.7196872;0.04316257,-0.1101221;-0.7639771;-0.02252655,0.002907836;0.3985367;0.03342646,0;0;0,-0.001960981;0.1997677;0.009434738,-0.005040711;0.4996963;0.009412277,0.1097429;0.3749073;-0.01686013,0.1905981;0.1094501;0.02048836,0.2345205;-0.1635022;-0.02387241,-0.1142341;0.3564595;-0.007351556,-0.1964386;0.1050583;-0.0992201,-0.2868673;-0.1141337;-0.2481413,0.07173137;0.00805003;-0.03449357,0.07726533;-0.3688286;0.01379585,0.08211388;-0.7088349;0.09669444,0.08780475;-0.7601706;0.03879693,-0.07151148;-0.00181711;-0.03581629,-0.102331;-0.3760121;0.02273498,-0.1163309;-0.7166874;0.101756,-0.1176375;-0.7049222;0.003441274,-0.004021144;0.3997388;0.01214221,26.76654
+0;0;0,0.00107396;0.199015;0.01979606,0.003975592;0.4985192;0.03574944,0.1171271;0.3710698;0.008683685,0.189408;0.1011627;0.02672923,0.2438143;-0.170623;-0.01292517,-0.1051722;0.3590168;-0.0007709041,-0.2042194;0.1228866;-0.1140501,-0.2843235;-0.05327165;-0.3164151,0.07374384;0.005345961;-0.03054943,0.07614101;-0.3739602;-0.007721905,0.07651117;-0.7187762;0.05229252,0.0791606;-0.7059692;-0.04618276,-0.06730552;0.002167954;-0.04318875,-0.1075403;-0.3743786;-0.01166234,-0.1234712;-0.7196485;0.04342724,-0.1097195;-0.7637085;-0.02234519,0.002917028;0.3985576;0.03318848,0;0;0,-0.001960981;0.1997677;0.009434738,-0.005040711;0.4996963;0.009412277,0.1097429;0.3749073;-0.01686013,0.1905981;0.1094501;0.02048836,0.2345205;-0.1635022;-0.02387241,-0.1142341;0.3564595;-0.007351556,-0.1964386;0.1050583;-0.0992201,-0.2868673;-0.1141337;-0.2481413,0.07173137;0.00805003;-0.03449357,0.07726533;-0.3688286;0.01379585,0.08211388;-0.7088349;0.09669444,0.08780475;-0.7601706;0.03879693,-0.07151148;-0.00181711;-0.03581629,-0.102331;-0.3760121;0.02273498,-0.1163309;-0.7166874;0.101756,-0.1176375;-0.7049222;0.003441274,-0.004021144;0.3997388;0.01214221,26.78887
+0;0;0,0.00107396;0.199015;0.01979606,0.003975592;0.4985192;0.03574944,0.1171271;0.3710698;0.008683685,0.189408;0.1011627;0.02672923,0.2438143;-0.170623;-0.01292517,-0.1051722;0.3590168;-0.0007709041,-0.2042194;0.1228866;-0.1140501,-0.2843235;-0.05327165;-0.3164151,0.07374384;0.005345961;-0.03054943,0.07614101;-0.3739602;-0.007721905,0.07651117;-0.7187762;0.05229252,0.0791606;-0.7059692;-0.04618276,-0.06730552;0.002167954;-0.04318875,-0.1075403;-0.3743786;-0.01166234,-0.1234712;-0.7196485;0.04342724,-0.1097195;-0.7637085;-0.02234519,0.002917028;0.3985576;0.03318848,0;0;0,-0.001990642;0.1997629;0.009530347,-0.005080999;0.4996911;0.00967567,0.1097258;0.3750398;-0.01667643,0.1904477;0.10956;0.02079889,0.2341376;-0.1633835;-0.02384478,-0.11427;0.356526;-0.00732003,-0.1965077;0.1031797;-0.09364858,-0.2849317;-0.1212776;-0.2357756,0.0717902;0.008114412;-0.03435583,0.07705885;-0.3687828;0.01381784,0.08197276;-0.7087169;0.09700848,0.07813621;-0.6969522;-0.001239955,-0.07147379;-0.001893173;-0.0358875,-0.1022172;-0.3760383;0.02302177,-0.1162482;-0.7166603;0.1022669,-0.1175057;-0.7048859;0.003949791,-0.004060797;0.3997322;0.01235633,26.79997
+0;0;0,0.00107396;0.199015;0.01979606,0.003975592;0.4985192;0.03574944,0.1171271;0.3710698;0.008683685,0.189408;0.1011627;0.02672923,0.2438143;-0.170623;-0.01292517,-0.1051722;0.3590168;-0.0007709041,-0.2042194;0.1228866;-0.1140501,-0.2843235;-0.05327165;-0.3164151,0.07374384;0.005345961;-0.03054943,0.07614101;-0.3739602;-0.007721905,0.07651117;-0.7187762;0.05229252,0.0791606;-0.7059692;-0.04618276,-0.06730552;0.002167954;-0.04318875,-0.1075403;-0.3743786;-0.01166234,-0.1234712;-0.7196485;0.04342724,-0.1097195;-0.7637085;-0.02234519,0.002917028;0.3985576;0.03318848,0;0;0,-0.001990642;0.1997629;0.009530347,-0.005080999;0.4996911;0.00967567,0.1097258;0.3750398;-0.01667643,0.1904477;0.10956;0.02079889,0.2341376;-0.1633835;-0.02384478,-0.11427;0.356526;-0.00732003,-0.1965077;0.1031797;-0.09364858,-0.2849317;-0.1212776;-0.2357756,0.0717902;0.008114412;-0.03435583,0.07705885;-0.3687828;0.01381784,0.08197276;-0.7087169;0.09700848,0.07813621;-0.6969522;-0.001239955,-0.07147379;-0.001893173;-0.0358875,-0.1022172;-0.3760383;0.02302177,-0.1162482;-0.7166603;0.1022669,-0.1175057;-0.7048859;0.003949791,-0.004060797;0.3997322;0.01235633,26.82227
+0;0;0,0.00109502;0.1990246;0.01969812,0.003997411;0.4985372;0.03549653,0.1170268;0.3706675;0.008401671,0.1891543;0.1007361;0.02669641,0.2431222;-0.1711203;-0.0130722,-0.1052067;0.3590382;-0.0008167699,-0.2030018;0.1196765;-0.1082511,-0.2853493;-0.06115584;-0.3055289,0.07377344;0.005333219;-0.03048008,0.07598729;-0.3739754;-0.007675515,0.07598384;-0.7188056;0.05225892,0.07854304;-0.7059975;-0.04621896,-0.06728828;0.002178257;-0.04321508,-0.1075473;-0.3742725;-0.01059502,-0.122977;-0.719658;0.04390948,-0.1092321;-0.7630204;-0.02264158,0.002934636;0.3985745;0.03298172,0;0;0,-0.001815667;0.1997585;0.009656452,-0.004665187;0.4996884;0.00995525,0.1101243;0.375149;-0.01626173,0.1908755;0.1096575;0.02106781,0.2342636;-0.163306;-0.02374769,-0.114815;0.3577074;-0.004566527,-0.1945507;0.10256;-0.08788565,-0.282731;-0.1257395;-0.2239134,0.07187802;0.008112228;-0.03417226,0.07730301;-0.3687913;0.01393469,0.08227576;-0.7086033;0.09761938,0.07771137;-0.696835;-0.0005985945,-0.07144064;-0.001901471;-0.03595303,-0.101665;-0.3760982;0.02289671,-0.115758;-0.7165725;0.1027629,-0.1177457;-0.7047914;0.004456617,-0.003730907;0.3997277;0.01259776,26.84508
+0;0;0,0.00109502;0.1990246;0.01969812,0.003997411;0.4985372;0.03549653,0.1170268;0.3706675;0.008401671,0.1891543;0.1007361;0.02669641,0.2431222;-0.1711203;-0.0130722,-0.1052067;0.3590382;-0.0008167699,-0.2030018;0.1196765;-0.1082511,-0.2853493;-0.06115584;-0.3055289,0.07377344;0.005333219;-0.03048008,0.07598729;-0.3739754;-0.007675515,0.07598384;-0.7188056;0.05225892,0.07854304;-0.7059975;-0.04621896,-0.06728828;0.002178257;-0.04321508,-0.1075473;-0.3742725;-0.01059502,-0.122977;-0.719658;0.04390948,-0.1092321;-0.7630204;-0.02264158,0.002934636;0.3985745;0.03298172,0;0;0,-0.001864304;0.1997581;0.009656321,-0.004756901;0.4996877;0.01002823,0.1100663;0.3752818;-0.01624441,0.1907989;0.1098273;0.02138707,0.2342679;-0.1631241;-0.02342386,-0.1155627;0.3588202;-0.002792666,-0.1941843;0.102355;-0.08306877,-0.2297535;-0.153567;-0.1909517,0.07192934;0.008092511;-0.03406878,0.07739418;-0.3688004;0.01411666,0.08227048;-0.7085297;0.09814198,0.08825506;-0.7599123;0.04034002,-0.07140233;-0.001860008;-0.03603121,-0.1016781;-0.3760066;0.02311011,-0.1157383;-0.7164385;0.1031629,-0.1182692;-0.704658;0.004869208,-0.003810936;0.3997263;0.01264215,26.86695
+0;0;0,0.00109502;0.1990246;0.01969812,0.003997411;0.4985372;0.03549653,0.1170268;0.3706675;0.008401671,0.1891543;0.1007361;0.02669641,0.2431222;-0.1711203;-0.0130722,-0.1052067;0.3590382;-0.0008167699,-0.2030018;0.1196765;-0.1082511,-0.2853493;-0.06115584;-0.3055289,0.07377344;0.005333219;-0.03048008,0.07598729;-0.3739754;-0.007675515,0.07598384;-0.7188056;0.05225892,0.07854304;-0.7059975;-0.04621896,-0.06728828;0.002178257;-0.04321508,-0.1075473;-0.3742725;-0.01059502,-0.122977;-0.719658;0.04390948,-0.1092321;-0.7630204;-0.02264158,0.002934636;0.3985745;0.03298172,0;0;0,-0.001864304;0.1997581;0.009656321,-0.004756901;0.4996877;0.01002823,0.1100663;0.3752818;-0.01624441,0.1907989;0.1098273;0.02138707,0.2342679;-0.1631241;-0.02342386,-0.1155627;0.3588202;-0.002792666,-0.1941843;0.102355;-0.08306877,-0.2297535;-0.153567;-0.1909517,0.07192934;0.008092511;-0.03406878,0.07739418;-0.3688004;0.01411666,0.08227048;-0.7085297;0.09814198,0.08825506;-0.7599123;0.04034002,-0.07140233;-0.001860008;-0.03603121,-0.1016781;-0.3760066;0.02311011,-0.1157383;-0.7164385;0.1031629,-0.1182692;-0.704658;0.004869208,-0.003810936;0.3997263;0.01264215,26.88941
+0;0;0,0.001374387;0.1990554;0.01936634,0.004846537;0.4985988;0.03444507,0.117634;0.3705969;0.007638711,0.1896583;0.1006113;0.02553359,0.2439891;-0.1712087;-0.01398935,-0.1048259;0.3590801;-0.0007965304,-0.2025624;0.1174879;-0.1031723,-0.2854141;-0.06634022;-0.2974474,0.0737731;0.005338266;-0.03048002,0.07585663;-0.3739635;-0.007548954,0.0758175;-0.7187953;0.05237618,0.07819199;-0.7060089;-0.04610253,-0.06730731;0.002186071;-0.04318504,-0.1078157;-0.3742367;-0.01055084,-0.1231242;-0.7196097;0.04406703,-0.1090249;-0.7627469;-0.02265761,0.003564188;0.3986328;0.03217591,0;0;0,-0.001822683;0.1997622;0.00957785,-0.004610168;0.4996932;0.009906316,0.1102021;0.3753807;-0.0163311,0.1913001;0.1100992;0.02173272,0.2342176;-0.1629491;-0.02301887,-0.1151601;0.3584481;-0.003995604,-0.1943453;0.1002108;-0.0777736,-0.2297191;-0.1548158;-0.1878196,0.07191017;0.008133427;-0.03409947,0.07739576;-0.3687216;0.01437878,0.08233106;-0.7084547;0.09838502,0.08820257;-0.7592707;0.03978211,-0.07143607;-0.001900368;-0.03596215,-0.1017891;-0.3759789;0.02356914,-0.1155096;-0.7163578;0.1039052,-0.1176854;-0.7045797;0.0056035,-0.003702856;0.3997317;0.01252527,26.91167
+0;0;0,0.001374387;0.1990554;0.01936634,0.004846537;0.4985988;0.03444507,0.117634;0.3705969;0.007638711,0.1896583;0.1006113;0.02553359,0.2439891;-0.1712087;-0.01398935,-0.1048259;0.3590801;-0.0007965304,-0.2025624;0.1174879;-0.1031723,-0.2854141;-0.06634022;-0.2974474,0.0737731;0.005338266;-0.03048002,0.07585663;-0.3739635;-0.007548954,0.0758175;-0.7187953;0.05237618,0.07819199;-0.7060089;-0.04610253,-0.06730731;0.002186071;-0.04318504,-0.1078157;-0.3742367;-0.01055084,-0.1231242;-0.7196097;0.04406703,-0.1090249;-0.7627469;-0.02265761,0.003564188;0.3986328;0.03217591,0;0;0,-0.001896499;0.1997507;0.009800405,-0.005043236;0.4996791;0.01035433,0.1098166;0.3750622;-0.01617301,0.1907786;0.1097855;0.02221238,0.2337072;-0.16331;-0.02223949,-0.1148429;0.3574173;-0.005005738,-0.1938689;0.09719339;-0.07162707,-0.2296196;-0.15753;-0.1822519,0.07189398;0.008237477;-0.03410864,0.07746556;-0.3685675;0.01474785,0.08236889;-0.7082067;0.09913482,0.08787624;-0.7587734;0.04015449,-0.07148588;-0.00201948;-0.03585652,-0.1016981;-0.3761436;0.02345932,-0.1155096;-0.7163884;0.1043463,-0.1085659;-0.7642257;0.04195118,-0.003976462;0.3997164;0.01286669,26.93419
+0;0;0,0.001374387;0.1990554;0.01936634,0.004846537;0.4985988;0.03444507,0.117634;0.3705969;0.007638711,0.1896583;0.1006113;0.02553359,0.2439891;-0.1712087;-0.01398935,-0.1048259;0.3590801;-0.0007965304,-0.2025624;0.1174879;-0.1031723,-0.2854141;-0.06634022;-0.2974474,0.0737731;0.005338266;-0.03048002,0.07585663;-0.3739635;-0.007548954,0.0758175;-0.7187953;0.05237618,0.07819199;-0.7060089;-0.04610253,-0.06730731;0.002186071;-0.04318504,-0.1078157;-0.3742367;-0.01055084,-0.1231242;-0.7196097;0.04406703,-0.1090249;-0.7627469;-0.02265761,0.003564188;0.3986328;0.03217591,0;0;0,-0.001896499;0.1997507;0.009800405,-0.005043236;0.4996791;0.01035433,0.1098166;0.3750622;-0.01617301,0.1907786;0.1097855;0.02221238,0.2337072;-0.16331;-0.02223949,-0.1148429;0.3574173;-0.005005738,-0.1938689;0.09719339;-0.07162707,-0.2296196;-0.15753;-0.1822519,0.07189398;0.008237477;-0.03410864,0.07746556;-0.3685675;0.01474785,0.08236889;-0.7082067;0.09913482,0.08787624;-0.7587734;0.04015449,-0.07148588;-0.00201948;-0.03585652,-0.1016981;-0.3761436;0.02345932,-0.1155096;-0.7163884;0.1043463,-0.1085659;-0.7642257;0.04195118,-0.003976462;0.3997164;0.01286669,26.94521
+0;0;0,0.001435235;0.1990859;0.01904549,0.004871089;0.4986514;0.0337074,0.1176506;0.3706238;0.006942393,0.1896682;0.1006525;0.02508007,0.2442407;-0.1712685;-0.01340145,-0.1048755;0.3590578;-0.001042519,-0.2045897;0.1164124;-0.09892169,-0.2863229;-0.07706997;-0.2840817,0.07377251;0.005327733;-0.0304833,0.07569184;-0.3739651;-0.007390147,0.07527795;-0.7187693;0.05269173,0.07749912;-0.7060092;-0.04578595,-0.06733164;0.002195371;-0.0431466,-0.1071355;-0.3743043;-0.01053259,-0.1230249;-0.7196126;0.04432806,-0.1093504;-0.7629373;-0.02227902,0.00360225;0.3986827;0.03155255,0;0;0,-0.00199831;0.1997425;0.009947211,-0.005317281;0.4996689;0.01074487,0.109433;0.3747329;-0.01627003,0.1904706;0.1095797;0.02280299,0.2334617;-0.1635494;-0.02138184,-0.115632;0.3580488;-0.002491743,-0.1935981;0.09700277;-0.0671156,-0.2304338;-0.1590238;-0.1743234,0.07166202;0.00820318;-0.03460149,0.07755269;-0.3684795;0.01515249,0.08233029;-0.7080542;0.09980582,0.08809613;-0.7587237;0.04099098,-0.07163762;-0.001995696;-0.03555373,-0.1020713;-0.3760336;0.02419107,-0.1154079;-0.7163281;0.1049485,-0.1078356;-0.7643004;0.04279552,-0.004188693;0.3997046;0.01316662,26.96758
+0;0;0,0.001435235;0.1990859;0.01904549,0.004871089;0.4986514;0.0337074,0.1176506;0.3706238;0.006942393,0.1896682;0.1006525;0.02508007,0.2442407;-0.1712685;-0.01340145,-0.1048755;0.3590578;-0.001042519,-0.2045897;0.1164124;-0.09892169,-0.2863229;-0.07706997;-0.2840817,0.07377251;0.005327733;-0.0304833,0.07569184;-0.3739651;-0.007390147,0.07527795;-0.7187693;0.05269173,0.07749912;-0.7060092;-0.04578595,-0.06733164;0.002195371;-0.0431466,-0.1071355;-0.3743043;-0.01053259,-0.1230249;-0.7196126;0.04432806,-0.1093504;-0.7629373;-0.02227902,0.00360225;0.3986827;0.03155255,0;0;0,-0.00199831;0.1997425;0.009947211,-0.005317281;0.4996689;0.01074487,0.109433;0.3747329;-0.01627003,0.1904706;0.1095797;0.02280299,0.2334617;-0.1635494;-0.02138184,-0.115632;0.3580488;-0.002491743,-0.1935981;0.09700277;-0.0671156,-0.2304338;-0.1590238;-0.1743234,0.07166202;0.00820318;-0.03460149,0.07755269;-0.3684795;0.01515249,0.08233029;-0.7080542;0.09980582,0.08809613;-0.7587237;0.04099098,-0.07163762;-0.001995696;-0.03555373,-0.1020713;-0.3760336;0.02419107,-0.1154079;-0.7163281;0.1049485,-0.1078356;-0.7643004;0.04279552,-0.004188693;0.3997046;0.01316662,26.98987
+0;0;0,0.001435235;0.1990859;0.01904549,0.004871089;0.4986514;0.0337074,0.1176506;0.3706238;0.006942393,0.1896682;0.1006525;0.02508007,0.2442407;-0.1712685;-0.01340145,-0.1048755;0.3590578;-0.001042519,-0.2045897;0.1164124;-0.09892169,-0.2863229;-0.07706997;-0.2840817,0.07377251;0.005327733;-0.0304833,0.07569184;-0.3739651;-0.007390147,0.07527795;-0.7187693;0.05269173,0.07749912;-0.7060092;-0.04578595,-0.06733164;0.002195371;-0.0431466,-0.1071355;-0.3743043;-0.01053259,-0.1230249;-0.7196126;0.04432806,-0.1093504;-0.7629373;-0.02227902,0.00360225;0.3986827;0.03155255,0;0;0,-0.001742142;0.1997467;0.00990977,-0.004678475;0.4996763;0.01054717,0.1098586;0.3748507;-0.01667638,0.1911337;0.1098295;0.02279696,0.2336845;-0.1634911;-0.02062252,-0.1155596;0.3586579;-0.001242392,-0.1932462;0.09644443;-0.06131662,-0.2314318;-0.1610771;-0.1643921,0.07164682;0.008305768;-0.03460849,0.07812136;-0.3683454;0.01531144,0.08304983;-0.7079;0.1000367,0.08846473;-0.7587211;0.04139685,-0.07164514;-0.002100837;-0.03553252,-0.1014577;-0.3762232;0.02399591,-0.1150153;-0.7164695;0.1049194,-0.1182169;-0.70468;0.006643638,-0.003710841;0.3997124;0.01305379,27.00137
+0;0;0,0.001373527;0.1991163;0.01873027,0.00451845;0.498722;0.03259307,0.1175537;0.3710446;0.006356193,0.1901282;0.1012257;0.02454124,0.2450624;-0.1706706;-0.01359815,-0.1056294;0.3601429;-0.001354109,-0.2075189;0.1169929;-0.09567569,-0.2872742;-0.08169325;-0.2761277,0.07372756;0.005398097;-0.03057951,0.07525859;-0.3738904;-0.007387277,0.07487979;-0.7186581;0.05290447,0.07694869;-0.7059193;-0.0455728,-0.06741162;0.002132641;-0.04302472,-0.1076092;-0.3743699;-0.01093123,-0.1234587;-0.7196294;0.04424708,-0.1091713;-0.7628559;-0.02233931,0.003367538;0.3987459;0.03073153,0;0;0,-0.001742142;0.1997467;0.00990977,-0.004678475;0.4996763;0.01054717,0.1098586;0.3748507;-0.01667638,0.1911337;0.1098295;0.02279696,0.2336845;-0.1634911;-0.02062252,-0.1155596;0.3586579;-0.001242392,-0.1932462;0.09644443;-0.06131662,-0.2314318;-0.1610771;-0.1643921,0.07164682;0.008305768;-0.03460849,0.07812136;-0.3683454;0.01531144,0.08304983;-0.7079;0.1000367,0.08846473;-0.7587211;0.04139685,-0.07164514;-0.002100837;-0.03553252,-0.1014577;-0.3762232;0.02399591,-0.1150153;-0.7164695;0.1049194,-0.1182169;-0.70468;0.006643638,-0.003710841;0.3997124;0.01305379,27.02347
+0;0;0,0.001373527;0.1991163;0.01873027,0.00451845;0.498722;0.03259307,0.1175537;0.3710446;0.006356193,0.1901282;0.1012257;0.02454124,0.2450624;-0.1706706;-0.01359815,-0.1056294;0.3601429;-0.001354109,-0.2075189;0.1169929;-0.09567569,-0.2872742;-0.08169325;-0.2761277,0.07372756;0.005398097;-0.03057951,0.07525859;-0.3738904;-0.007387277,0.07487979;-0.7186581;0.05290447,0.07694869;-0.7059193;-0.0455728,-0.06741162;0.002132641;-0.04302472,-0.1076092;-0.3743699;-0.01093123,-0.1234587;-0.7196294;0.04424708,-0.1091713;-0.7628559;-0.02233931,0.003367538;0.3987459;0.03073153,0;0;0,-0.001549328;0.1997539;0.009797633,-0.004085919;0.4996864;0.01013507,0.1102093;0.3753416;-0.0176436,0.1923112;0.1106437;0.0222852,0.2347363;-0.1629052;-0.01979945,-0.1154913;0.3592536;-0.000331453,-0.1928051;0.0963881;-0.05798824,-0.2331263;-0.1623523;-0.1571226,0.07147745;0.008452387;-0.03492178,0.07854683;-0.3681518;0.01527128,0.08350028;-0.7076224;0.100331,0.08892226;-0.7582885;0.04147874,-0.07170517;-0.00220682;-0.03540477,-0.1011191;-0.3764411;0.02361652,-0.114598;-0.7166122;0.1048687,-0.106067;-0.764544;0.04278919,-0.003283681;0.3997243;0.01276745,27.03474
+0;0;0,0.001456431;0.1991324;0.01855156,0.00476531;0.4987469;0.03219822,0.1177099;0.3710559;0.00590813,0.1904505;0.1012915;0.02423759,0.245321;-0.1706751;-0.01349068,-0.1055366;0.3601881;-0.001407351,-0.2071808;0.1154037;-0.09167922,-0.2870826;-0.08964656;-0.264798,0.07364224;0.005426887;-0.03077936,0.07516709;-0.3738545;-0.007470118,0.07509655;-0.7185848;0.05303594,0.0770291;-0.7058689;-0.04544009,-0.06745236;0.002121786;-0.04296133,-0.1072588;-0.3745134;-0.01195503,-0.1236732;-0.719579;0.04426158,-0.109905;-0.7632694;-0.02192118,0.003550746;0.3987705;0.03039452,0;0;0,-0.001549328;0.1997539;0.009797633,-0.004085919;0.4996864;0.01013507,0.1102093;0.3753416;-0.0176436,0.1923112;0.1106437;0.0222852,0.2347363;-0.1629052;-0.01979945,-0.1154913;0.3592536;-0.000331453,-0.1928051;0.0963881;-0.05798824,-0.2331263;-0.1623523;-0.1571226,0.07147745;0.008452387;-0.03492178,0.07854683;-0.3681518;0.01527128,0.08350028;-0.7076224;0.100331,0.08892226;-0.7582885;0.04147874,-0.07170517;-0.00220682;-0.03540477,-0.1011191;-0.3764411;0.02361652,-0.114598;-0.7166122;0.1048687,-0.106067;-0.764544;0.04278919,-0.003283681;0.3997243;0.01276745,27.05692
+0;0;0,0.001456431;0.1991324;0.01855156,0.00476531;0.4987469;0.03219822,0.1177099;0.3710559;0.00590813,0.1904505;0.1012915;0.02423759,0.245321;-0.1706751;-0.01349068,-0.1055366;0.3601881;-0.001407351,-0.2071808;0.1154037;-0.09167922,-0.2870826;-0.08964656;-0.264798,0.07364224;0.005426887;-0.03077936,0.07516709;-0.3738545;-0.007470118,0.07509655;-0.7185848;0.05303594,0.0770291;-0.7058689;-0.04544009,-0.06745236;0.002121786;-0.04296133,-0.1072588;-0.3745134;-0.01195503,-0.1236732;-0.719579;0.04426158,-0.109905;-0.7632694;-0.02192118,0.003550746;0.3987705;0.03039452,0;0;0,-0.001092388;0.1997643;0.009645626,-0.003015855;0.4997004;0.009667243,0.1111499;0.3756731;-0.0178843,0.1931192;0.1108183;0.02126891,0.235634;-0.1629217;-0.01946077,-0.1143067;0.3590522;-0.002706294,-0.1932521;0.09539804;-0.0542245,-0.240261;-0.1646345;-0.1468163,0.07138804;0.008435111;-0.03510835,0.0795079;-0.3680827;0.01557135,0.08433637;-0.7075557;0.1006286,0.09055391;-0.7574936;0.04086841,-0.07183807;-0.002225885;-0.03513314,-0.1000462;-0.3765321;0.02402065,-0.1135724;-0.7166944;0.105302,-0.1166575;-0.7049242;0.007026091,-0.002435148;0.3997403;0.01243393,27.0681
+0;0;0,0.001456431;0.1991324;0.01855156,0.00476531;0.4987469;0.03219822,0.1177099;0.3710559;0.00590813,0.1904505;0.1012915;0.02423759,0.245321;-0.1706751;-0.01349068,-0.1055366;0.3601881;-0.001407351,-0.2071808;0.1154037;-0.09167922,-0.2870826;-0.08964656;-0.264798,0.07364224;0.005426887;-0.03077936,0.07516709;-0.3738545;-0.007470118,0.07509655;-0.7185848;0.05303594,0.0770291;-0.7058689;-0.04544009,-0.06745236;0.002121786;-0.04296133,-0.1072588;-0.3745134;-0.01195503,-0.1236732;-0.719579;0.04426158,-0.109905;-0.7632694;-0.02192118,0.003550746;0.3987705;0.03039452,0;0;0,-0.001092388;0.1997643;0.009645626,-0.003015855;0.4997004;0.009667243,0.1111499;0.3756731;-0.0178843,0.1931192;0.1108183;0.02126891,0.235634;-0.1629217;-0.01946077,-0.1143067;0.3590522;-0.002706294,-0.1932521;0.09539804;-0.0542245,-0.240261;-0.1646345;-0.1468163,0.07138804;0.008435111;-0.03510835,0.0795079;-0.3680827;0.01557135,0.08433637;-0.7075557;0.1006286,0.09055391;-0.7574936;0.04086841,-0.07183807;-0.002225885;-0.03513314,-0.1000462;-0.3765321;0.02402065,-0.1135724;-0.7166944;0.105302,-0.1166575;-0.7049242;0.007026091,-0.002435148;0.3997403;0.01243393,27.07926
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,-0.001092388;0.1997643;0.009645626,-0.003015855;0.4997004;0.009667243,0.1111499;0.3756731;-0.0178843,0.1931192;0.1108183;0.02126891,0.235634;-0.1629217;-0.01946077,-0.1143067;0.3590522;-0.002706294,-0.1932521;0.09539804;-0.0542245,-0.240261;-0.1646345;-0.1468163,0.07138804;0.008435111;-0.03510835,0.0795079;-0.3680827;0.01557135,0.08433637;-0.7075557;0.1006286,0.09055391;-0.7574936;0.04086841,-0.07183807;-0.002225885;-0.03513314,-0.1000462;-0.3765321;0.02402065,-0.1135724;-0.7166944;0.105302,-0.1166575;-0.7049242;0.007026091,-0.002435148;0.3997403;0.01243393,27.09045
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,-0.0008144043;0.1997709;0.009535229,-0.002288049;0.4997091;0.00935471,0.1116508;0.3758324;-0.01846759,0.1939828;0.1111655;0.02119148,0.2363468;-0.1626538;-0.01916051,-0.1133467;0.3582081;-0.003541613,-0.1935051;0.09423435;-0.05142152,-0.2457484;-0.1653239;-0.1425268,0.07131826;0.00844954;-0.03524642,0.08003832;-0.3680148;0.01573021,0.08501347;-0.7074474;0.1009402,0.09097674;-0.7573498;0.04110669,-0.07191617;-0.00225585;-0.03497105,-0.09933234;-0.3766609;0.02392884,-0.1130293;-0.7167382;0.1055367,-0.1160358;-0.7049774;0.007260121,-0.001872479;0.3997504;0.01219817,27.11269
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,-0.0008144043;0.1997709;0.009535229,-0.002288049;0.4997091;0.00935471,0.1116508;0.3758324;-0.01846759,0.1939828;0.1111655;0.02119148,0.2363468;-0.1626538;-0.01916051,-0.1133467;0.3582081;-0.003541613,-0.1935051;0.09423435;-0.05142152,-0.2457484;-0.1653239;-0.1425268,0.07131826;0.00844954;-0.03524642,0.08003832;-0.3680148;0.01573021,0.08501347;-0.7074474;0.1009402,0.09097674;-0.7573498;0.04110669,-0.07191617;-0.00225585;-0.03497105,-0.09933234;-0.3766609;0.02392884,-0.1130293;-0.7167382;0.1055367,-0.1160358;-0.7049774;0.007260121,-0.001872479;0.3997504;0.01219817,27.12398
+0;0;0,0.001434025;0.1991444;0.01842458,0.004593302;0.4987702;0.03186096,0.1175719;0.3713029;0.005286945,0.1907861;0.1016982;0.02407452,0.2458276;-0.1702442;-0.01357852,-0.1057373;0.3602628;-0.001457356,-0.2088431;0.1148212;-0.08821934,-0.2889461;-0.09690277;-0.2530115,0.07362495;0.005472078;-0.0308127,0.07513846;-0.3738035;-0.00740926,0.07498776;-0.7185448;0.05303441,0.0767203;-0.7058319;-0.04544479,-0.06747666;0.002083698;-0.04292503,-0.1070071;-0.3745983;-0.01213499,-0.123786;-0.7196357;0.04414659,-0.1102565;-0.763091;-0.02234611,0.003433486;0.398792;0.03012177,0;0;0,-0.0006479456;0.1997778;0.009403865,-0.001809215;0.4997164;0.008919168,0.1117839;0.3756548;-0.01944627,0.1943993;0.1110803;0.02024044,0.2369773;-0.1628994;-0.01877577,-0.112966;0.3581158;-0.003792605,-0.1940176;0.09393215;-0.04893279,-0.2818018;-0.1594513;-0.129498,0.07120549;0.008414461;-0.03548204,0.08042476;-0.3680203;0.0156245,0.08526781;-0.7074107;0.1010099,0.09067218;-0.7570932;0.0408311,-0.07207226;-0.002266563;-0.03464754,-0.09878697;-0.3767579;0.02402535,-0.1125385;-0.716854;0.1055456,-0.1157478;-0.7051086;0.007278211,-0.001520083;0.3997606;0.01187663,27.13526
+0;0;0,0.00140545;0.1991757;0.01808455,0.004436465;0.498827;0.03097812,0.117632;0.3714523;0.005294539,0.1915868;0.1020083;0.02347793,0.2475292;-0.1697576;-0.01412134,-0.1060222;0.3602519;-0.001499679,-0.2083018;0.1126864;-0.08304857,-0.2897107;-0.1033461;-0.2414864,0.0735274;0.005546585;-0.03103154,0.07525089;-0.3737145;-0.007408099,0.07500666;-0.7184414;0.05311737,0.07674751;-0.7057493;-0.04535802,-0.0675585;0.002029531;-0.04279871,-0.1072052;-0.374645;-0.0120667,-0.1239915;-0.7196552;0.04437964,-0.1103704;-0.763303;-0.02188099,0.003316763;0.3988456;0.02941159,0;0;0,-0.0006479456;0.1997778;0.009403865,-0.001809215;0.4997164;0.008919168,0.1117839;0.3756548;-0.01944627,0.1943993;0.1110803;0.02024044,0.2369773;-0.1628994;-0.01877577,-0.112966;0.3581158;-0.003792605,-0.1940176;0.09393215;-0.04893279,-0.2818018;-0.1594513;-0.129498,0.07120549;0.008414461;-0.03548204,0.08042476;-0.3680203;0.0156245,0.08526781;-0.7074107;0.1010099,0.09067218;-0.7570932;0.0408311,-0.07207226;-0.002266563;-0.03464754,-0.09878697;-0.3767579;0.02402535,-0.1125385;-0.716854;0.1055456,-0.1157478;-0.7051086;0.007278211,-0.001520083;0.3997606;0.01187663,27.15756
+0;0;0,0.00140545;0.1991757;0.01808455,0.004436465;0.498827;0.03097812,0.117632;0.3714523;0.005294539,0.1915868;0.1020083;0.02347793,0.2475292;-0.1697576;-0.01412134,-0.1060222;0.3602519;-0.001499679,-0.2083018;0.1126864;-0.08304857,-0.2897107;-0.1033461;-0.2414864,0.0735274;0.005546585;-0.03103154,0.07525089;-0.3737145;-0.007408099,0.07500666;-0.7184414;0.05311737,0.07674751;-0.7057493;-0.04535802,-0.0675585;0.002029531;-0.04279871,-0.1072052;-0.374645;-0.0120667,-0.1239915;-0.7196552;0.04437964,-0.1103704;-0.763303;-0.02188099,0.003316763;0.3988456;0.02941159,0;0;0,-0.0006555638;0.1997741;0.009481023,-0.001937129;0.4997148;0.009339533,0.1114726;0.3752858;-0.01979598,0.1941915;0.1107474;0.01991609,0.2367938;-0.1633299;-0.01838098,-0.1128623;0.3577407;-0.003747866,-0.19509;0.09346724;-0.046152,-0.2825394;-0.1591052;-0.1295774,0.07115079;0.008340509;-0.03560901,0.0807562;-0.3680559;0.01570821,0.08563048;-0.7074258;0.1011735,0.09048086;-0.7570211;0.04083222,-0.07214195;-0.002215436;-0.03450553,-0.09838983;-0.3767888;0.02385416,-0.1122091;-0.7168348;0.1055714,-0.1155859;-0.7050816;0.007308237,-0.001584652;0.3997543;0.01213119,27.16871
+0;0;0,0.00140545;0.1991757;0.01808455,0.004436465;0.498827;0.03097812,0.117632;0.3714523;0.005294539,0.1915868;0.1020083;0.02347793,0.2475292;-0.1697576;-0.01412134,-0.1060222;0.3602519;-0.001499679,-0.2083018;0.1126864;-0.08304857,-0.2897107;-0.1033461;-0.2414864,0.0735274;0.005546585;-0.03103154,0.07525089;-0.3737145;-0.007408099,0.07500666;-0.7184414;0.05311737,0.07674751;-0.7057493;-0.04535802,-0.0675585;0.002029531;-0.04279871,-0.1072052;-0.374645;-0.0120667,-0.1239915;-0.7196552;0.04437964,-0.1103704;-0.763303;-0.02188099,0.003316763;0.3988456;0.02941159,0;0;0,-0.0006555638;0.1997741;0.009481023,-0.001937129;0.4997148;0.009339533,0.1114726;0.3752858;-0.01979598,0.1941915;0.1107474;0.01991609,0.2367938;-0.1633299;-0.01838098,-0.1128623;0.3577407;-0.003747866,-0.19509;0.09346724;-0.046152,-0.2825394;-0.1591052;-0.1295774,0.07115079;0.008340509;-0.03560901,0.0807562;-0.3680559;0.01570821,0.08563048;-0.7074258;0.1011735,0.09048086;-0.7570211;0.04083222,-0.07214195;-0.002215436;-0.03450553,-0.09838983;-0.3767888;0.02385416,-0.1122091;-0.7168348;0.1055714,-0.1155859;-0.7050816;0.007308237,-0.001584652;0.3997543;0.01213119,27.19098
+0;0;0,0.001366336;0.1992113;0.0176912,0.004183429;0.498896;0.02983077,0.1175358;0.3714742;0.00484072,0.1919154;0.1021588;0.02319412,0.2484262;-0.1695009;-0.01432358,-0.1063636;0.3602308;-0.001693143,-0.2089697;0.1113232;-0.07861494,-0.2899028;-0.1090204;-0.2312535,0.07350869;0.005595504;-0.03106704,0.07524398;-0.3736629;-0.007400667,0.07511976;-0.718398;0.05307781,0.07675402;-0.7057357;-0.04539419,-0.0675853;0.001989897;-0.04275824,-0.1073442;-0.374687;-0.01220111,-0.1241584;-0.7196496;0.04452721,-0.1104383;-0.7634414;-0.02155245,0.003139647;0.39891;0.0285221,0;0;0,-0.0006912249;0.1997733;0.009494767,-0.001972101;0.4997147;0.009500646,0.1111513;0.3750705;-0.02055669,0.1942413;0.1107049;0.01952894,0.2367072;-0.1634135;-0.0186256,-0.1133227;0.3580796;-0.001360081,-0.1949289;0.09394154;-0.04576215,-0.2606038;-0.1632985;-0.1347251,0.07103764;0.008299583;-0.03584371,0.08097113;-0.3680617;0.01566871,0.08575375;-0.7074157;0.1012024,0.09152426;-0.7572784;0.04129703,-0.07222711;-0.002178974;-0.03432925,-0.09814884;-0.3768021;0.02385632,-0.1119389;-0.7168291;0.1056579,-0.1163149;-0.7050855;0.00743591,-0.001614258;0.3997525;0.01222644,27.2133
+0;0;0,0.001366336;0.1992113;0.0176912,0.004183429;0.498896;0.02983077,0.1175358;0.3714742;0.00484072,0.1919154;0.1021588;0.02319412,0.2484262;-0.1695009;-0.01432358,-0.1063636;0.3602308;-0.001693143,-0.2089697;0.1113232;-0.07861494,-0.2899028;-0.1090204;-0.2312535,0.07350869;0.005595504;-0.03106704,0.07524398;-0.3736629;-0.007400667,0.07511976;-0.718398;0.05307781,0.07675402;-0.7057357;-0.04539419,-0.0675853;0.001989897;-0.04275824,-0.1073442;-0.374687;-0.01220111,-0.1241584;-0.7196496;0.04452721,-0.1104383;-0.7634414;-0.02155245,0.003139647;0.39891;0.0285221,0;0;0,-0.0004419213;0.1997822;0.00932177,-0.0013387;0.4997219;0.008819532,0.1115509;0.3749684;-0.02106661,0.1946607;0.1105281;0.01848239,0.2375151;-0.163535;-0.01963471,-0.1126889;0.3576579;-0.002042612,-0.1951687;0.0934732;-0.04451063,-0.2820542;-0.1586944;-0.1297306,0.07096393;0.008254034;-0.03599986,0.08121233;-0.3680842;0.01561906,0.08598194;-0.7074262;0.1012006,0.09180413;-0.7572383;0.04123279,-0.0724942;-0.002159095;-0.03376284,-0.09765525;-0.3769389;0.02374352,-0.1114329;-0.7169526;0.1056026,-0.1038167;-0.7650917;0.04366491,-0.001172169;0.3997658;0.01177535,27.23558
+0;0;0,0.001366336;0.1992113;0.0176912,0.004183429;0.498896;0.02983077,0.1175358;0.3714742;0.00484072,0.1919154;0.1021588;0.02319412,0.2484262;-0.1695009;-0.01432358,-0.1063636;0.3602308;-0.001693143,-0.2089697;0.1113232;-0.07861494,-0.2899028;-0.1090204;-0.2312535,0.07350869;0.005595504;-0.03106704,0.07524398;-0.3736629;-0.007400667,0.07511976;-0.718398;0.05307781,0.07675402;-0.7057357;-0.04539419,-0.0675853;0.001989897;-0.04275824,-0.1073442;-0.374687;-0.01220111,-0.1241584;-0.7196496;0.04452721,-0.1104383;-0.7634414;-0.02155245,0.003139647;0.39891;0.0285221,0;0;0,-0.0004419213;0.1997822;0.00932177,-0.0013387;0.4997219;0.008819532,0.1115509;0.3749684;-0.02106661,0.1946607;0.1105281;0.01848239,0.2375151;-0.163535;-0.01963471,-0.1126889;0.3576579;-0.002042612,-0.1951687;0.0934732;-0.04451063,-0.2820542;-0.1586944;-0.1297306,0.07096393;0.008254034;-0.03599986,0.08121233;-0.3680842;0.01561906,0.08598194;-0.7074262;0.1012006,0.09180413;-0.7572383;0.04123279,-0.0724942;-0.002159095;-0.03376284,-0.09765525;-0.3769389;0.02374352,-0.1114329;-0.7169526;0.1056026,-0.1038167;-0.7650917;0.04366491,-0.001172169;0.3997658;0.01177535,27.24688
+0;0;0,0.001384838;0.199237;0.01739782,0.004233101;0.4989347;0.02921976,0.1175121;0.3713271;0.004268456,0.1922738;0.102134;0.02286275,0.2498629;-0.1693651;-0.01417414,-0.1064678;0.3602872;-0.001740964,-0.2092223;0.110338;-0.0750004,-0.2902499;-0.1149006;-0.2202659,0.07342785;0.00565285;-0.03124734,0.0752406;-0.3735844;-0.007250939,0.07500257;-0.7183242;0.05320112,0.07646903;-0.7056766;-0.04527092,-0.0676662;0.001965459;-0.04263122,-0.1075662;-0.3747075;-0.01220948,-0.1241907;-0.7196448;0.04472759,-0.1105366;-0.7634434;-0.02135835,0.003171266;0.3989477;0.02800169,0;0;0,-0.0005233028;0.1997788;0.009389621,-0.001651151;0.4997194;0.009093233,0.1110243;0.3745883;-0.02171889,0.1941869;0.1100393;0.01698266,0.237286;-0.1637027;-0.02311431,-0.1132056;0.3580241;-0.0003432203,-0.1951781;0.09396857;-0.04456084,-0.2843986;-0.1569782;-0.1309635,0.07085669;0.008188377;-0.0362254,0.08120908;-0.368116;0.01561944,0.08615382;-0.7073637;0.1015642,0.09155777;-0.7575479;0.04205533,-0.07255969;-0.002112411;-0.03362481,-0.09755775;-0.3768908;0.02396192,-0.1113177;-0.7169415;0.1056701,-0.10349;-0.7642246;0.04269356,-0.001371181;0.3997606;0.0119503,27.2691
+0;0;0,0.001384838;0.199237;0.01739782,0.004233101;0.4989347;0.02921976,0.1175121;0.3713271;0.004268456,0.1922738;0.102134;0.02286275,0.2498629;-0.1693651;-0.01417414,-0.1064678;0.3602872;-0.001740964,-0.2092223;0.110338;-0.0750004,-0.2902499;-0.1149006;-0.2202659,0.07342785;0.00565285;-0.03124734,0.0752406;-0.3735844;-0.007250939,0.07500257;-0.7183242;0.05320112,0.07646903;-0.7056766;-0.04527092,-0.0676662;0.001965459;-0.04263122,-0.1075662;-0.3747075;-0.01220948,-0.1241907;-0.7196448;0.04472759,-0.1105366;-0.7634434;-0.02135835,0.003171266;0.3989477;0.02800169,0;0;0,-0.0004790224;0.1997846;0.009266933,-0.001377932;0.4997256;0.008745456,0.1116614;0.3745334;-0.02039107,0.1943297;0.1093924;0.01519235,0.2369516;-0.1642652;-0.02597702,-0.112711;0.3573756;-0.001168319,-0.1954876;0.09333456;-0.0439514,-0.2868121;-0.1565258;-0.1312993,0.07074737;0.008093105;-0.03645972,0.08113471;-0.3681739;0.01564793,0.08617462;-0.7073995;0.1016745,0.09151243;-0.7578886;0.04257267,-0.07260165;-0.002078151;-0.03353625,-0.09755763;-0.3768647;0.0240156,-0.1112956;-0.7169343;0.1056487,-0.1157139;-0.7052051;0.007431284,-0.001186411;0.3997688;0.01167985,27.2914
+0;0;0,0.001384838;0.199237;0.01739782,0.004233101;0.4989347;0.02921976,0.1175121;0.3713271;0.004268456,0.1922738;0.102134;0.02286275,0.2498629;-0.1693651;-0.01417414,-0.1064678;0.3602872;-0.001740964,-0.2092223;0.110338;-0.0750004,-0.2902499;-0.1149006;-0.2202659,0.07342785;0.00565285;-0.03124734,0.0752406;-0.3735844;-0.007250939,0.07500257;-0.7183242;0.05320112,0.07646903;-0.7056766;-0.04527092,-0.0676662;0.001965459;-0.04263122,-0.1075662;-0.3747075;-0.01220948,-0.1241907;-0.7196448;0.04472759,-0.1105366;-0.7634434;-0.02135835,0.003171266;0.3989477;0.02800169,0;0;0,-0.0004790224;0.1997846;0.009266933,-0.001377932;0.4997256;0.008745456,0.1116614;0.3745334;-0.02039107,0.1943297;0.1093924;0.01519235,0.2369516;-0.1642652;-0.02597702,-0.112711;0.3573756;-0.001168319,-0.1954876;0.09333456;-0.0439514,-0.2868121;-0.1565258;-0.1312993,0.07074737;0.008093105;-0.03645972,0.08113471;-0.3681739;0.01564793,0.08617462;-0.7073995;0.1016745,0.09151243;-0.7578886;0.04257267,-0.07260165;-0.002078151;-0.03353625,-0.09755763;-0.3768647;0.0240156,-0.1112956;-0.7169343;0.1056487,-0.1157139;-0.7052051;0.007431284,-0.001186411;0.3997688;0.01167985,27.30268
+0;0;0,0.00138801;0.1992546;0.01719591,0.004290878;0.4989601;0.02881543,0.11749;0.3711458;0.003908971,0.1924742;0.1020314;0.02274494,0.2514224;-0.1691732;-0.014311,-0.1065189;0.3607392;-0.002339872,-0.2092978;0.1094995;-0.07100659,-0.2899307;-0.1216982;-0.2068224,0.07336799;0.005648744;-0.03138836,0.07526115;-0.3735803;-0.0072683,0.07514756;-0.718259;0.05353083,0.07667563;-0.7056246;-0.04493797,-0.0677291;0.001970736;-0.04253099,-0.1073126;-0.3747215;-0.01193552,-0.1240124;-0.7196447;0.04506596,-0.1108895;-0.7632187;-0.0213769,0.003201554;0.3989727;0.0276536,0;0;0,-0.0004790224;0.1997846;0.009266933,-0.001377932;0.4997256;0.008745456,0.1116614;0.3745334;-0.02039107,0.1943297;0.1093924;0.01519235,0.2369516;-0.1642652;-0.02597702,-0.112711;0.3573756;-0.001168319,-0.1954876;0.09333456;-0.0439514,-0.2868121;-0.1565258;-0.1312993,0.07074737;0.008093105;-0.03645972,0.08113471;-0.3681739;0.01564793,0.08617462;-0.7073995;0.1016745,0.09151243;-0.7578886;0.04257267,-0.07260165;-0.002078151;-0.03353625,-0.09755763;-0.3768647;0.0240156,-0.1112956;-0.7169343;0.1056487,-0.1157139;-0.7052051;0.007431284,-0.001186411;0.3997688;0.01167985,27.31387
+0;0;0,0.00138801;0.1992546;0.01719591,0.004290878;0.4989601;0.02881543,0.11749;0.3711458;0.003908971,0.1924742;0.1020314;0.02274494,0.2514224;-0.1691732;-0.014311,-0.1065189;0.3607392;-0.002339872,-0.2092978;0.1094995;-0.07100659,-0.2899307;-0.1216982;-0.2068224,0.07336799;0.005648744;-0.03138836,0.07526115;-0.3735803;-0.0072683,0.07514756;-0.718259;0.05353083,0.07667563;-0.7056246;-0.04493797,-0.0677291;0.001970736;-0.04253099,-0.1073126;-0.3747215;-0.01193552,-0.1240124;-0.7196447;0.04506596,-0.1108895;-0.7632187;-0.0213769,0.003201554;0.3989727;0.0276536,0;0;0,-0.000575402;0.1997906;0.00913228,-0.001611986;0.4997299;0.008297373,0.1115709;0.3748776;-0.02067517,0.1943233;0.1096635;0.01416014,0.2372308;-0.1637062;-0.02859515,-0.1129497;0.3576407;-0.001824671,-0.1968277;0.09374711;-0.04335339,-0.2896286;-0.1554328;-0.1310882,0.07072933;0.008061332;-0.03650174,0.08112063;-0.3682084;0.01558557,0.08623828;-0.7074231;0.1016506,0.09135012;-0.7580233;0.0426804,-0.07262607;-0.002051323;-0.03348501,-0.09749171;-0.3768535;0.02400452,-0.1112431;-0.7169393;0.1055674,-0.1155721;-0.7052233;0.007348441,-0.001365372;0.3997768;0.01134712,27.33612
+0;0;0,0.00138801;0.1992546;0.01719591,0.004290878;0.4989601;0.02881543,0.11749;0.3711458;0.003908971,0.1924742;0.1020314;0.02274494,0.2514224;-0.1691732;-0.014311,-0.1065189;0.3607392;-0.002339872,-0.2092978;0.1094995;-0.07100659,-0.2899307;-0.1216982;-0.2068224,0.07336799;0.005648744;-0.03138836,0.07526115;-0.3735803;-0.0072683,0.07514756;-0.718259;0.05353083,0.07667563;-0.7056246;-0.04493797,-0.0677291;0.001970736;-0.04253099,-0.1073126;-0.3747215;-0.01193552,-0.1240124;-0.7196447;0.04506596,-0.1108895;-0.7632187;-0.0213769,0.003201554;0.3989727;0.0276536,0;0;0,-0.000575402;0.1997906;0.00913228,-0.001611986;0.4997299;0.008297373,0.1115709;0.3748776;-0.02067517,0.1943233;0.1096635;0.01416014,0.2372308;-0.1637062;-0.02859515,-0.1129497;0.3576407;-0.001824671,-0.1968277;0.09374711;-0.04335339,-0.2896286;-0.1554328;-0.1310882,0.07072933;0.008061332;-0.03650174,0.08112063;-0.3682084;0.01558557,0.08623828;-0.7074231;0.1016506,0.09135012;-0.7580233;0.0426804,-0.07262607;-0.002051323;-0.03348501,-0.09749171;-0.3768535;0.02400452,-0.1112431;-0.7169393;0.1055674,-0.1155721;-0.7052233;0.007348441,-0.001365372;0.3997768;0.01134712,27.34735
+0;0;0,0.00128622;0.1992808;0.01689741,0.003872056;0.4990098;0.02796239,0.117385;0.3713622;0.004021941,0.1927745;0.1023257;0.0223474,0.2531024;-0.1685645;-0.01478803,-0.1069711;0.3613739;-0.003200913,-0.2093949;0.1082939;-0.06532881,-0.2890768;-0.1268607;-0.1947625,0.07338269;0.005714026;-0.03134214,0.07525644;-0.3735329;-0.007503146,0.07519968;-0.718154;0.05362219,0.07701815;-0.7055441;-0.04483733,-0.06769864;0.001885044;-0.04258333,-0.1070463;-0.3748122;-0.01174631,-0.1240113;-0.7197009;0.04538483,-0.1106213;-0.7628405;-0.02148308,0.002897525;0.3990193;0.02699371,0;0;0,-0.0004761187;0.1997915;0.009117888,-0.001343342;0.4997314;0.008263648,0.111449;0.3750482;-0.02193935,0.1952569;0.1101579;0.01283669,0.2379043;-0.1629485;-0.0318189,-0.113221;0.3583549;5.718321E-06,-0.1966254;0.0945648;-0.04310448,-0.2914144;-0.1534684;-0.1319559,0.07062782;0.008154078;-0.03667728,0.08121266;-0.3680871;0.01557785,0.08645169;-0.7073165;0.1015776,0.09120157;-0.7576589;0.04222662,-0.07267946;-0.002096349;-0.03336617,-0.09762021;-0.3768496;0.02440886,-0.1110561;-0.717007;0.1057257,-0.1162891;-0.7052993;0.007552318,-0.001166835;0.3997782;0.01131863,27.3696
+0;0;0,0.00128622;0.1992808;0.01689741,0.003872056;0.4990098;0.02796239,0.117385;0.3713622;0.004021941,0.1927745;0.1023257;0.0223474,0.2531024;-0.1685645;-0.01478803,-0.1069711;0.3613739;-0.003200913,-0.2093949;0.1082939;-0.06532881,-0.2890768;-0.1268607;-0.1947625,0.07338269;0.005714026;-0.03134214,0.07525644;-0.3735329;-0.007503146,0.07519968;-0.718154;0.05362219,0.07701815;-0.7055441;-0.04483733,-0.06769864;0.001885044;-0.04258333,-0.1070463;-0.3748122;-0.01174631,-0.1240113;-0.7197009;0.04538483,-0.1106213;-0.7628405;-0.02148308,0.002897525;0.3990193;0.02699371,0;0;0,-0.0004761187;0.1997915;0.009117888,-0.001343342;0.4997314;0.008263648,0.111449;0.3750482;-0.02193935,0.1952569;0.1101579;0.01283669,0.2379043;-0.1629485;-0.0318189,-0.113221;0.3583549;5.718321E-06,-0.1966254;0.0945648;-0.04310448,-0.2914144;-0.1534684;-0.1319559,0.07062782;0.008154078;-0.03667728,0.08121266;-0.3680871;0.01557785,0.08645169;-0.7073165;0.1015776,0.09120157;-0.7576589;0.04222662,-0.07267946;-0.002096349;-0.03336617,-0.09762021;-0.3768496;0.02440886,-0.1110561;-0.717007;0.1057257,-0.1162891;-0.7052993;0.007552318,-0.001166835;0.3997782;0.01131863,27.39187
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,0.005596593;0.1997375;0.008579616,0.014533;0.4995479;0.007798028,0.1230207;0.374231;-0.0254283,0.2022311;0.1072426;0.003604313,0.2507903;-0.1657071;-0.03564417,-0.101354;0.3606216;-0.001410834,-0.1768336;0.09115684;0.00815754,-0.2251073;-0.1845026;-0.0008709338,0.06947719;0.00506798;-0.03933489,0.09547392;-0.3702607;0.01407471,0.1039421;-0.7099928;0.09780288,0.1111929;-0.7602255;0.03855643,-0.07397819;0.001049538;-0.03043231,-0.08661769;-0.375098;0.02203881,-0.09411334;-0.7162948;0.09968287,-0.1004246;-0.7045849;0.00157252,0.01146939;0.3996392;0.01077577,35.52348
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,0.005573899;0.1997358;0.008633357,0.01435576;0.4995531;0.008157521,0.122822;0.3739516;-0.02530828,0.201907;0.1069594;0.004029578,0.2499934;-0.1664076;-0.03282382,-0.1014431;0.36049;-0.0008991491,-0.1767268;0.09094226;0.007839514,-0.2252903;-0.1846709;-0.001046038,0.06949801;0.005034497;-0.03930242,0.09541662;-0.3702894;0.01417885,0.1038864;-0.7100584;0.09775674,0.1113321;-0.7601158;0.03829773,-0.07396659;0.001082244;-0.03045934,-0.08637377;-0.3751026;0.02179998,-0.0940704;-0.7162693;0.09955639,-0.1005055;-0.7045553;0.001453318,0.0113664;0.399638;0.01099406,35.54238
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,0.005542164;0.1997335;0.008706035,0.01432777;0.4995519;0.008457979,0.1227898;0.3741912;-0.02529691,0.201652;0.1071786;0.004452327,0.2492806;-0.1666716;-0.02927603,-0.101224;0.3604612;-0.002762181,-0.1773316;0.0911963;0.007438604,-0.2267904;-0.1842565;-0.001483723,0.06952215;0.005025607;-0.03926084,0.09528951;-0.370317;0.01416196,0.1037078;-0.7100544;0.09787369,0.1108908;-0.7601217;0.03839567,-0.07396161;0.001086709;-0.03047129,-0.08656044;-0.3750806;0.02186776,-0.09417392;-0.7161962;0.09985617,-0.1000862;-0.7044696;0.001717851,0.01134015;0.399634;0.01119488,35.55966
+0;0;0,0.001203689;0.1993081;0.01657866,0.00368065;0.4990486;0.02737407,0.1173828;0.3713213;0.004423095,0.1931098;0.1023372;0.02211507,0.2543331;-0.1683288;-0.01518928,-0.1074578;0.362304;-0.003638525,-0.2097568;0.1078745;-0.06021203,-0.2873158;-0.1331538;-0.1797527,0.07328372;0.005826336;-0.0315523,0.07529239;-0.3734109;-0.007571856,0.07529823;-0.7179422;0.05405781,0.07739499;-0.705353;-0.04439252,-0.06782166;0.001807279;-0.04239052,-0.1071727;-0.3748814;-0.01145347,-0.1240181;-0.7197603;0.04577262,-0.1105117;-0.7629517;-0.02101513,0.002734057;0.3990571;0.02647718,0;0;0,0.005542164;0.1997335;0.008706035,0.01432777;0.4995519;0.008457979,0.1227898;0.3741912;-0.02529691,0.201652;0.1071786;0.004452327,0.2492806;-0.1666716;-0.02927603,-0.101224;0.3604612;-0.002762181,-0.1773316;0.0911963;0.007438604,-0.2267904;-0.1842565;-0.001483723,0.06952215;0.005025607;-0.03926084,0.09528951;-0.370317;0.01416196,0.1037078;-0.7100544;0.09787369,0.1108908;-0.7601217;0.03839567,-0.07396161;0.001086709;-0.03047129,-0.08656044;-0.3750806;0.02186776,-0.09417392;-0.7161962;0.09985617,-0.1000862;-0.7044696;0.001717851,0.01134015;0.399634;0.01119488,35.57461
+0;0;0,0.001223234;0.1993254;0.01636722,0.003802906;0.4990737;0.02692482,0.1172412;0.3709711;0.00339113,0.1934272;0.1021997;0.02230227,0.2550824;-0.1684304;-0.01454841,-0.1076291;0.3627224;-0.003574118,-0.2085212;0.1068753;-0.05613893,-0.2839496;-0.1384148;-0.1681359,0.07328121;0.005960709;-0.03153307,0.07561997;-0.3732578;-0.007287402,0.07574879;-0.717784;0.05436973,0.07752714;-0.7052009;-0.04408581,-0.06783176;0.001656841;-0.0423805,-0.10684;-0.3750718;-0.01149564,-0.123644;-0.7198941;0.04608236,-0.1098973;-0.7631378;-0.02059883,0.002812224;0.399082;0.02610227,0;0;0,0.005493302;0.1997342;0.008722009,0.01401121;0.499561;0.008614025,0.122554;0.3740319;-0.02521579,0.2010236;0.1069868;0.005270779,0.2490565;-0.1670232;-0.0265316,-0.1010991;0.3599881;-0.003843685,-0.1782435;0.09104997;0.007157468,-0.227827;-0.1843922;-0.00139306,0.06954647;0.004970139;-0.03922481,0.09519845;-0.3703903;0.01412778,0.1036285;-0.7101179;0.09787793,0.1108394;-0.7601661;0.0383775,-0.07395739;0.001120963;-0.03048028,-0.08662681;-0.3750555;0.02177602,-0.09409261;-0.7161768;0.09975364,-0.09969708;-0.7044446;0.00159622,0.01114582;0.3996378;0.01128825,35.59689
+0;0;0,0.001223234;0.1993254;0.01636722,0.003802906;0.4990737;0.02692482,0.1172412;0.3709711;0.00339113,0.1934272;0.1021997;0.02230227,0.2550824;-0.1684304;-0.01454841,-0.1076291;0.3627224;-0.003574118,-0.2085212;0.1068753;-0.05613893,-0.2839496;-0.1384148;-0.1681359,0.07328121;0.005960709;-0.03153307,0.07561997;-0.3732578;-0.007287402,0.07574879;-0.717784;0.05436973,0.07752714;-0.7052009;-0.04408581,-0.06783176;0.001656841;-0.0423805,-0.10684;-0.3750718;-0.01149564,-0.123644;-0.7198941;0.04608236,-0.1098973;-0.7631378;-0.02059883,0.002812224;0.399082;0.02610227,0;0;0,0.005493302;0.1997342;0.008722009,0.01401121;0.499561;0.008614025,0.122554;0.3740319;-0.02521579,0.2010236;0.1069868;0.005270779,0.2490565;-0.1670232;-0.0265316,-0.1010991;0.3599881;-0.003843685,-0.1782435;0.09104997;0.007157468,-0.227827;-0.1843922;-0.00139306,0.06954647;0.004970139;-0.03922481,0.09519845;-0.3703903;0.01412778,0.1036285;-0.7101179;0.09787793,0.1108394;-0.7601661;0.0383775,-0.07395739;0.001120963;-0.03048028,-0.08662681;-0.3750555;0.02177602,-0.09409261;-0.7161768;0.09975364,-0.09969708;-0.7044446;0.00159622,0.01114582;0.3996378;0.01128825,35.60847
+0;0;0,0.001223234;0.1993254;0.01636722,0.003802906;0.4990737;0.02692482,0.1172412;0.3709711;0.00339113,0.1934272;0.1021997;0.02230227,0.2550824;-0.1684304;-0.01454841,-0.1076291;0.3627224;-0.003574118,-0.2085212;0.1068753;-0.05613893,-0.2839496;-0.1384148;-0.1681359,0.07328121;0.005960709;-0.03153307,0.07561997;-0.3732578;-0.007287402,0.07574879;-0.717784;0.05436973,0.07752714;-0.7052009;-0.04408581,-0.06783176;0.001656841;-0.0423805,-0.10684;-0.3750718;-0.01149564,-0.123644;-0.7198941;0.04608236,-0.1098973;-0.7631378;-0.02059883,0.002812224;0.399082;0.02610227,0;0;0,0.005409301;0.199735;0.008755104,0.01372781;0.4995676;0.008635113,0.122348;0.3739261;-0.02515715,0.2005525;0.1069114;0.006262116,0.2489601;-0.1672068;-0.02400275,-0.1010398;0.3597187;-0.004932682,-0.1788956;0.09101859;0.006846966,-0.2286247;-0.1843944;-0.001794687,0.06956666;0.004945368;-0.03919213,0.09505499;-0.3704231;0.01418268,0.1034367;-0.7101257;0.09803866,0.1101662;-0.7602096;0.03852989,-0.07394869;0.001141017;-0.03050065,-0.0869229;-0.374988;0.02202176,-0.09405969;-0.716159;0.09981266,-0.09934565;-0.7044266;0.001637533,0.01095273;0.3996419;0.01130923,35.6303
+0;0;0,0.001290419;0.1993415;0.01616538,0.004039441;0.4990945;0.02655529,0.1173028;0.3713999;0.002039997,0.1941863;0.1029027;0.02199394,0.2559176;-0.1679023;-0.01341668,-0.1076575;0.3631269;-0.003618505,-0.207114;0.1059692;-0.05238677,-0.2812782;-0.1434184;-0.155854,0.07338079;0.006051874;-0.03128314,0.07629079;-0.3731491;-0.006825367,0.07625999;-0.7176611;0.05491135,0.07762956;-0.7050725;-0.04355169,-0.06777547;0.001530714;-0.0424752,-0.1059005;-0.3752444;-0.01105912,-0.1229051;-0.7200016;0.04684884,-0.1092949;-0.7629438;-0.02018994,0.002983436;0.399103;0.02578056,0;0;0,0.005409301;0.199735;0.008755104,0.01372781;0.4995676;0.008635113,0.122348;0.3739261;-0.02515715,0.2005525;0.1069114;0.006262116,0.2489601;-0.1672068;-0.02400275,-0.1010398;0.3597187;-0.004932682,-0.1788956;0.09101859;0.006846966,-0.2286247;-0.1843944;-0.001794687,0.06956666;0.004945368;-0.03919213,0.09505499;-0.3704231;0.01418268,0.1034367;-0.7101257;0.09803866,0.1101662;-0.7602096;0.03852989,-0.07394869;0.001141017;-0.03050065,-0.0869229;-0.374988;0.02202176,-0.09405969;-0.716159;0.09981266,-0.09934565;-0.7044266;0.001637533,0.01095273;0.3996419;0.01130923,35.65286
+0;0;0,0.001290419;0.1993415;0.01616538,0.004039441;0.4990945;0.02655529,0.1173028;0.3713999;0.002039997,0.1941863;0.1029027;0.02199394,0.2559176;-0.1679023;-0.01341668,-0.1076575;0.3631269;-0.003618505,-0.207114;0.1059692;-0.05238677,-0.2812782;-0.1434184;-0.155854,0.07338079;0.006051874;-0.03128314,0.07629079;-0.3731491;-0.006825367,0.07625999;-0.7176611;0.05491135,0.07762956;-0.7050725;-0.04355169,-0.06777547;0.001530714;-0.0424752,-0.1059005;-0.3752444;-0.01105912,-0.1229051;-0.7200016;0.04684884,-0.1092949;-0.7629438;-0.02018994,0.002983436;0.399103;0.02578056,0;0;0,0.005571878;0.1997322;0.008718648,0.01447755;0.4995473;0.008457921,0.1227926;0.3736703;-0.02528732,0.2009941;0.106716;0.006649315,0.2501374;-0.1675945;-0.02052883,-0.1004543;0.3595808;-0.005295318,-0.1791475;0.09111947;0.006363662,-0.2287639;-0.1843057;-0.002534805,0.0695832;0.004906025;-0.03916771,0.09490186;-0.3704439;0.01441754,0.1035416;-0.7101107;0.0983927,0.1101115;-0.7602522;0.03894369,-0.07394601;0.001162591;-0.0305063,-0.08689028;-0.3749502;0.02214014,-0.09405795;-0.7161354;0.0998656,-0.09921916;-0.7044068;0.001684546,0.01145758;0.3996302;0.01118994,35.66392
+0;0;0,0.001234614;0.1993507;0.01605492,0.003888526;0.4991086;0.02633205,0.1170891;0.3713055;0.001531309,0.1940038;0.1028647;0.02211515,0.256274;-0.1677653;-0.01368675,-0.1078267;0.3632302;-0.00373489,-0.2058685;0.1046644;-0.04768404,-0.279076;-0.1490951;-0.1406722,0.07338203;0.006086888;-0.03127343,0.07620218;-0.3731626;-0.00756925,0.07626592;-0.7175156;0.05504834,0.07749611;-0.7049448;-0.0434134,-0.0677927;0.001496866;-0.04244889,-0.1057387;-0.3753145;-0.01125182,-0.1232433;-0.720017;0.04683294,-0.1093338;-0.7633454;-0.01972135,0.002862764;0.3991166;0.02559112,0;0;0,0.005571878;0.1997322;0.008718648,0.01447755;0.4995473;0.008457921,0.1227926;0.3736703;-0.02528732,0.2009941;0.106716;0.006649315,0.2501374;-0.1675945;-0.02052883,-0.1004543;0.3595808;-0.005295318,-0.1791475;0.09111947;0.006363662,-0.2287639;-0.1843057;-0.002534805,0.0695832;0.004906025;-0.03916771,0.09490186;-0.3704439;0.01441754,0.1035416;-0.7101107;0.0983927,0.1101115;-0.7602522;0.03894369,-0.07394601;0.001162591;-0.0305063,-0.08689028;-0.3749502;0.02214014,-0.09405795;-0.7161354;0.0998656,-0.09921916;-0.7044068;0.001684546,0.01145758;0.3996302;0.01118994,35.67518
+0;0;0,0.001234614;0.1993507;0.01605492,0.003888526;0.4991086;0.02633205,0.1170891;0.3713055;0.001531309,0.1940038;0.1028647;0.02211515,0.256274;-0.1677653;-0.01368675,-0.1078267;0.3632302;-0.00373489,-0.2058685;0.1046644;-0.04768404,-0.279076;-0.1490951;-0.1406722,0.07338203;0.006086888;-0.03127343,0.07620218;-0.3731626;-0.00756925,0.07626592;-0.7175156;0.05504834,0.07749611;-0.7049448;-0.0434134,-0.0677927;0.001496866;-0.04244889,-0.1057387;-0.3753145;-0.01125182,-0.1232433;-0.720017;0.04683294,-0.1093338;-0.7633454;-0.01972135,0.002862764;0.3991166;0.02559112,0;0;0,0.005559868;0.1997319;0.008732152,0.01441462;0.4995484;0.008441851,0.122843;0.374002;-0.02524557,0.2010185;0.1070665;0.006910469,0.2508672;-0.1673046;-0.01830075,-0.1004633;0.3599291;-0.00632262,-0.1794873;0.09159011;0.005899346,-0.2298959;-0.1836831;-0.003244257,0.06962396;0.004898022;-0.0390962,0.09503242;-0.3704548;0.01442657,0.1036262;-0.7101392;0.09833503,0.1101081;-0.7605411;0.03922894,-0.07388682;0.001181881;-0.03064866,-0.08678208;-0.3749148;0.02212468,-0.0940288;-0.7160705;0.09997229,-0.09886928;-0.7043359;0.001773775,0.01141679;0.3996311;0.01118727,35.69729
+0;0;0,0.001234614;0.1993507;0.01605492,0.003888526;0.4991086;0.02633205,0.1170891;0.3713055;0.001531309,0.1940038;0.1028647;0.02211515,0.256274;-0.1677653;-0.01368675,-0.1078267;0.3632302;-0.00373489,-0.2058685;0.1046644;-0.04768404,-0.279076;-0.1490951;-0.1406722,0.07338203;0.006086888;-0.03127343,0.07620218;-0.3731626;-0.00756925,0.07626592;-0.7175156;0.05504834,0.07749611;-0.7049448;-0.0434134,-0.0677927;0.001496866;-0.04244889,-0.1057387;-0.3753145;-0.01125182,-0.1232433;-0.720017;0.04683294,-0.1093338;-0.7633454;-0.01972135,0.002862764;0.3991166;0.02559112,0;0;0,0.005559868;0.1997319;0.008732152,0.01441462;0.4995484;0.008441851,0.122843;0.374002;-0.02524557,0.2010185;0.1070665;0.006910469,0.2508672;-0.1673046;-0.01830075,-0.1004633;0.3599291;-0.00632262,-0.1794873;0.09159011;0.005899346,-0.2298959;-0.1836831;-0.003244257,0.06962396;0.004898022;-0.0390962,0.09503242;-0.3704548;0.01442657,0.1036262;-0.7101392;0.09833503,0.1101081;-0.7605411;0.03922894,-0.07388682;0.001181881;-0.03064866,-0.08678208;-0.3749148;0.02212468,-0.0940288;-0.7160705;0.09997229,-0.09886928;-0.7043359;0.001773775,0.01141679;0.3996311;0.01118727,35.71974
+0;0;0,0.001159396;0.1993839;0.01564298,0.003749608;0.499163;0.02529381,0.1173723;0.3717365;0.002272224,0.1944088;0.1032213;0.02137711,0.257207;-0.1672415;-0.01476453,-0.1080954;0.3635689;-0.004367709,-0.2042201;0.1035136;-0.04349977,-0.275722;-0.1533174;-0.1290877,0.07319923;0.006261064;-0.031665,0.07673712;-0.3729083;-0.006803194,0.07695483;-0.7173916;0.05509306,0.07856917;-0.7048473;-0.04335842,-0.06790385;0.001392621;-0.04227442,-0.1053122;-0.3755073;-0.01149999,-0.1229885;-0.7200411;0.04752535,-0.1087921;-0.7632677;-0.01908044,0.002736477;0.3991695;0.02476786,0;0;0,0.005621807;0.1997302;0.008731176,0.0146305;0.4995421;0.008431382,0.1229962;0.3738928;-0.02517816,0.2010616;0.106972;0.00736477,0.2523448;-0.1673129;-0.01582634,-0.1002871;0.3599959;-0.006635649,-0.1793191;0.09165686;0.005533519,-0.2300148;-0.1835492;-0.004036177,0.06963821;0.004873376;-0.0390739,0.09494212;-0.3704813;0.01448491,0.103572;-0.7101703;0.09837121,0.1110284;-0.7607851;0.03967143,-0.07388738;0.001200645;-0.03064659,-0.08647115;-0.3750814;0.02086471,-0.09419024;-0.7160469;0.09949663,-0.09889555;-0.7043095;0.001291029,0.01156987;0.3996268;0.0111804,35.73101
+0;0;0,0.001159396;0.1993839;0.01564298,0.003749608;0.499163;0.02529381,0.1173723;0.3717365;0.002272224,0.1944088;0.1032213;0.02137711,0.257207;-0.1672415;-0.01476453,-0.1080954;0.3635689;-0.004367709,-0.2042201;0.1035136;-0.04349977,-0.275722;-0.1533174;-0.1290877,0.07319923;0.006261064;-0.031665,0.07673712;-0.3729083;-0.006803194,0.07695483;-0.7173916;0.05509306,0.07856917;-0.7048473;-0.04335842,-0.06790385;0.001392621;-0.04227442,-0.1053122;-0.3755073;-0.01149999,-0.1229885;-0.7200411;0.04752535,-0.1087921;-0.7632677;-0.01908044,0.002736477;0.3991695;0.02476786,0;0;0,0.005621807;0.1997302;0.008731176,0.0146305;0.4995421;0.008431382,0.1229962;0.3738928;-0.02517816,0.2010616;0.106972;0.00736477,0.2523448;-0.1673129;-0.01582634,-0.1002871;0.3599959;-0.006635649,-0.1793191;0.09165686;0.005533519,-0.2300148;-0.1835492;-0.004036177,0.06963821;0.004873376;-0.0390739,0.09494212;-0.3704813;0.01448491,0.103572;-0.7101703;0.09837121,0.1110284;-0.7607851;0.03967143,-0.07388738;0.001200645;-0.03064659,-0.08647115;-0.3750814;0.02086471,-0.09419024;-0.7160469;0.09949663,-0.09889555;-0.7043095;0.001291029,0.01156987;0.3996268;0.0111804,35.74216
+0;0;0,0.001159396;0.1993839;0.01564298,0.003749608;0.499163;0.02529381,0.1173723;0.3717365;0.002272224,0.1944088;0.1032213;0.02137711,0.257207;-0.1672415;-0.01476453,-0.1080954;0.3635689;-0.004367709,-0.2042201;0.1035136;-0.04349977,-0.275722;-0.1533174;-0.1290877,0.07319923;0.006261064;-0.031665,0.07673712;-0.3729083;-0.006803194,0.07695483;-0.7173916;0.05509306,0.07856917;-0.7048473;-0.04335842,-0.06790385;0.001392621;-0.04227442,-0.1053122;-0.3755073;-0.01149999,-0.1229885;-0.7200411;0.04752535,-0.1087921;-0.7632677;-0.01908044,0.002736477;0.3991695;0.02476786,0;0;0,0.005665159;0.1997277;0.008761808,0.01474993;0.499537;0.008462302,0.1231017;0.3739919;-0.02516201,0.2012498;0.1071652;0.007949017,0.2522121;-0.1673242;-0.01346288,-0.1002544;0.3603202;-0.006972848,-0.1794336;0.0919883;0.004369737,-0.2300172;-0.1832511;-0.004825935,0.06971415;0.004878595;-0.0389376,0.09503795;-0.370495;0.0144796,0.1036128;-0.7101924;0.0983374,0.111291;-0.7608037;0.03966142,-0.07379926;0.00121498;-0.03085762,-0.0866995;-0.3749724;0.02126378,-0.09410685;-0.7159017;0.1000821,-0.09867868;-0.7041611;0.001869582,0.01165827;0.3996228;0.01121692,35.76439
+0;0;0,0.001236594;0.1993907;0.01555086,0.003955083;0.4991713;0.02511958,0.1176199;0.371591;0.002769254,0.1947162;0.103067;0.0215044,0.2575214;-0.1673619;-0.01487875,-0.1078229;0.3631387;-0.004407242,-0.2016369;0.1016505;-0.03937709,-0.2703097;-0.1597463;-0.1125599,0.07312898;0.006232598;-0.03183248,0.0771683;-0.3728946;-0.006410023,0.07749046;-0.7173876;0.05543245,0.0792719;-0.7048463;-0.04301562,-0.06796477;0.001411814;-0.04217579,-0.1050286;-0.3755092;-0.01124357,-0.1227538;-0.7200041;0.0479942,-0.1083414;-0.7633038;-0.01848473,0.002896012;0.3991781;0.02461841,0;0;0,0.005665159;0.1997277;0.008761808,0.01474993;0.499537;0.008462302,0.1231017;0.3739919;-0.02516201,0.2012498;0.1071652;0.007949017,0.2522121;-0.1673242;-0.01346288,-0.1002544;0.3603202;-0.006972848,-0.1794336;0.0919883;0.004369737,-0.2300172;-0.1832511;-0.004825935,0.06971415;0.004878595;-0.0389376,0.09503795;-0.370495;0.0144796,0.1036128;-0.7101924;0.0983374,0.111291;-0.7608037;0.03966142,-0.07379926;0.00121498;-0.03085762,-0.0866995;-0.3749724;0.02126378,-0.09410685;-0.7159017;0.1000821,-0.09867868;-0.7041611;0.001869582,0.01165827;0.3996228;0.01121692,35.77579
+0;0;0,0.001236594;0.1993907;0.01555086,0.003955083;0.4991713;0.02511958,0.1176199;0.371591;0.002769254,0.1947162;0.103067;0.0215044,0.2575214;-0.1673619;-0.01487875,-0.1078229;0.3631387;-0.004407242,-0.2016369;0.1016505;-0.03937709,-0.2703097;-0.1597463;-0.1125599,0.07312898;0.006232598;-0.03183248,0.0771683;-0.3728946;-0.006410023,0.07749046;-0.7173876;0.05543245,0.0792719;-0.7048463;-0.04301562,-0.06796477;0.001411814;-0.04217579,-0.1050286;-0.3755092;-0.01124357,-0.1227538;-0.7200041;0.0479942,-0.1083414;-0.7633038;-0.01848473,0.002896012;0.3991781;0.02461841,0;0;0,0.005665159;0.1997277;0.008761808,0.01474993;0.499537;0.008462302,0.1231017;0.3739919;-0.02516201,0.2012498;0.1071652;0.007949017,0.2522121;-0.1673242;-0.01346288,-0.1002544;0.3603202;-0.006972848,-0.1794336;0.0919883;0.004369737,-0.2300172;-0.1832511;-0.004825935,0.06971415;0.004878595;-0.0389376,0.09503795;-0.370495;0.0144796,0.1036128;-0.7101924;0.0983374,0.111291;-0.7608037;0.03966142,-0.07379926;0.00121498;-0.03085762,-0.0866995;-0.3749724;0.02126378,-0.09410685;-0.7159017;0.1000821,-0.09867868;-0.7041611;0.001869582,0.01165827;0.3996228;0.01121692,35.78691
+0;0;0,0.001236594;0.1993907;0.01555086,0.003955083;0.4991713;0.02511958,0.1176199;0.371591;0.002769254,0.1947162;0.103067;0.0215044,0.2575214;-0.1673619;-0.01487875,-0.1078229;0.3631387;-0.004407242,-0.2016369;0.1016505;-0.03937709,-0.2703097;-0.1597463;-0.1125599,0.07312898;0.006232598;-0.03183248,0.0771683;-0.3728946;-0.006410023,0.07749046;-0.7173876;0.05543245,0.0792719;-0.7048463;-0.04301562,-0.06796477;0.001411814;-0.04217579,-0.1050286;-0.3755092;-0.01124357,-0.1227538;-0.7200041;0.0479942,-0.1083414;-0.7633038;-0.01848473,0.002896012;0.3991781;0.02461841,0;0;0,0.005803767;0.1997254;0.008721828,0.0154016;0.4995182;0.008259663,0.1235015;0.3738798;-0.02534807,0.2013797;0.1071018;0.008776331,0.2528515;-0.1673026;-0.01250435,-0.1004194;0.3609346;-0.004548209,-0.1788509;0.09226644;0.003572999,-0.2288198;-0.1830826;-0.005701859,0.06975019;0.004842752;-0.03887747,0.09510982;-0.3705289;0.01453611,0.1035973;-0.7102126;0.09845807,0.1115155;-0.7613432;0.04053458,-0.07374609;0.001293701;-0.03098129,-0.08661223;-0.374865;0.02135506,-0.09421176;-0.7158128;0.100075,-0.0994775;-0.7040851;0.00189966,0.01209665;0.3996125;0.01107693,35.80915
+0;0;0,0.00128631;0.1993961;0.01547647,0.004106707;0.4991764;0.02503354,0.1174766;0.3715031;0.001489967,0.1949662;0.1032885;0.02285129,0.2576608;-0.1671302;-0.01379689,-0.1076009;0.3625682;-0.004189486,-0.1994029;0.0999184;-0.03561337,-0.2677507;-0.1630333;-0.1033257,0.07294048;0.006080875;-0.032291,0.07817575;-0.3729487;-0.005660823,0.07785033;-0.717357;0.05665119,0.07910981;-0.7047713;-0.04181281,-0.0681067;0.001535394;-0.04194187,-0.1043853;-0.3754136;-0.01042493,-0.1221518;-0.7198749;0.04899529,-0.1075471;-0.7630938;-0.01753061,0.003008661;0.3991837;0.02453047,0;0;0,0.005803767;0.1997254;0.008721828,0.0154016;0.4995182;0.008259663,0.1235015;0.3738798;-0.02534807,0.2013797;0.1071018;0.008776331,0.2528515;-0.1673026;-0.01250435,-0.1004194;0.3609346;-0.004548209,-0.1788509;0.09226644;0.003572999,-0.2288198;-0.1830826;-0.005701859,0.06975019;0.004842752;-0.03887747,0.09510982;-0.3705289;0.01453611,0.1035973;-0.7102126;0.09845807,0.1115155;-0.7613432;0.04053458,-0.07374609;0.001293701;-0.03098129,-0.08661223;-0.374865;0.02135506,-0.09421176;-0.7158128;0.100075,-0.0994775;-0.7040851;0.00189966,0.01209665;0.3996125;0.01107693,35.82033
+0;0;0,0.00128631;0.1993961;0.01547647,0.004106707;0.4991764;0.02503354,0.1174766;0.3715031;0.001489967,0.1949662;0.1032885;0.02285129,0.2576608;-0.1671302;-0.01379689,-0.1076009;0.3625682;-0.004189486,-0.1994029;0.0999184;-0.03561337,-0.2677507;-0.1630333;-0.1033257,0.07294048;0.006080875;-0.032291,0.07817575;-0.3729487;-0.005660823,0.07785033;-0.717357;0.05665119,0.07910981;-0.7047713;-0.04181281,-0.0681067;0.001535394;-0.04194187,-0.1043853;-0.3754136;-0.01042493,-0.1221518;-0.7198749;0.04899529,-0.1075471;-0.7630938;-0.01753061,0.003008661;0.3991837;0.02453047,0;0;0,0.005794774;0.1997292;0.008642241,0.01529686;0.4995239;0.007952964,0.1235852;0.3741804;-0.02532689,0.2015408;0.1074539;0.009022849,0.2530516;-0.167005;-0.01144548,-0.1004854;0.3613358;-0.005670886,-0.179208;0.09278998;0.003596894,-0.2292647;-0.1825312;-0.006025527,0.06978104;0.004850419;-0.03882112,0.09499739;-0.3705109;0.0147325,0.1035279;-0.7102095;0.0985902,0.1119233;-0.761425;0.04085319,-0.07370558;0.001281941;-0.03107801,-0.08653854;-0.3747866;0.02191039,-0.09453986;-0.715758;0.1004885,-0.09944743;-0.7040308;0.002294749,0.01203589;0.3996195;0.01086165,35.84267
+0;0;0,0.00128631;0.1993961;0.01547647,0.004106707;0.4991764;0.02503354,0.1174766;0.3715031;0.001489967,0.1949662;0.1032885;0.02285129,0.2576608;-0.1671302;-0.01379689,-0.1076009;0.3625682;-0.004189486,-0.1994029;0.0999184;-0.03561337,-0.2677507;-0.1630333;-0.1033257,0.07294048;0.006080875;-0.032291,0.07817575;-0.3729487;-0.005660823,0.07785033;-0.717357;0.05665119,0.07910981;-0.7047713;-0.04181281,-0.0681067;0.001535394;-0.04194187,-0.1043853;-0.3754136;-0.01042493,-0.1221518;-0.7198749;0.04899529,-0.1075471;-0.7630938;-0.01753061,0.003008661;0.3991837;0.02453047,0;0;0,0.005800496;0.1997297;0.008625499,0.01532004;0.4995233;0.007839796,0.1236413;0.3744324;-0.02546741,0.2015092;0.1077201;0.009190632,0.2532836;-0.1666856;-0.01132544,-0.1004678;0.3616576;-0.006446505,-0.1794686;0.09321752;0.003494395,-0.2298791;-0.182002;-0.007135188,0.06979713;0.004820202;-0.03879596,0.09508087;-0.3705066;0.01496743,0.1034392;-0.7102386;0.09870686,0.1119581;-0.7614192;0.0409388,-0.07367825;0.001346068;-0.03114006,-0.08673032;-0.3747053;0.02191621,-0.09465763;-0.7156914;0.1004376,-0.09936775;-0.703967;0.002234593,0.01205687;0.3996201;0.0107885,35.86492
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,0.005800496;0.1997297;0.008625499,0.01532004;0.4995233;0.007839796,0.1236413;0.3744324;-0.02546741,0.2015092;0.1077201;0.009190632,0.2532836;-0.1666856;-0.01132544,-0.1004678;0.3616576;-0.006446505,-0.1794686;0.09321752;0.003494395,-0.2298791;-0.182002;-0.007135188,0.06979713;0.004820202;-0.03879596,0.09508087;-0.3705066;0.01496743,0.1034392;-0.7102386;0.09870686,0.1119581;-0.7614192;0.0409388,-0.07367825;0.001346068;-0.03114006,-0.08673032;-0.3747053;0.02191621,-0.09465763;-0.7156914;0.1004376,-0.09936775;-0.703967;0.002234593,0.01205687;0.3996201;0.0107885,35.88728
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,0.005846326;0.1997284;0.008624796,0.01544239;0.4995196;0.007824018,0.1237238;0.3744513;-0.02552758,0.2016313;0.10779;0.009431837,0.2533514;-0.1666102;-0.01129309,-0.1003247;0.3617104;-0.00689525,-0.1795221;0.09335443;0.003726816,-0.2297831;-0.1818556;-0.007816086,0.0698038;0.004793361;-0.0387873,0.09504662;-0.3705256;0.01504993,0.103397;-0.7102817;0.09869254,0.1118823;-0.761567;0.04106704,-0.07368041;0.001366695;-0.03113407,-0.08695468;-0.3747147;0.02165381,-0.09487717;-0.7156304;0.1004809,-0.09945446;-0.7039097;0.002272353,0.01215066;0.3996174;0.01077821,35.89846
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,0.005846326;0.1997284;0.008624796,0.01544239;0.4995196;0.007824018,0.1237238;0.3744513;-0.02552758,0.2016313;0.10779;0.009431837,0.2533514;-0.1666102;-0.01129309,-0.1003247;0.3617104;-0.00689525,-0.1795221;0.09335443;0.003726816,-0.2297831;-0.1818556;-0.007816086,0.0698038;0.004793361;-0.0387873,0.09504662;-0.3705256;0.01504993,0.103397;-0.7102817;0.09869254,0.1118823;-0.761567;0.04106704,-0.07368041;0.001366695;-0.03113407,-0.08695468;-0.3747147;0.02165381,-0.09487717;-0.7156304;0.1004809,-0.09945446;-0.7039097;0.002272353,0.01215066;0.3996174;0.01077821,35.90968
+0;0;0,0.001397072;0.1993858;0.01559984,0.004363683;0.4991586;0.02533849,0.117391;0.3719641;-0.0002127998,0.1951129;0.1040538;0.02394058,0.2569068;-0.1666298;-0.01227979,-0.1072681;0.3622833;-0.004071506,-0.1970542;0.09841591;-0.03076314,-0.2623006;-0.1684533;-0.08483469,0.07273839;0.006127439;-0.03273501,0.07866836;-0.3728306;-0.005246527,0.07844458;-0.7171717;0.05743687,0.07912472;-0.7045729;-0.04103513,-0.0682327;0.001505851;-0.04173764,-0.1041763;-0.3754496;-0.009916067,-0.1218517;-0.719898;0.04960622,-0.1070031;-0.7631856;-0.01678995,0.00321829;0.3991667;0.02477915,0;0;0,0.005846326;0.1997284;0.008624796,0.01544239;0.4995196;0.007824018,0.1237238;0.3744513;-0.02552758,0.2016313;0.10779;0.009431837,0.2533514;-0.1666102;-0.01129309,-0.1003247;0.3617104;-0.00689525,-0.1795221;0.09335443;0.003726816,-0.2297831;-0.1818556;-0.007816086,0.0698038;0.004793361;-0.0387873,0.09504662;-0.3705256;0.01504993,0.103397;-0.7102817;0.09869254,0.1118823;-0.761567;0.04106704,-0.07368041;0.001366695;-0.03113407,-0.08695468;-0.3747147;0.02165381,-0.09487717;-0.7156304;0.1004809,-0.09945446;-0.7039097;0.002272353,0.01215066;0.3996174;0.01077821,35.92097
+0;0;0,0.001265314;0.1994093;0.01530807,0.004017068;0.4992006;0.0245155,0.1174339;0.3722205;0.0004073493,0.194343;0.1040196;0.02392875,0.2553297;-0.1669245;-0.01170764,-0.1076077;0.3620897;-0.004160017,-0.1959974;0.09743747;-0.0275369,-0.2604723;-0.1700926;-0.07921535,0.072617;0.006210596;-0.03298787,0.07894207;-0.3726979;-0.00491029,0.07883953;-0.7170445;0.05774258,0.07970633;-0.7044774;-0.04072236,-0.06833418;0.001440783;-0.04157359,-0.1038392;-0.3755558;-0.009746745,-0.1217225;-0.7200288;0.04957106,-0.1062303;-0.7630628;-0.01695734,0.002942122;0.3992071;0.0241425,0;0;0,0.005791894;0.1997347;0.008516136,0.01517894;0.4995314;0.007486571,0.123712;0.3748831;-0.02554883,0.2015271;0.108221;0.009609947,0.2532762;-0.1661706;-0.01115765,-0.1006189;0.3621446;-0.007323988,-0.1800442;0.09387094;0.00367033,-0.230523;-0.1812576;-0.008827456,0.06980363;0.004767321;-0.0387908,0.09503157;-0.3705323;0.01518825,0.1034568;-0.7103028;0.09876448,0.1115148;-0.7613534;0.04074829,-0.07368793;0.001391764;-0.03111514,-0.08695763;-0.3746647;0.02185145,-0.0948415;-0.7155979;0.1006068,-0.09931944;-0.7038875;0.002395555,0.01197011;0.3996291;0.01052594,35.9436
+0;0;0,0.001265314;0.1994093;0.01530807,0.004017068;0.4992006;0.0245155,0.1174339;0.3722205;0.0004073493,0.194343;0.1040196;0.02392875,0.2553297;-0.1669245;-0.01170764,-0.1076077;0.3620897;-0.004160017,-0.1959974;0.09743747;-0.0275369,-0.2604723;-0.1700926;-0.07921535,0.072617;0.006210596;-0.03298787,0.07894207;-0.3726979;-0.00491029,0.07883953;-0.7170445;0.05774258,0.07970633;-0.7044774;-0.04072236,-0.06833418;0.001440783;-0.04157359,-0.1038392;-0.3755558;-0.009746745,-0.1217225;-0.7200288;0.04957106,-0.1062303;-0.7630628;-0.01695734,0.002942122;0.3992071;0.0241425,0;0;0,0.005786669;0.19974;0.008392679,0.01517019;0.4995351;0.007039077,0.1237245;0.3748992;-0.02581308,0.2016227;0.1083007;0.00964253,0.2535655;-0.1660389;-0.01132709,-0.101142;0.362397;-0.004667021,-0.1785572;0.09341305;0.002715379,-0.2299286;-0.1815282;-0.01025669,0.06975357;0.004762342;-0.03888134,0.0951125;-0.3705161;0.01518374,0.1035056;-0.7102757;0.09880755,0.111392;-0.7621093;0.04187717,-0.07369926;0.00139198;-0.03108828,-0.08709135;-0.3746549;0.0219151,-0.09483149;-0.7155901;0.1006764,-0.1001544;-0.7038953;0.002510227,0.01196064;0.3996366;0.01019956,35.96632
+0;0;0,0.001265314;0.1994093;0.01530807,0.004017068;0.4992006;0.0245155,0.1174339;0.3722205;0.0004073493,0.194343;0.1040196;0.02392875,0.2553297;-0.1669245;-0.01170764,-0.1076077;0.3620897;-0.004160017,-0.1959974;0.09743747;-0.0275369,-0.2604723;-0.1700926;-0.07921535,0.072617;0.006210596;-0.03298787,0.07894207;-0.3726979;-0.00491029,0.07883953;-0.7170445;0.05774258,0.07970633;-0.7044774;-0.04072236,-0.06833418;0.001440783;-0.04157359,-0.1038392;-0.3755558;-0.009746745,-0.1217225;-0.7200288;0.04957106,-0.1062303;-0.7630628;-0.01695734,0.002942122;0.3992071;0.0241425,0;0;0,0.005786669;0.19974;0.008392679,0.01517019;0.4995351;0.007039077,0.1237245;0.3748992;-0.02581308,0.2016227;0.1083007;0.00964253,0.2535655;-0.1660389;-0.01132709,-0.101142;0.362397;-0.004667021,-0.1785572;0.09341305;0.002715379,-0.2299286;-0.1815282;-0.01025669,0.06975357;0.004762342;-0.03888134,0.0951125;-0.3705161;0.01518374,0.1035056;-0.7102757;0.09880755,0.111392;-0.7621093;0.04187717,-0.07369926;0.00139198;-0.03108828,-0.08709135;-0.3746549;0.0219151,-0.09483149;-0.7155901;0.1006764,-0.1001544;-0.7038953;0.002510227,0.01196064;0.3996366;0.01019956,35.97788
+0;0;0,0.001286082;0.1994163;0.0152146,0.004097871;0.4992091;0.02436326,0.1173209;0.3733123;-0.001675811,0.1937951;0.1053353;0.02552824,0.2520891;-0.1664748;-0.007954519,-0.1076477;0.3620932;-0.003913118,-0.1948204;0.09678566;-0.02423195,-0.2567408;-0.1726128;-0.0688455,0.07249318;0.006223532;-0.03325667,0.0795828;-0.3726288;-0.004610494,0.07930226;-0.7169091;0.05840553,0.07937673;-0.704332;-0.04006497,-0.06845576;0.001421278;-0.04137377,-0.1033624;-0.3756162;-0.009369381,-0.121166;-0.720065;0.05011221,-0.1061083;-0.7636774;-0.01587631,0.002998533;0.3992158;0.02400309,0;0;0,0.005786669;0.19974;0.008392679,0.01517019;0.4995351;0.007039077,0.1237245;0.3748992;-0.02581308,0.2016227;0.1083007;0.00964253,0.2535655;-0.1660389;-0.01132709,-0.101142;0.362397;-0.004667021,-0.1785572;0.09341305;0.002715379,-0.2299286;-0.1815282;-0.01025669,0.06975357;0.004762342;-0.03888134,0.0951125;-0.3705161;0.01518374,0.1035056;-0.7102757;0.09880755,0.111392;-0.7621093;0.04187717,-0.07369926;0.00139198;-0.03108828,-0.08709135;-0.3746549;0.0219151,-0.09483149;-0.7155901;0.1006764,-0.1001544;-0.7038953;0.002510227,0.01196064;0.3996366;0.01019956,35.9893
+0;0;0,0.001286082;0.1994163;0.0152146,0.004097871;0.4992091;0.02436326,0.1173209;0.3733123;-0.001675811,0.1937951;0.1053353;0.02552824,0.2520891;-0.1664748;-0.007954519,-0.1076477;0.3620932;-0.003913118,-0.1948204;0.09678566;-0.02423195,-0.2567408;-0.1726128;-0.0688455,0.07249318;0.006223532;-0.03325667,0.0795828;-0.3726288;-0.004610494,0.07930226;-0.7169091;0.05840553,0.07937673;-0.704332;-0.04006497,-0.06845576;0.001421278;-0.04137377,-0.1033624;-0.3756162;-0.009369381,-0.121166;-0.720065;0.05011221,-0.1061083;-0.7636774;-0.01587631,0.002998533;0.3992158;0.02400309,0;0;0,0.005836964;0.199742;0.008309471,0.01532183;0.4995328;0.006770467,0.1237841;0.3749485;-0.02621402,0.2016359;0.1082824;0.00883292,0.2539048;-0.1660334;-0.01163154,-0.1010264;0.3627922;-0.005841061,-0.1790689;0.0940322;0.002958776,-0.230478;-0.180907;-0.009907454,0.06976576;0.004741492;-0.03886201,0.09513944;-0.3705267;0.01526729,0.1035778;-0.7102129;0.09918422,0.1108553;-0.7621276;0.04228937,-0.07370347;0.001409676;-0.03107751,-0.08716565;-0.3746225;0.02201245,-0.09485991;-0.7155562;0.1007844,-0.09996168;-0.7038708;0.002608292,0.01207348;0.3996377;0.009996285,36.00079
+0;0;0,0.001337012;0.1994206;0.01515415,0.004240012;0.4992137;0.02426883,0.1174661;0.3736807;-0.001960658,0.19279;0.1055946;0.02729985,0.2502433;-0.1665681;-0.004740287,-0.1075214;0.3618329;-0.003716914,-0.1933102;0.09584919;-0.02083306,-0.2540787;-0.1749117;-0.05819251,0.07239506;0.006210608;-0.03347213,0.08048354;-0.3725953;-0.004478224,0.08040605;-0.7168148;0.05886967,0.08026545;-0.7042331;-0.03960156,-0.0685532;0.001434637;-0.04121164,-0.1024923;-0.3756897;-0.00919006,-0.120519;-0.7201028;0.05043092,-0.1047433;-0.7636246;-0.01549081,0.003106602;0.3992207;0.02391617,0;0;0,0.005836964;0.199742;0.008309471,0.01532183;0.4995328;0.006770467,0.1237841;0.3749485;-0.02621402,0.2016359;0.1082824;0.00883292,0.2539048;-0.1660334;-0.01163154,-0.1010264;0.3627922;-0.005841061,-0.1790689;0.0940322;0.002958776,-0.230478;-0.180907;-0.009907454,0.06976576;0.004741492;-0.03886201,0.09513944;-0.3705267;0.01526729,0.1035778;-0.7102129;0.09918422,0.1108553;-0.7621276;0.04228937,-0.07370347;0.001409676;-0.03107751,-0.08716565;-0.3746225;0.02201245,-0.09485991;-0.7155562;0.1007844,-0.09996168;-0.7038708;0.002608292,0.01207348;0.3996377;0.009996285,36.01224
+0;0;0,0.001337012;0.1994206;0.01515415,0.004240012;0.4992137;0.02426883,0.1174661;0.3736807;-0.001960658,0.19279;0.1055946;0.02729985,0.2502433;-0.1665681;-0.004740287,-0.1075214;0.3618329;-0.003716914,-0.1933102;0.09584919;-0.02083306,-0.2540787;-0.1749117;-0.05819251,0.07239506;0.006210608;-0.03347213,0.08048354;-0.3725953;-0.004478224,0.08040605;-0.7168148;0.05886967,0.08026545;-0.7042331;-0.03960156,-0.0685532;0.001434637;-0.04121164,-0.1024923;-0.3756897;-0.00919006,-0.120519;-0.7201028;0.05043092,-0.1047433;-0.7636246;-0.01549081,0.003106602;0.3992207;0.02391617,0;0;0,0.005836964;0.199742;0.008309471,0.01532183;0.4995328;0.006770467,0.1237841;0.3749485;-0.02621402,0.2016359;0.1082824;0.00883292,0.2539048;-0.1660334;-0.01163154,-0.1010264;0.3627922;-0.005841061,-0.1790689;0.0940322;0.002958776,-0.230478;-0.180907;-0.009907454,0.06976576;0.004741492;-0.03886201,0.09513944;-0.3705267;0.01526729,0.1035778;-0.7102129;0.09918422,0.1108553;-0.7621276;0.04228937,-0.07370347;0.001409676;-0.03107751,-0.08716565;-0.3746225;0.02201245,-0.09485991;-0.7155562;0.1007844,-0.09996168;-0.7038708;0.002608292,0.01207348;0.3996377;0.009996285,36.0235
+0;0;0,0.001337012;0.1994206;0.01515415,0.004240012;0.4992137;0.02426883,0.1174661;0.3736807;-0.001960658,0.19279;0.1055946;0.02729985,0.2502433;-0.1665681;-0.004740287,-0.1075214;0.3618329;-0.003716914,-0.1933102;0.09584919;-0.02083306,-0.2540787;-0.1749117;-0.05819251,0.07239506;0.006210608;-0.03347213,0.08048354;-0.3725953;-0.004478224,0.08040605;-0.7168148;0.05886967,0.08026545;-0.7042331;-0.03960156,-0.0685532;0.001434637;-0.04121164,-0.1024923;-0.3756897;-0.00919006,-0.120519;-0.7201028;0.05043092,-0.1047433;-0.7636246;-0.01549081,0.003106602;0.3992207;0.02391617,0;0;0,0.005874366;0.1997424;0.008274111,0.01548589;0.4995285;0.006634648,0.1239193;0.3751123;-0.02636304,0.2016947;0.1082853;0.007612243,0.2547778;-0.1658311;-0.01342048,-0.1014168;0.3634149;-0.003593151,-0.1786887;0.0943681;0.002955706,-0.2298921;-0.1805818;-0.01048895,0.0697478;0.004708652;-0.03889823,0.09515871;-0.3705529;0.0152598,0.1036407;-0.7101803;0.09940991,0.1109341;-0.7620326;0.0424273,-0.0737092;0.001459303;-0.03106161,-0.08718633;-0.3745763;0.02200027,-0.0948959;-0.7155001;0.1008134,-0.100671;-0.7038215;0.002675891,0.01218803;0.3996361;0.00989587,36.03504
+0;0;0,0.001226942;0.1994303;0.01503469,0.003949782;0.4992303;0.02397782,0.1171985;0.3740635;-0.002712799,0.1925977;0.1061414;0.02782816,0.2482109;-0.1667754;-0.0008697342,-0.1076417;0.3615326;-0.003963511,-0.1921509;0.09489188;-0.01664865,-0.2521018;-0.1765939;-0.04983537,0.07226718;0.006252537;-0.03373959,0.0808771;-0.372532;-0.004617006,0.0809987;-0.7166663;0.05919158,0.08065885;-0.7040907;-0.0392781,-0.0686715;0.001384035;-0.04101597,-0.102043;-0.3758062;-0.009174895,-0.1201231;-0.720181;0.0506503,-0.1042927;-0.7638509;-0.01509283,0.002876005;0.3992365;0.0236818,0;0;0,0.005874366;0.1997424;0.008274111,0.01548589;0.4995285;0.006634648,0.1239193;0.3751123;-0.02636304,0.2016947;0.1082853;0.007612243,0.2547778;-0.1658311;-0.01342048,-0.1014168;0.3634149;-0.003593151,-0.1786887;0.0943681;0.002955706,-0.2298921;-0.1805818;-0.01048895,0.0697478;0.004708652;-0.03889823,0.09515871;-0.3705529;0.0152598,0.1036407;-0.7101803;0.09940991,0.1109341;-0.7620326;0.0424273,-0.0737092;0.001459303;-0.03106161,-0.08718633;-0.3745763;0.02200027,-0.0948959;-0.7155001;0.1008134,-0.100671;-0.7038215;0.002675891,0.01218803;0.3996361;0.00989587,36.04634
+0;0;0,0.001226942;0.1994303;0.01503469,0.003949782;0.4992303;0.02397782,0.1171985;0.3740635;-0.002712799,0.1925977;0.1061414;0.02782816,0.2482109;-0.1667754;-0.0008697342,-0.1076417;0.3615326;-0.003963511,-0.1921509;0.09489188;-0.01664865,-0.2521018;-0.1765939;-0.04983537,0.07226718;0.006252537;-0.03373959,0.0808771;-0.372532;-0.004617006,0.0809987;-0.7166663;0.05919158,0.08065885;-0.7040907;-0.0392781,-0.0686715;0.001384035;-0.04101597,-0.102043;-0.3758062;-0.009174895,-0.1201231;-0.720181;0.0506503,-0.1042927;-0.7638509;-0.01509283,0.002876005;0.3992365;0.0236818,0;0;0,0.005874366;0.1997424;0.008274111,0.01548589;0.4995285;0.006634648,0.1239193;0.3751123;-0.02636304,0.2016947;0.1082853;0.007612243,0.2547778;-0.1658311;-0.01342048,-0.1014168;0.3634149;-0.003593151,-0.1786887;0.0943681;0.002955706,-0.2298921;-0.1805818;-0.01048895,0.0697478;0.004708652;-0.03889823,0.09515871;-0.3705529;0.0152598,0.1036407;-0.7101803;0.09940991,0.1109341;-0.7620326;0.0424273,-0.0737092;0.001459303;-0.03106161,-0.08718633;-0.3745763;0.02200027,-0.0948959;-0.7155001;0.1008134,-0.100671;-0.7038215;0.002675891,0.01218803;0.3996361;0.00989587,36.05782
+0;0;0,0.001226942;0.1994303;0.01503469,0.003949782;0.4992303;0.02397782,0.1171985;0.3740635;-0.002712799,0.1925977;0.1061414;0.02782816,0.2482109;-0.1667754;-0.0008697342,-0.1076417;0.3615326;-0.003963511,-0.1921509;0.09489188;-0.01664865,-0.2521018;-0.1765939;-0.04983537,0.07226718;0.006252537;-0.03373959,0.0808771;-0.372532;-0.004617006,0.0809987;-0.7166663;0.05919158,0.08065885;-0.7040907;-0.0392781,-0.0686715;0.001384035;-0.04101597,-0.102043;-0.3758062;-0.009174895,-0.1201231;-0.720181;0.0506503,-0.1042927;-0.7638509;-0.01509283,0.002876005;0.3992365;0.0236818,0;0;0,0.005877652;0.1997446;0.008217985,0.01545695;0.4995314;0.006497934,0.1237777;0.375147;-0.02688196,0.2017297;0.1081136;0.005002376,0.2555913;-0.1654018;-0.02123263,-0.1013185;0.3633461;-0.004448587,-0.1791116;0.09448048;0.003265427,-0.2304252;-0.1804529;-0.0100963,0.06965008;0.004643152;-0.03908078,0.09513415;-0.3705589;0.01545317,0.1034949;-0.71014;0.0998023,0.1111365;-0.7619247;0.04276846,-0.07375878;0.001485435;-0.03094246,-0.08723018;-0.3745474;0.0221406,-0.09508708;-0.7154754;0.1009212,-0.1007918;-0.7038106;0.002782159,0.01217255;0.3996394;0.00978436,36.08067
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,0.005955731;0.1997428;0.008207198,0.01577587;0.4995211;0.006409394,0.1238823;0.3749439;-0.02713403,0.2018811;0.1075886;0.001802964,0.2572995;-0.1650529;-0.02974784,-0.1012882;0.3633799;-0.003092607,-0.1786339;0.09438378;0.004571313,-0.2300335;-0.1804833;-0.009788292,0.06961561;0.004649672;-0.03914137,0.09520808;-0.3705347;0.01546375,0.1035883;-0.7100413;0.1001102,0.1109534;-0.7616015;0.04271951,-0.07376292;0.001480505;-0.03093282,-0.08719289;-0.374552;0.02216336,-0.09500613;-0.7154872;0.1009167,-0.1011685;-0.703825;0.002805777,0.01238409;0.3996337;0.009724507,36.09198
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,0.005955731;0.1997428;0.008207198,0.01577587;0.4995211;0.006409394,0.1238823;0.3749439;-0.02713403,0.2018811;0.1075886;0.001802964,0.2572995;-0.1650529;-0.02974784,-0.1012882;0.3633799;-0.003092607,-0.1786339;0.09438378;0.004571313,-0.2300335;-0.1804833;-0.009788292,0.06961561;0.004649672;-0.03914137,0.09520808;-0.3705347;0.01546375,0.1035883;-0.7100413;0.1001102,0.1109534;-0.7616015;0.04271951,-0.07376292;0.001480505;-0.03093282,-0.08719289;-0.374552;0.02216336,-0.09500613;-0.7154872;0.1009167,-0.1011685;-0.703825;0.002805777,0.01238409;0.3996337;0.009724507,36.10371
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,0.005955731;0.1997428;0.008207198,0.01577587;0.4995211;0.006409394,0.1238823;0.3749439;-0.02713403,0.2018811;0.1075886;0.001802964,0.2572995;-0.1650529;-0.02974784,-0.1012882;0.3633799;-0.003092607,-0.1786339;0.09438378;0.004571313,-0.2300335;-0.1804833;-0.009788292,0.06961561;0.004649672;-0.03914137,0.09520808;-0.3705347;0.01546375,0.1035883;-0.7100413;0.1001102,0.1109534;-0.7616015;0.04271951,-0.07376292;0.001480505;-0.03093282,-0.08719289;-0.374552;0.02216336,-0.09500613;-0.7154872;0.1009167,-0.1011685;-0.703825;0.002805777,0.01238409;0.3996337;0.009724507,36.12612
+0;0;0,0.001135163;0.1994526;0.01474345,0.003712218;0.4992693;0.02313578,0.1170066;0.3742135;-0.003469855,0.1914375;0.1061966;0.0285771,0.2467814;-0.16713;0.003485531,-0.1077517;0.3611347;-0.004331486,-0.1904601;0.09372896;-0.01164441,-0.2497174;-0.1785613;-0.03896793,0.07217059;0.006243877;-0.03394731,0.0813963;-0.3725129;-0.004652131,0.0815962;-0.7165522;0.05966665,0.0810947;-0.7039955;-0.03879898,-0.06878219;0.001385732;-0.04083,-0.1014218;-0.3758724;-0.009034637,-0.119464;-0.7202367;0.05086331,-0.1036711;-0.7640457;-0.01473252,0.002685338;0.3992746;0.02303647,0;0;0,0.00594626;0.1997458;0.008139516,0.01568269;0.4995262;0.006233941,0.1236878;0.3747405;-0.02754548,0.2020326;0.1069729;-0.00382599,0.2582546;-0.1644864;-0.04318218,-0.1014731;0.3634495;-0.002241952,-0.1787997;0.09442711;0.00465531,-0.2299992;-0.1804812;-0.009628362,0.06957781;0.004599443;-0.03921445,0.09502358;-0.3705712;0.01555304,0.103275;-0.7102181;0.0996476,0.1109094;-0.7608152;0.04094637,-0.07377905;0.001504911;-0.03089316,-0.08701342;-0.374647;0.02140048,-0.09512278;-0.7155519;0.1002553,-0.101666;-0.7038963;0.002170324,0.01232679;0.3996388;0.009586806,36.13776
+0;0;0,0.00111579;0.1994666;0.01455388,0.003663604;0.4992935;0.02256876,0.116818;0.3742963;-0.004583489,0.1906294;0.1062937;0.02897997,0.2451102;-0.1675694;0.008222528,-0.1077263;0.3608555;-0.004608953,-0.1884756;0.0927597;-0.006652395,-0.2469697;-0.1800212;-0.03050623,0.0720737;0.006321724;-0.03413822,0.08156924;-0.3724475;-0.00509196,0.08197495;-0.7164167;0.05959958,0.08121994;-0.7038738;-0.03886199,-0.06883734;0.001334987;-0.04073864,-0.1010519;-0.3759729;-0.009100176,-0.1192055;-0.7202975;0.05099173,-0.1032562;-0.7645829;-0.01402588,0.002643913;0.3992987;0.02260382,0;0;0,0.00594626;0.1997458;0.008139516,0.01568269;0.4995262;0.006233941,0.1236878;0.3747405;-0.02754548,0.2020326;0.1069729;-0.00382599,0.2582546;-0.1644864;-0.04318218,-0.1014731;0.3634495;-0.002241952,-0.1787997;0.09442711;0.00465531,-0.2299992;-0.1804812;-0.009628362,0.06957781;0.004599443;-0.03921445,0.09502358;-0.3705712;0.01555304,0.103275;-0.7102181;0.0996476,0.1109094;-0.7608152;0.04094637,-0.07377905;0.001504911;-0.03089316,-0.08701342;-0.374647;0.02140048,-0.09512278;-0.7155519;0.1002553,-0.101666;-0.7038963;0.002170324,0.01232679;0.3996388;0.009586806,36.14938
+0;0;0,0.00111579;0.1994666;0.01455388,0.003663604;0.4992935;0.02256876,0.116818;0.3742963;-0.004583489,0.1906294;0.1062937;0.02897997,0.2451102;-0.1675694;0.008222528,-0.1077263;0.3608555;-0.004608953,-0.1884756;0.0927597;-0.006652395,-0.2469697;-0.1800212;-0.03050623,0.0720737;0.006321724;-0.03413822,0.08156924;-0.3724475;-0.00509196,0.08197495;-0.7164167;0.05959958,0.08121994;-0.7038738;-0.03886199,-0.06883734;0.001334987;-0.04073864,-0.1010519;-0.3759729;-0.009100176,-0.1192055;-0.7202975;0.05099173,-0.1032562;-0.7645829;-0.01402588,0.002643913;0.3992987;0.02260382,0;0;0,0.006148254;0.1997475;0.00794542,0.01634629;0.4995098;0.005686271,0.1240266;0.3744824;-0.02826652,0.2025934;0.1063184;-0.01050925,0.2592857;-0.1627808;-0.06315558,-0.1009384;0.3637003;-0.003779498,-0.1796099;0.09513381;0.005321652,-0.2310918;-0.1797767;-0.007862126,0.06947387;0.00442478;-0.03941831,0.09468359;-0.3706898;0.01584059,0.103143;-0.7103745;0.09976171,0.1106454;-0.7610129;0.04110031,-0.07383223;0.001560406;-0.03076307,-0.08711593;-0.374586;0.02155714,-0.09515473;-0.7155144;0.1003177,-0.1014313;-0.7038755;0.002218381,0.01282175;0.3996324;0.009162903,36.17146
+0;0;0,0.00111579;0.1994666;0.01455388,0.003663604;0.4992935;0.02256876,0.116818;0.3742963;-0.004583489,0.1906294;0.1062937;0.02897997,0.2451102;-0.1675694;0.008222528,-0.1077263;0.3608555;-0.004608953,-0.1884756;0.0927597;-0.006652395,-0.2469697;-0.1800212;-0.03050623,0.0720737;0.006321724;-0.03413822,0.08156924;-0.3724475;-0.00509196,0.08197495;-0.7164167;0.05959958,0.08121994;-0.7038738;-0.03886199,-0.06883734;0.001334987;-0.04073864,-0.1010519;-0.3759729;-0.009100176,-0.1192055;-0.7202975;0.05099173,-0.1032562;-0.7645829;-0.01402588,0.002643913;0.3992987;0.02260382,0;0;0,0.006148254;0.1997475;0.00794542,0.01634629;0.4995098;0.005686271,0.1240266;0.3744824;-0.02826652,0.2025934;0.1063184;-0.01050925,0.2592857;-0.1627808;-0.06315558,-0.1009384;0.3637003;-0.003779498,-0.1796099;0.09513381;0.005321652,-0.2310918;-0.1797767;-0.007862126,0.06947387;0.00442478;-0.03941831,0.09468359;-0.3706898;0.01584059,0.103143;-0.7103745;0.09976171,0.1106454;-0.7610129;0.04110031,-0.07383223;0.001560406;-0.03076307,-0.08711593;-0.374586;0.02155714,-0.09515473;-0.7155144;0.1003177,-0.1014313;-0.7038755;0.002218381,0.01282175;0.3996324;0.009162903,36.18263
+0;0;0,0.001486447;0.1994646;0.01454921,0.004498441;0.499285;0.02265832,0.1174072;0.3741012;-0.004777076,0.1904278;0.1059701;0.02948202,0.244966;-0.1682623;0.014575,-0.1070917;0.360734;-0.004173448,-0.1869117;0.09236765;-0.001293489,-0.2439202;-0.1810991;-0.02042359,0.07179683;0.006463836;-0.03469055,0.08332702;-0.3721808;-0.004769349,0.08378354;-0.716072;0.06033568,0.09513997;-0.7636886;-0.001686122,-0.06902627;0.00121881;-0.04042139,-0.0998536;-0.3762031;-0.00876148,-0.1178566;-0.7204875;0.05160531,-0.1017802;-0.764893;-0.01324359,0.003332829;0.3992918;0.02265402,0;0;0,0.006216871;0.1997482;0.007874823,0.01648938;0.4995078;0.005574189,0.1239842;0.3745517;-0.02890276,0.2030343;0.1061375;-0.01866102,0.2598376;-0.1614858;-0.07825251,-0.1008988;0.3642723;-0.004705579,-0.1803149;0.09597436;0.00574943,-0.2324738;-0.1788523;-0.006488814,0.06932276;0.004317696;-0.03969524,0.0945583;-0.370706;0.01616512,0.1031308;-0.7104487;0.09983946,0.1100358;-0.7610307;0.04102736,-0.07391382;0.001616181;-0.03056362,-0.0868364;-0.3746554;0.02094097,-0.09508938;-0.7154926;0.1000729,-0.1013128;-0.7038555;0.001970552,0.01294426;0.3996315;0.009059442,36.20487
+0;0;0,0.001486447;0.1994646;0.01454921,0.004498441;0.499285;0.02265832,0.1174072;0.3741012;-0.004777076,0.1904278;0.1059701;0.02948202,0.244966;-0.1682623;0.014575,-0.1070917;0.360734;-0.004173448,-0.1869117;0.09236765;-0.001293489,-0.2439202;-0.1810991;-0.02042359,0.07179683;0.006463836;-0.03469055,0.08332702;-0.3721808;-0.004769349,0.08378354;-0.716072;0.06033568,0.09513997;-0.7636886;-0.001686122,-0.06902627;0.00121881;-0.04042139,-0.0998536;-0.3762031;-0.00876148,-0.1178566;-0.7204875;0.05160531,-0.1017802;-0.764893;-0.01324359,0.003332829;0.3992918;0.02265402,0;0;0,0.00615182;0.1997498;0.007884061,0.01602416;0.4995264;0.005809514,0.1233983;0.3740049;-0.02928562,0.2033949;0.1057152;-0.02468562,0.2584552;-0.1599444;-0.09391957,-0.101231;0.3637988;-0.002862069,-0.180003;0.09524092;0.005603287,-0.2327393;-0.1795412;-0.005057438,0.06925137;0.00429426;-0.03982216,0.09440758;-0.3707082;0.01621649,0.1029364;-0.7104148;0.1000421,0.1098851;-0.7609404;0.04115796,-0.07394326;0.00162801;-0.03049168,-0.08711668;-0.3746121;0.02117888,-0.09515819;-0.7154811;0.1001957,-0.1020843;-0.7038526;0.002142012,0.01265715;0.3996398;0.009175536,36.22866
+0;0;0,0.001559564;0.1994842;0.01426968,0.00471569;0.4993154;0.02189917,0.1175373;0.3742825;-0.00563884,0.1905807;0.1062786;0.02955421,0.2451375;-0.1681287;0.0184089,-0.1069508;0.360366;-0.004093956,-0.1862223;0.09194693;0.004103519,-0.241594;-0.1821377;-0.01044224,0.07150926;0.006571835;-0.03525955,0.08422145;-0.3719563;-0.004359255,0.08430046;-0.7159081;0.06042653,0.09667626;-0.7625025;-0.00266178,-0.06921404;0.001135438;-0.04010145,-0.09951922;-0.3763875;-0.009149961,-0.1173119;-0.7204918;0.05229667,-0.1009501;-0.764289;-0.01317292,0.003494902;0.399323;0.02206141,0;0;0,0.00615182;0.1997498;0.007884061,0.01602416;0.4995264;0.005809514,0.1233983;0.3740049;-0.02928562,0.2033949;0.1057152;-0.02468562,0.2584552;-0.1599444;-0.09391957,-0.101231;0.3637988;-0.002862069,-0.180003;0.09524092;0.005603287,-0.2327393;-0.1795412;-0.005057438,0.06925137;0.00429426;-0.03982216,0.09440758;-0.3707082;0.01621649,0.1029364;-0.7104148;0.1000421,0.1098851;-0.7609404;0.04115796,-0.07394326;0.00162801;-0.03049168,-0.08711668;-0.3746121;0.02117888,-0.09515819;-0.7154811;0.1001957,-0.1020843;-0.7038526;0.002142012,0.01265715;0.3996398;0.009175536,36.24953
+0;0;0,0.001559564;0.1994842;0.01426968,0.00471569;0.4993154;0.02189917,0.1175373;0.3742825;-0.00563884,0.1905807;0.1062786;0.02955421,0.2451375;-0.1681287;0.0184089,-0.1069508;0.360366;-0.004093956,-0.1862223;0.09194693;0.004103519,-0.241594;-0.1821377;-0.01044224,0.07150926;0.006571835;-0.03525955,0.08422145;-0.3719563;-0.004359255,0.08430046;-0.7159081;0.06042653,0.09667626;-0.7625025;-0.00266178,-0.06921404;0.001135438;-0.04010145,-0.09951922;-0.3763875;-0.009149961,-0.1173119;-0.7204918;0.05229667,-0.1009501;-0.764289;-0.01317292,0.003494902;0.399323;0.02206141,0;0;0,0.006340117;0.1997478;0.007785778,0.01656829;0.4995108;0.005536566,0.1235335;0.3739083;-0.03021614,0.203318;0.1055417;-0.03393571,0.2578006;-0.1566588;-0.1156825,-0.1006741;0.3638339;-0.004491508,-0.1808974;0.09578499;0.006186417,-0.2345053;-0.1788663;-0.00344895,0.06884523;0.004322873;-0.04051725,0.09377426;-0.3705789;0.016291,0.1027347;-0.7102064;0.1003913,0.1090053;-0.7615127;0.04251242,-0.07412736;0.001573461;-0.03004428,-0.08746709;-0.3746717;0.02154657,-0.09534954;-0.71551;0.1007117,-0.1021343;-0.7038867;0.002649128,0.01306809;0.3996311;0.008972138,36.26076
+0;0;0,0.001559564;0.1994842;0.01426968,0.00471569;0.4993154;0.02189917,0.1175373;0.3742825;-0.00563884,0.1905807;0.1062786;0.02955421,0.2451375;-0.1681287;0.0184089,-0.1069508;0.360366;-0.004093956,-0.1862223;0.09194693;0.004103519,-0.241594;-0.1821377;-0.01044224,0.07150926;0.006571835;-0.03525955,0.08422145;-0.3719563;-0.004359255,0.08430046;-0.7159081;0.06042653,0.09667626;-0.7625025;-0.00266178,-0.06921404;0.001135438;-0.04010145,-0.09951922;-0.3763875;-0.009149961,-0.1173119;-0.7204918;0.05229667,-0.1009501;-0.764289;-0.01317292,0.003494902;0.399323;0.02206141,0;0;0,0.006340117;0.1997478;0.007785778,0.01656829;0.4995108;0.005536566,0.1235335;0.3739083;-0.03021614,0.203318;0.1055417;-0.03393571,0.2578006;-0.1566588;-0.1156825,-0.1006741;0.3638339;-0.004491508,-0.1808974;0.09578499;0.006186417,-0.2345053;-0.1788663;-0.00344895,0.06884523;0.004322873;-0.04051725,0.09377426;-0.3705789;0.016291,0.1027347;-0.7102064;0.1003913,0.1090053;-0.7615127;0.04251242,-0.07412736;0.001573461;-0.03004428,-0.08746709;-0.3746717;0.02154657,-0.09534954;-0.71551;0.1007117,-0.1021343;-0.7038867;0.002649128,0.01306809;0.3996311;0.008972138,36.28308
+0;0;0,0.001497444;0.1994954;0.01411955,0.00458225;0.4993323;0.02155524,0.1174119;0.3742999;-0.005973388,0.18999;0.1063194;0.03034306,0.243875;-0.1683377;0.02260273,-0.1070405;0.3601799;-0.004172517,-0.1858321;0.09178165;0.008247942,-0.2387736;-0.1829796;-0.001923683,0.07145446;0.00654886;-0.03537475,0.08461922;-0.3719932;-0.004836589,0.08504809;-0.7157618;0.06091263,0.09706468;-0.7620664;-0.002595015,-0.06928416;0.00115451;-0.03997965,-0.09876078;-0.3764257;-0.008925816,-0.116739;-0.7205126;0.05256369,-0.100007;-0.7643041;-0.01281869,0.003381748;0.3993398;0.02177787,0;0;0,0.006621375;0.1997449;0.007626021,0.01756984;0.4994796;0.00507487,0.1237814;0.3733139;-0.03152139,0.205306;0.1056427;-0.04181074,0.2579259;-0.1539589;-0.132575,-0.09995937;0.3638518;-0.004841093,-0.1799496;0.09581038;0.007622541,-0.235793;-0.1784166;-0.001381234,0.0687523;0.004159639;-0.04069174,0.09356913;-0.3706657;0.01666744,0.1024948;-0.7103419;0.1005748,0.1098595;-0.7618471;0.04310608,-0.07422135;0.001660492;-0.02980659,-0.08779594;-0.3745471;0.02199698,-0.09531234;-0.7154071;0.1011042,-0.1023545;-0.7037944;0.003061809,0.01379445;0.3996137;0.008618189,36.29432
+0;0;0,0.001497444;0.1994954;0.01411955,0.00458225;0.4993323;0.02155524,0.1174119;0.3742999;-0.005973388,0.18999;0.1063194;0.03034306,0.243875;-0.1683377;0.02260273,-0.1070405;0.3601799;-0.004172517,-0.1858321;0.09178165;0.008247942,-0.2387736;-0.1829796;-0.001923683,0.07145446;0.00654886;-0.03537475,0.08461922;-0.3719932;-0.004836589,0.08504809;-0.7157618;0.06091263,0.09706468;-0.7620664;-0.002595015,-0.06928416;0.00115451;-0.03997965,-0.09876078;-0.3764257;-0.008925816,-0.116739;-0.7205126;0.05256369,-0.100007;-0.7643041;-0.01281869,0.003381748;0.3993398;0.02177787,0;0;0,0.006621375;0.1997449;0.007626021,0.01756984;0.4994796;0.00507487,0.1237814;0.3733139;-0.03152139,0.205306;0.1056427;-0.04181074,0.2579259;-0.1539589;-0.132575,-0.09995937;0.3638518;-0.004841093,-0.1799496;0.09581038;0.007622541,-0.235793;-0.1784166;-0.001381234,0.0687523;0.004159639;-0.04069174,0.09356913;-0.3706657;0.01666744,0.1024948;-0.7103419;0.1005748,0.1098595;-0.7618471;0.04310608,-0.07422135;0.001660492;-0.02980659,-0.08779594;-0.3745471;0.02199698,-0.09531234;-0.7154071;0.1011042,-0.1023545;-0.7037944;0.003061809,0.01379445;0.3996137;0.008618189,36.31649
+0;0;0,0.001497444;0.1994954;0.01411955,0.00458225;0.4993323;0.02155524,0.1174119;0.3742999;-0.005973388,0.18999;0.1063194;0.03034306,0.243875;-0.1683377;0.02260273,-0.1070405;0.3601799;-0.004172517,-0.1858321;0.09178165;0.008247942,-0.2387736;-0.1829796;-0.001923683,0.07145446;0.00654886;-0.03537475,0.08461922;-0.3719932;-0.004836589,0.08504809;-0.7157618;0.06091263,0.09706468;-0.7620664;-0.002595015,-0.06928416;0.00115451;-0.03997965,-0.09876078;-0.3764257;-0.008925816,-0.116739;-0.7205126;0.05256369,-0.100007;-0.7643041;-0.01281869,0.003381748;0.3993398;0.02177787,0;0;0,0.006621375;0.1997449;0.007626021,0.01756984;0.4994796;0.00507487,0.1237814;0.3733139;-0.03152139,0.205306;0.1056427;-0.04181074,0.2579259;-0.1539589;-0.132575,-0.09995937;0.3638518;-0.004841093,-0.1799496;0.09581038;0.007622541,-0.235793;-0.1784166;-0.001381234,0.0687523;0.004159639;-0.04069174,0.09356913;-0.3706657;0.01666744,0.1024948;-0.7103419;0.1005748,0.1098595;-0.7618471;0.04310608,-0.07422135;0.001660492;-0.02980659,-0.08779594;-0.3745471;0.02199698,-0.09531234;-0.7154071;0.1011042,-0.1023545;-0.7037944;0.003061809,0.01379445;0.3996137;0.008618189,36.32781
+0;0;0,0.001464295;0.1995063;0.01396725,0.004531837;0.4993482;0.02121934,0.1172898;0.3741477;-0.00640318,0.1894727;0.1061661;0.0306847,0.2432558;-0.1685867;0.02640859,-0.1069322;0.3596386;-0.004271453,-0.1848934;0.09123522;0.01251162,-0.2363032;-0.183946;0.00682682,0.07144594;0.006676125;-0.03536815,0.08517171;-0.3718306;-0.004639937,0.08582267;-0.7155616;0.06130365,0.09763361;-0.7619108;-0.002188958,-0.0692943;0.001029717;-0.03996548,-0.09790576;-0.3766265;-0.009027911,-0.1158418;-0.7206833;0.05264264,-0.09927446;-0.7647765;-0.01243975,0.00333331;0.3993558;0.02149801,0;0;0,0.006692881;0.1997462;0.007527495,0.01785648;0.4994698;0.004691036,0.1236222;0.3728623;-0.03249462,0.2066004;0.106031;-0.05026129,0.2554916;-0.1507478;-0.1506321,-0.09983655;0.3641469;-0.005190155,-0.1801557;0.09625587;0.008345544,-0.237233;-0.1777718;0.001203966,0.06872009;0.004145992;-0.04074751,0.0934099;-0.3706094;0.01712136,0.1023695;-0.7103355;0.1008228,0.1101633;-0.7616069;0.0430801,-0.07425137;0.001718959;-0.02972842,-0.08746339;-0.374597;0.02137676,-0.09523369;-0.7153763;0.1008067,-0.1024818;-0.7037732;0.002781108,0.01400157;0.3996109;0.008344517,36.33909
+0;0;0,0.001464295;0.1995063;0.01396725,0.004531837;0.4993482;0.02121934,0.1172898;0.3741477;-0.00640318,0.1894727;0.1061661;0.0306847,0.2432558;-0.1685867;0.02640859,-0.1069322;0.3596386;-0.004271453,-0.1848934;0.09123522;0.01251162,-0.2363032;-0.183946;0.00682682,0.07144594;0.006676125;-0.03536815,0.08517171;-0.3718306;-0.004639937,0.08582267;-0.7155616;0.06130365,0.09763361;-0.7619108;-0.002188958,-0.0692943;0.001029717;-0.03996548,-0.09790576;-0.3766265;-0.009027911,-0.1158418;-0.7206833;0.05264264,-0.09927446;-0.7647765;-0.01243975,0.00333331;0.3993558;0.02149801,0;0;0,0.006692881;0.1997462;0.007527495,0.01785648;0.4994698;0.004691036,0.1236222;0.3728623;-0.03249462,0.2066004;0.106031;-0.05026129,0.2554916;-0.1507478;-0.1506321,-0.09983655;0.3641469;-0.005190155,-0.1801557;0.09625587;0.008345544,-0.237233;-0.1777718;0.001203966,0.06872009;0.004145992;-0.04074751,0.0934099;-0.3706094;0.01712136,0.1023695;-0.7103355;0.1008228,0.1101633;-0.7616069;0.0430801,-0.07425137;0.001718959;-0.02972842,-0.08746339;-0.374597;0.02137676,-0.09523369;-0.7153763;0.1008067,-0.1024818;-0.7037732;0.002781108,0.01400157;0.3996109;0.008344517,36.36124
+0;0;0,0.001464295;0.1995063;0.01396725,0.004531837;0.4993482;0.02121934,0.1172898;0.3741477;-0.00640318,0.1894727;0.1061661;0.0306847,0.2432558;-0.1685867;0.02640859,-0.1069322;0.3596386;-0.004271453,-0.1848934;0.09123522;0.01251162,-0.2363032;-0.183946;0.00682682,0.07144594;0.006676125;-0.03536815,0.08517171;-0.3718306;-0.004639937,0.08582267;-0.7155616;0.06130365,0.09763361;-0.7619108;-0.002188958,-0.0692943;0.001029717;-0.03996548,-0.09790576;-0.3766265;-0.009027911,-0.1158418;-0.7206833;0.05264264,-0.09927446;-0.7647765;-0.01243975,0.00333331;0.3993558;0.02149801,0;0;0,0.00658329;0.1997459;0.007630312,0.01718904;0.4994984;0.005443811,0.1243499;0.3727621;-0.02870507,0.206559;0.1071069;-0.06140016,0.2525848;-0.1475905;-0.1682218,-0.1004261;0.36383;-0.002301332,-0.1789763;0.09533727;0.009595082,-0.2374054;-0.1784124;0.002729425,0.06858523;0.00429503;-0.04095875,0.09322193;-0.3704532;0.01697916,0.1021525;-0.7101167;0.1009372,0.1099536;-0.7611849;0.04291051,-0.07431541;0.001679536;-0.02957024,-0.08749423;-0.3746189;0.02167234,-0.0952061;-0.7154313;0.1009657,-0.1021176;-0.7038089;0.002912194,0.01357257;0.3996203;0.008805186,36.37276
+0;0;0,0.001385865;0.1995187;0.01379735,0.004311648;0.4993684;0.02077984,0.1170248;0.3740647;-0.00704346,0.1892451;0.1062289;0.03101178,0.2433399;-0.1684823;0.02826713,-0.1069316;0.3591166;-0.004511079,-0.185045;0.09107727;0.01677762,-0.2338259;-0.1846303;0.01437674,0.0713036;0.006638643;-0.03566126,0.08480231;-0.3718479;-0.004585516,0.08592974;-0.715459;0.06197405,0.09764618;-0.7621038;-0.001178976,-0.0694375;0.001070382;-0.03971507,-0.09805676;-0.3766256;-0.009273566,-0.1156872;-0.7205501;0.05321776,-0.09892832;-0.7645301;-0.01194429,0.003162807;0.3993756;0.02114867,0;0;0,0.006527069;0.1997444;0.007718013,0.01686688;0.49951;0.005919524,0.1231491;0.3721666;-0.03078542,0.2068276;0.1074536;-0.06718427,0.2485223;-0.1435706;-0.1840107,-0.1007086;0.3636492;-0.0006038276,-0.1795434;0.09523705;0.0112271,-0.2377199;-0.1785445;0.003533606,0.06842704;0.004305724;-0.04122137,0.09307417;-0.3703841;0.01708862,0.1020178;-0.7101237;0.1007369,0.1099973;-0.7608386;0.04224389,-0.07438648;0.001746247;-0.02938711,-0.08770196;-0.3745455;0.02186914,-0.09539638;-0.7153966;0.1009973,-0.1035406;-0.7037673;0.003037132,0.01335889;0.3996228;0.009117926,36.3951
+0;0;0,0.001385865;0.1995187;0.01379735,0.004311648;0.4993684;0.02077984,0.1170248;0.3740647;-0.00704346,0.1892451;0.1062289;0.03101178,0.2433399;-0.1684823;0.02826713,-0.1069316;0.3591166;-0.004511079,-0.185045;0.09107727;0.01677762,-0.2338259;-0.1846303;0.01437674,0.0713036;0.006638643;-0.03566126,0.08480231;-0.3718479;-0.004585516,0.08592974;-0.715459;0.06197405,0.09764618;-0.7621038;-0.001178976,-0.0694375;0.001070382;-0.03971507,-0.09805676;-0.3766256;-0.009273566,-0.1156872;-0.7205501;0.05321776,-0.09892832;-0.7645301;-0.01194429,0.003162807;0.3993756;0.02114867,0;0;0,0.006527069;0.1997444;0.007718013,0.01686688;0.49951;0.005919524,0.1231491;0.3721666;-0.03078542,0.2068276;0.1074536;-0.06718427,0.2485223;-0.1435706;-0.1840107,-0.1007086;0.3636492;-0.0006038276,-0.1795434;0.09523705;0.0112271,-0.2377199;-0.1785445;0.003533606,0.06842704;0.004305724;-0.04122137,0.09307417;-0.3703841;0.01708862,0.1020178;-0.7101237;0.1007369,0.1099973;-0.7608386;0.04224389,-0.07438648;0.001746247;-0.02938711,-0.08770196;-0.3745455;0.02186914,-0.09539638;-0.7153966;0.1009973,-0.1035406;-0.7037673;0.003037132,0.01335889;0.3996228;0.009117926,36.41711
+0;0;0,0.001385865;0.1995187;0.01379735,0.004311648;0.4993684;0.02077984,0.1170248;0.3740647;-0.00704346,0.1892451;0.1062289;0.03101178,0.2433399;-0.1684823;0.02826713,-0.1069316;0.3591166;-0.004511079,-0.185045;0.09107727;0.01677762,-0.2338259;-0.1846303;0.01437674,0.0713036;0.006638643;-0.03566126,0.08480231;-0.3718479;-0.004585516,0.08592974;-0.715459;0.06197405,0.09764618;-0.7621038;-0.001178976,-0.0694375;0.001070382;-0.03971507,-0.09805676;-0.3766256;-0.009273566,-0.1156872;-0.7205501;0.05321776,-0.09892832;-0.7645301;-0.01194429,0.003162807;0.3993756;0.02114867,0;0;0,0.006759735;0.1997398;0.007637655,0.01795883;0.4994721;0.005599406,0.1231556;0.3713374;-0.03242709,0.2070308;0.107632;-0.07514006,0.2460522;-0.1374488;-0.2048039,-0.1001644;0.3643741;-0.001250886,-0.1796202;0.09617659;0.0112736,-0.2389756;-0.1774;0.005549113,0.06818113;0.004280822;-0.04162939,0.0928411;-0.3703102;0.01730657,0.1018173;-0.7101021;0.1007384,0.1100232;-0.76063;0.04201936,-0.07447061;0.001774015;-0.02917157,-0.08759555;-0.3746149;0.02141619,-0.09548699;-0.715463;0.1005384,-0.1039417;-0.7038348;0.002604716,0.01409875;0.3996011;0.008898017,36.43978
+0;0;0,0.001076618;0.1995373;0.01355332,0.003279267;0.4994037;0.02005883,0.1162667;0.3738773;-0.007387359,0.1891165;0.1062832;0.03116502,0.2431096;-0.1684591;0.02995538,-0.1078523;0.3591582;-0.004379105,-0.1857199;0.09128401;0.019705,-0.2324952;-0.1847737;0.0217551,0.07117548;0.006686058;-0.03590749,0.08426985;-0.3717961;-0.004606385,0.08581208;-0.7152606;0.06269725,0.09813527;-0.7606719;-0.001810826,-0.06959473;0.001046642;-0.03943955,-0.09813645;-0.3766524;-0.008962791,-0.1156834;-0.720531;0.05380318,-0.0991204;-0.7645543;-0.01135993,0.002402501;0.3994089;0.020596,0;0;0,0.006759735;0.1997398;0.007637655,0.01795883;0.4994721;0.005599406,0.1231556;0.3713374;-0.03242709,0.2070308;0.107632;-0.07514006,0.2460522;-0.1374488;-0.2048039,-0.1001644;0.3643741;-0.001250886,-0.1796202;0.09617659;0.0112736,-0.2389756;-0.1774;0.005549113,0.06818113;0.004280822;-0.04162939,0.0928411;-0.3703102;0.01730657,0.1018173;-0.7101021;0.1007384,0.1100232;-0.76063;0.04201936,-0.07447061;0.001774015;-0.02917157,-0.08759555;-0.3746149;0.02141619,-0.09548699;-0.715463;0.1005384,-0.1039417;-0.7038348;0.002604716,0.01409875;0.3996011;0.008898017,36.45084
+0;0;0,0.001076618;0.1995373;0.01355332,0.003279267;0.4994037;0.02005883,0.1162667;0.3738773;-0.007387359,0.1891165;0.1062832;0.03116502,0.2431096;-0.1684591;0.02995538,-0.1078523;0.3591582;-0.004379105,-0.1857199;0.09128401;0.019705,-0.2324952;-0.1847737;0.0217551,0.07117548;0.006686058;-0.03590749,0.08426985;-0.3717961;-0.004606385,0.08581208;-0.7152606;0.06269725,0.09813527;-0.7606719;-0.001810826,-0.06959473;0.001046642;-0.03943955,-0.09813645;-0.3766524;-0.008962791,-0.1156834;-0.720531;0.05380318,-0.0991204;-0.7645543;-0.01135993,0.002402501;0.3994089;0.020596,0;0;0,0.006980716;0.1997344;0.007578055,0.01885802;0.4994382;0.005321001,0.1233895;0.3710627;-0.03347999,0.2066265;0.1083191;-0.08285028,0.2433071;-0.1312414;-0.2230833,-0.0997683;0.3651583;-0.001520744,-0.1789064;0.0969066;0.0118287,-0.2401474;-0.1762678;0.006798755,0.06811167;0.00424499;-0.04174663,0.0927911;-0.3703229;0.01732834,0.1018044;-0.7100621;0.1009706,0.1100529;-0.7604416;0.04205449,-0.07455954;0.001957712;-0.02893168,-0.08769178;-0.3744727;0.02134461,-0.09543152;-0.7153345;0.1004222,-0.1041171;-0.7037071;0.002508961,0.01473209;0.399581;0.008713331,36.47312
+0;0;0,0.001076618;0.1995373;0.01355332,0.003279267;0.4994037;0.02005883,0.1162667;0.3738773;-0.007387359,0.1891165;0.1062832;0.03116502,0.2431096;-0.1684591;0.02995538,-0.1078523;0.3591582;-0.004379105,-0.1857199;0.09128401;0.019705,-0.2324952;-0.1847737;0.0217551,0.07117548;0.006686058;-0.03590749,0.08426985;-0.3717961;-0.004606385,0.08581208;-0.7152606;0.06269725,0.09813527;-0.7606719;-0.001810826,-0.06959473;0.001046642;-0.03943955,-0.09813645;-0.3766524;-0.008962791,-0.1156834;-0.720531;0.05380318,-0.0991204;-0.7645543;-0.01135993,0.002402501;0.3994089;0.020596,0;0;0,0.006894086;0.1997334;0.007684681,0.01822576;0.4994644;0.005982423,0.1222532;0.3705261;-0.0345799,0.2047361;0.1084421;-0.08851094,0.2360903;-0.12504;-0.2398484,-0.1001009;0.3645659;0.0004069461,-0.1779428;0.09584871;0.01188347,-0.2396445;-0.1772366;0.007722256,0.06774402;0.004372737;-0.0423276,0.09258982;-0.3700663;0.01748928,0.1015296;-0.7097963;0.1011771,0.1104873;-0.7596823;0.0416961,-0.07467799;0.001966494;-0.02862395,-0.0879118;-0.374494;0.02139992,-0.09562682;-0.7153503;0.1005038,-0.1053101;-0.7037141;0.00268247,0.01434232;0.3995894;0.009130079,36.49527
+0;0;0,0.001180812;0.1995383;0.01353118,0.003581735;0.4994022;0.02008406,0.1164488;0.3736162;-0.007350182,0.18934;0.1060547;0.03135032,0.2430352;-0.1687485;0.03153057,-0.107696;0.3590737;-0.003899686,-0.1855393;0.09142372;0.02263115,-0.2310593;-0.1848008;0.02791585,0.0711773;0.006763013;-0.03588947,0.08398195;-0.3716947;-0.004174929,0.08612242;-0.7150564;0.06363453,0.09822838;-0.7602219;-0.001200646,-0.06964785;0.0009532179;-0.03934804,-0.09773143;-0.3767543;-0.00855211,-0.115343;-0.7205617;0.05458464,-0.09856874;-0.7646126;-0.01049303,0.00263498;0.399408;0.02059963,0;0;0,0.006894086;0.1997334;0.007684681,0.01822576;0.4994644;0.005982423,0.1222532;0.3705261;-0.0345799,0.2047361;0.1084421;-0.08851094,0.2360903;-0.12504;-0.2398484,-0.1001009;0.3645659;0.0004069461,-0.1779428;0.09584871;0.01188347,-0.2396445;-0.1772366;0.007722256,0.06774402;0.004372737;-0.0423276,0.09258982;-0.3700663;0.01748928,0.1015296;-0.7097963;0.1011771,0.1104873;-0.7596823;0.0416961,-0.07467799;0.001966494;-0.02862395,-0.0879118;-0.374494;0.02139992,-0.09562682;-0.7153503;0.1005038,-0.1053101;-0.7037141;0.00268247,0.01434232;0.3995894;0.009130079,36.50682
+0;0;0,0.001180812;0.1995383;0.01353118,0.003581735;0.4994022;0.02008406,0.1164488;0.3736162;-0.007350182,0.18934;0.1060547;0.03135032,0.2430352;-0.1687485;0.03153057,-0.107696;0.3590737;-0.003899686,-0.1855393;0.09142372;0.02263115,-0.2310593;-0.1848008;0.02791585,0.0711773;0.006763013;-0.03588947,0.08398195;-0.3716947;-0.004174929,0.08612242;-0.7150564;0.06363453,0.09822838;-0.7602219;-0.001200646,-0.06964785;0.0009532179;-0.03934804,-0.09773143;-0.3767543;-0.00855211,-0.115343;-0.7205617;0.05458464,-0.09856874;-0.7646126;-0.01049303,0.00263498;0.399408;0.02059963,0;0;0,0.006894086;0.1997334;0.007684681,0.01822576;0.4994644;0.005982423,0.1222532;0.3705261;-0.0345799,0.2047361;0.1084421;-0.08851094,0.2360903;-0.12504;-0.2398484,-0.1001009;0.3645659;0.0004069461,-0.1779428;0.09584871;0.01188347,-0.2396445;-0.1772366;0.007722256,0.06774402;0.004372737;-0.0423276,0.09258982;-0.3700663;0.01748928,0.1015296;-0.7097963;0.1011771,0.1104873;-0.7596823;0.0416961,-0.07467799;0.001966494;-0.02862395,-0.0879118;-0.374494;0.02139992,-0.09562682;-0.7153503;0.1005038,-0.1053101;-0.7037141;0.00268247,0.01434232;0.3995894;0.009130079,36.51814
+0;0;0,0.001180812;0.1995383;0.01353118,0.003581735;0.4994022;0.02008406,0.1164488;0.3736162;-0.007350182,0.18934;0.1060547;0.03135032,0.2430352;-0.1687485;0.03153057,-0.107696;0.3590737;-0.003899686,-0.1855393;0.09142372;0.02263115,-0.2310593;-0.1848008;0.02791585,0.0711773;0.006763013;-0.03588947,0.08398195;-0.3716947;-0.004174929,0.08612242;-0.7150564;0.06363453,0.09822838;-0.7602219;-0.001200646,-0.06964785;0.0009532179;-0.03934804,-0.09773143;-0.3767543;-0.00855211,-0.115343;-0.7205617;0.05458464,-0.09856874;-0.7646126;-0.01049303,0.00263498;0.399408;0.02059963,0;0;0,0.007073886;0.1997293;0.007627396,0.01914327;0.4994282;0.005635613,0.1225635;0.3704059;-0.0354737,0.2045232;0.1095808;-0.09591265,0.2335216;-0.1173318;-0.2573741,-0.09963727;0.3647012;0.001680126,-0.1768699;0.0958418;0.01391649,-0.2386526;-0.1772045;0.008562865,0.06756859;0.004493444;-0.04259453,0.09255774;-0.3698913;0.0175023,0.1016556;-0.7095656;0.1013987,0.1100175;-0.7597836;0.0422788,-0.07480563;0.002000133;-0.02828634,-0.08779432;-0.3745191;0.02135773,-0.09568469;-0.7154255;0.1002285,-0.1059597;-0.7037884;0.002467394,0.01495703;0.3995697;0.008914487,36.54014
+0;0;0,0.0010959;0.1995285;0.0136821,0.00342394;0.4993878;0.02046666,0.1161702;0.3734166;-0.007442761,0.1892503;0.1058915;0.03115304,0.2428582;-0.1689249;0.03262113,-0.1077703;0.3589105;-0.003635366,-0.1854341;0.09138718;0.02464174,-0.2297462;-0.1849862;0.0320026,0.0709257;0.006805937;-0.03637616,0.08404176;-0.3715584;-0.003689542,0.08622446;-0.7148356;0.06454499,0.08432262;-0.7023299;-0.03389452,-0.06984624;0.0009275272;-0.03899542,-0.09861681;-0.3768515;-0.009751447,-0.1154293;-0.7203925;0.05503249,-0.09854958;-0.7645291;-0.009920105,0.002497085;0.3993931;0.02090569,0;0;0,0.006988243;0.1997273;0.007757238,0.01867746;0.4994441;0.006114437,0.1220051;0.3701907;-0.03557631,0.2035137;0.110652;-0.1018786,0.2297034;-0.1086629;-0.2739689,-0.09974587;0.3639482;0.002534511,-0.1764651;0.09491709;0.01421485,-0.2378875;-0.1782306;0.01001292,0.06719948;0.004495807;-0.04317428,0.09328488;-0.3696079;0.01819302,0.1020115;-0.7093787;0.1017372,0.1105874;-0.7595068;0.0425261,-0.07512084;0.002185096;-0.02742415,-0.08808751;-0.3743444;0.02214809,-0.09561989;-0.7153523;0.1006136,-0.1062746;-0.7037072;0.002891637,0.01464582;0.399575;0.009262783,36.5622
+0;0;0,0.0010959;0.1995285;0.0136821,0.00342394;0.4993878;0.02046666,0.1161702;0.3734166;-0.007442761,0.1892503;0.1058915;0.03115304,0.2428582;-0.1689249;0.03262113,-0.1077703;0.3589105;-0.003635366,-0.1854341;0.09138718;0.02464174,-0.2297462;-0.1849862;0.0320026,0.0709257;0.006805937;-0.03637616,0.08404176;-0.3715584;-0.003689542,0.08622446;-0.7148356;0.06454499,0.08432262;-0.7023299;-0.03389452,-0.06984624;0.0009275272;-0.03899542,-0.09861681;-0.3768515;-0.009751447,-0.1154293;-0.7203925;0.05503249,-0.09854958;-0.7645291;-0.009920105,0.002497085;0.3993931;0.02090569,0;0;0,0.006988243;0.1997273;0.007757238,0.01867746;0.4994441;0.006114437,0.1220051;0.3701907;-0.03557631,0.2035137;0.110652;-0.1018786,0.2297034;-0.1086629;-0.2739689,-0.09974587;0.3639482;0.002534511,-0.1764651;0.09491709;0.01421485,-0.2378875;-0.1782306;0.01001292,0.06719948;0.004495807;-0.04317428,0.09328488;-0.3696079;0.01819302,0.1020115;-0.7093787;0.1017372,0.1105874;-0.7595068;0.0425261,-0.07512084;0.002185096;-0.02742415,-0.08808751;-0.3743444;0.02214809,-0.09561989;-0.7153523;0.1006136,-0.1062746;-0.7037072;0.002891637,0.01464582;0.399575;0.009262783,36.57359
+0;0;0,0.0010959;0.1995285;0.0136821,0.00342394;0.4993878;0.02046666,0.1161702;0.3734166;-0.007442761,0.1892503;0.1058915;0.03115304,0.2428582;-0.1689249;0.03262113,-0.1077703;0.3589105;-0.003635366,-0.1854341;0.09138718;0.02464174,-0.2297462;-0.1849862;0.0320026,0.0709257;0.006805937;-0.03637616,0.08404176;-0.3715584;-0.003689542,0.08622446;-0.7148356;0.06454499,0.08432262;-0.7023299;-0.03389452,-0.06984624;0.0009275272;-0.03899542,-0.09861681;-0.3768515;-0.009751447,-0.1154293;-0.7203925;0.05503249,-0.09854958;-0.7645291;-0.009920105,0.002497085;0.3993931;0.02090569,0;0;0,0.006988243;0.1997273;0.007757238,0.01867746;0.4994441;0.006114437,0.1220051;0.3701907;-0.03557631,0.2035137;0.110652;-0.1018786,0.2297034;-0.1086629;-0.2739689,-0.09974587;0.3639482;0.002534511,-0.1764651;0.09491709;0.01421485,-0.2378875;-0.1782306;0.01001292,0.06719948;0.004495807;-0.04317428,0.09328488;-0.3696079;0.01819302,0.1020115;-0.7093787;0.1017372,0.1105874;-0.7595068;0.0425261,-0.07512084;0.002185096;-0.02742415,-0.08808751;-0.3743444;0.02214809,-0.09561989;-0.7153523;0.1006136,-0.1062746;-0.7037072;0.002891637,0.01464582;0.399575;0.009262783,36.58501
+0;0;0,0.001245473;0.1995056;0.01399922,0.003817315;0.4993525;0.0212158,0.116418;0.3737558;-0.007421967,0.189117;0.1061446;0.03129601,0.2433606;-0.1685386;0.03389979,-0.1077659;0.3596068;-0.002831478,-0.1847604;0.09201279;0.02658425,-0.227971;-0.184465;0.03622336,0.07095681;0.007102408;-0.03625862,0.08505866;-0.3711532;-0.00273503,0.08733697;-0.7143815;0.06574209,0.08521192;-0.7018498;-0.03269745,-0.06983485;0.000586668;-0.03902242,-0.09733449;-0.3772404;-0.009181065,-0.1144948;-0.7206575;0.05616605,-0.09752378;-0.7650409;-0.008479834,0.002809344;0.399358;0.02151934,0;0;0,0.006890113;0.1997269;0.007854145,0.01802875;0.4994678;0.006622664,0.1213642;0.3701085;-0.03572131,0.2018203;0.1121117;-0.108964,0.2262284;-0.102359;-0.2873079,-0.1001048;0.3637123;0.003314735,-0.1763666;0.09453496;0.01461494,-0.2376167;-0.1786676;0.0116507,0.06710508;0.004533696;-0.0433169,0.09312322;-0.3695437;0.01823896,0.1018828;-0.7093059;0.101815,0.1104153;-0.7597608;0.04304253,-0.07523865;0.002252008;-0.02709378,-0.08831821;-0.3742766;0.02245538,-0.09588437;-0.715322;0.100755,-0.1068842;-0.7036712;0.003070213,0.01423515;0.3995843;0.009605787,36.60712
+0;0;0,0.001245473;0.1995056;0.01399922,0.003817315;0.4993525;0.0212158,0.116418;0.3737558;-0.007421967,0.189117;0.1061446;0.03129601,0.2433606;-0.1685386;0.03389979,-0.1077659;0.3596068;-0.002831478,-0.1847604;0.09201279;0.02658425,-0.227971;-0.184465;0.03622336,0.07095681;0.007102408;-0.03625862,0.08505866;-0.3711532;-0.00273503,0.08733697;-0.7143815;0.06574209,0.08521192;-0.7018498;-0.03269745,-0.06983485;0.000586668;-0.03902242,-0.09733449;-0.3772404;-0.009181065,-0.1144948;-0.7206575;0.05616605,-0.09752378;-0.7650409;-0.008479834,0.002809344;0.399358;0.02151934,0;0;0,0.006890113;0.1997269;0.007854145,0.01802875;0.4994678;0.006622664,0.1213642;0.3701085;-0.03572131,0.2018203;0.1121117;-0.108964,0.2262284;-0.102359;-0.2873079,-0.1001048;0.3637123;0.003314735,-0.1763666;0.09453496;0.01461494,-0.2376167;-0.1786676;0.0116507,0.06710508;0.004533696;-0.0433169,0.09312322;-0.3695437;0.01823896,0.1018828;-0.7093059;0.101815,0.1104153;-0.7597608;0.04304253,-0.07523865;0.002252008;-0.02709378,-0.08831821;-0.3742766;0.02245538,-0.09588437;-0.715322;0.100755,-0.1068842;-0.7036712;0.003070213,0.01423515;0.3995843;0.009605787,36.61837
+0;0;0,0.001245473;0.1995056;0.01399922,0.003817315;0.4993525;0.0212158,0.116418;0.3737558;-0.007421967,0.189117;0.1061446;0.03129601,0.2433606;-0.1685386;0.03389979,-0.1077659;0.3596068;-0.002831478,-0.1847604;0.09201279;0.02658425,-0.227971;-0.184465;0.03622336,0.07095681;0.007102408;-0.03625862,0.08505866;-0.3711532;-0.00273503,0.08733697;-0.7143815;0.06574209,0.08521192;-0.7018498;-0.03269745,-0.06983485;0.000586668;-0.03902242,-0.09733449;-0.3772404;-0.009181065,-0.1144948;-0.7206575;0.05616605,-0.09752378;-0.7650409;-0.008479834,0.002809344;0.399358;0.02151934,0;0;0,0.006818314;0.1997266;0.007923836,0.01770647;0.4994777;0.006903623,0.1209044;0.3699206;-0.03594167,0.2003971;0.1135855;-0.1157743,0.2234958;-0.08769467;-0.3090429,-0.100236;0.3633467;0.00392769,-0.1759398;0.09401044;0.01519465,-0.2374022;-0.1791466;0.0124404,0.06683028;0.004692374;-0.04372292,0.09303199;-0.3693458;0.01799308,0.1016956;-0.7090319;0.1018877,0.1103138;-0.7597722;0.04352051,-0.07534802;0.002232378;-0.02678978,-0.08850715;-0.374332;0.02246579,-0.09610738;-0.7153823;0.1007404,-0.107404;-0.7037277;0.003088839,0.01400907;0.3995884;0.009809803,36.64066
+0;0;0,0.001372994;0.1995016;0.01404446,0.004136571;0.4993436;0.02139886,0.1166395;0.373625;-0.007318735,0.1892731;0.105902;0.03074392,0.2433933;-0.1687974;0.03409473,-0.1074604;0.3595073;-0.002774481,-0.1852209;0.09232786;0.02834547,-0.2269741;-0.1842784;0.04041297,0.07088812;0.007122129;-0.03638887,0.08547337;-0.3710714;-0.002374981,0.08783333;-0.7142298;0.06644878,0.08574163;-0.7016931;-0.03199237,-0.06990066;0.0005665291;-0.03890472,-0.09699333;-0.3772821;-0.008965444,-0.1141415;-0.7206284;0.05675558,-0.09770239;-0.7654088;-0.007569078,0.003065642;0.3993497;0.02165065,0;0;0,0.006818314;0.1997266;0.007923836,0.01770647;0.4994777;0.006903623,0.1209044;0.3699206;-0.03594167,0.2003971;0.1135855;-0.1157743,0.2234958;-0.08769467;-0.3090429,-0.100236;0.3633467;0.00392769,-0.1759398;0.09401044;0.01519465,-0.2374022;-0.1791466;0.0124404,0.06683028;0.004692374;-0.04372292,0.09303199;-0.3693458;0.01799308,0.1016956;-0.7090319;0.1018877,0.1103138;-0.7597722;0.04352051,-0.07534802;0.002232378;-0.02678978,-0.08850715;-0.374332;0.02246579,-0.09610738;-0.7153823;0.1007404,-0.107404;-0.7037277;0.003088839,0.01400907;0.3995884;0.009809803,36.65221
+0;0;0,0.001372994;0.1995016;0.01404446,0.004136571;0.4993436;0.02139886,0.1166395;0.373625;-0.007318735,0.1892731;0.105902;0.03074392,0.2433933;-0.1687974;0.03409473,-0.1074604;0.3595073;-0.002774481,-0.1852209;0.09232786;0.02834547,-0.2269741;-0.1842784;0.04041297,0.07088812;0.007122129;-0.03638887,0.08547337;-0.3710714;-0.002374981,0.08783333;-0.7142298;0.06644878,0.08574163;-0.7016931;-0.03199237,-0.06990066;0.0005665291;-0.03890472,-0.09699333;-0.3772821;-0.008965444,-0.1141415;-0.7206284;0.05675558,-0.09770239;-0.7654088;-0.007569078,0.003065642;0.3993497;0.02165065,0;0;0,0.007058382;0.1997228;0.007808107,0.01903311;0.4994251;0.005997576,0.1217217;0.3697644;-0.03647918,0.2001214;0.1158498;-0.1246883,0.2219105;-0.07718664;-0.326337,-0.09945684;0.3634111;0.004222286,-0.1710183;0.09286916;0.0134985,-0.2370881;-0.1792215;0.01470219,0.06659225;0.004695034;-0.04408433,0.09311135;-0.369256;0.01802322,0.1018537;-0.7089313;0.1019533,0.1098418;-0.7594806;0.04323355,-0.07545114;0.002253618;-0.02649616,-0.0885711;-0.3743038;0.02282307,-0.09612194;-0.7153918;0.1009382,-0.1075843;-0.7037567;0.003309548,0.01485641;0.3995655;0.009255955,36.67408
+0;0;0,0.001372994;0.1995016;0.01404446,0.004136571;0.4993436;0.02139886,0.1166395;0.373625;-0.007318735,0.1892731;0.105902;0.03074392,0.2433933;-0.1687974;0.03409473,-0.1074604;0.3595073;-0.002774481,-0.1852209;0.09232786;0.02834547,-0.2269741;-0.1842784;0.04041297,0.07088812;0.007122129;-0.03638887,0.08547337;-0.3710714;-0.002374981,0.08783333;-0.7142298;0.06644878,0.08574163;-0.7016931;-0.03199237,-0.06990066;0.0005665291;-0.03890472,-0.09699333;-0.3772821;-0.008965444,-0.1141415;-0.7206284;0.05675558,-0.09770239;-0.7654088;-0.007569078,0.003065642;0.3993497;0.02165065,0;0;0,0.006966515;0.1997214;0.007925919,0.01849977;0.499445;0.006541838,0.1212123;0.3697745;-0.03651896,0.1980676;0.1172247;-0.1298565,0.2186342;-0.06540042;-0.341103,-0.0996676;0.3629904;0.004808897,-0.1772107;0.09429067;0.01850329,-0.2373099;-0.1791712;0.01591749,0.06648576;0.004764541;-0.04423734,0.09319898;-0.3691537;0.0179844,0.1019416;-0.7088263;0.1019255,0.1100566;-0.7600001;0.04408983,-0.07551628;0.002193767;-0.02631498,-0.088593;-0.3743906;0.02280934,-0.09602767;-0.7154646;0.1009965,-0.107757;-0.7038193;0.003397688,0.01451943;0.3995716;0.00961946,36.69624
+0;0;0,0.001282445;0.1994967;0.01412158,0.003953733;0.4993357;0.02164246,0.1164652;0.3737928;-0.00735333,0.1896073;0.1059581;0.02890654,0.2425676;-0.1689378;0.03414464,-0.1075691;0.3593519;-0.002577072,-0.1853563;0.09229413;0.0295051,-0.2269772;-0.1842875;0.04255461,0.07082386;0.00704897;-0.03652798,0.08565903;-0.3710797;-0.001906939,0.08768025;-0.7141227;0.06750109,0.1002619;-0.7613553;0.00523692,-0.06994691;0.0006244212;-0.03882061,-0.09749089;-0.3772134;-0.009157073,-0.1139418;-0.7204399;0.05736265,-0.09740104;-0.7652398;-0.006913234,0.002907163;0.3993414;0.02183298,0;0;0,0.006966515;0.1997214;0.007925919,0.01849977;0.499445;0.006541838,0.1212123;0.3697745;-0.03651896,0.1980676;0.1172247;-0.1298565,0.2186342;-0.06540042;-0.341103,-0.0996676;0.3629904;0.004808897,-0.1772107;0.09429067;0.01850329,-0.2373099;-0.1791712;0.01591749,0.06648576;0.004764541;-0.04423734,0.09319898;-0.3691537;0.0179844,0.1019416;-0.7088263;0.1019255,0.1100566;-0.7600001;0.04408983,-0.07551628;0.002193767;-0.02631498,-0.088593;-0.3743906;0.02280934,-0.09602767;-0.7154646;0.1009965,-0.107757;-0.7038193;0.003397688,0.01451943;0.3995716;0.00961946,36.70781
+0;0;0,0.001282445;0.1994967;0.01412158,0.003953733;0.4993357;0.02164246,0.1164652;0.3737928;-0.00735333,0.1896073;0.1059581;0.02890654,0.2425676;-0.1689378;0.03414464,-0.1075691;0.3593519;-0.002577072,-0.1853563;0.09229413;0.0295051,-0.2269772;-0.1842875;0.04255461,0.07082386;0.00704897;-0.03652798,0.08565903;-0.3710797;-0.001906939,0.08768025;-0.7141227;0.06750109,0.1002619;-0.7613553;0.00523692,-0.06994691;0.0006244212;-0.03882061,-0.09749089;-0.3772134;-0.009157073,-0.1139418;-0.7204399;0.05736265,-0.09740104;-0.7652398;-0.006913234,0.002907163;0.3993414;0.02183298,0;0;0,0.006966515;0.1997214;0.007925919,0.01849977;0.499445;0.006541838,0.1212123;0.3697745;-0.03651896,0.1980676;0.1172247;-0.1298565,0.2186342;-0.06540042;-0.341103,-0.0996676;0.3629904;0.004808897,-0.1772107;0.09429067;0.01850329,-0.2373099;-0.1791712;0.01591749,0.06648576;0.004764541;-0.04423734,0.09319898;-0.3691537;0.0179844,0.1019416;-0.7088263;0.1019255,0.1100566;-0.7600001;0.04408983,-0.07551628;0.002193767;-0.02631498,-0.088593;-0.3743906;0.02280934,-0.09602767;-0.7154646;0.1009965,-0.107757;-0.7038193;0.003397688,0.01451943;0.3995716;0.00961946,36.71909
+0;0;0,0.001282445;0.1994967;0.01412158,0.003953733;0.4993357;0.02164246,0.1164652;0.3737928;-0.00735333,0.1896073;0.1059581;0.02890654,0.2425676;-0.1689378;0.03414464,-0.1075691;0.3593519;-0.002577072,-0.1853563;0.09229413;0.0295051,-0.2269772;-0.1842875;0.04255461,0.07082386;0.00704897;-0.03652798,0.08565903;-0.3710797;-0.001906939,0.08768025;-0.7141227;0.06750109,0.1002619;-0.7613553;0.00523692,-0.06994691;0.0006244212;-0.03882061,-0.09749089;-0.3772134;-0.009157073,-0.1139418;-0.7204399;0.05736265,-0.09740104;-0.7652398;-0.006913234,0.002907163;0.3993414;0.02183298,0;0;0,0.007244661;0.1997095;0.007976949,0.01945955;0.4994057;0.006582089,0.1216898;0.3695414;-0.03681923,0.1976201;0.1187167;-0.1354171,0.2155521;-0.05016297;-0.3580336,-0.09899574;0.3629428;0.005389179,-0.1772917;0.09448087;0.01945831,-0.2360513;-0.1792746;0.01716289,0.06637767;0.004752572;-0.04440065,0.09318459;-0.3691014;0.01816581,0.1019095;-0.708721;0.1023226,0.1099978;-0.7595532;0.04400662,-0.07560594;0.002061147;-0.0260671,-0.08869478;-0.3745068;0.02317931,-0.09601485;-0.7156117;0.1012426,-0.1079623;-0.703958;0.003668636,0.01520608;0.3995438;0.009668067,36.74114
+0;0;0,0.001218779;0.1994969;0.01412499,0.003822764;0.4993353;0.02170206,0.1162365;0.3739237;-0.007875608,0.189124;0.105801;0.0267309,0.2410638;-0.1692749;0.03269319,-0.1075781;0.3590974;-0.002596943,-0.1851456;0.09206557;0.03022496,-0.2260294;-0.1845981;0.04385376,0.07068262;0.006973011;-0.03681498,0.08558077;-0.3711425;-0.002077945,0.08818422;-0.7140723;0.06786758,0.1002489;-0.7611807;0.005347587,-0.07002582;0.0006869404;-0.03867704,-0.09765062;-0.3771858;-0.009537894,-0.1140676;-0.720355;0.05728529,-0.09728941;-0.7650242;-0.007080991,0.002793669;0.3993407;0.02186819,0;0;0,0.007244661;0.1997095;0.007976949,0.01945955;0.4994057;0.006582089,0.1216898;0.3695414;-0.03681923,0.1976201;0.1187167;-0.1354171,0.2155521;-0.05016297;-0.3580336,-0.09899574;0.3629428;0.005389179,-0.1772917;0.09448087;0.01945831,-0.2360513;-0.1792746;0.01716289,0.06637767;0.004752572;-0.04440065,0.09318459;-0.3691014;0.01816581,0.1019095;-0.708721;0.1023226,0.1099978;-0.7595532;0.04400662,-0.07560594;0.002061147;-0.0260671,-0.08869478;-0.3745068;0.02317931,-0.09601485;-0.7156117;0.1012426,-0.1079623;-0.703958;0.003668636,0.01520608;0.3995438;0.009668067,36.75245
+0;0;0,0.001218779;0.1994969;0.01412499,0.003822764;0.4993353;0.02170206,0.1162365;0.3739237;-0.007875608,0.189124;0.105801;0.0267309,0.2410638;-0.1692749;0.03269319,-0.1075781;0.3590974;-0.002596943,-0.1851456;0.09206557;0.03022496,-0.2260294;-0.1845981;0.04385376,0.07068262;0.006973011;-0.03681498,0.08558077;-0.3711425;-0.002077945,0.08818422;-0.7140723;0.06786758,0.1002489;-0.7611807;0.005347587,-0.07002582;0.0006869404;-0.03867704,-0.09765062;-0.3771858;-0.009537894,-0.1140676;-0.720355;0.05728529,-0.09728941;-0.7650242;-0.007080991,0.002793669;0.3993407;0.02186819,0;0;0,0.00735858;0.1997014;0.00807617,0.01971629;0.4993915;0.006739055,0.1217843;0.3700205;-0.03722589,0.2034859;0.130008;-0.1560486,0.2143599;-0.04129203;-0.3772681,-0.09878042;0.3630396;0.004372413,-0.17974;0.09546316;0.0201336,-0.237928;-0.1784166;0.01812493,0.06627593;0.004886032;-0.04453794,0.09286749;-0.3689491;0.01823309,0.1016192;-0.708519;0.1025873,0.1095746;-0.7592375;0.04409576,-0.07572588;0.001783919;-0.02573729,-0.08890767;-0.3747879;0.02345513,-0.09624611;-0.7158916;0.1015218,-0.1081287;-0.7042271;0.003937937,0.01540666;0.3995318;0.009815441,36.77464
+0;0;0,0.001218779;0.1994969;0.01412499,0.003822764;0.4993353;0.02170206,0.1162365;0.3739237;-0.007875608,0.189124;0.105801;0.0267309,0.2410638;-0.1692749;0.03269319,-0.1075781;0.3590974;-0.002596943,-0.1851456;0.09206557;0.03022496,-0.2260294;-0.1845981;0.04385376,0.07068262;0.006973011;-0.03681498,0.08558077;-0.3711425;-0.002077945,0.08818422;-0.7140723;0.06786758,0.1002489;-0.7611807;0.005347587,-0.07002582;0.0006869404;-0.03867704,-0.09765062;-0.3771858;-0.009537894,-0.1140676;-0.720355;0.05728529,-0.09728941;-0.7650242;-0.007080991,0.002793669;0.3993407;0.02186819,0;0;0,0.007503195;0.1996916;0.008182763,0.02002723;0.4993745;0.006892544,0.1219534;0.3704467;-0.03753776,0.2048432;0.133062;-0.1607361,0.2102406;-0.02634776;-0.3908651,-0.09857169;0.3630658;0.005244811,-0.1795656;0.09548059;0.02067642,-0.2368099;-0.1786008;0.01909664,0.06627602;0.004841965;-0.04454261,0.09271274;-0.3689509;0.0185447,0.1015391;-0.7084857;0.1030325,0.1096986;-0.7593219;0.04473202,-0.07581432;0.001636209;-0.0254855,-0.08908268;-0.3749046;0.0239211,-0.09634297;-0.7160088;0.1019928,-0.1085508;-0.7043356;0.004447453,0.01566048;0.3995172;0.009967073,36.79675
+0;0;0,0.001127232;0.1994977;0.0141204,0.003597279;0.4993367;0.02172755,0.1159582;0.3738935;-0.008200312,0.1877853;0.1051957;0.02408537,0.2393513;-0.1699444;0.03032292,-0.1078099;0.3592379;-0.002594354,-0.1852267;0.09221998;0.03069323,-0.2259315;-0.1844537;0.04464979,0.07069287;0.006919855;-0.03680534,0.08551043;-0.3712027;-0.002110373,0.08846486;-0.7140359;0.06829344,0.1003803;-0.7612012;0.005815133,-0.07003582;0.0007491966;-0.03865775,-0.09744303;-0.3771209;-0.009280503,-0.1137716;-0.7203587;0.05721127,-0.09669331;-0.7650532;-0.007046558,0.002610838;0.3993417;0.02187885,0;0;0,0.007503195;0.1996916;0.008182763,0.02002723;0.4993745;0.006892544,0.1219534;0.3704467;-0.03753776,0.2048432;0.133062;-0.1607361,0.2102406;-0.02634776;-0.3908651,-0.09857169;0.3630658;0.005244811,-0.1795656;0.09548059;0.02067642,-0.2368099;-0.1786008;0.01909664,0.06627602;0.004841965;-0.04454261,0.09271274;-0.3689509;0.0185447,0.1015391;-0.7084857;0.1030325,0.1096986;-0.7593219;0.04473202,-0.07581432;0.001636209;-0.0254855,-0.08908268;-0.3749046;0.0239211,-0.09634297;-0.7160088;0.1019928,-0.1085508;-0.7043356;0.004447453,0.01566048;0.3995172;0.009967073,36.80827
+0;0;0,0.001127232;0.1994977;0.0141204,0.003597279;0.4993367;0.02172755,0.1159582;0.3738935;-0.008200312,0.1877853;0.1051957;0.02408537,0.2393513;-0.1699444;0.03032292,-0.1078099;0.3592379;-0.002594354,-0.1852267;0.09221998;0.03069323,-0.2259315;-0.1844537;0.04464979,0.07069287;0.006919855;-0.03680534,0.08551043;-0.3712027;-0.002110373,0.08846486;-0.7140359;0.06829344,0.1003803;-0.7612012;0.005815133,-0.07003582;0.0007491966;-0.03865775,-0.09744303;-0.3771209;-0.009280503,-0.1137716;-0.7203587;0.05721127,-0.09669331;-0.7650532;-0.007046558,0.002610838;0.3993417;0.02187885,0;0;0,0.007357993;0.1996925;0.008292403,0.0191162;0.4994103;0.007444457,0.1213025;0.3704573;-0.03739427,0.207278;0.1388567;-0.1691873,0.2091968;-0.01341674;-0.4041535,-0.09903242;0.3627416;0.005923735,-0.1796552;0.09502238;0.02097003,-0.2364453;-0.1791539;0.01946691,0.06619352;0.004944663;-0.04465387,0.09267388;-0.368799;0.01870607,0.101457;-0.7082958;0.1033509,0.1097192;-0.7592188;0.0451856,-0.07585882;0.001514581;-0.02536033,-0.08883391;-0.375017;0.02419352,-0.09650458;-0.716135;0.1021657,-0.1089302;-0.704452;0.004645996,0.01510404;0.3995322;0.01031885,36.83037
+0;0;0,0.001127232;0.1994977;0.0141204,0.003597279;0.4993367;0.02172755,0.1159582;0.3738935;-0.008200312,0.1877853;0.1051957;0.02408537,0.2393513;-0.1699444;0.03032292,-0.1078099;0.3592379;-0.002594354,-0.1852267;0.09221998;0.03069323,-0.2259315;-0.1844537;0.04464979,0.07069287;0.006919855;-0.03680534,0.08551043;-0.3712027;-0.002110373,0.08846486;-0.7140359;0.06829344,0.1003803;-0.7612012;0.005815133,-0.07003582;0.0007491966;-0.03865775,-0.09744303;-0.3771209;-0.009280503,-0.1137716;-0.7203587;0.05721127,-0.09669331;-0.7650532;-0.007046558,0.002610838;0.3993417;0.02187885,0;0;0,0.007357993;0.1996925;0.008292403,0.0191162;0.4994103;0.007444457,0.1213025;0.3704573;-0.03739427,0.207278;0.1388567;-0.1691873,0.2091968;-0.01341674;-0.4041535,-0.09903242;0.3627416;0.005923735,-0.1796552;0.09502238;0.02097003,-0.2364453;-0.1791539;0.01946691,0.06619352;0.004944663;-0.04465387,0.09267388;-0.368799;0.01870607,0.101457;-0.7082958;0.1033509,0.1097192;-0.7592188;0.0451856,-0.07585882;0.001514581;-0.02536033,-0.08883391;-0.375017;0.02419352,-0.09650458;-0.716135;0.1021657,-0.1089302;-0.704452;0.004645996,0.01510404;0.3995322;0.01031885,36.84172
+0;0;0,0.001012381;0.1995011;0.01408158,0.003325033;0.4993421;0.02166798,0.1155969;0.3738085;-0.008700766,0.1867887;0.1047128;0.0216189,0.2367343;-0.1707462;0.0268879,-0.1080524;0.3591329;-0.002383202,-0.1852124;0.09211591;0.03150287,-0.2257252;-0.1845897;0.04538602,0.07060455;0.006895674;-0.03697901,0.08557328;-0.3711356;-0.00136603,0.08863868;-0.7138885;0.0694225,0.1000853;-0.7608703;0.006630845,-0.07015754;0.0007857837;-0.0384357,-0.0974248;-0.3770417;-0.008387484,-0.1136178;-0.7202749;0.05816143,-0.09693804;-0.7646009;-0.006626181,0.002387896;0.3993466;0.02182022,0;0;0,0.007363028;0.1996912;0.008319733,0.01923162;0.4994039;0.007398909,0.1213066;0.3706012;-0.03764306,0.2093166;0.1424759;-0.1740729,0.2083009;0.006463259;-0.4188167,-0.09891129;0.3626415;0.005480099,-0.1738047;0.09306565;0.01642592,-0.2352997;-0.1800889;0.01865562,0.06616356;0.004951105;-0.04469753,0.09260209;-0.36876;0.01887135,0.1013318;-0.7082666;0.1034825,0.1099187;-0.7592563;0.04545716,-0.07589824;0.001471128;-0.02524464,-0.08894067;-0.3750628;0.02427439,-0.09653293;-0.7161994;0.1021728,-0.1089552;-0.7045143;0.004652247,0.01517642;0.3995286;0.01031089,36.86407
+0;0;0,0.001012381;0.1995011;0.01408158,0.003325033;0.4993421;0.02166798,0.1155969;0.3738085;-0.008700766,0.1867887;0.1047128;0.0216189,0.2367343;-0.1707462;0.0268879,-0.1080524;0.3591329;-0.002383202,-0.1852124;0.09211591;0.03150287,-0.2257252;-0.1845897;0.04538602,0.07060455;0.006895674;-0.03697901,0.08557328;-0.3711356;-0.00136603,0.08863868;-0.7138885;0.0694225,0.1000853;-0.7608703;0.006630845,-0.07015754;0.0007857837;-0.0384357,-0.0974248;-0.3770417;-0.008387484,-0.1136178;-0.7202749;0.05816143,-0.09693804;-0.7646009;-0.006626181,0.002387896;0.3993466;0.02182022,0;0;0,0.007363028;0.1996912;0.008319733,0.01923162;0.4994039;0.007398909,0.1213066;0.3706012;-0.03764306,0.2093166;0.1424759;-0.1740729,0.2083009;0.006463259;-0.4188167,-0.09891129;0.3626415;0.005480099,-0.1738047;0.09306565;0.01642592,-0.2352997;-0.1800889;0.01865562,0.06616356;0.004951105;-0.04469753,0.09260209;-0.36876;0.01887135,0.1013318;-0.7082666;0.1034825,0.1099187;-0.7592563;0.04545716,-0.07589824;0.001471128;-0.02524464,-0.08894067;-0.3750628;0.02427439,-0.09653293;-0.7161994;0.1021728,-0.1089552;-0.7045143;0.004652247,0.01517642;0.3995286;0.01031089,36.87516
+0;0;0,0.001012381;0.1995011;0.01408158,0.003325033;0.4993421;0.02166798,0.1155969;0.3738085;-0.008700766,0.1867887;0.1047128;0.0216189,0.2367343;-0.1707462;0.0268879,-0.1080524;0.3591329;-0.002383202,-0.1852124;0.09211591;0.03150287,-0.2257252;-0.1845897;0.04538602,0.07060455;0.006895674;-0.03697901,0.08557328;-0.3711356;-0.00136603,0.08863868;-0.7138885;0.0694225,0.1000853;-0.7608703;0.006630845,-0.07015754;0.0007857837;-0.0384357,-0.0974248;-0.3770417;-0.008387484,-0.1136178;-0.7202749;0.05816143,-0.09693804;-0.7646009;-0.006626181,0.002387896;0.3993466;0.02182022,0;0;0,0.00746832;0.199685;0.00837506,0.01964018;0.499386;0.007571461,0.1214082;0.3705199;-0.03788113,0.2112614;0.1468538;-0.1803588,0.2090316;0.0175582;-0.4287087,-0.09867643;0.362724;0.006115725,-0.1815124;0.09590983;0.02478065,-0.2355865;-0.1787698;0.01957516,0.06611431;0.004998191;-0.04476511,0.09251668;-0.3686824;0.01899808,0.1012656;-0.7081926;0.1035929,0.108833;-0.759629;0.04605296,-0.07593574;0.001390817;-0.02513618,-0.08839482;-0.3750957;0.02489076,-0.09667239;-0.7162911;0.1024609,-0.1093136;-0.7045969;0.004966766,0.01546283;0.3995144;0.01043967,36.89732
+0;0;0,0.001024987;0.1994964;0.0141466,0.003406151;0.4993333;0.02188041,0.1155072;0.3738177;-0.009077933,0.1856704;0.1041371;0.01829866,0.2345224;-0.171554;0.02110785,-0.1080634;0.3593248;-0.002270255,-0.1928134;0.09483835;0.03328716,-0.2270639;-0.1827974;0.04534101,0.07052246;0.006900224;-0.03713448,0.08529306;-0.3710473;-0.0005629063,0.0893843;-0.713665;0.07082637,0.1004953;-0.7606269;0.007950157,-0.07025106;0.0007780974;-0.03826464,-0.09703693;-0.3770726;-0.008076167,-0.1126279;-0.7202342;0.05898423,-0.09627555;-0.7647176;-0.005706012,0.002439821;0.399338;0.02197829,0;0;0,0.00746832;0.199685;0.00837506,0.01964018;0.499386;0.007571461,0.1214082;0.3705199;-0.03788113,0.2112614;0.1468538;-0.1803588,0.2090316;0.0175582;-0.4287087,-0.09867643;0.362724;0.006115725,-0.1815124;0.09590983;0.02478065,-0.2355865;-0.1787698;0.01957516,0.06611431;0.004998191;-0.04476511,0.09251668;-0.3686824;0.01899808,0.1012656;-0.7081926;0.1035929,0.108833;-0.759629;0.04605296,-0.07593574;0.001390817;-0.02513618,-0.08839482;-0.3750957;0.02489076,-0.09667239;-0.7162911;0.1024609,-0.1093136;-0.7045969;0.004966766,0.01546283;0.3995144;0.01043967,36.9086
+0;0;0,0.001024987;0.1994964;0.0141466,0.003406151;0.4993333;0.02188041,0.1155072;0.3738177;-0.009077933,0.1856704;0.1041371;0.01829866,0.2345224;-0.171554;0.02110785,-0.1080634;0.3593248;-0.002270255,-0.1928134;0.09483835;0.03328716,-0.2270639;-0.1827974;0.04534101,0.07052246;0.006900224;-0.03713448,0.08529306;-0.3710473;-0.0005629063,0.0893843;-0.713665;0.07082637,0.1004953;-0.7606269;0.007950157,-0.07025106;0.0007780974;-0.03826464,-0.09703693;-0.3770726;-0.008076167,-0.1126279;-0.7202342;0.05898423,-0.09627555;-0.7647176;-0.005706012,0.002439821;0.399338;0.02197829,0;0;0,0.00746832;0.199685;0.00837506,0.01964018;0.499386;0.007571461,0.1214082;0.3705199;-0.03788113,0.2112614;0.1468538;-0.1803588,0.2090316;0.0175582;-0.4287087,-0.09867643;0.362724;0.006115725,-0.1815124;0.09590983;0.02478065,-0.2355865;-0.1787698;0.01957516,0.06611431;0.004998191;-0.04476511,0.09251668;-0.3686824;0.01899808,0.1012656;-0.7081926;0.1035929,0.108833;-0.759629;0.04605296,-0.07593574;0.001390817;-0.02513618,-0.08839482;-0.3750957;0.02489076,-0.09667239;-0.7162911;0.1024609,-0.1093136;-0.7045969;0.004966766,0.01546283;0.3995144;0.01043967,36.91975
+0;0;0,0.001024987;0.1994964;0.0141466,0.003406151;0.4993333;0.02188041,0.1155072;0.3738177;-0.009077933,0.1856704;0.1041371;0.01829866,0.2345224;-0.171554;0.02110785,-0.1080634;0.3593248;-0.002270255,-0.1928134;0.09483835;0.03328716,-0.2270639;-0.1827974;0.04534101,0.07052246;0.006900224;-0.03713448,0.08529306;-0.3710473;-0.0005629063,0.0893843;-0.713665;0.07082637,0.1004953;-0.7606269;0.007950157,-0.07025106;0.0007780974;-0.03826464,-0.09703693;-0.3770726;-0.008076167,-0.1126279;-0.7202342;0.05898423,-0.09627555;-0.7647176;-0.005706012,0.002439821;0.399338;0.02197829,0;0;0,0.007259605;0.1996876;0.00849476,0.01852547;0.499427;0.008249816,0.1205027;0.3703615;-0.03770389,0.2106538;0.1505707;-0.1859092,0.205669;0.02631853;-0.4367808,-0.09926216;0.3623653;0.005926073,-0.1795519;0.09456503;0.0213065,-0.2364536;-0.1795832;0.01907709,0.06602173;0.004972139;-0.04490444,0.09251502;-0.3686804;0.01898511,0.1012424;-0.7081802;0.1036239,0.1097835;-0.7594073;0.04592455,-0.07597227;0.001425401;-0.0250236,-0.08857737;-0.3750916;0.02473632,-0.09675246;-0.7162642;0.1024179,-0.1094418;-0.7045588;0.00492797,0.01472872;0.3995338;0.01088464,36.94217
+0;0;0,0.001099453;0.1994887;0.01424963,0.00360103;0.4993201;0.02215582,0.1155327;0.3737634;-0.009291209,0.1853197;0.1038182;0.01638673,0.2331645;-0.1720615;0.01750871,-0.1082525;0.3601265;-0.001818389,-0.1916807;0.09512469;0.03302075,-0.2265392;-0.1824379;0.04501536,0.07034298;0.006810022;-0.03748985,0.0856939;-0.3710018;0.0002277792,0.08988488;-0.7135971;0.07171844,0.1010822;-0.7605023;0.008788198,-0.07037286;0.00083788;-0.03803889,-0.09720767;-0.3770266;-0.008066742,-0.1122533;-0.7200976;0.05957875,-0.0958655;-0.7649307;-0.004697673,0.002593517;0.3993253;0.02219438,0;0;0,0.007259605;0.1996876;0.00849476,0.01852547;0.499427;0.008249816,0.1205027;0.3703615;-0.03770389,0.2106538;0.1505707;-0.1859092,0.205669;0.02631853;-0.4367808,-0.09926216;0.3623653;0.005926073,-0.1795519;0.09456503;0.0213065,-0.2364536;-0.1795832;0.01907709,0.06602173;0.004972139;-0.04490444,0.09251502;-0.3686804;0.01898511,0.1012424;-0.7081802;0.1036239,0.1097835;-0.7594073;0.04592455,-0.07597227;0.001425401;-0.0250236,-0.08857737;-0.3750916;0.02473632,-0.09675246;-0.7162642;0.1024179,-0.1094418;-0.7045588;0.00492797,0.01472872;0.3995338;0.01088464,36.95337
+0;0;0,0.001099453;0.1994887;0.01424963,0.00360103;0.4993201;0.02215582,0.1155327;0.3737634;-0.009291209,0.1853197;0.1038182;0.01638673,0.2331645;-0.1720615;0.01750871,-0.1082525;0.3601265;-0.001818389,-0.1916807;0.09512469;0.03302075,-0.2265392;-0.1824379;0.04501536,0.07034298;0.006810022;-0.03748985,0.0856939;-0.3710018;0.0002277792,0.08988488;-0.7135971;0.07171844,0.1010822;-0.7605023;0.008788198,-0.07037286;0.00083788;-0.03803889,-0.09720767;-0.3770266;-0.008066742,-0.1122533;-0.7200976;0.05957875,-0.0958655;-0.7649307;-0.004697673,0.002593517;0.3993253;0.02219438,0;0;0,0.007296281;0.1996842;0.008542738,0.01860647;0.4994214;0.008313183,0.1202821;0.3705984;-0.0383778,0.2112634;0.1534281;-0.1899017,0.2035852;0.03229275;-0.4422254,-0.09930239;0.3627281;0.005557464,-0.1816983;0.09567049;0.02261976,-0.2376457;-0.1786676;0.0197101,0.06585462;0.005032144;-0.04514251,0.09237216;-0.368564;0.01906594,0.1010235;-0.7080319;0.1038405,0.1093035;-0.7594187;0.04632845,-0.07605817;0.001360467;-0.02476497,-0.08872835;-0.3751678;0.02489324,-0.09691088;-0.7163151;0.1026849,-0.1097498;-0.7046134;0.005215205,0.0147876;0.3995293;0.01095689,36.9756
+0;0;0,0.001099453;0.1994887;0.01424963,0.00360103;0.4993201;0.02215582,0.1155327;0.3737634;-0.009291209,0.1853197;0.1038182;0.01638673,0.2331645;-0.1720615;0.01750871,-0.1082525;0.3601265;-0.001818389,-0.1916807;0.09512469;0.03302075,-0.2265392;-0.1824379;0.04501536,0.07034298;0.006810022;-0.03748985,0.0856939;-0.3710018;0.0002277792,0.08988488;-0.7135971;0.07171844,0.1010822;-0.7605023;0.008788198,-0.07037286;0.00083788;-0.03803889,-0.09720767;-0.3770266;-0.008066742,-0.1122533;-0.7200976;0.05957875,-0.0958655;-0.7649307;-0.004697673,0.002593517;0.3993253;0.02219438,0;0;0,0.007446766;0.1996774;0.008572077,0.01913233;0.4993992;0.008225195,0.1205584;0.370539;-0.03851199,0.2063089;0.1573597;-0.1985166,0.2053031;0.0465108;-0.4556382,-0.09901167;0.3628669;0.00549873,-0.1825059;0.09619802;0.02328645,-0.2376299;-0.1783014;0.01990505,0.06577463;0.004969389;-0.04526592,0.09258483;-0.368556;0.01923241,0.1012211;-0.708045;0.1039238,0.1099019;-0.7595679;0.04666416,-0.07611474;0.001394358;-0.02458865,-0.08862064;-0.3751567;0.02493838,-0.09674119;-0.7163063;0.1027264,-0.1096046;-0.7046025;0.005259573,0.01512582;0.399516;0.01092785,36.99817
+0;0;0,0.00105916;0.1994945;0.01417203,0.003474521;0.4993307;0.02192073,0.115541;0.3736277;-0.008974023,0.1847372;0.1033208;0.01439438,0.2316803;-0.1727138;0.01330119,-0.1083727;0.3597441;-0.001232911,-0.189875;0.09362745;0.02941504,-0.2245457;-0.1839394;0.04184762,0.07034224;0.00710968;-0.03743557,0.08607035;-0.37058;0.001335066,0.09005131;-0.7130488;0.07344081,0.101655;-0.7590137;0.009450994,-0.07044063;0.0004877389;-0.03791939,-0.09652691;-0.3773278;-0.006695328,-0.11133;-0.7203842;0.06107711,-0.09484135;-0.7651799;-0.003217109,0.002497197;0.3993355;0.02201321,0;0;0,0.007446766;0.1996774;0.008572077,0.01913233;0.4993992;0.008225195,0.1205584;0.370539;-0.03851199,0.2063089;0.1573597;-0.1985166,0.2053031;0.0465108;-0.4556382,-0.09901167;0.3628669;0.00549873,-0.1825059;0.09619802;0.02328645,-0.2376299;-0.1783014;0.01990505,0.06577463;0.004969389;-0.04526592,0.09258483;-0.368556;0.01923241,0.1012211;-0.708045;0.1039238,0.1099019;-0.7595679;0.04666416,-0.07611474;0.001394358;-0.02458865,-0.08862064;-0.3751567;0.02493838,-0.09674119;-0.7163063;0.1027264,-0.1096046;-0.7046025;0.005259573,0.01512582;0.399516;0.01092785,37.0091
+0;0;0,0.00105916;0.1994945;0.01417203,0.003474521;0.4993307;0.02192073,0.115541;0.3736277;-0.008974023,0.1847372;0.1033208;0.01439438,0.2316803;-0.1727138;0.01330119,-0.1083727;0.3597441;-0.001232911,-0.189875;0.09362745;0.02941504,-0.2245457;-0.1839394;0.04184762,0.07034224;0.00710968;-0.03743557,0.08607035;-0.37058;0.001335066,0.09005131;-0.7130488;0.07344081,0.101655;-0.7590137;0.009450994,-0.07044063;0.0004877389;-0.03791939,-0.09652691;-0.3773278;-0.006695328,-0.11133;-0.7203842;0.06107711,-0.09484135;-0.7651799;-0.003217109,0.002497197;0.3993355;0.02201321,0;0;0,0.007646356;0.1996667;0.008644762,0.01983697;0.4993674;0.008205369,0.120997;0.3705785;-0.03864665,0.2044235;0.1588734;-0.2018061,0.1889058;0.04895209;-0.4588596,-0.09851019;0.3628279;0.005598508,-0.1826592;0.09638876;0.02374015,-0.2374879;-0.1781682;0.02023454,0.06556338;0.004957865;-0.0455726,0.09246511;-0.3684095;0.01979644,0.1011402;-0.7079047;0.104459,0.1095456;-0.759275;0.04694178,-0.07624353;0.001297069;-0.02419176,-0.08863655;-0.375274;0.02521126,-0.09685092;-0.7163862;0.1031536,-0.1097573;-0.7046763;0.00569132,0.01562509;0.3994941;0.01095818,37.03127
+0;0;0,0.00105916;0.1994945;0.01417203,0.003474521;0.4993307;0.02192073,0.115541;0.3736277;-0.008974023,0.1847372;0.1033208;0.01439438,0.2316803;-0.1727138;0.01330119,-0.1083727;0.3597441;-0.001232911,-0.189875;0.09362745;0.02941504,-0.2245457;-0.1839394;0.04184762,0.07034224;0.00710968;-0.03743557,0.08607035;-0.37058;0.001335066,0.09005131;-0.7130488;0.07344081,0.101655;-0.7590137;0.009450994,-0.07044063;0.0004877389;-0.03791939,-0.09652691;-0.3773278;-0.006695328,-0.11133;-0.7203842;0.06107711,-0.09484135;-0.7651799;-0.003217109,0.002497197;0.3993355;0.02201321,0;0;0,0.007646356;0.1996667;0.008644762,0.01983697;0.4993674;0.008205369,0.120997;0.3705785;-0.03864665,0.2044235;0.1588734;-0.2018061,0.1889058;0.04895209;-0.4588596,-0.09851019;0.3628279;0.005598508,-0.1826592;0.09638876;0.02374015,-0.2374879;-0.1781682;0.02023454,0.06556338;0.004957865;-0.0455726,0.09246511;-0.3684095;0.01979644,0.1011402;-0.7079047;0.104459,0.1095456;-0.759275;0.04694178,-0.07624353;0.001297069;-0.02419176,-0.08863655;-0.375274;0.02521126,-0.09685092;-0.7163862;0.1031536,-0.1097573;-0.7046763;0.00569132,0.01562509;0.3994941;0.01095818,37.04257
+0;0;0,0.001417124;0.199476;0.01439806,0.004186382;0.4993019;0.02241488,0.1160415;0.3735514;-0.008934297,0.1854388;0.1031636;0.01284791,0.2315873;-0.1729893;0.009707215,-0.1077795;0.3596897;-0.0006692186,-0.1891642;0.0935618;0.03019345,-0.2303701;-0.1832079;0.04022244,0.07031596;0.007255646;-0.03745694,0.08707312;-0.3702989;0.002188589,0.09112496;-0.7127542;0.07435416,0.1022552;-0.7587255;0.01028778,-0.07048096;0.0003558344;-0.03784584,-0.09625507;-0.3774327;-0.006041754,-0.1103662;-0.7204705;0.06197225,-0.09397729;-0.765406;-0.002184425,0.003112092;0.3993076;0.02242771,0;0;0,0.007646356;0.1996667;0.008644762,0.01983697;0.4993674;0.008205369,0.120997;0.3705785;-0.03864665,0.2044235;0.1588734;-0.2018061,0.1889058;0.04895209;-0.4588596,-0.09851019;0.3628279;0.005598508,-0.1826592;0.09638876;0.02374015,-0.2374879;-0.1781682;0.02023454,0.06556338;0.004957865;-0.0455726,0.09246511;-0.3684095;0.01979644,0.1011402;-0.7079047;0.104459,0.1095456;-0.759275;0.04694178,-0.07624353;0.001297069;-0.02419176,-0.08863655;-0.375274;0.02521126,-0.09685092;-0.7163862;0.1031536,-0.1097573;-0.7046763;0.00569132,0.01562509;0.3994941;0.01095818,37.05394
+0;0;0,0.001417124;0.199476;0.01439806,0.004186382;0.4993019;0.02241488,0.1160415;0.3735514;-0.008934297,0.1854388;0.1031636;0.01284791,0.2315873;-0.1729893;0.009707215,-0.1077795;0.3596897;-0.0006692186,-0.1891642;0.0935618;0.03019345,-0.2303701;-0.1832079;0.04022244,0.07031596;0.007255646;-0.03745694,0.08707312;-0.3702989;0.002188589,0.09112496;-0.7127542;0.07435416,0.1022552;-0.7587255;0.01028778,-0.07048096;0.0003558344;-0.03784584,-0.09625507;-0.3774327;-0.006041754,-0.1103662;-0.7204705;0.06197225,-0.09397729;-0.765406;-0.002184425,0.003112092;0.3993076;0.02242771,0;0;0,0.007764553;0.1996634;0.008616568,0.02017453;0.499354;0.008004638,0.1210629;0.3711341;-0.03950229,0.203016;0.1539389;-0.1960588,0.1901549;0.04931799;-0.4554602,-0.09835152;0.3629684;0.006785936,-0.1815151;0.09613901;0.02369377,-0.2361554;-0.1784557;0.02020287,0.06546559;0.005041085;-0.04570386,0.09257041;-0.3682905;0.0197855,0.1014203;-0.7077082;0.1047399,0.1093837;-0.7592239;0.04736577,-0.07632142;0.00120075;-0.02394991,-0.08880436;-0.3753728;0.0254119,-0.0971823;-0.7164584;0.1034527,-0.1106093;-0.7047641;0.006063655,0.01588535;0.3994861;0.01083492,37.07618
+0;0;0,0.001417124;0.199476;0.01439806,0.004186382;0.4993019;0.02241488,0.1160415;0.3735514;-0.008934297,0.1854388;0.1031636;0.01284791,0.2315873;-0.1729893;0.009707215,-0.1077795;0.3596897;-0.0006692186,-0.1891642;0.0935618;0.03019345,-0.2303701;-0.1832079;0.04022244,0.07031596;0.007255646;-0.03745694,0.08707312;-0.3702989;0.002188589,0.09112496;-0.7127542;0.07435416,0.1022552;-0.7587255;0.01028778,-0.07048096;0.0003558344;-0.03784584,-0.09625507;-0.3774327;-0.006041754,-0.1103662;-0.7204705;0.06197225,-0.09397729;-0.765406;-0.002184425,0.003112092;0.3993076;0.02242771,0;0;0,0.007764553;0.1996634;0.008616568,0.02017453;0.499354;0.008004638,0.1210629;0.3711341;-0.03950229,0.203016;0.1539389;-0.1960588,0.1901549;0.04931799;-0.4554602,-0.09835152;0.3629684;0.006785936,-0.1815151;0.09613901;0.02369377,-0.2361554;-0.1784557;0.02020287,0.06546559;0.005041085;-0.04570386,0.09257041;-0.3682905;0.0197855,0.1014203;-0.7077082;0.1047399,0.1093837;-0.7592239;0.04736577,-0.07632142;0.00120075;-0.02394991,-0.08880436;-0.3753728;0.0254119,-0.0971823;-0.7164584;0.1034527,-0.1106093;-0.7047641;0.006063655,0.01588535;0.3994861;0.01083492,37.08749
+0;0;0,0.001260006;0.1994694;0.01450395,0.003825224;0.4992913;0.02274317,0.1157192;0.373736;-0.008935485,0.1852207;0.1032841;0.01168708,0.2304237;-0.1729909;0.00631843,-0.108097;0.3596301;-0.0002460759,-0.1891554;0.09342307;0.03079196,-0.2301577;-0.1833943;0.04033035,0.07018033;0.007362246;-0.03768976,0.08752616;-0.3700815;0.002749152,0.09195178;-0.7125136;0.0750036,0.1024432;-0.7581338;0.01041638,-0.07058677;0.0002624196;-0.03764888,-0.09679794;-0.3775338;-0.006296117,-0.1097348;-0.7204405;0.06260683,-0.09366999;-0.7658871;-0.001030758,0.00281414;0.3992965;0.02267312,0;0;0,0.007883214;0.1996527;0.008754192,0.02038073;0.4993394;0.008240762,0.1212525;0.3711081;-0.0392601,0.2017323;0.1532881;-0.1957128,0.1991115;0.1058918;-0.4716598,-0.0982016;0.3630532;0.006983377,-0.1821561;0.0965054;0.02441707,-0.23624;-0.1781938;0.02051061,0.06539817;0.004967277;-0.04580834,0.09274817;-0.3682672;0.02013115,0.1016439;-0.7076581;0.1051882,0.1094439;-0.7590153;0.04756725,-0.07639923;0.001175527;-0.0237018,-0.08859621;-0.3754537;0.02530489,-0.09717939;-0.7164642;0.1036514,-0.1105946;-0.7047606;0.006259069,0.01606611;0.3994721;0.0110521,37.10963
+0;0;0,0.001260006;0.1994694;0.01450395,0.003825224;0.4992913;0.02274317,0.1157192;0.373736;-0.008935485,0.1852207;0.1032841;0.01168708,0.2304237;-0.1729909;0.00631843,-0.108097;0.3596301;-0.0002460759,-0.1891554;0.09342307;0.03079196,-0.2301577;-0.1833943;0.04033035,0.07018033;0.007362246;-0.03768976,0.08752616;-0.3700815;0.002749152,0.09195178;-0.7125136;0.0750036,0.1024432;-0.7581338;0.01041638,-0.07058677;0.0002624196;-0.03764888,-0.09679794;-0.3775338;-0.006296117,-0.1097348;-0.7204405;0.06260683,-0.09366999;-0.7658871;-0.001030758,0.00281414;0.3992965;0.02267312,0;0;0,0.007883214;0.1996527;0.008754192,0.02038073;0.4993394;0.008240762,0.1212525;0.3711081;-0.0392601,0.2017323;0.1532881;-0.1957128,0.1991115;0.1058918;-0.4716598,-0.0982016;0.3630532;0.006983377,-0.1821561;0.0965054;0.02441707,-0.23624;-0.1781938;0.02051061,0.06539817;0.004967277;-0.04580834,0.09274817;-0.3682672;0.02013115,0.1016439;-0.7076581;0.1051882,0.1094439;-0.7590153;0.04756725,-0.07639923;0.001175527;-0.0237018,-0.08859621;-0.3754537;0.02530489,-0.09717939;-0.7164642;0.1036514,-0.1105946;-0.7047606;0.006259069,0.01606611;0.3994721;0.0110521,37.12085
+0;0;0,0.001260006;0.1994694;0.01450395,0.003825224;0.4992913;0.02274317,0.1157192;0.373736;-0.008935485,0.1852207;0.1032841;0.01168708,0.2304237;-0.1729909;0.00631843,-0.108097;0.3596301;-0.0002460759,-0.1891554;0.09342307;0.03079196,-0.2301577;-0.1833943;0.04033035,0.07018033;0.007362246;-0.03768976,0.08752616;-0.3700815;0.002749152,0.09195178;-0.7125136;0.0750036,0.1024432;-0.7581338;0.01041638,-0.07058677;0.0002624196;-0.03764888,-0.09679794;-0.3775338;-0.006296117,-0.1097348;-0.7204405;0.06260683,-0.09366999;-0.7658871;-0.001030758,0.00281414;0.3992965;0.02267312,0;0;0,0.007795349;0.1996458;0.008988676,0.01975991;0.4993573;0.009059481,0.1208128;0.3709812;-0.03875875,0.1975558;0.1648895;-0.2120698,0.205818;0.1080223;-0.4861097,-0.09848483;0.3627366;0.007723303,-0.1818705;0.09597555;0.0246161,-0.2357734;-0.1787547;0.02039859,0.06520496;0.005007427;-0.04607861,0.0930583;-0.368092;0.02041228,0.1019219;-0.7074127;0.1057518,0.1091331;-0.7590618;0.04846804,-0.0764882;0.001070424;-0.02341815,-0.0886421;-0.3755659;0.02554526,-0.09721852;-0.7165645;0.103944,-0.1107486;-0.7048404;0.006563686,0.01568764;0.3994728;0.01160909,37.14322
+0;0;0,0.001471014;0.1994415;0.01486303,0.004359158;0.4992478;0.02353466,0.11593;0.3736219;-0.008984927,0.1854867;0.1030716;0.01010542,0.2293541;-0.1733529;0.002036626,-0.1076582;0.359468;0.0005711112,-0.1885638;0.09321052;0.03157523,-0.2291441;-0.1837354;0.03893694,0.07026105;0.007184375;-0.03757352,0.08851641;-0.3701544;0.003440764,0.09334322;-0.71251;0.076031,0.1036284;-0.7583896;0.01171529,-0.07058665;0.0004675959;-0.03764712,-0.09558873;-0.3773223;-0.005247634,-0.1084649;-0.7201701;0.06395876,-0.09214567;-0.7655904;0.0003547445,0.00324232;0.3992543;0.02333338,0;0;0,0.007895273;0.1996279;0.009294148,0.01994484;0.4993349;0.009582339,0.120982;0.3709911;-0.03829868,0.1964554;0.1678465;-0.2156008,0.1901142;0.07658785;-0.4802357,-0.09825304;0.3625483;0.007910628,-0.1819578;0.09591588;0.025251,-0.2354454;-0.1788926;0.02085086,0.06510356;0.004956947;-0.04622721,0.09348059;-0.367987;0.02091091,0.1022816;-0.7073458;0.1061055,0.1099755;-0.7584134;0.04806366,-0.07659696;0.001106081;-0.02305824,-0.08826479;-0.3754999;0.02625507,-0.0969626;-0.7164996;0.1046356,-0.1104479;-0.704752;0.007244639,0.01585585;0.3994499;0.01208585,37.16529
+0;0;0,0.001471014;0.1994415;0.01486303,0.004359158;0.4992478;0.02353466,0.11593;0.3736219;-0.008984927,0.1854867;0.1030716;0.01010542,0.2293541;-0.1733529;0.002036626,-0.1076582;0.359468;0.0005711112,-0.1885638;0.09321052;0.03157523,-0.2291441;-0.1837354;0.03893694,0.07026105;0.007184375;-0.03757352,0.08851641;-0.3701544;0.003440764,0.09334322;-0.71251;0.076031,0.1036284;-0.7583896;0.01171529,-0.07058665;0.0004675959;-0.03764712,-0.09558873;-0.3773223;-0.005247634,-0.1084649;-0.7201701;0.06395876,-0.09214567;-0.7655904;0.0003547445,0.00324232;0.3992543;0.02333338,0;0;0,0.007895273;0.1996279;0.009294148,0.01994484;0.4993349;0.009582339,0.120982;0.3709911;-0.03829868,0.1964554;0.1678465;-0.2156008,0.1901142;0.07658785;-0.4802357,-0.09825304;0.3625483;0.007910628,-0.1819578;0.09591588;0.025251,-0.2354454;-0.1788926;0.02085086,0.06510356;0.004956947;-0.04622721,0.09348059;-0.367987;0.02091091,0.1022816;-0.7073458;0.1061055,0.1099755;-0.7584134;0.04806366,-0.07659696;0.001106081;-0.02305824,-0.08826479;-0.3754999;0.02625507,-0.0969626;-0.7164996;0.1046356,-0.1104479;-0.704752;0.007244639,0.01585585;0.3994499;0.01208585,37.17673
+0;0;0,0.001471014;0.1994415;0.01486303,0.004359158;0.4992478;0.02353466,0.11593;0.3736219;-0.008984927,0.1854867;0.1030716;0.01010542,0.2293541;-0.1733529;0.002036626,-0.1076582;0.359468;0.0005711112,-0.1885638;0.09321052;0.03157523,-0.2291441;-0.1837354;0.03893694,0.07026105;0.007184375;-0.03757352,0.08851641;-0.3701544;0.003440764,0.09334322;-0.71251;0.076031,0.1036284;-0.7583896;0.01171529,-0.07058665;0.0004675959;-0.03764712,-0.09558873;-0.3773223;-0.005247634,-0.1084649;-0.7201701;0.06395876,-0.09214567;-0.7655904;0.0003547445,0.00324232;0.3992543;0.02333338,0;0;0,0.008053837;0.1996054;0.009634843,0.02024332;0.4993048;0.01018145,0.1207875;0.3712723;-0.03887212,0.1988634;0.164012;-0.2101827,0.1951312;0.07637082;-0.476087,-0.09803489;0.3626093;0.009088198,-0.1808854;0.09566066;0.02564822,-0.2343348;-0.1791549;0.0212253,0.06509171;0.004973291;-0.04624213,0.09393132;-0.3678494;0.02137067,0.1026854;-0.7071327;0.1068707,0.1105317;-0.7583637;0.04907818,-0.07663568;0.001032658;-0.02293263,-0.08801526;-0.3756927;0.02552871,-0.09685739;-0.7164872;0.104781,-0.1108465;-0.7047222;0.007457845,0.01612451;0.3994199;0.01263876,37.19924
+0;0;0,0.002013252;0.1994052;0.01528117,0.00540969;0.4991926;0.02436955,0.1167057;0.3731602;-0.008435849,0.1854845;0.1022346;0.007959403,0.2288846;-0.1742209;-0.001465217,-0.1067019;0.3592273;0.001451729,-0.1956181;0.09640887;0.0391398,-0.2288064;-0.1816151;0.04023082,0.07015604;0.00693058;-0.03781662,0.08975657;-0.3702249;0.00424945,0.0948706;-0.7125156;0.0771255,0.1051799;-0.758306;0.01270852,-0.07067273;0.0007167105;-0.03748134,-0.09523631;-0.3770835;-0.004869048,-0.107122;-0.7198576;0.06487814,-0.09104419;-0.7653224;0.001265459,0.004162787;0.3992009;0.02405975,0;0;0,0.008053837;0.1996054;0.009634843,0.02024332;0.4993048;0.01018145,0.1207875;0.3712723;-0.03887212,0.1988634;0.164012;-0.2101827,0.1951312;0.07637082;-0.476087,-0.09803489;0.3626093;0.009088198,-0.1808854;0.09566066;0.02564822,-0.2343348;-0.1791549;0.0212253,0.06509171;0.004973291;-0.04624213,0.09393132;-0.3678494;0.02137067,0.1026854;-0.7071327;0.1068707,0.1105317;-0.7583637;0.04907818,-0.07663568;0.001032658;-0.02293263,-0.08801526;-0.3756927;0.02552871,-0.09685739;-0.7164872;0.104781,-0.1108465;-0.7047222;0.007457845,0.01612451;0.3994199;0.01263876,37.22141
+0;0;0,0.002013252;0.1994052;0.01528117,0.00540969;0.4991926;0.02436955,0.1167057;0.3731602;-0.008435849,0.1854845;0.1022346;0.007959403,0.2288846;-0.1742209;-0.001465217,-0.1067019;0.3592273;0.001451729,-0.1956181;0.09640887;0.0391398,-0.2288064;-0.1816151;0.04023082,0.07015604;0.00693058;-0.03781662,0.08975657;-0.3702249;0.00424945,0.0948706;-0.7125156;0.0771255,0.1051799;-0.758306;0.01270852,-0.07067273;0.0007167105;-0.03748134,-0.09523631;-0.3770835;-0.004869048,-0.107122;-0.7198576;0.06487814,-0.09104419;-0.7653224;0.001265459,0.004162787;0.3992009;0.02405975,0;0;0,0.007827543;0.1996;0.009928453,0.01918543;0.4993326;0.01136678,0.1197814;0.3714848;-0.03876354,0.1926122;0.1558415;-0.201839,0.1930222;0.07889083;-0.4710572,-0.09850733;0.3618518;0.009958632,-0.180748;0.09466708;0.02573206,-0.2342399;-0.1801426;0.02145914,0.06498671;0.005030887;-0.04638337,0.09434406;-0.3676805;0.02161911,0.1030762;-0.7069139;0.1073188,0.1107291;-0.7580301;0.04933935,-0.07670392;0.0009328598;-0.02270768,-0.08782199;-0.3757839;0.02588101,-0.09668296;-0.7165344;0.1053204,-0.1110468;-0.7047461;0.008047462,0.01540538;0.3994256;0.01343763,37.24362
+0;0;0,0.002013252;0.1994052;0.01528117,0.00540969;0.4991926;0.02436955,0.1167057;0.3731602;-0.008435849,0.1854845;0.1022346;0.007959403,0.2288846;-0.1742209;-0.001465217,-0.1067019;0.3592273;0.001451729,-0.1956181;0.09640887;0.0391398,-0.2288064;-0.1816151;0.04023082,0.07015604;0.00693058;-0.03781662,0.08975657;-0.3702249;0.00424945,0.0948706;-0.7125156;0.0771255,0.1051799;-0.758306;0.01270852,-0.07067273;0.0007167105;-0.03748134,-0.09523631;-0.3770835;-0.004869048,-0.107122;-0.7198576;0.06487814,-0.09104419;-0.7653224;0.001265459,0.004162787;0.3992009;0.02405975,0;0;0,0.007827543;0.1996;0.009928453,0.01918543;0.4993326;0.01136678,0.1197814;0.3714848;-0.03876354,0.1926122;0.1558415;-0.201839,0.1930222;0.07889083;-0.4710572,-0.09850733;0.3618518;0.009958632,-0.180748;0.09466708;0.02573206,-0.2342399;-0.1801426;0.02145914,0.06498671;0.005030887;-0.04638337,0.09434406;-0.3676805;0.02161911,0.1030762;-0.7069139;0.1073188,0.1107291;-0.7580301;0.04933935,-0.07670392;0.0009328598;-0.02270768,-0.08782199;-0.3757839;0.02588101,-0.09668296;-0.7165344;0.1053204,-0.1110468;-0.7047461;0.008047462,0.01540538;0.3994256;0.01343763,37.25494
+0;0;0,0.002120049;0.1993871;0.01550056,0.005805837;0.4991587;0.0249962,0.1169203;0.3729795;-0.008082358,0.1857141;0.1019501;0.006425853,0.2286261;-0.1745219;-0.004610919,-0.1064835;0.3592237;0.002229039,-0.1949708;0.09626254;0.03993104,-0.2281773;-0.1817612;0.04030106,0.06994825;0.006830465;-0.03821764,0.09030987;-0.3701511;0.005029183,0.09577397;-0.7123709;0.07821208,0.1059697;-0.7583007;0.01394142,-0.07082392;0.0007958862;-0.03719325,-0.09494497;-0.3769816;-0.003991589,-0.1064551;-0.7197319;0.06593484,-0.09091659;-0.7651159;0.002092689,0.004450358;0.3991689;0.0245463,0;0;0,0.00789223;0.1995872;0.01013219,0.01932889;0.4993156;0.01170436,0.1197008;0.3717409;-0.03901143,0.192409;0.1551723;-0.2009112,0.1952937;0.08678365;-0.4724157,-0.09842057;0.3619857;0.009979398,-0.1810498;0.09493211;0.02594067,-0.2343287;-0.1799158;0.02146973,0.06492694;0.005036375;-0.04646641,0.09470998;-0.3675637;0.02195974,0.1034733;-0.7067752;0.1077431,0.1108456;-0.7578602;0.04968386,-0.07675314;0.0009204301;-0.02254128,-0.08772145;-0.3757774;0.02622835,-0.09667953;-0.716506;0.1057502,-0.1111599;-0.7047042;0.008492038,0.01553266;0.3994085;0.01374751,37.27713
+0;0;0,0.002120049;0.1993871;0.01550056,0.005805837;0.4991587;0.0249962,0.1169203;0.3729795;-0.008082358,0.1857141;0.1019501;0.006425853,0.2286261;-0.1745219;-0.004610919,-0.1064835;0.3592237;0.002229039,-0.1949708;0.09626254;0.03993104,-0.2281773;-0.1817612;0.04030106,0.06994825;0.006830465;-0.03821764,0.09030987;-0.3701511;0.005029183,0.09577397;-0.7123709;0.07821208,0.1059697;-0.7583007;0.01394142,-0.07082392;0.0007958862;-0.03719325,-0.09494497;-0.3769816;-0.003991589,-0.1064551;-0.7197319;0.06593484,-0.09091659;-0.7651159;0.002092689,0.004450358;0.3991689;0.0245463,0;0;0,0.00789223;0.1995872;0.01013219,0.01932889;0.4993156;0.01170436,0.1197008;0.3717409;-0.03901143,0.192409;0.1551723;-0.2009112,0.1952937;0.08678365;-0.4724157,-0.09842057;0.3619857;0.009979398,-0.1810498;0.09493211;0.02594067,-0.2343287;-0.1799158;0.02146973,0.06492694;0.005036375;-0.04646641,0.09470998;-0.3675637;0.02195974,0.1034733;-0.7067752;0.1077431,0.1108456;-0.7578602;0.04968386,-0.07675314;0.0009204301;-0.02254128,-0.08772145;-0.3757774;0.02622835,-0.09667953;-0.716506;0.1057502,-0.1111599;-0.7047042;0.008492038,0.01553266;0.3994085;0.01374751,37.28838
+0;0;0,0.002120049;0.1993871;0.01550056,0.005805837;0.4991587;0.0249962,0.1169203;0.3729795;-0.008082358,0.1857141;0.1019501;0.006425853,0.2286261;-0.1745219;-0.004610919,-0.1064835;0.3592237;0.002229039,-0.1949708;0.09626254;0.03993104,-0.2281773;-0.1817612;0.04030106,0.06994825;0.006830465;-0.03821764,0.09030987;-0.3701511;0.005029183,0.09577397;-0.7123709;0.07821208,0.1059697;-0.7583007;0.01394142,-0.07082392;0.0007958862;-0.03719325,-0.09494497;-0.3769816;-0.003991589,-0.1064551;-0.7197319;0.06593484,-0.09091659;-0.7651159;0.002092689,0.004450358;0.3991689;0.0245463,0;0;0,0.007764925;0.1995811;0.01034784,0.01871508;0.4993263;0.01246166,0.1190454;0.3715586;-0.03884077,0.1905184;0.1540191;-0.1999872,0.2055807;0.09994228;-0.4743024,-0.09873488;0.3616107;0.01083658,-0.1807828;0.09432954;0.02596673,-0.2339498;-0.1805394;0.02145859,0.06487639;0.005078753;-0.04653236,0.09492774;-0.3674519;0.02215387,0.1036068;-0.7066369;0.1080505,0.1111004;-0.7576363;0.04988737,-0.07679106;0.0008786202;-0.02241339,-0.08767625;-0.3757938;0.0265699,-0.09665591;-0.7165155;0.1061191,-0.1113945;-0.7046998;0.008897163,0.01510526;0.3994079;0.01427104,37.29947
+0;0;0,0.002251922;0.1993537;0.01590743,0.006066479;0.4991109;0.02578358,0.11698;0.3726126;-0.00776146,0.1849215;0.1012836;0.005066622,0.2276929;-0.1751173;-0.008091592,-0.1065108;0.3597937;0.003122974,-0.1936763;0.09628746;0.04009093,-0.2271611;-0.1817023;0.04076003,0.06984447;0.00668761;-0.03843208,0.09055346;-0.3702266;0.005235434,0.09631508;-0.7123084;0.07903775,0.1067005;-0.7582648;0.01482897,-0.07091907;0.0009286605;-0.0370084,-0.09459868;-0.3768103;-0.003058884,-0.1059583;-0.7195637;0.06687719,-0.09028615;-0.7647653;0.002852902,0.004687611;0.399122;0.02521834,0;0;0,0.007764925;0.1995811;0.01034784,0.01871508;0.4993263;0.01246166,0.1190454;0.3715586;-0.03884077,0.1905184;0.1540191;-0.1999872,0.2055807;0.09994228;-0.4743024,-0.09873488;0.3616107;0.01083658,-0.1807828;0.09432954;0.02596673,-0.2339498;-0.1805394;0.02145859,0.06487639;0.005078753;-0.04653236,0.09492774;-0.3674519;0.02215387,0.1036068;-0.7066369;0.1080505,0.1111004;-0.7576363;0.04988737,-0.07679106;0.0008786202;-0.02241339,-0.08767625;-0.3757938;0.0265699,-0.09665591;-0.7165155;0.1061191,-0.1113945;-0.7046998;0.008897163,0.01510526;0.3994079;0.01427104,37.31082
+0;0;0,0.002251922;0.1993537;0.01590743,0.006066479;0.4991109;0.02578358,0.11698;0.3726126;-0.00776146,0.1849215;0.1012836;0.005066622,0.2276929;-0.1751173;-0.008091592,-0.1065108;0.3597937;0.003122974,-0.1936763;0.09628746;0.04009093,-0.2271611;-0.1817023;0.04076003,0.06984447;0.00668761;-0.03843208,0.09055346;-0.3702266;0.005235434,0.09631508;-0.7123084;0.07903775,0.1067005;-0.7582648;0.01482897,-0.07091907;0.0009286605;-0.0370084,-0.09459868;-0.3768103;-0.003058884,-0.1059583;-0.7195637;0.06687719,-0.09028615;-0.7647653;0.002852902,0.004687611;0.399122;0.02521834,0;0;0,0.00783591;0.1995735;0.01044066,0.01892737;0.4993122;0.01260688,0.1188802;0.3713954;-0.03921585,0.2341879;0.1879475;-0.2165601,0.07836351;0.0609937;-0.4114999,-0.09866313;0.3618519;0.01074103,-0.1815697;0.09486863;0.02643852,-0.2338887;-0.1801517;0.02128563,0.06481132;0.005123467;-0.04661804,0.0949448;-0.3673084;0.02256623,0.1036844;-0.7065074;0.1084013,0.1111428;-0.7574118;0.05010161,-0.07683957;0.0008328544;-0.02224831,-0.08764122;-0.3758473;0.02669423,-0.09659788;-0.7165179;0.1064646,-0.1114345;-0.7046962;0.009256475,0.01525287;0.3993962;0.01442491,37.3331
+0;0;0,0.002251922;0.1993537;0.01590743,0.006066479;0.4991109;0.02578358,0.11698;0.3726126;-0.00776146,0.1849215;0.1012836;0.005066622,0.2276929;-0.1751173;-0.008091592,-0.1065108;0.3597937;0.003122974,-0.1936763;0.09628746;0.04009093,-0.2271611;-0.1817023;0.04076003,0.06984447;0.00668761;-0.03843208,0.09055346;-0.3702266;0.005235434,0.09631508;-0.7123084;0.07903775,0.1067005;-0.7582648;0.01482897,-0.07091907;0.0009286605;-0.0370084,-0.09459868;-0.3768103;-0.003058884,-0.1059583;-0.7195637;0.06687719,-0.09028615;-0.7647653;0.002852902,0.004687611;0.399122;0.02521834,0;0;0,0.00783591;0.1995735;0.01044066,0.01892737;0.4993122;0.01260688,0.1188802;0.3713954;-0.03921585,0.2341879;0.1879475;-0.2165601,0.07836351;0.0609937;-0.4114999,-0.09866313;0.3618519;0.01074103,-0.1815697;0.09486863;0.02643852,-0.2338887;-0.1801517;0.02128563,0.06481132;0.005123467;-0.04661804,0.0949448;-0.3673084;0.02256623,0.1036844;-0.7065074;0.1084013,0.1111428;-0.7574118;0.05010161,-0.07683957;0.0008328544;-0.02224831,-0.08764122;-0.3758473;0.02669423,-0.09659788;-0.7165179;0.1064646,-0.1114345;-0.7046962;0.009256475,0.01525287;0.3993962;0.01442491,37.35539
+0;0;0,0.002652786;0.1993237;0.01621809,0.007050036;0.4990577;0.02652822,0.1175693;0.3722014;-0.007561501,0.1851192;0.1007494;0.004718252,0.2279725;-0.175565;-0.009910219,-0.1057606;0.3597344;0.003997454,-0.1922572;0.09596825;0.04068214,-0.2257758;-0.1820176;0.04129546,0.06971139;0.006759583;-0.03866044,0.09157205;-0.3700013;0.005761988,0.09778255;-0.7119784;0.08001211,0.108038;-0.7580242;0.01588826,-0.07102171;0.0008850209;-0.03681213,-0.09321387;-0.3768623;-0.001962669,-0.1045284;-0.7196412;0.06785566,-0.08860175;-0.7646812;0.003704742,0.005485621;0.3990724;0.02583306,0;0;0,0.007767955;0.1995613;0.01072147,0.01871133;0.4993032;0.01324204,0.1182968;0.3711342;-0.03940505,0.1253888;0.1341023;-0.1882861,0.1981461;0.09890179;-0.4563669,-0.09877034;0.3616662;0.0115155,-0.1814174;0.09456432;0.02655012,-0.2333681;-0.1805176;0.02097787,0.06449144;0.005130759;-0.0470588,0.09514296;-0.3671318;0.02280564,0.1036605;-0.706239;0.1090251,0.111106;-0.7571383;0.05071661,-0.07696575;0.0007854344;-0.02180953,-0.08725313;-0.3760771;0.02582235,-0.096627;-0.7165269;0.1064826,-0.1117721;-0.7046918;0.009319521,0.01509726;0.3993827;0.01492606,37.37768
+0;0;0,0.002652786;0.1993237;0.01621809,0.007050036;0.4990577;0.02652822,0.1175693;0.3722014;-0.007561501,0.1851192;0.1007494;0.004718252,0.2279725;-0.175565;-0.009910219,-0.1057606;0.3597344;0.003997454,-0.1922572;0.09596825;0.04068214,-0.2257758;-0.1820176;0.04129546,0.06971139;0.006759583;-0.03866044,0.09157205;-0.3700013;0.005761988,0.09778255;-0.7119784;0.08001211,0.108038;-0.7580242;0.01588826,-0.07102171;0.0008850209;-0.03681213,-0.09321387;-0.3768623;-0.001962669,-0.1045284;-0.7196412;0.06785566,-0.08860175;-0.7646812;0.003704742,0.005485621;0.3990724;0.02583306,0;0;0,0.007767955;0.1995613;0.01072147,0.01871133;0.4993032;0.01324204,0.1182968;0.3711342;-0.03940505,0.1253888;0.1341023;-0.1882861,0.1981461;0.09890179;-0.4563669,-0.09877034;0.3616662;0.0115155,-0.1814174;0.09456432;0.02655012,-0.2333681;-0.1805176;0.02097787,0.06449144;0.005130759;-0.0470588,0.09514296;-0.3671318;0.02280564,0.1036605;-0.706239;0.1090251,0.111106;-0.7571383;0.05071661,-0.07696575;0.0007854344;-0.02180953,-0.08725313;-0.3760771;0.02582235,-0.096627;-0.7165269;0.1064826,-0.1117721;-0.7046918;0.009319521,0.01509726;0.3993827;0.01492606,37.3889
+0;0;0,0.002652786;0.1993237;0.01621809,0.007050036;0.4990577;0.02652822,0.1175693;0.3722014;-0.007561501,0.1851192;0.1007494;0.004718252,0.2279725;-0.175565;-0.009910219,-0.1057606;0.3597344;0.003997454,-0.1922572;0.09596825;0.04068214,-0.2257758;-0.1820176;0.04129546,0.06971139;0.006759583;-0.03866044,0.09157205;-0.3700013;0.005761988,0.09778255;-0.7119784;0.08001211,0.108038;-0.7580242;0.01588826,-0.07102171;0.0008850209;-0.03681213,-0.09321387;-0.3768623;-0.001962669,-0.1045284;-0.7196412;0.06785566,-0.08860175;-0.7646812;0.003704742,0.005485621;0.3990724;0.02583306,0;0;0,0.007772704;0.1995523;0.01088503,0.01874131;0.4992917;0.01354377,0.1180332;0.3712344;-0.03973994,0.1270771;0.1338542;-0.1879587,0.1855432;0.1304594;-0.4617655,-0.09877776;0.3617781;0.01146283,-0.182128;0.09491783;0.02690141,-0.2339436;-0.1801803;0.02088716,0.06441315;0.005114816;-0.04716763,0.09525843;-0.3670518;0.02312117,0.1038027;-0.706131;0.109448,0.1112421;-0.7571995;0.05137432,-0.07702748;0.0007729271;-0.02159096,-0.08733187;-0.3761127;0.02585426,-0.09653407;-0.716499;0.1068019,-0.1117963;-0.7046529;0.009655081,0.01512083;0.3993708;0.01519077,37.41118
+0;0;0,0.002536567;0.1993176;0.01631194,0.006881182;0.4990436;0.02689029,0.1171445;0.3718569;-0.007880624,0.1856234;0.1006279;0.004179737,0.227459;-0.1757241;-0.01253407,-0.1059981;0.3597258;0.004587101,-0.192176;0.09583601;0.04113217,-0.2253366;-0.182193;0.04062129,0.06951023;0.006837092;-0.03900747,0.09152319;-0.369818;0.006228805,0.09795127;-0.711718;0.08081516,0.1075685;-0.7578003;0.01663581,-0.07116971;0.0008399144;-0.03652624,-0.09451008;-0.3768457;-0.001758557,-0.1045163;-0.7195517;0.06861524,-0.08928715;-0.76491;0.004668422,0.005314411;0.399059;0.02609111,0;0;0,0.007772704;0.1995523;0.01088503,0.01874131;0.4992917;0.01354377,0.1180332;0.3712344;-0.03973994,0.1270771;0.1338542;-0.1879587,0.1855432;0.1304594;-0.4617655,-0.09877776;0.3617781;0.01146283,-0.182128;0.09491783;0.02690141,-0.2339436;-0.1801803;0.02088716,0.06441315;0.005114816;-0.04716763,0.09525843;-0.3670518;0.02312117,0.1038027;-0.706131;0.109448,0.1112421;-0.7571995;0.05137432,-0.07702748;0.0007729271;-0.02159096,-0.08733187;-0.3761127;0.02585426,-0.09653407;-0.716499;0.1068019,-0.1117963;-0.7046529;0.009655081,0.01512083;0.3993708;0.01519077,37.42243
+0;0;0,0.002536567;0.1993176;0.01631194,0.006881182;0.4990436;0.02689029,0.1171445;0.3718569;-0.007880624,0.1856234;0.1006279;0.004179737,0.227459;-0.1757241;-0.01253407,-0.1059981;0.3597258;0.004587101,-0.192176;0.09583601;0.04113217,-0.2253366;-0.182193;0.04062129,0.06951023;0.006837092;-0.03900747,0.09152319;-0.369818;0.006228805,0.09795127;-0.711718;0.08081516,0.1075685;-0.7578003;0.01663581,-0.07116971;0.0008399144;-0.03652624,-0.09451008;-0.3768457;-0.001758557,-0.1045163;-0.7195517;0.06861524,-0.08928715;-0.76491;0.004668422,0.005314411;0.399059;0.02609111,0;0;0,0.007751406;0.1995426;0.011075,0.01875284;0.4992787;0.01386007,0.1177699;0.3712352;-0.03994533,0.1316341;0.1337561;-0.1876324,0.1878427;0.1301585;-0.461909,-0.09881286;0.3619089;0.01152849,-0.1826244;0.09520274;0.02713105,-0.2342306;-0.1799354;0.02114516,0.06441969;0.00515957;-0.04715381,0.09517746;-0.3669817;0.02330792,0.1037758;-0.7060106;0.1098266,0.1111448;-0.7571309;0.05181622,-0.07704908;0.0007120719;-0.02151587,-0.08737854;-0.3761355;0.02622496,-0.09658814;-0.7164589;0.1074358,-0.1119383;-0.7046022;0.01030087,0.01512518;0.3993579;0.01549084,37.44463
+0;0;0,0.002536567;0.1993176;0.01631194,0.006881182;0.4990436;0.02689029,0.1171445;0.3718569;-0.007880624,0.1856234;0.1006279;0.004179737,0.227459;-0.1757241;-0.01253407,-0.1059981;0.3597258;0.004587101,-0.192176;0.09583601;0.04113217,-0.2253366;-0.182193;0.04062129,0.06951023;0.006837092;-0.03900747,0.09152319;-0.369818;0.006228805,0.09795127;-0.711718;0.08081516,0.1075685;-0.7578003;0.01663581,-0.07116971;0.0008399144;-0.03652624,-0.09451008;-0.3768457;-0.001758557,-0.1045163;-0.7195517;0.06861524,-0.08928715;-0.76491;0.004668422,0.005314411;0.399059;0.02609111,0;0;0,0.007751406;0.1995426;0.011075,0.01875284;0.4992787;0.01386007,0.1177699;0.3712352;-0.03994533,0.1316341;0.1337561;-0.1876324,0.1878427;0.1301585;-0.461909,-0.09881286;0.3619089;0.01152849,-0.1826244;0.09520274;0.02713105,-0.2342306;-0.1799354;0.02114516,0.06441969;0.00515957;-0.04715381,0.09517746;-0.3669817;0.02330792,0.1037758;-0.7060106;0.1098266,0.1111448;-0.7571309;0.05181622,-0.07704908;0.0007120719;-0.02151587,-0.08737854;-0.3761355;0.02622496,-0.09658814;-0.7164589;0.1074358,-0.1119383;-0.7046022;0.01030087,0.01512518;0.3993579;0.01549084,37.45601
+0;0;0,0.002394981;0.1993133;0.01638519,0.006594719;0.4990342;0.02718209,0.1169039;0.372158;-0.007886309,0.1855369;0.1009044;0.002648752,0.2278391;-0.1752872;-0.01548262,-0.1062125;0.3594862;0.005021721,-0.1926596;0.09571731;0.04180286,-0.2254455;-0.1823562;0.04133281,0.06924961;0.006973496;-0.03944442,0.09126803;-0.3696156;0.006335653,0.09786828;-0.7113992;0.0814386,0.1074992;-0.7576061;0.01740921,-0.07134073;0.0007452479;-0.03619315,-0.09484382;-0.3768891;-0.0009810291,-0.1043884;-0.7196618;0.06913173,-0.08929544;-0.765348;0.005540706,0.005062687;0.3990498;0.02629495,0;0;0,0.0077676;0.1995305;0.01128079,0.01887658;0.4992597;0.01426654,0.117706;0.3715181;-0.04001966,0.1341426;0.1331247;-0.1859594,0.1916991;0.1317386;-0.4599764,-0.09873498;0.3619529;0.01172215,-0.1828377;0.09536037;0.02769563,-0.2343053;-0.1797974;0.02142776,0.06432142;0.005205219;-0.04728276,0.09540702;-0.3668402;0.02354019,0.103921;-0.7058097;0.1102996,0.1109488;-0.7568857;0.05218507,-0.07711376;0.0006419618;-0.02128511,-0.08734617;-0.3761695;0.02676065,-0.0965616;-0.7164958;0.1079588,-0.1120111;-0.704626;0.01083721,0.01521749;0.3993393;0.01585602,37.46732
+0;0;0,0.002394981;0.1993133;0.01638519,0.006594719;0.4990342;0.02718209,0.1169039;0.372158;-0.007886309,0.1855369;0.1009044;0.002648752,0.2278391;-0.1752872;-0.01548262,-0.1062125;0.3594862;0.005021721,-0.1926596;0.09571731;0.04180286,-0.2254455;-0.1823562;0.04133281,0.06924961;0.006973496;-0.03944442,0.09126803;-0.3696156;0.006335653,0.09786828;-0.7113992;0.0814386,0.1074992;-0.7576061;0.01740921,-0.07134073;0.0007452479;-0.03619315,-0.09484382;-0.3768891;-0.0009810291,-0.1043884;-0.7196618;0.06913173,-0.08929544;-0.765348;0.005540706,0.005062687;0.3990498;0.02629495,0;0;0,0.0077676;0.1995305;0.01128079,0.01887658;0.4992597;0.01426654,0.117706;0.3715181;-0.04001966,0.1341426;0.1331247;-0.1859594,0.1916991;0.1317386;-0.4599764,-0.09873498;0.3619529;0.01172215,-0.1828377;0.09536037;0.02769563,-0.2343053;-0.1797974;0.02142776,0.06432142;0.005205219;-0.04728276,0.09540702;-0.3668402;0.02354019,0.103921;-0.7058097;0.1102996,0.1109488;-0.7568857;0.05218507,-0.07711376;0.0006419618;-0.02128511,-0.08734617;-0.3761695;0.02676065,-0.0965616;-0.7164958;0.1079588,-0.1120111;-0.704626;0.01083721,0.01521749;0.3993393;0.01585602,37.48967
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.007665782;0.1995209;0.01151654,0.01849288;0.4992564;0.01500815,0.117391;0.3713599;-0.03947436,0.1402159;0.1423297;-0.198924,0.184715;0.1702807;-0.4739487,-0.09886076;0.3614248;0.01277433,-0.1715398;0.0911206;0.02007935,-0.231529;-0.1823764;0.0192569,0.06423743;0.005278013;-0.04738876,0.09563208;-0.3666644;0.02383769,0.1040272;-0.7055925;0.1107704,0.111089;-0.7563238;0.05218202,-0.07716537;0.0005592828;-0.0210996,-0.08727422;-0.3762502;0.02698785,-0.0963299;-0.7165587;0.1082786,-0.1119633;-0.7046754;0.01118385,0.01493804;0.3993292;0.01639254,37.51164
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.007665782;0.1995209;0.01151654,0.01849288;0.4992564;0.01500815,0.117391;0.3713599;-0.03947436,0.1402159;0.1423297;-0.198924,0.184715;0.1702807;-0.4739487,-0.09886076;0.3614248;0.01277433,-0.1715398;0.0911206;0.02007935,-0.231529;-0.1823764;0.0192569,0.06423743;0.005278013;-0.04738876,0.09563208;-0.3666644;0.02383769,0.1040272;-0.7055925;0.1107704,0.111089;-0.7563238;0.05218202,-0.07716537;0.0005592828;-0.0210996,-0.08727422;-0.3762502;0.02698785,-0.0963299;-0.7165587;0.1082786,-0.1119633;-0.7046754;0.01118385,0.01493804;0.3993292;0.01639254,37.52285
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.53422
+0;0;0,0.002277154;0.1992974;0.01659426,0.006358744;0.4990063;0.02777259,0.1165174;0.3721353;-0.008024875,0.1859543;0.1010689;0.002051398,0.2278179;-0.1750301;-0.01836397,-0.1064237;0.3593784;0.005655659,-0.1928527;0.0956274;0.04260759,-0.2252403;-0.182492;0.04179028,0.06884488;0.007084568;-0.0401272,0.09130186;-0.3693848;0.006418522,0.09797631;-0.7109703;0.08241071,0.1083986;-0.7577704;0.01921961,-0.07158381;0.0006782069;-0.03571132,-0.09517132;-0.3769807;-0.000820864,-0.1041775;-0.7196993;0.06962681,-0.08883201;-0.7655033;0.006237008,0.004857345;0.3990229;0.02674695,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002408861;0.1992783;0.01680361,0.006633406;0.498975;0.02825377,0.1165854;0.371859;-0.007983722,0.1861499;0.1007749;0.000628137,0.2286088;-0.1750826;-0.02173074,-0.1061063;0.3591192;0.006054187,-0.192718;0.09543037;0.04302203,-0.2247528;-0.1827298;0.04220672,0.06874923;0.007196603;-0.04027097,0.09156744;-0.3692092;0.00661144,0.09858967;-0.7107438;0.08280082,0.1090652;-0.7577325;0.01984842,-0.07168137;0.0005622053;-0.0355171,-0.0948337;-0.3770837;-0.0001961626,-0.1036892;-0.7198242;0.07016374,-0.08824793;-0.7656158;0.006782331,0.005094325;0.3989931;0.02713723,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002408861;0.1992783;0.01680361,0.006633406;0.498975;0.02825377,0.1165854;0.371859;-0.007983722,0.1861499;0.1007749;0.000628137,0.2286088;-0.1750826;-0.02173074,-0.1061063;0.3591192;0.006054187,-0.192718;0.09543037;0.04302203,-0.2247528;-0.1827298;0.04220672,0.06874923;0.007196603;-0.04027097,0.09156744;-0.3692092;0.00661144,0.09858967;-0.7107438;0.08280082,0.1090652;-0.7577325;0.01984842,-0.07168137;0.0005622053;-0.0355171,-0.0948337;-0.3770837;-0.0001961626,-0.1036892;-0.7198242;0.07016374,-0.08824793;-0.7656158;0.006782331,0.005094325;0.3989931;0.02713723,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002408861;0.1992783;0.01680361,0.006633406;0.498975;0.02825377,0.1165854;0.371859;-0.007983722,0.1861499;0.1007749;0.000628137,0.2286088;-0.1750826;-0.02173074,-0.1061063;0.3591192;0.006054187,-0.192718;0.09543037;0.04302203,-0.2247528;-0.1827298;0.04220672,0.06874923;0.007196603;-0.04027097,0.09156744;-0.3692092;0.00661144,0.09858967;-0.7107438;0.08280082,0.1090652;-0.7577325;0.01984842,-0.07168137;0.0005622053;-0.0355171,-0.0948337;-0.3770837;-0.0001961626,-0.1036892;-0.7198242;0.07016374,-0.08824793;-0.7656158;0.006782331,0.005094325;0.3989931;0.02713723,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002366058;0.1992705;0.01690239,0.006592407;0.49896;0.02854373,0.1164574;0.3717966;-0.007968277,0.1861008;0.1006905;-0.0008080075,0.2287514;-0.1751212;-0.02336441,-0.1061468;0.3589686;0.00648099,-0.1945369;0.09605619;0.04474638,-0.2196333;-0.1828167;0.04447158,0.06861575;0.007040069;-0.04052551,0.0906752;-0.3693632;0.006739222,0.0980049;-0.7108637;0.08305226,0.1093268;-0.7578099;0.02019446,-0.0717736;0.0006529238;-0.03532878,-0.09491597;-0.3769847;8.705258E-05,-0.1038925;-0.7197546;0.07028819,-0.08808891;-0.7655807;0.007037498,0.005043378;0.3989789;0.02735945,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002366058;0.1992705;0.01690239,0.006592407;0.49896;0.02854373,0.1164574;0.3717966;-0.007968277,0.1861008;0.1006905;-0.0008080075,0.2287514;-0.1751212;-0.02336441,-0.1061468;0.3589686;0.00648099,-0.1945369;0.09605619;0.04474638,-0.2196333;-0.1828167;0.04447158,0.06861575;0.007040069;-0.04052551,0.0906752;-0.3693632;0.006739222,0.0980049;-0.7108637;0.08305226,0.1093268;-0.7578099;0.02019446,-0.0717736;0.0006529238;-0.03532878,-0.09491597;-0.3769847;8.705258E-05,-0.1038925;-0.7197546;0.07028819,-0.08808891;-0.7655807;0.007037498,0.005043378;0.3989789;0.02735945,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002366058;0.1992705;0.01690239,0.006592407;0.49896;0.02854373,0.1164574;0.3717966;-0.007968277,0.1861008;0.1006905;-0.0008080075,0.2287514;-0.1751212;-0.02336441,-0.1061468;0.3589686;0.00648099,-0.1945369;0.09605619;0.04474638,-0.2196333;-0.1828167;0.04447158,0.06861575;0.007040069;-0.04052551,0.0906752;-0.3693632;0.006739222,0.0980049;-0.7108637;0.08305226,0.1093268;-0.7578099;0.02019446,-0.0717736;0.0006529238;-0.03532878,-0.09491597;-0.3769847;8.705258E-05,-0.1038925;-0.7197546;0.07028819,-0.08808891;-0.7655807;0.007037498,0.005043378;0.3989789;0.02735945,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002239431;0.199261;0.01703107,0.006158227;0.4989477;0.02886897,0.1159435;0.3719905;-0.008526545,0.1859048;0.100922;-0.003301388,0.2292752;-0.1746952;-0.02684161,-0.1063914;0.3587494;0.006781157,-0.1962431;0.09644124;0.04578229,-0.2193889;-0.1826001;0.04530516,0.06850972;0.007188262;-0.04067858,0.09008422;-0.3692067;0.006875262,0.09800014;-0.7106721;0.08328663,0.1092948;-0.7575611;0.02035392,-0.07186304;0.0004725232;-0.03514939,-0.09498448;-0.3771448;0.000495743,-0.1039389;-0.7199151;0.07069784,-0.08808874;-0.7657226;0.007436521,0.00473562;0.3989659;0.0276002,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002239431;0.199261;0.01703107,0.006158227;0.4989477;0.02886897,0.1159435;0.3719905;-0.008526545,0.1859048;0.100922;-0.003301388,0.2292752;-0.1746952;-0.02684161,-0.1063914;0.3587494;0.006781157,-0.1962431;0.09644124;0.04578229,-0.2193889;-0.1826001;0.04530516,0.06850972;0.007188262;-0.04067858,0.09008422;-0.3692067;0.006875262,0.09800014;-0.7106721;0.08328663,0.1092948;-0.7575611;0.02035392,-0.07186304;0.0004725232;-0.03514939,-0.09498448;-0.3771448;0.000495743,-0.1039389;-0.7199151;0.07069784,-0.08808874;-0.7657226;0.007436521,0.00473562;0.3989659;0.0276002,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002239431;0.199261;0.01703107,0.006158227;0.4989477;0.02886897,0.1159435;0.3719905;-0.008526545,0.1859048;0.100922;-0.003301388,0.2292752;-0.1746952;-0.02684161,-0.1063914;0.3587494;0.006781157,-0.1962431;0.09644124;0.04578229,-0.2193889;-0.1826001;0.04530516,0.06850972;0.007188262;-0.04067858,0.09008422;-0.3692067;0.006875262,0.09800014;-0.7106721;0.08328663,0.1092948;-0.7575611;0.02035392,-0.07186304;0.0004725232;-0.03514939,-0.09498448;-0.3771448;0.000495743,-0.1039389;-0.7199151;0.07069784,-0.08808874;-0.7657226;0.007436521,0.00473562;0.3989659;0.0276002,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002144332;0.1992546;0.01711758,0.005912715;0.4989352;0.0291699,0.1157831;0.3721548;-0.008319013,0.1859614;0.1011232;-0.004209562,0.228705;-0.1742115;-0.03184602,-0.1068005;0.3589783;0.00766477,-0.1970125;0.09691897;0.04749853,-0.2178703;-0.182301;0.04640879,0.06836833;0.007092023;-0.04093256,0.0902094;-0.3693024;0.00650369,0.09842119;-0.710667;0.08333308,0.1093285;-0.7580243;0.02090803,-0.07190444;0.0005287021;-0.03506384,-0.09540004;-0.3770998;0.0002166666,-0.1039324;-0.7197917;0.07085286,-0.08809359;-0.765574;0.007558443,0.00453593;0.3989538;0.02781794,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002144332;0.1992546;0.01711758,0.005912715;0.4989352;0.0291699,0.1157831;0.3721548;-0.008319013,0.1859614;0.1011232;-0.004209562,0.228705;-0.1742115;-0.03184602,-0.1068005;0.3589783;0.00766477,-0.1970125;0.09691897;0.04749853,-0.2178703;-0.182301;0.04640879,0.06836833;0.007092023;-0.04093256,0.0902094;-0.3693024;0.00650369,0.09842119;-0.710667;0.08333308,0.1093285;-0.7580243;0.02090803,-0.07190444;0.0005287021;-0.03506384,-0.09540004;-0.3770998;0.0002166666,-0.1039324;-0.7197917;0.07085286,-0.08809359;-0.765574;0.007558443,0.00453593;0.3989538;0.02781794,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002144332;0.1992546;0.01711758,0.005912715;0.4989352;0.0291699,0.1157831;0.3721548;-0.008319013,0.1859614;0.1011232;-0.004209562,0.228705;-0.1742115;-0.03184602,-0.1068005;0.3589783;0.00766477,-0.1970125;0.09691897;0.04749853,-0.2178703;-0.182301;0.04640879,0.06836833;0.007092023;-0.04093256,0.0902094;-0.3693024;0.00650369,0.09842119;-0.710667;0.08333308,0.1093285;-0.7580243;0.02090803,-0.07190444;0.0005287021;-0.03506384,-0.09540004;-0.3770998;0.0002166666,-0.1039324;-0.7197917;0.07085286,-0.08809359;-0.765574;0.007558443,0.00453593;0.3989538;0.02781794,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002164113;0.1992465;0.01720935,0.00597914;0.4989214;0.02938588,0.1157741;0.3720618;-0.008270167,0.1857854;0.100965;-0.006050813,0.2291302;-0.1740175;-0.03614835,-0.1067026;0.3587471;0.00802166,-0.1969863;0.09672517;0.04793892,-0.2168509;-0.1825687;0.04734388,0.06834211;0.006935013;-0.04100318,0.09030578;-0.3694708;0.006285939,0.09878924;-0.7107295;0.08355525,0.1095237;-0.7577417;0.02067532,-0.07190625;0.0006877959;-0.03505734,-0.09568757;-0.3769155;0.0003003962,-0.1041038;-0.7195833;0.07106756,-0.08776528;-0.7656592;0.008254275,0.004587784;0.3989407;0.0279946,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002164113;0.1992465;0.01720935,0.00597914;0.4989214;0.02938588,0.1157741;0.3720618;-0.008270167,0.1857854;0.100965;-0.006050813,0.2291302;-0.1740175;-0.03614835,-0.1067026;0.3587471;0.00802166,-0.1969863;0.09672517;0.04793892,-0.2168509;-0.1825687;0.04734388,0.06834211;0.006935013;-0.04100318,0.09030578;-0.3694708;0.006285939,0.09878924;-0.7107295;0.08355525,0.1095237;-0.7577417;0.02067532,-0.07190625;0.0006877959;-0.03505734,-0.09568757;-0.3769155;0.0003003962,-0.1041038;-0.7195833;0.07106756,-0.08776528;-0.7656592;0.008254275,0.004587784;0.3989407;0.0279946,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002164113;0.1992465;0.01720935,0.00597914;0.4989214;0.02938588,0.1157741;0.3720618;-0.008270167,0.1857854;0.100965;-0.006050813,0.2291302;-0.1740175;-0.03614835,-0.1067026;0.3587471;0.00802166,-0.1969863;0.09672517;0.04793892,-0.2168509;-0.1825687;0.04734388,0.06834211;0.006935013;-0.04100318,0.09030578;-0.3694708;0.006285939,0.09878924;-0.7107295;0.08355525,0.1095237;-0.7577417;0.02067532,-0.07190625;0.0006877959;-0.03505734,-0.09568757;-0.3769155;0.0003003962,-0.1041038;-0.7195833;0.07106756,-0.08776528;-0.7656592;0.008254275,0.004587784;0.3989407;0.0279946,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002248408;0.1992445;0.01722157,0.006266333;0.4989132;0.02949092,0.1158451;0.3722937;-0.008799326,0.1862722;0.1012957;-0.008504777,0.2303617;-0.173268;-0.04122949,-0.1064867;0.3585663;0.008410092,-0.1973048;0.09677613;0.0486339,-0.2163769;-0.1825723;0.0477908,0.06810562;0.006802119;-0.04141685,0.09040967;-0.3695127;0.006433371,0.09931712;-0.7107307;0.08383486,0.1103926;-0.7572498;0.02041429,-0.07203269;0.0007940403;-0.03479456,-0.09580348;-0.3768314;0.0003332384,-0.1037787;-0.7195163;0.07106847,-0.1075859;-0.7067866;-0.02735533,0.004797767;0.3989342;0.02806216,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002248408;0.1992445;0.01722157,0.006266333;0.4989132;0.02949092,0.1158451;0.3722937;-0.008799326,0.1862722;0.1012957;-0.008504777,0.2303617;-0.173268;-0.04122949,-0.1064867;0.3585663;0.008410092,-0.1973048;0.09677613;0.0486339,-0.2163769;-0.1825723;0.0477908,0.06810562;0.006802119;-0.04141685,0.09040967;-0.3695127;0.006433371,0.09931712;-0.7107307;0.08383486,0.1103926;-0.7572498;0.02041429,-0.07203269;0.0007940403;-0.03479456,-0.09580348;-0.3768314;0.0003332384,-0.1037787;-0.7195163;0.07106847,-0.1075859;-0.7067866;-0.02735533,0.004797767;0.3989342;0.02806216,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002248408;0.1992445;0.01722157,0.006266333;0.4989132;0.02949092,0.1158451;0.3722937;-0.008799326,0.1862722;0.1012957;-0.008504777,0.2303617;-0.173268;-0.04122949,-0.1064867;0.3585663;0.008410092,-0.1973048;0.09677613;0.0486339,-0.2163769;-0.1825723;0.0477908,0.06810562;0.006802119;-0.04141685,0.09040967;-0.3695127;0.006433371,0.09931712;-0.7107307;0.08383486,0.1103926;-0.7572498;0.02041429,-0.07203269;0.0007940403;-0.03479456,-0.09580348;-0.3768314;0.0003332384,-0.1037787;-0.7195163;0.07106847,-0.1075859;-0.7067866;-0.02735533,0.004797767;0.3989342;0.02806216,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002577013;0.1992103;0.01756717,0.006868496;0.4988554;0.0303314,0.1163189;0.3723557;-0.008395189,0.1868646;0.1013961;-0.01043972,0.2324087;-0.1726263;-0.04561781,-0.1060625;0.3584929;0.009716246,-0.1972749;0.09684014;0.04994195,-0.2157145;-0.1825479;0.04842271,0.06801064;0.006924416;-0.04155244,0.09132485;-0.3692555;0.006873753,0.1006033;-0.710427;0.08443584,0.1114366;-0.7568367;0.02084169,-0.07220192;0.0006637104;-0.03444478,-0.09475449;-0.3770168;0.0008942336,-0.10245;-0.7196881;0.07172608,-0.1065757;-0.7069361;-0.02668878,0.005327736;0.3988803;0.02871837,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002577013;0.1992103;0.01756717,0.006868496;0.4988554;0.0303314,0.1163189;0.3723557;-0.008395189,0.1868646;0.1013961;-0.01043972,0.2324087;-0.1726263;-0.04561781,-0.1060625;0.3584929;0.009716246,-0.1972749;0.09684014;0.04994195,-0.2157145;-0.1825479;0.04842271,0.06801064;0.006924416;-0.04155244,0.09132485;-0.3692555;0.006873753,0.1006033;-0.710427;0.08443584,0.1114366;-0.7568367;0.02084169,-0.07220192;0.0006637104;-0.03444478,-0.09475449;-0.3770168;0.0008942336,-0.10245;-0.7196881;0.07172608,-0.1065757;-0.7069361;-0.02668878,0.005327736;0.3988803;0.02871837,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002577013;0.1992103;0.01756717,0.006868496;0.4988554;0.0303314,0.1163189;0.3723557;-0.008395189,0.1868646;0.1013961;-0.01043972,0.2324087;-0.1726263;-0.04561781,-0.1060625;0.3584929;0.009716246,-0.1972749;0.09684014;0.04994195,-0.2157145;-0.1825479;0.04842271,0.06801064;0.006924416;-0.04155244,0.09132485;-0.3692555;0.006873753,0.1006033;-0.710427;0.08443584,0.1114366;-0.7568367;0.02084169,-0.07220192;0.0006637104;-0.03444478,-0.09475449;-0.3770168;0.0008942336,-0.10245;-0.7196881;0.07172608,-0.1065757;-0.7069361;-0.02668878,0.005327736;0.3988803;0.02871837,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002674029;0.1992011;0.0176569,0.007125115;0.4988381;0.03055155,0.1164761;0.3724816;-0.008455334,0.1880722;0.1018202;-0.0125062,0.2353811;-0.1710597;-0.05371796,-0.1059194;0.3584639;0.01029057,-0.1968092;0.09660548;0.04990351,-0.2150024;-0.1828009;0.04887062,0.06804948;0.006859633;-0.04149956,0.09128699;-0.3693046;0.007085435,0.1007627;-0.7105479;0.08430722,0.1114604;-0.7574728;0.02131407,-0.07222988;0.0007505171;-0.03438431,-0.09471454;-0.3769032;0.001282386,-0.1020103;-0.7195974;0.07204572,-0.1063276;-0.7068388;-0.02636208,0.005532315;0.3988644;0.02890003,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002674029;0.1992011;0.0176569,0.007125115;0.4988381;0.03055155,0.1164761;0.3724816;-0.008455334,0.1880722;0.1018202;-0.0125062,0.2353811;-0.1710597;-0.05371796,-0.1059194;0.3584639;0.01029057,-0.1968092;0.09660548;0.04990351,-0.2150024;-0.1828009;0.04887062,0.06804948;0.006859633;-0.04149956,0.09128699;-0.3693046;0.007085435,0.1007627;-0.7105479;0.08430722,0.1114604;-0.7574728;0.02131407,-0.07222988;0.0007505171;-0.03438431,-0.09471454;-0.3769032;0.001282386,-0.1020103;-0.7195974;0.07204572,-0.1063276;-0.7068388;-0.02636208,0.005532315;0.3988644;0.02890003,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002674029;0.1992011;0.0176569,0.007125115;0.4988381;0.03055155,0.1164761;0.3724816;-0.008455334,0.1880722;0.1018202;-0.0125062,0.2353811;-0.1710597;-0.05371796,-0.1059194;0.3584639;0.01029057,-0.1968092;0.09660548;0.04990351,-0.2150024;-0.1828009;0.04887062,0.06804948;0.006859633;-0.04149956,0.09128699;-0.3693046;0.007085435,0.1007627;-0.7105479;0.08430722,0.1114604;-0.7574728;0.02131407,-0.07222988;0.0007505171;-0.03438431,-0.09471454;-0.3769032;0.001282386,-0.1020103;-0.7195974;0.07204572,-0.1063276;-0.7068388;-0.02636208,0.005532315;0.3988644;0.02890003,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002795423;0.1991823;0.017849,0.007401894;0.498808;0.03093349,0.1165456;0.3721436;-0.008388868,0.1894792;0.1019082;-0.01570606,0.2382059;-0.1697506;-0.06289917,-0.1057184;0.3583512;0.01101444,-0.1974769;0.0969519;0.05164479,-0.2146251;-0.1825179;0.05003434,0.06819127;0.006746155;-0.04128487,0.09138685;-0.3694181;0.007319849,0.1006508;-0.7106076;0.08480449,0.1120048;-0.75641;0.02057763,-0.07218209;0.0009518376;-0.03447956,-0.09466009;-0.376653;0.00170546,-0.1013758;-0.7193233;0.07264179,-0.1058636;-0.7065528;-0.02576046,0.005766914;0.3988358;0.02923556,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002795423;0.1991823;0.017849,0.007401894;0.498808;0.03093349,0.1165456;0.3721436;-0.008388868,0.1894792;0.1019082;-0.01570606,0.2382059;-0.1697506;-0.06289917,-0.1057184;0.3583512;0.01101444,-0.1974769;0.0969519;0.05164479,-0.2146251;-0.1825179;0.05003434,0.06819127;0.006746155;-0.04128487,0.09138685;-0.3694181;0.007319849,0.1006508;-0.7106076;0.08480449,0.1120048;-0.75641;0.02057763,-0.07218209;0.0009518376;-0.03447956,-0.09466009;-0.376653;0.00170546,-0.1013758;-0.7193233;0.07264179,-0.1058636;-0.7065528;-0.02576046,0.005766914;0.3988358;0.02923556,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002795423;0.1991823;0.017849,0.007401894;0.498808;0.03093349,0.1165456;0.3721436;-0.008388868,0.1894792;0.1019082;-0.01570606,0.2382059;-0.1697506;-0.06289917,-0.1057184;0.3583512;0.01101444,-0.1974769;0.0969519;0.05164479,-0.2146251;-0.1825179;0.05003434,0.06819127;0.006746155;-0.04128487,0.09138685;-0.3694181;0.007319849,0.1006508;-0.7106076;0.08480449,0.1120048;-0.75641;0.02057763,-0.07218209;0.0009518376;-0.03447956,-0.09466009;-0.376653;0.00170546,-0.1013758;-0.7193233;0.07264179,-0.1058636;-0.7065528;-0.02576046,0.005766914;0.3988358;0.02923556,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002939945;0.1991681;0.0179837,0.007813263;0.4987794;0.03130071,0.1168549;0.3722612;-0.008218281,0.1917436;0.1027308;-0.0202619,0.2418582;-0.1672387;-0.07508011,-0.1054281;0.3582116;0.01171566,-0.1971478;0.09678677;0.05226859,-0.2141499;-0.1826894;0.05026693,0.06813648;0.006447955;-0.04142274,0.09217413;-0.3696169;0.007540539,0.1018242;-0.7108135;0.08494709,0.1130603;-0.7564345;0.0204861,-0.07226194;0.001274596;-0.03430142,-0.09415903;-0.3763788;0.001732949,-0.1004127;-0.7190254;0.07282591,-0.1051078;-0.7062439;-0.0255686,0.006082367;0.3988101;0.02952547,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002939945;0.1991681;0.0179837,0.007813263;0.4987794;0.03130071,0.1168549;0.3722612;-0.008218281,0.1917436;0.1027308;-0.0202619,0.2418582;-0.1672387;-0.07508011,-0.1054281;0.3582116;0.01171566,-0.1971478;0.09678677;0.05226859,-0.2141499;-0.1826894;0.05026693,0.06813648;0.006447955;-0.04142274,0.09217413;-0.3696169;0.007540539,0.1018242;-0.7108135;0.08494709,0.1130603;-0.7564345;0.0204861,-0.07226194;0.001274596;-0.03430142,-0.09415903;-0.3763788;0.001732949,-0.1004127;-0.7190254;0.07282591,-0.1051078;-0.7062439;-0.0255686,0.006082367;0.3988101;0.02952547,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002939945;0.1991681;0.0179837,0.007813263;0.4987794;0.03130071,0.1168549;0.3722612;-0.008218281,0.1917436;0.1027308;-0.0202619,0.2418582;-0.1672387;-0.07508011,-0.1054281;0.3582116;0.01171566,-0.1971478;0.09678677;0.05226859,-0.2141499;-0.1826894;0.05026693,0.06813648;0.006447955;-0.04142274,0.09217413;-0.3696169;0.007540539,0.1018242;-0.7108135;0.08494709,0.1130603;-0.7564345;0.0204861,-0.07226194;0.001274596;-0.03430142,-0.09415903;-0.3763788;0.001732949,-0.1004127;-0.7190254;0.07282591,-0.1051078;-0.7062439;-0.0255686,0.006082367;0.3988101;0.02952547,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002943784;0.1991613;0.01805858,0.007873004;0.4987655;0.03151232,0.1167567;0.37236;-0.008512782,0.1935527;0.1035191;-0.02357788,0.2438209;-0.164574;-0.08681718,-0.1055636;0.3585583;0.01212252,-0.1977144;0.0973385;0.05301832,-0.2145296;-0.1821439;0.05039831,0.06818002;0.006386371;-0.04136059,0.09209058;-0.3696757;0.007686246,0.1020949;-0.7108303;0.08523281,0.1128261;-0.7568547;0.02116141,-0.07228471;0.001321436;-0.03425162,-0.09408802;-0.376325;0.001911823,-0.1005754;-0.71899;0.07289508,-0.1054635;-0.7062142;-0.02548902,0.006115184;0.3987975;0.02969082,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002943784;0.1991613;0.01805858,0.007873004;0.4987655;0.03151232,0.1167567;0.37236;-0.008512782,0.1935527;0.1035191;-0.02357788,0.2438209;-0.164574;-0.08681718,-0.1055636;0.3585583;0.01212252,-0.1977144;0.0973385;0.05301832,-0.2145296;-0.1821439;0.05039831,0.06818002;0.006386371;-0.04136059,0.09209058;-0.3696757;0.007686246,0.1020949;-0.7108303;0.08523281,0.1128261;-0.7568547;0.02116141,-0.07228471;0.001321436;-0.03425162,-0.09408802;-0.376325;0.001911823,-0.1005754;-0.71899;0.07289508,-0.1054635;-0.7062142;-0.02548902,0.006115184;0.3987975;0.02969082,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002943784;0.1991613;0.01805858,0.007873004;0.4987655;0.03151232,0.1167567;0.37236;-0.008512782,0.1935527;0.1035191;-0.02357788,0.2438209;-0.164574;-0.08681718,-0.1055636;0.3585583;0.01212252,-0.1977144;0.0973385;0.05301832,-0.2145296;-0.1821439;0.05039831,0.06818002;0.006386371;-0.04136059,0.09209058;-0.3696757;0.007686246,0.1020949;-0.7108303;0.08523281,0.1128261;-0.7568547;0.02116141,-0.07228471;0.001321436;-0.03425162,-0.09408802;-0.376325;0.001911823,-0.1005754;-0.71899;0.07289508,-0.1054635;-0.7062142;-0.02548902,0.006115184;0.3987975;0.02969082,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003018351;0.1991547;0.01811866,0.008034913;0.4987538;0.03165276,0.1167844;0.3722112;-0.008607768,0.1961025;0.1044336;-0.02870244,0.2447645;-0.1627078;-0.09702162,-0.1056086;0.3587207;0.0129928,-0.1973368;0.09718278;0.0527909,-0.2145539;-0.1822761;0.05028032,0.06813154;0.006375771;-0.04144203,0.09183645;-0.3697045;0.007564802,0.1015869;-0.7108554;0.08516024,0.1133801;-0.7551377;0.0192584,-0.07232745;0.001328267;-0.03416101,-0.09476145;-0.3763136;0.001662936,-0.1004191;-0.7189229;0.07298504,-0.1055732;-0.7061422;-0.02538634,0.006248567;0.3987868;0.02980538,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003018351;0.1991547;0.01811866,0.008034913;0.4987538;0.03165276,0.1167844;0.3722112;-0.008607768,0.1961025;0.1044336;-0.02870244,0.2447645;-0.1627078;-0.09702162,-0.1056086;0.3587207;0.0129928,-0.1973368;0.09718278;0.0527909,-0.2145539;-0.1822761;0.05028032,0.06813154;0.006375771;-0.04144203,0.09183645;-0.3697045;0.007564802,0.1015869;-0.7108554;0.08516024,0.1133801;-0.7551377;0.0192584,-0.07232745;0.001328267;-0.03416101,-0.09476145;-0.3763136;0.001662936,-0.1004191;-0.7189229;0.07298504,-0.1055732;-0.7061422;-0.02538634,0.006248567;0.3987868;0.02980538,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003018351;0.1991547;0.01811866,0.008034913;0.4987538;0.03165276,0.1167844;0.3722112;-0.008607768,0.1961025;0.1044336;-0.02870244,0.2447645;-0.1627078;-0.09702162,-0.1056086;0.3587207;0.0129928,-0.1973368;0.09718278;0.0527909,-0.2145539;-0.1822761;0.05028032,0.06813154;0.006375771;-0.04144203,0.09183645;-0.3697045;0.007564802,0.1015869;-0.7108554;0.08516024,0.1133801;-0.7551377;0.0192584,-0.07232745;0.001328267;-0.03416101,-0.09476145;-0.3763136;0.001662936,-0.1004191;-0.7189229;0.07298504,-0.1055732;-0.7061422;-0.02538634,0.006248567;0.3987868;0.02980538,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002942212;0.1991464;0.01822269,0.007768707;0.4987351;0.03207392,0.116549;0.3722641;-0.008447381,0.1975126;0.1053742;-0.03324085,0.2466025;-0.158783;-0.1120516,-0.1060722;0.3592964;0.01359432,-0.197588;0.09759337;0.05279073,-0.2154139;-0.1818255;0.05008791,0.06810421;0.006330038;-0.04149393,0.09213725;-0.3696967;0.00776308,0.1018955;-0.7108878;0.08518027,0.1145901;-0.7565193;0.0210029,-0.07236928;0.001375659;-0.03407042,-0.09561566;-0.3762829;0.001052886,-0.1001758;-0.718787;0.07295655,-0.1054817;-0.7059956;-0.02540864,0.006041846;0.3987695;0.03009649,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002942212;0.1991464;0.01822269,0.007768707;0.4987351;0.03207392,0.116549;0.3722641;-0.008447381,0.1975126;0.1053742;-0.03324085,0.2466025;-0.158783;-0.1120516,-0.1060722;0.3592964;0.01359432,-0.197588;0.09759337;0.05279073,-0.2154139;-0.1818255;0.05008791,0.06810421;0.006330038;-0.04149393,0.09213725;-0.3696967;0.00776308,0.1018955;-0.7108878;0.08518027,0.1145901;-0.7565193;0.0210029,-0.07236928;0.001375659;-0.03407042,-0.09561566;-0.3762829;0.001052886,-0.1001758;-0.718787;0.07295655,-0.1054817;-0.7059956;-0.02540864,0.006041846;0.3987695;0.03009649,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00341172;0.1991248;0.01837623,0.008639294;0.4987003;0.03237149,0.1172571;0.372065;-0.008261638,0.1996842;0.1061872;-0.03850719,0.2475069;-0.1553416;-0.1263462,-0.1055733;0.3597735;0.01447799,-0.1966934;0.09787074;0.05326036,-0.214366;-0.1815512;0.04993752,0.06814749;0.006168144;-0.04144724,0.09302142;-0.3697825;0.007973474,0.1031341;-0.7110112;0.08517902,0.1154733;-0.7575431;0.02200774,-0.0723671;0.001563747;-0.03406694,-0.09507899;-0.3761714;0.0005791336,-0.09892353;-0.7186088;0.0728412,-0.1044137;-0.7058061;-0.02551587,0.00681069;0.3987376;0.03034096,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003357103;0.199119;0.01844807,0.008486756;0.4986851;0.03269777,0.1170872;0.3720457;-0.008166395,0.2006385;0.1071881;-0.04379845,0.2482861;-0.1509739;-0.1411745,-0.105779;0.3598753;0.01499072,-0.1969474;0.09794128;0.05344739,-0.2151111;-0.1814447;0.04976452,0.06803881;0.006311846;-0.04160386,0.0927002;-0.3696021;0.00820075,0.1030772;-0.7108433;0.08531605,0.1148779;-0.7578401;0.02260844,-0.07244027;0.001396607;-0.03391838,-0.09527561;-0.3763424;0.0006034821,-0.09880948;-0.718751;0.07301825,-0.1044412;-0.7059408;-0.02533212,0.006685826;0.3987242;0.03056072,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003357103;0.199119;0.01844807,0.008486756;0.4986851;0.03269777,0.1170872;0.3720457;-0.008166395,0.2006385;0.1071881;-0.04379845,0.2482861;-0.1509739;-0.1411745,-0.105779;0.3598753;0.01499072,-0.1969474;0.09794128;0.05344739,-0.2151111;-0.1814447;0.04976452,0.06803881;0.006311846;-0.04160386,0.0927002;-0.3696021;0.00820075,0.1030772;-0.7108433;0.08531605,0.1148779;-0.7578401;0.02260844,-0.07244027;0.001396607;-0.03391838,-0.09527561;-0.3763424;0.0006034821,-0.09880948;-0.718751;0.07301825,-0.1044412;-0.7059408;-0.02533212,0.006685826;0.3987242;0.03056072,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003357103;0.199119;0.01844807,0.008486756;0.4986851;0.03269777,0.1170872;0.3720457;-0.008166395,0.2006385;0.1071881;-0.04379845,0.2482861;-0.1509739;-0.1411745,-0.105779;0.3598753;0.01499072,-0.1969474;0.09794128;0.05344739,-0.2151111;-0.1814447;0.04976452,0.06803881;0.006311846;-0.04160386,0.0927002;-0.3696021;0.00820075,0.1030772;-0.7108433;0.08531605,0.1148779;-0.7578401;0.02260844,-0.07244027;0.001396607;-0.03391838,-0.09527561;-0.3763424;0.0006034821,-0.09880948;-0.718751;0.07301825,-0.1044412;-0.7059408;-0.02533212,0.006685826;0.3987242;0.03056072,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003223439;0.1991136;0.01853037,0.008105448;0.4986702;0.03307657,0.116784;0.3720921;-0.007934701,0.2016444;0.1082245;-0.0475908,0.2483933;-0.1448507;-0.1578972,-0.1062482;0.3601268;0.01577992,-0.1969192;0.09786752;0.05318099,-0.2152247;-0.181508;0.04941257,0.06804454;0.006280955;-0.04159915,0.09218526;-0.3696653;0.008216541,0.1031927;-0.7108732;0.08539166,0.1144386;-0.7573043;0.02189489,-0.07246923;0.001429613;-0.03385508,-0.09559357;-0.3762997;0.00058081,-0.09874292;-0.7186934;0.07308345,-0.1045594;-0.7058755;-0.02525751,0.006379338;0.3987105;0.03082454,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003223439;0.1991136;0.01853037,0.008105448;0.4986702;0.03307657,0.116784;0.3720921;-0.007934701,0.2016444;0.1082245;-0.0475908,0.2483933;-0.1448507;-0.1578972,-0.1062482;0.3601268;0.01577992,-0.1969192;0.09786752;0.05318099,-0.2152247;-0.181508;0.04941257,0.06804454;0.006280955;-0.04159915,0.09218526;-0.3696653;0.008216541,0.1031927;-0.7108732;0.08539166,0.1144386;-0.7573043;0.02189489,-0.07246923;0.001429613;-0.03385508,-0.09559357;-0.3762997;0.00058081,-0.09874292;-0.7186934;0.07308345,-0.1045594;-0.7058755;-0.02525751,0.006379338;0.3987105;0.03082454,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003223439;0.1991136;0.01853037,0.008105448;0.4986702;0.03307657,0.116784;0.3720921;-0.007934701,0.2016444;0.1082245;-0.0475908,0.2483933;-0.1448507;-0.1578972,-0.1062482;0.3601268;0.01577992,-0.1969192;0.09786752;0.05318099,-0.2152247;-0.181508;0.04941257,0.06804454;0.006280955;-0.04159915,0.09218526;-0.3696653;0.008216541,0.1031927;-0.7108732;0.08539166,0.1144386;-0.7573043;0.02189489,-0.07246923;0.001429613;-0.03385508,-0.09559357;-0.3762997;0.00058081,-0.09874292;-0.7186934;0.07308345,-0.1045594;-0.7058755;-0.02525751,0.006379338;0.3987105;0.03082454,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003200646;0.1991093;0.01858054,0.008085553;0.4986595;0.0332635,0.1166634;0.3716571;-0.00777128,0.2024591;0.1089655;-0.05285119,0.2471698;-0.1395255;-0.1739016,-0.1063027;0.3600414;0.01631377,-0.196686;0.09750712;0.05246064,-0.2240412;-0.1810828;0.04618487,0.06804145;0.006261021;-0.0416072,0.09147106;-0.3697611;0.007975083,0.1032124;-0.7109094;0.08530562,0.1142478;-0.7571331;0.02152351,-0.07248785;0.001449417;-0.03381437,-0.09578057;-0.3762466;0.0008719787,-0.0986312;-0.7186799;0.07319965,-0.104553;-0.7058572;-0.02513587,0.006351565;0.3987011;0.03095742,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003200646;0.1991093;0.01858054,0.008085553;0.4986595;0.0332635,0.1166634;0.3716571;-0.00777128,0.2024591;0.1089655;-0.05285119,0.2471698;-0.1395255;-0.1739016,-0.1063027;0.3600414;0.01631377,-0.196686;0.09750712;0.05246064,-0.2240412;-0.1810828;0.04618487,0.06804145;0.006261021;-0.0416072,0.09147106;-0.3697611;0.007975083,0.1032124;-0.7109094;0.08530562,0.1142478;-0.7571331;0.02152351,-0.07248785;0.001449417;-0.03381437,-0.09578057;-0.3762466;0.0008719787,-0.0986312;-0.7186799;0.07319965,-0.104553;-0.7058572;-0.02513587,0.006351565;0.3987011;0.03095742,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003200646;0.1991093;0.01858054,0.008085553;0.4986595;0.0332635,0.1166634;0.3716571;-0.00777128,0.2024591;0.1089655;-0.05285119,0.2471698;-0.1395255;-0.1739016,-0.1063027;0.3600414;0.01631377,-0.196686;0.09750712;0.05246064,-0.2240412;-0.1810828;0.04618487,0.06804145;0.006261021;-0.0416072,0.09147106;-0.3697611;0.007975083,0.1032124;-0.7109094;0.08530562,0.1142478;-0.7571331;0.02152351,-0.07248785;0.001449417;-0.03381437,-0.09578057;-0.3762466;0.0008719787,-0.0986312;-0.7186799;0.07319965,-0.104553;-0.7058572;-0.02513587,0.006351565;0.3987011;0.03095742,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003067685;0.1990929;0.01877738,0.007830259;0.4986203;0.03396927,0.116248;0.3712925;-0.007541738,0.2036722;0.1099901;-0.05732202,0.2459977;-0.134322;-0.1873995,-0.1065343;0.3599092;0.01709272,-0.1965122;0.09709284;0.05218599,-0.2249332;-0.1813827;0.04557862,0.06800281;0.006247884;-0.0416723,0.0913448;-0.3697656;0.008016933,0.1033304;-0.7109315;0.08523208,0.1153509;-0.7575715;0.02213039,-0.07256666;0.001469901;-0.03364401,-0.09598277;-0.3762548;0.0006450713,-0.0987066;-0.7186268;0.07326718,-0.1048225;-0.7057925;-0.02505848,0.006119965;0.398666;0.03147753,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003067685;0.1990929;0.01877738,0.007830259;0.4986203;0.03396927,0.116248;0.3712925;-0.007541738,0.2036722;0.1099901;-0.05732202,0.2459977;-0.134322;-0.1873995,-0.1065343;0.3599092;0.01709272,-0.1965122;0.09709284;0.05218599,-0.2249332;-0.1813827;0.04557862,0.06800281;0.006247884;-0.0416723,0.0913448;-0.3697656;0.008016933,0.1033304;-0.7109315;0.08523208,0.1153509;-0.7575715;0.02213039,-0.07256666;0.001469901;-0.03364401,-0.09598277;-0.3762548;0.0006450713,-0.0987066;-0.7186268;0.07326718,-0.1048225;-0.7057925;-0.02505848,0.006119965;0.398666;0.03147753,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003067685;0.1990929;0.01877738,0.007830259;0.4986203;0.03396927,0.116248;0.3712925;-0.007541738,0.2036722;0.1099901;-0.05732202,0.2459977;-0.134322;-0.1873995,-0.1065343;0.3599092;0.01709272,-0.1965122;0.09709284;0.05218599,-0.2249332;-0.1813827;0.04557862,0.06800281;0.006247884;-0.0416723,0.0913448;-0.3697656;0.008016933,0.1033304;-0.7109315;0.08523208,0.1153509;-0.7575715;0.02213039,-0.07256666;0.001469901;-0.03364401,-0.09598277;-0.3762548;0.0006450713,-0.0987066;-0.7186268;0.07326718,-0.1048225;-0.7057925;-0.02505848,0.006119965;0.398666;0.03147753,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003115455;0.1990817;0.01888801,0.007969176;0.4985911;0.03442423,0.1160809;0.3706629;-0.007543024,0.2046818;0.1108668;-0.06282336,0.2421674;-0.1268983;-0.2058708,-0.1065734;0.3600642;0.01798858,-0.1974335;0.09764516;0.0537754,-0.2249516;-0.1808561;0.0448413,0.0679703;0.006408209;-0.04170101,0.09132455;-0.3695965;0.008049067,0.1035253;-0.7107663;0.08521302,0.118708;-0.7590958;0.02493054,-0.07270794;0.001128015;-0.03335089,-0.09611803;-0.37663;0.0005729496,-0.09846595;-0.7189856;0.07328573,-0.1048475;-0.7061414;-0.02502479,0.006215787;0.3986412;0.03178719,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003115455;0.1990817;0.01888801,0.007969176;0.4985911;0.03442423,0.1160809;0.3706629;-0.007543024,0.2046818;0.1108668;-0.06282336,0.2421674;-0.1268983;-0.2058708,-0.1065734;0.3600642;0.01798858,-0.1974335;0.09764516;0.0537754,-0.2249516;-0.1808561;0.0448413,0.0679703;0.006408209;-0.04170101,0.09132455;-0.3695965;0.008049067,0.1035253;-0.7107663;0.08521302,0.118708;-0.7590958;0.02493054,-0.07270794;0.001128015;-0.03335089,-0.09611803;-0.37663;0.0005729496,-0.09846595;-0.7189856;0.07328573,-0.1048475;-0.7061414;-0.02502479,0.006215787;0.3986412;0.03178719,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.003115455;0.1990817;0.01888801,0.007969176;0.4985911;0.03442423,0.1160809;0.3706629;-0.007543024,0.2046818;0.1108668;-0.06282336,0.2421674;-0.1268983;-0.2058708,-0.1065734;0.3600642;0.01798858,-0.1974335;0.09764516;0.0537754,-0.2249516;-0.1808561;0.0448413,0.0679703;0.006408209;-0.04170101,0.09132455;-0.3695965;0.008049067,0.1035253;-0.7107663;0.08521302,0.118708;-0.7590958;0.02493054,-0.07270794;0.001128015;-0.03335089,-0.09611803;-0.37663;0.0005729496,-0.09846595;-0.7189856;0.07328573,-0.1048475;-0.7061414;-0.02502479,0.006215787;0.3986412;0.03178719,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002867994;0.1990578;0.01917738,0.007455753;0.498545;0.03520676,0.1154741;0.3708942;-0.007567775,0.2040378;0.1117655;-0.06595282,0.2408871;-0.1200935;-0.2185422,-0.1070651;0.3600513;0.01894572,-0.1977003;0.09742767;0.05378954,-0.2271757;-0.1808255;0.0434756,0.06782836;0.006687412;-0.04188785,0.09156191;-0.3692981;0.007827315,0.1037882;-0.7104623;0.08501242,0.1191547;-0.7589588;0.02499434,-0.07296398;0.0005055803;-0.03280248,-0.09624711;-0.3773084;0.0005816594,-0.09841535;-0.7197206;0.07303289,-0.1051782;-0.7068589;-0.02525519,0.005774435;0.3985982;0.03241318,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002867994;0.1990578;0.01917738,0.007455753;0.498545;0.03520676,0.1154741;0.3708942;-0.007567775,0.2040378;0.1117655;-0.06595282,0.2408871;-0.1200935;-0.2185422,-0.1070651;0.3600513;0.01894572,-0.1977003;0.09742767;0.05378954,-0.2271757;-0.1808255;0.0434756,0.06782836;0.006687412;-0.04188785,0.09156191;-0.3692981;0.007827315,0.1037882;-0.7104623;0.08501242,0.1191547;-0.7589588;0.02499434,-0.07296398;0.0005055803;-0.03280248,-0.09624711;-0.3773084;0.0005816594,-0.09841535;-0.7197206;0.07303289,-0.1051782;-0.7068589;-0.02525519,0.005774435;0.3985982;0.03241318,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002867994;0.1990578;0.01917738,0.007455753;0.498545;0.03520676,0.1154741;0.3708942;-0.007567775,0.2040378;0.1117655;-0.06595282,0.2408871;-0.1200935;-0.2185422,-0.1070651;0.3600513;0.01894572,-0.1977003;0.09742767;0.05378954,-0.2271757;-0.1808255;0.0434756,0.06782836;0.006687412;-0.04188785,0.09156191;-0.3692981;0.007827315,0.1037882;-0.7104623;0.08501242,0.1191547;-0.7589588;0.02499434,-0.07296398;0.0005055803;-0.03280248,-0.09624711;-0.3773084;0.0005816594,-0.09841535;-0.7197206;0.07303289,-0.1051782;-0.7068589;-0.02525519,0.005774435;0.3985982;0.03241318,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002783173;0.199051;0.01925982,0.007278344;0.4985302;0.03546472,0.1152328;0.3707743;-0.007539015,0.2040343;0.1128117;-0.07054365,0.2378053;-0.1131568;-0.2324008,-0.1073496;0.3602487;0.0196598,-0.1987495;0.09784237;0.0541416,-0.2260561;-0.1805995;0.04298487,0.06779172;0.006762545;-0.04193506,0.09147605;-0.3692211;0.007818073,0.1034853;-0.7104396;0.08479641,0.1185008;-0.758256;0.0238115,-0.07299574;0.0003980446;-0.03273322,-0.09640092;-0.3774124;0.0006053895,-0.09832024;-0.7198335;0.07302173,-0.1053006;-0.706967;-0.02525195,0.005622054;0.3985847;0.03261159,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002783173;0.199051;0.01925982,0.007278344;0.4985302;0.03546472,0.1152328;0.3707743;-0.007539015,0.2040343;0.1128117;-0.07054365,0.2378053;-0.1131568;-0.2324008,-0.1073496;0.3602487;0.0196598,-0.1987495;0.09784237;0.0541416,-0.2260561;-0.1805995;0.04298487,0.06779172;0.006762545;-0.04193506,0.09147605;-0.3692211;0.007818073,0.1034853;-0.7104396;0.08479641,0.1185008;-0.758256;0.0238115,-0.07299574;0.0003980446;-0.03273322,-0.09640092;-0.3774124;0.0006053895,-0.09832024;-0.7198335;0.07302173,-0.1053006;-0.706967;-0.02525195,0.005622054;0.3985847;0.03261159,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002783173;0.199051;0.01925982,0.007278344;0.4985302;0.03546472,0.1152328;0.3707743;-0.007539015,0.2040343;0.1128117;-0.07054365,0.2378053;-0.1131568;-0.2324008,-0.1073496;0.3602487;0.0196598,-0.1987495;0.09784237;0.0541416,-0.2260561;-0.1805995;0.04298487,0.06779172;0.006762545;-0.04193506,0.09147605;-0.3692211;0.007818073,0.1034853;-0.7104396;0.08479641,0.1185008;-0.758256;0.0238115,-0.07299574;0.0003980446;-0.03273322,-0.09640092;-0.3774124;0.0006053895,-0.09832024;-0.7198335;0.07302173,-0.1053006;-0.706967;-0.02525195,0.005622054;0.3985847;0.03261159,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00268462;0.1990396;0.01939177,0.007041192;0.498506;0.03587052,0.1148702;0.3704278;-0.007460676,0.202571;0.1126934;-0.07289402,0.2363834;-0.1067443;-0.2434925,-0.1074044;0.3598238;0.01995395,-0.1987387;0.09736595;0.0542165,-0.2268985;-0.1809856;0.04292701,0.06775095;0.006894676;-0.04197942,0.09141514;-0.3690939;0.007745665,0.1034084;-0.7103279;0.08465786,0.1178701;-0.7574278;0.02263782,-0.07309134;4.584495E-05;-0.03252161,-0.09652959;-0.3777848;0.0005639195,-0.09800777;-0.7202623;0.07272329,-0.1050827;-0.7073801;-0.02554639,0.005427881;0.3985625;0.03292263,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00268462;0.1990396;0.01939177,0.007041192;0.498506;0.03587052,0.1148702;0.3704278;-0.007460676,0.202571;0.1126934;-0.07289402,0.2363834;-0.1067443;-0.2434925,-0.1074044;0.3598238;0.01995395,-0.1987387;0.09736595;0.0542165,-0.2268985;-0.1809856;0.04292701,0.06775095;0.006894676;-0.04197942,0.09141514;-0.3690939;0.007745665,0.1034084;-0.7103279;0.08465786,0.1178701;-0.7574278;0.02263782,-0.07309134;4.584495E-05;-0.03252161,-0.09652959;-0.3777848;0.0005639195,-0.09800777;-0.7202623;0.07272329,-0.1050827;-0.7073801;-0.02554639,0.005427881;0.3985625;0.03292263,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00268462;0.1990396;0.01939177,0.007041192;0.498506;0.03587052,0.1148702;0.3704278;-0.007460676,0.202571;0.1126934;-0.07289402,0.2363834;-0.1067443;-0.2434925,-0.1074044;0.3598238;0.01995395,-0.1987387;0.09736595;0.0542165,-0.2268985;-0.1809856;0.04292701,0.06775095;0.006894676;-0.04197942,0.09141514;-0.3690939;0.007745665,0.1034084;-0.7103279;0.08465786,0.1178701;-0.7574278;0.02263782,-0.07309134;4.584495E-05;-0.03252161,-0.09652959;-0.3777848;0.0005639195,-0.09800777;-0.7202623;0.07272329,-0.1050827;-0.7073801;-0.02554639,0.005427881;0.3985625;0.03292263,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002573907;0.1990197;0.01960951,0.006786354;0.4984639;0.03652653,0.1145163;0.370463;-0.007388461,0.2016243;0.1131381;-0.07518288,0.2363935;-0.1015745;-0.2515053,-0.1072921;0.3593096;0.01914058,-0.1997143;0.09744903;0.05501777,-0.2265508;-0.1810333;0.04373253,0.06770203;0.006987515;-0.04204296,0.09134368;-0.3690056;0.007658549,0.1031968;-0.7101696;0.08490273,0.1171803;-0.7570792;0.02253791,-0.0732192;-0.0001013545;-0.03223258,-0.09671332;-0.3779444;0.0006712265,-0.09825023;-0.7204179;0.07284832,-0.1051646;-0.707525;-0.02543464,0.005215998;0.3985243;0.03342826,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002573907;0.1990197;0.01960951,0.006786354;0.4984639;0.03652653,0.1145163;0.370463;-0.007388461,0.2016243;0.1131381;-0.07518288,0.2363935;-0.1015745;-0.2515053,-0.1072921;0.3593096;0.01914058,-0.1997143;0.09744903;0.05501777,-0.2265508;-0.1810333;0.04373253,0.06770203;0.006987515;-0.04204296,0.09134368;-0.3690056;0.007658549,0.1031968;-0.7101696;0.08490273,0.1171803;-0.7570792;0.02253791,-0.0732192;-0.0001013545;-0.03223258,-0.09671332;-0.3779444;0.0006712265,-0.09825023;-0.7204179;0.07284832,-0.1051646;-0.707525;-0.02543464,0.005215998;0.3985243;0.03342826,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002573907;0.1990197;0.01960951,0.006786354;0.4984639;0.03652653,0.1145163;0.370463;-0.007388461,0.2016243;0.1131381;-0.07518288,0.2363935;-0.1015745;-0.2515053,-0.1072921;0.3593096;0.01914058,-0.1997143;0.09744903;0.05501777,-0.2265508;-0.1810333;0.04373253,0.06770203;0.006987515;-0.04204296,0.09134368;-0.3690056;0.007658549,0.1031968;-0.7101696;0.08490273,0.1171803;-0.7570792;0.02253791,-0.0732192;-0.0001013545;-0.03223258,-0.09671332;-0.3779444;0.0006712265,-0.09825023;-0.7204179;0.07284832,-0.1051646;-0.707525;-0.02543464,0.005215998;0.3985243;0.03342826,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002405277;0.1990074;0.01975503,0.006293425;0.4984423;0.03690911,0.1139827;0.370334;-0.007418722,0.2011531;0.1141933;-0.07948267,0.236166;-0.09438649;-0.2629727,-0.107833;0.3595209;0.0201075,-0.1993365;0.09714988;0.05458328,-0.2247018;-0.1814602;0.04305051,0.06760748;0.00715644;-0.0421665,0.0910205;-0.3688546;0.00750757,0.1030389;-0.7100258;0.08469433,0.1168097;-0.7569166;0.02225901,-0.07335332;-0.0004357233;-0.03192335,-0.09710903;-0.3783036;0.0005041361,-0.09857795;-0.7208055;0.07254764,-0.1057848;-0.7079076;-0.02571518,0.004837373;0.3985032;0.03373707,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002405277;0.1990074;0.01975503,0.006293425;0.4984423;0.03690911,0.1139827;0.370334;-0.007418722,0.2011531;0.1141933;-0.07948267,0.236166;-0.09438649;-0.2629727,-0.107833;0.3595209;0.0201075,-0.1993365;0.09714988;0.05458328,-0.2247018;-0.1814602;0.04305051,0.06760748;0.00715644;-0.0421665,0.0910205;-0.3688546;0.00750757,0.1030389;-0.7100258;0.08469433,0.1168097;-0.7569166;0.02225901,-0.07335332;-0.0004357233;-0.03192335,-0.09710903;-0.3783036;0.0005041361,-0.09857795;-0.7208055;0.07254764,-0.1057848;-0.7079076;-0.02571518,0.004837373;0.3985032;0.03373707,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002405277;0.1990074;0.01975503,0.006293425;0.4984423;0.03690911,0.1139827;0.370334;-0.007418722,0.2011531;0.1141933;-0.07948267,0.236166;-0.09438649;-0.2629727,-0.107833;0.3595209;0.0201075,-0.1993365;0.09714988;0.05458328,-0.2247018;-0.1814602;0.04305051,0.06760748;0.00715644;-0.0421665,0.0910205;-0.3688546;0.00750757,0.1030389;-0.7100258;0.08469433,0.1168097;-0.7569166;0.02225901,-0.07335332;-0.0004357233;-0.03192335,-0.09710903;-0.3783036;0.0005041361,-0.09857795;-0.7208055;0.07254764,-0.1057848;-0.7079076;-0.02571518,0.004837373;0.3985032;0.03373707,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002494777;0.1990096;0.0197222,0.006589436;0.4984491;0.03674363,0.114219;0.3703841;-0.007549435,0.2027941;0.1171683;-0.0877756,0.2325705;-0.08646961;-0.2776307,-0.1076745;0.3596499;0.02023611,-0.1986603;0.09705541;0.05437911,-0.2230964;-0.1816406;0.04291616,0.06753221;0.007384854;-0.04224765,0.09146982;-0.3686286;0.007157594,0.1035277;-0.7098238;0.0842315,0.116629;-0.7573481;0.02243874,-0.07334174;-0.0005966902;-0.03194734,-0.09687515;-0.3784788;0.0004760921,-0.09819402;-0.7210526;0.07218004,-0.1054664;-0.7081544;-0.026078,0.005067616;0.3985095;0.03362016,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002494777;0.1990096;0.0197222,0.006589436;0.4984491;0.03674363,0.114219;0.3703841;-0.007549435,0.2027941;0.1171683;-0.0877756,0.2325705;-0.08646961;-0.2776307,-0.1076745;0.3596499;0.02023611,-0.1986603;0.09705541;0.05437911,-0.2230964;-0.1816406;0.04291616,0.06753221;0.007384854;-0.04224765,0.09146982;-0.3686286;0.007157594,0.1035277;-0.7098238;0.0842315,0.116629;-0.7573481;0.02243874,-0.07334174;-0.0005966902;-0.03194734,-0.09687515;-0.3784788;0.0004760921,-0.09819402;-0.7210526;0.07218004,-0.1054664;-0.7081544;-0.026078,0.005067616;0.3985095;0.03362016,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002494777;0.1990096;0.0197222,0.006589436;0.4984491;0.03674363,0.114219;0.3703841;-0.007549435,0.2027941;0.1171683;-0.0877756,0.2325705;-0.08646961;-0.2776307,-0.1076745;0.3596499;0.02023611,-0.1986603;0.09705541;0.05437911,-0.2230964;-0.1816406;0.04291616,0.06753221;0.007384854;-0.04224765,0.09146982;-0.3686286;0.007157594,0.1035277;-0.7098238;0.0842315,0.116629;-0.7573481;0.02243874,-0.07334174;-0.0005966902;-0.03194734,-0.09687515;-0.3784788;0.0004760921,-0.09819402;-0.7210526;0.07218004,-0.1054664;-0.7081544;-0.026078,0.005067616;0.3985095;0.03362016,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002452591;0.1989997;0.01982723,0.006581996;0.498432;0.0369623,0.1141542;0.3704477;-0.007514864,0.2019503;0.1191274;-0.09429005,0.2350381;-0.07771833;-0.2906493,-0.1073696;0.3589833;0.01956083,-0.1994013;0.09696048;0.05525714,-0.2229967;-0.181803;0.04367346,0.06750944;0.007372261;-0.04228624,0.09132234;-0.3686173;0.007360369,0.1032237;-0.7097916;0.08455148,0.1188654;-0.7579585;0.02417533,-0.07333921;-0.0005385864;-0.03195419,-0.09676407;-0.3784342;0.0003899634,-0.0982253;-0.721072;0.07178506,-0.1053518;-0.7081703;-0.02648427,0.005040179;0.3984936;0.03380762,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002452591;0.1989997;0.01982723,0.006581996;0.498432;0.0369623,0.1141542;0.3704477;-0.007514864,0.2019503;0.1191274;-0.09429005,0.2350381;-0.07771833;-0.2906493,-0.1073696;0.3589833;0.01956083,-0.1994013;0.09696048;0.05525714,-0.2229967;-0.181803;0.04367346,0.06750944;0.007372261;-0.04228624,0.09132234;-0.3686173;0.007360369,0.1032237;-0.7097916;0.08455148,0.1188654;-0.7579585;0.02417533,-0.07333921;-0.0005385864;-0.03195419,-0.09676407;-0.3784342;0.0003899634,-0.0982253;-0.721072;0.07178506,-0.1053518;-0.7081703;-0.02648427,0.005040179;0.3984936;0.03380762,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002452591;0.1989997;0.01982723,0.006581996;0.498432;0.0369623,0.1141542;0.3704477;-0.007514864,0.2019503;0.1191274;-0.09429005,0.2350381;-0.07771833;-0.2906493,-0.1073696;0.3589833;0.01956083,-0.1994013;0.09696048;0.05525714,-0.2229967;-0.181803;0.04367346,0.06750944;0.007372261;-0.04228624,0.09132234;-0.3686173;0.007360369,0.1032237;-0.7097916;0.08455148,0.1188654;-0.7579585;0.02417533,-0.07333921;-0.0005385864;-0.03195419,-0.09676407;-0.3784342;0.0003899634,-0.0982253;-0.721072;0.07178506,-0.1053518;-0.7081703;-0.02648427,0.005040179;0.3984936;0.03380762,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00231549;0.198984;0.02000024,0.006304786;0.4984041;0.03737555,0.1138165;0.3705558;-0.007528678,0.2015868;0.1207531;-0.0986054,0.237581;-0.06943275;-0.3009263,-0.1075592;0.3587987;0.01995899,-0.1997009;0.09690499;0.05631253,-0.2214659;-0.1820058;0.04469131,0.06746007;0.007468321;-0.04234812,0.09130833;-0.3685326;0.007195719,0.1031729;-0.7096981;0.08443123,0.09344523;-0.6966124;-0.0136467,-0.07331728;-0.0005885946;-0.03200358,-0.09644762;-0.3785014;0.0003521331,-0.09779053;-0.7211971;0.07147074,-0.1050958;-0.7082811;-0.02678796,0.004802267;0.3984676;0.03414655,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00231549;0.198984;0.02000024,0.006304786;0.4984041;0.03737555,0.1138165;0.3705558;-0.007528678,0.2015868;0.1207531;-0.0986054,0.237581;-0.06943275;-0.3009263,-0.1075592;0.3587987;0.01995899,-0.1997009;0.09690499;0.05631253,-0.2214659;-0.1820058;0.04469131,0.06746007;0.007468321;-0.04234812,0.09130833;-0.3685326;0.007195719,0.1031729;-0.7096981;0.08443123,0.09344523;-0.6966124;-0.0136467,-0.07331728;-0.0005885946;-0.03200358,-0.09644762;-0.3785014;0.0003521331,-0.09779053;-0.7211971;0.07147074,-0.1050958;-0.7082811;-0.02678796,0.004802267;0.3984676;0.03414655,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002207713;0.1989917;0.01993527,0.006110712;0.4984204;0.03718092,0.1136634;0.3707901;-0.007777803,0.2015532;0.1232251;-0.104664,0.2397678;-0.06096242;-0.3120636,-0.1076938;0.3584788;0.02048096,-0.1993874;0.09629327;0.05585043,-0.2207924;-0.1826465;0.04425671,0.06735677;0.007499377;-0.04250676,0.09110692;-0.3685316;0.006855644,0.1032018;-0.7097588;0.08378197,0.09321377;-0.6966771;-0.01426911,-0.07340728;-0.0005937418;-0.0317965,-0.0963642;-0.378535;0.0003499389,-0.09766574;-0.7213576;0.07085525,-0.1052329;-0.7084447;-0.02738309,0.004631761;0.398482;0.03399843,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002207713;0.1989917;0.01993527,0.006110712;0.4984204;0.03718092,0.1136634;0.3707901;-0.007777803,0.2015532;0.1232251;-0.104664,0.2397678;-0.06096242;-0.3120636,-0.1076938;0.3584788;0.02048096,-0.1993874;0.09629327;0.05585043,-0.2207924;-0.1826465;0.04425671,0.06735677;0.007499377;-0.04250676,0.09110692;-0.3685316;0.006855644,0.1032018;-0.7097588;0.08378197,0.09321377;-0.6966771;-0.01426911,-0.07340728;-0.0005937418;-0.0317965,-0.0963642;-0.378535;0.0003499389,-0.09766574;-0.7213576;0.07085525,-0.1052329;-0.7084447;-0.02738309,0.004631761;0.398482;0.03399843,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002207713;0.1989917;0.01993527,0.006110712;0.4984204;0.03718092,0.1136634;0.3707901;-0.007777803,0.2015532;0.1232251;-0.104664,0.2397678;-0.06096242;-0.3120636,-0.1076938;0.3584788;0.02048096,-0.1993874;0.09629327;0.05585043,-0.2207924;-0.1826465;0.04425671,0.06735677;0.007499377;-0.04250676,0.09110692;-0.3685316;0.006855644,0.1032018;-0.7097588;0.08378197,0.09321377;-0.6966771;-0.01426911,-0.07340728;-0.0005937418;-0.0317965,-0.0963642;-0.378535;0.0003499389,-0.09766574;-0.7213576;0.07085525,-0.1052329;-0.7084447;-0.02738309,0.004631761;0.398482;0.03399843,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002266857;0.1989857;0.0199885,0.006305969;0.4984087;0.03730072,0.1136142;0.3705909;-0.008061454,0.2022394;0.1266594;-0.1131472,0.2400281;-0.04841639;-0.3283692,-0.107595;0.3585966;0.02059276,-0.1991316;0.09638351;0.05616468,-0.220134;-0.1825674;0.04411027,0.0673871;0.007601053;-0.04244058,0.09127379;-0.3684953;0.006354291,0.1035555;-0.7097232;0.08324839,0.1200718;-0.7580498;0.02331379,-0.07332585;-0.0006575976;-0.03198262,-0.09612946;-0.378613;0.0001064241,-0.09735796;-0.7214497;0.07054381,-0.1050427;-0.7085328;-0.0276861,0.004777674;0.3984718;0.03409625,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002266857;0.1989857;0.0199885,0.006305969;0.4984087;0.03730072,0.1136142;0.3705909;-0.008061454,0.2022394;0.1266594;-0.1131472,0.2400281;-0.04841639;-0.3283692,-0.107595;0.3585966;0.02059276,-0.1991316;0.09638351;0.05616468,-0.220134;-0.1825674;0.04411027,0.0673871;0.007601053;-0.04244058,0.09127379;-0.3684953;0.006354291,0.1035555;-0.7097232;0.08324839,0.1200718;-0.7580498;0.02331379,-0.07332585;-0.0006575976;-0.03198262,-0.09612946;-0.378613;0.0001064241,-0.09735796;-0.7214497;0.07054381,-0.1050427;-0.7085328;-0.0276861,0.004777674;0.3984718;0.03409625,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002266857;0.1989857;0.0199885,0.006305969;0.4984087;0.03730072,0.1136142;0.3705909;-0.008061454,0.2022394;0.1266594;-0.1131472,0.2400281;-0.04841639;-0.3283692,-0.107595;0.3585966;0.02059276,-0.1991316;0.09638351;0.05616468,-0.220134;-0.1825674;0.04411027,0.0673871;0.007601053;-0.04244058,0.09127379;-0.3684953;0.006354291,0.1035555;-0.7097232;0.08324839,0.1200718;-0.7580498;0.02331379,-0.07332585;-0.0006575976;-0.03198262,-0.09612946;-0.378613;0.0001064241,-0.09735796;-0.7214497;0.07054381,-0.1050427;-0.7085328;-0.0276861,0.004777674;0.3984718;0.03409625,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002134536;0.1989896;0.01996456,0.006024928;0.4984156;0.03725919,0.1140508;0.3715442;-0.006971285,0.2002664;0.1299115;-0.1191344,0.2389033;-0.0400475;-0.3382716,-0.1078872;0.3586937;0.02080102,-0.1992978;0.09647974;0.05668866,-0.2193444;-0.1825124;0.04397994,0.06735429;0.007644359;-0.04248486,0.0911797;-0.3685187;0.005823642,0.1034754;-0.7097844;0.08254723,0.1197311;-0.7580351;0.02244243,-0.07331742;-0.0006758376;-0.03200154,-0.09603749;-0.3786545;-0.0001278929,-0.09736048;-0.7215568;0.06998791,-0.1048167;-0.7086396;-0.02825966,0.004546993;0.3984778;0.03405922,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002134536;0.1989896;0.01996456,0.006024928;0.4984156;0.03725919,0.1140508;0.3715442;-0.006971285,0.2002664;0.1299115;-0.1191344,0.2389033;-0.0400475;-0.3382716,-0.1078872;0.3586937;0.02080102,-0.1992978;0.09647974;0.05668866,-0.2193444;-0.1825124;0.04397994,0.06735429;0.007644359;-0.04248486,0.0911797;-0.3685187;0.005823642,0.1034754;-0.7097844;0.08254723,0.1197311;-0.7580351;0.02244243,-0.07331742;-0.0006758376;-0.03200154,-0.09603749;-0.3786545;-0.0001278929,-0.09736048;-0.7215568;0.06998791,-0.1048167;-0.7086396;-0.02825966,0.004546993;0.3984778;0.03405922,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002134536;0.1989896;0.01996456,0.006024928;0.4984156;0.03725919,0.1140508;0.3715442;-0.006971285,0.2002664;0.1299115;-0.1191344,0.2389033;-0.0400475;-0.3382716,-0.1078872;0.3586937;0.02080102,-0.1992978;0.09647974;0.05668866,-0.2193444;-0.1825124;0.04397994,0.06735429;0.007644359;-0.04248486,0.0911797;-0.3685187;0.005823642,0.1034754;-0.7097844;0.08254723,0.1197311;-0.7580351;0.02244243,-0.07331742;-0.0006758376;-0.03200154,-0.09603749;-0.3786545;-0.0001278929,-0.09736048;-0.7215568;0.06998791,-0.1048167;-0.7086396;-0.02825966,0.004546993;0.3984778;0.03405922,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002138596;0.1989793;0.02006646,0.006082344;0.4983951;0.03752545,0.1138389;0.3714518;-0.00736646,0.1998124;0.1323573;-0.1250201,0.238478;-0.02676561;-0.352143,-0.1079577;0.3589686;0.02103401,-0.1990373;0.09655428;0.0562937,-0.2185069;-0.1824797;0.04360554,0.06727599;0.007653071;-0.04260718,0.09111862;-0.3685297;0.00553925,0.1033996;-0.7098156;0.08217551,0.1183706;-0.7575694;0.02110004,-0.07337124;-0.0006566495;-0.03187836,-0.09618896;-0.3785889;0.0004721023,-0.09740172;-0.7216415;0.0698508,-0.1050369;-0.7087175;-0.02838421,0.004582432;0.3984593;0.03427035,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002138596;0.1989793;0.02006646,0.006082344;0.4983951;0.03752545,0.1138389;0.3714518;-0.00736646,0.1998124;0.1323573;-0.1250201,0.238478;-0.02676561;-0.352143,-0.1079577;0.3589686;0.02103401,-0.1990373;0.09655428;0.0562937,-0.2185069;-0.1824797;0.04360554,0.06727599;0.007653071;-0.04260718,0.09111862;-0.3685297;0.00553925,0.1033996;-0.7098156;0.08217551,0.1183706;-0.7575694;0.02110004,-0.07337124;-0.0006566495;-0.03187836,-0.09618896;-0.3785889;0.0004721023,-0.09740172;-0.7216415;0.0698508,-0.1050369;-0.7087175;-0.02838421,0.004582432;0.3984593;0.03427035,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002138596;0.1989793;0.02006646,0.006082344;0.4983951;0.03752545,0.1138389;0.3714518;-0.00736646,0.1998124;0.1323573;-0.1250201,0.238478;-0.02676561;-0.352143,-0.1079577;0.3589686;0.02103401,-0.1990373;0.09655428;0.0562937,-0.2185069;-0.1824797;0.04360554,0.06727599;0.007653071;-0.04260718,0.09111862;-0.3685297;0.00553925,0.1033996;-0.7098156;0.08217551,0.1183706;-0.7575694;0.02110004,-0.07337124;-0.0006566495;-0.03187836,-0.09618896;-0.3785889;0.0004721023,-0.09740172;-0.7216415;0.0698508,-0.1050369;-0.7087175;-0.02838421,0.004582432;0.3984593;0.03427035,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002042972;0.1989887;0.01998303,0.005892674;0.4984102;0.03736911,0.1134878;0.3713891;-0.007963996,0.2007074;0.1362447;-0.1324623,0.2369085;-0.01758729;-0.3636012,-0.1083278;0.3594221;0.0214266,-0.1993521;0.0971036;0.05753167,-0.2171802;-0.1820197;0.04440354,0.06713723;0.007657168;-0.04282477,0.09103498;-0.368542;0.005165797,0.1034127;-0.7098245;0.08180147,0.1182487;-0.7564221;0.01924985,-0.07349451;-0.0006425582;-0.03159342,-0.09627235;-0.3786078;0.0003974214,-0.09760061;-0.7217599;0.06928075,-0.1055178;-0.7088391;-0.02893139,0.004426608;0.3984733;0.03413245,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002042972;0.1989887;0.01998303,0.005892674;0.4984102;0.03736911,0.1134878;0.3713891;-0.007963996,0.2007074;0.1362447;-0.1324623,0.2369085;-0.01758729;-0.3636012,-0.1083278;0.3594221;0.0214266,-0.1993521;0.0971036;0.05753167,-0.2171802;-0.1820197;0.04440354,0.06713723;0.007657168;-0.04282477,0.09103498;-0.368542;0.005165797,0.1034127;-0.7098245;0.08180147,0.1182487;-0.7564221;0.01924985,-0.07349451;-0.0006425582;-0.03159342,-0.09627235;-0.3786078;0.0003974214,-0.09760061;-0.7217599;0.06928075,-0.1055178;-0.7088391;-0.02893139,0.004426608;0.3984733;0.03413245,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.002042972;0.1989887;0.01998303,0.005892674;0.4984102;0.03736911,0.1134878;0.3713891;-0.007963996,0.2007074;0.1362447;-0.1324623,0.2369085;-0.01758729;-0.3636012,-0.1083278;0.3594221;0.0214266,-0.1993521;0.0971036;0.05753167,-0.2171802;-0.1820197;0.04440354,0.06713723;0.007657168;-0.04282477,0.09103498;-0.368542;0.005165797,0.1034127;-0.7098245;0.08180147,0.1182487;-0.7564221;0.01924985,-0.07349451;-0.0006425582;-0.03159342,-0.09627235;-0.3786078;0.0003974214,-0.09760061;-0.7217599;0.06928075,-0.1055178;-0.7088391;-0.02893139,0.004426608;0.3984733;0.03413245,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001975117;0.1989794;0.02008272,0.005748425;0.4983965;0.03755501,0.113103;0.3713145;-0.008433469,0.2014351;0.140242;-0.1395933,0.2324314;-0.005749032;-0.3765023,-0.1083489;0.35915;0.02149359,-0.1991186;0.09680545;0.05804761,-0.2167875;-0.1823057;0.0444539,0.06708605;0.007910997;-0.04285881,0.0912653;-0.3683063;0.004847601,0.1036056;-0.7096534;0.08120088,0.1180407;-0.7558317;0.01804628,-0.0734903;-0.0009451001;-0.0315956,-0.09587418;-0.3789521;0.0001788549,-0.09744266;-0.7221306;0.06892538,-0.08251367;-0.7701383;0.00816416,0.004304399;0.3984599;0.03429824,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001975117;0.1989794;0.02008272,0.005748425;0.4983965;0.03755501,0.113103;0.3713145;-0.008433469,0.2014351;0.140242;-0.1395933,0.2324314;-0.005749032;-0.3765023,-0.1083489;0.35915;0.02149359,-0.1991186;0.09680545;0.05804761,-0.2167875;-0.1823057;0.0444539,0.06708605;0.007910997;-0.04285881,0.0912653;-0.3683063;0.004847601,0.1036056;-0.7096534;0.08120088,0.1180407;-0.7558317;0.01804628,-0.0734903;-0.0009451001;-0.0315956,-0.09587418;-0.3789521;0.0001788549,-0.09744266;-0.7221306;0.06892538,-0.08251367;-0.7701383;0.00816416,0.004304399;0.3984599;0.03429824,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001975117;0.1989794;0.02008272,0.005748425;0.4983965;0.03755501,0.113103;0.3713145;-0.008433469,0.2014351;0.140242;-0.1395933,0.2324314;-0.005749032;-0.3765023,-0.1083489;0.35915;0.02149359,-0.1991186;0.09680545;0.05804761,-0.2167875;-0.1823057;0.0444539,0.06708605;0.007910997;-0.04285881,0.0912653;-0.3683063;0.004847601,0.1036056;-0.7096534;0.08120088,0.1180407;-0.7558317;0.01804628,-0.0734903;-0.0009451001;-0.0315956,-0.09587418;-0.3789521;0.0001788549,-0.09744266;-0.7221306;0.06892538,-0.08251367;-0.7701383;0.00816416,0.004304399;0.3984599;0.03429824,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001699477;0.1989922;0.01998042,0.005106902;0.4984145;0.03744791,0.1123099;0.3712042;-0.00921135,0.2009344;0.1432377;-0.1455087,0.2345445;0.02237795;-0.3958351,-0.1088071;0.3591151;0.02117162,-0.1995851;0.09691119;0.05870141,-0.2162838;-0.1822273;0.0444593,0.06700326;0.007958959;-0.04297927,0.09100439;-0.3682946;0.004530881,0.1033006;-0.709715;0.08056338,0.1175873;-0.756108;0.01763479,-0.07351325;-0.0009997829;-0.03154046,-0.0959295;-0.3789866;0.0004515536,-0.0977744;-0.7222666;0.06868228,-0.1060525;-0.709344;-0.02950037,0.00380489;0.3984763;0.03418091,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001699477;0.1989922;0.01998042,0.005106902;0.4984145;0.03744791,0.1123099;0.3712042;-0.00921135,0.2009344;0.1432377;-0.1455087,0.2345445;0.02237795;-0.3958351,-0.1088071;0.3591151;0.02117162,-0.1995851;0.09691119;0.05870141,-0.2162838;-0.1822273;0.0444593,0.06700326;0.007958959;-0.04297927,0.09100439;-0.3682946;0.004530881,0.1033006;-0.709715;0.08056338,0.1175873;-0.756108;0.01763479,-0.07351325;-0.0009997829;-0.03154046,-0.0959295;-0.3789866;0.0004515536,-0.0977744;-0.7222666;0.06868228,-0.1060525;-0.709344;-0.02950037,0.00380489;0.3984763;0.03418091,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001699477;0.1989922;0.01998042,0.005106902;0.4984145;0.03744791,0.1123099;0.3712042;-0.00921135,0.2009344;0.1432377;-0.1455087,0.2345445;0.02237795;-0.3958351,-0.1088071;0.3591151;0.02117162,-0.1995851;0.09691119;0.05870141,-0.2162838;-0.1822273;0.0444593,0.06700326;0.007958959;-0.04297927,0.09100439;-0.3682946;0.004530881,0.1033006;-0.709715;0.08056338,0.1175873;-0.756108;0.01763479,-0.07351325;-0.0009997829;-0.03154046,-0.0959295;-0.3789866;0.0004515536,-0.0977744;-0.7222666;0.06868228,-0.1060525;-0.709344;-0.02950037,0.00380489;0.3984763;0.03418091,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00154344;0.1989878;0.02003721,0.004551642;0.498409;0.03759298,0.1116093;0.3708919;-0.00962906,0.2005056;0.1468946;-0.1521865,0.2346982;0.02377564;-0.4013303,-0.1091189;0.358892;0.02112977,-0.1999042;0.09672892;0.05892628,-0.2163714;-0.18241;0.04442422,0.06695078;0.008099237;-0.04303481,0.09114575;-0.3680783;0.004976112,0.1033207;-0.709637;0.08040448,0.1187286;-0.7565669;0.0184014,-0.07356527;-0.001237517;-0.03141047,-0.09579661;-0.3792107;0.000870429,-0.09774923;-0.7225803;0.06864581,-0.1061943;-0.7096574;-0.0295227,0.003398247;0.3984699;0.0343007,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00154344;0.1989878;0.02003721,0.004551642;0.498409;0.03759298,0.1116093;0.3708919;-0.00962906,0.2005056;0.1468946;-0.1521865,0.2346982;0.02377564;-0.4013303,-0.1091189;0.358892;0.02112977,-0.1999042;0.09672892;0.05892628,-0.2163714;-0.18241;0.04442422,0.06695078;0.008099237;-0.04303481,0.09114575;-0.3680783;0.004976112,0.1033207;-0.709637;0.08040448,0.1187286;-0.7565669;0.0184014,-0.07356527;-0.001237517;-0.03141047,-0.09579661;-0.3792107;0.000870429,-0.09774923;-0.7225803;0.06864581,-0.1061943;-0.7096574;-0.0295227,0.003398247;0.3984699;0.0343007,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00154344;0.1989878;0.02003721,0.004551642;0.498409;0.03759298,0.1116093;0.3708919;-0.00962906,0.2005056;0.1468946;-0.1521865,0.2346982;0.02377564;-0.4013303,-0.1091189;0.358892;0.02112977,-0.1999042;0.09672892;0.05892628,-0.2163714;-0.18241;0.04442422,0.06695078;0.008099237;-0.04303481,0.09114575;-0.3680783;0.004976112,0.1033207;-0.709637;0.08040448,0.1187286;-0.7565669;0.0184014,-0.07356527;-0.001237517;-0.03141047,-0.09579661;-0.3792107;0.000870429,-0.09774923;-0.7225803;0.06864581,-0.1061943;-0.7096574;-0.0295227,0.003398247;0.3984699;0.0343007,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001456467;0.1989922;0.01999969,0.004378082;0.4984191;0.03747176,0.1111741;0.3705313;-0.01018536,0.200436;0.153615;-0.1630894,0.2357133;0.03557156;-0.4145278,-0.1094172;0.3592488;0.02126465,-0.199635;0.09685969;0.05885086,-0.215851;-0.1822796;0.04407627,0.06683943;0.008082826;-0.04321062,0.09117392;-0.3680413;0.005147073,0.1032219;-0.7097019;0.08013318,0.1180888;-0.7567171;0.01810391,-0.07364109;-0.001213047;-0.03123329,-0.09582362;-0.379211;0.0007900298,-0.09799718;-0.72263;0.06830762,-0.1066337;-0.7097129;-0.02984321,0.003247965;0.3984787;0.03420934,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001456467;0.1989922;0.01999969,0.004378082;0.4984191;0.03747176,0.1111741;0.3705313;-0.01018536,0.200436;0.153615;-0.1630894,0.2357133;0.03557156;-0.4145278,-0.1094172;0.3592488;0.02126465,-0.199635;0.09685969;0.05885086,-0.215851;-0.1822796;0.04407627,0.06683943;0.008082826;-0.04321062,0.09117392;-0.3680413;0.005147073,0.1032219;-0.7097019;0.08013318,0.1180888;-0.7567171;0.01810391,-0.07364109;-0.001213047;-0.03123329,-0.09582362;-0.379211;0.0007900298,-0.09799718;-0.72263;0.06830762,-0.1066337;-0.7097129;-0.02984321,0.003247965;0.3984787;0.03420934,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001456467;0.1989922;0.01999969,0.004378082;0.4984191;0.03747176,0.1111741;0.3705313;-0.01018536,0.200436;0.153615;-0.1630894,0.2357133;0.03557156;-0.4145278,-0.1094172;0.3592488;0.02126465,-0.199635;0.09685969;0.05885086,-0.215851;-0.1822796;0.04407627,0.06683943;0.008082826;-0.04321062,0.09117392;-0.3680413;0.005147073,0.1032219;-0.7097019;0.08013318,0.1180888;-0.7567171;0.01810391,-0.07364109;-0.001213047;-0.03123329,-0.09582362;-0.379211;0.0007900298,-0.09799718;-0.72263;0.06830762,-0.1066337;-0.7097129;-0.02984321,0.003247965;0.3984787;0.03420934,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001265509;0.1989954;0.01998116,0.003853701;0.4984233;0.03749315,0.1107219;0.3707868;-0.01048786,0.2026368;0.1570775;-0.1663082,0.2370971;0.04097511;-0.4187617,-0.1101275;0.3600041;0.02180235,-0.1973548;0.09601346;0.05497423,-0.2148072;-0.1831619;0.04246349,0.06680614;0.008133054;-0.04325265,0.0913103;-0.367975;0.005144503,0.1036303;-0.7096107;0.08019939,0.1173712;-0.7570975;0.01849864,-0.07362624;-0.001250345;-0.0312668,-0.09574539;-0.3792597;0.0006657504,-0.09818446;-0.722721;0.06795862,-0.1070501;-0.7098069;-0.03017126,0.002856753;0.3984821;0.03421203,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001265509;0.1989954;0.01998116,0.003853701;0.4984233;0.03749315,0.1107219;0.3707868;-0.01048786,0.2026368;0.1570775;-0.1663082,0.2370971;0.04097511;-0.4187617,-0.1101275;0.3600041;0.02180235,-0.1973548;0.09601346;0.05497423,-0.2148072;-0.1831619;0.04246349,0.06680614;0.008133054;-0.04325265,0.0913103;-0.367975;0.005144503,0.1036303;-0.7096107;0.08019939,0.1173712;-0.7570975;0.01849864,-0.07362624;-0.001250345;-0.0312668,-0.09574539;-0.3792597;0.0006657504,-0.09818446;-0.722721;0.06795862,-0.1070501;-0.7098069;-0.03017126,0.002856753;0.3984821;0.03421203,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001265509;0.1989954;0.01998116,0.003853701;0.4984233;0.03749315,0.1107219;0.3707868;-0.01048786,0.2026368;0.1570775;-0.1663082,0.2370971;0.04097511;-0.4187617,-0.1101275;0.3600041;0.02180235,-0.1973548;0.09601346;0.05497423,-0.2148072;-0.1831619;0.04246349,0.06680614;0.008133054;-0.04325265,0.0913103;-0.367975;0.005144503,0.1036303;-0.7096107;0.08019939,0.1173712;-0.7570975;0.01849864,-0.07362624;-0.001250345;-0.0312668,-0.09574539;-0.3792597;0.0006657504,-0.09818446;-0.722721;0.06795862,-0.1070501;-0.7098069;-0.03017126,0.002856753;0.3984821;0.03421203,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001137728;0.1989982;0.01996097,0.003577609;0.4984323;0.03738378,0.1101748;0.3707638;-0.01128843,0.2077953;0.1800826;-0.1915963,0.2345981;0.05893551;-0.4426042,-0.1103213;0.3599645;0.0214978,-0.1979905;0.09620491;0.05533539,-0.2148302;-0.1829759;0.04212442,0.06675585;0.00815194;-0.0433267,0.09124422;-0.367941;0.005195785,0.1034739;-0.7097164;0.07962692,0.1179126;-0.7574096;0.01834643,-0.07361589;-0.001257118;-0.0312909,-0.09573191;-0.3792617;0.0006994046,-0.09829844;-0.7228266;0.06745736,-0.1073618;-0.7099162;-0.0306538,0.002621348;0.3984895;0.03413784,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001137728;0.1989982;0.01996097,0.003577609;0.4984323;0.03738378,0.1101748;0.3707638;-0.01128843,0.2077953;0.1800826;-0.1915963,0.2345981;0.05893551;-0.4426042,-0.1103213;0.3599645;0.0214978,-0.1979905;0.09620491;0.05533539,-0.2148302;-0.1829759;0.04212442,0.06675585;0.00815194;-0.0433267,0.09124422;-0.367941;0.005195785,0.1034739;-0.7097164;0.07962692,0.1179126;-0.7574096;0.01834643,-0.07361589;-0.001257118;-0.0312909,-0.09573191;-0.3792617;0.0006994046,-0.09829844;-0.7228266;0.06745736,-0.1073618;-0.7099162;-0.0306538,0.002621348;0.3984895;0.03413784,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001137728;0.1989982;0.01996097,0.003577609;0.4984323;0.03738378,0.1101748;0.3707638;-0.01128843,0.2077953;0.1800826;-0.1915963,0.2345981;0.05893551;-0.4426042,-0.1103213;0.3599645;0.0214978,-0.1979905;0.09620491;0.05533539,-0.2148302;-0.1829759;0.04212442,0.06675585;0.00815194;-0.0433267,0.09124422;-0.367941;0.005195785,0.1034739;-0.7097164;0.07962692,0.1179126;-0.7574096;0.01834643,-0.07361589;-0.001257118;-0.0312909,-0.09573191;-0.3792617;0.0006994046,-0.09829844;-0.7228266;0.06745736,-0.1073618;-0.7099162;-0.0306538,0.002621348;0.3984895;0.03413784,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001035015;0.1990094;0.01985427,0.003376547;0.4984546;0.03709907,0.1097577;0.3708041;-0.01209303,0.2079583;0.1796328;-0.191565,0.2374834;0.0666405;-0.4460468,-0.1104849;0.3600034;0.02110226,-0.1981419;0.0962323;0.05488207,-0.2148511;-0.1829565;0.04167624,0.06671632;0.008424015;-0.04333552,0.09141971;-0.3676698;0.005070731,0.1033864;-0.7095907;0.07887408,0.1176403;-0.7572161;0.01746458,-0.07363265;-0.001564213;-0.03123757,-0.09571376;-0.379582;0.0006208923,-0.09826814;-0.7232636;0.06677538,-0.1074816;-0.7103508;-0.03132224,0.0024451;0.3985098;0.0339113,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001035015;0.1990094;0.01985427,0.003376547;0.4984546;0.03709907,0.1097577;0.3708041;-0.01209303,0.2079583;0.1796328;-0.191565,0.2374834;0.0666405;-0.4460468,-0.1104849;0.3600034;0.02110226,-0.1981419;0.0962323;0.05488207,-0.2148511;-0.1829565;0.04167624,0.06671632;0.008424015;-0.04333552,0.09141971;-0.3676698;0.005070731,0.1033864;-0.7095907;0.07887408,0.1176403;-0.7572161;0.01746458,-0.07363265;-0.001564213;-0.03123757,-0.09571376;-0.379582;0.0006208923,-0.09826814;-0.7232636;0.06677538,-0.1074816;-0.7103508;-0.03132224,0.0024451;0.3985098;0.0339113,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001035015;0.1990094;0.01985427,0.003376547;0.4984546;0.03709907,0.1097577;0.3708041;-0.01209303,0.2079583;0.1796328;-0.191565,0.2374834;0.0666405;-0.4460468,-0.1104849;0.3600034;0.02110226,-0.1981419;0.0962323;0.05488207,-0.2148511;-0.1829565;0.04167624,0.06671632;0.008424015;-0.04333552,0.09141971;-0.3676698;0.005070731,0.1033864;-0.7095907;0.07887408,0.1176403;-0.7572161;0.01746458,-0.07363265;-0.001564213;-0.03123757,-0.09571376;-0.379582;0.0006208923,-0.09826814;-0.7232636;0.06677538,-0.1074816;-0.7103508;-0.03132224,0.0024451;0.3985098;0.0339113,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001007098;0.1990065;0.0198846,0.003328618;0.4984488;0.03718496,0.1094172;0.3709504;-0.01279482,0.2115166;0.1838378;-0.1943564,0.263204;0.09481085;-0.4547458,-0.1106504;0.3601332;0.0218204,-0.1918512;0.09328681;0.046304,-0.2132696;-0.1857927;0.03883021,0.06654669;0.008680272;-0.04354529,0.09146108;-0.3673412;0.005312756,0.1034866;-0.7093939;0.078493,0.1174297;-0.7567683;0.01669665,-0.07377352;-0.002092563;-0.03087214,-0.09587772;-0.3801637;0.0003305897,-0.09862507;-0.7239074;0.06615415,-0.1082249;-0.710997;-0.03190597,0.002397596;0.3985046;0.03397653,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001007098;0.1990065;0.0198846,0.003328618;0.4984488;0.03718496,0.1094172;0.3709504;-0.01279482,0.2115166;0.1838378;-0.1943564,0.263204;0.09481085;-0.4547458,-0.1106504;0.3601332;0.0218204,-0.1918512;0.09328681;0.046304,-0.2132696;-0.1857927;0.03883021,0.06654669;0.008680272;-0.04354529,0.09146108;-0.3673412;0.005312756,0.1034866;-0.7093939;0.078493,0.1174297;-0.7567683;0.01669665,-0.07377352;-0.002092563;-0.03087214,-0.09587772;-0.3801637;0.0003305897,-0.09862507;-0.7239074;0.06615415,-0.1082249;-0.710997;-0.03190597,0.002397596;0.3985046;0.03397653,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001007098;0.1990065;0.0198846,0.003328618;0.4984488;0.03718496,0.1094172;0.3709504;-0.01279482,0.2115166;0.1838378;-0.1943564,0.263204;0.09481085;-0.4547458,-0.1106504;0.3601332;0.0218204,-0.1918512;0.09328681;0.046304,-0.2132696;-0.1857927;0.03883021,0.06654669;0.008680272;-0.04354529,0.09146108;-0.3673412;0.005312756,0.1034866;-0.7093939;0.078493,0.1174297;-0.7567683;0.01669665,-0.07377352;-0.002092563;-0.03087214,-0.09587772;-0.3801637;0.0003305897,-0.09862507;-0.7239074;0.06615415,-0.1082249;-0.710997;-0.03190597,0.002397596;0.3985046;0.03397653,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0009384067;0.1990029;0.01992423,0.00318073;0.4984453;0.03722828,0.1089982;0.3709829;-0.01342763,0.2139754;0.1888953;-0.1984247,0.2569792;0.09391051;-0.4582872,-0.1107965;0.3602457;0.02167097,-0.1938327;0.09432229;0.04977346,-0.2136235;-0.1847944;0.03966485,0.06653655;0.008602936;-0.04357611,0.0917924;-0.3673811;0.005394842,0.1038495;-0.7094952;0.07828222,0.1171272;-0.7564908;0.01586929,-0.07375854;-0.001928935;-0.03091858,-0.09546014;-0.3800286;0.0002204031,-0.09853613;-0.7237862;0.06595654,-0.1083277;-0.7108769;-0.03208445,0.002269527;0.3985007;0.03402504,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0009384067;0.1990029;0.01992423,0.00318073;0.4984453;0.03722828,0.1089982;0.3709829;-0.01342763,0.2139754;0.1888953;-0.1984247,0.2569792;0.09391051;-0.4582872,-0.1107965;0.3602457;0.02167097,-0.1938327;0.09432229;0.04977346,-0.2136235;-0.1847944;0.03966485,0.06653655;0.008602936;-0.04357611,0.0917924;-0.3673811;0.005394842,0.1038495;-0.7094952;0.07828222,0.1171272;-0.7564908;0.01586929,-0.07375854;-0.001928935;-0.03091858,-0.09546014;-0.3800286;0.0002204031,-0.09853613;-0.7237862;0.06595654,-0.1083277;-0.7108769;-0.03208445,0.002269527;0.3985007;0.03402504,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0009384067;0.1990029;0.01992423,0.00318073;0.4984453;0.03722828,0.1089982;0.3709829;-0.01342763,0.2139754;0.1888953;-0.1984247,0.2569792;0.09391051;-0.4582872,-0.1107965;0.3602457;0.02167097,-0.1938327;0.09432229;0.04977346,-0.2136235;-0.1847944;0.03966485,0.06653655;0.008602936;-0.04357611,0.0917924;-0.3673811;0.005394842,0.1038495;-0.7094952;0.07828222,0.1171272;-0.7564908;0.01586929,-0.07375854;-0.001928935;-0.03091858,-0.09546014;-0.3800286;0.0002204031,-0.09853613;-0.7237862;0.06595654,-0.1083277;-0.7108769;-0.03208445,0.002269527;0.3985007;0.03402504,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0009624888;0.1990037;0.01991504,0.003220527;0.4984477;0.03719061,0.1088461;0.3712552;-0.01403347,0.214403;0.1908774;-0.2003708,0.2572941;0.1062853;-0.4638182,-0.1107919;0.3603053;0.02175664,-0.1961671;0.0955748;0.05383156,-0.2135229;-0.1835874;0.04089843,0.06652292;0.008475088;-0.04362194,0.09228871;-0.3674339;0.005658511,0.1039343;-0.709643;0.07816547,0.1173155;-0.7564849;0.01558527,-0.07379337;-0.001688404;-0.03084942,-0.09517819;-0.3798092;0.0002529882,-0.09854025;-0.7236095;0.0657514,-0.108563;-0.7107033;-0.03226569,0.002306113;0.3985029;0.03399559,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0009624888;0.1990037;0.01991504,0.003220527;0.4984477;0.03719061,0.1088461;0.3712552;-0.01403347,0.214403;0.1908774;-0.2003708,0.2572941;0.1062853;-0.4638182,-0.1107919;0.3603053;0.02175664,-0.1961671;0.0955748;0.05383156,-0.2135229;-0.1835874;0.04089843,0.06652292;0.008475088;-0.04362194,0.09228871;-0.3674339;0.005658511,0.1039343;-0.709643;0.07816547,0.1173155;-0.7564849;0.01558527,-0.07379337;-0.001688404;-0.03084942,-0.09517819;-0.3798092;0.0002529882,-0.09854025;-0.7236095;0.0657514,-0.108563;-0.7107033;-0.03226569,0.002306113;0.3985029;0.03399559,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0009624888;0.1990037;0.01991504,0.003220527;0.4984477;0.03719061,0.1088461;0.3712552;-0.01403347,0.214403;0.1908774;-0.2003708,0.2572941;0.1062853;-0.4638182,-0.1107919;0.3603053;0.02175664,-0.1961671;0.0955748;0.05383156,-0.2135229;-0.1835874;0.04089843,0.06652292;0.008475088;-0.04362194,0.09228871;-0.3674339;0.005658511,0.1039343;-0.709643;0.07816547,0.1173155;-0.7564849;0.01558527,-0.07379337;-0.001688404;-0.03084942,-0.09517819;-0.3798092;0.0002529882,-0.09854025;-0.7236095;0.0657514,-0.108563;-0.7107033;-0.03226569,0.002306113;0.3985029;0.03399559,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00116451;0.1990266;0.01967339,0.004326428;0.4985334;0.03556575,0.1095195;0.3712861;-0.01515973,0.2021443;0.2371331;-0.2428077,0.2494891;0.1334717;-0.4985669,-0.1102953;0.3607329;0.02182215,-0.1964543;0.09637025;0.05482259,-0.2131404;-0.1827912;0.04102184,0.06648507;0.008533008;-0.04366833,0.09265722;-0.3673233;0.005799089,0.1041941;-0.709561;0.07818913,0.117076;-0.7568794;0.01609309,-0.07382526;-0.001736976;-0.03077032,-0.09504205;-0.3798828;0.000142185,-0.09870283;-0.7236634;0.06572741,-0.1089407;-0.7107893;-0.03226183,0.003034743;0.3985755;0.03296819,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00116451;0.1990266;0.01967339,0.004326428;0.4985334;0.03556575,0.1095195;0.3712861;-0.01515973,0.2021443;0.2371331;-0.2428077,0.2494891;0.1334717;-0.4985669,-0.1102953;0.3607329;0.02182215,-0.1964543;0.09637025;0.05482259,-0.2131404;-0.1827912;0.04102184,0.06648507;0.008533008;-0.04366833,0.09265722;-0.3673233;0.005799089,0.1041941;-0.709561;0.07818913,0.117076;-0.7568794;0.01609309,-0.07382526;-0.001736976;-0.03077032,-0.09504205;-0.3798828;0.000142185,-0.09870283;-0.7236634;0.06572741,-0.1089407;-0.7107893;-0.03226183,0.003034743;0.3985755;0.03296819,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00116451;0.1990266;0.01967339,0.004326428;0.4985334;0.03556575,0.1095195;0.3712861;-0.01515973,0.2021443;0.2371331;-0.2428077,0.2494891;0.1334717;-0.4985669,-0.1102953;0.3607329;0.02182215,-0.1964543;0.09637025;0.05482259,-0.2131404;-0.1827912;0.04102184,0.06648507;0.008533008;-0.04366833,0.09265722;-0.3673233;0.005799089,0.1041941;-0.709561;0.07818913,0.117076;-0.7568794;0.01609309,-0.07382526;-0.001736976;-0.03077032,-0.09504205;-0.3798828;0.000142185,-0.09870283;-0.7236634;0.06572741,-0.1089407;-0.7107893;-0.03226183,0.003034743;0.3985755;0.03296819,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001217937;0.1990221;0.01971582,0.004380368;0.4985207;0.03577851,0.1094143;0.3714058;-0.0154685,0.2170066;0.2074616;-0.2153339,0.2630065;0.1283733;-0.479964,-0.1102853;0.360918;0.02183417,-0.1961765;0.0964317;0.05454041,-0.2129534;-0.1827223;0.040699,0.06640834;0.008392928;-0.04381199,0.09347649;-0.3674238;0.00547374,0.1042002;-0.7096431;0.07807533,0.1175498;-0.7565965;0.01562567,-0.07392423;-0.001520592;-0.03054335,-0.09449451;-0.3797513;-0.0002382994,-0.09834699;-0.7234998;0.06550432,-0.1087091;-0.7106214;-0.03247263,0.003097822;0.3985647;0.03310315,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001217937;0.1990221;0.01971582,0.004380368;0.4985207;0.03577851,0.1094143;0.3714058;-0.0154685,0.2170066;0.2074616;-0.2153339,0.2630065;0.1283733;-0.479964,-0.1102853;0.360918;0.02183417,-0.1961765;0.0964317;0.05454041,-0.2129534;-0.1827223;0.040699,0.06640834;0.008392928;-0.04381199,0.09347649;-0.3674238;0.00547374,0.1042002;-0.7096431;0.07807533,0.1175498;-0.7565965;0.01562567,-0.07392423;-0.001520592;-0.03054335,-0.09449451;-0.3797513;-0.0002382994,-0.09834699;-0.7234998;0.06550432,-0.1087091;-0.7106214;-0.03247263,0.003097822;0.3985647;0.03310315,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001217937;0.1990221;0.01971582,0.004380368;0.4985207;0.03577851,0.1094143;0.3714058;-0.0154685,0.2170066;0.2074616;-0.2153339,0.2630065;0.1283733;-0.479964,-0.1102853;0.360918;0.02183417,-0.1961765;0.0964317;0.05454041,-0.2129534;-0.1827223;0.040699,0.06640834;0.008392928;-0.04381199,0.09347649;-0.3674238;0.00547374,0.1042002;-0.7096431;0.07807533,0.1175498;-0.7565965;0.01562567,-0.07392423;-0.001520592;-0.03054335,-0.09449451;-0.3797513;-0.0002382994,-0.09834699;-0.7234998;0.06550432,-0.1087091;-0.7106214;-0.03247263,0.003097822;0.3985647;0.03310315,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001229525;0.199017;0.01976701,0.004333158;0.4985065;0.03602761,0.1092058;0.3719607;-0.01603456,0.2307418;0.222156;-0.2189818,0.269211;0.1336823;-0.4818363,-0.1103169;0.3609289;0.02205185,-0.1961972;0.09640616;0.05449092,-0.2130073;-0.1827363;0.04045925,0.06635048;0.008372881;-0.04390339,0.0942647;-0.367381;0.00538937,0.1050028;-0.7095978;0.07800067,0.1172881;-0.757544;0.01657213,-0.07396293;-0.001461642;-0.03045242,-0.09429649;-0.3797227;-0.0003673788,-0.09830321;-0.7234572;0.06543965,-0.1089114;-0.7105765;-0.03251135,0.00307976;0.3985526;0.03326185,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001229525;0.199017;0.01976701,0.004333158;0.4985065;0.03602761,0.1092058;0.3719607;-0.01603456,0.2307418;0.222156;-0.2189818,0.269211;0.1336823;-0.4818363,-0.1103169;0.3609289;0.02205185,-0.1961972;0.09640616;0.05449092,-0.2130073;-0.1827363;0.04045925,0.06635048;0.008372881;-0.04390339,0.0942647;-0.367381;0.00538937,0.1050028;-0.7095978;0.07800067,0.1172881;-0.757544;0.01657213,-0.07396293;-0.001461642;-0.03045242,-0.09429649;-0.3797227;-0.0003673788,-0.09830321;-0.7234572;0.06543965,-0.1089114;-0.7105765;-0.03251135,0.00307976;0.3985526;0.03326185,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001229525;0.199017;0.01976701,0.004333158;0.4985065;0.03602761,0.1092058;0.3719607;-0.01603456,0.2307418;0.222156;-0.2189818,0.269211;0.1336823;-0.4818363,-0.1103169;0.3609289;0.02205185,-0.1961972;0.09640616;0.05449092,-0.2130073;-0.1827363;0.04045925,0.06635048;0.008372881;-0.04390339,0.0942647;-0.367381;0.00538937,0.1050028;-0.7095978;0.07800067,0.1172881;-0.757544;0.01657213,-0.07396293;-0.001461642;-0.03045242,-0.09429649;-0.3797227;-0.0003673788,-0.09830321;-0.7234572;0.06543965,-0.1089114;-0.7105765;-0.03251135,0.00307976;0.3985526;0.03326185,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001281566;0.1990177;0.0197561,0.004429441;0.4985059;0.0360337,0.1091302;0.3726591;-0.01674666,0.2293199;0.2241873;-0.2214673,0.2621377;0.1296201;-0.4829631,-0.1102748;0.361023;0.02215929,-0.1965898;0.09661648;0.05439118,-0.2137297;-0.1824906;0.04005837,0.06619489;0.008330741;-0.04414561,0.09452274;-0.3673486;0.005479101,0.1052076;-0.7096296;0.07779469,0.1170758;-0.7574683;0.01614822,-0.07410264;-0.001219456;-0.0301216,-0.09402044;-0.3795478;-0.0006101243,-0.09817037;-0.7232599;0.06530485,-0.1090513;-0.7103797;-0.03261614,0.003163808;0.3985524;0.03325997,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001281566;0.1990177;0.0197561,0.004429441;0.4985059;0.0360337,0.1091302;0.3726591;-0.01674666,0.2293199;0.2241873;-0.2214673,0.2621377;0.1296201;-0.4829631,-0.1102748;0.361023;0.02215929,-0.1965898;0.09661648;0.05439118,-0.2137297;-0.1824906;0.04005837,0.06619489;0.008330741;-0.04414561,0.09452274;-0.3673486;0.005479101,0.1052076;-0.7096296;0.07779469,0.1170758;-0.7574683;0.01614822,-0.07410264;-0.001219456;-0.0301216,-0.09402044;-0.3795478;-0.0006101243,-0.09817037;-0.7232599;0.06530485,-0.1090513;-0.7103797;-0.03261614,0.003163808;0.3985524;0.03325997,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001281566;0.1990177;0.0197561,0.004429441;0.4985059;0.0360337,0.1091302;0.3726591;-0.01674666,0.2293199;0.2241873;-0.2214673,0.2621377;0.1296201;-0.4829631,-0.1102748;0.361023;0.02215929,-0.1965898;0.09661648;0.05439118,-0.2137297;-0.1824906;0.04005837,0.06619489;0.008330741;-0.04414561,0.09452274;-0.3673486;0.005479101,0.1052076;-0.7096296;0.07779469,0.1170758;-0.7574683;0.01614822,-0.07410264;-0.001219456;-0.0301216,-0.09402044;-0.3795478;-0.0006101243,-0.09817037;-0.7232599;0.06530485,-0.1090513;-0.7103797;-0.03261614,0.003163808;0.3985524;0.03325997,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001098225;0.1990137;0.01980772,0.003797014;0.4984939;0.03633828,0.1086997;0.3734899;-0.01697202,0.1531659;0.1679565;-0.2018471,0.2441024;0.1373505;-0.4648944,-0.1106391;0.3608487;0.02215994,-0.1987696;0.09702477;0.05425294,-0.2163996;-0.182066;0.04019761,0.06614173;0.008341844;-0.04422312,0.09442186;-0.3673425;0.00539045,0.1049424;-0.7096285;0.07770666,0.1168134;-0.7574366;0.01602215,-0.07412165;-0.001269342;-0.03007275,-0.09403808;-0.3796147;-0.0007793624,-0.09835164;-0.7233224;0.06514826,-0.1093259;-0.710438;-0.03276304,0.002726827;0.3985414;0.03344782,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001098225;0.1990137;0.01980772,0.003797014;0.4984939;0.03633828,0.1086997;0.3734899;-0.01697202,0.1531659;0.1679565;-0.2018471,0.2441024;0.1373505;-0.4648944,-0.1106391;0.3608487;0.02215994,-0.1987696;0.09702477;0.05425294,-0.2163996;-0.182066;0.04019761,0.06614173;0.008341844;-0.04422312,0.09442186;-0.3673425;0.00539045,0.1049424;-0.7096285;0.07770666,0.1168134;-0.7574366;0.01602215,-0.07412165;-0.001269342;-0.03007275,-0.09403808;-0.3796147;-0.0007793624,-0.09835164;-0.7233224;0.06514826,-0.1093259;-0.710438;-0.03276304,0.002726827;0.3985414;0.03344782,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001098225;0.1990137;0.01980772,0.003797014;0.4984939;0.03633828,0.1086997;0.3734899;-0.01697202,0.1531659;0.1679565;-0.2018471,0.2441024;0.1373505;-0.4648944,-0.1106391;0.3608487;0.02215994,-0.1987696;0.09702477;0.05425294,-0.2163996;-0.182066;0.04019761,0.06614173;0.008341844;-0.04422312,0.09442186;-0.3673425;0.00539045,0.1049424;-0.7096285;0.07770666,0.1168134;-0.7574366;0.01602215,-0.07412165;-0.001269342;-0.03007275,-0.09403808;-0.3796147;-0.0007793624,-0.09835164;-0.7233224;0.06514826,-0.1093259;-0.710438;-0.03276304,0.002726827;0.3985414;0.03344782,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001081128;0.1990112;0.01983355,0.00373719;0.4984879;0.03643722,0.1084326;0.3734293;-0.01733892,0.1564364;0.1809069;-0.214901,0.227749;0.1673846;-0.4853297,-0.1106728;0.3608301;0.02215439,-0.1992992;0.09720919;0.05454861,-0.2167905;-0.1818498;0.03971249,0.06601226;0.008351103;-0.04441441,0.09439415;-0.3672891;0.005474653,0.1047637;-0.7095335;0.07800892,0.1164638;-0.7574696;0.01645348,-0.07417223;-0.001236886;-0.02994915,-0.09349561;-0.3796203;-0.0007495061,-0.09820417;-0.7233247;0.06516805,-0.1092985;-0.7104388;-0.03272996,0.002681303;0.3985362;0.03351681,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001081128;0.1990112;0.01983355,0.00373719;0.4984879;0.03643722,0.1084326;0.3734293;-0.01733892,0.1564364;0.1809069;-0.214901,0.227749;0.1673846;-0.4853297,-0.1106728;0.3608301;0.02215439,-0.1992992;0.09720919;0.05454861,-0.2167905;-0.1818498;0.03971249,0.06601226;0.008351103;-0.04441441,0.09439415;-0.3672891;0.005474653,0.1047637;-0.7095335;0.07800892,0.1164638;-0.7574696;0.01645348,-0.07417223;-0.001236886;-0.02994915,-0.09349561;-0.3796203;-0.0007495061,-0.09820417;-0.7233247;0.06516805,-0.1092985;-0.7104388;-0.03272996,0.002681303;0.3985362;0.03351681,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.001081128;0.1990112;0.01983355,0.00373719;0.4984879;0.03643722,0.1084326;0.3734293;-0.01733892,0.1564364;0.1809069;-0.214901,0.227749;0.1673846;-0.4853297,-0.1106728;0.3608301;0.02215439,-0.1992992;0.09720919;0.05454861,-0.2167905;-0.1818498;0.03971249,0.06601226;0.008351103;-0.04441441,0.09439415;-0.3672891;0.005474653,0.1047637;-0.7095335;0.07800892,0.1164638;-0.7574696;0.01645348,-0.07417223;-0.001236886;-0.02994915,-0.09349561;-0.3796203;-0.0007495061,-0.09820417;-0.7233247;0.06516805,-0.1092985;-0.7104388;-0.03272996,0.002681303;0.3985362;0.03351681,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0011152;0.1990028;0.01991593,0.00377195;0.4984724;0.03665784,0.1083228;0.3738911;-0.01771782,0.1561874;0.1820157;-0.2159421,0.2270765;0.1719889;-0.4866341,-0.110635;0.3608372;0.02225211,-0.2010461;0.09816173;0.05728713,-0.2171049;-0.1808305;0.03980963,0.06575066;0.008500162;-0.04477274,0.0944896;-0.3670644;0.005479544,0.1049678;-0.709283;0.07812004,0.116526;-0.7567856;0.01599313,-0.07428142;-0.001246963;-0.02967686,-0.0932866;-0.3796819;-0.0009408556,-0.09822209;-0.7233539;0.0651288,-0.1094557;-0.7104616;-0.03275447,0.002719798;0.3985224;0.03367571,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0011152;0.1990028;0.01991593,0.00377195;0.4984724;0.03665784,0.1083228;0.3738911;-0.01771782,0.1561874;0.1820157;-0.2159421,0.2270765;0.1719889;-0.4866341,-0.110635;0.3608372;0.02225211,-0.2010461;0.09816173;0.05728713,-0.2171049;-0.1808305;0.03980963,0.06575066;0.008500162;-0.04477274,0.0944896;-0.3670644;0.005479544,0.1049678;-0.709283;0.07812004,0.116526;-0.7567856;0.01599313,-0.07428142;-0.001246963;-0.02967686,-0.0932866;-0.3796819;-0.0009408556,-0.09822209;-0.7233539;0.0651288,-0.1094557;-0.7104616;-0.03275447,0.002719798;0.3985224;0.03367571,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.0011152;0.1990028;0.01991593,0.00377195;0.4984724;0.03665784,0.1083228;0.3738911;-0.01771782,0.1561874;0.1820157;-0.2159421,0.2270765;0.1719889;-0.4866341,-0.110635;0.3608372;0.02225211,-0.2010461;0.09816173;0.05728713,-0.2171049;-0.1808305;0.03980963,0.06575066;0.008500162;-0.04477274,0.0944896;-0.3670644;0.005479544,0.1049678;-0.709283;0.07812004,0.116526;-0.7567856;0.01599313,-0.07428142;-0.001246963;-0.02967686,-0.0932866;-0.3796819;-0.0009408556,-0.09822209;-0.7233539;0.0651288,-0.1094557;-0.7104616;-0.03275447,0.002719798;0.3985224;0.03367571,0;0;0,0.007753682;0.1995134;0.01158869,0.01872053;0.499242;0.01518008,0.1173234;0.3711231;-0.03968863,0.15217;0.1528066;-0.2115131,0.1882106;0.2014265;-0.4848941,-0.09864078;0.3613664;0.01263459,-0.1768848;0.09263697;0.02053198,-0.2332662;-0.1816275;0.02018941,0.06430329;0.005254214;-0.047302,0.09593724;-0.3666928;0.02379445,0.1045789;-0.7056093;0.110748,0.1109677;-0.7561101;0.05176644,-0.0771495;0.0005830685;-0.02115689,-0.08689107;-0.3761953;0.02724923,-0.09602103;-0.7164936;0.1085741,-0.1117183;-0.7046003;0.0114878,0.01513333;0.3993157;0.01654628,37.54517
+0;0;0,0.00115595;0.1989986;0.01995555,0.00383979;0.4984609;0.03683534,0.1082277;0.3742363;-0.01807268,0.1347259;0.1745267;-0.2125307,0.2188239;0.188372;-0.4792438,-0.1107;0.3611358;0.02252278,-0.2017682;0.09877765;0.05822721,-0.2161272;-0.1801919;0.03899654,0.06556015;0.008661938;-0.0450204,0.09448532;-0.3668512;0.005509086,0.1050366;-0.7090561;0.07820304,0.115913;-0.7572353;0.01680498,-0.07436597;-0.001362631;-0.02945921,-0.09297341;-0.3798443;-0.001080388,-0.09816176;-0.7234773;0.06517245,-0.1095546;-0.7105817;-0.03269301,0.002772386;0.398513;0.03379068,0;0;0,0.00719682;0.1992326;0.01595556,0.01752094;0.498864;0.02520775,0.1150836;0.3719137;-0.03372524,0.1656834;0.1700836;-0.2210865,0.2157324;0.1785634;-0.4964467,-0.1007051;0.3629539;0.02458033,-0.1764621;0.09378782;0.03908835,-0.224344;-0.1820373;0.04436261,0.06161029;0.005807203;-0.05069959,0.09908631;-0.3670602;0.01227241,0.1071735;-0.7068642;0.09574556,0.1141955;-0.7584526;0.03835188,-0.07828061;-0.0007059794;-0.01648174,-0.08477943;-0.3788276;0.0206909,-0.09475564;-0.7206888;0.09506428,-0.1124497;-0.708566;-0.001720682,0.01377325;0.3989359;0.0246358,44.92822
+0;0;0,0.00115595;0.1989986;0.01995555,0.00383979;0.4984609;0.03683534,0.1082277;0.3742363;-0.01807268,0.1347259;0.1745267;-0.2125307,0.2188239;0.188372;-0.4792438,-0.1107;0.3611358;0.02252278,-0.2017682;0.09877765;0.05822721,-0.2161272;-0.1801919;0.03899654,0.06556015;0.008661938;-0.0450204,0.09448532;-0.3668512;0.005509086,0.1050366;-0.7090561;0.07820304,0.115913;-0.7572353;0.01680498,-0.07436597;-0.001362631;-0.02945921,-0.09297341;-0.3798443;-0.001080388,-0.09816176;-0.7234773;0.06517245,-0.1095546;-0.7105817;-0.03269301,0.002772386;0.398513;0.03379068,0;0;0,0.00719682;0.1992326;0.01595556,0.01752094;0.498864;0.02520775,0.1150836;0.3719137;-0.03372524,0.1656834;0.1700836;-0.2210865,0.2157324;0.1785634;-0.4964467,-0.1007051;0.3629539;0.02458033,-0.1764621;0.09378782;0.03908835,-0.224344;-0.1820373;0.04436261,0.06161029;0.005807203;-0.05069959,0.09908631;-0.3670602;0.01227241,0.1071735;-0.7068642;0.09574556,0.1141955;-0.7584526;0.03835188,-0.07828061;-0.0007059794;-0.01648174,-0.08477943;-0.3788276;0.0206909,-0.09475564;-0.7206888;0.09506428,-0.1124497;-0.708566;-0.001720682,0.01377325;0.3989359;0.0246358,44.95427
+0;0;0,0.00115595;0.1989986;0.01995555,0.00383979;0.4984609;0.03683534,0.1082277;0.3742363;-0.01807268,0.1347259;0.1745267;-0.2125307,0.2188239;0.188372;-0.4792438,-0.1107;0.3611358;0.02252278,-0.2017682;0.09877765;0.05822721,-0.2161272;-0.1801919;0.03899654,0.06556015;0.008661938;-0.0450204,0.09448532;-0.3668512;0.005509086,0.1050366;-0.7090561;0.07820304,0.115913;-0.7572353;0.01680498,-0.07436597;-0.001362631;-0.02945921,-0.09297341;-0.3798443;-0.001080388,-0.09816176;-0.7234773;0.06517245,-0.1095546;-0.7105817;-0.03269301,0.002772386;0.398513;0.03379068,0;0;0,0.007044205;0.1992197;0.01618301,0.01743132;0.498831;0.0261341,0.1148956;0.372214;-0.0334811,0.1658575;0.1702473;-0.220597,0.216754;0.1775673;-0.495835,-0.1008663;0.3631696;0.02490967,-0.1777405;0.09438434;0.04055721,-0.2223638;-0.1819934;0.04546757,0.06163293;0.005838127;-0.05066852,0.09881824;-0.3670329;0.01245426,0.1070381;-0.7067773;0.09615701,0.1139682;-0.7584665;0.0388957,-0.07828681;-0.0007435938;-0.01645064,-0.08474939;-0.3789454;0.01990404,-0.09468074;-0.7206365;0.09506056,-0.1124144;-0.7084827;-0.001722865,0.01368877;0.3989053;0.02521082,44.97161
+0;0;0,0.001168966;0.1989901;0.02003961,0.003861007;0.4984501;0.03695504,0.1077659;0.3749456;-0.01925364,0.1333452;0.1742291;-0.2127959,0.2225228;0.196276;-0.4772979,-0.1106802;0.3611394;0.02259119,-0.2023847;0.09900525;0.05831231,-0.2158391;-0.1799144;0.03775058,0.06527121;0.008609328;-0.04544831,0.09455836;-0.3668076;0.005584996,0.1049977;-0.7089673;0.07850794,0.09080417;-0.6959558;-0.01901097,-0.07446203;-0.001147554;-0.0292248,-0.09311201;-0.3796672;-0.001384931,-0.09837051;-0.7232578;0.06508206,-0.1101429;-0.7103606;-0.03273872,0.002792498;0.3985024;0.03390324,0;0;0,0.007044205;0.1992197;0.01618301,0.01743132;0.498831;0.0261341,0.1148956;0.372214;-0.0334811,0.1658575;0.1702473;-0.220597,0.216754;0.1775673;-0.495835,-0.1008663;0.3631696;0.02490967,-0.1777405;0.09438434;0.04055721,-0.2223638;-0.1819934;0.04546757,0.06163293;0.005838127;-0.05066852,0.09881824;-0.3670329;0.01245426,0.1070381;-0.7067773;0.09615701,0.1139682;-0.7584665;0.0388957,-0.07828681;-0.0007435938;-0.01645064,-0.08474939;-0.3789454;0.01990404,-0.09468074;-0.7206365;0.09506056,-0.1124144;-0.7084827;-0.001722865,0.01368877;0.3989053;0.02521082,44.98303
+0;0;0,0.001168966;0.1989901;0.02003961,0.003861007;0.4984501;0.03695504,0.1077659;0.3749456;-0.01925364,0.1333452;0.1742291;-0.2127959,0.2225228;0.196276;-0.4772979,-0.1106802;0.3611394;0.02259119,-0.2023847;0.09900525;0.05831231,-0.2158391;-0.1799144;0.03775058,0.06527121;0.008609328;-0.04544831,0.09455836;-0.3668076;0.005584996,0.1049977;-0.7089673;0.07850794,0.09080417;-0.6959558;-0.01901097,-0.07446203;-0.001147554;-0.0292248,-0.09311201;-0.3796672;-0.001384931,-0.09837051;-0.7232578;0.06508206,-0.1101429;-0.7103606;-0.03273872,0.002792498;0.3985024;0.03390324,0;0;0,0.006931529;0.1992171;0.0162632,0.01700081;0.4988236;0.02674095,0.114613;0.3723515;-0.03320923,0.1660144;0.1704267;-0.2202501,0.2181755;0.176491;-0.4952819,-0.1011599;0.3632568;0.02536578,-0.1785468;0.09463355;0.04126573,-0.2218959;-0.1819479;0.04611766,0.06161356;0.005944108;-0.05067975,0.09853496;-0.3669283;0.01258937,0.1068286;-0.7065965;0.09659366,0.11365;-0.758936;0.04025818,-0.07830454;-0.0008328821;-0.01636174,-0.08496706;-0.3790283;0.02002311,-0.09481809;-0.7207119;0.09522443,-0.1126164;-0.7085476;-0.00154908,0.01342596;0.3988942;0.02558413,45.00528
+0;0;0,0.001168966;0.1989901;0.02003961,0.003861007;0.4984501;0.03695504,0.1077659;0.3749456;-0.01925364,0.1333452;0.1742291;-0.2127959,0.2225228;0.196276;-0.4772979,-0.1106802;0.3611394;0.02259119,-0.2023847;0.09900525;0.05831231,-0.2158391;-0.1799144;0.03775058,0.06527121;0.008609328;-0.04544831,0.09455836;-0.3668076;0.005584996,0.1049977;-0.7089673;0.07850794,0.09080417;-0.6959558;-0.01901097,-0.07446203;-0.001147554;-0.0292248,-0.09311201;-0.3796672;-0.001384931,-0.09837051;-0.7232578;0.06508206,-0.1101429;-0.7103606;-0.03273872,0.002792498;0.3985024;0.03390324,0;0;0,0.006931529;0.1992171;0.0162632,0.01700081;0.4988236;0.02674095,0.114613;0.3723515;-0.03320923,0.1660144;0.1704267;-0.2202501,0.2181755;0.176491;-0.4952819,-0.1011599;0.3632568;0.02536578,-0.1785468;0.09463355;0.04126573,-0.2218959;-0.1819479;0.04611766,0.06161356;0.005944108;-0.05067975,0.09853496;-0.3669283;0.01258937,0.1068286;-0.7065965;0.09659366,0.11365;-0.758936;0.04025818,-0.07830454;-0.0008328821;-0.01636174,-0.08496706;-0.3790283;0.02002311,-0.09481809;-0.7207119;0.09522443,-0.1126164;-0.7085476;-0.00154908,0.01342596;0.3988942;0.02558413,45.01709
+0;0;0,0.001357707;0.1989755;0.02017215,0.004247121;0.4984304;0.03713492,0.1072218;0.3748889;-0.0206824,0.1369187;0.1780879;-0.2176277,0.2187533;0.2180996;-0.4823958,-0.1105102;0.361458;0.02289651,-0.2024146;0.09933954;0.05821645,-0.2153916;-0.1795509;0.03696293,0.06488463;0.00880269;-0.04596192,0.09466095;-0.3664477;0.006005093,0.1052244;-0.7086059;0.07891726,0.09052854;-0.6955931;-0.01852743,-0.07457745;-0.001322404;-0.02892151,-0.09290469;-0.3798814;-0.001403512,-0.09831053;-0.7233498;0.06568009,-0.1105864;-0.7104514;-0.03207901,0.003085615;0.3984838;0.03408011,0;0;0,0.006736381;0.1992063;0.01647689,0.0167104;0.4988106;0.02708999,0.1142021;0.3722807;-0.03316667,0.1871997;0.1595783;-0.1999871,0.2144996;0.2004899;-0.4756335,-0.1013667;0.3631577;0.02583335,-0.1790387;0.09462517;0.04187631,-0.21975;-0.1823532;0.04693165,0.06163955;0.006024865;-0.05063858,0.09830799;-0.366822;0.01292717,0.1065881;-0.7064495;0.09709734,0.1137574;-0.7587057;0.04068349,-0.07830328;-0.0009159317;-0.01636328,-0.08501219;-0.3791053;0.020076,-0.0950193;-0.720707;0.09562815,-0.112949;-0.7085325;-0.001122966,0.01319307;0.3988795;0.02590693,45.02759
+0;0;0,0.001357707;0.1989755;0.02017215,0.004247121;0.4984304;0.03713492,0.1072218;0.3748889;-0.0206824,0.1369187;0.1780879;-0.2176277,0.2187533;0.2180996;-0.4823958,-0.1105102;0.361458;0.02289651,-0.2024146;0.09933954;0.05821645,-0.2153916;-0.1795509;0.03696293,0.06488463;0.00880269;-0.04596192,0.09466095;-0.3664477;0.006005093,0.1052244;-0.7086059;0.07891726,0.09052854;-0.6955931;-0.01852743,-0.07457745;-0.001322404;-0.02892151,-0.09290469;-0.3798814;-0.001403512,-0.09831053;-0.7233498;0.06568009,-0.1105864;-0.7104514;-0.03207901,0.003085615;0.3984838;0.03408011,0;0;0,0.006736381;0.1992063;0.01647689,0.0167104;0.4988106;0.02708999,0.1142021;0.3722807;-0.03316667,0.1871997;0.1595783;-0.1999871,0.2144996;0.2004899;-0.4756335,-0.1013667;0.3631577;0.02583335,-0.1790387;0.09462517;0.04187631,-0.21975;-0.1823532;0.04693165,0.06163955;0.006024865;-0.05063858,0.09830799;-0.366822;0.01292717,0.1065881;-0.7064495;0.09709734,0.1137574;-0.7587057;0.04068349,-0.07830328;-0.0009159317;-0.01636328,-0.08501219;-0.3791053;0.020076,-0.0950193;-0.720707;0.09562815,-0.112949;-0.7085325;-0.001122966,0.01319307;0.3988795;0.02590693,45.03879
+0;0;0,0.001357707;0.1989755;0.02017215,0.004247121;0.4984304;0.03713492,0.1072218;0.3748889;-0.0206824,0.1369187;0.1780879;-0.2176277,0.2187533;0.2180996;-0.4823958,-0.1105102;0.361458;0.02289651,-0.2024146;0.09933954;0.05821645,-0.2153916;-0.1795509;0.03696293,0.06488463;0.00880269;-0.04596192,0.09466095;-0.3664477;0.006005093,0.1052244;-0.7086059;0.07891726,0.09052854;-0.6955931;-0.01852743,-0.07457745;-0.001322404;-0.02892151,-0.09290469;-0.3798814;-0.001403512,-0.09831053;-0.7233498;0.06568009,-0.1105864;-0.7104514;-0.03207901,0.003085615;0.3984838;0.03408011,0;0;0,0.006736381;0.1992063;0.01647689,0.0167104;0.4988106;0.02708999,0.1142021;0.3722807;-0.03316667,0.1871997;0.1595783;-0.1999871,0.2144996;0.2004899;-0.4756335,-0.1013667;0.3631577;0.02583335,-0.1790387;0.09462517;0.04187631,-0.21975;-0.1823532;0.04693165,0.06163955;0.006024865;-0.05063858,0.09830799;-0.366822;0.01292717,0.1065881;-0.7064495;0.09709734,0.1137574;-0.7587057;0.04068349,-0.07830328;-0.0009159317;-0.01636328,-0.08501219;-0.3791053;0.020076,-0.0950193;-0.720707;0.09562815,-0.112949;-0.7085325;-0.001122966,0.01319307;0.3988795;0.02590693,45.06093
+0;0;0,0.00148259;0.1989653;0.02026347,0.004526372;0.4984142;0.03730962,0.1068778;0.374974;-0.02161548,0.1922866;0.2569653;-0.2607374,0.2210623;0.2529339;-0.5392257,-0.1103489;0.3615268;0.02319807,-0.2021068;0.09933016;0.05831832,-0.2148946;-0.1795242;0.0364842,0.06489342;0.008678768;-0.04597306,0.09497191;-0.3665135;0.006238744,0.1055385;-0.7086725;0.07914674,0.09049871;-0.6956565;-0.01824602,-0.07460828;-0.001242438;-0.02884546,-0.09262107;-0.379816;-0.001320841,-0.09787122;-0.7232552;0.06592453,-0.110496;-0.7103481;-0.03179164,0.00328984;0.3984697;0.03421893,0;0;0,0.006586605;0.1992033;0.01657287,0.01613864;0.4988139;0.0274327,0.1137932;0.3722832;-0.03302838,0.1552951;0.1549135;-0.2045743,0.2225187;0.1655106;-0.4761782,-0.1016027;0.3627648;0.02636591,-0.1766666;0.09325618;0.03779027,-0.2174711;-0.1834944;0.04979439,0.06166531;0.006102391;-0.05059792,0.09817742;-0.3667635;0.01294631,0.1066504;-0.7063421;0.09729435,0.1130781;-0.758275;0.04032343,-0.07827094;-0.001046921;-0.01650948,-0.08472527;-0.3792531;0.01980025,-0.09516443;-0.7207936;0.09557016,-0.113232;-0.708618;-0.001155511,0.01283444;0.398877;0.02613331,45.0725
+0;0;0,0.00148259;0.1989653;0.02026347,0.004526372;0.4984142;0.03730962,0.1068778;0.374974;-0.02161548,0.1922866;0.2569653;-0.2607374,0.2210623;0.2529339;-0.5392257,-0.1103489;0.3615268;0.02319807,-0.2021068;0.09933016;0.05831832,-0.2148946;-0.1795242;0.0364842,0.06489342;0.008678768;-0.04597306,0.09497191;-0.3665135;0.006238744,0.1055385;-0.7086725;0.07914674,0.09049871;-0.6956565;-0.01824602,-0.07460828;-0.001242438;-0.02884546,-0.09262107;-0.379816;-0.001320841,-0.09787122;-0.7232552;0.06592453,-0.110496;-0.7103481;-0.03179164,0.00328984;0.3984697;0.03421893,0;0;0,0.006579178;0.1992015;0.0165979,0.01614453;0.4988093;0.02751058,0.1137331;0.3721543;-0.03300697,0.1563247;0.1587123;-0.2091559,0.2243918;0.1613059;-0.4807441,-0.1015911;0.362732;0.02647214,-0.1767617;0.09326327;0.03813433,-0.2176052;-0.1835029;0.04963667,0.06167519;0.006112958;-0.0505846,0.09820561;-0.3667515;0.01295767,0.1067006;-0.7063347;0.09728469,0.1128115;-0.7582861;0.04030544,-0.07827422;-0.001050184;-0.01649371,-0.08474009;-0.3792508;0.01987192,-0.09514149;-0.7207825;0.09568712,-0.1132354;-0.7086049;-0.001033999,0.01283695;0.3988726;0.02620534,45.09449
+0;0;0,0.00148259;0.1989653;0.02026347,0.004526372;0.4984142;0.03730962,0.1068778;0.374974;-0.02161548,0.1922866;0.2569653;-0.2607374,0.2210623;0.2529339;-0.5392257,-0.1103489;0.3615268;0.02319807,-0.2021068;0.09933016;0.05831832,-0.2148946;-0.1795242;0.0364842,0.06489342;0.008678768;-0.04597306,0.09497191;-0.3665135;0.006238744,0.1055385;-0.7086725;0.07914674,0.09049871;-0.6956565;-0.01824602,-0.07460828;-0.001242438;-0.02884546,-0.09262107;-0.379816;-0.001320841,-0.09787122;-0.7232552;0.06592453,-0.110496;-0.7103481;-0.03179164,0.00328984;0.3984697;0.03421893,0;0;0,0.006579178;0.1992015;0.0165979,0.01614453;0.4988093;0.02751058,0.1137331;0.3721543;-0.03300697,0.1563247;0.1587123;-0.2091559,0.2243918;0.1613059;-0.4807441,-0.1015911;0.362732;0.02647214,-0.1767617;0.09326327;0.03813433,-0.2176052;-0.1835029;0.04963667,0.06167519;0.006112958;-0.0505846,0.09820561;-0.3667515;0.01295767,0.1067006;-0.7063347;0.09728469,0.1128115;-0.7582861;0.04030544,-0.07827422;-0.001050184;-0.01649371,-0.08474009;-0.3792508;0.01987192,-0.09514149;-0.7207825;0.09568712,-0.1132354;-0.7086049;-0.001033999,0.01283695;0.3988726;0.02620534,45.10592
+0;0;0,0.001503762;0.1989427;0.02048298,0.004552715;0.4983793;0.03772628,0.106546;0.3751169;-0.02196748,0.1660383;0.2584732;-0.2694648,0.2335455;0.2321579;-0.5399279,-0.110404;0.3617385;0.0235611,-0.2009608;0.09882975;0.05640107,-0.2150512;-0.1800296;0.03545005,0.06479634;0.008538889;-0.04613592,0.09488565;-0.3665469;0.006828751,0.1053112;-0.7086912;0.07982591,0.0900728;-0.6956659;-0.01753759,-0.07472582;-0.001248278;-0.02853932,-0.0925654;-0.3798321;-0.001043022,-0.09793236;-0.723224;0.06643392,-0.1107588;-0.7103071;-0.03125769,0.003313096;0.3984361;0.03459378,0;0;0,0.006579178;0.1992015;0.0165979,0.01614453;0.4988093;0.02751058,0.1137331;0.3721543;-0.03300697,0.1563247;0.1587123;-0.2091559,0.2243918;0.1613059;-0.4807441,-0.1015911;0.362732;0.02647214,-0.1767617;0.09326327;0.03813433,-0.2176052;-0.1835029;0.04963667,0.06167519;0.006112958;-0.0505846,0.09820561;-0.3667515;0.01295767,0.1067006;-0.7063347;0.09728469,0.1128115;-0.7582861;0.04030544,-0.07827422;-0.001050184;-0.01649371,-0.08474009;-0.3792508;0.01987192,-0.09514149;-0.7207825;0.09568712,-0.1132354;-0.7086049;-0.001033999,0.01283695;0.3988726;0.02620534,45.11694
+0;0;0,0.001503762;0.1989427;0.02048298,0.004552715;0.4983793;0.03772628,0.106546;0.3751169;-0.02196748,0.1660383;0.2584732;-0.2694648,0.2335455;0.2321579;-0.5399279,-0.110404;0.3617385;0.0235611,-0.2009608;0.09882975;0.05640107,-0.2150512;-0.1800296;0.03545005,0.06479634;0.008538889;-0.04613592,0.09488565;-0.3665469;0.006828751,0.1053112;-0.7086912;0.07982591,0.0900728;-0.6956659;-0.01753759,-0.07472582;-0.001248278;-0.02853932,-0.0925654;-0.3798321;-0.001043022,-0.09793236;-0.723224;0.06643392,-0.1107588;-0.7103071;-0.03125769,0.003313096;0.3984361;0.03459378,0;0;0,0.006410271;0.1991989;0.01669404,0.01511709;0.4988123;0.0282083,0.1130817;0.3722385;-0.03259519,0.1614298;0.1667913;-0.2165894,0.2288006;0.1608232;-0.488298,-0.1021032;0.3622773;0.02672802,-0.176821;0.09264967;0.03759811,-0.2208267;-0.1836703;0.04812191,0.0616841;0.006185009;-0.05056497,0.09801745;-0.3666562;0.01322649,0.1064313;-0.7062833;0.09738491,0.1119858;-0.7581162;0.04017887,-0.07828318;-0.001122023;-0.01644642,-0.08480235;-0.3793128;0.02001265,-0.09527529;-0.7208353;0.09585913,-0.1133965;-0.7086499;-0.0008583218,0.01218225;0.3988675;0.02665181,45.13931
+0;0;0,0.001503762;0.1989427;0.02048298,0.004552715;0.4983793;0.03772628,0.106546;0.3751169;-0.02196748,0.1660383;0.2584732;-0.2694648,0.2335455;0.2321579;-0.5399279,-0.110404;0.3617385;0.0235611,-0.2009608;0.09882975;0.05640107,-0.2150512;-0.1800296;0.03545005,0.06479634;0.008538889;-0.04613592,0.09488565;-0.3665469;0.006828751,0.1053112;-0.7086912;0.07982591,0.0900728;-0.6956659;-0.01753759,-0.07472582;-0.001248278;-0.02853932,-0.0925654;-0.3798321;-0.001043022,-0.09793236;-0.723224;0.06643392,-0.1107588;-0.7103071;-0.03125769,0.003313096;0.3984361;0.03459378,0;0;0,0.006410271;0.1991989;0.01669404,0.01511709;0.4988123;0.0282083,0.1130817;0.3722385;-0.03259519,0.1614298;0.1667913;-0.2165894,0.2288006;0.1608232;-0.488298,-0.1021032;0.3622773;0.02672802,-0.176821;0.09264967;0.03759811,-0.2208267;-0.1836703;0.04812191,0.0616841;0.006185009;-0.05056497,0.09801745;-0.3666562;0.01322649,0.1064313;-0.7062833;0.09738491,0.1119858;-0.7581162;0.04017887,-0.07828318;-0.001122023;-0.01644642,-0.08480235;-0.3793128;0.02001265,-0.09527529;-0.7208353;0.09585913,-0.1133965;-0.7086499;-0.0008583218,0.01218225;0.3988675;0.02665181,45.15067
+0;0;0,0.001485052;0.1989286;0.02062016,0.004564551;0.498354;0.03804199,0.106401;0.3754687;-0.02211301,0.1669626;0.2583346;-0.2691188,0.2356129;0.2416448;-0.540059,-0.1105731;0.3622112;0.02394337,-0.2007767;0.09911421;0.05624363,-0.2149956;-0.1796939;0.03470603,0.06474903;0.00842154;-0.0462238,0.09479783;-0.3665958;0.007246111,0.1054942;-0.7087325;0.08024013,0.09010509;-0.6957083;-0.01709948,-0.07480606;-0.001243049;-0.02832857,-0.09247278;-0.379861;-0.001192531,-0.0979618;-0.7231452;0.06682061,-0.1109378;-0.7102214;-0.03085246,0.003313639;0.3984123;0.03486589,0;0;0,0.006314131;0.1992004;0.01671346,0.01491769;0.4988144;0.02827222,0.1129698;0.3722564;-0.03245728,0.1651876;0.1719692;-0.2210265,0.23137;0.1611819;-0.4928785,-0.1019305;0.3613561;0.0240582,-0.1754097;0.09154117;0.0382249,-0.2200336;-0.1846978;0.04826315,0.06170617;0.006279425;-0.0505264,0.0978466;-0.3665639;0.01336226,0.1064308;-0.7061772;0.09755889,0.1122296;-0.7576557;0.03987319,-0.07828262;-0.001332732;-0.01643338,-0.0847711;-0.379501;0.02026312,-0.09522941;-0.7210602;0.09594655,-0.1124983;-0.7088531;-0.0009306967,0.01202453;0.3988683;0.02671921,45.17283
+0;0;0,0.001485052;0.1989286;0.02062016,0.004564551;0.498354;0.03804199,0.106401;0.3754687;-0.02211301,0.1669626;0.2583346;-0.2691188,0.2356129;0.2416448;-0.540059,-0.1105731;0.3622112;0.02394337,-0.2007767;0.09911421;0.05624363,-0.2149956;-0.1796939;0.03470603,0.06474903;0.00842154;-0.0462238,0.09479783;-0.3665958;0.007246111,0.1054942;-0.7087325;0.08024013,0.09010509;-0.6957083;-0.01709948,-0.07480606;-0.001243049;-0.02832857,-0.09247278;-0.379861;-0.001192531,-0.0979618;-0.7231452;0.06682061,-0.1109378;-0.7102214;-0.03085246,0.003313639;0.3984123;0.03486589,0;0;0,0.006314131;0.1992004;0.01671346,0.01491769;0.4988144;0.02827222,0.1129698;0.3722564;-0.03245728,0.1651876;0.1719692;-0.2210265,0.23137;0.1611819;-0.4928785,-0.1019305;0.3613561;0.0240582,-0.1754097;0.09154117;0.0382249,-0.2200336;-0.1846978;0.04826315,0.06170617;0.006279425;-0.0505264,0.0978466;-0.3665639;0.01336226,0.1064308;-0.7061772;0.09755889,0.1122296;-0.7576557;0.03987319,-0.07828262;-0.001332732;-0.01643338,-0.0847711;-0.379501;0.02026312,-0.09522941;-0.7210602;0.09594655,-0.1124983;-0.7088531;-0.0009306967,0.01202453;0.3988683;0.02671921,45.18391
+0;0;0,0.001485052;0.1989286;0.02062016,0.004564551;0.498354;0.03804199,0.106401;0.3754687;-0.02211301,0.1669626;0.2583346;-0.2691188,0.2356129;0.2416448;-0.540059,-0.1105731;0.3622112;0.02394337,-0.2007767;0.09911421;0.05624363,-0.2149956;-0.1796939;0.03470603,0.06474903;0.00842154;-0.0462238,0.09479783;-0.3665958;0.007246111,0.1054942;-0.7087325;0.08024013,0.09010509;-0.6957083;-0.01709948,-0.07480606;-0.001243049;-0.02832857,-0.09247278;-0.379861;-0.001192531,-0.0979618;-0.7231452;0.06682061,-0.1109378;-0.7102214;-0.03085246,0.003313639;0.3984123;0.03486589,0;0;0,0.006219377;0.1992126;0.0166031,0.01465059;0.4988391;0.02791004,0.1129081;0.3723153;-0.03246477,0.1645164;0.1693278;-0.2182943,0.2329828;0.1654667;-0.489767,-0.1021552;0.3614458;0.02409039,-0.1756209;0.09162021;0.03812356,-0.2210724;-0.1845145;0.04727744,0.06171402;0.006317066;-0.05051212,0.09782119;-0.366587;0.01303958,0.1063839;-0.7061398;0.09748225,0.1125167;-0.7572156;0.03926624,-0.07828613;-0.001378332;-0.01641285,-0.08485153;-0.379557;0.02016315,-0.09520711;-0.721096;0.09595164,-0.1124801;-0.7088952;-0.0009237081,0.01182825;0.3988889;0.02649889,45.20639
+0;0;0,0.001417533;0.1988977;0.02092168,0.004454989;0.4983079;0.03862024,0.1060776;0.3761551;-0.02234859,0.1976145;0.2676626;-0.2636997,0.2049728;0.3127393;-0.5399495,-0.1106117;0.3620162;0.02436088,-0.200915;0.09891278;0.05632806,-0.2151178;-0.1798659;0.03440269,0.06462438;0.008280054;-0.04642336,0.09470123;-0.3666548;0.007606491,0.105229;-0.7087631;0.08075746,0.08959539;-0.6957264;-0.01654536,-0.07493383;-0.001180426;-0.02799154,-0.09267589;-0.3797915;-0.0008096583,-0.09812097;-0.7230405;0.06738488,-0.1113433;-0.7101033;-0.03025747,0.00322167;0.3983696;0.03533299,0;0;0,0.006110673;0.1992142;0.01662474,0.01439922;0.4988393;0.02805891,0.1126397;0.3721414;-0.03236062,0.1643389;0.1679407;-0.2168309,0.235168;0.169257;-0.4877211,-0.102394;0.3615173;0.02430193,-0.1763029;0.09180745;0.03823365,-0.2217155;-0.184371;0.04618024,0.06172578;0.006322861;-0.05049702,0.0979022;-0.3665724;0.01306676,0.1064906;-0.7061476;0.09741695,0.1124091;-0.7575122;0.03958302,-0.07828153;-0.001388603;-0.01643392,-0.08443676;-0.3796061;0.01981044,-0.09521753;-0.7210734;0.09586217,-0.1125409;-0.7088717;-0.001004338,0.01161488;0.3988885;0.02661889,45.22846
+0;0;0,0.001417533;0.1988977;0.02092168,0.004454989;0.4983079;0.03862024,0.1060776;0.3761551;-0.02234859,0.1976145;0.2676626;-0.2636997,0.2049728;0.3127393;-0.5399495,-0.1106117;0.3620162;0.02436088,-0.200915;0.09891278;0.05632806,-0.2151178;-0.1798659;0.03440269,0.06462438;0.008280054;-0.04642336,0.09470123;-0.3666548;0.007606491,0.105229;-0.7087631;0.08075746,0.08959539;-0.6957264;-0.01654536,-0.07493383;-0.001180426;-0.02799154,-0.09267589;-0.3797915;-0.0008096583,-0.09812097;-0.7230405;0.06738488,-0.1113433;-0.7101033;-0.03025747,0.00322167;0.3983696;0.03533299,0;0;0,0.006110673;0.1992142;0.01662474,0.01439922;0.4988393;0.02805891,0.1126397;0.3721414;-0.03236062,0.1643389;0.1679407;-0.2168309,0.235168;0.169257;-0.4877211,-0.102394;0.3615173;0.02430193,-0.1763029;0.09180745;0.03823365,-0.2217155;-0.184371;0.04618024,0.06172578;0.006322861;-0.05049702,0.0979022;-0.3665724;0.01306676,0.1064906;-0.7061476;0.09741695,0.1124091;-0.7575122;0.03958302,-0.07828153;-0.001388603;-0.01643392,-0.08443676;-0.3796061;0.01981044,-0.09521753;-0.7210734;0.09586217,-0.1125409;-0.7088717;-0.001004338,0.01161488;0.3988885;0.02661889,45.23988
+0;0;0,0.001417533;0.1988977;0.02092168,0.004454989;0.4983079;0.03862024,0.1060776;0.3761551;-0.02234859,0.1976145;0.2676626;-0.2636997,0.2049728;0.3127393;-0.5399495,-0.1106117;0.3620162;0.02436088,-0.200915;0.09891278;0.05632806,-0.2151178;-0.1798659;0.03440269,0.06462438;0.008280054;-0.04642336,0.09470123;-0.3666548;0.007606491,0.105229;-0.7087631;0.08075746,0.08959539;-0.6957264;-0.01654536,-0.07493383;-0.001180426;-0.02799154,-0.09267589;-0.3797915;-0.0008096583,-0.09812097;-0.7230405;0.06738488,-0.1113433;-0.7101033;-0.03025747,0.00322167;0.3983696;0.03533299,0;0;0,0.006110673;0.1992142;0.01662474,0.01439922;0.4988393;0.02805891,0.1126397;0.3721414;-0.03236062,0.1643389;0.1679407;-0.2168309,0.235168;0.169257;-0.4877211,-0.102394;0.3615173;0.02430193,-0.1763029;0.09180745;0.03823365,-0.2217155;-0.184371;0.04618024,0.06172578;0.006322861;-0.05049702,0.0979022;-0.3665724;0.01306676,0.1064906;-0.7061476;0.09741695,0.1124091;-0.7575122;0.03958302,-0.07828153;-0.001388603;-0.01643392,-0.08443676;-0.3796061;0.01981044,-0.09521753;-0.7210734;0.09586217,-0.1125409;-0.7088717;-0.001004338,0.01161488;0.3988885;0.02661889,45.25108
+0;0;0,0.001392375;0.1988805;0.02108563,0.004412959;0.4982767;0.03901018,0.1060081;0.3762538;-0.02211945,0.1974198;0.2693397;-0.2642212,0.2228104;0.3082616;-0.5403379,-0.1106723;0.3620651;0.02468,-0.2006886;0.09890312;0.05697332,-0.2141273;-0.1798213;0.03390612,0.06451758;0.008179903;-0.04658939,0.09466024;-0.3666596;0.008061595,0.1053309;-0.7087291;0.08137297,0.1163215;-0.7571189;0.02026442,-0.07502796;-0.001154528;-0.02773936,-0.09279431;-0.3797605;-0.0005016867,-0.0982822;-0.723006;0.0677067,-0.1115405;-0.7100599;-0.02993234,0.003184514;0.39834;0.03566906,0;0;0,0.005991682;0.1992161;0.01664494,0.01384321;0.4988462;0.0282476,0.1123111;0.3722388;-0.0321514,0.1880934;0.1877069;-0.228633,0.2383216;0.2010713;-0.5037665,-0.1027872;0.3615244;0.02435559,-0.176829;0.0918445;0.03815941,-0.2242508;-0.1840593;0.04347371,0.06178976;0.006372213;-0.05041251,0.09787233;-0.3665287;0.01317154,0.1065063;-0.7061026;0.09752232,0.1122609;-0.7572019;0.03930048,-0.07826956;-0.001401798;-0.01648974,-0.0843985;-0.3796002;0.01995735,-0.09516414;-0.7210602;0.09604416,-0.1124861;-0.7088585;-0.0008226112,0.01122118;0.3988917;0.02675921,45.27335
+0;0;0,0.001392375;0.1988805;0.02108563,0.004412959;0.4982767;0.03901018,0.1060081;0.3762538;-0.02211945,0.1974198;0.2693397;-0.2642212,0.2228104;0.3082616;-0.5403379,-0.1106723;0.3620651;0.02468,-0.2006886;0.09890312;0.05697332,-0.2141273;-0.1798213;0.03390612,0.06451758;0.008179903;-0.04658939,0.09466024;-0.3666596;0.008061595,0.1053309;-0.7087291;0.08137297,0.1163215;-0.7571189;0.02026442,-0.07502796;-0.001154528;-0.02773936,-0.09279431;-0.3797605;-0.0005016867,-0.0982822;-0.723006;0.0677067,-0.1115405;-0.7100599;-0.02993234,0.003184514;0.39834;0.03566906,0;0;0,0.005991682;0.1992161;0.01664494,0.01384321;0.4988462;0.0282476,0.1123111;0.3722388;-0.0321514,0.1880934;0.1877069;-0.228633,0.2383216;0.2010713;-0.5037665,-0.1027872;0.3615244;0.02435559,-0.176829;0.0918445;0.03815941,-0.2242508;-0.1840593;0.04347371,0.06178976;0.006372213;-0.05041251,0.09787233;-0.3665287;0.01317154,0.1065063;-0.7061026;0.09752232,0.1122609;-0.7572019;0.03930048,-0.07826956;-0.001401798;-0.01648974,-0.0843985;-0.3796002;0.01995735,-0.09516414;-0.7210602;0.09604416,-0.1124861;-0.7088585;-0.0008226112,0.01122118;0.3988917;0.02675921,45.28653
+0;0;0,0.001392375;0.1988805;0.02108563,0.004412959;0.4982767;0.03901018,0.1060081;0.3762538;-0.02211945,0.1974198;0.2693397;-0.2642212,0.2228104;0.3082616;-0.5403379,-0.1106723;0.3620651;0.02468,-0.2006886;0.09890312;0.05697332,-0.2141273;-0.1798213;0.03390612,0.06451758;0.008179903;-0.04658939,0.09466024;-0.3666596;0.008061595,0.1053309;-0.7087291;0.08137297,0.1163215;-0.7571189;0.02026442,-0.07502796;-0.001154528;-0.02773936,-0.09279431;-0.3797605;-0.0005016867,-0.0982822;-0.723006;0.0677067,-0.1115405;-0.7100599;-0.02993234,0.003184514;0.39834;0.03566906,0;0;0,0.005883266;0.199225;0.01657716,0.01357926;0.4988616;0.02809585,0.1121861;0.3721499;-0.03206428,0.1916743;0.1899102;-0.2292198,0.2477686;0.1978527;-0.5034284,-0.1029588;0.3614302;0.02422392,-0.177226;0.09174961;0.03674462,-0.2261794;-0.1838925;0.04174108,0.06182687;0.00638035;-0.05036595,0.09778292;-0.3665115;0.01334301,0.1064623;-0.7061108;0.09758646,0.1121827;-0.757125;0.03924267,-0.07824339;-0.001384899;-0.01661486,-0.08436638;-0.3795616;0.02005787,-0.09513787;-0.72104;0.09606075,-0.1124048;-0.7088449;-0.0008146316,0.01101364;0.3989049;0.0266579,45.30687
+0;0;0,0.001329963;0.1988541;0.02133721,0.0043424;0.4982343;0.03950448,0.1059281;0.3763084;-0.02173224,0.1965534;0.2732085;-0.2657763,0.2237435;0.3082703;-0.5422385,-0.1107807;0.3621314;0.02521944,-0.200328;0.09867737;0.05641706,-0.2135425;-0.179965;0.03225467,0.06458476;0.008106486;-0.04650907,0.09460963;-0.366694;0.008473478,0.1058939;-0.7087666;0.08167868,0.09015773;-0.6957238;-0.01560865,-0.07503356;-0.001164453;-0.0277238,-0.09269299;-0.3797397;6.223097E-06,-0.09812845;-0.7229795;0.06824758,-0.1114476;-0.7100176;-0.02938595,0.003118814;0.3982992;0.03611799,0;0;0,0.005883266;0.199225;0.01657716,0.01357926;0.4988616;0.02809585,0.1121861;0.3721499;-0.03206428,0.1916743;0.1899102;-0.2292198,0.2477686;0.1978527;-0.5034284,-0.1029588;0.3614302;0.02422392,-0.177226;0.09174961;0.03674462,-0.2261794;-0.1838925;0.04174108,0.06182687;0.00638035;-0.05036595,0.09778292;-0.3665115;0.01334301,0.1064623;-0.7061108;0.09758646,0.1121827;-0.757125;0.03924267,-0.07824339;-0.001384899;-0.01661486,-0.08436638;-0.3795616;0.02005787,-0.09513787;-0.72104;0.09606075,-0.1124048;-0.7088449;-0.0008146316,0.01101364;0.3989049;0.0266579,45.31822
+0;0;0,0.001329963;0.1988541;0.02133721,0.0043424;0.4982343;0.03950448,0.1059281;0.3763084;-0.02173224,0.1965534;0.2732085;-0.2657763,0.2237435;0.3082703;-0.5422385,-0.1107807;0.3621314;0.02521944,-0.200328;0.09867737;0.05641706,-0.2135425;-0.179965;0.03225467,0.06458476;0.008106486;-0.04650907,0.09460963;-0.366694;0.008473478,0.1058939;-0.7087666;0.08167868,0.09015773;-0.6957238;-0.01560865,-0.07503356;-0.001164453;-0.0277238,-0.09269299;-0.3797397;6.223097E-06,-0.09812845;-0.7229795;0.06824758,-0.1114476;-0.7100176;-0.02938595,0.003118814;0.3982992;0.03611799,0;0;0,0.005858241;0.1992285;0.0165431,0.01359993;0.4988641;0.02804073,0.1122415;0.3720243;-0.03195034,0.1928898;0.1897341;-0.2285874,0.2515706;0.2133761;-0.5013466,-0.1032988;0.3625056;0.02412299,-0.177413;0.09269315;0.0345301,-0.2274545;-0.1827291;0.04072966,0.06185828;0.006402099;-0.0503246,0.09790083;-0.36645;0.01356769,0.1066505;-0.7060887;0.09764533,0.1122929;-0.7569375;0.03906523,-0.07822225;-0.001397603;-0.01671303,-0.08424176;-0.3795645;0.02007799,-0.09500275;-0.7210355;0.09611579,-0.08654264;-0.7681407;0.03300314,0.01101932;0.3989074;0.0266276,45.34064
+0;0;0,0.001329963;0.1988541;0.02133721,0.0043424;0.4982343;0.03950448,0.1059281;0.3763084;-0.02173224,0.1965534;0.2732085;-0.2657763,0.2237435;0.3082703;-0.5422385,-0.1107807;0.3621314;0.02521944,-0.200328;0.09867737;0.05641706,-0.2135425;-0.179965;0.03225467,0.06458476;0.008106486;-0.04650907,0.09460963;-0.366694;0.008473478,0.1058939;-0.7087666;0.08167868,0.09015773;-0.6957238;-0.01560865,-0.07503356;-0.001164453;-0.0277238,-0.09269299;-0.3797397;6.223097E-06,-0.09812845;-0.7229795;0.06824758,-0.1114476;-0.7100176;-0.02938595,0.003118814;0.3982992;0.03611799,0;0;0,0.005858241;0.1992285;0.0165431,0.01359993;0.4988641;0.02804073,0.1122415;0.3720243;-0.03195034,0.1928898;0.1897341;-0.2285874,0.2515706;0.2133761;-0.5013466,-0.1032988;0.3625056;0.02412299,-0.177413;0.09269315;0.0345301,-0.2274545;-0.1827291;0.04072966,0.06185828;0.006402099;-0.0503246,0.09790083;-0.36645;0.01356769,0.1066505;-0.7060887;0.09764533,0.1122929;-0.7569375;0.03906523,-0.07822225;-0.001397603;-0.01671303,-0.08424176;-0.3795645;0.02007799,-0.09500275;-0.7210355;0.09611579,-0.08654264;-0.7681407;0.03300314,0.01101932;0.3989074;0.0266276,45.35207
+0;0;0,0.001327919;0.1988458;0.02141432,0.004340127;0.4982174;0.03971657,0.1059152;0.3765421;-0.02166808,0.1973283;0.2754385;-0.2662529,0.2253004;0.3101146;-0.5426857,-0.1098249;0.360383;0.02188475,-0.2022166;0.09855428;0.0580717,-0.2148057;-0.1800178;0.03279069,0.06451186;0.008258861;-0.04658338,0.09466422;-0.3664875;0.008697562,0.105858;-0.7085242;0.08208399,0.1162245;-0.7572248;0.02126653,-0.07509313;-0.001318224;-0.02755511,-0.09255416;-0.3799014;0.0001914687,-0.09804334;-0.7231302;0.0684844,-0.08256219;-0.7684867;0.004595943,0.003116969;0.3982834;0.03629608,0;0;0,0.005714599;0.1992341;0.01652676,0.01308969;0.4988775;0.02804944,0.1119851;0.371799;-0.03161246,0.1962085;0.1920087;-0.2290507,0.2530201;0.2143514;-0.5023148,-0.1036472;0.3624149;0.02409334,-0.1783369;0.09276742;0.03466246,-0.2289924;-0.1825752;0.03918802,0.06189172;0.006400726;-0.05028365,0.09801362;-0.36643;0.01368867,0.106645;-0.7060955;0.09766996,0.112261;-0.7569973;0.03916056,-0.07820624;-0.001419159;-0.016786,-0.08418739;-0.3795305;0.02057736,-0.09504972;-0.7210102;0.09656139,-0.08601235;-0.7682688;0.03371686,0.01063787;0.3989175;0.02663984,45.37452
+0;0;0,0.001327919;0.1988458;0.02141432,0.004340127;0.4982174;0.03971657,0.1059152;0.3765421;-0.02166808,0.1973283;0.2754385;-0.2662529,0.2253004;0.3101146;-0.5426857,-0.1098249;0.360383;0.02188475,-0.2022166;0.09855428;0.0580717,-0.2148057;-0.1800178;0.03279069,0.06451186;0.008258861;-0.04658338,0.09466422;-0.3664875;0.008697562,0.105858;-0.7085242;0.08208399,0.1162245;-0.7572248;0.02126653,-0.07509313;-0.001318224;-0.02755511,-0.09255416;-0.3799014;0.0001914687,-0.09804334;-0.7231302;0.0684844,-0.08256219;-0.7684867;0.004595943,0.003116969;0.3982834;0.03629608,0;0;0,0.005714599;0.1992341;0.01652676,0.01308969;0.4988775;0.02804944,0.1119851;0.371799;-0.03161246,0.1962085;0.1920087;-0.2290507,0.2530201;0.2143514;-0.5023148,-0.1036472;0.3624149;0.02409334,-0.1783369;0.09276742;0.03466246,-0.2289924;-0.1825752;0.03918802,0.06189172;0.006400726;-0.05028365,0.09801362;-0.36643;0.01368867,0.106645;-0.7060955;0.09766996,0.112261;-0.7569973;0.03916056,-0.07820624;-0.001419159;-0.016786,-0.08418739;-0.3795305;0.02057736,-0.09504972;-0.7210102;0.09656139,-0.08601235;-0.7682688;0.03371686,0.01063787;0.3989175;0.02663984,45.38597
+0;0;0,0.001327919;0.1988458;0.02141432,0.004340127;0.4982174;0.03971657,0.1059152;0.3765421;-0.02166808,0.1973283;0.2754385;-0.2662529,0.2253004;0.3101146;-0.5426857,-0.1098249;0.360383;0.02188475,-0.2022166;0.09855428;0.0580717,-0.2148057;-0.1800178;0.03279069,0.06451186;0.008258861;-0.04658338,0.09466422;-0.3664875;0.008697562,0.105858;-0.7085242;0.08208399,0.1162245;-0.7572248;0.02126653,-0.07509313;-0.001318224;-0.02755511,-0.09255416;-0.3799014;0.0001914687,-0.09804334;-0.7231302;0.0684844,-0.08256219;-0.7684867;0.004595943,0.003116969;0.3982834;0.03629608,0;0;0,0.005582395;0.1992388;0.0165151,0.01260224;0.4988891;0.02806912,0.1117582;0.3718655;-0.03138422,0.2019067;0.1978587;-0.2313714,0.2538612;0.2212344;-0.5055143,-0.1040022;0.362394;0.02424866,-0.1795507;0.09295213;0.03391759,-0.2292448;-0.1825681;0.03828797,0.06196096;0.006450953;-0.05019188,0.09799446;-0.3662622;0.01451116,0.1064932;-0.7060547;0.09799087,0.08702464;-0.6938102;0.001524724,-0.07817296;-0.001449253;-0.01693775,-0.08431744;-0.3795114;0.02089448,-0.09513065;-0.7210314;0.09670453,-0.1120923;-0.7088312;-0.0002257153,0.01027633;0.3989261;0.02666023,45.40857
+0;0;0,0.001446586;0.1988101;0.02173609,0.004576092;0.4981598;0.04034613,0.1064136;0.3775156;-0.02097115,0.1985512;0.2771279;-0.2655789,0.2282988;0.3143566;-0.541494,-0.1095983;0.360101;0.02296248,-0.2018004;0.09814754;0.05872779,-0.2133845;-0.1803784;0.03247648,0.06443149;0.008201175;-0.04670464,0.09515411;-0.3663892;0.009314917,0.1062567;-0.7084026;0.08282365,0.1161744;-0.7569394;0.02172036,-0.07515846;-0.001360794;-0.02737433,-0.09200542;-0.3799449;0.0007366836,-0.09778652;-0.7231421;0.06916346,-0.08268222;-0.7688041;0.005546324,0.003331056;0.3982282;0.03686469,0;0;0,0.005582395;0.1992388;0.0165151,0.01260224;0.4988891;0.02806912,0.1117582;0.3718655;-0.03138422,0.2019067;0.1978587;-0.2313714,0.2538612;0.2212344;-0.5055143,-0.1040022;0.362394;0.02424866,-0.1795507;0.09295213;0.03391759,-0.2292448;-0.1825681;0.03828797,0.06196096;0.006450953;-0.05019188,0.09799446;-0.3662622;0.01451116,0.1064932;-0.7060547;0.09799087,0.08702464;-0.6938102;0.001524724,-0.07817296;-0.001449253;-0.01693775,-0.08431744;-0.3795114;0.02089448,-0.09513065;-0.7210314;0.09670453,-0.1120923;-0.7088312;-0.0002257153,0.01027633;0.3989261;0.02666023,45.41981
+0;0;0,0.001446586;0.1988101;0.02173609,0.004576092;0.4981598;0.04034613,0.1064136;0.3775156;-0.02097115,0.1985512;0.2771279;-0.2655789,0.2282988;0.3143566;-0.541494,-0.1095983;0.360101;0.02296248,-0.2018004;0.09814754;0.05872779,-0.2133845;-0.1803784;0.03247648,0.06443149;0.008201175;-0.04670464,0.09515411;-0.3663892;0.009314917,0.1062567;-0.7084026;0.08282365,0.1161744;-0.7569394;0.02172036,-0.07515846;-0.001360794;-0.02737433,-0.09200542;-0.3799449;0.0007366836,-0.09778652;-0.7231421;0.06916346,-0.08268222;-0.7688041;0.005546324,0.003331056;0.3982282;0.03686469,0;0;0,0.005473856;0.1992353;0.01659244,0.01240141;0.4988846;0.02822616,0.1116054;0.3717379;-0.03116722,0.2118909;0.2119696;-0.2380897,0.2477324;0.2482841;-0.5134016,-0.1043196;0.3628835;0.02411736,-0.1793697;0.09327334;0.0329399,-0.2301631;-0.1820636;0.0360323,0.06204225;0.006424326;-0.05009478,0.09798549;-0.3662643;0.01479944,0.1065353;-0.7061694;0.09781384,0.08721901;-0.6939253;0.001317143,-0.07808867;-0.001344437;-0.01733067,-0.08438198;-0.3793656;0.02088413,-0.09520407;-0.7208707;0.09675987,-0.08597691;-0.7678781;0.03363508,0.01010991;0.3989211;0.02679607,45.44214
+0;0;0,0.001446586;0.1988101;0.02173609,0.004576092;0.4981598;0.04034613,0.1064136;0.3775156;-0.02097115,0.1985512;0.2771279;-0.2655789,0.2282988;0.3143566;-0.541494,-0.1095983;0.360101;0.02296248,-0.2018004;0.09814754;0.05872779,-0.2133845;-0.1803784;0.03247648,0.06443149;0.008201175;-0.04670464,0.09515411;-0.3663892;0.009314917,0.1062567;-0.7084026;0.08282365,0.1161744;-0.7569394;0.02172036,-0.07515846;-0.001360794;-0.02737433,-0.09200542;-0.3799449;0.0007366836,-0.09778652;-0.7231421;0.06916346,-0.08268222;-0.7688041;0.005546324,0.003331056;0.3982282;0.03686469,0;0;0,0.005378126;0.1992325;0.01665759,0.01224161;0.4988804;0.02836005,0.1115172;0.3717573;-0.03097445,0.2125399;0.2131236;-0.2384106,0.252185;0.2600912;-0.5115815,-0.1040664;0.3619173;0.0217746,-0.1791281;0.09237406;0.0323652,-0.2296491;-0.1830184;0.03493697,0.062154;0.006462611;-0.04995111,0.09783408;-0.3661778;0.01536399,0.1064869;-0.7061614;0.0980458,0.08790316;-0.6939049;0.001403101,-0.07799657;-0.00146184;-0.01773126,-0.08426128;-0.3794348;0.0209624,-0.09497599;-0.7209442;0.09683418,-0.08579661;-0.7681948;0.0340004,0.009971593;0.3989167;0.02691215,45.46446
+0;0;0,0.00143133;0.1987981;0.02184668,0.004373037;0.498132;0.0407708,0.1062986;0.3775101;-0.02070353,0.201711;0.2782544;-0.2645165,0.2166487;0.3432107;-0.5364679,-0.1097153;0.3600692;0.02327618,-0.2016646;0.09785721;0.05777503,-0.2128695;-0.1807464;0.0321921,0.0643983;0.008288029;-0.04673507,0.09536622;-0.3662691;0.009371154,0.1064619;-0.7082357;0.08309861,0.116276;-0.757018;0.02229526,-0.07517751;-0.001491151;-0.02731515,-0.0917922;-0.38008;0.0008703861,-0.09753791;-0.7232686;0.0693436,-0.08234404;-0.7689614;0.005784519,0.00321615;0.3982046;0.03713883,0;0;0,0.005378126;0.1992325;0.01665759,0.01224161;0.4988804;0.02836005,0.1115172;0.3717573;-0.03097445,0.2125399;0.2131236;-0.2384106,0.252185;0.2600912;-0.5115815,-0.1040664;0.3619173;0.0217746,-0.1791281;0.09237406;0.0323652,-0.2296491;-0.1830184;0.03493697,0.062154;0.006462611;-0.04995111,0.09783408;-0.3661778;0.01536399,0.1064869;-0.7061614;0.0980458,0.08790316;-0.6939049;0.001403101,-0.07799657;-0.00146184;-0.01773126,-0.08426128;-0.3794348;0.0209624,-0.09497599;-0.7209442;0.09683418,-0.08579661;-0.7681948;0.0340004,0.009971593;0.3989167;0.02691215,45.47568
+0;0;0,0.00143133;0.1987981;0.02184668,0.004373037;0.498132;0.0407708,0.1062986;0.3775101;-0.02070353,0.201711;0.2782544;-0.2645165,0.2166487;0.3432107;-0.5364679,-0.1097153;0.3600692;0.02327618,-0.2016646;0.09785721;0.05777503,-0.2128695;-0.1807464;0.0321921,0.0643983;0.008288029;-0.04673507,0.09536622;-0.3662691;0.009371154,0.1064619;-0.7082357;0.08309861,0.116276;-0.757018;0.02229526,-0.07517751;-0.001491151;-0.02731515,-0.0917922;-0.38008;0.0008703861,-0.09753791;-0.7232686;0.0693436,-0.08234404;-0.7689614;0.005784519,0.00321615;0.3982046;0.03713883,0;0;0,0.005378126;0.1992325;0.01665759,0.01224161;0.4988804;0.02836005,0.1115172;0.3717573;-0.03097445,0.2125399;0.2131236;-0.2384106,0.252185;0.2600912;-0.5115815,-0.1040664;0.3619173;0.0217746,-0.1791281;0.09237406;0.0323652,-0.2296491;-0.1830184;0.03493697,0.062154;0.006462611;-0.04995111,0.09783408;-0.3661778;0.01536399,0.1064869;-0.7061614;0.0980458,0.08790316;-0.6939049;0.001403101,-0.07799657;-0.00146184;-0.01773126,-0.08426128;-0.3794348;0.0209624,-0.09497599;-0.7209442;0.09683418,-0.08579661;-0.7681948;0.0340004,0.009971593;0.3989167;0.02691215,45.48686
+0;0;0,0.00143133;0.1987981;0.02184668,0.004373037;0.498132;0.0407708,0.1062986;0.3775101;-0.02070353,0.201711;0.2782544;-0.2645165,0.2166487;0.3432107;-0.5364679,-0.1097153;0.3600692;0.02327618,-0.2016646;0.09785721;0.05777503,-0.2128695;-0.1807464;0.0321921,0.0643983;0.008288029;-0.04673507,0.09536622;-0.3662691;0.009371154,0.1064619;-0.7082357;0.08309861,0.116276;-0.757018;0.02229526,-0.07517751;-0.001491151;-0.02731515,-0.0917922;-0.38008;0.0008703861,-0.09753791;-0.7232686;0.0693436,-0.08234404;-0.7689614;0.005784519,0.00321615;0.3982046;0.03713883,0;0;0,0.005211366;0.1992303;0.01673741,0.01179348;0.4988818;0.0285087,0.1112469;0.3717004;-0.03071424,0.2135524;0.2147707;-0.2388168,0.2548571;0.2724176;-0.5096872,-0.1043428;0.3617668;0.02171798,-0.1797798;0.09230042;0.03157268,-0.2296963;-0.183204;0.03395072,0.06230703;0.006496705;-0.04975567,0.09790117;-0.3661804;0.01539666,0.1064604;-0.7061551;0.098125,0.08796728;-0.6938965;0.001464531,-0.07786658;-0.001555372;-0.01828595,-0.08433343;-0.3794585;0.02105076,-0.09485226;-0.7209743;0.09692112,-0.08641689;-0.7681935;0.03394458,0.00963816;0.3989159;0.02703499,45.50919
+0;0;0,0.001428873;0.1987838;0.02197661,0.004240612;0.4981015;0.04119651,0.1062636;0.3774783;-0.02035291,0.2033522;0.2788673;-0.2637655,0.2221401;0.3481403;-0.5344096,-0.1099219;0.3603048;0.02399277,-0.2011624;0.09775755;0.05781781,-0.2116635;-0.1808157;0.03161383,0.06441786;0.008369665;-0.04669355,0.09577349;-0.3661539;0.009421464,0.1066525;-0.7081184;0.08319075,0.116577;-0.7568876;0.02238837,-0.07515736;-0.001619549;-0.02736327,-0.09127977;-0.3802381;0.0007090289,-0.09721492;-0.7233214;0.06969129,-0.08212666;-0.7688335;0.005892597,0.003148964;0.3981785;0.03743002,0;0;0,0.005098728;0.1992316;0.01675624,0.0115254;0.4988832;0.02860724,0.1111694;0.3716671;-0.03036796,0.2161641;0.2194699;-0.2406348,0.2561067;0.2879718;-0.5091717,-0.1045656;0.36182;0.02148049,-0.1800094;0.09235057;0.03120059,-0.2300596;-0.183139;0.03188206,0.06243772;0.006550279;-0.04958453,0.09791864;-0.3661577;0.01545259,0.1064077;-0.7061459;0.09813249,0.1115254;-0.7576434;0.04040931,-0.07773154;-0.001789907;-0.01883093,-0.0841581;-0.379633;0.02108451,-0.09462092;-0.7211385;0.09700906,-0.08619669;-0.7683673;0.03404285,0.00941737;0.3989166;0.02711231,45.53143
+0;0;0,0.001428873;0.1987838;0.02197661,0.004240612;0.4981015;0.04119651,0.1062636;0.3774783;-0.02035291,0.2033522;0.2788673;-0.2637655,0.2221401;0.3481403;-0.5344096,-0.1099219;0.3603048;0.02399277,-0.2011624;0.09775755;0.05781781,-0.2116635;-0.1808157;0.03161383,0.06441786;0.008369665;-0.04669355,0.09577349;-0.3661539;0.009421464,0.1066525;-0.7081184;0.08319075,0.116577;-0.7568876;0.02238837,-0.07515736;-0.001619549;-0.02736327,-0.09127977;-0.3802381;0.0007090289,-0.09721492;-0.7233214;0.06969129,-0.08212666;-0.7688335;0.005892597,0.003148964;0.3981785;0.03743002,0;0;0,0.005098728;0.1992316;0.01675624,0.0115254;0.4988832;0.02860724,0.1111694;0.3716671;-0.03036796,0.2161641;0.2194699;-0.2406348,0.2561067;0.2879718;-0.5091717,-0.1045656;0.36182;0.02148049,-0.1800094;0.09235057;0.03120059,-0.2300596;-0.183139;0.03188206,0.06243772;0.006550279;-0.04958453,0.09791864;-0.3661577;0.01545259,0.1064077;-0.7061459;0.09813249,0.1115254;-0.7576434;0.04040931,-0.07773154;-0.001789907;-0.01883093,-0.0841581;-0.379633;0.02108451,-0.09462092;-0.7211385;0.09700906,-0.08619669;-0.7683673;0.03404285,0.00941737;0.3989166;0.02711231,45.54262
+0;0;0,0.001428873;0.1987838;0.02197661,0.004240612;0.4981015;0.04119651,0.1062636;0.3774783;-0.02035291,0.2033522;0.2788673;-0.2637655,0.2221401;0.3481403;-0.5344096,-0.1099219;0.3603048;0.02399277,-0.2011624;0.09775755;0.05781781,-0.2116635;-0.1808157;0.03161383,0.06441786;0.008369665;-0.04669355,0.09577349;-0.3661539;0.009421464,0.1066525;-0.7081184;0.08319075,0.116577;-0.7568876;0.02238837,-0.07515736;-0.001619549;-0.02736327,-0.09127977;-0.3802381;0.0007090289,-0.09721492;-0.7233214;0.06969129,-0.08212666;-0.7688335;0.005892597,0.003148964;0.3981785;0.03743002,0;0;0,0.004959062;0.1992307;0.01680932,0.01118886;0.4988821;0.02876677,0.1110013;0.3716345;-0.03004474,0.2239156;0.2065754;-0.2260188,0.253427;0.2860036;-0.49289,-0.1048459;0.3618911;0.02133303,-0.1802643;0.09240156;0.03068627,-0.2303531;-0.183073;0.02847091,0.06256515;0.006601744;-0.04941678,0.097885;-0.3660628;0.01595616,0.106332;-0.7061073;0.09840844,0.1111143;-0.7570528;0.0398854,-0.0775989;-0.001902468;-0.0193595,-0.08392067;-0.3796738;0.02124625,-0.09444672;-0.7211629;0.09723582,-0.08759593;-0.7681122;0.0337388,0.009146936;0.3989146;0.02723949,45.56493
+0;0;0,0.001550539;0.1987516;0.02225784,0.004514468;0.4980503;0.04173253,0.1066495;0.3772825;-0.01955837,0.2073317;0.28062;-0.2622916,0.2538522;0.332164;-0.5335462,-0.1096861;0.3602521;0.0245153,-0.2009174;0.0976716;0.05810592,-0.2099122;-0.1808342;0.03065394,0.06450636;0.008289942;-0.04658548,0.09624676;-0.3661659;0.009764798,0.1071788;-0.7080966;0.0836828,0.09194908;-0.6950074;-0.01369319,-0.07512894;-0.001528325;-0.02744639,-0.0904924;-0.3801685;0.0007594489,-0.09671356;-0.7232046;0.06995153,-0.08126672;-0.7689386;0.006502666,0.003388562;0.3981297;0.03790968,0;0;0,0.004959062;0.1992307;0.01680932,0.01118886;0.4988821;0.02876677,0.1110013;0.3716345;-0.03004474,0.2239156;0.2065754;-0.2260188,0.253427;0.2860036;-0.49289,-0.1048459;0.3618911;0.02133303,-0.1802643;0.09240156;0.03068627,-0.2303531;-0.183073;0.02847091,0.06256515;0.006601744;-0.04941678,0.097885;-0.3660628;0.01595616,0.106332;-0.7061073;0.09840844,0.1111143;-0.7570528;0.0398854,-0.0775989;-0.001902468;-0.0193595,-0.08392067;-0.3796738;0.02124625,-0.09444672;-0.7211629;0.09723582,-0.08759593;-0.7681122;0.0337388,0.009146936;0.3989146;0.02723949,45.58742
+0;0;0,0.001550539;0.1987516;0.02225784,0.004514468;0.4980503;0.04173253,0.1066495;0.3772825;-0.01955837,0.2073317;0.28062;-0.2622916,0.2538522;0.332164;-0.5335462,-0.1096861;0.3602521;0.0245153,-0.2009174;0.0976716;0.05810592,-0.2099122;-0.1808342;0.03065394,0.06450636;0.008289942;-0.04658548,0.09624676;-0.3661659;0.009764798,0.1071788;-0.7080966;0.0836828,0.09194908;-0.6950074;-0.01369319,-0.07512894;-0.001528325;-0.02744639,-0.0904924;-0.3801685;0.0007594489,-0.09671356;-0.7232046;0.06995153,-0.08126672;-0.7689386;0.006502666,0.003388562;0.3981297;0.03790968,0;0;0,0.00486194;0.1992282;0.01686681,0.01078604;0.4988721;0.02917477,0.1108188;0.3713659;-0.02943799,0.2280617;0.2054917;-0.222155,0.2521188;0.2972095;-0.4856111,-0.10494;0.3614329;0.02061214,-0.1804765;0.09200084;0.03064338,-0.2303667;-0.1835001;0.02744639,0.06271526;0.006600466;-0.04922631,0.09785722;-0.3660517;0.01631305,0.1061593;-0.7060965;0.09877891,0.1113425;-0.7565855;0.03966331,-0.07758071;-0.00193223;-0.01942935,-0.08412133;-0.379664;0.02150832,-0.09456602;-0.7211914;0.09733654,-0.0872421;-0.7679965;0.03371783,0.008850068;0.3989045;0.02751818,45.60963
+0;0;0,0.001550539;0.1987516;0.02225784,0.004514468;0.4980503;0.04173253,0.1066495;0.3772825;-0.01955837,0.2073317;0.28062;-0.2622916,0.2538522;0.332164;-0.5335462,-0.1096861;0.3602521;0.0245153,-0.2009174;0.0976716;0.05810592,-0.2099122;-0.1808342;0.03065394,0.06450636;0.008289942;-0.04658548,0.09624676;-0.3661659;0.009764798,0.1071788;-0.7080966;0.0836828,0.09194908;-0.6950074;-0.01369319,-0.07512894;-0.001528325;-0.02744639,-0.0904924;-0.3801685;0.0007594489,-0.09671356;-0.7232046;0.06995153,-0.08126672;-0.7689386;0.006502666,0.003388562;0.3981297;0.03790968,0;0;0,0.00486194;0.1992282;0.01686681,0.01078604;0.4988721;0.02917477,0.1108188;0.3713659;-0.02943799,0.2280617;0.2054917;-0.222155,0.2521188;0.2972095;-0.4856111,-0.10494;0.3614329;0.02061214,-0.1804765;0.09200084;0.03064338,-0.2303667;-0.1835001;0.02744639,0.06271526;0.006600466;-0.04922631,0.09785722;-0.3660517;0.01631305,0.1061593;-0.7060965;0.09877891,0.1113425;-0.7565855;0.03966331,-0.07758071;-0.00193223;-0.01942935,-0.08412133;-0.379664;0.02150832,-0.09456602;-0.7211914;0.09733654,-0.0872421;-0.7679965;0.03371783,0.008850068;0.3989045;0.02751818,45.62121
+0;0;0,0.001494721;0.19874;0.02236476,0.004381455;0.4980296;0.04201426,0.1066179;0.3771411;-0.019212,0.210928;0.2803507;-0.2603572,0.2513565;0.3340589;-0.5321678,-0.1097478;0.3601416;0.02466791,-0.2008043;0.0974656;0.05798518,-0.2094125;-0.1810315;0.03032194,0.06454337;0.008295148;-0.04653326,0.09629814;-0.3661872;0.009632349,0.1072432;-0.7080655;0.08379082,0.1177781;-0.7574155;0.02385261,-0.07502374;-0.001494415;-0.02773453,-0.09058439;-0.3800984;0.0008468702,-0.09689336;-0.7231098;0.07015318,-0.1096656;-0.710085;-0.02756434,0.003291834;0.3981124;0.03809362,0;0;0,0.00478474;0.1992338;0.0168228,0.01062728;0.4988823;0.02904125,0.1107892;0.3714908;-0.02938795,0.2234537;0.2426311;-0.2509774,0.2536724;0.3296144;-0.5154027,-0.1051091;0.3615246;0.0206142,-0.1808456;0.0921191;0.02981345,-0.2298551;-0.1835028;0.0242796,0.06280323;0.006615832;-0.04911196,0.09803138;-0.3660037;0.01656668,0.1062817;-0.7060853;0.09888542,0.1114386;-0.7565938;0.03979406,-0.07751702;-0.001932241;-0.0196819,-0.08399448;-0.3796415;0.02147341,-0.09488451;-0.7212005;0.09709653,-0.08638868;-0.7681893;0.03384665,0.008713493;0.3989135;0.0274323,45.64308
+0;0;0,0.001494721;0.19874;0.02236476,0.004381455;0.4980296;0.04201426,0.1066179;0.3771411;-0.019212,0.210928;0.2803507;-0.2603572,0.2513565;0.3340589;-0.5321678,-0.1097478;0.3601416;0.02466791,-0.2008043;0.0974656;0.05798518,-0.2094125;-0.1810315;0.03032194,0.06454337;0.008295148;-0.04653326,0.09629814;-0.3661872;0.009632349,0.1072432;-0.7080655;0.08379082,0.1177781;-0.7574155;0.02385261,-0.07502374;-0.001494415;-0.02773453,-0.09058439;-0.3800984;0.0008468702,-0.09689336;-0.7231098;0.07015318,-0.1096656;-0.710085;-0.02756434,0.003291834;0.3981124;0.03809362,0;0;0,0.004620834;0.1992353;0.01685103,0.009965543;0.4988854;0.02925665,0.1103496;0.3714944;-0.02914803,0.2376117;0.2206451;-0.2277654,0.252753;0.3211306;-0.4886742,-0.1055783;0.3615162;0.02048483,-0.1813809;0.0921143;0.02923554,-0.2300677;-0.1835278;0.02209345,0.06292424;0.006590342;-0.04896026,0.09795113;-0.3659731;0.01714236,0.1059228;-0.7062311;0.09875688,0.1119322;-0.7554453;0.03801971,-0.07747049;-0.001870868;-0.01987014,-0.08412673;-0.3796036;0.02104013,-0.09471267;-0.7210655;0.09714326,-0.08638128;-0.7678601;0.03363592,0.008224064;0.3989146;0.02758387,45.66541
+0;0;0,0.001494721;0.19874;0.02236476,0.004381455;0.4980296;0.04201426,0.1066179;0.3771411;-0.019212,0.210928;0.2803507;-0.2603572,0.2513565;0.3340589;-0.5321678,-0.1097478;0.3601416;0.02466791,-0.2008043;0.0974656;0.05798518,-0.2094125;-0.1810315;0.03032194,0.06454337;0.008295148;-0.04653326,0.09629814;-0.3661872;0.009632349,0.1072432;-0.7080655;0.08379082,0.1177781;-0.7574155;0.02385261,-0.07502374;-0.001494415;-0.02773453,-0.09058439;-0.3800984;0.0008468702,-0.09689336;-0.7231098;0.07015318,-0.1096656;-0.710085;-0.02756434,0.003291834;0.3981124;0.03809362,0;0;0,0.004620834;0.1992353;0.01685103,0.009965543;0.4988854;0.02925665,0.1103496;0.3714944;-0.02914803,0.2376117;0.2206451;-0.2277654,0.252753;0.3211306;-0.4886742,-0.1055783;0.3615162;0.02048483,-0.1813809;0.0921143;0.02923554,-0.2300677;-0.1835278;0.02209345,0.06292424;0.006590342;-0.04896026,0.09795113;-0.3659731;0.01714236,0.1059228;-0.7062311;0.09875688,0.1119322;-0.7554453;0.03801971,-0.07747049;-0.001870868;-0.01987014,-0.08412673;-0.3796036;0.02104013,-0.09471267;-0.7210655;0.09714326,-0.08638128;-0.7678601;0.03363592,0.008224064;0.3989146;0.02758387,45.67673
+0;0;0,0.001365513;0.198727;0.02248787,0.003781501;0.4980036;0.04243017,0.1063474;0.3771033;-0.0187195,0.2170014;0.2774945;-0.2558561,0.254644;0.3336094;-0.5275805,-0.1101125;0.3600621;0.02485183,-0.2011326;0.09737876;0.05821094,-0.2090054;-0.1810681;0.02983219,0.0645548;0.008275349;-0.04652093,0.09638919;-0.3661876;0.009729113,0.107222;-0.7080461;0.0839946,0.1176503;-0.7573171;0.02393317,-0.07498986;-0.001452494;-0.02782826,-0.09073219;-0.3800434;0.0008267574,-0.09715268;-0.7230163;0.07031327,-0.1098611;-0.7099885;-0.02741308,0.002898234;0.3980905;0.03835776,0;0;0,0.004275245;0.1992391;0.0168973,0.008949641;0.4988918;0.02950035,0.1097521;0.3717717;-0.02873206,0.2374444;0.2216707;-0.2276401,0.2570868;0.3338651;-0.4834263,-0.1062879;0.3614289;0.01981058,-0.1818702;0.09198371;0.02911584,-0.230128;-0.1836852;0.02029298,0.06300836;0.006619622;-0.048848,0.09803967;-0.3659649;0.01713347,0.1059992;-0.7062137;0.09878787,0.1121827;-0.7556565;0.0383676,-0.0774411;-0.001857345;-0.01998561,-0.08399796;-0.3795727;0.0211006,-0.09452731;-0.7210362;0.09720488,-0.08594896;-0.7674355;0.03325515,0.007427353;0.3989183;0.02777189,45.69889
+0;0;0,0.001365513;0.198727;0.02248787,0.003781501;0.4980036;0.04243017,0.1063474;0.3771033;-0.0187195,0.2170014;0.2774945;-0.2558561,0.254644;0.3336094;-0.5275805,-0.1101125;0.3600621;0.02485183,-0.2011326;0.09737876;0.05821094,-0.2090054;-0.1810681;0.02983219,0.0645548;0.008275349;-0.04652093,0.09638919;-0.3661876;0.009729113,0.107222;-0.7080461;0.0839946,0.1176503;-0.7573171;0.02393317,-0.07498986;-0.001452494;-0.02782826,-0.09073219;-0.3800434;0.0008267574,-0.09715268;-0.7230163;0.07031327,-0.1098611;-0.7099885;-0.02741308,0.002898234;0.3980905;0.03835776,0;0;0,0.004275245;0.1992391;0.0168973,0.008949641;0.4988918;0.02950035,0.1097521;0.3717717;-0.02873206,0.2374444;0.2216707;-0.2276401,0.2570868;0.3338651;-0.4834263,-0.1062879;0.3614289;0.01981058,-0.1818702;0.09198371;0.02911584,-0.230128;-0.1836852;0.02029298,0.06300836;0.006619622;-0.048848,0.09803967;-0.3659649;0.01713347,0.1059992;-0.7062137;0.09878787,0.1121827;-0.7556565;0.0383676,-0.0774411;-0.001857345;-0.01998561,-0.08399796;-0.3795727;0.0211006,-0.09452731;-0.7210362;0.09720488,-0.08594896;-0.7674355;0.03325515,0.007427353;0.3989183;0.02777189,45.72133
+0;0;0,0.001365513;0.198727;0.02248787,0.003781501;0.4980036;0.04243017,0.1063474;0.3771033;-0.0187195,0.2170014;0.2774945;-0.2558561,0.254644;0.3336094;-0.5275805,-0.1101125;0.3600621;0.02485183,-0.2011326;0.09737876;0.05821094,-0.2090054;-0.1810681;0.02983219,0.0645548;0.008275349;-0.04652093,0.09638919;-0.3661876;0.009729113,0.107222;-0.7080461;0.0839946,0.1176503;-0.7573171;0.02393317,-0.07498986;-0.001452494;-0.02782826,-0.09073219;-0.3800434;0.0008267574,-0.09715268;-0.7230163;0.07031327,-0.1098611;-0.7099885;-0.02741308,0.002898234;0.3980905;0.03835776,0;0;0,0.004186444;0.1992414;0.01689146,0.008844395;0.4988937;0.02950691,0.1096755;0.3717236;-0.02863895,0.2392085;0.2269939;-0.2303182,0.2625927;0.3432399;-0.4839716,-0.1064312;0.3615395;0.01979129,-0.1821084;0.09209564;0.02833437,-0.2295575;-0.1836931;0.01889122,0.06306171;0.006639027;-0.04877648,0.09805942;-0.3659513;0.0171902,0.1061362;-0.7061927;0.09886365,0.1119245;-0.7556797;0.03846238,-0.07739834;-0.001875091;-0.02014895,-0.08402544;-0.3795368;0.02141664,-0.09451529;-0.7210504;0.09730075,-0.08502339;-0.7679303;0.03405996,0.007317785;0.3989202;0.02778131,45.73253
+0;0;0,0.001328322;0.1987041;0.02269154,0.003538236;0.4979503;0.04314338,0.1064676;0.3770537;-0.01771818,0.2233044;0.270231;-0.2486686,0.2607714;0.3359673;-0.5182515,-0.1103596;0.3602481;0.02539291,-0.2001821;0.09689587;0.05665878,-0.2078436;-0.1816621;0.02933238,0.0646918;0.008394236;-0.04630883,0.0966313;-0.3660513;0.009997353,0.1075402;-0.7079058;0.08427078,0.1175587;-0.7574584;0.02451278,-0.07485027;-0.001626872;-0.02819204,-0.09023115;-0.3801897;0.001025023,-0.09679237;-0.7231257;0.07068009,-0.1093448;-0.7100855;-0.02706859,0.00273528;0.3980461;0.03884077,0;0;0,0.004186444;0.1992414;0.01689146,0.008844395;0.4988937;0.02950691,0.1096755;0.3717236;-0.02863895,0.2392085;0.2269939;-0.2303182,0.2625927;0.3432399;-0.4839716,-0.1064312;0.3615395;0.01979129,-0.1821084;0.09209564;0.02833437,-0.2295575;-0.1836931;0.01889122,0.06306171;0.006639027;-0.04877648,0.09805942;-0.3659513;0.0171902,0.1061362;-0.7061927;0.09886365,0.1119245;-0.7556797;0.03846238,-0.07739834;-0.001875091;-0.02014895,-0.08402544;-0.3795368;0.02141664,-0.09451529;-0.7210504;0.09730075,-0.08502339;-0.7679303;0.03405996,0.007317785;0.3989202;0.02778131,45.75489
+0;0;0,0.001328322;0.1987041;0.02269154,0.003538236;0.4979503;0.04314338,0.1064676;0.3770537;-0.01771818,0.2233044;0.270231;-0.2486686,0.2607714;0.3359673;-0.5182515,-0.1103596;0.3602481;0.02539291,-0.2001821;0.09689587;0.05665878,-0.2078436;-0.1816621;0.02933238,0.0646918;0.008394236;-0.04630883,0.0966313;-0.3660513;0.009997353,0.1075402;-0.7079058;0.08427078,0.1175587;-0.7574584;0.02451278,-0.07485027;-0.001626872;-0.02819204,-0.09023115;-0.3801897;0.001025023,-0.09679237;-0.7231257;0.07068009,-0.1093448;-0.7100855;-0.02706859,0.00273528;0.3980461;0.03884077,0;0;0,0.003845091;0.199236;0.01703619,0.008031663;0.4988841;0.02989854,0.109101;0.3718203;-0.02818743,0.2413359;0.2295101;-0.2298349,0.2702935;0.3507332;-0.4805667,-0.1070749;0.3615375;0.01967822,-0.1826557;0.09206578;0.0281963,-0.2296819;-0.1837357;0.01714698,0.06315489;0.006608657;-0.04865989,0.09815366;-0.3659441;0.01751838,0.106253;-0.7062795;0.0987969,0.1120506;-0.7558584;0.03851758,-0.07739038;-0.001855364;-0.02018134,-0.08401956;-0.3795253;0.02130912,-0.09441514;-0.7209983;0.09738879,-0.08454251;-0.7682915;0.03471266,0.006645249;0.3989097;0.02810632,45.77756
+0;0;0,0.001328322;0.1987041;0.02269154,0.003538236;0.4979503;0.04314338,0.1064676;0.3770537;-0.01771818,0.2233044;0.270231;-0.2486686,0.2607714;0.3359673;-0.5182515,-0.1103596;0.3602481;0.02539291,-0.2001821;0.09689587;0.05665878,-0.2078436;-0.1816621;0.02933238,0.0646918;0.008394236;-0.04630883,0.0966313;-0.3660513;0.009997353,0.1075402;-0.7079058;0.08427078,0.1175587;-0.7574584;0.02451278,-0.07485027;-0.001626872;-0.02819204,-0.09023115;-0.3801897;0.001025023,-0.09679237;-0.7231257;0.07068009,-0.1093448;-0.7100855;-0.02706859,0.00273528;0.3980461;0.03884077,0;0;0,0.003632849;0.199233;0.01711718,0.007498488;0.4988744;0.03023401,0.1087391;0.3719392;-0.02786495,0.2465531;0.2415115;-0.2337676,0.289187;0.3524171;-0.4873071,-0.1074344;0.3614691;0.01921078,-0.182731;0.09193432;0.02823333,-0.2293039;-0.1838905;0.01591874,0.0632158;0.006629448;-0.0485779,0.09806599;-0.3659377;0.01759738,0.1062396;-0.7062519;0.09895733,0.1118706;-0.7557476;0.03855256,-0.07736602;-0.001908232;-0.02026962,-0.08414036;-0.3795604;0.02135953,-0.09430819;-0.7210073;0.09758703,-0.108898;-0.7087318;0.0002577901,0.006210815;0.3989002;0.02835835,45.79943
+0;0;0,0.001231977;0.1986925;0.02279891,0.003198436;0.4979162;0.04360896,0.1063648;0.3763452;-0.01682981,0.2258968;0.2737672;-0.2483247,0.2730443;0.3367006;-0.517056,-0.1106974;0.3604526;0.02567772,-0.1992565;0.09640235;0.05456939,-0.2069559;-0.1822625;0.02836606,0.06477889;0.008516497;-0.04616455,0.09696518;-0.365914;0.01010113,0.1077721;-0.7077444;0.0845003,0.1177555;-0.7571488;0.02453973,-0.07477874;-0.001847527;-0.02836771,-0.08981961;-0.3804038;0.001109324,-0.09643376;-0.7233237;0.07083868,-0.1087839;-0.7102758;-0.02693709,0.002469768;0.3980173;0.0391715,0;0;0,0.003632849;0.199233;0.01711718,0.007498488;0.4988744;0.03023401,0.1087391;0.3719392;-0.02786495,0.2465531;0.2415115;-0.2337676,0.289187;0.3524171;-0.4873071,-0.1074344;0.3614691;0.01921078,-0.182731;0.09193432;0.02823333,-0.2293039;-0.1838905;0.01591874,0.0632158;0.006629448;-0.0485779,0.09806599;-0.3659377;0.01759738,0.1062396;-0.7062519;0.09895733,0.1118706;-0.7557476;0.03855256,-0.07736602;-0.001908232;-0.02026962,-0.08414036;-0.3795604;0.02135953,-0.09430819;-0.7210073;0.09758703,-0.108898;-0.7087318;0.0002577901,0.006210815;0.3989002;0.02835835,45.81082
+0;0;0,0.001231977;0.1986925;0.02279891,0.003198436;0.4979162;0.04360896,0.1063648;0.3763452;-0.01682981,0.2258968;0.2737672;-0.2483247,0.2730443;0.3367006;-0.517056,-0.1106974;0.3604526;0.02567772,-0.1992565;0.09640235;0.05456939,-0.2069559;-0.1822625;0.02836606,0.06477889;0.008516497;-0.04616455,0.09696518;-0.365914;0.01010113,0.1077721;-0.7077444;0.0845003,0.1177555;-0.7571488;0.02453973,-0.07477874;-0.001847527;-0.02836771,-0.08981961;-0.3804038;0.001109324,-0.09643376;-0.7233237;0.07083868,-0.1087839;-0.7102758;-0.02693709,0.002469768;0.3980173;0.0391715,0;0;0,0.003632849;0.199233;0.01711718,0.007498488;0.4988744;0.03023401,0.1087391;0.3719392;-0.02786495,0.2465531;0.2415115;-0.2337676,0.289187;0.3524171;-0.4873071,-0.1074344;0.3614691;0.01921078,-0.182731;0.09193432;0.02823333,-0.2293039;-0.1838905;0.01591874,0.0632158;0.006629448;-0.0485779,0.09806599;-0.3659377;0.01759738,0.1062396;-0.7062519;0.09895733,0.1118706;-0.7557476;0.03855256,-0.07736602;-0.001908232;-0.02026962,-0.08414036;-0.3795604;0.02135953,-0.09430819;-0.7210073;0.09758703,-0.108898;-0.7087318;0.0002577901,0.006210815;0.3989002;0.02835835,45.82196
+0;0;0,0.001231977;0.1986925;0.02279891,0.003198436;0.4979162;0.04360896,0.1063648;0.3763452;-0.01682981,0.2258968;0.2737672;-0.2483247,0.2730443;0.3367006;-0.517056,-0.1106974;0.3604526;0.02567772,-0.1992565;0.09640235;0.05456939,-0.2069559;-0.1822625;0.02836606,0.06477889;0.008516497;-0.04616455,0.09696518;-0.365914;0.01010113,0.1077721;-0.7077444;0.0845003,0.1177555;-0.7571488;0.02453973,-0.07477874;-0.001847527;-0.02836771,-0.08981961;-0.3804038;0.001109324,-0.09643376;-0.7233237;0.07083868,-0.1087839;-0.7102758;-0.02693709,0.002469768;0.3980173;0.0391715,0;0;0,0.003404004;0.1992361;0.01712809,0.00708419;0.4988813;0.03019951,0.108508;0.3718178;-0.02756945,0.2503711;0.2449401;-0.2329397,0.3079469;0.3539583;-0.4843359,-0.1075507;0.3609492;0.01835073,-0.1827922;0.09142175;0.028029,-0.2289723;-0.184474;0.01582571,0.06328419;0.006673638;-0.04848271,0.0982811;-0.3659324;0.01739573,0.1064393;-0.706223;0.09885566,0.1118829;-0.7557374;0.03845834,-0.07735721;-0.001962973;-0.02029798,-0.08441124;-0.3795815;0.02158826,-0.09420314;-0.7210554;0.09774388,-0.1084908;-0.7087776;0.0003693923,0.005847977;0.3989061;0.02835134,45.84426
+0;0;0,0.00105663;0.1986833;0.02288749,0.002488809;0.4978858;0.04406086,0.1058565;0.376339;-0.01656266,0.2389198;0.2551512;-0.2310567,0.2791345;0.3374692;-0.4956442,-0.111144;0.3604192;0.02559481,-0.1996464;0.09633616;0.05436065,-0.2059664;-0.1823096;0.02759132,0.06479365;0.008675332;-0.04611422,0.09705879;-0.3657592;0.01007954,0.10706;-0.7075062;0.08497265,0.1176747;-0.7565703;0.02467182,-0.07466932;-0.002139769;-0.02863415,-0.09004876;-0.3806605;0.001123698,-0.09671419;-0.7235723;0.07088824,-0.1089684;-0.7105186;-0.02690061,0.001974209;0.3979926;0.03946932,0;0;0,0.003404004;0.1992361;0.01712809,0.00708419;0.4988813;0.03019951,0.108508;0.3718178;-0.02756945,0.2503711;0.2449401;-0.2329397,0.3079469;0.3539583;-0.4843359,-0.1075507;0.3609492;0.01835073,-0.1827922;0.09142175;0.028029,-0.2289723;-0.184474;0.01582571,0.06328419;0.006673638;-0.04848271,0.0982811;-0.3659324;0.01739573,0.1064393;-0.706223;0.09885566,0.1118829;-0.7557374;0.03845834,-0.07735721;-0.001962973;-0.02029798,-0.08441124;-0.3795815;0.02158826,-0.09420314;-0.7210554;0.09774388,-0.1084908;-0.7087776;0.0003693923,0.005847977;0.3989061;0.02835134,45.85563
+0;0;0,0.00105663;0.1986833;0.02288749,0.002488809;0.4978858;0.04406086,0.1058565;0.376339;-0.01656266,0.2389198;0.2551512;-0.2310567,0.2791345;0.3374692;-0.4956442,-0.111144;0.3604192;0.02559481,-0.1996464;0.09633616;0.05436065,-0.2059664;-0.1823096;0.02759132,0.06479365;0.008675332;-0.04611422,0.09705879;-0.3657592;0.01007954,0.10706;-0.7075062;0.08497265,0.1176747;-0.7565703;0.02467182,-0.07466932;-0.002139769;-0.02863415,-0.09004876;-0.3806605;0.001123698,-0.09671419;-0.7235723;0.07088824,-0.1089684;-0.7105186;-0.02690061,0.001974209;0.3979926;0.03946932,0;0;0,0.00317271;0.1992483;0.01703147,0.006495161;0.4989093;0.02980955,0.1083948;0.371766;-0.02714625,0.2564182;0.2495798;-0.2310081,0.3280983;0.3534957;-0.480935,-0.1079855;0.3609419;0.01785685,-0.1831518;0.09140268;0.02778963,-0.2289215;-0.1845489;0.01530618,0.06339106;0.006662533;-0.04834442,0.09828478;-0.3659774;0.01739688,0.1065576;-0.7062263;0.09901911,0.1120959;-0.7553773;0.0381548,-0.07730505;-0.002027151;-0.02048952,-0.0843211;-0.3796315;0.02153127,-0.0940037;-0.7211013;0.09771939,-0.1080073;-0.7088308;0.0003049895,0.005382259;0.3989303;0.02808522,45.87777
+0;0;0,0.00105663;0.1986833;0.02288749,0.002488809;0.4978858;0.04406086,0.1058565;0.376339;-0.01656266,0.2389198;0.2551512;-0.2310567,0.2791345;0.3374692;-0.4956442,-0.111144;0.3604192;0.02559481,-0.1996464;0.09633616;0.05436065,-0.2059664;-0.1823096;0.02759132,0.06479365;0.008675332;-0.04611422,0.09705879;-0.3657592;0.01007954,0.10706;-0.7075062;0.08497265,0.1176747;-0.7565703;0.02467182,-0.07466932;-0.002139769;-0.02863415,-0.09004876;-0.3806605;0.001123698,-0.09671419;-0.7235723;0.07088824,-0.1089684;-0.7105186;-0.02690061,0.001974209;0.3979926;0.03946932,0;0;0,0.00317271;0.1992483;0.01703147,0.006495161;0.4989093;0.02980955,0.1083948;0.371766;-0.02714625,0.2564182;0.2495798;-0.2310081,0.3280983;0.3534957;-0.480935,-0.1079855;0.3609419;0.01785685,-0.1831518;0.09140268;0.02778963,-0.2289215;-0.1845489;0.01530618,0.06339106;0.006662533;-0.04834442,0.09828478;-0.3659774;0.01739688,0.1065576;-0.7062263;0.09901911,0.1120959;-0.7553773;0.0381548,-0.07730505;-0.002027151;-0.02048952,-0.0843211;-0.3796315;0.02153127,-0.0940037;-0.7211013;0.09771939,-0.1080073;-0.7088308;0.0003049895,0.005382259;0.3989303;0.02808522,45.88895
+0;0;0,0.0007436769;0.1986784;0.02294191,0.001358207;0.4978761;0.04422763,0.1054654;0.3757565;-0.01547194,0.2563542;0.223056;-0.195236,0.3099442;0.288668;-0.4621127,-0.1119241;0.360465;0.02549993,-0.1997968;0.09604403;0.05306634,-0.2051117;-0.1826516;0.02659988,0.06479836;0.008862969;-0.0460719,0.09688088;-0.3655954;0.0100673,0.1068615;-0.7073355;0.08499458,0.1175626;-0.7560604;0.02426665,-0.07456321;-0.002441947;-0.02888537,-0.09057947;-0.3809262;0.001000224,-0.09716161;-0.723783;0.07104217,-0.1090429;-0.7107276;-0.02679297,0.001185755;0.3979839;0.03958889,0;0;0,0.002937762;0.1992491;0.01706344,0.005599932;0.4989104;0.02999476,0.1080313;0.3717283;-0.02646195,0.2659132;0.2503758;-0.2233042,0.3492091;0.3459764;-0.4729486,-0.1086076;0.3609311;0.01770813,-0.1838223;0.09140408;0.02760385,-0.229054;-0.1846448;0.01531058,0.06349818;0.006669273;-0.04820271,0.09813987;-0.3660136;0.01742851,0.106502;-0.7062955;0.09890402,0.1114163;-0.755901;0.03858131,-0.07724157;-0.002069901;-0.0207233,-0.0845243;-0.3796435;0.021528,-0.09367541;-0.7211041;0.09782246,-0.1074463;-0.7088253;0.0003733709,0.004731518;0.3989301;0.02821184,45.91129
+0;0;0,0.0007436769;0.1986784;0.02294191,0.001358207;0.4978761;0.04422763,0.1054654;0.3757565;-0.01547194,0.2563542;0.223056;-0.195236,0.3099442;0.288668;-0.4621127,-0.1119241;0.360465;0.02549993,-0.1997968;0.09604403;0.05306634,-0.2051117;-0.1826516;0.02659988,0.06479836;0.008862969;-0.0460719,0.09688088;-0.3655954;0.0100673,0.1068615;-0.7073355;0.08499458,0.1175626;-0.7560604;0.02426665,-0.07456321;-0.002441947;-0.02888537,-0.09057947;-0.3809262;0.001000224,-0.09716161;-0.723783;0.07104217,-0.1090429;-0.7107276;-0.02679297,0.001185755;0.3979839;0.03958889,0;0;0,0.002937762;0.1992491;0.01706344,0.005599932;0.4989104;0.02999476,0.1080313;0.3717283;-0.02646195,0.2659132;0.2503758;-0.2233042,0.3492091;0.3459764;-0.4729486,-0.1086076;0.3609311;0.01770813,-0.1838223;0.09140408;0.02760385,-0.229054;-0.1846448;0.01531058,0.06349818;0.006669273;-0.04820271,0.09813987;-0.3660136;0.01742851,0.106502;-0.7062955;0.09890402,0.1114163;-0.755901;0.03858131,-0.07724157;-0.002069901;-0.0207233,-0.0845243;-0.3796435;0.021528,-0.09367541;-0.7211041;0.09782246,-0.1074463;-0.7088253;0.0003733709,0.004731518;0.3989301;0.02821184,45.92268
+0;0;0,0.0007436769;0.1986784;0.02294191,0.001358207;0.4978761;0.04422763,0.1054654;0.3757565;-0.01547194,0.2563542;0.223056;-0.195236,0.3099442;0.288668;-0.4621127,-0.1119241;0.360465;0.02549993,-0.1997968;0.09604403;0.05306634,-0.2051117;-0.1826516;0.02659988,0.06479836;0.008862969;-0.0460719,0.09688088;-0.3655954;0.0100673,0.1068615;-0.7073355;0.08499458,0.1175626;-0.7560604;0.02426665,-0.07456321;-0.002441947;-0.02888537,-0.09057947;-0.3809262;0.001000224,-0.09716161;-0.723783;0.07104217,-0.1090429;-0.7107276;-0.02679297,0.001185755;0.3979839;0.03958889,0;0;0,0.002478926;0.1992442;0.01719281,0.004595872;0.4988957;0.03045067,0.1076399;0.3713543;-0.02508103,0.2727439;0.2486052;-0.2150109,0.370207;0.3378589;-0.4618605,-0.1094362;0.3610426;0.0175182,-0.1843022;0.09140766;0.02711442,-0.2292952;-0.1847035;0.01535565,0.06364861;0.006673216;-0.04800335,0.09832866;-0.3659888;0.01772572,0.1065994;-0.7063458;0.09889668,0.1118573;-0.7554265;0.03791642,-0.07716392;-0.002089002;-0.0210087,-0.08374164;-0.3797688;0.02040036,-0.09295578;-0.7211078;0.09722991,-0.1062885;-0.708813;-0.0002829954,0.003893941;0.3989161;0.02855771,45.93449
+0;0;0,0.0003647832;0.1986687;0.02303546,0.000359335;0.4978467;0.04461579,0.105058;0.3754403;-0.01443626,0.2542887;0.2270036;-0.1990893,0.315579;0.2914978;-0.4645776,-0.1124192;0.359903;0.02519969,-0.1997904;0.09528181;0.05243777,-0.2046775;-0.183449;0.02626062,0.06492591;0.009042893;-0.04585687,0.0966543;-0.3654707;0.01011495,0.106551;-0.7071954;0.08512348,0.1171507;-0.7562183;0.02476596,-0.07434355;-0.002753008;-0.02941867,-0.09105982;-0.3811768;0.0008475073,-0.09762316;-0.7239823;0.07114203,-0.109099;-0.7109203;-0.02674265,0.0004384734;0.3979601;0.03985576,0;0;0,0.002478926;0.1992442;0.01719281,0.004595872;0.4988957;0.03045067,0.1076399;0.3713543;-0.02508103,0.2727439;0.2486052;-0.2150109,0.370207;0.3378589;-0.4618605,-0.1094362;0.3610426;0.0175182,-0.1843022;0.09140766;0.02711442,-0.2292952;-0.1847035;0.01535565,0.06364861;0.006673216;-0.04800335,0.09832866;-0.3659888;0.01772572,0.1065994;-0.7063458;0.09889668,0.1118573;-0.7554265;0.03791642,-0.07716392;-0.002089002;-0.0210087,-0.08374164;-0.3797688;0.02040036,-0.09295578;-0.7211078;0.09722991,-0.1062885;-0.708813;-0.0002829954,0.003893941;0.3989161;0.02855771,45.95585
+0;0;0,0.0003647832;0.1986687;0.02303546,0.000359335;0.4978467;0.04461579,0.105058;0.3754403;-0.01443626,0.2542887;0.2270036;-0.1990893,0.315579;0.2914978;-0.4645776,-0.1124192;0.359903;0.02519969,-0.1997904;0.09528181;0.05243777,-0.2046775;-0.183449;0.02626062,0.06492591;0.009042893;-0.04585687,0.0966543;-0.3654707;0.01011495,0.106551;-0.7071954;0.08512348,0.1171507;-0.7562183;0.02476596,-0.07434355;-0.002753008;-0.02941867,-0.09105982;-0.3811768;0.0008475073,-0.09762316;-0.7239823;0.07114203,-0.109099;-0.7109203;-0.02674265,0.0004384734;0.3979601;0.03985576,0;0;0,0.002016876;0.1992297;0.01742003,0.003118993;0.4988652;0.03115413,0.1069313;0.3716817;-0.02391933,0.2816247;0.2396411;-0.1984114,0.3912387;0.3155707;-0.4446216,-0.1105482;0.361297;0.01705804,-0.1851054;0.09158733;0.02695525,-0.2292989;-0.18467;0.01560629,0.06399138;0.006667801;-0.04754623,0.09843533;-0.3661209;0.01758602,0.1068749;-0.7064775;0.09874113,0.1127657;-0.7554617;0.03769359,-0.07712014;-0.002102313;-0.02116751,-0.08388115;-0.3797015;0.02094124,-0.0928466;-0.7211193;0.0974494,-0.1057487;-0.708806;-0.0001247525,0.002774142;0.3988869;0.02910112,45.96764
+0;0;0,0.0003647832;0.1986687;0.02303546,0.000359335;0.4978467;0.04461579,0.105058;0.3754403;-0.01443626,0.2542887;0.2270036;-0.1990893,0.315579;0.2914978;-0.4645776,-0.1124192;0.359903;0.02519969,-0.1997904;0.09528181;0.05243777,-0.2046775;-0.183449;0.02626062,0.06492591;0.009042893;-0.04585687,0.0966543;-0.3654707;0.01011495,0.106551;-0.7071954;0.08512348,0.1171507;-0.7562183;0.02476596,-0.07434355;-0.002753008;-0.02941867,-0.09105982;-0.3811768;0.0008475073,-0.09762316;-0.7239823;0.07114203,-0.109099;-0.7109203;-0.02674265,0.0004384734;0.3979601;0.03985576,0;0;0,0.002016876;0.1992297;0.01742003,0.003118993;0.4988652;0.03115413,0.1069313;0.3716817;-0.02391933,0.2816247;0.2396411;-0.1984114,0.3912387;0.3155707;-0.4446216,-0.1105482;0.361297;0.01705804,-0.1851054;0.09158733;0.02695525,-0.2292989;-0.18467;0.01560629,0.06399138;0.006667801;-0.04754623,0.09843533;-0.3661209;0.01758602,0.1068749;-0.7064775;0.09874113,0.1127657;-0.7554617;0.03769359,-0.07712014;-0.002102313;-0.02116751,-0.08388115;-0.3797015;0.02094124,-0.0928466;-0.7211193;0.0974494,-0.1057487;-0.708806;-0.0001247525,0.002774142;0.3988869;0.02910112,45.97827
+0;0;0,-2.827064E-05;0.1986508;0.02319174,-0.0008929772;0.4978037;0.04511437,0.1042879;0.3745674;-0.01344356,0.2516419;0.2420448;-0.2112428,0.3200874;0.307394;-0.4747664,-0.1132318;0.3598207;0.02490165,-0.1993002;0.09450889;0.04943497,-0.2051541;-0.18435;0.02487018,0.06512097;0.009101341;-0.04556779,0.09651174;-0.3654833;0.01011884,0.1064508;-0.7072023;0.08514766,0.1169055;-0.756289;0.02484846,-0.07407211;-0.002847755;-0.03008677,-0.09145214;-0.3812164;0.0004929248,-0.09786392;-0.7239301;0.07124766,-0.1089562;-0.7108576;-0.02668304,-0.0004767722;0.3979249;0.04021081,0;0;0,0.001264152;0.1992133;0.01767708,0.0007410678;0.4988326;0.03177989,0.1062228;0.3720438;-0.02140262,0.2843963;0.2352641;-0.1885718,0.4090739;0.308533;-0.4283366,-0.1121813;0.3612133;0.01621979,-0.1862428;0.09139991;0.02697304,-0.2290189;-0.1851533;0.01756518,0.06445321;0.00650955;-0.04694049,0.09885733;-0.3664473;0.01724317,0.1073869;-0.7068119;0.09835538,0.1139892;-0.7569977;0.03896973,-0.07705017;-0.00204773;-0.02142611,-0.08382484;-0.3796367;0.02077214,-0.09255587;-0.7210371;0.09738478,-0.1044962;-0.7087016;-0.000315778,0.0009711523;0.3988562;0.02961883,46.00053
+0;0;0,-2.827064E-05;0.1986508;0.02319174,-0.0008929772;0.4978037;0.04511437,0.1042879;0.3745674;-0.01344356,0.2516419;0.2420448;-0.2112428,0.3200874;0.307394;-0.4747664,-0.1132318;0.3598207;0.02490165,-0.1993002;0.09450889;0.04943497,-0.2051541;-0.18435;0.02487018,0.06512097;0.009101341;-0.04556779,0.09651174;-0.3654833;0.01011884,0.1064508;-0.7072023;0.08514766,0.1169055;-0.756289;0.02484846,-0.07407211;-0.002847755;-0.03008677,-0.09145214;-0.3812164;0.0004929248,-0.09786392;-0.7239301;0.07124766,-0.1089562;-0.7108576;-0.02668304,-0.0004767722;0.3979249;0.04021081,0;0;0,0.001264152;0.1992133;0.01767708,0.0007410678;0.4988326;0.03177989,0.1062228;0.3720438;-0.02140262,0.2843963;0.2352641;-0.1885718,0.4090739;0.308533;-0.4283366,-0.1121813;0.3612133;0.01621979,-0.1862428;0.09139991;0.02697304,-0.2290189;-0.1851533;0.01756518,0.06445321;0.00650955;-0.04694049,0.09885733;-0.3664473;0.01724317,0.1073869;-0.7068119;0.09835538,0.1139892;-0.7569977;0.03896973,-0.07705017;-0.00204773;-0.02142611,-0.08382484;-0.3796367;0.02077214,-0.09255587;-0.7210371;0.09738478,-0.1044962;-0.7087016;-0.000315778,0.0009711523;0.3988562;0.02961883,46.01197
+0;0;0,-2.827064E-05;0.1986508;0.02319174,-0.0008929772;0.4978037;0.04511437,0.1042879;0.3745674;-0.01344356,0.2516419;0.2420448;-0.2112428,0.3200874;0.307394;-0.4747664,-0.1132318;0.3598207;0.02490165,-0.1993002;0.09450889;0.04943497,-0.2051541;-0.18435;0.02487018,0.06512097;0.009101341;-0.04556779,0.09651174;-0.3654833;0.01011884,0.1064508;-0.7072023;0.08514766,0.1169055;-0.756289;0.02484846,-0.07407211;-0.002847755;-0.03008677,-0.09145214;-0.3812164;0.0004929248,-0.09786392;-0.7239301;0.07124766,-0.1089562;-0.7108576;-0.02668304,-0.0004767722;0.3979249;0.04021081,0;0;0,0.001021982;0.1992159;0.01766333,0.0001745998;0.4988406;0.03162457,0.1062871;0.3721093;-0.02040439,0.2901556;0.2327276;-0.1790397,0.4268138;0.3012732;-0.413616,-0.112639;0.3614132;0.01546862,-0.1867013;0.09161642;0.02662664,-0.2283493;-0.1851552;0.01869531,0.0649111;0.006451025;-0.04631342,0.09912346;-0.3666914;0.01688645,0.1075769;-0.7070205;0.09815539,0.1141397;-0.7574484;0.03909367,-0.07686124;-0.00186465;-0.02211049,-0.08367687;-0.3793896;0.02064986,-0.09220387;-0.7207651;0.0973966,-0.103533;-0.7084246;-0.0003776029,0.0004978485;0.3988632;0.02952408,46.03414
+0;0;0,-0.0002369463;0.1986508;0.0231906,-0.001563407;0.497797;0.04518022,0.1039937;0.3738004;-0.0125301,0.2514621;0.2422782;-0.210911,0.3313037;0.3061381;-0.4715779,-0.1136211;0.3595596;0.02433695,-0.197016;0.09298414;0.04390233,-0.2044258;-0.1861389;0.02303619,0.06518178;0.009146196;-0.04547176,0.09658419;-0.365466;0.0100225,0.1064762;-0.7071549;0.08519451,0.1169627;-0.7561789;0.02481871,-0.07400142;-0.002926851;-0.03025264,-0.09126961;-0.3812839;0.0005332138,-0.09767175;-0.7239689;0.07142734,-0.08423278;-0.7722687;0.01069407,-0.001037732;0.3979195;0.04025884,0;0;0,0.001021982;0.1992159;0.01766333,0.0001745998;0.4988406;0.03162457,0.1062871;0.3721093;-0.02040439,0.2901556;0.2327276;-0.1790397,0.4268138;0.3012732;-0.413616,-0.112639;0.3614132;0.01546862,-0.1867013;0.09161642;0.02662664,-0.2283493;-0.1851552;0.01869531,0.0649111;0.006451025;-0.04631342,0.09912346;-0.3666914;0.01688645,0.1075769;-0.7070205;0.09815539,0.1141397;-0.7574484;0.03909367,-0.07686124;-0.00186465;-0.02211049,-0.08367687;-0.3793896;0.02064986,-0.09220387;-0.7207651;0.0973966,-0.103533;-0.7084246;-0.0003776029,0.0004978485;0.3988632;0.02952408,46.04536
+0;0;0,-0.0002369463;0.1986508;0.0231906,-0.001563407;0.497797;0.04518022,0.1039937;0.3738004;-0.0125301,0.2514621;0.2422782;-0.210911,0.3313037;0.3061381;-0.4715779,-0.1136211;0.3595596;0.02433695,-0.197016;0.09298414;0.04390233,-0.2044258;-0.1861389;0.02303619,0.06518178;0.009146196;-0.04547176,0.09658419;-0.365466;0.0100225,0.1064762;-0.7071549;0.08519451,0.1169627;-0.7561789;0.02481871,-0.07400142;-0.002926851;-0.03025264,-0.09126961;-0.3812839;0.0005332138,-0.09767175;-0.7239689;0.07142734,-0.08423278;-0.7722687;0.01069407,-0.001037732;0.3979195;0.04025884,0;0;0,0.001021982;0.1992159;0.01766333,0.0001745998;0.4988406;0.03162457,0.1062871;0.3721093;-0.02040439,0.2901556;0.2327276;-0.1790397,0.4268138;0.3012732;-0.413616,-0.112639;0.3614132;0.01546862,-0.1867013;0.09161642;0.02662664,-0.2283493;-0.1851552;0.01869531,0.0649111;0.006451025;-0.04631342,0.09912346;-0.3666914;0.01688645,0.1075769;-0.7070205;0.09815539,0.1141397;-0.7574484;0.03909367,-0.07686124;-0.00186465;-0.02211049,-0.08367687;-0.3793896;0.02064986,-0.09220387;-0.7207651;0.0973966,-0.103533;-0.7084246;-0.0003776029,0.0004978485;0.3988632;0.02952408,46.0565
+0;0;0,-0.0002369463;0.1986508;0.0231906,-0.001563407;0.497797;0.04518022,0.1039937;0.3738004;-0.0125301,0.2514621;0.2422782;-0.210911,0.3313037;0.3061381;-0.4715779,-0.1136211;0.3595596;0.02433695,-0.197016;0.09298414;0.04390233,-0.2044258;-0.1861389;0.02303619,0.06518178;0.009146196;-0.04547176,0.09658419;-0.365466;0.0100225,0.1064762;-0.7071549;0.08519451,0.1169627;-0.7561789;0.02481871,-0.07400142;-0.002926851;-0.03025264,-0.09126961;-0.3812839;0.0005332138,-0.09767175;-0.7239689;0.07142734,-0.08423278;-0.7722687;0.01069407,-0.001037732;0.3979195;0.04025884,0;0;0,0.0006264303;0.199217;0.01766902,-0.0008490334;0.4988484;0.03140924,0.1064195;0.3725596;-0.0186963,0.2937664;0.2308757;-0.1710998,0.4449919;0.2928887;-0.3984436,-0.1135014;0.3618848;0.01449787,-0.1875942;0.09212369;0.02629464,-0.2284335;-0.1847897;0.01914373,0.06547575;0.006254911;-0.04553901,0.09939647;-0.3670668;0.01675282,0.1080389;-0.7074283;0.09786583,0.114721;-0.7572053;0.03794099,-0.07669894;-0.001752801;-0.02267602,-0.0833142;-0.3792326;0.02051298,-0.09190972;-0.7205892;0.09733579,-0.1023619;-0.7082424;-0.0005372018,-0.0003212134;0.3988698;0.02940964,46.06781
+0;0;0,-0.00053233;0.19865;0.02319208,-0.00235842;0.4977809;0.04535296,0.1036557;0.3732051;-0.01160006,0.2574371;0.2396041;-0.2036991,0.3400937;0.3012811;-0.464014,-0.1139313;0.3588778;0.02398235,-0.1973016;0.09236771;0.04451866,-0.2087816;-0.1859278;0.01588623,0.06541318;0.009233315;-0.04512051,0.0964794;-0.3654541;0.01005369,0.1068544;-0.7071329;0.08520664,0.0941012;-0.6940222;-0.01252824,-0.07379539;-0.003135049;-0.03073127,-0.09158957;-0.3814394;0.000400288,-0.09800563;-0.7241294;0.07126898,-0.08518812;-0.7727534;0.01082072,-0.001646032;0.3979075;0.04037436,0;0;0,0.0006264303;0.199217;0.01766902,-0.0008490334;0.4988484;0.03140924,0.1064195;0.3725596;-0.0186963,0.2937664;0.2308757;-0.1710998,0.4449919;0.2928887;-0.3984436,-0.1135014;0.3618848;0.01449787,-0.1875942;0.09212369;0.02629464,-0.2284335;-0.1847897;0.01914373,0.06547575;0.006254911;-0.04553901,0.09939647;-0.3670668;0.01675282,0.1080389;-0.7074283;0.09786583,0.114721;-0.7572053;0.03794099,-0.07669894;-0.001752801;-0.02267602,-0.0833142;-0.3792326;0.02051298,-0.09190972;-0.7205892;0.09733579,-0.1023619;-0.7082424;-0.0005372018,-0.0003212134;0.3988698;0.02940964,46.07898
+0;0;0,-0.00053233;0.19865;0.02319208,-0.00235842;0.4977809;0.04535296,0.1036557;0.3732051;-0.01160006,0.2574371;0.2396041;-0.2036991,0.3400937;0.3012811;-0.464014,-0.1139313;0.3588778;0.02398235,-0.1973016;0.09236771;0.04451866,-0.2087816;-0.1859278;0.01588623,0.06541318;0.009233315;-0.04512051,0.0964794;-0.3654541;0.01005369,0.1068544;-0.7071329;0.08520664,0.0941012;-0.6940222;-0.01252824,-0.07379539;-0.003135049;-0.03073127,-0.09158957;-0.3814394;0.000400288,-0.09800563;-0.7241294;0.07126898,-0.08518812;-0.7727534;0.01082072,-0.001646032;0.3979075;0.04037436,0;0;0,0.0003813505;0.1992257;0.01757745,-0.001576779;0.4988676;0.0309963,0.1065831;0.3723963;-0.0172729,0.2989844;0.2316596;-0.1641569,0.4533998;0.2930963;-0.3895042,-0.1138896;0.3617986;0.01336685,-0.1882257;0.09213299;0.0258019,-0.2282056;-0.1849264;0.01949997,0.06639528;0.00604288;-0.04421708,0.09937625;-0.3676112;0.01656857,0.1079488;-0.7079828;0.09764651,0.115213;-0.7575322;0.03748734,-0.07640765;-0.001607448;-0.02364923,-0.08336408;-0.3790027;0.0202187,-0.09191729;-0.720318;0.09723021,-0.1014938;-0.7079691;-0.0007326901,-0.0008602627;0.3988874;0.0291399,46.10112
+0;0;0,-0.00053233;0.19865;0.02319208,-0.00235842;0.4977809;0.04535296,0.1036557;0.3732051;-0.01160006,0.2574371;0.2396041;-0.2036991,0.3400937;0.3012811;-0.464014,-0.1139313;0.3588778;0.02398235,-0.1973016;0.09236771;0.04451866,-0.2087816;-0.1859278;0.01588623,0.06541318;0.009233315;-0.04512051,0.0964794;-0.3654541;0.01005369,0.1068544;-0.7071329;0.08520664,0.0941012;-0.6940222;-0.01252824,-0.07379539;-0.003135049;-0.03073127,-0.09158957;-0.3814394;0.000400288,-0.09800563;-0.7241294;0.07126898,-0.08518812;-0.7727534;0.01082072,-0.001646032;0.3979075;0.04037436,0;0;0,0.0003813505;0.1992257;0.01757745,-0.001576779;0.4988676;0.0309963,0.1065831;0.3723963;-0.0172729,0.2989844;0.2316596;-0.1641569,0.4533998;0.2930963;-0.3895042,-0.1138896;0.3617986;0.01336685,-0.1882257;0.09213299;0.0258019,-0.2282056;-0.1849264;0.01949997,0.06639528;0.00604288;-0.04421708,0.09937625;-0.3676112;0.01656857,0.1079488;-0.7079828;0.09764651,0.115213;-0.7575322;0.03748734,-0.07640765;-0.001607448;-0.02364923,-0.08336408;-0.3790027;0.0202187,-0.09191729;-0.720318;0.09723021,-0.1014938;-0.7079691;-0.0007326901,-0.0008602627;0.3988874;0.0291399,46.11221
+0;0;0,-0.000699571;0.1986469;0.02321469,-0.002966194;0.4977656;0.04549171,0.1036368;0.372548;-0.01019931,0.2615975;0.2371741;-0.1976088,0.3467712;0.3012677;-0.4565247,-0.1141222;0.3582847;0.02344446,-0.1971704;0.09174681;0.04490534,-0.2086138;-0.1865511;0.01628159,0.06558237;0.009206099;-0.04487983,0.09644242;-0.3655253;0.01011126,0.1068401;-0.7072155;0.08520935,0.09468333;-0.6941017;-0.01260205,-0.07376256;-0.003149166;-0.03080855,-0.09155875;-0.3814555;0.0002985634,-0.09801314;-0.7241127;0.07132186,-0.0834125;-0.7716087;0.009830311,-0.002137615;0.3978943;0.04048941,0;0;0,0.0003813505;0.1992257;0.01757745,-0.001576779;0.4988676;0.0309963,0.1065831;0.3723963;-0.0172729,0.2989844;0.2316596;-0.1641569,0.4533998;0.2930963;-0.3895042,-0.1138896;0.3617986;0.01336685,-0.1882257;0.09213299;0.0258019,-0.2282056;-0.1849264;0.01949997,0.06639528;0.00604288;-0.04421708,0.09937625;-0.3676112;0.01656857,0.1079488;-0.7079828;0.09764651,0.115213;-0.7575322;0.03748734,-0.07640765;-0.001607448;-0.02364923,-0.08336408;-0.3790027;0.0202187,-0.09191729;-0.720318;0.09723021,-0.1014938;-0.7079691;-0.0007326901,-0.0008602627;0.3988874;0.0291399,46.12349
+0;0;0,-0.000699571;0.1986469;0.02321469,-0.002966194;0.4977656;0.04549171,0.1036368;0.372548;-0.01019931,0.2615975;0.2371741;-0.1976088,0.3467712;0.3012677;-0.4565247,-0.1141222;0.3582847;0.02344446,-0.1971704;0.09174681;0.04490534,-0.2086138;-0.1865511;0.01628159,0.06558237;0.009206099;-0.04487983,0.09644242;-0.3655253;0.01011126,0.1068401;-0.7072155;0.08520935,0.09468333;-0.6941017;-0.01260205,-0.07376256;-0.003149166;-0.03080855,-0.09155875;-0.3814555;0.0002985634,-0.09801314;-0.7241127;0.07132186,-0.0834125;-0.7716087;0.009830311,-0.002137615;0.3978943;0.04048941,0;0;0,0.0002466261;0.1992342;0.01748366,-0.001745965;0.4988816;0.03075964,0.1072393;0.3723417;-0.01546771,0.3026446;0.2310106;-0.1577431,0.4660251;0.291524;-0.3769347,-0.1139825;0.3620628;0.01214791,-0.190054;0.09285229;0.02393147,-0.2272306;-0.1846441;0.02023757,0.06693446;0.0058864;-0.04341806,0.09940027;-0.3679221;0.01669146,0.108066;-0.7083384;0.09757206,0.1155424;-0.7579464;0.03751642,-0.07620908;-0.001609865;-0.02428136,-0.08328655;-0.3789411;0.02011509,-0.09181929;-0.7202507;0.09715398,-0.1003108;-0.7078924;-0.00091061,-0.001021515;0.3989004;0.02896458,46.1458
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,-6.11139E-05;0.1992434;0.0173806,-0.002413772;0.4988992;0.03040592,0.1071624;0.3722309;-0.01446516,0.3049936;0.2307579;-0.1532031,0.4794652;0.2869058;-0.3648799,-0.1141149;0.3617691;0.009823561,-0.190065;0.09256741;0.0225522,-0.2266644;-0.1850249;0.02082172,0.06740568;0.005569932;-0.04272529,0.09958687;-0.368361;0.01677264,0.1082254;-0.7088742;0.09724692,0.1152883;-0.7586287;0.03733577,-0.07541358;-0.001492842;-0.02665638,-0.08265427;-0.3785662;0.01985401,-0.09097114;-0.7198521;0.09702125,-0.09839706;-0.7074867;-0.001131058,-0.00158086;0.3989173;0.02869425,46.16844
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,-6.11139E-05;0.1992434;0.0173806,-0.002413772;0.4988992;0.03040592,0.1071624;0.3722309;-0.01446516,0.3049936;0.2307579;-0.1532031,0.4794652;0.2869058;-0.3648799,-0.1141149;0.3617691;0.009823561,-0.190065;0.09256741;0.0225522,-0.2266644;-0.1850249;0.02082172,0.06740568;0.005569932;-0.04272529,0.09958687;-0.368361;0.01677264,0.1082254;-0.7088742;0.09724692,0.1152883;-0.7586287;0.03733577,-0.07541358;-0.001492842;-0.02665638,-0.08265427;-0.3785662;0.01985401,-0.09097114;-0.7198521;0.09702125,-0.09839706;-0.7074867;-0.001131058,-0.00158086;0.3989173;0.02869425,46.17937
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,-6.11139E-05;0.1992434;0.0173806,-0.002413772;0.4988992;0.03040592,0.1071624;0.3722309;-0.01446516,0.3049936;0.2307579;-0.1532031,0.4794652;0.2869058;-0.3648799,-0.1141149;0.3617691;0.009823561,-0.190065;0.09256741;0.0225522,-0.2266644;-0.1850249;0.02082172,0.06740568;0.005569932;-0.04272529,0.09958687;-0.368361;0.01677264,0.1082254;-0.7088742;0.09724692,0.1152883;-0.7586287;0.03733577,-0.07541358;-0.001492842;-0.02665638,-0.08265427;-0.3785662;0.01985401,-0.09097114;-0.7198521;0.09702125,-0.09839706;-0.7074867;-0.001131058,-0.00158086;0.3989173;0.02869425,46.19038
+0;0;0,-0.001055902;0.1986339;0.02331235,-0.004267212;0.4977115;0.04602445,0.1026143;0.3727223;-0.01003319,0.2632779;0.2370019;-0.1948768,0.357653;0.3008476;-0.4506445,-0.1137498;0.3564735;0.01974226,-0.1998291;0.09114224;0.04402556,-0.2119396;-0.1872825;0.01695186,0.06599891;0.009200704;-0.04426612,0.09626663;-0.3656605;0.01016685,0.1062243;-0.7074103;0.085053,0.09487718;-0.6942856;-0.01285751,-0.07353286;-0.00334857;-0.03133216,-0.09153601;-0.3816001;0.000316795,-0.09793594;-0.7242293;0.07148065,-0.08323842;-0.7710943;0.009225067,-0.003108544;0.3978511;0.04087083,0;0;0,-0.0002482432;0.1992484;0.01732036,-0.002749668;0.4989092;0.03020196,0.1072207;0.3721628;-0.01365805,0.3088779;0.2286055;-0.1445232,0.489612;0.2828759;-0.3513804,-0.1142486;0.3618605;0.008557376,-0.1897042;0.09252954;0.02149047,-0.2270793;-0.1849642;0.02092431,0.06771448;0.005426235;-0.04225286,0.09958141;-0.3685401;0.01719201,0.1083973;-0.7092243;0.09691966,0.1155822;-0.7588261;0.03682024,-0.07530565;-0.001435071;-0.02696295,-0.08257155;-0.3784775;0.01979434,-0.0907885;-0.7197509;0.09702744,-0.09753731;-0.7073831;-0.001174197,-0.001879793;0.3989268;0.02854098,46.20171
+0;0;0,-0.001262364;0.1986225;0.0233991,-0.004869109;0.497678;0.04633273,0.1026365;0.3724708;-0.00854094,0.2636069;0.2387845;-0.1945961,0.367754;0.3032768;-0.446378,-0.1143218;0.3565536;0.02009086,-0.1990137;0.09078923;0.04451583,-0.2105969;-0.1875575;0.01642824,0.06617564;0.009217833;-0.04399791,0.09630692;-0.3657039;0.0100927,0.1061207;-0.7074701;0.08492297,0.09522281;-0.6943337;-0.01304057,-0.07345457;-0.003409229;-0.03150879,-0.09160331;-0.3816575;9.706616E-05,-0.09779185;-0.7242001;0.07169443,-0.08345899;-0.7729468;0.01174833,-0.003621391;0.3978215;0.04112383,0;0;0,-0.0002482432;0.1992484;0.01732036,-0.002749668;0.4989092;0.03020196,0.1072207;0.3721628;-0.01365805,0.3088779;0.2286055;-0.1445232,0.489612;0.2828759;-0.3513804,-0.1142486;0.3618605;0.008557376,-0.1897042;0.09252954;0.02149047,-0.2270793;-0.1849642;0.02092431,0.06771448;0.005426235;-0.04225286,0.09958141;-0.3685401;0.01719201,0.1083973;-0.7092243;0.09691966,0.1155822;-0.7588261;0.03682024,-0.07530565;-0.001435071;-0.02696295,-0.08257155;-0.3784775;0.01979434,-0.0907885;-0.7197509;0.09702744,-0.09753731;-0.7073831;-0.001174197,-0.001879793;0.3989268;0.02854098,46.21287
+0;0;0,-0.001262364;0.1986225;0.0233991,-0.004869109;0.497678;0.04633273,0.1026365;0.3724708;-0.00854094,0.2636069;0.2387845;-0.1945961,0.367754;0.3032768;-0.446378,-0.1143218;0.3565536;0.02009086,-0.1990137;0.09078923;0.04451583,-0.2105969;-0.1875575;0.01642824,0.06617564;0.009217833;-0.04399791,0.09630692;-0.3657039;0.0100927,0.1061207;-0.7074701;0.08492297,0.09522281;-0.6943337;-0.01304057,-0.07345457;-0.003409229;-0.03150879,-0.09160331;-0.3816575;9.706616E-05,-0.09779185;-0.7242001;0.07169443,-0.08345899;-0.7729468;0.01174833,-0.003621391;0.3978215;0.04112383,0;0;0,-0.0004494705;0.1992514;0.01728233,-0.003306265;0.4989149;0.0300172,0.1072157;0.3727088;-0.01299518,0.3121005;0.2287643;-0.1383038,0.497857;0.2809773;-0.3412036,-0.1146672;0.3624607;0.007265452,-0.1905146;0.09324369;0.0202799,-0.2288604;-0.1841143;0.01881177,0.06815707;0.005515796;-0.04152337,0.09957194;-0.3685374;0.01761465,0.1084635;-0.7093408;0.09682332,0.1153657;-0.758963;0.03671784,-0.07499185;-0.001619603;-0.02781363,-0.08237529;-0.3785615;0.01972865,-0.09033827;-0.719883;0.09677577,-0.0964804;-0.7075082;-0.001466915,-0.002317324;0.3989326;0.02841531,46.23515
+0;0;0,-0.001262364;0.1986225;0.0233991,-0.004869109;0.497678;0.04633273,0.1026365;0.3724708;-0.00854094,0.2636069;0.2387845;-0.1945961,0.367754;0.3032768;-0.446378,-0.1143218;0.3565536;0.02009086,-0.1990137;0.09078923;0.04451583,-0.2105969;-0.1875575;0.01642824,0.06617564;0.009217833;-0.04399791,0.09630692;-0.3657039;0.0100927,0.1061207;-0.7074701;0.08492297,0.09522281;-0.6943337;-0.01304057,-0.07345457;-0.003409229;-0.03150879,-0.09160331;-0.3816575;9.706616E-05,-0.09779185;-0.7242001;0.07169443,-0.08345899;-0.7729468;0.01174833,-0.003621391;0.3978215;0.04112383,0;0;0,-0.0004494705;0.1992514;0.01728233,-0.003306265;0.4989149;0.0300172,0.1072157;0.3727088;-0.01299518,0.3121005;0.2287643;-0.1383038,0.497857;0.2809773;-0.3412036,-0.1146672;0.3624607;0.007265452,-0.1905146;0.09324369;0.0202799,-0.2288604;-0.1841143;0.01881177,0.06815707;0.005515796;-0.04152337,0.09957194;-0.3685374;0.01761465,0.1084635;-0.7093408;0.09682332,0.1153657;-0.758963;0.03671784,-0.07499185;-0.001619603;-0.02781363,-0.08237529;-0.3785615;0.01972865,-0.09033827;-0.719883;0.09677577,-0.0964804;-0.7075082;-0.001466915,-0.002317324;0.3989326;0.02841531,46.24636
+0;0;0,-0.001157693;0.1986601;0.02308299,-0.003610181;0.4978462;0.04428942,0.1038807;0.3723729;-0.008516081,0.2706351;0.2393131;-0.1898667,0.3824347;0.3012215;-0.4390016,-0.1139722;0.3569536;0.02026486,-0.1988888;0.09131402;0.04526085,-0.2091075;-0.1870083;0.01641219,0.06644396;0.009287495;-0.04357687,0.09624703;-0.3657586;0.009829111,0.1058578;-0.7074786;0.08489604,0.09521835;-0.6943729;-0.01309062,-0.07339453;-0.003420191;-0.03164719,-0.0916348;-0.3816603;3.404915E-06,-0.09800126;-0.7241871;0.07166079,-0.08228204;-0.770368;0.008816697,-0.002909297;0.397946;0.03987727,0;0;0,-0.0005015598;0.1992555;0.01723341,-0.003371112;0.4989267;0.02976789,0.1075969;0.3726391;-0.01189342,0.3163658;0.2273095;-0.1289186,0.5077789;0.2802306;-0.3263023,-0.1147364;0.3626734;0.006740946,-0.1907156;0.09344214;0.01864354,-0.2299519;-0.1837901;0.01697181,0.06854065;0.005618195;-0.04087315,0.0995883;-0.3685238;0.0178958,0.1087693;-0.7094339;0.0966106,0.1161594;-0.7591399;0.03667438,-0.07481816;-0.001478942;-0.02828525,-0.08223118;-0.3783411;0.01988043,-0.09014515;-0.7196922;0.09680108,-0.07908654;-0.7670608;0.03441668,-0.002388715;0.3989431;0.02824695,46.26858
+0;0;0,-0.001157693;0.1986601;0.02308299,-0.003610181;0.4978462;0.04428942,0.1038807;0.3723729;-0.008516081,0.2706351;0.2393131;-0.1898667,0.3824347;0.3012215;-0.4390016,-0.1139722;0.3569536;0.02026486,-0.1988888;0.09131402;0.04526085,-0.2091075;-0.1870083;0.01641219,0.06644396;0.009287495;-0.04357687,0.09624703;-0.3657586;0.009829111,0.1058578;-0.7074786;0.08489604,0.09521835;-0.6943729;-0.01309062,-0.07339453;-0.003420191;-0.03164719,-0.0916348;-0.3816603;3.404915E-06,-0.09800126;-0.7241871;0.07166079,-0.08228204;-0.770368;0.008816697,-0.002909297;0.397946;0.03987727,0;0;0,-0.0005015598;0.1992555;0.01723341,-0.003371112;0.4989267;0.02976789,0.1075969;0.3726391;-0.01189342,0.3163658;0.2273095;-0.1289186,0.5077789;0.2802306;-0.3263023,-0.1147364;0.3626734;0.006740946,-0.1907156;0.09344214;0.01864354,-0.2299519;-0.1837901;0.01697181,0.06854065;0.005618195;-0.04087315,0.0995883;-0.3685238;0.0178958,0.1087693;-0.7094339;0.0966106,0.1161594;-0.7591399;0.03667438,-0.07481816;-0.001478942;-0.02828525,-0.08223118;-0.3783411;0.01988043,-0.09014515;-0.7196922;0.09680108,-0.07908654;-0.7670608;0.03441668,-0.002388715;0.3989431;0.02824695,46.27985
+0;0;0,-0.001157693;0.1986601;0.02308299,-0.003610181;0.4978462;0.04428942,0.1038807;0.3723729;-0.008516081,0.2706351;0.2393131;-0.1898667,0.3824347;0.3012215;-0.4390016,-0.1139722;0.3569536;0.02026486,-0.1988888;0.09131402;0.04526085,-0.2091075;-0.1870083;0.01641219,0.06644396;0.009287495;-0.04357687,0.09624703;-0.3657586;0.009829111,0.1058578;-0.7074786;0.08489604,0.09521835;-0.6943729;-0.01309062,-0.07339453;-0.003420191;-0.03164719,-0.0916348;-0.3816603;3.404915E-06,-0.09800126;-0.7241871;0.07166079,-0.08228204;-0.770368;0.008816697,-0.002909297;0.397946;0.03987727,0;0;0,-0.0006194097;0.1992659;0.01710957,-0.003667355;0.4989546;0.0291344,0.107849;0.3725059;-0.01083756,0.3186563;0.2269783;-0.1238951,0.5146509;0.2800296;-0.3166947,-0.1150194;0.3630914;0.005895674,-0.1907642;0.09373572;0.01639594,-0.2311035;-0.183329;0.01358723,0.06902371;0.005671776;-0.04004446,0.09965227;-0.3685923;0.01816416,0.1087866;-0.7096184;0.09638,0.1164413;-0.7589884;0.03603254,-0.07463079;-0.001461179;-0.0287769,-0.08208092;-0.3782716;0.01978603,-0.09000898;-0.719606;0.09677918,-0.09486523;-0.7072399;-0.001533918,-0.002627296;0.3989686;0.02782401,46.30209
+0;0;0,-0.001533877;0.1986492;0.02315493,-0.005114859;0.4977956;0.0447833,0.1032158;0.3721934;-0.007208236,0.2714456;0.2415994;-0.1889883,0.3947003;0.3035775;-0.4326417,-0.1149509;0.3568501;0.02014413,-0.1990426;0.09095997;0.04526504,-0.2091821;-0.1873298;0.01607604,0.06668483;0.009202548;-0.04322553,0.09643685;-0.3658955;0.00984301,0.1060135;-0.7076437;0.08478574,0.09573095;-0.6945295;-0.01324047,-0.07321025;-0.003447471;-0.03206825,-0.09129621;-0.3816634;-4.278868E-05,-0.09762728;-0.7241629;0.07174819,-0.08398729;-0.7722118;0.01073729,-0.003988464;0.3979078;0.04018383,0;0;0,-0.0006194097;0.1992659;0.01710957,-0.003667355;0.4989546;0.0291344,0.107849;0.3725059;-0.01083756,0.3186563;0.2269783;-0.1238951,0.5146509;0.2800296;-0.3166947,-0.1150194;0.3630914;0.005895674,-0.1907642;0.09373572;0.01639594,-0.2311035;-0.183329;0.01358723,0.06902371;0.005671776;-0.04004446,0.09965227;-0.3685923;0.01816416,0.1087866;-0.7096184;0.09638,0.1164413;-0.7589884;0.03603254,-0.07463079;-0.001461179;-0.0287769,-0.08208092;-0.3782716;0.01978603,-0.09000898;-0.719606;0.09677918,-0.09486523;-0.7072399;-0.001533918,-0.002627296;0.3989686;0.02782401,46.31331
+0;0;0,-0.001533877;0.1986492;0.02315493,-0.005114859;0.4977956;0.0447833,0.1032158;0.3721934;-0.007208236,0.2714456;0.2415994;-0.1889883,0.3947003;0.3035775;-0.4326417,-0.1149509;0.3568501;0.02014413,-0.1990426;0.09095997;0.04526504,-0.2091821;-0.1873298;0.01607604,0.06668483;0.009202548;-0.04322553,0.09643685;-0.3658955;0.00984301,0.1060135;-0.7076437;0.08478574,0.09573095;-0.6945295;-0.01324047,-0.07321025;-0.003447471;-0.03206825,-0.09129621;-0.3816634;-4.278868E-05,-0.09762728;-0.7241629;0.07174819,-0.08398729;-0.7722118;0.01073729,-0.003988464;0.3979078;0.04018383,0;0;0,-0.0007364716;0.1992752;0.01699529,-0.003836001;0.498978;0.02861732,0.107924;0.3724083;-0.01043808,0.3219575;0.2275108;-0.1181152,0.5224398;0.2833185;-0.3054447,-0.1151069;0.3632618;0.004957076,-0.190943;0.09391537;0.01502754,-0.232259;-0.182944;0.00855443,0.06958435;0.005752043;-0.03905039,0.09976884;-0.3686984;0.01818346,0.1087179;-0.7097741;0.09620428,0.1167169;-0.7591739;0.03594069,-0.07439176;-0.001214013;-0.02940054,-0.08213663;-0.3779745;0.01950301,-0.08982806;-0.7192903;0.09660287,-0.07915488;-0.7662969;0.03370566,-0.002783574;0.3989901;0.02747296,46.3358
+0;0;0,-0.001533877;0.1986492;0.02315493,-0.005114859;0.4977956;0.0447833,0.1032158;0.3721934;-0.007208236,0.2714456;0.2415994;-0.1889883,0.3947003;0.3035775;-0.4326417,-0.1149509;0.3568501;0.02014413,-0.1990426;0.09095997;0.04526504,-0.2091821;-0.1873298;0.01607604,0.06668483;0.009202548;-0.04322553,0.09643685;-0.3658955;0.00984301,0.1060135;-0.7076437;0.08478574,0.09573095;-0.6945295;-0.01324047,-0.07321025;-0.003447471;-0.03206825,-0.09129621;-0.3816634;-4.278868E-05,-0.09762728;-0.7241629;0.07174819,-0.08398729;-0.7722118;0.01073729,-0.003988464;0.3979078;0.04018383,0;0;0,-0.0007364716;0.1992752;0.01699529,-0.003836001;0.498978;0.02861732,0.107924;0.3724083;-0.01043808,0.3219575;0.2275108;-0.1181152,0.5224398;0.2833185;-0.3054447,-0.1151069;0.3632618;0.004957076,-0.190943;0.09391537;0.01502754,-0.232259;-0.182944;0.00855443,0.06958435;0.005752043;-0.03905039,0.09976884;-0.3686984;0.01818346,0.1087179;-0.7097741;0.09620428,0.1167169;-0.7591739;0.03594069,-0.07439176;-0.001214013;-0.02940054,-0.08213663;-0.3779745;0.01950301,-0.08982806;-0.7192903;0.09660287,-0.07915488;-0.7662969;0.03370566,-0.002783574;0.3989901;0.02747296,46.35807
+0;0;0,-0.001781968;0.1986337;0.02326993,-0.005807844;0.4977522;0.04521199,0.1029604;0.372197;-0.00625249,0.2755319;0.2436414;-0.1853964,0.4083675;0.3034135;-0.424524,-0.1153606;0.3567419;0.01984219,-0.1993993;0.09084287;0.04504525,-0.2095519;-0.1873608;0.01505063,0.06692671;0.009225968;-0.04284504,0.09658878;-0.3659591;0.009655859,0.1061838;-0.7077192;0.08454211,0.09623972;-0.694595;-0.01352075,-0.07316144;-0.003417898;-0.03218262,-0.09109608;-0.3816684;-0.000482928,-0.09755753;-0.724094;0.07164894,-0.08358432;-0.7717584;0.01022432,-0.004536945;0.3978717;0.04049299,0;0;0,-0.0008901283;0.1992831;0.01689537,-0.004071747;0.4989892;0.02841331,0.1079691;0.3724458;-0.009867098,0.3256761;0.2289783;-0.1119491,0.5303502;0.2877473;-0.2937586,-0.1151606;0.3633516;0.00388254,-0.1910307;0.0939821;0.0130359,-0.2334707;-0.1826214;0.003583942,0.07005804;0.00547272;-0.03823506,0.09996442;-0.3691373;0.01809365,0.1089115;-0.7102301;0.09603999,0.1171835;-0.7598128;0.03605526,-0.07411173;-0.00112368;-0.03010296,-0.08225038;-0.3778386;0.01908662,-0.08961649;-0.7190887;0.09650843,-0.09348761;-0.7067329;-0.001846515,-0.00299673;0.3990012;0.02730007,46.36948
+0;0;0,-0.001781968;0.1986337;0.02326993,-0.005807844;0.4977522;0.04521199,0.1029604;0.372197;-0.00625249,0.2755319;0.2436414;-0.1853964,0.4083675;0.3034135;-0.424524,-0.1153606;0.3567419;0.01984219,-0.1993993;0.09084287;0.04504525,-0.2095519;-0.1873608;0.01505063,0.06692671;0.009225968;-0.04284504,0.09658878;-0.3659591;0.009655859,0.1061838;-0.7077192;0.08454211,0.09623972;-0.694595;-0.01352075,-0.07316144;-0.003417898;-0.03218262,-0.09109608;-0.3816684;-0.000482928,-0.09755753;-0.724094;0.07164894,-0.08358432;-0.7717584;0.01022432,-0.004536945;0.3978717;0.04049299,0;0;0,-0.0008901283;0.1992831;0.01689537,-0.004071747;0.4989892;0.02841331,0.1079691;0.3724458;-0.009867098,0.3256761;0.2289783;-0.1119491,0.5303502;0.2877473;-0.2937586,-0.1151606;0.3633516;0.00388254,-0.1910307;0.0939821;0.0130359,-0.2334707;-0.1826214;0.003583942,0.07005804;0.00547272;-0.03823506,0.09996442;-0.3691373;0.01809365,0.1089115;-0.7102301;0.09603999,0.1171835;-0.7598128;0.03605526,-0.07411173;-0.00112368;-0.03010296,-0.08225038;-0.3778386;0.01908662,-0.08961649;-0.7190887;0.09650843,-0.09348761;-0.7067329;-0.001846515,-0.00299673;0.3990012;0.02730007,46.3914
+0;0;0,-0.001781968;0.1986337;0.02326993,-0.005807844;0.4977522;0.04521199,0.1029604;0.372197;-0.00625249,0.2755319;0.2436414;-0.1853964,0.4083675;0.3034135;-0.424524,-0.1153606;0.3567419;0.01984219,-0.1993993;0.09084287;0.04504525,-0.2095519;-0.1873608;0.01505063,0.06692671;0.009225968;-0.04284504,0.09658878;-0.3659591;0.009655859,0.1061838;-0.7077192;0.08454211,0.09623972;-0.694595;-0.01352075,-0.07316144;-0.003417898;-0.03218262,-0.09109608;-0.3816684;-0.000482928,-0.09755753;-0.724094;0.07164894,-0.08358432;-0.7717584;0.01022432,-0.004536945;0.3978717;0.04049299,0;0;0,-0.001025798;0.199292;0.01678243,-0.00431273;0.4990038;0.02811697,0.1081233;0.3724384;-0.008970868,0.3302839;0.232;-0.1055199,0.5382822;0.2930456;-0.282749,-0.1153363;0.3636635;0.003031541,-0.1911654;0.09427208;0.01187581,-0.2346649;-0.1820423;-0.0006998992,0.07036743;0.005287998;-0.03768902,0.1001032;-0.3694113;0.01813372,0.1090493;-0.7105565;0.09585068,0.1173986;-0.7601436;0.03588247,-0.07399786;-0.0009786936;-0.03038682,-0.08229814;-0.377921;0.01700131,-0.08960335;-0.7188904;0.09565547,-0.09291497;-0.7065415;-0.002718665,-0.00320911;0.3990154;0.02706755,46.40293
+0;0;0,-0.002333319;0.1986184;0.02335124,-0.008210952;0.4976878;0.04554531,0.1019263;0.3725323;-0.004682865,0.2779773;0.2466852;-0.1823583,0.4245721;0.3055068;-0.4135509,-0.1170604;0.3568496;0.01982846,-0.2003224;0.09067172;0.04466416,-0.2111566;-0.187426;0.01393503,0.0671682;0.009197716;-0.04247158,0.0964672;-0.3660746;0.009607989,0.1058519;-0.7078312;0.08453667,0.09626943;-0.6946988;-0.0135636,-0.07311244;-0.003333627;-0.0323026,-0.09095291;-0.3816165;-0.0009370297,-0.09760784;-0.7239811;0.07146559,-0.08176352;-0.7699723;0.008423492,-0.006227543;0.3978231;0.04073878,0;0;0,-0.001025798;0.199292;0.01678243,-0.00431273;0.4990038;0.02811697,0.1081233;0.3724384;-0.008970868,0.3302839;0.232;-0.1055199,0.5382822;0.2930456;-0.282749,-0.1153363;0.3636635;0.003031541,-0.1911654;0.09427208;0.01187581,-0.2346649;-0.1820423;-0.0006998992,0.07036743;0.005287998;-0.03768902,0.1001032;-0.3694113;0.01813372,0.1090493;-0.7105565;0.09585068,0.1173986;-0.7601436;0.03588247,-0.07399786;-0.0009786936;-0.03038682,-0.08229814;-0.377921;0.01700131,-0.08960335;-0.7188904;0.09565547,-0.09291497;-0.7065415;-0.002718665,-0.00320911;0.3990154;0.02706755,46.42489
+0;0;0,-0.002333319;0.1986184;0.02335124,-0.008210952;0.4976878;0.04554531,0.1019263;0.3725323;-0.004682865,0.2779773;0.2466852;-0.1823583,0.4245721;0.3055068;-0.4135509,-0.1170604;0.3568496;0.01982846,-0.2003224;0.09067172;0.04466416,-0.2111566;-0.187426;0.01393503,0.0671682;0.009197716;-0.04247158,0.0964672;-0.3660746;0.009607989,0.1058519;-0.7078312;0.08453667,0.09626943;-0.6946988;-0.0135636,-0.07311244;-0.003333627;-0.0323026,-0.09095291;-0.3816165;-0.0009370297,-0.09760784;-0.7239811;0.07146559,-0.08176352;-0.7699723;0.008423492,-0.006227543;0.3978231;0.04073878,0;0;0,-0.001318526;0.1993017;0.01664678,-0.00507683;0.4990177;0.02771455,0.1078481;0.3725872;-0.008356825,0.3335551;0.2339015;-0.09903537,0.546611;0.2972314;-0.2693191,-0.1157482;0.3634787;0.002144935,-0.1917271;0.09411445;0.01051852,-0.2356823;-0.1819758;-0.005042249,0.07078885;0.005116153;-0.03691564,0.1003888;-0.3697363;0.01794315,0.1092932;-0.7108787;0.0956771,0.1175571;-0.7605722;0.0358385,-0.0737876;-0.000879114;-0.03089688,-0.08217349;-0.3777807;0.01679888,-0.08940632;-0.7187274;0.09555835,-0.09229845;-0.7063866;-0.002827562,-0.003810062;0.3990303;0.02676053,46.44736
+0;0;0,-0.002333319;0.1986184;0.02335124,-0.008210952;0.4976878;0.04554531,0.1019263;0.3725323;-0.004682865,0.2779773;0.2466852;-0.1823583,0.4245721;0.3055068;-0.4135509,-0.1170604;0.3568496;0.01982846,-0.2003224;0.09067172;0.04466416,-0.2111566;-0.187426;0.01393503,0.0671682;0.009197716;-0.04247158,0.0964672;-0.3660746;0.009607989,0.1058519;-0.7078312;0.08453667,0.09626943;-0.6946988;-0.0135636,-0.07311244;-0.003333627;-0.0323026,-0.09095291;-0.3816165;-0.0009370297,-0.09760784;-0.7239811;0.07146559,-0.08176352;-0.7699723;0.008423492,-0.006227543;0.3978231;0.04073878,0;0;0,-0.001318526;0.1993017;0.01664678,-0.00507683;0.4990177;0.02771455,0.1078481;0.3725872;-0.008356825,0.3335551;0.2339015;-0.09903537,0.546611;0.2972314;-0.2693191,-0.1157482;0.3634787;0.002144935,-0.1917271;0.09411445;0.01051852,-0.2356823;-0.1819758;-0.005042249,0.07078885;0.005116153;-0.03691564,0.1003888;-0.3697363;0.01794315,0.1092932;-0.7108787;0.0956771,0.1175571;-0.7605722;0.0358385,-0.0737876;-0.000879114;-0.03089688,-0.08217349;-0.3777807;0.01679888,-0.08940632;-0.7187274;0.09555835,-0.09229845;-0.7063866;-0.002827562,-0.003810062;0.3990303;0.02676053,46.45853
+0;0;0,-0.002098616;0.1986652;0.02297211,-0.006185891;0.4978926;0.04325695,0.1037977;0.3726091;-0.004515916,0.2849129;0.2493341;-0.1788734,0.4395083;0.3069044;-0.4051165,-0.1161781;0.3574143;0.01934808,-0.1984785;0.09094915;0.04430756,-0.2094463;-0.1871163;0.01333513,0.06744218;0.009257975;-0.04202193,0.09631613;-0.3661309;0.009451438,0.1057804;-0.7078606;0.08449264,0.0967223;-0.6947629;-0.01365148,-0.07293631;-0.003406752;-0.03269081,-0.09068556;-0.3817216;-0.001661479,-0.09752025;-0.7239645;0.0712982,-0.08122351;-0.7684197;0.006561443,-0.005012334;0.3979792;0.03926459,0;0;0,-0.001429332;0.1993036;0.01661449,-0.005268358;0.4990187;0.02768524,0.107999;0.3726214;-0.007383548,0.3362468;0.2349306;-0.09308156,0.5572367;0.2978994;-0.2530766,-0.1157335;0.3634151;0.001378555,-0.1918449;0.09405088;0.008447316,-0.2356962;-0.1818189;-0.01086433,0.07096661;0.004993117;-0.03658974,0.1004326;-0.3699057;0.01802364,0.1093024;-0.7110862;0.09559416,0.1174362;-0.7609978;0.03602919,-0.0736357;-0.0007106836;-0.03126146,-0.0821107;-0.3775779;0.01668923,-0.08935506;-0.7184775;0.09565108,-0.09170879;-0.7061368;-0.00274919,-0.003979146;0.3990316;0.02672496,46.48076
+0;0;0,-0.002098616;0.1986652;0.02297211,-0.006185891;0.4978926;0.04325695,0.1037977;0.3726091;-0.004515916,0.2849129;0.2493341;-0.1788734,0.4395083;0.3069044;-0.4051165,-0.1161781;0.3574143;0.01934808,-0.1984785;0.09094915;0.04430756,-0.2094463;-0.1871163;0.01333513,0.06744218;0.009257975;-0.04202193,0.09631613;-0.3661309;0.009451438,0.1057804;-0.7078606;0.08449264,0.0967223;-0.6947629;-0.01365148,-0.07293631;-0.003406752;-0.03269081,-0.09068556;-0.3817216;-0.001661479,-0.09752025;-0.7239645;0.0712982,-0.08122351;-0.7684197;0.006561443,-0.005012334;0.3979792;0.03926459,0;0;0,-0.001609201;0.1993175;0.0164306,-0.005659696;0.4990483;0.02697424,0.1080316;0.3726403;-0.006671835,0.3391122;0.2363151;-0.08677945,0.5640635;0.3006699;-0.2405825,-0.1161088;0.3636478;0.0007516202,-0.1920305;0.09420764;0.006907884,-0.2362493;-0.1814246;-0.01480774,0.07098661;0.005012065;-0.03654834,0.100469;-0.3698908;0.01802846,0.109351;-0.7110736;0.09558759,0.1173918;-0.7607991;0.0357611,-0.07354325;-0.000720179;-0.03147811,-0.08202927;-0.3775604;0.01668197,-0.08919469;-0.718473;0.095595,-0.09112992;-0.7061465;-0.002811812,-0.004313136;0.3990604;0.02620123,46.492
+0;0;0,-0.002098616;0.1986652;0.02297211,-0.006185891;0.4978926;0.04325695,0.1037977;0.3726091;-0.004515916,0.2849129;0.2493341;-0.1788734,0.4395083;0.3069044;-0.4051165,-0.1161781;0.3574143;0.01934808,-0.1984785;0.09094915;0.04430756,-0.2094463;-0.1871163;0.01333513,0.06744218;0.009257975;-0.04202193,0.09631613;-0.3661309;0.009451438,0.1057804;-0.7078606;0.08449264,0.0967223;-0.6947629;-0.01365148,-0.07293631;-0.003406752;-0.03269081,-0.09068556;-0.3817216;-0.001661479,-0.09752025;-0.7239645;0.0712982,-0.08122351;-0.7684197;0.006561443,-0.005012334;0.3979792;0.03926459,0;0;0,-0.001609201;0.1993175;0.0164306,-0.005659696;0.4990483;0.02697424,0.1080316;0.3726403;-0.006671835,0.3391122;0.2363151;-0.08677945,0.5640635;0.3006699;-0.2405825,-0.1161088;0.3636478;0.0007516202,-0.1920305;0.09420764;0.006907884,-0.2362493;-0.1814246;-0.01480774,0.07098661;0.005012065;-0.03654834,0.100469;-0.3698908;0.01802846,0.109351;-0.7110736;0.09558759,0.1173918;-0.7607991;0.0357611,-0.07354325;-0.000720179;-0.03147811,-0.08202927;-0.3775604;0.01668197,-0.08919469;-0.718473;0.095595,-0.09112992;-0.7061465;-0.002811812,-0.004313136;0.3990604;0.02620123,46.50323
+0;0;0,-0.002451859;0.1986622;0.02296326,-0.007441944;0.4978612;0.04349711,0.1033052;0.3728173;-0.003609695,0.2890019;0.2505898;-0.1738364,0.4514711;0.306828;-0.3948365,-0.1159902;0.3559493;0.01678213,-0.2019347;0.09091213;0.04450981,-0.2127943;-0.1871515;0.01348236,0.06762408;0.009257995;-0.04172856,0.09604365;-0.3662084;0.009430934,0.1054181;-0.7079977;0.08421181,0.1162054;-0.7558148;0.0223398,-0.07284112;-0.003354423;-0.03290774,-0.09059523;-0.3816869;-0.002096307,-0.0975958;-0.7238808;0.0710769,-0.08148785;-0.7680762;0.005995624,-0.005876593;0.3979587;0.03937002,0;0;0,-0.001609201;0.1993175;0.0164306,-0.005659696;0.4990483;0.02697424,0.1080316;0.3726403;-0.006671835,0.3391122;0.2363151;-0.08677945,0.5640635;0.3006699;-0.2405825,-0.1161088;0.3636478;0.0007516202,-0.1920305;0.09420764;0.006907884,-0.2362493;-0.1814246;-0.01480774,0.07098661;0.005012065;-0.03654834,0.100469;-0.3698908;0.01802846,0.109351;-0.7110736;0.09558759,0.1173918;-0.7607991;0.0357611,-0.07354325;-0.000720179;-0.03147811,-0.08202927;-0.3775604;0.01668197,-0.08919469;-0.718473;0.095595,-0.09112992;-0.7061465;-0.002811812,-0.004313136;0.3990604;0.02620123,46.52562
+0;0;0,-0.002451859;0.1986622;0.02296326,-0.007441944;0.4978612;0.04349711,0.1033052;0.3728173;-0.003609695,0.2890019;0.2505898;-0.1738364,0.4514711;0.306828;-0.3948365,-0.1159902;0.3559493;0.01678213,-0.2019347;0.09091213;0.04450981,-0.2127943;-0.1871515;0.01348236,0.06762408;0.009257995;-0.04172856,0.09604365;-0.3662084;0.009430934,0.1054181;-0.7079977;0.08421181,0.1162054;-0.7558148;0.0223398,-0.07284112;-0.003354423;-0.03290774,-0.09059523;-0.3816869;-0.002096307,-0.0975958;-0.7238808;0.0710769,-0.08148785;-0.7680762;0.005995624,-0.005876593;0.3979587;0.03937002,0;0;0,-0.001676902;0.1993246;0.0163369,-0.00570096;0.4990619;0.02670591,0.1082434;0.3728257;-0.006079163,0.3420219;0.236947;-0.07877429,0.5722369;0.3001157;-0.2250985,-0.1162104;0.3634536;0.001015821,-0.192843;0.09416747;0.004540988,-0.2367561;-0.1813667;-0.01896599,0.07127716;0.004751122;-0.03601378,0.1007377;-0.3702321;0.01801993,0.1096501;-0.7114413;0.09545964,0.1185103;-0.761335;0.03597439,-0.07333232;-0.0005451936;-0.03196988,-0.08178284;-0.3773437;0.01652231,-0.08905058;-0.7182114;0.09561966,-0.09091635;-0.7058948;-0.002786733,-0.00437354;0.3990732;0.025991,46.54777
+0;0;0,-0.002451859;0.1986622;0.02296326,-0.007441944;0.4978612;0.04349711,0.1033052;0.3728173;-0.003609695,0.2890019;0.2505898;-0.1738364,0.4514711;0.306828;-0.3948365,-0.1159902;0.3559493;0.01678213,-0.2019347;0.09091213;0.04450981,-0.2127943;-0.1871515;0.01348236,0.06762408;0.009257995;-0.04172856,0.09604365;-0.3662084;0.009430934,0.1054181;-0.7079977;0.08421181,0.1162054;-0.7558148;0.0223398,-0.07284112;-0.003354423;-0.03290774,-0.09059523;-0.3816869;-0.002096307,-0.0975958;-0.7238808;0.0710769,-0.08148785;-0.7680762;0.005995624,-0.005876593;0.3979587;0.03937002,0;0;0,-0.001676902;0.1993246;0.0163369,-0.00570096;0.4990619;0.02670591,0.1082434;0.3728257;-0.006079163,0.3420219;0.236947;-0.07877429,0.5722369;0.3001157;-0.2250985,-0.1162104;0.3634536;0.001015821,-0.192843;0.09416747;0.004540988,-0.2367561;-0.1813667;-0.01896599,0.07127716;0.004751122;-0.03601378,0.1007377;-0.3702321;0.01801993,0.1096501;-0.7114413;0.09545964,0.1185103;-0.761335;0.03597439,-0.07333232;-0.0005451936;-0.03196988,-0.08178284;-0.3773437;0.01652231,-0.08905058;-0.7182114;0.09561966,-0.09091635;-0.7058948;-0.002786733,-0.00437354;0.3990732;0.025991,46.55908
+0;0;0,-0.002295148;0.1986886;0.02275046,-0.005652332;0.4979866;0.04206544,0.1049343;0.3729196;-0.003049418,0.2970979;0.2510701;-0.1662238,0.4683672;0.3053404;-0.3809831,-0.1154515;0.3569991;0.01666067,-0.1980811;0.09058911;0.04111613,-0.2103727;-0.1875926;0.01172424,0.06804397;0.009271486;-0.04103727,0.09647673;-0.3663407;0.009033043,0.1059215;-0.7081472;0.08372676,0.1165957;-0.7560341;0.0219231,-0.07273062;-0.003246324;-0.033162,-0.09034863;-0.3815835;-0.002330018,-0.09761725;-0.7237544;0.07092443,-0.08120694;-0.7684811;0.006530076,-0.004819165;0.3980553;0.0384521,0;0;0,-0.001673195;0.1993337;0.01622555,-0.005458023;0.4990857;0.02623333,0.1085892;0.3729082;-0.005711542,0.3449239;0.2383711;-0.07238775,0.58086;0.302154;-0.2090108,-0.1161536;0.3638663;0.0004746169,-0.1925646;0.09451091;0.003475708,-0.2358738;-0.1807688;-0.02382621,0.07146527;0.004589756;-0.03566019,0.1008774;-0.3703927;0.01840505,0.109914;-0.7116693;0.09553239,0.118593;-0.7611043;0.03540947,-0.07312638;-0.0003769216;-0.03244055,-0.08182926;-0.377035;0.01708653,-0.08883008;-0.7179996;0.09578943,-0.09035962;-0.7056859;-0.002622254,-0.0042393;0.3990947;0.0256571,46.57036
+0;0;0,-0.002295148;0.1986886;0.02275046,-0.005652332;0.4979866;0.04206544,0.1049343;0.3729196;-0.003049418,0.2970979;0.2510701;-0.1662238,0.4683672;0.3053404;-0.3809831,-0.1154515;0.3569991;0.01666067,-0.1980811;0.09058911;0.04111613,-0.2103727;-0.1875926;0.01172424,0.06804397;0.009271486;-0.04103727,0.09647673;-0.3663407;0.009033043,0.1059215;-0.7081472;0.08372676,0.1165957;-0.7560341;0.0219231,-0.07273062;-0.003246324;-0.033162,-0.09034863;-0.3815835;-0.002330018,-0.09761725;-0.7237544;0.07092443,-0.08120694;-0.7684811;0.006530076,-0.004819165;0.3980553;0.0384521,0;0;0,-0.001673195;0.1993337;0.01622555,-0.005458023;0.4990857;0.02623333,0.1085892;0.3729082;-0.005711542,0.3449239;0.2383711;-0.07238775,0.58086;0.302154;-0.2090108,-0.1161536;0.3638663;0.0004746169,-0.1925646;0.09451091;0.003475708,-0.2358738;-0.1807688;-0.02382621,0.07146527;0.004589756;-0.03566019,0.1008774;-0.3703927;0.01840505,0.109914;-0.7116693;0.09553239,0.118593;-0.7611043;0.03540947,-0.07312638;-0.0003769216;-0.03244055,-0.08182926;-0.377035;0.01708653,-0.08883008;-0.7179996;0.09578943,-0.09035962;-0.7056859;-0.002622254,-0.0042393;0.3990947;0.0256571,46.59245
+0;0;0,-0.002731554;0.1986893;0.02269547,-0.007952662;0.4979361;0.04244247,0.1040452;0.3732975;-0.0015788,0.2998794;0.2535304;-0.161906,0.4786041;0.3075726;-0.370561,-0.1163873;0.3563343;0.01536673,-0.2005856;0.0905121;0.04084619,-0.212984;-0.187625;0.01108003,0.06831712;0.009223465;-0.04059186,0.09630927;-0.3665113;0.008802615,0.1059011;-0.7083857;0.08316606,0.1172078;-0.7568474;0.02220765,-0.07264855;-0.003092448;-0.03335604,-0.09020029;-0.3814542;-0.002789741,-0.09758145;-0.7235696;0.07071246,-0.08136346;-0.7685609;0.006577551,-0.006288394;0.3980234;0.03860988,0;0;0,-0.001845043;0.1993389;0.01614277,-0.005931773;0.4990926;0.02597917,0.1085046;0.3731296;-0.005051319,0.3467543;0.2380082;-0.06318326,0.5865234;0.3012314;-0.1932355,-0.1163919;0.3639162;-0.0003551636,-0.1920847;0.09435171;0.002014444,-0.2359757;-0.1808615;-0.02502765,0.07163971;0.004510863;-0.03531861,0.1009813;-0.3705309;0.0183727,0.1101317;-0.7118403;0.09534159,0.1182312;-0.7611709;0.03500047,-0.07299553;-0.0002831456;-0.03273487,-0.08166458;-0.3769024;0.01709281,-0.08864807;-0.7178727;0.09577255,-0.08972857;-0.7055635;-0.002644263,-0.004608351;0.3991027;0.02545844,46.60373
+0;0;0,-0.002731554;0.1986893;0.02269547,-0.007952662;0.4979361;0.04244247,0.1040452;0.3732975;-0.0015788,0.2998794;0.2535304;-0.161906,0.4786041;0.3075726;-0.370561,-0.1163873;0.3563343;0.01536673,-0.2005856;0.0905121;0.04084619,-0.212984;-0.187625;0.01108003,0.06831712;0.009223465;-0.04059186,0.09630927;-0.3665113;0.008802615,0.1059011;-0.7083857;0.08316606,0.1172078;-0.7568474;0.02220765,-0.07264855;-0.003092448;-0.03335604,-0.09020029;-0.3814542;-0.002789741,-0.09758145;-0.7235696;0.07071246,-0.08136346;-0.7685609;0.006577551,-0.006288394;0.3980234;0.03860988,0;0;0,-0.001845043;0.1993389;0.01614277,-0.005931773;0.4990926;0.02597917,0.1085046;0.3731296;-0.005051319,0.3467543;0.2380082;-0.06318326,0.5865234;0.3012314;-0.1932355,-0.1163919;0.3639162;-0.0003551636,-0.1920847;0.09435171;0.002014444,-0.2359757;-0.1808615;-0.02502765,0.07163971;0.004510863;-0.03531861,0.1009813;-0.3705309;0.0183727,0.1101317;-0.7118403;0.09534159,0.1182312;-0.7611709;0.03500047,-0.07299553;-0.0002831456;-0.03273487,-0.08166458;-0.3769024;0.01709281,-0.08864807;-0.7178727;0.09577255,-0.08972857;-0.7055635;-0.002644263,-0.004608351;0.3991027;0.02545844,46.62601
+0;0;0,-0.002731554;0.1986893;0.02269547,-0.007952662;0.4979361;0.04244247,0.1040452;0.3732975;-0.0015788,0.2998794;0.2535304;-0.161906,0.4786041;0.3075726;-0.370561,-0.1163873;0.3563343;0.01536673,-0.2005856;0.0905121;0.04084619,-0.212984;-0.187625;0.01108003,0.06831712;0.009223465;-0.04059186,0.09630927;-0.3665113;0.008802615,0.1059011;-0.7083857;0.08316606,0.1172078;-0.7568474;0.02220765,-0.07264855;-0.003092448;-0.03335604,-0.09020029;-0.3814542;-0.002789741,-0.09758145;-0.7235696;0.07071246,-0.08136346;-0.7685609;0.006577551,-0.006288394;0.3980234;0.03860988,0;0;0,-0.002072256;0.199356;0.01590199,-0.006475817;0.4991216;0.02522305,0.1084116;0.3735642;-0.004661616,0.3484211;0.2387034;-0.05573041,0.5924699;0.3018362;-0.1776092,-0.1167579;0.3643796;-0.001840994,-0.1921928;0.09474513;0.0007706836,-0.2354974;-0.1804774;-0.02710926,0.07172943;0.004486543;-0.03513916,0.1008012;-0.370455;0.0193925,0.1099726;-0.7119845;0.09537573,0.11806;-0.7610589;0.03469759,-0.07270251;-0.0001974326;-0.03338122,-0.08118809;-0.3767199;0.01720349,-0.08802953;-0.7177147;0.09578958,-0.08852723;-0.7054164;-0.002629936,-0.005051015;0.3991324;0.02487651,46.6485
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,-0.002072256;0.199356;0.01590199,-0.006475817;0.4991216;0.02522305,0.1084116;0.3735642;-0.004661616,0.3484211;0.2387034;-0.05573041,0.5924699;0.3018362;-0.1776092,-0.1167579;0.3643796;-0.001840994,-0.1921928;0.09474513;0.0007706836,-0.2354974;-0.1804774;-0.02710926,0.07172943;0.004486543;-0.03513916,0.1008012;-0.370455;0.0193925,0.1099726;-0.7119845;0.09537573,0.11806;-0.7610589;0.03469759,-0.07270251;-0.0001974326;-0.03338122,-0.08118809;-0.3767199;0.01720349,-0.08802953;-0.7177147;0.09578958,-0.08852723;-0.7054164;-0.002629936,-0.005051015;0.3991324;0.02487651,46.65957
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,-0.002116041;0.1993715;0.0157009,-0.006449527;0.4991489;0.0246723,0.1086872;0.3738439;-0.004212532,0.3506848;0.2402925;-0.04894723,0.5997385;0.3008417;-0.1616682,-0.1167983;0.3648604;-0.002724975,-0.1921108;0.09518966;-0.0003356712,-0.2346439;-0.180198;-0.0277685,0.07177157;0.0045002;-0.03505125,0.1008242;-0.3704963;0.01911104,0.1099774;-0.7119742;0.09532817,0.1188963;-0.7604589;0.03400443,-0.07252046;-0.000176219;-0.033775,-0.08112931;-0.376698;0.01679419,-0.08782329;-0.7175928;0.0958252,-0.08788083;-0.705307;-0.002593331,-0.005058954;0.3991588;0.02444002,46.67085
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,-0.002116041;0.1993715;0.0157009,-0.006449527;0.4991489;0.0246723,0.1086872;0.3738439;-0.004212532,0.3506848;0.2402925;-0.04894723,0.5997385;0.3008417;-0.1616682,-0.1167983;0.3648604;-0.002724975,-0.1921108;0.09518966;-0.0003356712,-0.2346439;-0.180198;-0.0277685,0.07177157;0.0045002;-0.03505125,0.1008242;-0.3704963;0.01911104,0.1099774;-0.7119742;0.09532817,0.1188963;-0.7604589;0.03400443,-0.07252046;-0.000176219;-0.033775,-0.08112931;-0.376698;0.01679419,-0.08782329;-0.7175928;0.0958252,-0.08788083;-0.705307;-0.002593331,-0.005058954;0.3991588;0.02444002,46.68191
+0;0;0,-0.003464546;0.1986704;0.02276142,-0.01158207;0.4977983;0.04336764,0.1020135;0.3736079;-0.0001081675,0.3027271;0.2546466;-0.1549055,0.488062;0.3068396;-0.3581957,-0.1186959;0.3565634;0.01467701,-0.2012106;0.09011811;0.03913673,-0.2134379;-0.1881028;0.01009149,0.06852453;0.009358293;-0.04020958,0.09607042;-0.3665134;0.008387674,0.1057835;-0.7083788;0.08277634,0.116901;-0.756937;0.02190752,-0.07248241;-0.003132892;-0.03371177,-0.09032003;-0.3814841;-0.003180347,-0.09730631;-0.7236321;0.07020839,-0.08335987;-0.7679696;0.004791021,-0.008742399;0.3979274;0.03915628,0;0;0,-0.002180678;0.1993811;0.01557068,-0.006485663;0.4991613;0.02447794,0.1087839;0.373926;-0.003875146,0.352007;0.2407635;-0.04273732,0.6055012;0.300216;-0.1457231,-0.1165928;0.3651408;-0.00426154,-0.1921206;0.09554052;-0.0009113897,-0.2338798;-0.1799421;-0.0285792,0.07190061;0.004564844;-0.03477735,0.1010821;-0.3704919;0.01889646,0.1100776;-0.7119451;0.0952429,0.1192662;-0.7605077;0.03405882,-0.07206122;-0.0004084665;-0.03474211,-0.08074851;-0.3767867;0.01687161,-0.08735611;-0.7176336;0.09611635,-0.08683085;-0.705352;-0.002300031,-0.005108286;0.399171;0.02425422,46.70425
+0;0;0,-0.003377436;0.1987088;0.02243671,-0.009994818;0.4979637;0.04158145,0.1032318;0.3737403;-0.0001810119,0.3079049;0.2556783;-0.1504151,0.5015829;0.3070701;-0.3459854,-0.1178569;0.356615;0.01370488,-0.2016134;0.09058714;0.03848455,-0.2140624;-0.1876436;0.009628385,0.06873062;0.009275111;-0.03987573,0.09610439;-0.3666812;0.00816071,0.1053026;-0.708468;0.08297512,0.0990008;-0.69539;-0.01538103,-0.07237878;-0.002980745;-0.0339474,-0.09018011;-0.381332;-0.00339458,-0.09722798;-0.7234759;0.07000721,-0.08245358;-0.7681492;0.00515642,-0.007895021;0.398049;0.03802793,0;0;0,-0.002180678;0.1993811;0.01557068,-0.006485663;0.4991613;0.02447794,0.1087839;0.373926;-0.003875146,0.352007;0.2407635;-0.04273732,0.6055012;0.300216;-0.1457231,-0.1165928;0.3651408;-0.00426154,-0.1921206;0.09554052;-0.0009113897,-0.2338798;-0.1799421;-0.0285792,0.07190061;0.004564844;-0.03477735,0.1010821;-0.3704919;0.01889646,0.1100776;-0.7119451;0.0952429,0.1192662;-0.7605077;0.03405882,-0.07206122;-0.0004084665;-0.03474211,-0.08074851;-0.3767867;0.01687161,-0.08735611;-0.7176336;0.09611635,-0.08683085;-0.705352;-0.002300031,-0.005108286;0.399171;0.02425422,46.72732
+0;0;0,-0.003377436;0.1987088;0.02243671,-0.009994818;0.4979637;0.04158145,0.1032318;0.3737403;-0.0001810119,0.3079049;0.2556783;-0.1504151,0.5015829;0.3070701;-0.3459854,-0.1178569;0.356615;0.01370488,-0.2016134;0.09058714;0.03848455,-0.2140624;-0.1876436;0.009628385,0.06873062;0.009275111;-0.03987573,0.09610439;-0.3666812;0.00816071,0.1053026;-0.708468;0.08297512,0.0990008;-0.69539;-0.01538103,-0.07237878;-0.002980745;-0.0339474,-0.09018011;-0.381332;-0.00339458,-0.09722798;-0.7234759;0.07000721,-0.08245358;-0.7681492;0.00515642,-0.007895021;0.398049;0.03802793,0;0;0,-0.002211263;0.1993953;0.01538332,-0.006422116;0.4991872;0.02392964,0.1090129;0.3738573;-0.003360713,0.3532561;0.2404945;-0.03433936,0.6095313;0.2977001;-0.1315534,-0.1163142;0.3648422;-0.00529586,-0.1920803;0.09531775;-0.001289513,-0.2331439;-0.1803246;-0.0284017,0.07198889;0.00453194;-0.03459857,0.1012083;-0.3705745;0.01870574,0.1101427;-0.7119371;0.09546329,0.1196975;-0.76076;0.03467131,-0.07186226;-0.0003299395;-0.0351526,-0.08060496;-0.3766479;0.01688898,-0.08741819;-0.7174532;0.09629491,-0.08639106;-0.7051886;-0.002114445,-0.005086544;0.3991962;0.02382844,46.74038
+0;0;0,-0.003377436;0.1987088;0.02243671,-0.009994818;0.4979637;0.04158145,0.1032318;0.3737403;-0.0001810119,0.3079049;0.2556783;-0.1504151,0.5015829;0.3070701;-0.3459854,-0.1178569;0.356615;0.01370488,-0.2016134;0.09058714;0.03848455,-0.2140624;-0.1876436;0.009628385,0.06873062;0.009275111;-0.03987573,0.09610439;-0.3666812;0.00816071,0.1053026;-0.708468;0.08297512,0.0990008;-0.69539;-0.01538103,-0.07237878;-0.002980745;-0.0339474,-0.09018011;-0.381332;-0.00339458,-0.09722798;-0.7234759;0.07000721,-0.08245358;-0.7681492;0.00515642,-0.007895021;0.398049;0.03802793,0;0;0,-0.002211263;0.1993953;0.01538332,-0.006422116;0.4991872;0.02392964,0.1090129;0.3738573;-0.003360713,0.3532561;0.2404945;-0.03433936,0.6095313;0.2977001;-0.1315534,-0.1163142;0.3648422;-0.00529586,-0.1920803;0.09531775;-0.001289513,-0.2331439;-0.1803246;-0.0284017,0.07198889;0.00453194;-0.03459857,0.1012083;-0.3705745;0.01870574,0.1101427;-0.7119371;0.09546329,0.1196975;-0.76076;0.03467131,-0.07186226;-0.0003299395;-0.0351526,-0.08060496;-0.3766479;0.01688898,-0.08741819;-0.7174532;0.09629491,-0.08639106;-0.7051886;-0.002114445,-0.005086544;0.3991962;0.02382844,46.75245
+0;0;0,-0.003213587;0.1987486;0.02210586,-0.00841919;0.4981054;0.04001085,0.1045554;0.3735779;-0.0001199171,0.3151231;0.2544181;-0.1410533,0.5127046;0.3052398;-0.3328311,-0.1173189;0.3573785;0.01358687,-0.1994596;0.0908851;0.03876975,-0.2115989;-0.1873016;0.00936226,0.06901365;0.009326063;-0.03937181,0.09606337;-0.3667422;0.007967193,0.1052392;-0.7085495;0.08269064,0.09932312;-0.6955001;-0.01568455,-0.07226717;-0.002948117;-0.03418718,-0.08992513;-0.3813019;-0.003583517,-0.09721716;-0.7234466;0.0697908,-0.08263834;-0.7682131;0.005003169,-0.006902913;0.3981645;0.0369279,0;0;0,-0.002272904;0.1994085;0.01520165,-0.006410882;0.4992071;0.02356088,0.1091763;0.373932;-0.002944328,0.3541219;0.240254;-0.02600648,0.6150953;0.2921154;-0.1132034,-0.1162299;0.3651826;-0.006376507,-0.1917845;0.09561172;-0.001572561,-0.2328165;-0.180089;-0.02813338,0.07209085;0.004478832;-0.03439256,0.1014285;-0.3706387;0.01876882,0.1102715;-0.7120271;0.09542246,0.1199473;-0.7606589;0.03440257,-0.0714993;0.0001410484;-0.03588636,-0.08018988;-0.3760641;0.01697303,-0.08689576;-0.7168381;0.09652258,-0.08539449;-0.7045841;-0.001878783,-0.005107024;0.3992156;0.02351416,46.77061
+0;0;0,-0.003213587;0.1987486;0.02210586,-0.00841919;0.4981054;0.04001085,0.1045554;0.3735779;-0.0001199171,0.3151231;0.2544181;-0.1410533,0.5127046;0.3052398;-0.3328311,-0.1173189;0.3573785;0.01358687,-0.1994596;0.0908851;0.03876975,-0.2115989;-0.1873016;0.00936226,0.06901365;0.009326063;-0.03937181,0.09606337;-0.3667422;0.007967193,0.1052392;-0.7085495;0.08269064,0.09932312;-0.6955001;-0.01568455,-0.07226717;-0.002948117;-0.03418718,-0.08992513;-0.3813019;-0.003583517,-0.09721716;-0.7234466;0.0697908,-0.08263834;-0.7682131;0.005003169,-0.006902913;0.3981645;0.0369279,0;0;0,-0.002272904;0.1994085;0.01520165,-0.006410882;0.4992071;0.02356088,0.1091763;0.373932;-0.002944328,0.3541219;0.240254;-0.02600648,0.6150953;0.2921154;-0.1132034,-0.1162299;0.3651826;-0.006376507,-0.1917845;0.09561172;-0.001572561,-0.2328165;-0.180089;-0.02813338,0.07209085;0.004478832;-0.03439256,0.1014285;-0.3706387;0.01876882,0.1102715;-0.7120271;0.09542246,0.1199473;-0.7606589;0.03440257,-0.0714993;0.0001410484;-0.03588636,-0.08018988;-0.3760641;0.01697303,-0.08689576;-0.7168381;0.09652258,-0.08539449;-0.7045841;-0.001878783,-0.005107024;0.3992156;0.02351416,46.78186
+0;0;0,-0.003213587;0.1987486;0.02210586,-0.00841919;0.4981054;0.04001085,0.1045554;0.3735779;-0.0001199171,0.3151231;0.2544181;-0.1410533,0.5127046;0.3052398;-0.3328311,-0.1173189;0.3573785;0.01358687,-0.1994596;0.0908851;0.03876975,-0.2115989;-0.1873016;0.00936226,0.06901365;0.009326063;-0.03937181,0.09606337;-0.3667422;0.007967193,0.1052392;-0.7085495;0.08269064,0.09932312;-0.6955001;-0.01568455,-0.07226717;-0.002948117;-0.03418718,-0.08992513;-0.3813019;-0.003583517,-0.09721716;-0.7234466;0.0697908,-0.08263834;-0.7682131;0.005003169,-0.006902913;0.3981645;0.0369279,0;0;0,-0.002235197;0.1994278;0.0149515,-0.006072361;0.4992423;0.0228616,0.1095335;0.3737102;-0.002628513,0.3550121;0.2401067;-0.01966882,0.6196166;0.2851481;-0.09939139,-0.1160593;0.365192;-0.006714661,-0.1912674;0.09551734;-0.002318592,-0.2319702;-0.180367;-0.02744062,0.07215945;0.004498994;-0.03424577,0.101521;-0.3706316;0.01880985,0.1103568;-0.7119845;0.09562243,0.120162;-0.7605792;0.03457552,-0.07125113;0.000223728;-0.03637618,-0.07991774;-0.3758979;0.01707864,-0.08657824;-0.7166708;0.09663638,-0.08482245;-0.7044361;-0.001757279,-0.004888751;0.3992494;0.02297022,46.79331
+0;0;0,-0.003803304;0.1987524;0.0219781,-0.01147859;0.4980372;0.0402527,0.1030287;0.3739438;0.001100142,0.3157898;0.2551818;-0.136843,0.5242625;0.3043765;-0.3171732,-0.1191834;0.3572914;0.01308719,-0.2002938;0.09042528;0.03765517,-0.2117792;-0.1878478;0.008807423,0.06929592;0.009402937;-0.03885434,0.09586778;-0.3668127;0.007575568,0.1047423;-0.7085817;0.08251017,0.09925255;-0.6955248;-0.01589103,-0.07212;-0.002936316;-0.03449758,-0.08991809;-0.3812853;-0.003915213,-0.0970424;-0.723462;0.06932621,-0.08278318;-0.7687462;0.005069077,-0.008901503;0.3981242;0.03697389,0;0;0,-0.002235197;0.1994278;0.0149515,-0.006072361;0.4992423;0.0228616,0.1095335;0.3737102;-0.002628513,0.3550121;0.2401067;-0.01966882,0.6196166;0.2851481;-0.09939139,-0.1160593;0.365192;-0.006714661,-0.1912674;0.09551734;-0.002318592,-0.2319702;-0.180367;-0.02744062,0.07215945;0.004498994;-0.03424577,0.101521;-0.3706316;0.01880985,0.1103568;-0.7119845;0.09562243,0.120162;-0.7605792;0.03457552,-0.07125113;0.000223728;-0.03637618,-0.07991774;-0.3758979;0.01707864,-0.08657824;-0.7166708;0.09663638,-0.08482245;-0.7044361;-0.001757279,-0.004888751;0.3992494;0.02297022,46.81512
+0;0;0,-0.003803304;0.1987524;0.0219781,-0.01147859;0.4980372;0.0402527,0.1030287;0.3739438;0.001100142,0.3157898;0.2551818;-0.136843,0.5242625;0.3043765;-0.3171732,-0.1191834;0.3572914;0.01308719,-0.2002938;0.09042528;0.03765517,-0.2117792;-0.1878478;0.008807423,0.06929592;0.009402937;-0.03885434,0.09586778;-0.3668127;0.007575568,0.1047423;-0.7085817;0.08251017,0.09925255;-0.6955248;-0.01589103,-0.07212;-0.002936316;-0.03449758,-0.08991809;-0.3812853;-0.003915213,-0.0970424;-0.723462;0.06932621,-0.08278318;-0.7687462;0.005069077,-0.008901503;0.3981242;0.03697389,0;0;0,-0.002235197;0.1994278;0.0149515,-0.006072361;0.4992423;0.0228616,0.1095335;0.3737102;-0.002628513,0.3550121;0.2401067;-0.01966882,0.6196166;0.2851481;-0.09939139,-0.1160593;0.365192;-0.006714661,-0.1912674;0.09551734;-0.002318592,-0.2319702;-0.180367;-0.02744062,0.07215945;0.004498994;-0.03424577,0.101521;-0.3706316;0.01880985,0.1103568;-0.7119845;0.09562243,0.120162;-0.7605792;0.03457552,-0.07125113;0.000223728;-0.03637618,-0.07991774;-0.3758979;0.01707864,-0.08657824;-0.7166708;0.09663638,-0.08482245;-0.7044361;-0.001757279,-0.004888751;0.3992494;0.02297022,46.82634
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,-0.001768738;0.1994848;0.0142367,-0.002710678;0.499375;0.01941801,0.1117828;0.37259;-0.003201673,0.3572229;0.2382844;-0.01420925,0.624877;0.2749702;-0.08779907,-0.11422;0.3647813;-0.00727538,-0.1891985;0.09505266;-0.002306478,-0.2286777;-0.1811077;-0.02632428,0.072257;0.00448631;-0.03404114,0.1018703;-0.3706547;0.01880059,0.1107001;-0.712005;0.09562534,0.1206481;-0.7605381;0.03452226,-0.07110036;0.0003401384;-0.03666909,-0.07870325;-0.375909;0.01604522,-0.0861795;-0.7165034;0.09629219,-0.0841362;-0.7043655;-0.002078392,-0.002744612;0.3993818;0.02058221,46.84855
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,-0.001863476;0.1994879;0.01418136,-0.003227088;0.4993754;0.01953021,0.1116293;0.3727463;-0.002681751,0.3559136;0.2360048;-0.007869246,0.6257939;0.2661545;-0.07610118,-0.1143641;0.3649856;-0.008088082,-0.1891542;0.09522158;-0.002269193,-0.2272691;-0.1813481;-0.02363347,0.07236981;0.004490658;-0.03380007,0.1021965;-0.3706744;0.01875037,0.1111419;-0.7120603;0.09540328,0.1205035;-0.76083;0.03451237,-0.07092954;0.0003573468;-0.03699827,-0.07848137;-0.3758412;0.0160826,-0.08592433;-0.7163864;0.09654096,-0.08349077;-0.7042482;-0.00182081,-0.003037049;0.3993813;0.02060353,46.85976
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,-0.001863476;0.1994879;0.01418136,-0.003227088;0.4993754;0.01953021,0.1116293;0.3727463;-0.002681751,0.3559136;0.2360048;-0.007869246,0.6257939;0.2661545;-0.07610118,-0.1143641;0.3649856;-0.008088082,-0.1891542;0.09522158;-0.002269193,-0.2272691;-0.1813481;-0.02363347,0.07236981;0.004490658;-0.03380007,0.1021965;-0.3706744;0.01875037,0.1111419;-0.7120603;0.09540328,0.1205035;-0.76083;0.03451237,-0.07092954;0.0003573468;-0.03699827,-0.07848137;-0.3758412;0.0160826,-0.08592433;-0.7163864;0.09654096,-0.08349077;-0.7042482;-0.00182081,-0.003037049;0.3993813;0.02060353,46.87175
+0;0;0,-0.003807987;0.1987992;0.02154976,-0.01018903;0.4981666;0.03889589,0.1041078;0.3739494;0.001354828,0.3212571;0.2565229;-0.1307708,0.5366308;0.3050688;-0.3029843,-0.1189665;0.3581998;0.01306231,-0.1948249;0.08923534;0.0304867,-0.2093621;-0.1894021;0.007037684,0.069582;0.009361285;-0.03834986,0.09547402;-0.3670162;0.0071426,0.1042731;-0.7088205;0.08192515,0.1161966;-0.7571381;0.02089909,-0.07195354;-0.002860891;-0.03484973,-0.08998624;-0.3812048;-0.004341327,-0.09715818;-0.7233278;0.06914584,-0.08217103;-0.7685654;0.004999921,-0.008188689;0.3982286;0.03599618,0;0;0,-0.001863476;0.1994879;0.01418136,-0.003227088;0.4993754;0.01953021,0.1116293;0.3727463;-0.002681751,0.3559136;0.2360048;-0.007869246,0.6257939;0.2661545;-0.07610118,-0.1143641;0.3649856;-0.008088082,-0.1891542;0.09522158;-0.002269193,-0.2272691;-0.1813481;-0.02363347,0.07236981;0.004490658;-0.03380007,0.1021965;-0.3706744;0.01875037,0.1111419;-0.7120603;0.09540328,0.1205035;-0.76083;0.03451237,-0.07092954;0.0003573468;-0.03699827,-0.07848137;-0.3758412;0.0160826,-0.08592433;-0.7163864;0.09654096,-0.08349077;-0.7042482;-0.00182081,-0.003037049;0.3993813;0.02060353,46.89321
+0;0;0,-0.004527621;0.1988056;0.02135041,-0.01306466;0.4980882;0.03928569,0.1024677;0.3741945;0.002357945,0.323813;0.2583033;-0.1240363,0.5445682;0.3060427;-0.2895297,-0.1207099;0.3579128;0.01248417,-0.195633;0.08866626;0.02959611,-0.2097854;-0.1899538;0.005709348,0.06990453;0.009470521;-0.03773149,0.09525181;-0.3671227;0.006258193,0.1040904;-0.7089286;0.0810284,0.1159013;-0.7572736;0.02001553,-0.07168932;-0.002772779;-0.03539706,-0.08991684;-0.3811198;-0.005044907,-0.09710397;-0.7232325;0.06848893,-0.08188275;-0.7686702;0.004633866,-0.01016342;0.398181;0.03610507,0;0;0,-0.002153759;0.1995027;0.01393005,-0.004476857;0.4993892;0.01905338,0.1110869;0.3732657;-0.002216354,0.3539953;0.2340187;0.0001855565,0.6261203;0.2569259;-0.06164664,-0.1154256;0.3645957;-0.00709804,-0.1912381;0.09508514;-0.003031994,-0.228553;-0.1816408;-0.02377684,0.07241755;0.004605914;-0.0336821,0.102116;-0.3705174;0.01923766,0.1112436;-0.71196;0.09561602,0.1205798;-0.7607031;0.03468697,-0.07088622;0.000333812;-0.03708141,-0.07764579;-0.3759283;0.01565488,-0.0858108;-0.7163817;0.0964314,-0.08368769;-0.7042576;-0.001934975,-0.003870893;0.3993975;0.02018536,46.90456
+0;0;0,-0.004527621;0.1988056;0.02135041,-0.01306466;0.4980882;0.03928569,0.1024677;0.3741945;0.002357945,0.323813;0.2583033;-0.1240363,0.5445682;0.3060427;-0.2895297,-0.1207099;0.3579128;0.01248417,-0.195633;0.08866626;0.02959611,-0.2097854;-0.1899538;0.005709348,0.06990453;0.009470521;-0.03773149,0.09525181;-0.3671227;0.006258193,0.1040904;-0.7089286;0.0810284,0.1159013;-0.7572736;0.02001553,-0.07168932;-0.002772779;-0.03539706,-0.08991684;-0.3811198;-0.005044907,-0.09710397;-0.7232325;0.06848893,-0.08188275;-0.7686702;0.004633866,-0.01016342;0.398181;0.03610507,0;0;0,-0.002153759;0.1995027;0.01393005,-0.004476857;0.4993892;0.01905338,0.1110869;0.3732657;-0.002216354,0.3539953;0.2340187;0.0001855565,0.6261203;0.2569259;-0.06164664,-0.1154256;0.3645957;-0.00709804,-0.1912381;0.09508514;-0.003031994,-0.228553;-0.1816408;-0.02377684,0.07241755;0.004605914;-0.0336821,0.102116;-0.3705174;0.01923766,0.1112436;-0.71196;0.09561602,0.1205798;-0.7607031;0.03468697,-0.07088622;0.000333812;-0.03708141,-0.07764579;-0.3759283;0.01565488,-0.0858108;-0.7163817;0.0964314,-0.08368769;-0.7042576;-0.001934975,-0.003870893;0.3993975;0.02018536,46.92677
+0;0;0,-0.004527621;0.1988056;0.02135041,-0.01306466;0.4980882;0.03928569,0.1024677;0.3741945;0.002357945,0.323813;0.2583033;-0.1240363,0.5445682;0.3060427;-0.2895297,-0.1207099;0.3579128;0.01248417,-0.195633;0.08866626;0.02959611,-0.2097854;-0.1899538;0.005709348,0.06990453;0.009470521;-0.03773149,0.09525181;-0.3671227;0.006258193,0.1040904;-0.7089286;0.0810284,0.1159013;-0.7572736;0.02001553,-0.07168932;-0.002772779;-0.03539706,-0.08991684;-0.3811198;-0.005044907,-0.09710397;-0.7232325;0.06848893,-0.08188275;-0.7686702;0.004633866,-0.01016342;0.398181;0.03610507,0;0;0,-0.002220077;0.1995123;0.01378102,-0.004729219;0.4993993;0.01882855,0.1110495;0.3734689;-0.001947839,0.3523731;0.2316059;0.004199277,0.6264068;0.2483673;-0.0507973,-0.1154692;0.3652583;-0.0086377,-0.190903;0.09567645;-0.002690463,-0.2267609;-0.1813902;-0.02135251,0.07249143;0.004666979;-0.03351434,0.1022;-0.370491;0.01915309,0.1113602;-0.7119117;0.09562511,0.120276;-0.7605318;0.03447451,-0.07076623;0.0002365366;-0.03731066,-0.07719555;-0.3760328;0.01541559,-0.0856255;-0.7164375;0.09636968,-0.08293081;-0.7043197;-0.001981556,-0.004044984;0.3994082;0.01997074,46.93815
+0;0;0,-0.005041274;0.1988107;0.02118767,-0.01452018;0.4980545;0.03931553,0.101559;0.3743369;0.002913501,0.327511;0.2600977;-0.1166486,0.5540771;0.3068616;-0.2743854,-0.1216741;0.3578832;0.01169158,-0.1958381;0.08844909;0.02915563,-0.2097913;-0.1901756;0.00520575,0.07021698;0.009509155;-0.03713692,0.09518838;-0.3672506;0.005624671,0.1040367;-0.7090915;0.08023302,0.1158321;-0.7569469;0.01859355,-0.07146052;-0.002655048;-0.03586563,-0.08981472;-0.3809892;-0.00542829,-0.09703236;-0.7231452;0.06790048,-0.08163086;-0.7687843;0.004327409,-0.01128969;0.3981602;0.03604406,0;0;0,-0.002220077;0.1995123;0.01378102,-0.004729219;0.4993993;0.01882855,0.1110495;0.3734689;-0.001947839,0.3523731;0.2316059;0.004199277,0.6264068;0.2483673;-0.0507973,-0.1154692;0.3652583;-0.0086377,-0.190903;0.09567645;-0.002690463,-0.2267609;-0.1813902;-0.02135251,0.07249143;0.004666979;-0.03351434,0.1022;-0.370491;0.01915309,0.1113602;-0.7119117;0.09562511,0.120276;-0.7605318;0.03447451,-0.07076623;0.0002365366;-0.03731066,-0.07719555;-0.3760328;0.01541559,-0.0856255;-0.7164375;0.09636968,-0.08293081;-0.7043197;-0.001981556,-0.004044984;0.3994082;0.01997074,46.96032
+0;0;0,-0.005041274;0.1988107;0.02118767,-0.01452018;0.4980545;0.03931553,0.101559;0.3743369;0.002913501,0.327511;0.2600977;-0.1166486,0.5540771;0.3068616;-0.2743854,-0.1216741;0.3578832;0.01169158,-0.1958381;0.08844909;0.02915563,-0.2097913;-0.1901756;0.00520575,0.07021698;0.009509155;-0.03713692,0.09518838;-0.3672506;0.005624671,0.1040367;-0.7090915;0.08023302,0.1158321;-0.7569469;0.01859355,-0.07146052;-0.002655048;-0.03586563,-0.08981472;-0.3809892;-0.00542829,-0.09703236;-0.7231452;0.06790048,-0.08163086;-0.7687843;0.004327409,-0.01128969;0.3981602;0.03604406,0;0;0,-0.002268515;0.1995261;0.01357121,-0.00485162;0.4994131;0.01864863,0.1110946;0.3736353;-0.001604851,0.3504256;0.2287285;0.009472484,0.6253538;0.2390614;-0.04256335,-0.115118;0.3652647;-0.01052509,-0.1906144;0.09576389;-0.002179743,-0.225933;-0.181435;-0.01988171,0.07259032;0.004726653;-0.03329121,0.1023275;-0.3704295;0.0193736,0.1114558;-0.7118336;0.09592363,0.1208943;-0.7606879;0.03515434,-0.07055648;0.0002867052;-0.03770546,-0.07683758;-0.3758735;0.01581134,-0.08525926;-0.7162447;0.09690693,-0.08188643;-0.7041352;-0.001421876,-0.004138923;0.3994218;0.01975596,46.97161
+0;0;0,-0.005041274;0.1988107;0.02118767,-0.01452018;0.4980545;0.03931553,0.101559;0.3743369;0.002913501,0.327511;0.2600977;-0.1166486,0.5540771;0.3068616;-0.2743854,-0.1216741;0.3578832;0.01169158,-0.1958381;0.08844909;0.02915563,-0.2097913;-0.1901756;0.00520575,0.07021698;0.009509155;-0.03713692,0.09518838;-0.3672506;0.005624671,0.1040367;-0.7090915;0.08023302,0.1158321;-0.7569469;0.01859355,-0.07146052;-0.002655048;-0.03586563,-0.08981472;-0.3809892;-0.00542829,-0.09703236;-0.7231452;0.06790048,-0.08163086;-0.7687843;0.004327409,-0.01128969;0.3981602;0.03604406,0;0;0,-0.002327764;0.1995436;0.01330127,-0.005090486;0.499432;0.01825554,0.1110309;0.3736407;-0.001383051,0.3481953;0.2256214;0.01421786,0.6239561;0.2281312;-0.03425524,-0.1151764;0.3654779;-0.01151991,-0.1904459;0.09594911;-0.002101037,-0.2246887;-0.1814649;-0.01849957,0.07270622;0.004806874;-0.03302576,0.1024024;-0.3703618;0.01957242,0.1113401;-0.711744;0.09624304,0.1209343;-0.7607456;0.03568986,-0.07025739;0.0003136935;-0.03825965,-0.0766447;-0.3756572;0.01655894,-0.08506521;-0.7160305;0.09764609,-0.08130318;-0.7039319;-0.0006666183,-0.004308613;0.3994414;0.01938019,46.99381
+0;0;0,-0.005404504;0.1988163;0.0210446,-0.01523735;0.4980455;0.03923628,0.1011118;0.3745227;0.003218781,0.3302986;0.2615668;-0.1112992,0.5630432;0.3072277;-0.2601113,-0.1222379;0.3580176;0.01114124,-0.1960101;0.08847991;0.02866464,-0.2098443;-0.1901643;0.004873378,0.07051639;0.009613414;-0.03653794,0.09520613;-0.3672954;0.005057286,0.1039867;-0.7091686;0.07952623,0.1159581;-0.7566198;0.01741344,-0.07126015;-0.002627594;-0.03626413,-0.08951721;-0.3809482;-0.005601341,-0.097085;-0.7231529;0.06746459,-0.08263443;-0.7695312;0.004555628,-0.01189963;0.398156;0.03592792,0;0;0,-0.002327764;0.1995436;0.01330127,-0.005090486;0.499432;0.01825554,0.1110309;0.3736407;-0.001383051,0.3481953;0.2256214;0.01421786,0.6239561;0.2281312;-0.03425524,-0.1151764;0.3654779;-0.01151991,-0.1904459;0.09594911;-0.002101037,-0.2246887;-0.1814649;-0.01849957,0.07270622;0.004806874;-0.03302576,0.1024024;-0.3703618;0.01957242,0.1113401;-0.711744;0.09624304,0.1209343;-0.7607456;0.03568986,-0.07025739;0.0003136935;-0.03825965,-0.0766447;-0.3756572;0.01655894,-0.08506521;-0.7160305;0.09764609,-0.08130318;-0.7039319;-0.0006666183,-0.004308613;0.3994414;0.01938019,47.00525
+0;0;0,-0.005404504;0.1988163;0.0210446,-0.01523735;0.4980455;0.03923628,0.1011118;0.3745227;0.003218781,0.3302986;0.2615668;-0.1112992,0.5630432;0.3072277;-0.2601113,-0.1222379;0.3580176;0.01114124,-0.1960101;0.08847991;0.02866464,-0.2098443;-0.1901643;0.004873378,0.07051639;0.009613414;-0.03653794,0.09520613;-0.3672954;0.005057286,0.1039867;-0.7091686;0.07952623,0.1159581;-0.7566198;0.01741344,-0.07126015;-0.002627594;-0.03626413,-0.08951721;-0.3809482;-0.005601341,-0.097085;-0.7231529;0.06746459,-0.08263443;-0.7695312;0.004555628,-0.01189963;0.398156;0.03592792,0;0;0,-0.002327764;0.1995436;0.01330127,-0.005090486;0.499432;0.01825554,0.1110309;0.3736407;-0.001383051,0.3481953;0.2256214;0.01421786,0.6239561;0.2281312;-0.03425524,-0.1151764;0.3654779;-0.01151991,-0.1904459;0.09594911;-0.002101037,-0.2246887;-0.1814649;-0.01849957,0.07270622;0.004806874;-0.03302576,0.1024024;-0.3703618;0.01957242,0.1113401;-0.711744;0.09624304,0.1209343;-0.7607456;0.03568986,-0.07025739;0.0003136935;-0.03825965,-0.0766447;-0.3756572;0.01655894,-0.08506521;-0.7160305;0.09764609,-0.08130318;-0.7039319;-0.0006666183,-0.004308613;0.3994414;0.01938019,47.02741
+0;0;0,-0.005404504;0.1988163;0.0210446,-0.01523735;0.4980455;0.03923628,0.1011118;0.3745227;0.003218781,0.3302986;0.2615668;-0.1112992,0.5630432;0.3072277;-0.2601113,-0.1222379;0.3580176;0.01114124,-0.1960101;0.08847991;0.02866464,-0.2098443;-0.1901643;0.004873378,0.07051639;0.009613414;-0.03653794,0.09520613;-0.3672954;0.005057286,0.1039867;-0.7091686;0.07952623,0.1159581;-0.7566198;0.01741344,-0.07126015;-0.002627594;-0.03626413,-0.08951721;-0.3809482;-0.005601341,-0.097085;-0.7231529;0.06746459,-0.08263443;-0.7695312;0.004555628,-0.01189963;0.398156;0.03592792,0;0;0,-0.002384678;0.1995585;0.01306516,-0.005242268;0.4994519;0.01764376,0.1111648;0.3741053;-0.001023378,0.3455193;0.2221228;0.01845153,0.6217589;0.2173353;-0.02703168,-0.1154259;0.3659289;-0.01198009,-0.1904774;0.09634596;-0.002371575,-0.2239819;-0.1812302;-0.01750116,0.07280369;0.004772722;-0.03281529,0.1026127;-0.3704089;0.01962698,0.1115262;-0.7117788;0.09635466,0.1210854;-0.7606218;0.03558949,-0.07013;0.00042714;-0.03849156,-0.07627994;-0.3754645;0.0168948,-0.08481231;-0.7158508;0.09791563,-0.08078789;-0.7037683;-0.0003837496,-0.004421304;0.3994631;0.0188976,47.03913
+0;0;0,-0.005245242;0.1988924;0.02035466,-0.01259905;0.4982942;0.03658742,0.1031056;0.3746422;0.003311418,0.3365016;0.2625605;-0.1032908,0.5743511;0.3062578;-0.2444225,-0.1212268;0.3589613;0.01034706,-0.1946406;0.08933845;0.02806567,-0.2083664;-0.1892908;0.004038012,0.07091384;0.009534472;-0.03578157,0.09548162;-0.3675783;0.003997564,0.1041232;-0.709514;0.07819528,0.1160046;-0.7569395;0.0160331,-0.0708775;-0.002456018;-0.03701821,-0.08945343;-0.380752;-0.006243898,-0.0972211;-0.7229902;0.06664465,-0.08172292;-0.7686749;0.003149487,-0.01040791;0.3983473;0.03417806,0;0;0,-0.002460528;0.1995854;0.01263416,-0.005559304;0.4994832;0.0167905,0.1111472;0.3743754;-0.0008371491,0.3431663;0.219074;0.02034329,0.6194903;0.2062572;-0.02302457,-0.1157251;0.3659653;-0.01243736,-0.1901988;0.09622434;-0.002769521,-0.2239094;-0.1813775;-0.01694049,0.0729384;0.004849213;-0.03250344,0.1026043;-0.3702963;0.02027678,0.1114204;-0.7117265;0.09674677,0.1210071;-0.7603638;0.03571993,-0.07000493;0.0004902054;-0.03871782,-0.07616112;-0.3752955;0.01738217,-0.08481197;-0.7156698;0.09844102,-0.08058238;-0.703616;0.0001555011,-0.004644395;0.3994969;0.01816849,47.06084
+0;0;0,-0.005245242;0.1988924;0.02035466,-0.01259905;0.4982942;0.03658742,0.1031056;0.3746422;0.003311418,0.3365016;0.2625605;-0.1032908,0.5743511;0.3062578;-0.2444225,-0.1212268;0.3589613;0.01034706,-0.1946406;0.08933845;0.02806567,-0.2083664;-0.1892908;0.004038012,0.07091384;0.009534472;-0.03578157,0.09548162;-0.3675783;0.003997564,0.1041232;-0.709514;0.07819528,0.1160046;-0.7569395;0.0160331,-0.0708775;-0.002456018;-0.03701821,-0.08945343;-0.380752;-0.006243898,-0.0972211;-0.7229902;0.06664465,-0.08172292;-0.7686749;0.003149487,-0.01040791;0.3983473;0.03417806,0;0;0,-0.002460528;0.1995854;0.01263416,-0.005559304;0.4994832;0.0167905,0.1111472;0.3743754;-0.0008371491,0.3431663;0.219074;0.02034329,0.6194903;0.2062572;-0.02302457,-0.1157251;0.3659653;-0.01243736,-0.1901988;0.09622434;-0.002769521,-0.2239094;-0.1813775;-0.01694049,0.0729384;0.004849213;-0.03250344,0.1026043;-0.3702963;0.02027678,0.1114204;-0.7117265;0.09674677,0.1210071;-0.7603638;0.03571993,-0.07000493;0.0004902054;-0.03871782,-0.07616112;-0.3752955;0.01738217,-0.08481197;-0.7156698;0.09844102,-0.08058238;-0.703616;0.0001555011,-0.004644395;0.3994969;0.01816849,47.0832
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.002378206;0.1995971;0.0124643,-0.005283952;0.4994989;0.01648883,0.1114545;0.3745162;-0.0006572492,0.3397403;0.214049;0.0224917,0.6159039;0.1900377;-0.01696854,-0.1162343;0.3655455;-0.00943727,-0.1919329;0.09603104;-0.003808253,-0.2252545;-0.1816278;-0.01778151,0.07303514;0.004851179;-0.0322852,0.1027411;-0.3703022;0.02041649,0.1115138;-0.7117049;0.09701456,0.1209547;-0.7604408;0.03609236,-0.06987374;0.0006161128;-0.03895228,-0.07587503;-0.3750945;0.01766479,-0.08448067;-0.7154647;0.0987456,-0.08115789;-0.7034202;0.0004269257,-0.004436437;0.3995125;0.01790282,47.09451
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.002378206;0.1995971;0.0124643,-0.005283952;0.4994989;0.01648883,0.1114545;0.3745162;-0.0006572492,0.3397403;0.214049;0.0224917,0.6159039;0.1900377;-0.01696854,-0.1162343;0.3655455;-0.00943727,-0.1919329;0.09603104;-0.003808253,-0.2252545;-0.1816278;-0.01778151,0.07303514;0.004851179;-0.0322852,0.1027411;-0.3703022;0.02041649,0.1115138;-0.7117049;0.09701456,0.1209547;-0.7604408;0.03609236,-0.06987374;0.0006161128;-0.03895228,-0.07587503;-0.3750945;0.01766479,-0.08448067;-0.7154647;0.0987456,-0.08115789;-0.7034202;0.0004269257,-0.004436437;0.3995125;0.01790282,47.11675
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.002365724;0.1995987;0.01243977,-0.005262508;0.4994995;0.01656594,0.1115089;0.3745899;-0.0005054269,0.3355553;0.208584;0.02489626,0.6106605;0.1746047;-0.01463268,-0.1158552;0.3654881;-0.01075659,-0.1915236;0.09600839;-0.003339698,-0.2243426;-0.1817175;-0.0171676,0.07310545;0.004855371;-0.03212504,0.1027218;-0.3702872;0.02070438,0.1116444;-0.7117033;0.09722512,0.1207687;-0.7615787;0.03775514,-0.06982132;0.0007080042;-0.03904461,-0.07581633;-0.374979;0.01772999,-0.0844666;-0.7153023;0.09900223,-0.08069063;-0.7032565;0.0006996691,-0.004415915;0.3995125;0.01794205,47.12822
+0;0;0,-0.005041947;0.1989321;0.02001524,-0.01133308;0.4984116;0.03521754,0.1032748;0.3751805;-0.0004998073,0.3420596;0.2633516;-0.09471305,0.5853998;0.3065478;-0.2263171,-0.1198709;0.3583327;0.008343894,-0.196722;0.0897477;0.02721191,-0.2110635;-0.188848;0.003154589,0.07127463;0.009208878;-0.03514433,0.09566233;-0.3680205;0.00362698,0.104307;-0.7100107;0.0775727,0.1161723;-0.7570368;0.01491328,-0.07070749;-0.002249608;-0.03735493,-0.08948995;-0.380553;-0.006797181,-0.09714155;-0.7227757;0.06617566,-0.08215299;-0.7694882;0.003801461,-0.009531953;0.3984489;0.03316343,0;0;0,-0.002365724;0.1995987;0.01243977,-0.005262508;0.4994995;0.01656594,0.1115089;0.3745899;-0.0005054269,0.3355553;0.208584;0.02489626,0.6106605;0.1746047;-0.01463268,-0.1158552;0.3654881;-0.01075659,-0.1915236;0.09600839;-0.003339698,-0.2243426;-0.1817175;-0.0171676,0.07310545;0.004855371;-0.03212504,0.1027218;-0.3702872;0.02070438,0.1116444;-0.7117033;0.09722512,0.1207687;-0.7615787;0.03775514,-0.06982132;0.0007080042;-0.03904461,-0.07581633;-0.374979;0.01772999,-0.0844666;-0.7153023;0.09900223,-0.08069063;-0.7032565;0.0006996691,-0.004415915;0.3995125;0.01794205,47.13963
+0;0;0,-0.005924533;0.198918;0.01991276,-0.01606791;0.4982703;0.03563924,0.101375;0.3762296;0.002951713,0.3411251;0.264824;-0.08929069,0.5900624;0.305036;-0.2110002,-0.1226963;0.3582334;0.007456101,-0.1978258;0.08914229;0.02604416,-0.2119876;-0.1894798;0.002186775,0.07156783;0.009299375;-0.03451907,0.09596442;-0.3680729;0.002829924,0.104651;-0.7101147;0.07653209,0.1160381;-0.7576598;0.01442661,-0.07033513;-0.00227068;-0.03805014,-0.08911966;-0.3805634;-0.007361893,-0.09700186;-0.7228025;0.06550978,-0.08199922;-0.7695516;0.003184002,-0.01259578;0.398358;0.03329978,0;0;0,-0.002365724;0.1995987;0.01243977,-0.005262508;0.4994995;0.01656594,0.1115089;0.3745899;-0.0005054269,0.3355553;0.208584;0.02489626,0.6106605;0.1746047;-0.01463268,-0.1158552;0.3654881;-0.01075659,-0.1915236;0.09600839;-0.003339698,-0.2243426;-0.1817175;-0.0171676,0.07310545;0.004855371;-0.03212504,0.1027218;-0.3702872;0.02070438,0.1116444;-0.7117033;0.09722512,0.1207687;-0.7615787;0.03775514,-0.06982132;0.0007080042;-0.03904461,-0.07581633;-0.374979;0.01772999,-0.0844666;-0.7153023;0.09900223,-0.08069063;-0.7032565;0.0006996691,-0.004415915;0.3995125;0.01794205,47.15098
+0;0;0,-0.005924533;0.198918;0.01991276,-0.01606791;0.4982703;0.03563924,0.101375;0.3762296;0.002951713,0.3411251;0.264824;-0.08929069,0.5900624;0.305036;-0.2110002,-0.1226963;0.3582334;0.007456101,-0.1978258;0.08914229;0.02604416,-0.2119876;-0.1894798;0.002186775,0.07156783;0.009299375;-0.03451907,0.09596442;-0.3680729;0.002829924,0.104651;-0.7101147;0.07653209,0.1160381;-0.7576598;0.01442661,-0.07033513;-0.00227068;-0.03805014,-0.08911966;-0.3805634;-0.007361893,-0.09700186;-0.7228025;0.06550978,-0.08199922;-0.7695516;0.003184002,-0.01259578;0.398358;0.03329978,0;0;0,-0.002357009;0.1996042;0.01235313,-0.005234557;0.4995054;0.01647825,0.1116094;0.3747567;-0.0003315769,0.3324475;0.2046105;0.02576038,0.606674;0.1633327;-0.01291733,-0.116196;0.3652719;-0.00911613,-0.1921809;0.09582779;-0.004004327,-0.2252413;-0.1818762;-0.01769662,0.0732314;0.004822216;-0.03184192,0.1028639;-0.3703273;0.02092873,0.1116501;-0.7117422;0.09747085,0.1209047;-0.7619033;0.03840686,-0.06971069;0.000863357;-0.03923868,-0.07491133;-0.3748889;0.01718123,-0.0840603;-0.7150466;0.09908998,-0.08077193;-0.7030041;0.0007705316,-0.004392136;0.3995184;0.01784833,47.17353
+0;0;0,-0.005924533;0.198918;0.01991276,-0.01606791;0.4982703;0.03563924,0.101375;0.3762296;0.002951713,0.3411251;0.264824;-0.08929069,0.5900624;0.305036;-0.2110002,-0.1226963;0.3582334;0.007456101,-0.1978258;0.08914229;0.02604416,-0.2119876;-0.1894798;0.002186775,0.07156783;0.009299375;-0.03451907,0.09596442;-0.3680729;0.002829924,0.104651;-0.7101147;0.07653209,0.1160381;-0.7576598;0.01442661,-0.07033513;-0.00227068;-0.03805014,-0.08911966;-0.3805634;-0.007361893,-0.09700186;-0.7228025;0.06550978,-0.08199922;-0.7695516;0.003184002,-0.01259578;0.398358;0.03329978,0;0;0,-0.002357009;0.1996042;0.01235313,-0.005234557;0.4995054;0.01647825,0.1116094;0.3747567;-0.0003315769,0.3324475;0.2046105;0.02576038,0.606674;0.1633327;-0.01291733,-0.116196;0.3652719;-0.00911613,-0.1921809;0.09582779;-0.004004327,-0.2252413;-0.1818762;-0.01769662,0.0732314;0.004822216;-0.03184192,0.1028639;-0.3703273;0.02092873,0.1116501;-0.7117422;0.09747085,0.1209047;-0.7619033;0.03840686,-0.06971069;0.000863357;-0.03923868,-0.07491133;-0.3748889;0.01718123,-0.0840603;-0.7150466;0.09908998,-0.08077193;-0.7030041;0.0007705316,-0.004392136;0.3995184;0.01784833,47.18529
+0;0;0,-0.006311305;0.1989055;0.01991948,-0.01724043;0.4982235;0.03579928,0.1006446;0.3762017;0.003819607,0.3427373;0.2660489;-0.0836874,0.595753;0.3054302;-0.1969667,-0.1235418;0.3582909;0.006985473,-0.1980465;0.08903793;0.02574387,-0.2121218;-0.1895689;0.001657868,0.07160393;0.009360448;-0.03442759,0.09608179;-0.3680438;0.002542701,0.1046879;-0.7100943;0.07621382,0.1158437;-0.7575575;0.01396423,-0.07020048;-0.002305695;-0.0382959,-0.0889785;-0.3805983;-0.00760282,-0.09687554;-0.7228458;0.06522802,-0.08237446;-0.7698466;0.003094316,-0.01353631;0.3983216;0.03337358,0;0;0,-0.002201718;0.1996095;0.01229566,-0.004766064;0.4995151;0.01629486,0.111995;0.3748046;-0.0002563223,0.3293316;0.200242;0.02606287,0.6018941;0.1489242;-0.01235827,-0.1156824;0.3657253;-0.01048559,-0.1913995;0.09624642;-0.003553221,-0.224511;-0.1814348;-0.01758065,0.07326902;0.004806377;-0.03175764,0.1030183;-0.37033;0.02104095,0.1120738;-0.7116739;0.0978675,0.1208683;-0.7619572;0.03889927,-0.06972644;0.0009243746;-0.03920928,-0.0751311;-0.3747945;0.01741279,-0.08409218;-0.714955;0.09933096,-0.08032178;-0.7029217;0.001030505,-0.004047721;0.3995277;0.01771205,47.20705
+0;0;0,-0.006311305;0.1989055;0.01991948,-0.01724043;0.4982235;0.03579928,0.1006446;0.3762017;0.003819607,0.3427373;0.2660489;-0.0836874,0.595753;0.3054302;-0.1969667,-0.1235418;0.3582909;0.006985473,-0.1980465;0.08903793;0.02574387,-0.2121218;-0.1895689;0.001657868,0.07160393;0.009360448;-0.03442759,0.09608179;-0.3680438;0.002542701,0.1046879;-0.7100943;0.07621382,0.1158437;-0.7575575;0.01396423,-0.07020048;-0.002305695;-0.0382959,-0.0889785;-0.3805983;-0.00760282,-0.09687554;-0.7228458;0.06522802,-0.08237446;-0.7698466;0.003094316,-0.01353631;0.3983216;0.03337358,0;0;0,-0.002201718;0.1996095;0.01229566,-0.004766064;0.4995151;0.01629486,0.111995;0.3748046;-0.0002563223,0.3293316;0.200242;0.02606287,0.6018941;0.1489242;-0.01235827,-0.1156824;0.3657253;-0.01048559,-0.1913995;0.09624642;-0.003553221,-0.224511;-0.1814348;-0.01758065,0.07326902;0.004806377;-0.03175764,0.1030183;-0.37033;0.02104095,0.1120738;-0.7116739;0.0978675,0.1208683;-0.7619572;0.03889927,-0.06972644;0.0009243746;-0.03920928,-0.0751311;-0.3747945;0.01741279,-0.08409218;-0.714955;0.09933096,-0.08032178;-0.7029217;0.001030505,-0.004047721;0.3995277;0.01771205,47.21844
+0;0;0,-0.006311305;0.1989055;0.01991948,-0.01724043;0.4982235;0.03579928,0.1006446;0.3762017;0.003819607,0.3427373;0.2660489;-0.0836874,0.595753;0.3054302;-0.1969667,-0.1235418;0.3582909;0.006985473,-0.1980465;0.08903793;0.02574387,-0.2121218;-0.1895689;0.001657868,0.07160393;0.009360448;-0.03442759,0.09608179;-0.3680438;0.002542701,0.1046879;-0.7100943;0.07621382,0.1158437;-0.7575575;0.01396423,-0.07020048;-0.002305695;-0.0382959,-0.0889785;-0.3805983;-0.00760282,-0.09687554;-0.7228458;0.06522802,-0.08237446;-0.7698466;0.003094316,-0.01353631;0.3983216;0.03337358,0;0;0,-0.002142535;0.1996146;0.01222349,-0.004592267;0.4995221;0.01616052,0.1121876;0.3749999;-0.0002581086,0.3265482;0.1967317;0.02562515,0.5944237;0.1251725;-0.01338869,-0.1154561;0.3660542;-0.01133897,-0.1910159;0.09655398;-0.003570021,-0.2241032;-0.1811515;-0.01716764,0.07331426;0.004801753;-0.03165377,0.1031926;-0.3703214;0.02116596,0.1122222;-0.7116294;0.09815498,0.1210312;-0.7618861;0.03915269,-0.06970902;0.0009663778;-0.03923925,-0.07510133;-0.37472;0.01759932,-0.08397567;-0.7148899;0.0994879,-0.07993017;-0.7028617;0.001199305,-0.00391288;0.3995346;0.01759486,47.24057
+0;0;0,-0.005996235;0.1989577;0.01949081,-0.01407454;0.4984356;0.03384358,0.1027528;0.3760017;0.003794387,0.3477834;0.2662999;-0.07573873,0.6038;0.3048689;-0.1823594,-0.1221834;0.3591217;0.006799104,-0.1957294;0.08957836;0.02516777,-0.2099146;-0.1890275;0.001135534,0.07166982;0.009293457;-0.03430843,0.0961218;-0.368191;0.001851667,0.1047969;-0.7102386;0.07552809,0.1157909;-0.7576082;0.01313358,-0.06999425;-0.002229899;-0.038676,-0.0886206;-0.3805486;-0.00821255,-0.09677836;-0.7227909;0.0646135,-0.08175182;-0.7694638;0.002199765,-0.01167767;0.3984798;0.03208577,0;0;0,-0.002084795;0.1996205;0.01213635,-0.004367316;0.4995311;0.01594134,0.1124288;0.3753239;-0.0003686268,0.3225483;0.1920173;0.025096,0.5865691;0.1081178;-0.0155724,-0.1152554;0.3663333;-0.01196039,-0.1907552;0.0968391;-0.003438585,-0.2237821;-0.1808668;-0.01717463,0.0733338;0.004793789;-0.0316097,0.1031974;-0.3703418;0.02112997,0.1122402;-0.7116326;0.09819379,0.1210021;-0.762002;0.03933813,-0.06969646;0.001000027;-0.0392607,-0.07535742;-0.3746209;0.01798292,-0.08395141;-0.7148498;0.09965564,-0.07973414;-0.7028276;0.001375347,-0.003747843;0.3995439;0.0174187,47.26267
+0;0;0,-0.005996235;0.1989577;0.01949081,-0.01407454;0.4984356;0.03384358,0.1027528;0.3760017;0.003794387,0.3477834;0.2662999;-0.07573873,0.6038;0.3048689;-0.1823594,-0.1221834;0.3591217;0.006799104,-0.1957294;0.08957836;0.02516777,-0.2099146;-0.1890275;0.001135534,0.07166982;0.009293457;-0.03430843,0.0961218;-0.368191;0.001851667,0.1047969;-0.7102386;0.07552809,0.1157909;-0.7576082;0.01313358,-0.06999425;-0.002229899;-0.038676,-0.0886206;-0.3805486;-0.00821255,-0.09677836;-0.7227909;0.0646135,-0.08175182;-0.7694638;0.002199765,-0.01167767;0.3984798;0.03208577,0;0;0,-0.002084795;0.1996205;0.01213635,-0.004367316;0.4995311;0.01594134,0.1124288;0.3753239;-0.0003686268,0.3225483;0.1920173;0.025096,0.5865691;0.1081178;-0.0155724,-0.1152554;0.3663333;-0.01196039,-0.1907552;0.0968391;-0.003438585,-0.2237821;-0.1808668;-0.01717463,0.0733338;0.004793789;-0.0316097,0.1031974;-0.3703418;0.02112997,0.1122402;-0.7116326;0.09819379,0.1210021;-0.762002;0.03933813,-0.06969646;0.001000027;-0.0392607,-0.07535742;-0.3746209;0.01798292,-0.08395141;-0.7148498;0.09965564,-0.07973414;-0.7028276;0.001375347,-0.003747843;0.3995439;0.0174187,47.28532
+0;0;0,-0.005996235;0.1989577;0.01949081,-0.01407454;0.4984356;0.03384358,0.1027528;0.3760017;0.003794387,0.3477834;0.2662999;-0.07573873,0.6038;0.3048689;-0.1823594,-0.1221834;0.3591217;0.006799104,-0.1957294;0.08957836;0.02516777,-0.2099146;-0.1890275;0.001135534,0.07166982;0.009293457;-0.03430843,0.0961218;-0.368191;0.001851667,0.1047969;-0.7102386;0.07552809,0.1157909;-0.7576082;0.01313358,-0.06999425;-0.002229899;-0.038676,-0.0886206;-0.3805486;-0.00821255,-0.09677836;-0.7227909;0.0646135,-0.08175182;-0.7694638;0.002199765,-0.01167767;0.3984798;0.03208577,0;0;0,-0.001437911;0.199647;0.01179043,-0.0009367787;0.4995754;0.01467951,0.1144536;0.3737695;-0.0009707361,0.3208044;0.1860238;0.02292276,0.5810221;0.09102827;-0.01785207,-0.1128383;0.3655954;-0.01239597,-0.1884758;0.09615636;-0.003363006,-0.2214736;-0.1815406;-0.01734671,0.0733742;0.004931053;-0.03149463,0.1031684;-0.3702143;0.02121418,0.11225;-0.7115112;0.09824643,0.1207461;-0.7616704;0.03906599,-0.06967987;0.0008827045;-0.03929295,-0.07556353;-0.3746655;0.01840388,-0.08392294;-0.7149594;0.09982964,-0.07949538;-0.7029894;0.001568161,-0.001431385;0.3995925;0.01646047,47.30766
+0;0;0,-0.006462446;0.1989583;0.01933463,-0.01669128;0.4983655;0.03386813,0.1013809;0.3762369;0.004620293,0.3522785;0.2734943;-0.06533954,0.6110059;0.3066468;-0.1671287,-0.1236397;0.3589833;0.006009683,-0.1967147;0.08929706;0.02415864,-0.2109458;-0.1892996;4.587322E-05,0.07179698;0.009281459;-0.03404478,0.09611753;-0.3682864;0.00132516,0.1048656;-0.7103991;0.07468972,0.116303;-0.7577942;0.01240661,-0.06982917;-0.002173205;-0.03897646,-0.08863117;-0.380487;-0.008559657,-0.09656239;-0.7227777;0.06406395,-0.08171524;-0.7692879;0.001408182,-0.01332863;0.3984398;0.03198361,0;0;0,-0.001324714;0.1996462;0.01181678,-0.0008168545;0.4995739;0.01474877,0.1146479;0.3741816;-0.001094369,0.3159267;0.18082;0.02122459,0.5730824;0.07759886;-0.01897892,-0.1126937;0.3658056;-0.01263472,-0.1883228;0.0963712;-0.003395764,-0.2217131;-0.1812223;-0.01845985,0.07340819;0.00491188;-0.03141833,0.1033444;-0.3702204;0.02130376,0.1123652;-0.7114966;0.09843503,0.1210276;-0.761642;0.03926008,-0.06970228;0.000919855;-0.03925233,-0.07541057;-0.3746257;0.01847916,-0.08366799;-0.714932;0.09986357,-0.07921504;-0.7029595;0.001602784,-0.001300535;0.3995908;0.01652196,47.3297
+0;0;0,-0.006462446;0.1989583;0.01933463,-0.01669128;0.4983655;0.03386813,0.1013809;0.3762369;0.004620293,0.3522785;0.2734943;-0.06533954,0.6110059;0.3066468;-0.1671287,-0.1236397;0.3589833;0.006009683,-0.1967147;0.08929706;0.02415864,-0.2109458;-0.1892996;4.587322E-05,0.07179698;0.009281459;-0.03404478,0.09611753;-0.3682864;0.00132516,0.1048656;-0.7103991;0.07468972,0.116303;-0.7577942;0.01240661,-0.06982917;-0.002173205;-0.03897646,-0.08863117;-0.380487;-0.008559657,-0.09656239;-0.7227777;0.06406395,-0.08171524;-0.7692879;0.001408182,-0.01332863;0.3984398;0.03198361,0;0;0,-0.001324714;0.1996462;0.01181678,-0.0008168545;0.4995739;0.01474877,0.1146479;0.3741816;-0.001094369,0.3159267;0.18082;0.02122459,0.5730824;0.07759886;-0.01897892,-0.1126937;0.3658056;-0.01263472,-0.1883228;0.0963712;-0.003395764,-0.2217131;-0.1812223;-0.01845985,0.07340819;0.00491188;-0.03141833,0.1033444;-0.3702204;0.02130376,0.1123652;-0.7114966;0.09843503,0.1210276;-0.761642;0.03926008,-0.06970228;0.000919855;-0.03925233,-0.07541057;-0.3746257;0.01847916,-0.08366799;-0.714932;0.09986357,-0.07921504;-0.7029595;0.001602784,-0.001300535;0.3995908;0.01652196,47.34111
+0;0;0,-0.0063008;0.199003;0.01892358,-0.01524298;0.4984978;0.03242973,0.1025333;0.3762047;0.004705574,0.3555551;0.2755582;-0.06048809,0.6178613;0.3070354;-0.1532494,-0.1229945;0.3594385;0.005566396,-0.1954527;0.08958441;0.02369335,-0.2096988;-0.1889769;-0.0008153655,0.07173383;0.009328723;-0.03416478,0.09584493;-0.3682928;0.0007727705,0.1046102;-0.710388;0.07421692,0.1160032;-0.7576391;0.01174711,-0.06968021;-0.002146517;-0.03924361,-0.08919172;-0.3804405;-0.009027865,-0.09705807;-0.7227767;0.06338775,-0.08206673;-0.7692997;0.0007819608,-0.01241655;0.3985491;0.03092126,0;0;0,-0.001169843;0.199648;0.01180297,-0.0004243444;0.4995756;0.01473484,0.1149909;0.3743382;-0.001147304,0.311511;0.1758463;0.01836647,0.5622668;0.05717614;-0.01956628,-0.112472;0.3661427;-0.01269266,-0.1881477;0.09671345;-0.003688107,-0.221812;-0.18082;-0.01923976,0.07343846;0.00496505;-0.03133914,0.1035204;-0.3701589;0.02135972,0.112551;-0.7113549;0.09884319,0.1210818;-0.7617168;0.03994325,-0.06969915;0.0008883345;-0.03925863,-0.07539986;-0.374639;0.01859209,-0.08344188;-0.714972;0.09988667,-0.07897341;-0.7030007;0.001626804,-0.0009868093;0.3995928;0.01649885,47.3633
+0;0;0,-0.0063008;0.199003;0.01892358,-0.01524298;0.4984978;0.03242973,0.1025333;0.3762047;0.004705574,0.3555551;0.2755582;-0.06048809,0.6178613;0.3070354;-0.1532494,-0.1229945;0.3594385;0.005566396,-0.1954527;0.08958441;0.02369335,-0.2096988;-0.1889769;-0.0008153655,0.07173383;0.009328723;-0.03416478,0.09584493;-0.3682928;0.0007727705,0.1046102;-0.710388;0.07421692,0.1160032;-0.7576391;0.01174711,-0.06968021;-0.002146517;-0.03924361,-0.08919172;-0.3804405;-0.009027865,-0.09705807;-0.7227767;0.06338775,-0.08206673;-0.7692997;0.0007819608,-0.01241655;0.3985491;0.03092126,0;0;0,-0.001169843;0.199648;0.01180297,-0.0004243444;0.4995756;0.01473484,0.1149909;0.3743382;-0.001147304,0.311511;0.1758463;0.01836647,0.5622668;0.05717614;-0.01956628,-0.112472;0.3661427;-0.01269266,-0.1881477;0.09671345;-0.003688107,-0.221812;-0.18082;-0.01923976,0.07343846;0.00496505;-0.03133914,0.1035204;-0.3701589;0.02135972,0.112551;-0.7113549;0.09884319,0.1210818;-0.7617168;0.03994325,-0.06969915;0.0008883345;-0.03925863,-0.07539986;-0.374639;0.01859209,-0.08344188;-0.714972;0.09988667,-0.07897341;-0.7030007;0.001626804,-0.0009868093;0.3995928;0.01649885,47.3857
+0;0;0,-0.0063008;0.199003;0.01892358,-0.01524298;0.4984978;0.03242973,0.1025333;0.3762047;0.004705574,0.3555551;0.2755582;-0.06048809,0.6178613;0.3070354;-0.1532494,-0.1229945;0.3594385;0.005566396,-0.1954527;0.08958441;0.02369335,-0.2096988;-0.1889769;-0.0008153655,0.07173383;0.009328723;-0.03416478,0.09584493;-0.3682928;0.0007727705,0.1046102;-0.710388;0.07421692,0.1160032;-0.7576391;0.01174711,-0.06968021;-0.002146517;-0.03924361,-0.08919172;-0.3804405;-0.009027865,-0.09705807;-0.7227767;0.06338775,-0.08206673;-0.7692997;0.0007819608,-0.01241655;0.3985491;0.03092126,0;0;0,-0.001024656;0.199645;0.01186663,-0.0002309281;0.4995713;0.0149166,0.1151166;0.3746819;-0.001875956,0.3076348;0.1721913;0.01640843,0.5552242;0.0470476;-0.02151959,-0.1122842;0.366294;-0.01273034,-0.1879844;0.09687683;-0.003572566,-0.2221416;-0.1804788;-0.02109818,0.07340148;0.005009547;-0.03141858,0.1037302;-0.3700583;0.02153675,0.1129073;-0.7114177;0.09827986,0.1209009;-0.7607762;0.03796111,-0.06976716;0.0008986191;-0.03913738,-0.07557115;-0.3746424;0.01861428,-0.08335836;-0.7149475;0.1000502,-0.07911932;-0.7029697;0.00177899,-0.000800229;0.3995878;0.01664382,47.4081
+0;0;0,-0.006686769;0.1990178;0.01863311,-0.01650076;0.4984809;0.03229069,0.1018951;0.3761724;0.005487995,0.3574331;0.2783205;-0.05388644,0.6226827;0.3066975;-0.1389592,-0.1237727;0.3594963;0.004874004,-0.1957288;0.08950153;0.02290531,-0.2098215;-0.1890538;-0.001759078,0.07179902;0.009350599;-0.03402157,0.09562065;-0.3683735;-6.649643E-06,0.1043848;-0.7104816;0.07337749,0.1157588;-0.7576192;0.0107642,-0.06947668;-0.002093869;-0.03960564,-0.0894791;-0.3803814;-0.00963152,-0.09740171;-0.7227131;0.06279925,-0.08167335;-0.7686782;-0.0003032088,-0.01327769;0.3985459;0.03068054,0;0;0,-0.0009011834;0.1996411;0.0119428,4.297501E-05;0.4995663;0.01516751,0.1153484;0.375017;-0.002086908,0.3043356;0.1691144;0.01488191,0.5462587;0.03306134;-0.02203378,-0.1120853;0.3665463;-0.01277954,-0.1877973;0.09713832;-0.003450637,-0.2222655;-0.1801064;-0.0220875,0.07345064;0.004994355;-0.03130591,0.1038918;-0.3700709;0.02160308,0.113176;-0.7114478;0.09825572,0.1209727;-0.7609826;0.0381439,-0.0697457;0.0009450392;-0.03917453,-0.07554112;-0.3745448;0.01890982,-0.08320608;-0.7148347;0.1004206,-0.07902186;-0.7028476;0.002145313,-0.0005808038;0.3995816;0.0168077,47.43016
+0;0;0,-0.006686769;0.1990178;0.01863311,-0.01650076;0.4984809;0.03229069,0.1018951;0.3761724;0.005487995,0.3574331;0.2783205;-0.05388644,0.6226827;0.3066975;-0.1389592,-0.1237727;0.3594963;0.004874004,-0.1957288;0.08950153;0.02290531,-0.2098215;-0.1890538;-0.001759078,0.07179902;0.009350599;-0.03402157,0.09562065;-0.3683735;-6.649643E-06,0.1043848;-0.7104816;0.07337749,0.1157588;-0.7576192;0.0107642,-0.06947668;-0.002093869;-0.03960564,-0.0894791;-0.3803814;-0.00963152,-0.09740171;-0.7227131;0.06279925,-0.08167335;-0.7686782;-0.0003032088,-0.01327769;0.3985459;0.03068054,0;0;0,-0.0009011834;0.1996411;0.0119428,4.297501E-05;0.4995663;0.01516751,0.1153484;0.375017;-0.002086908,0.3043356;0.1691144;0.01488191,0.5462587;0.03306134;-0.02203378,-0.1120853;0.3665463;-0.01277954,-0.1877973;0.09713832;-0.003450637,-0.2222655;-0.1801064;-0.0220875,0.07345064;0.004994355;-0.03130591,0.1038918;-0.3700709;0.02160308,0.113176;-0.7114478;0.09825572,0.1209727;-0.7609826;0.0381439,-0.0697457;0.0009450392;-0.03917453,-0.07554112;-0.3745448;0.01890982,-0.08320608;-0.7148347;0.1004206,-0.07902186;-0.7028476;0.002145313,-0.0005808038;0.3995816;0.0168077,47.44167
+0;0;0,-0.006686769;0.1990178;0.01863311,-0.01650076;0.4984809;0.03229069,0.1018951;0.3761724;0.005487995,0.3574331;0.2783205;-0.05388644,0.6226827;0.3066975;-0.1389592,-0.1237727;0.3594963;0.004874004,-0.1957288;0.08950153;0.02290531,-0.2098215;-0.1890538;-0.001759078,0.07179902;0.009350599;-0.03402157,0.09562065;-0.3683735;-6.649643E-06,0.1043848;-0.7104816;0.07337749,0.1157588;-0.7576192;0.0107642,-0.06947668;-0.002093869;-0.03960564,-0.0894791;-0.3803814;-0.00963152,-0.09740171;-0.7227131;0.06279925,-0.08167335;-0.7686782;-0.0003032088,-0.01327769;0.3985459;0.03068054,0;0;0,-0.0007490804;0.1996383;0.01199883,0.0002959335;0.4995623;0.01531152,0.1155359;0.3756204;-0.002956595,0.2995676;0.1652215;0.01331174,0.5364752;0.02015738;-0.02177632,-0.1118409;0.3665809;-0.01278152,-0.1877977;0.09723842;-0.003551091,-0.222175;-0.1800191;-0.02216434,0.07342821;0.004944667;-0.03136636,0.1038405;-0.3700401;0.02212652,0.1132216;-0.7114505;0.09861822,0.121346;-0.7609103;0.03845071,-0.06979471;0.0009906836;-0.03908602,-0.07548075;-0.3744878;0.01908223,-0.08272026;-0.7148293;0.1004163,-0.07883666;-0.7028341;0.002127156,-0.0003558468;0.3995773;0.01692228,47.46373
+0;0;0,-0.007189642;0.1990379;0.01822732,-0.01789062;0.4984711;0.03193176,0.1011725;0.3765905;0.006139925,0.3585459;0.2802551;-0.04751129,0.626376;0.3066144;-0.1247912,-0.1246416;0.359407;0.003877984,-0.1964135;0.08936247;0.02189843,-0.2110093;-0.1891162;-0.00333287,0.07184929;0.009445917;-0.03388886,0.09542293;-0.3684106;-0.001197774,0.1043841;-0.7105027;0.07223727,0.1153252;-0.7578637;0.009822764,-0.06919837;-0.002109324;-0.04008911,-0.08972748;-0.3804323;-0.01093051,-0.09782502;-0.7227066;0.06175227,-0.08155742;-0.7685511;-0.001358591,-0.0143121;0.3985493;0.03024618,0;0;0,-0.0007490804;0.1996383;0.01199883,0.0002959335;0.4995623;0.01531152,0.1155359;0.3756204;-0.002956595,0.2995676;0.1652215;0.01331174,0.5364752;0.02015738;-0.02177632,-0.1118409;0.3665809;-0.01278152,-0.1877977;0.09723842;-0.003551091,-0.222175;-0.1800191;-0.02216434,0.07342821;0.004944667;-0.03136636,0.1038405;-0.3700401;0.02212652,0.1132216;-0.7114505;0.09861822,0.121346;-0.7609103;0.03845071,-0.06979471;0.0009906836;-0.03908602,-0.07548075;-0.3744878;0.01908223,-0.08272026;-0.7148293;0.1004163,-0.07883666;-0.7028341;0.002127156,-0.0003558468;0.3995773;0.01692228,47.47499
+0;0;0,-0.007189642;0.1990379;0.01822732,-0.01789062;0.4984711;0.03193176,0.1011725;0.3765905;0.006139925,0.3585459;0.2802551;-0.04751129,0.626376;0.3066144;-0.1247912,-0.1246416;0.359407;0.003877984,-0.1964135;0.08936247;0.02189843,-0.2110093;-0.1891162;-0.00333287,0.07184929;0.009445917;-0.03388886,0.09542293;-0.3684106;-0.001197774,0.1043841;-0.7105027;0.07223727,0.1153252;-0.7578637;0.009822764,-0.06919837;-0.002109324;-0.04008911,-0.08972748;-0.3804323;-0.01093051,-0.09782502;-0.7227066;0.06175227,-0.08155742;-0.7685511;-0.001358591,-0.0143121;0.3985493;0.03024618,0;0;0,-0.0006668156;0.1996359;0.01204406,0.0004399763;0.4995589;0.01544474,0.1156413;0.3758347;-0.003234828,0.2953259;0.161659;0.01232745,0.530037;0.01295285;-0.02227308,-0.1126211;0.3659046;-0.008174753,-0.1900396;0.09683904;-0.004995138,-0.2248563;-0.1803008;-0.02452315,0.07342316;0.004911747;-0.03138334,0.1038076;-0.3701132;0.02184347,0.1135144;-0.7114432;0.09865212,0.1213267;-0.7606494;0.03811003,-0.06982753;0.001026755;-0.03902643,-0.07531378;-0.3744358;0.01926435,-0.08263805;-0.7148009;0.1004919,-0.08036087;-0.7027996;0.002151355,-0.0002303898;0.3995736;0.01701896,47.49753
+0;0;0,-0.007189642;0.1990379;0.01822732,-0.01789062;0.4984711;0.03193176,0.1011725;0.3765905;0.006139925,0.3585459;0.2802551;-0.04751129,0.626376;0.3066144;-0.1247912,-0.1246416;0.359407;0.003877984,-0.1964135;0.08936247;0.02189843,-0.2110093;-0.1891162;-0.00333287,0.07184929;0.009445917;-0.03388886,0.09542293;-0.3684106;-0.001197774,0.1043841;-0.7105027;0.07223727,0.1153252;-0.7578637;0.009822764,-0.06919837;-0.002109324;-0.04008911,-0.08972748;-0.3804323;-0.01093051,-0.09782502;-0.7227066;0.06175227,-0.08155742;-0.7685511;-0.001358591,-0.0143121;0.3985493;0.03024618,0;0;0,-0.0006668156;0.1996359;0.01204406,0.0004399763;0.4995589;0.01544474,0.1156413;0.3758347;-0.003234828,0.2953259;0.161659;0.01232745,0.530037;0.01295285;-0.02227308,-0.1126211;0.3659046;-0.008174753,-0.1900396;0.09683904;-0.004995138,-0.2248563;-0.1803008;-0.02452315,0.07342316;0.004911747;-0.03138334,0.1038076;-0.3701132;0.02184347,0.1135144;-0.7114432;0.09865212,0.1213267;-0.7606494;0.03811003,-0.06982753;0.001026755;-0.03902643,-0.07531378;-0.3744358;0.01926435,-0.08263805;-0.7148009;0.1004919,-0.08036087;-0.7027996;0.002151355,-0.0002303898;0.3995736;0.01701896,47.51969
+0;0;0,-0.007295322;0.1990371;0.01819315,-0.01822485;0.4984614;0.0319279,0.1010163;0.3765681;0.006648911,0.3598571;0.2811961;-0.04136757,0.6280673;0.3070834;-0.1174805,-0.1248404;0.3595129;0.003411321,-0.1960029;0.08928767;0.02113784,-0.2108376;-0.1891509;-0.004394948,0.07183985;0.009436163;-0.03391159,0.09548846;-0.3684308;-0.001395211,0.1043794;-0.7105285;0.07202205,0.1149339;-0.7575369;0.009106874,-0.06916377;-0.002102307;-0.04014913,-0.08970466;-0.3804341;-0.01111191,-0.09785277;-0.7227067;0.06157269,-0.0815367;-0.7679213;-0.002275221,-0.0145764;0.3985426;0.03021688,0;0;0,-0.0005125756;0.1996329;0.01210066,0.001024293;0.4995513;0.01586935,0.1160526;0.3761759;-0.003525112,0.2910898;0.1581656;0.01175546,0.5164745;-0.005068615;-0.01916896,-0.1120753;0.3660129;-0.008545214,-0.1896592;0.09700477;-0.004628448,-0.2244583;-0.1801227;-0.02436106,0.07334205;0.004997541;-0.03155896,0.1036637;-0.3699918;0.02195329,0.1134351;-0.7113159;0.09878039,0.1211957;-0.7604721;0.03816631,-0.06986808;0.0009896953;-0.03895473,-0.07528703;-0.3744263;0.01964115,-0.08268531;-0.7148522;0.1006069,-0.08038075;-0.7028397;0.002264917,0.0002073132;0.3995646;0.01727938,47.54202
+0;0;0,-0.007295322;0.1990371;0.01819315,-0.01822485;0.4984614;0.0319279,0.1010163;0.3765681;0.006648911,0.3598571;0.2811961;-0.04136757,0.6280673;0.3070834;-0.1174805,-0.1248404;0.3595129;0.003411321,-0.1960029;0.08928767;0.02113784,-0.2108376;-0.1891509;-0.004394948,0.07183985;0.009436163;-0.03391159,0.09548846;-0.3684308;-0.001395211,0.1043794;-0.7105285;0.07202205,0.1149339;-0.7575369;0.009106874,-0.06916377;-0.002102307;-0.04014913,-0.08970466;-0.3804341;-0.01111191,-0.09785277;-0.7227067;0.06157269,-0.0815367;-0.7679213;-0.002275221,-0.0145764;0.3985426;0.03021688,0;0;0,-0.0005125756;0.1996329;0.01210066,0.001024293;0.4995513;0.01586935,0.1160526;0.3761759;-0.003525112,0.2910898;0.1581656;0.01175546,0.5164745;-0.005068615;-0.01916896,-0.1120753;0.3660129;-0.008545214,-0.1896592;0.09700477;-0.004628448,-0.2244583;-0.1801227;-0.02436106,0.07334205;0.004997541;-0.03155896,0.1036637;-0.3699918;0.02195329,0.1134351;-0.7113159;0.09878039,0.1211957;-0.7604721;0.03816631,-0.06986808;0.0009896953;-0.03895473,-0.07528703;-0.3744263;0.01964115,-0.08268531;-0.7148522;0.1006069,-0.08038075;-0.7028397;0.002264917,0.0002073132;0.3995646;0.01727938,47.55338
+0;0;0,-0.007295322;0.1990371;0.01819315,-0.01822485;0.4984614;0.0319279,0.1010163;0.3765681;0.006648911,0.3598571;0.2811961;-0.04136757,0.6280673;0.3070834;-0.1174805,-0.1248404;0.3595129;0.003411321,-0.1960029;0.08928767;0.02113784,-0.2108376;-0.1891509;-0.004394948,0.07183985;0.009436163;-0.03391159,0.09548846;-0.3684308;-0.001395211,0.1043794;-0.7105285;0.07202205,0.1149339;-0.7575369;0.009106874,-0.06916377;-0.002102307;-0.04014913,-0.08970466;-0.3804341;-0.01111191,-0.09785277;-0.7227067;0.06157269,-0.0815367;-0.7679213;-0.002275221,-0.0145764;0.3985426;0.03021688,0;0;0,-0.0004234417;0.1996314;0.01212957,0.001181654;0.4995483;0.01600303,0.1161311;0.376213;-0.003851114,0.286532;0.1545628;0.01147022,0.510124;-0.01099753;-0.02009596,-0.1119133;0.3661009;-0.008636402,-0.1895169;0.09710461;-0.004316892,-0.2242642;-0.1800435;-0.02384964,0.0732071;0.005069216;-0.03185944,0.103473;-0.3698265;0.02233656,0.1135892;-0.7111331;0.09919633,0.1213093;-0.7603765;0.03869106,-0.06992195;0.0009709563;-0.03885844,-0.07527377;-0.3744483;0.01972248,-0.08256513;-0.714856;0.1007746,-0.08033814;-0.7028363;0.002429552,0.000353814;0.3995611;0.01737346,47.5755
+0;0;0,-0.00750293;0.1990376;0.01810358,-0.01919164;0.4984396;0.03169813,0.1004893;0.3765487;0.007282678,0.3601343;0.2809355;-0.03564245,0.6304603;0.3056959;-0.1042775,-0.1254732;0.3594505;0.003068855,-0.196356;0.08914641;0.02071363,-0.2112198;-0.189276;-0.004977655,0.07191943;0.009322368;-0.03377408,0.09539361;-0.3685787;-0.001529343,0.1041556;-0.7106475;0.07203836,0.1161438;-0.7584469;0.01036558,-0.06910623;-0.002019354;-0.04025234,-0.08971461;-0.3803473;-0.01121332,-0.09801577;-0.7226084;0.06150783,-0.08151998;-0.7677745;-0.002351023,-0.01526575;0.3985305;0.03003302,0;0;0,-0.0001700867;0.1996362;0.01205655,0.001679593;0.4995514;0.0159776,0.1166076;0.3769926;-0.004546251,0.2829872;0.1522917;0.01053169,0.5001449;-0.02227335;-0.01721006,-0.1119455;0.3658372;-0.006158419,-0.1900941;0.0969691;-0.004501896,-0.2249689;-0.1801465;-0.02426808,0.07307377;0.005027463;-0.03217061,0.1032965;-0.3698039;0.02249211,0.1133875;-0.7110931;0.09943296,0.1222366;-0.7597678;0.03834296,-0.07005464;0.0009576877;-0.03861905,-0.07543413;-0.3744562;0.01999391,-0.08277422;-0.7149013;0.100884,-0.0815545;-0.70288;0.002520964,0.000797127;0.3995644;0.01732702,47.59774
+0;0;0,-0.00750293;0.1990376;0.01810358,-0.01919164;0.4984396;0.03169813,0.1004893;0.3765487;0.007282678,0.3601343;0.2809355;-0.03564245,0.6304603;0.3056959;-0.1042775,-0.1254732;0.3594505;0.003068855,-0.196356;0.08914641;0.02071363,-0.2112198;-0.189276;-0.004977655,0.07191943;0.009322368;-0.03377408,0.09539361;-0.3685787;-0.001529343,0.1041556;-0.7106475;0.07203836,0.1161438;-0.7584469;0.01036558,-0.06910623;-0.002019354;-0.04025234,-0.08971461;-0.3803473;-0.01121332,-0.09801577;-0.7226084;0.06150783,-0.08151998;-0.7677745;-0.002351023,-0.01526575;0.3985305;0.03003302,0;0;0,-0.0001700867;0.1996362;0.01205655,0.001679593;0.4995514;0.0159776,0.1166076;0.3769926;-0.004546251,0.2829872;0.1522917;0.01053169,0.5001449;-0.02227335;-0.01721006,-0.1119455;0.3658372;-0.006158419,-0.1900941;0.0969691;-0.004501896,-0.2249689;-0.1801465;-0.02426808,0.07307377;0.005027463;-0.03217061,0.1032965;-0.3698039;0.02249211,0.1133875;-0.7110931;0.09943296,0.1222366;-0.7597678;0.03834296,-0.07005464;0.0009576877;-0.03861905,-0.07543413;-0.3744562;0.01999391,-0.08277422;-0.7149013;0.100884,-0.0815545;-0.70288;0.002520964,0.000797127;0.3995644;0.01732702,47.60914
+0;0;0,-0.00750293;0.1990376;0.01810358,-0.01919164;0.4984396;0.03169813,0.1004893;0.3765487;0.007282678,0.3601343;0.2809355;-0.03564245,0.6304603;0.3056959;-0.1042775,-0.1254732;0.3594505;0.003068855,-0.196356;0.08914641;0.02071363,-0.2112198;-0.189276;-0.004977655,0.07191943;0.009322368;-0.03377408,0.09539361;-0.3685787;-0.001529343,0.1041556;-0.7106475;0.07203836,0.1161438;-0.7584469;0.01036558,-0.06910623;-0.002019354;-0.04025234,-0.08971461;-0.3803473;-0.01121332,-0.09801577;-0.7226084;0.06150783,-0.08151998;-0.7677745;-0.002351023,-0.01526575;0.3985305;0.03003302,0;0;0,-7.722736E-05;0.1996342;0.0120908,0.001928814;0.4995474;0.01611743,0.1167947;0.3771995;-0.004737964,0.2790521;0.1495008;0.01028902,0.4891231;-0.03409418;-0.01343964,-0.1117604;0.3660032;-0.006232489,-0.1898484;0.0971238;-0.00375818,-0.2253966;-0.1799242;-0.02327089,0.07294424;0.005069059;-0.03245679,0.1030855;-0.3697984;0.02200298,0.1132291;-0.7109179;0.09968522,0.1219001;-0.7599361;0.03901433,-0.070127;0.0009545586;-0.03848756,-0.07542741;-0.3744699;0.0200645,-0.08271009;-0.7148549;0.1012127,-0.08153109;-0.7028301;0.00284861,0.0009977309;0.3995602;0.01742212,47.6312
+0;0;0,-0.006852441;0.1990822;0.01786897,-0.01449408;0.4986753;0.0299033,0.103555;0.3763535;0.007295635,0.3633308;0.2795256;-0.03195838,0.6350998;0.3041865;-0.09467585,-0.1230158;0.3601547;0.003027016,-0.1933556;0.08969662;0.02048346,-0.2084076;-0.1887095;-0.005274368,0.07201415;0.009262089;-0.03358832,0.09551135;-0.3686498;-0.001487318,0.1042639;-0.7107543;0.07191512,0.1148651;-0.7585164;0.009941928,-0.06904181;-0.001979923;-0.04036468,-0.0894153;-0.3803111;-0.01120307,-0.09788432;-0.7226075;0.06133305,-0.08134064;-0.7676336;-0.002677843,-0.01235408;0.3987035;0.02887235,0;0;0,-7.722736E-05;0.1996342;0.0120908,0.001928814;0.4995474;0.01611743,0.1167947;0.3771995;-0.004737964,0.2790521;0.1495008;0.01028902,0.4891231;-0.03409418;-0.01343964,-0.1117604;0.3660032;-0.006232489,-0.1898484;0.0971238;-0.00375818,-0.2253966;-0.1799242;-0.02327089,0.07294424;0.005069059;-0.03245679,0.1030855;-0.3697984;0.02200298,0.1132291;-0.7109179;0.09968522,0.1219001;-0.7599361;0.03901433,-0.070127;0.0009545586;-0.03848756,-0.07542741;-0.3744699;0.0200645,-0.08271009;-0.7148549;0.1012127,-0.08153109;-0.7028301;0.00284861,0.0009977309;0.3995602;0.01742212,47.64258
+0;0;0,-0.006852441;0.1990822;0.01786897,-0.01449408;0.4986753;0.0299033,0.103555;0.3763535;0.007295635,0.3633308;0.2795256;-0.03195838,0.6350998;0.3041865;-0.09467585,-0.1230158;0.3601547;0.003027016,-0.1933556;0.08969662;0.02048346,-0.2084076;-0.1887095;-0.005274368,0.07201415;0.009262089;-0.03358832,0.09551135;-0.3686498;-0.001487318,0.1042639;-0.7107543;0.07191512,0.1148651;-0.7585164;0.009941928,-0.06904181;-0.001979923;-0.04036468,-0.0894153;-0.3803111;-0.01120307,-0.09788432;-0.7226075;0.06133305,-0.08134064;-0.7676336;-0.002677843,-0.01235408;0.3987035;0.02887235,0;0;0,-7.722736E-05;0.1996342;0.0120908,0.001928814;0.4995474;0.01611743,0.1167947;0.3771995;-0.004737964,0.2790521;0.1495008;0.01028902,0.4891231;-0.03409418;-0.01343964,-0.1117604;0.3660032;-0.006232489,-0.1898484;0.0971238;-0.00375818,-0.2253966;-0.1799242;-0.02327089,0.07294424;0.005069059;-0.03245679,0.1030855;-0.3697984;0.02200298,0.1132291;-0.7109179;0.09968522,0.1219001;-0.7599361;0.03901433,-0.070127;0.0009545586;-0.03848756,-0.07542741;-0.3744699;0.0200645,-0.08271009;-0.7148549;0.1012127,-0.08153109;-0.7028301;0.00284861,0.0009977309;0.3995602;0.01742212,47.65386
+0;0;0,-0.006852441;0.1990822;0.01786897,-0.01449408;0.4986753;0.0299033,0.103555;0.3763535;0.007295635,0.3633308;0.2795256;-0.03195838,0.6350998;0.3041865;-0.09467585,-0.1230158;0.3601547;0.003027016,-0.1933556;0.08969662;0.02048346,-0.2084076;-0.1887095;-0.005274368,0.07201415;0.009262089;-0.03358832,0.09551135;-0.3686498;-0.001487318,0.1042639;-0.7107543;0.07191512,0.1148651;-0.7585164;0.009941928,-0.06904181;-0.001979923;-0.04036468,-0.0894153;-0.3803111;-0.01120307,-0.09788432;-0.7226075;0.06133305,-0.08134064;-0.7676336;-0.002677843,-0.01235408;0.3987035;0.02887235,0;0;0,0.0004252986;0.1996494;0.01183016,0.003780525;0.4995557;0.01547066,0.1178941;0.3761595;-0.005587822,0.2762506;0.1457382;0.009553071,0.4823367;-0.04262577;-0.0116023,-0.1101842;0.3653836;-0.006832387,-0.1881687;0.09649593;-0.002608377,-0.2240982;-0.180507;-0.02206149,0.0727701;0.005113756;-0.03283842,0.1031151;-0.3697828;0.02130733,0.113205;-0.7106984;0.09988718,0.1217361;-0.7598134;0.03932291,-0.07023733;0.0009601134;-0.0382857,-0.07483921;-0.374667;0.0190124,-0.08267997;-0.7149547;0.1005161,-0.08144425;-0.7029436;0.0021552,0.002367974;0.3995758;0.01689293,47.676
+0;0;0,-0.007296161;0.1990794;0.0177242,-0.01576869;0.4986477;0.02990155,0.1028084;0.3764246;0.007262515,0.3640968;0.2811075;-0.02503287,0.6362136;0.3049662;-0.08654065,-0.1237316;0.3601622;0.002637068,-0.1938309;0.08963376;0.01997102,-0.2090527;-0.1887507;-0.005921172,0.07204437;0.009324158;-0.03350624,0.09504434;-0.368633;-0.001578845,0.1036664;-0.7107731;0.07167313,0.1142959;-0.758399;0.009534262,-0.06885413;-0.001988341;-0.04068359,-0.09017838;-0.3802614;-0.01144668,-0.09861901;-0.7225566;0.06109817,-0.08187244;-0.7676619;-0.002766974,-0.01312995;0.3986889;0.0287706,0;0;0,0.0004472186;0.1996382;0.01201551,0.003721114;0.499543;0.01578563,0.1177338;0.3768967;-0.006789681,0.2727746;0.1443308;0.009807115,0.4718339;-0.05172993;-0.008512093,-0.110221;0.3661744;-0.007524541,-0.1881128;0.09729657;-0.001396738,-0.2245054;-0.1797042;-0.0200017,0.07244877;0.005234715;-0.03352274,0.1027668;-0.3695219;0.02159818,0.11295;-0.7104428;0.1001425,0.120519;-0.7607711;0.04106557,-0.07042818;0.0008595661;-0.03793591,-0.0746054;-0.3748622;0.01877156,-0.08277223;-0.7150697;0.1005772,-0.08173976;-0.703047;0.002211824,0.002359647;0.3995621;0.01719117,47.69882
+0;0;0,-0.007296161;0.1990794;0.0177242,-0.01576869;0.4986477;0.02990155,0.1028084;0.3764246;0.007262515,0.3640968;0.2811075;-0.02503287,0.6362136;0.3049662;-0.08654065,-0.1237316;0.3601622;0.002637068,-0.1938309;0.08963376;0.01997102,-0.2090527;-0.1887507;-0.005921172,0.07204437;0.009324158;-0.03350624,0.09504434;-0.368633;-0.001578845,0.1036664;-0.7107731;0.07167313,0.1142959;-0.758399;0.009534262,-0.06885413;-0.001988341;-0.04068359,-0.09017838;-0.3802614;-0.01144668,-0.09861901;-0.7225566;0.06109817,-0.08187244;-0.7676619;-0.002766974,-0.01312995;0.3986889;0.0287706,0;0;0,0.0004472186;0.1996382;0.01201551,0.003721114;0.499543;0.01578563,0.1177338;0.3768967;-0.006789681,0.2727746;0.1443308;0.009807115,0.4718339;-0.05172993;-0.008512093,-0.110221;0.3661744;-0.007524541,-0.1881128;0.09729657;-0.001396738,-0.2245054;-0.1797042;-0.0200017,0.07244877;0.005234715;-0.03352274,0.1027668;-0.3695219;0.02159818,0.11295;-0.7104428;0.1001425,0.120519;-0.7607711;0.04106557,-0.07042818;0.0008595661;-0.03793591,-0.0746054;-0.3748622;0.01877156,-0.08277223;-0.7150697;0.1005772,-0.08173976;-0.703047;0.002211824,0.002359647;0.3995621;0.01719117,47.72068
+0;0;0,-0.007296161;0.1990794;0.0177242,-0.01576869;0.4986477;0.02990155,0.1028084;0.3764246;0.007262515,0.3640968;0.2811075;-0.02503287,0.6362136;0.3049662;-0.08654065,-0.1237316;0.3601622;0.002637068,-0.1938309;0.08963376;0.01997102,-0.2090527;-0.1887507;-0.005921172,0.07204437;0.009324158;-0.03350624,0.09504434;-0.368633;-0.001578845,0.1036664;-0.7107731;0.07167313,0.1142959;-0.758399;0.009534262,-0.06885413;-0.001988341;-0.04068359,-0.09017838;-0.3802614;-0.01144668,-0.09861901;-0.7225566;0.06109817,-0.08187244;-0.7676619;-0.002766974,-0.01312995;0.3986889;0.0287706,0;0;0,0.0005041221;0.1996263;0.01221075,0.003663131;0.4995281;0.01620605,0.1174693;0.3769565;-0.007625792,0.2702207;0.1429778;0.01028997,0.4618793;-0.06045537;-0.006501051,-0.1101778;0.3663882;-0.007741684,-0.1882743;0.09759885;-0.0004466884,-0.2247801;-0.1795187;-0.01697491,0.07227761;0.005231893;-0.03389063,0.1025461;-0.3694732;0.02160595,0.1127521;-0.7102842;0.1006233,0.1202394;-0.7607028;0.04165909,-0.07063412;0.000812139;-0.03755212,-0.07513493;-0.374788;0.01993107,-0.08318349;-0.7151078;0.1012798,-0.08238075;-0.703071;0.002909683,0.002338914;0.3995461;0.01756737,47.74448
+0;0;0,-0.007468272;0.1990783;0.01766548,-0.01692971;0.4986081;0.03011703,0.1022837;0.3765713;0.008241788,0.3631752;0.2790238;-0.02039535,0.6363727;0.3007892;-0.0777489,-0.1242831;0.3600106;0.002178356,-0.1942585;0.08944926;0.01950007,-0.2093588;-0.1889008;-0.006829144,0.07213889;0.009307472;-0.03330692,0.09508608;-0.3686849;-0.001760181,0.1039389;-0.7108591;0.07130492,0.1144768;-0.7583935;0.009036444,-0.06874978;-0.001973764;-0.0408604,-0.089811;-0.3802592;-0.01159331,-0.09855368;-0.722562;0.06087984,-0.08219686;-0.768169;-0.002492413,-0.01385226;0.3986636;0.02884212,0;0;0,0.0005630808;0.1996266;0.01220289,0.003571566;0.4995275;0.01637757,0.1173496;0.3768516;-0.00783377,0.2676615;0.1413605;0.01088084,0.4523114;-0.06856319;-0.00449614,-0.1104947;0.3655587;-0.005129525,-0.1892904;0.09691656;-0.0003727293,-0.226145;-0.1802949;-0.01435629,0.07211962;0.005245363;-0.03422348,0.1021363;-0.369439;0.02154909,0.1124348;-0.7101423;0.1010177,0.1198177;-0.7605528;0.0420292,-0.07078848;0.000768104;-0.03726125,-0.07590353;-0.3746872;0.02110935,-0.08347022;-0.7151289;0.1019934,-0.08359249;-0.7030881;0.003619373,0.002309602;0.3995439;0.01767836,47.76527
+0;0;0,-0.007468272;0.1990783;0.01766548,-0.01692971;0.4986081;0.03011703,0.1022837;0.3765713;0.008241788,0.3631752;0.2790238;-0.02039535,0.6363727;0.3007892;-0.0777489,-0.1242831;0.3600106;0.002178356,-0.1942585;0.08944926;0.01950007,-0.2093588;-0.1889008;-0.006829144,0.07213889;0.009307472;-0.03330692,0.09508608;-0.3686849;-0.001760181,0.1039389;-0.7108591;0.07130492,0.1144768;-0.7583935;0.009036444,-0.06874978;-0.001973764;-0.0408604,-0.089811;-0.3802592;-0.01159331,-0.09855368;-0.722562;0.06087984,-0.08219686;-0.768169;-0.002492413,-0.01385226;0.3986636;0.02884212,0;0;0,0.0005630808;0.1996266;0.01220289,0.003571566;0.4995275;0.01637757,0.1173496;0.3768516;-0.00783377,0.2676615;0.1413605;0.01088084,0.4523114;-0.06856319;-0.00449614,-0.1104947;0.3655587;-0.005129525,-0.1892904;0.09691656;-0.0003727293,-0.226145;-0.1802949;-0.01435629,0.07211962;0.005245363;-0.03422348,0.1021363;-0.369439;0.02154909,0.1124348;-0.7101423;0.1010177,0.1198177;-0.7605528;0.0420292,-0.07078848;0.000768104;-0.03726125,-0.07590353;-0.3746872;0.02110935,-0.08347022;-0.7151289;0.1019934,-0.08359249;-0.7030881;0.003619373,0.002309602;0.3995439;0.01767836,47.77666
+0;0;0,-0.007468272;0.1990783;0.01766548,-0.01692971;0.4986081;0.03011703,0.1022837;0.3765713;0.008241788,0.3631752;0.2790238;-0.02039535,0.6363727;0.3007892;-0.0777489,-0.1242831;0.3600106;0.002178356,-0.1942585;0.08944926;0.01950007,-0.2093588;-0.1889008;-0.006829144,0.07213889;0.009307472;-0.03330692,0.09508608;-0.3686849;-0.001760181,0.1039389;-0.7108591;0.07130492,0.1144768;-0.7583935;0.009036444,-0.06874978;-0.001973764;-0.0408604,-0.089811;-0.3802592;-0.01159331,-0.09855368;-0.722562;0.06087984,-0.08219686;-0.768169;-0.002492413,-0.01385226;0.3986636;0.02884212,0;0;0,0.0005630808;0.1996266;0.01220289,0.003571566;0.4995275;0.01637757,0.1173496;0.3768516;-0.00783377,0.2676615;0.1413605;0.01088084,0.4523114;-0.06856319;-0.00449614,-0.1104947;0.3655587;-0.005129525,-0.1892904;0.09691656;-0.0003727293,-0.226145;-0.1802949;-0.01435629,0.07211962;0.005245363;-0.03422348,0.1021363;-0.369439;0.02154909,0.1124348;-0.7101423;0.1010177,0.1198177;-0.7605528;0.0420292,-0.07078848;0.000768104;-0.03726125,-0.07590353;-0.3746872;0.02110935,-0.08347022;-0.7151289;0.1019934,-0.08359249;-0.7030881;0.003619373,0.002309602;0.3995439;0.01767836,47.78789
+0;0;0,-0.006833926;0.1991286;0.01735196,-0.01386392;0.4987786;0.02834618,0.1043703;0.3759915;0.008002087,0.3651882;0.2775448;-0.01811914,0.63936;0.2976084;-0.07129136,-0.1225283;0.3604183;0.00185273,-0.1922489;0.08980051;0.01931858,-0.2070697;-0.1884824;-0.007865384,0.07232501;0.009074169;-0.03296594,0.09494055;-0.3689282;-0.001300439,0.1035989;-0.71121;0.07128237,0.1144595;-0.7585841;0.00887005,-0.06868109;-0.001877515;-0.04098028,-0.08975349;-0.380161;-0.01169622,-0.0984932;-0.7224711;0.06074304,-0.08189563;-0.7678661;-0.00281895,-0.01179443;0.3988026;0.02763369,0;0;0,0.0006475565;0.1996158;0.01237399,0.003623772;0.4995138;0.01673744,0.117301;0.3770669;-0.008243276,0.2636359;0.1391174;0.01089204,0.4435049;-0.07516803;-0.0004608268,-0.1101371;0.3656154;-0.006299261,-0.1890856;0.09706485;0.0006112871,-0.2262798;-0.1801738;-0.01185074,0.07188831;0.005463658;-0.03467304,0.1023648;-0.3692962;0.02033781,0.1122992;-0.7096953;0.1011447,0.1204108;-0.7603579;0.04259764,-0.07096088;0.0006332209;-0.03693443,-0.07595712;-0.3748076;0.02153963,-0.08396754;-0.7152761;0.1022677,-0.08388736;-0.7032298;0.003892593,0.002378608;0.3995294;0.01799184,47.81005
+0;0;0,-0.006833926;0.1991286;0.01735196,-0.01386392;0.4987786;0.02834618,0.1043703;0.3759915;0.008002087,0.3651882;0.2775448;-0.01811914,0.63936;0.2976084;-0.07129136,-0.1225283;0.3604183;0.00185273,-0.1922489;0.08980051;0.01931858,-0.2070697;-0.1884824;-0.007865384,0.07232501;0.009074169;-0.03296594,0.09494055;-0.3689282;-0.001300439,0.1035989;-0.71121;0.07128237,0.1144595;-0.7585841;0.00887005,-0.06868109;-0.001877515;-0.04098028,-0.08975349;-0.380161;-0.01169622,-0.0984932;-0.7224711;0.06074304,-0.08189563;-0.7678661;-0.00281895,-0.01179443;0.3988026;0.02763369,0;0;0,0.0006475565;0.1996158;0.01237399,0.003623772;0.4995138;0.01673744,0.117301;0.3770669;-0.008243276,0.2636359;0.1391174;0.01089204,0.4435049;-0.07516803;-0.0004608268,-0.1101371;0.3656154;-0.006299261,-0.1890856;0.09706485;0.0006112871,-0.2262798;-0.1801738;-0.01185074,0.07188831;0.005463658;-0.03467304,0.1023648;-0.3692962;0.02033781,0.1122992;-0.7096953;0.1011447,0.1204108;-0.7603579;0.04259764,-0.07096088;0.0006332209;-0.03693443,-0.07595712;-0.3748076;0.02153963,-0.08396754;-0.7152761;0.1022677,-0.08388736;-0.7032298;0.003892593,0.002378608;0.3995294;0.01799184,47.82131
+0;0;0,-0.006833926;0.1991286;0.01735196,-0.01386392;0.4987786;0.02834618,0.1043703;0.3759915;0.008002087,0.3651882;0.2775448;-0.01811914,0.63936;0.2976084;-0.07129136,-0.1225283;0.3604183;0.00185273,-0.1922489;0.08980051;0.01931858,-0.2070697;-0.1884824;-0.007865384,0.07232501;0.009074169;-0.03296594,0.09494055;-0.3689282;-0.001300439,0.1035989;-0.71121;0.07128237,0.1144595;-0.7585841;0.00887005,-0.06868109;-0.001877515;-0.04098028,-0.08975349;-0.380161;-0.01169622,-0.0984932;-0.7224711;0.06074304,-0.08189563;-0.7678661;-0.00281895,-0.01179443;0.3988026;0.02763369,0;0;0,0.0007301687;0.1996165;0.01235783,0.00360217;0.4995132;0.01691331,0.1171812;0.3768731;-0.008650072,0.259913;0.1367806;0.01092494,0.4345125;-0.08189897;0.001214494,-0.1099746;0.3657179;-0.006925218,-0.1889106;0.09720892;0.001562865,-0.2263431;-0.1801011;-0.008336017,0.07174797;0.005545865;-0.03494956,0.1020095;-0.3692415;0.01999304,0.1119936;-0.7094537;0.101577,0.1198333;-0.7600299;0.04287413,-0.07120079;0.0005114431;-0.0364717,-0.07620756;-0.3749271;0.02201615,-0.08436976;-0.7153965;0.1027252,-0.08423381;-0.7033451;0.004349254,0.002413406;0.3995272;0.01809212,47.84364
+0;0;0,-0.007047702;0.1991252;0.0173055,-0.01548803;0.498721;0.02890711,0.1034406;0.3762023;0.008043645,0.3639283;0.2757212;-0.01316207,0.6391215;0.2944232;-0.06131741,-0.1233404;0.3603529;0.001591794,-0.1928012;0.08965299;0.01881815,-0.207874;-0.1885793;-0.008743456,0.07246171;0.009058469;-0.03266871,0.09469341;-0.3690112;-0.001538742,0.1034811;-0.7113168;0.07091583,0.1155734;-0.7589864;0.009099923,-0.06858968;-0.001843966;-0.0411346,-0.08973686;-0.3801237;-0.01185642,-0.09846222;-0.7224379;0.06056526,-0.08164098;-0.7673299;-0.003530242,-0.01273686;0.3987641;0.02788705,0;0;0,0.0007301687;0.1996165;0.01235783,0.00360217;0.4995132;0.01691331,0.1171812;0.3768731;-0.008650072,0.259913;0.1367806;0.01092494,0.4345125;-0.08189897;0.001214494,-0.1099746;0.3657179;-0.006925218,-0.1889106;0.09720892;0.001562865,-0.2263431;-0.1801011;-0.008336017,0.07174797;0.005545865;-0.03494956,0.1020095;-0.3692415;0.01999304,0.1119936;-0.7094537;0.101577,0.1198333;-0.7600299;0.04287413,-0.07120079;0.0005114431;-0.0364717,-0.07620756;-0.3749271;0.02201615,-0.08436976;-0.7153965;0.1027252,-0.08423381;-0.7033451;0.004349254,0.002413406;0.3995272;0.01809212,47.85479
+0;0;0,-0.007047702;0.1991252;0.0173055,-0.01548803;0.498721;0.02890711,0.1034406;0.3762023;0.008043645,0.3639283;0.2757212;-0.01316207,0.6391215;0.2944232;-0.06131741,-0.1233404;0.3603529;0.001591794,-0.1928012;0.08965299;0.01881815,-0.207874;-0.1885793;-0.008743456,0.07246171;0.009058469;-0.03266871,0.09469341;-0.3690112;-0.001538742,0.1034811;-0.7113168;0.07091583,0.1155734;-0.7589864;0.009099923,-0.06858968;-0.001843966;-0.0411346,-0.08973686;-0.3801237;-0.01185642,-0.09846222;-0.7224379;0.06056526,-0.08164098;-0.7673299;-0.003530242,-0.01273686;0.3987641;0.02788705,0;0;0,0.000852115;0.199619;0.01230898,0.003776667;0.4995152;0.0169,0.117214;0.376763;-0.009209292,0.256783;0.1349017;0.01137284,0.4228894;-0.09043384;0.005666518,-0.1097584;0.3655707;-0.006931009,-0.1876661;0.09680572;0.002854971,-0.2262619;-0.180396;-0.005486066,0.07162888;0.005681069;-0.03517142,0.1018074;-0.3691196;0.01972589,0.111824;-0.7092606;0.1016026,0.1192908;-0.7605097;0.04378534,-0.07129823;0.0004195512;-0.03628204,-0.07641803;-0.3750325;0.02210936,-0.08460034;-0.7155;0.1028246,-0.08462743;-0.7034507;0.004448906,0.002591481;0.3995289;0.01805602,47.86598
+0;0;0,-0.007047702;0.1991252;0.0173055,-0.01548803;0.498721;0.02890711,0.1034406;0.3762023;0.008043645,0.3639283;0.2757212;-0.01316207,0.6391215;0.2944232;-0.06131741,-0.1233404;0.3603529;0.001591794,-0.1928012;0.08965299;0.01881815,-0.207874;-0.1885793;-0.008743456,0.07246171;0.009058469;-0.03266871,0.09469341;-0.3690112;-0.001538742,0.1034811;-0.7113168;0.07091583,0.1155734;-0.7589864;0.009099923,-0.06858968;-0.001843966;-0.0411346,-0.08973686;-0.3801237;-0.01185642,-0.09846222;-0.7224379;0.06056526,-0.08164098;-0.7673299;-0.003530242,-0.01273686;0.3987641;0.02788705,0;0;0,0.000852115;0.199619;0.01230898,0.003776667;0.4995152;0.0169,0.117214;0.376763;-0.009209292,0.256783;0.1349017;0.01137284,0.4228894;-0.09043384;0.005666518,-0.1097584;0.3655707;-0.006931009,-0.1876661;0.09680572;0.002854971,-0.2262619;-0.180396;-0.005486066,0.07162888;0.005681069;-0.03517142,0.1018074;-0.3691196;0.01972589,0.111824;-0.7092606;0.1016026,0.1192908;-0.7605097;0.04378534,-0.07129823;0.0004195512;-0.03628204,-0.07641803;-0.3750325;0.02210936,-0.08460034;-0.7155;0.1028246,-0.08462743;-0.7034507;0.004448906,0.002591481;0.3995289;0.01805602,47.88822
+0;0;0,-0.007251788;0.199132;0.01714269,-0.01654095;0.4986998;0.02883554,0.1027864;0.3762932;0.007960808,0.3629316;0.2739124;-0.00761643,0.6384163;0.2921871;-0.05424536,-0.1239159;0.3602505;0.001174856,-0.1931771;0.08950487;0.01848698,-0.2078096;-0.1886735;-0.009844787,0.07256274;0.009158272;-0.03241565,0.09449091;-0.3688937;-0.0008585453,0.103015;-0.7112432;0.07141974,0.1036747;-0.6985055;-0.02707686,-0.06849298;-0.001846019;-0.04129533,-0.08962519;-0.3801188;-0.01191615,-0.09848106;-0.7224555;0.06038257,-0.0814636;-0.7670894;-0.003961824,-0.01341637;0.3987543;0.02777004,0;0;0,0.001250641;0.1996262;0.01215831,0.004929503;0.4995164;0.01666873,0.1178339;0.3759351;-0.009921523,0.2543466;0.1324282;0.01172799,0.4146482;-0.09712766;0.008988353,-0.1087581;0.364995;-0.00679877,-0.1867629;0.09629342;0.003910866,-0.2250866;-0.1809686;-0.003643501,0.07148805;0.005707308;-0.03545258,0.1015884;-0.3690288;0.01992583,0.1111834;-0.7092289;0.1016074,0.1187399;-0.7599687;0.04309259,-0.07148255;0.0003936449;-0.03591782,-0.07655975;-0.3751155;0.02210845,-0.08490034;-0.715566;0.102879,-0.08509225;-0.7035369;0.004507184,0.003495336;0.3995333;0.01782385,47.91051
+0;0;0,-0.007251788;0.199132;0.01714269,-0.01654095;0.4986998;0.02883554,0.1027864;0.3762932;0.007960808,0.3629316;0.2739124;-0.00761643,0.6384163;0.2921871;-0.05424536,-0.1239159;0.3602505;0.001174856,-0.1931771;0.08950487;0.01848698,-0.2078096;-0.1886735;-0.009844787,0.07256274;0.009158272;-0.03241565,0.09449091;-0.3688937;-0.0008585453,0.103015;-0.7112432;0.07141974,0.1036747;-0.6985055;-0.02707686,-0.06849298;-0.001846019;-0.04129533,-0.08962519;-0.3801188;-0.01191615,-0.09848106;-0.7224555;0.06038257,-0.0814636;-0.7670894;-0.003961824,-0.01341637;0.3987543;0.02777004,0;0;0,0.001250641;0.1996262;0.01215831,0.004929503;0.4995164;0.01666873,0.1178339;0.3759351;-0.009921523,0.2543466;0.1324282;0.01172799,0.4146482;-0.09712766;0.008988353,-0.1087581;0.364995;-0.00679877,-0.1867629;0.09629342;0.003910866,-0.2250866;-0.1809686;-0.003643501,0.07148805;0.005707308;-0.03545258,0.1015884;-0.3690288;0.01992583,0.1111834;-0.7092289;0.1016074,0.1187399;-0.7599687;0.04309259,-0.07148255;0.0003936449;-0.03591782,-0.07655975;-0.3751155;0.02210845,-0.08490034;-0.715566;0.102879,-0.08509225;-0.7035369;0.004507184,0.003495336;0.3995333;0.01782385,47.92189
+0;0;0,-0.007251788;0.199132;0.01714269,-0.01654095;0.4986998;0.02883554,0.1027864;0.3762932;0.007960808,0.3629316;0.2739124;-0.00761643,0.6384163;0.2921871;-0.05424536,-0.1239159;0.3602505;0.001174856,-0.1931771;0.08950487;0.01848698,-0.2078096;-0.1886735;-0.009844787,0.07256274;0.009158272;-0.03241565,0.09449091;-0.3688937;-0.0008585453,0.103015;-0.7112432;0.07141974,0.1036747;-0.6985055;-0.02707686,-0.06849298;-0.001846019;-0.04129533,-0.08962519;-0.3801188;-0.01191615,-0.09848106;-0.7224555;0.06038257,-0.0814636;-0.7670894;-0.003961824,-0.01341637;0.3987543;0.02777004,0;0;0,0.001271421;0.1996239;0.01219392,0.004824728;0.4995134;0.01685001,0.1175195;0.375625;-0.01058402,0.2513173;0.1307107;0.01211215,0.4031423;-0.1045428;0.0143335,-0.1088443;0.3650516;-0.006609946,-0.1856838;0.09605604;0.005098598,-0.2251686;-0.1810459;-0.002349037,0.07131048;0.005750173;-0.03580155,0.1013992;-0.3689836;0.01959904,0.1107757;-0.7090248;0.1019644,0.1183484;-0.75925;0.04274792,-0.07165819;0.0003558045;-0.03556652,-0.07681453;-0.3751602;0.02240868,-0.0851673;-0.7155982;0.1032305,-0.08563417;-0.7035637;0.004858673,0.00344029;0.3995291;0.01795585,47.94403
+0;0;0,-0.007366219;0.1991388;0.01701448,-0.01693015;0.4986979;0.02871725,0.1026388;0.3763864;0.008544546,0.3624918;0.272938;-0.004676919,0.6385188;0.2902847;-0.04835989,-0.1241589;0.3602604;0.0008565225,-0.1930889;0.08941925;0.01799494,-0.2079677;-0.1887718;-0.01008299,0.07270167;0.009237105;-0.03208026,0.09453105;-0.3688806;-0.001250785,0.1031075;-0.7112836;0.07076748,0.1040231;-0.6985557;-0.02772535,-0.06838738;-0.001829744;-0.04147069,-0.08912759;-0.3801134;-0.01195257,-0.09873023;-0.7224703;0.06015535,-0.08100183;-0.7670303;-0.004082568,-0.01370144;0.3987559;0.02763807,0;0;0,0.001287825;0.1996199;0.01225761,0.004743056;0.4995081;0.01706766,0.1174761;0.3754157;-0.01024663,0.2491705;0.1293354;0.01213743,0.3927794;-0.1109584;0.01808698,-0.1088825;0.3650987;-0.0065392,-0.1857375;0.09615108;0.006130164,-0.2246594;-0.1810347;-0.001160028,0.07109956;0.00571743;-0.03622378,0.1011243;-0.3689011;0.01998549,0.1103179;-0.7089585;0.1023045,0.1197018;-0.7604843;0.04516012,-0.07183386;0.0003271108;-0.03521065,-0.07705065;-0.3752407;0.0224225,-0.08541306;-0.7156218;0.1034828,-0.08577535;-0.7035819;0.005109444,0.003397211;0.3995227;0.01812357,47.96641
+0;0;0,-0.007366219;0.1991388;0.01701448,-0.01693015;0.4986979;0.02871725,0.1026388;0.3763864;0.008544546,0.3624918;0.272938;-0.004676919,0.6385188;0.2902847;-0.04835989,-0.1241589;0.3602604;0.0008565225,-0.1930889;0.08941925;0.01799494,-0.2079677;-0.1887718;-0.01008299,0.07270167;0.009237105;-0.03208026,0.09453105;-0.3688806;-0.001250785,0.1031075;-0.7112836;0.07076748,0.1040231;-0.6985557;-0.02772535,-0.06838738;-0.001829744;-0.04147069,-0.08912759;-0.3801134;-0.01195257,-0.09873023;-0.7224703;0.06015535,-0.08100183;-0.7670303;-0.004082568,-0.01370144;0.3987559;0.02763807,0;0;0,0.001287825;0.1996199;0.01225761,0.004743056;0.4995081;0.01706766,0.1174761;0.3754157;-0.01024663,0.2491705;0.1293354;0.01213743,0.3927794;-0.1109584;0.01808698,-0.1088825;0.3650987;-0.0065392,-0.1857375;0.09615108;0.006130164,-0.2246594;-0.1810347;-0.001160028,0.07109956;0.00571743;-0.03622378,0.1011243;-0.3689011;0.01998549,0.1103179;-0.7089585;0.1023045,0.1197018;-0.7604843;0.04516012,-0.07183386;0.0003271108;-0.03521065,-0.07705065;-0.3752407;0.0224225,-0.08541306;-0.7156218;0.1034828,-0.08577535;-0.7035819;0.005109444,0.003397211;0.3995227;0.01812357,47.97763
+0;0;0,-0.007366219;0.1991388;0.01701448,-0.01693015;0.4986979;0.02871725,0.1026388;0.3763864;0.008544546,0.3624918;0.272938;-0.004676919,0.6385188;0.2902847;-0.04835989,-0.1241589;0.3602604;0.0008565225,-0.1930889;0.08941925;0.01799494,-0.2079677;-0.1887718;-0.01008299,0.07270167;0.009237105;-0.03208026,0.09453105;-0.3688806;-0.001250785,0.1031075;-0.7112836;0.07076748,0.1040231;-0.6985557;-0.02772535,-0.06838738;-0.001829744;-0.04147069,-0.08912759;-0.3801134;-0.01195257,-0.09873023;-0.7224703;0.06015535,-0.08100183;-0.7670303;-0.004082568,-0.01370144;0.3987559;0.02763807,0;0;0,0.001245517;0.1996149;0.01234184,0.004618211;0.4995024;0.01724149,0.1173804;0.3752733;-0.009970305,0.2479069;0.1285693;0.01239023,0.3850298;-0.1154178;0.02061187,-0.1089545;0.3651334;-0.006563187,-0.185683;0.09616712;0.006470691,-0.224374;-0.1810653;-0.0002522995,0.07107932;0.005751965;-0.03625802,0.1012862;-0.3689011;0.01962256,0.1103317;-0.708824;0.1025116,0.1194229;-0.7605147;0.04555567,-0.07192091;0.0002783994;-0.03503291,-0.07719998;-0.3752937;0.02256666,-0.0855414;-0.7156651;0.1036701,-0.08579528;-0.7036207;0.005295642,0.003299289;0.3995164;0.01827435,47.99977
+0;0;0,-0.007434417;0.1991424;0.01694256,-0.0172239;0.4986933;0.0286865,0.1024417;0.3762699;0.008843517,0.3623419;0.2725984;-0.00135629,0.6386527;0.2884442;-0.04379771,-0.1242932;0.3601995;0.0004741121,-0.1931408;0.08933485;0.01757318,-0.2073601;-0.1888782;-0.01062776,0.07283397;0.009186039;-0.03179353,0.09496997;-0.3689804;-0.001790931,0.1034478;-0.7113752;0.0702779,0.1045534;-0.6986586;-0.02821099,-0.0682191;-0.001806404;-0.04174796,-0.08862069;-0.3801041;-0.01217396,-0.09842885;-0.7225044;0.0596996,-0.08077765;-0.7671183;-0.004496995,-0.01393491;0.3987536;0.02757792,0;0;0,0.001245517;0.1996149;0.01234184,0.004618211;0.4995024;0.01724149,0.1173804;0.3752733;-0.009970305,0.2479069;0.1285693;0.01239023,0.3850298;-0.1154178;0.02061187,-0.1089545;0.3651334;-0.006563187,-0.185683;0.09616712;0.006470691,-0.224374;-0.1810653;-0.0002522995,0.07107932;0.005751965;-0.03625802,0.1012862;-0.3689011;0.01962256,0.1103317;-0.708824;0.1025116,0.1194229;-0.7605147;0.04555567,-0.07192091;0.0002783994;-0.03503291,-0.07719998;-0.3752937;0.02256666,-0.0855414;-0.7156651;0.1036701,-0.08579528;-0.7036207;0.005295642,0.003299289;0.3995164;0.01827435,48.01133
+0;0;0,-0.007434417;0.1991424;0.01694256,-0.0172239;0.4986933;0.0286865,0.1024417;0.3762699;0.008843517,0.3623419;0.2725984;-0.00135629,0.6386527;0.2884442;-0.04379771,-0.1242932;0.3601995;0.0004741121,-0.1931408;0.08933485;0.01757318,-0.2073601;-0.1888782;-0.01062776,0.07283397;0.009186039;-0.03179353,0.09496997;-0.3689804;-0.001790931,0.1034478;-0.7113752;0.0702779,0.1045534;-0.6986586;-0.02821099,-0.0682191;-0.001806404;-0.04174796,-0.08862069;-0.3801041;-0.01217396,-0.09842885;-0.7225044;0.0596996,-0.08077765;-0.7671183;-0.004496995,-0.01393491;0.3987536;0.02757792,0;0;0,0.001245517;0.1996149;0.01234184,0.004618211;0.4995024;0.01724149,0.1173804;0.3752733;-0.009970305,0.2479069;0.1285693;0.01239023,0.3850298;-0.1154178;0.02061187,-0.1089545;0.3651334;-0.006563187,-0.185683;0.09616712;0.006470691,-0.224374;-0.1810653;-0.0002522995,0.07107932;0.005751965;-0.03625802,0.1012862;-0.3689011;0.01962256,0.1103317;-0.708824;0.1025116,0.1194229;-0.7605147;0.04555567,-0.07192091;0.0002783994;-0.03503291,-0.07719998;-0.3752937;0.02256666,-0.0855414;-0.7156651;0.1036701,-0.08579528;-0.7036207;0.005295642,0.003299289;0.3995164;0.01827435,48.02241
+0;0;0,-0.007434417;0.1991424;0.01694256,-0.0172239;0.4986933;0.0286865,0.1024417;0.3762699;0.008843517,0.3623419;0.2725984;-0.00135629,0.6386527;0.2884442;-0.04379771,-0.1242932;0.3601995;0.0004741121,-0.1931408;0.08933485;0.01757318,-0.2073601;-0.1888782;-0.01062776,0.07283397;0.009186039;-0.03179353,0.09496997;-0.3689804;-0.001790931,0.1034478;-0.7113752;0.0702779,0.1045534;-0.6986586;-0.02821099,-0.0682191;-0.001806404;-0.04174796,-0.08862069;-0.3801041;-0.01217396,-0.09842885;-0.7225044;0.0596996,-0.08077765;-0.7671183;-0.004496995,-0.01393491;0.3987536;0.02757792,0;0;0,0.001093326;0.1996073;0.01247885,0.004300272;0.4994937;0.01750072,0.1170944;0.3752027;-0.00968905,0.2461746;0.1277154;0.01240957,0.3811387;-0.1173968;0.02264259,-0.1091781;0.3653287;-0.006876683,-0.1861623;0.09646848;0.006820151,-0.2242323;-0.1808705;0.001008269,0.07105864;0.005792398;-0.03629212,0.1010386;-0.3688666;0.01967081,0.1100138;-0.7087278;0.1028198,0.1193249;-0.7605231;0.04604975,-0.0720173;0.0002305302;-0.03483466,-0.0776566;-0.3753215;0.02286179,-0.08640759;-0.7157187;0.1038131,-0.08647827;-0.7036713;0.005437791,0.003015135;0.3995071;0.01851067,48.04461
+0;0;0,-0.006931086;0.1991965;0.01651407,-0.01457892;0.4988593;0.02672915,0.1042182;0.3761237;0.008415999,0.3639065;0.2717366;0.000334383,0.6405999;0.2858108;-0.04019527,-0.1229347;0.3606256;0.0001342744,-0.1913973;0.08965856;0.0171563,-0.2054941;-0.1885321;-0.01132623,0.07299669;0.009178364;-0.03142038,0.09514962;-0.3690633;-0.002395367,0.1035751;-0.7114727;0.06961037,0.1048469;-0.6988057;-0.02886781,-0.06800607;-0.001725411;-0.04209746,-0.08871255;-0.3800168;-0.01265522,-0.09875008;-0.722402;0.05925893,-0.0809949;-0.7672593;-0.004624829,-0.01224206;0.3988877;0.02627142,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006931086;0.1991965;0.01651407,-0.01457892;0.4988593;0.02672915,0.1042182;0.3761237;0.008415999,0.3639065;0.2717366;0.000334383,0.6405999;0.2858108;-0.04019527,-0.1229347;0.3606256;0.0001342744,-0.1913973;0.08965856;0.0171563,-0.2054941;-0.1885321;-0.01132623,0.07299669;0.009178364;-0.03142038,0.09514962;-0.3690633;-0.002395367,0.1035751;-0.7114727;0.06961037,0.1048469;-0.6988057;-0.02886781,-0.06800607;-0.001725411;-0.04209746,-0.08871255;-0.3800168;-0.01265522,-0.09875008;-0.722402;0.05925893,-0.0809949;-0.7672593;-0.004624829,-0.01224206;0.3988877;0.02627142,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006931086;0.1991965;0.01651407,-0.01457892;0.4988593;0.02672915,0.1042182;0.3761237;0.008415999,0.3639065;0.2717366;0.000334383,0.6405999;0.2858108;-0.04019527,-0.1229347;0.3606256;0.0001342744,-0.1913973;0.08965856;0.0171563,-0.2054941;-0.1885321;-0.01132623,0.07299669;0.009178364;-0.03142038,0.09514962;-0.3690633;-0.002395367,0.1035751;-0.7114727;0.06961037,0.1048469;-0.6988057;-0.02886781,-0.06800607;-0.001725411;-0.04209746,-0.08871255;-0.3800168;-0.01265522,-0.09875008;-0.722402;0.05925893,-0.0809949;-0.7672593;-0.004624829,-0.01224206;0.3988877;0.02627142,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.007117242;0.1992041;0.01634258,-0.01552823;0.4988431;0.02672094,0.1037247;0.376181;0.008799616,0.3631805;0.2711081;0.002290966,0.640268;0.2833836;-0.03607392,-0.1234712;0.3607874;-0.0003994629,-0.1916701;0.08973056;0.01624705,-0.20614;-0.1884887;-0.011765,0.07308072;0.009115651;-0.03124282,0.09506409;-0.3691902;-0.002933351,0.1034681;-0.7115915;0.06911319,0.1152288;-0.759499;0.00753298,-0.06788754;-0.00167587;-0.04229034,-0.08854571;-0.3799926;-0.01314162,-0.09871791;-0.7223657;0.05881101,-0.08096258;-0.7672818;-0.005003877,-0.01282208;0.3988813;0.02616434,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.007117242;0.1992041;0.01634258,-0.01552823;0.4988431;0.02672094,0.1037247;0.376181;0.008799616,0.3631805;0.2711081;0.002290966,0.640268;0.2833836;-0.03607392,-0.1234712;0.3607874;-0.0003994629,-0.1916701;0.08973056;0.01624705,-0.20614;-0.1884887;-0.011765,0.07308072;0.009115651;-0.03124282,0.09506409;-0.3691902;-0.002933351,0.1034681;-0.7115915;0.06911319,0.1152288;-0.759499;0.00753298,-0.06788754;-0.00167587;-0.04229034,-0.08854571;-0.3799926;-0.01314162,-0.09871791;-0.7223657;0.05881101,-0.08096258;-0.7672818;-0.005003877,-0.01282208;0.3988813;0.02616434,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.007117242;0.1992041;0.01634258,-0.01552823;0.4988431;0.02672094,0.1037247;0.376181;0.008799616,0.3631805;0.2711081;0.002290966,0.640268;0.2833836;-0.03607392,-0.1234712;0.3607874;-0.0003994629,-0.1916701;0.08973056;0.01624705,-0.20614;-0.1884887;-0.011765,0.07308072;0.009115651;-0.03124282,0.09506409;-0.3691902;-0.002933351,0.1034681;-0.7115915;0.06911319,0.1152288;-0.759499;0.00753298,-0.06788754;-0.00167587;-0.04229034,-0.08854571;-0.3799926;-0.01314162,-0.09871791;-0.7223657;0.05881101,-0.08096258;-0.7672818;-0.005003877,-0.01282208;0.3988813;0.02616434,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006756421;0.1992477;0.01595894,-0.01366691;0.4989534;0.02534599,0.1050253;0.3762411;0.008546859,0.3637847;0.2693318;0.004813196,0.6410941;0.2802784;-0.03233136,-0.1224651;0.3610327;-0.0007357001,-0.1901305;0.08983919;0.01586249,-0.2049697;-0.1883591;-0.01216397,0.07311401;0.00918811;-0.03114354,0.09527843;-0.3691202;-0.003009632,0.1036891;-0.7116131;0.06859961,0.1053468;-0.6989861;-0.02986579,-0.06771237;-0.00170839;-0.04256897,-0.08811489;-0.3800282;-0.01327953,-0.09802868;-0.7224815;0.05832659,-0.08060488;-0.7672358;-0.005768694,-0.01161743;0.3989745;0.02521045,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006756421;0.1992477;0.01595894,-0.01366691;0.4989534;0.02534599,0.1050253;0.3762411;0.008546859,0.3637847;0.2693318;0.004813196,0.6410941;0.2802784;-0.03233136,-0.1224651;0.3610327;-0.0007357001,-0.1901305;0.08983919;0.01586249,-0.2049697;-0.1883591;-0.01216397,0.07311401;0.00918811;-0.03114354,0.09527843;-0.3691202;-0.003009632,0.1036891;-0.7116131;0.06859961,0.1053468;-0.6989861;-0.02986579,-0.06771237;-0.00170839;-0.04256897,-0.08811489;-0.3800282;-0.01327953,-0.09802868;-0.7224815;0.05832659,-0.08060488;-0.7672358;-0.005768694,-0.01161743;0.3989745;0.02521045,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006756421;0.1992477;0.01595894,-0.01366691;0.4989534;0.02534599,0.1050253;0.3762411;0.008546859,0.3637847;0.2693318;0.004813196,0.6410941;0.2802784;-0.03233136,-0.1224651;0.3610327;-0.0007357001,-0.1901305;0.08983919;0.01586249,-0.2049697;-0.1883591;-0.01216397,0.07311401;0.00918811;-0.03114354,0.09527843;-0.3691202;-0.003009632,0.1036891;-0.7116131;0.06859961,0.1053468;-0.6989861;-0.02986579,-0.06771237;-0.00170839;-0.04256897,-0.08811489;-0.3800282;-0.01327953,-0.09802868;-0.7224815;0.05832659,-0.08060488;-0.7672358;-0.005768694,-0.01161743;0.3989745;0.02521045,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006426168;0.1992796;0.01569537,-0.01238957;0.4990247;0.02443239,0.1060221;0.3760957;0.008675119,0.3644335;0.2683205;0.00583895,0.6418942;0.2775069;-0.0306463,-0.1216884;0.3612014;-0.0009410847,-0.1891935;0.08997393;0.01575307,-0.2039081;-0.1882146;-0.01243604,0.0731441;0.00923068;-0.03106017,0.09539491;-0.3690961;-0.003243374,0.1037466;-0.7116024;0.0683081,0.1056015;-0.6990054;-0.03014848,-0.06761728;-0.001719701;-0.04271937,-0.08801676;-0.3800414;-0.0134519,-0.09789818;-0.7225094;0.05808806,-0.080403;-0.7671974;-0.00606513,-0.01069325;0.3990391;0.02452214,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006426168;0.1992796;0.01569537,-0.01238957;0.4990247;0.02443239,0.1060221;0.3760957;0.008675119,0.3644335;0.2683205;0.00583895,0.6418942;0.2775069;-0.0306463,-0.1216884;0.3612014;-0.0009410847,-0.1891935;0.08997393;0.01575307,-0.2039081;-0.1882146;-0.01243604,0.0731441;0.00923068;-0.03106017,0.09539491;-0.3690961;-0.003243374,0.1037466;-0.7116024;0.0683081,0.1056015;-0.6990054;-0.03014848,-0.06761728;-0.001719701;-0.04271937,-0.08801676;-0.3800414;-0.0134519,-0.09789818;-0.7225094;0.05808806,-0.080403;-0.7671974;-0.00606513,-0.01069325;0.3990391;0.02452214,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006426168;0.1992796;0.01569537,-0.01238957;0.4990247;0.02443239,0.1060221;0.3760957;0.008675119,0.3644335;0.2683205;0.00583895,0.6418942;0.2775069;-0.0306463,-0.1216884;0.3612014;-0.0009410847,-0.1891935;0.08997393;0.01575307,-0.2039081;-0.1882146;-0.01243604,0.0731441;0.00923068;-0.03106017,0.09539491;-0.3690961;-0.003243374,0.1037466;-0.7116024;0.0683081,0.1056015;-0.6990054;-0.03014848,-0.06761728;-0.001719701;-0.04271937,-0.08801676;-0.3800414;-0.0134519,-0.09789818;-0.7225094;0.05808806,-0.080403;-0.7671974;-0.00606513,-0.01069325;0.3990391;0.02452214,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006143559;0.1993116;0.01539923,-0.01170655;0.4990739;0.023839,0.1066215;0.3761173;0.00861362,0.3643301;0.2666423;0.007381761,0.6418545;0.2743638;-0.02895772,-0.1211777;0.3612739;-0.001350721,-0.1881388;0.08989903;0.01513866,-0.2033467;-0.1882914;-0.01276827,0.07315473;0.009274319;-0.03102213,0.09574003;-0.3690719;-0.003744721,0.1042231;-0.7115505;0.06792425,0.1062355;-0.6989876;-0.0305232,-0.06750432;-0.001697241;-0.04289855,-0.087909;-0.3800359;-0.01385579,-0.09793378;-0.7225276;0.05755094,-0.08026019;-0.7671678;-0.006608956,-0.01014962;0.3990861;0.02400649,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006143559;0.1993116;0.01539923,-0.01170655;0.4990739;0.023839,0.1066215;0.3761173;0.00861362,0.3643301;0.2666423;0.007381761,0.6418545;0.2743638;-0.02895772,-0.1211777;0.3612739;-0.001350721,-0.1881388;0.08989903;0.01513866,-0.2033467;-0.1882914;-0.01276827,0.07315473;0.009274319;-0.03102213,0.09574003;-0.3690719;-0.003744721,0.1042231;-0.7115505;0.06792425,0.1062355;-0.6989876;-0.0305232,-0.06750432;-0.001697241;-0.04289855,-0.087909;-0.3800359;-0.01385579,-0.09793378;-0.7225276;0.05755094,-0.08026019;-0.7671678;-0.006608956,-0.01014962;0.3990861;0.02400649,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006143559;0.1993116;0.01539923,-0.01170655;0.4990739;0.023839,0.1066215;0.3761173;0.00861362,0.3643301;0.2666423;0.007381761,0.6418545;0.2743638;-0.02895772,-0.1211777;0.3612739;-0.001350721,-0.1881388;0.08989903;0.01513866,-0.2033467;-0.1882914;-0.01276827,0.07315473;0.009274319;-0.03102213,0.09574003;-0.3690719;-0.003744721,0.1042231;-0.7115505;0.06792425,0.1062355;-0.6989876;-0.0305232,-0.06750432;-0.001697241;-0.04289855,-0.087909;-0.3800359;-0.01385579,-0.09793378;-0.7225276;0.05755094,-0.08026019;-0.7671678;-0.006608956,-0.01014962;0.3990861;0.02400649,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006454093;0.199311;0.01527917,-0.0135413;0.4990304;0.02429525,0.1055579;0.3765238;0.00857544,0.3623227;0.2648475;0.009089243,0.6400058;0.2693633;-0.02657141,-0.1216238;0.3602501;-0.002631234,-0.1923166;0.08980861;0.01361437,-0.2082571;-0.1883667;-0.01403386,0.07309883;0.009251893;-0.03116028,0.09545749;-0.3690895;-0.003631115,0.1039698;-0.7117381;0.06721745,0.106099;-0.6991588;-0.03123045,-0.0674968;-0.001625267;-0.04291317,-0.08831906;-0.3799771;-0.01434264,-0.09826601;-0.7225263;0.05679887,-0.08057719;-0.7676482;-0.006792188,-0.01127442;0.3990562;0.02414747,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006454093;0.199311;0.01527917,-0.0135413;0.4990304;0.02429525,0.1055579;0.3765238;0.00857544,0.3623227;0.2648475;0.009089243,0.6400058;0.2693633;-0.02657141,-0.1216238;0.3602501;-0.002631234,-0.1923166;0.08980861;0.01361437,-0.2082571;-0.1883667;-0.01403386,0.07309883;0.009251893;-0.03116028,0.09545749;-0.3690895;-0.003631115,0.1039698;-0.7117381;0.06721745,0.106099;-0.6991588;-0.03123045,-0.0674968;-0.001625267;-0.04291317,-0.08831906;-0.3799771;-0.01434264,-0.09826601;-0.7225263;0.05679887,-0.08057719;-0.7676482;-0.006792188,-0.01127442;0.3990562;0.02414747,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006454093;0.199311;0.01527917,-0.0135413;0.4990304;0.02429525,0.1055579;0.3765238;0.00857544,0.3623227;0.2648475;0.009089243,0.6400058;0.2693633;-0.02657141,-0.1216238;0.3602501;-0.002631234,-0.1923166;0.08980861;0.01361437,-0.2082571;-0.1883667;-0.01403386,0.07309883;0.009251893;-0.03116028,0.09545749;-0.3690895;-0.003631115,0.1039698;-0.7117381;0.06721745,0.106099;-0.6991588;-0.03123045,-0.0674968;-0.001625267;-0.04291317,-0.08831906;-0.3799771;-0.01434264,-0.09826601;-0.7225263;0.05679887,-0.08057719;-0.7676482;-0.006792188,-0.01127442;0.3990562;0.02414747,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006522572;0.1993128;0.01522782,-0.01418515;0.499018;0.02426298,0.1051478;0.3764921;0.008546831,0.3610006;0.2627462;0.009653125,0.6387888;0.2635284;-0.02546181,-0.1219433;0.3602223;-0.003015805,-0.1921284;0.08965418;0.01332184,-0.2079509;-0.188534;-0.01426394,0.07312545;0.009235494;-0.03110263,0.09556851;-0.3691178;-0.0038065,0.1039741;-0.7117843;0.06696805,0.1061986;-0.6992059;-0.03147756,-0.06745649;-0.001580511;-0.04297817,-0.08817383;-0.379937;-0.01439203,-0.09820389;-0.7225239;0.05655547,-0.08083375;-0.7675177;-0.007274106,-0.01168276;0.3990494;0.0240964,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006522572;0.1993128;0.01522782,-0.01418515;0.499018;0.02426298,0.1051478;0.3764921;0.008546831,0.3610006;0.2627462;0.009653125,0.6387888;0.2635284;-0.02546181,-0.1219433;0.3602223;-0.003015805,-0.1921284;0.08965418;0.01332184,-0.2079509;-0.188534;-0.01426394,0.07312545;0.009235494;-0.03110263,0.09556851;-0.3691178;-0.0038065,0.1039741;-0.7117843;0.06696805,0.1061986;-0.6992059;-0.03147756,-0.06745649;-0.001580511;-0.04297817,-0.08817383;-0.379937;-0.01439203,-0.09820389;-0.7225239;0.05655547,-0.08083375;-0.7675177;-0.007274106,-0.01168276;0.3990494;0.0240964,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006522572;0.1993128;0.01522782,-0.01418515;0.499018;0.02426298,0.1051478;0.3764921;0.008546831,0.3610006;0.2627462;0.009653125,0.6387888;0.2635284;-0.02546181,-0.1219433;0.3602223;-0.003015805,-0.1921284;0.08965418;0.01332184,-0.2079509;-0.188534;-0.01426394,0.07312545;0.009235494;-0.03110263,0.09556851;-0.3691178;-0.0038065,0.1039741;-0.7117843;0.06696805,0.1061986;-0.6992059;-0.03147756,-0.06745649;-0.001580511;-0.04297817,-0.08817383;-0.379937;-0.01439203,-0.09820389;-0.7225239;0.05655547,-0.08083375;-0.7675177;-0.007274106,-0.01168276;0.3990494;0.0240964,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006170108;0.1993394;0.01502486,-0.01225403;0.4990964;0.02340881,0.106365;0.3762559;0.008455425,0.3610481;0.2599439;0.01129113,0.6388234;0.2550304;-0.02359074,-0.1209387;0.3605323;-0.003090085,-0.1899394;0.0896197;0.0125711,-0.2066163;-0.1885757;-0.01443269,0.07309666;0.00925477;-0.03116453,0.09574699;-0.3691008;-0.00407175,0.1041822;-0.7117576;0.066746,0.1065123;-0.6992062;-0.03169241,-0.06746872;-0.001609764;-0.0429579,-0.08794251;-0.379861;-0.01284427,-0.09771339;-0.7226992;0.05691573,-0.08004265;-0.7670196;-0.007615149,-0.01047036;0.3991124;0.02352439,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006170108;0.1993394;0.01502486,-0.01225403;0.4990964;0.02340881,0.106365;0.3762559;0.008455425,0.3610481;0.2599439;0.01129113,0.6388234;0.2550304;-0.02359074,-0.1209387;0.3605323;-0.003090085,-0.1899394;0.0896197;0.0125711,-0.2066163;-0.1885757;-0.01443269,0.07309666;0.00925477;-0.03116453,0.09574699;-0.3691008;-0.00407175,0.1041822;-0.7117576;0.066746,0.1065123;-0.6992062;-0.03169241,-0.06746872;-0.001609764;-0.0429579,-0.08794251;-0.379861;-0.01284427,-0.09771339;-0.7226992;0.05691573,-0.08004265;-0.7670196;-0.007615149,-0.01047036;0.3991124;0.02352439,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.006170108;0.1993394;0.01502486,-0.01225403;0.4990964;0.02340881,0.106365;0.3762559;0.008455425,0.3610481;0.2599439;0.01129113,0.6388234;0.2550304;-0.02359074,-0.1209387;0.3605323;-0.003090085,-0.1899394;0.0896197;0.0125711,-0.2066163;-0.1885757;-0.01443269,0.07309666;0.00925477;-0.03116453,0.09574699;-0.3691008;-0.00407175,0.1041822;-0.7117576;0.066746,0.1065123;-0.6992062;-0.03169241,-0.06746872;-0.001609764;-0.0429579,-0.08794251;-0.379861;-0.01284427,-0.09771339;-0.7226992;0.05691573,-0.08004265;-0.7670196;-0.007615149,-0.01047036;0.3991124;0.02352439,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005926169;0.1993614;0.01482983,-0.01135389;0.4991407;0.02282717,0.1069933;0.3759715;0.008418911,0.3605174;0.2571689;0.01180893,0.6381438;0.2444089;-0.0222608,-0.1203769;0.3606441;-0.003298739,-0.1904976;0.0902878;0.01646422,-0.2060793;-0.1876266;-0.01388014,0.07314192;0.009171845;-0.03108275,0.09601831;-0.3691915;-0.004290614,0.1044508;-0.7118826;0.06636158,0.1068951;-0.6993459;-0.03207145,-0.06741184;-0.001534053;-0.04304986,-0.0877473;-0.379807;-0.01311619,-0.09765022;-0.7226501;0.05660181,-0.07998034;-0.7671317;-0.007743083,-0.009829017;0.3991527;0.02308769,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005926169;0.1993614;0.01482983,-0.01135389;0.4991407;0.02282717,0.1069933;0.3759715;0.008418911,0.3605174;0.2571689;0.01180893,0.6381438;0.2444089;-0.0222608,-0.1203769;0.3606441;-0.003298739,-0.1904976;0.0902878;0.01646422,-0.2060793;-0.1876266;-0.01388014,0.07314192;0.009171845;-0.03108275,0.09601831;-0.3691915;-0.004290614,0.1044508;-0.7118826;0.06636158,0.1068951;-0.6993459;-0.03207145,-0.06741184;-0.001534053;-0.04304986,-0.0877473;-0.379807;-0.01311619,-0.09765022;-0.7226501;0.05660181,-0.07998034;-0.7671317;-0.007743083,-0.009829017;0.3991527;0.02308769,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005926169;0.1993614;0.01482983,-0.01135389;0.4991407;0.02282717,0.1069933;0.3759715;0.008418911,0.3605174;0.2571689;0.01180893,0.6381438;0.2444089;-0.0222608,-0.1203769;0.3606441;-0.003298739,-0.1904976;0.0902878;0.01646422,-0.2060793;-0.1876266;-0.01388014,0.07314192;0.009171845;-0.03108275,0.09601831;-0.3691915;-0.004290614,0.1044508;-0.7118826;0.06636158,0.1068951;-0.6993459;-0.03207145,-0.06741184;-0.001534053;-0.04304986,-0.0877473;-0.379807;-0.01311619,-0.09765022;-0.7226501;0.05660181,-0.07998034;-0.7671317;-0.007743083,-0.009829017;0.3991527;0.02308769,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005686984;0.1993771;0.01471183,-0.01039651;0.4991789;0.02231471,0.1076862;0.3758894;0.008212966,0.3593476;0.2531998;0.01192393,0.6363429;0.2306509;-0.02221072,-0.1198037;0.3608077;-0.003362786,-0.1894454;0.09025612;0.01539528,-0.2055217;-0.1877086;-0.01422209,0.07312935;0.009155083;-0.03111724,0.09615125;-0.3691989;-0.00431712,0.1043277;-0.7118688;0.06646728,0.1167126;-0.7591038;0.004166532,-0.0674131;-0.001513362;-0.04304862,-0.08748758;-0.3798022;-0.01313894,-0.09730784;-0.7227052;0.056295,-0.07977922;-0.7668869;-0.008433834,-0.009135144;0.3991876;0.02270338,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005686984;0.1993771;0.01471183,-0.01039651;0.4991789;0.02231471,0.1076862;0.3758894;0.008212966,0.3593476;0.2531998;0.01192393,0.6363429;0.2306509;-0.02221072,-0.1198037;0.3608077;-0.003362786,-0.1894454;0.09025612;0.01539528,-0.2055217;-0.1877086;-0.01422209,0.07312935;0.009155083;-0.03111724,0.09615125;-0.3691989;-0.00431712,0.1043277;-0.7118688;0.06646728,0.1167126;-0.7591038;0.004166532,-0.0674131;-0.001513362;-0.04304862,-0.08748758;-0.3798022;-0.01313894,-0.09730784;-0.7227052;0.056295,-0.07977922;-0.7668869;-0.008433834,-0.009135144;0.3991876;0.02270338,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005686984;0.1993771;0.01471183,-0.01039651;0.4991789;0.02231471,0.1076862;0.3758894;0.008212966,0.3593476;0.2531998;0.01192393,0.6363429;0.2306509;-0.02221072,-0.1198037;0.3608077;-0.003362786,-0.1894454;0.09025612;0.01539528,-0.2055217;-0.1877086;-0.01422209,0.07312935;0.009155083;-0.03111724,0.09615125;-0.3691989;-0.00431712,0.1043277;-0.7118688;0.06646728,0.1167126;-0.7591038;0.004166532,-0.0674131;-0.001513362;-0.04304862,-0.08748758;-0.3798022;-0.01313894,-0.09730784;-0.7227052;0.056295,-0.07977922;-0.7668869;-0.008433834,-0.009135144;0.3991876;0.02270338,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005413263;0.199392;0.01461305,-0.009827303;0.4992045;0.02200425,0.1081697;0.3758194;0.008077391,0.3573359;0.2481939;0.01336364,0.6331745;0.2155453;-0.02195168,-0.1194368;0.3610598;-0.003444167,-0.1881105;0.09027687;0.01554305,-0.2050419;-0.1876537;-0.01391778,0.07321887;0.009097954;-0.03092289,0.09623589;-0.3692681;-0.004289532,0.1044298;-0.7119652;0.06636124,0.1166346;-0.7588435;0.003585666,-0.06736111;-0.001480007;-0.04313108,-0.08740059;-0.3797575;-0.01305475,-0.09726059;-0.7226946;0.05620485,-0.07977999;-0.767166;-0.008203611,-0.0086479;0.3992124;0.02244397,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005413263;0.199392;0.01461305,-0.009827303;0.4992045;0.02200425,0.1081697;0.3758194;0.008077391,0.3573359;0.2481939;0.01336364,0.6331745;0.2155453;-0.02195168,-0.1194368;0.3610598;-0.003444167,-0.1881105;0.09027687;0.01554305,-0.2050419;-0.1876537;-0.01391778,0.07321887;0.009097954;-0.03092289,0.09623589;-0.3692681;-0.004289532,0.1044298;-0.7119652;0.06636124,0.1166346;-0.7588435;0.003585666,-0.06736111;-0.001480007;-0.04313108,-0.08740059;-0.3797575;-0.01305475,-0.09726059;-0.7226946;0.05620485,-0.07977999;-0.767166;-0.008203611,-0.0086479;0.3992124;0.02244397,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005413263;0.199392;0.01461305,-0.009827303;0.4992045;0.02200425,0.1081697;0.3758194;0.008077391,0.3573359;0.2481939;0.01336364,0.6331745;0.2155453;-0.02195168,-0.1194368;0.3610598;-0.003444167,-0.1881105;0.09027687;0.01554305,-0.2050419;-0.1876537;-0.01391778,0.07321887;0.009097954;-0.03092289,0.09623589;-0.3692681;-0.004289532,0.1044298;-0.7119652;0.06636124,0.1166346;-0.7588435;0.003585666,-0.06736111;-0.001480007;-0.04313108,-0.08740059;-0.3797575;-0.01305475,-0.09726059;-0.7226946;0.05620485,-0.07977999;-0.767166;-0.008203611,-0.0086479;0.3992124;0.02244397,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005482036;0.1993832;0.01470634,-0.01062613;0.4991718;0.02277562,0.1075831;0.3757412;0.00753032,0.3537937;0.2426307;0.0154009,0.6289101;0.2073487;-0.02288945,-0.1196856;0.3608003;-0.003533984,-0.1884021;0.09001675;0.01528868,-0.2058038;-0.1879358;-0.01368656,0.07318987;0.009106148;-0.03098904,0.09618413;-0.3692701;-0.004480893,0.1043123;-0.711949;0.06626568,0.116715;-0.7591839;0.003968388,-0.06737896;-0.001482233;-0.04310312,-0.08750486;-0.3797347;-0.01277176,-0.09720308;-0.7227374;0.05618557,-0.08004688;-0.7673005;-0.008203872,-0.009099954;0.3991835;0.02287713,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005482036;0.1993832;0.01470634,-0.01062613;0.4991718;0.02277562,0.1075831;0.3757412;0.00753032,0.3537937;0.2426307;0.0154009,0.6289101;0.2073487;-0.02288945,-0.1196856;0.3608003;-0.003533984,-0.1884021;0.09001675;0.01528868,-0.2058038;-0.1879358;-0.01368656,0.07318987;0.009106148;-0.03098904,0.09618413;-0.3692701;-0.004480893,0.1043123;-0.711949;0.06626568,0.116715;-0.7591839;0.003968388,-0.06737896;-0.001482233;-0.04310312,-0.08750486;-0.3797347;-0.01277176,-0.09720308;-0.7227374;0.05618557,-0.08004688;-0.7673005;-0.008203872,-0.009099954;0.3991835;0.02287713,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005482036;0.1993832;0.01470634,-0.01062613;0.4991718;0.02277562,0.1075831;0.3757412;0.00753032,0.3537937;0.2426307;0.0154009,0.6289101;0.2073487;-0.02288945,-0.1196856;0.3608003;-0.003533984,-0.1884021;0.09001675;0.01528868,-0.2058038;-0.1879358;-0.01368656,0.07318987;0.009106148;-0.03098904,0.09618413;-0.3692701;-0.004480893,0.1043123;-0.711949;0.06626568,0.116715;-0.7591839;0.003968388,-0.06737896;-0.001482233;-0.04310312,-0.08750486;-0.3797347;-0.01277176,-0.09720308;-0.7227374;0.05618557,-0.08004688;-0.7673005;-0.008203872,-0.009099954;0.3991835;0.02287713,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005174329;0.1994017;0.01456681,-0.009690959;0.4992101;0.02223352,0.1081758;0.3756582;0.006594777,0.3505389;0.2358069;0.01668131,0.6231269;0.1877607;-0.02559585,-0.1191312;0.3609895;-0.003580881,-0.1876779;0.09016836;0.01532116,-0.2052823;-0.1877823;-0.01354941,0.073215;0.009071694;-0.03093975,0.096203;-0.3693079;-0.004474478,0.1042385;-0.7120266;0.06608982,0.1163628;-0.7590573;0.003485799,-0.06734901;-0.001450301;-0.04315098,-0.08733554;-0.3797054;-0.01275997,-0.09725551;-0.7227098;0.05615712,-0.07998782;-0.7677149;-0.007686935,-0.008410551;0.3992186;0.02248583,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005174329;0.1994017;0.01456681,-0.009690959;0.4992101;0.02223352,0.1081758;0.3756582;0.006594777,0.3505389;0.2358069;0.01668131,0.6231269;0.1877607;-0.02559585,-0.1191312;0.3609895;-0.003580881,-0.1876779;0.09016836;0.01532116,-0.2052823;-0.1877823;-0.01354941,0.073215;0.009071694;-0.03093975,0.096203;-0.3693079;-0.004474478,0.1042385;-0.7120266;0.06608982,0.1163628;-0.7590573;0.003485799,-0.06734901;-0.001450301;-0.04315098,-0.08733554;-0.3797054;-0.01275997,-0.09725551;-0.7227098;0.05615712,-0.07998782;-0.7677149;-0.007686935,-0.008410551;0.3992186;0.02248583,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005174329;0.1994017;0.01456681,-0.009690959;0.4992101;0.02223352,0.1081758;0.3756582;0.006594777,0.3505389;0.2358069;0.01668131,0.6231269;0.1877607;-0.02559585,-0.1191312;0.3609895;-0.003580881,-0.1876779;0.09016836;0.01532116,-0.2052823;-0.1877823;-0.01354941,0.073215;0.009071694;-0.03093975,0.096203;-0.3693079;-0.004474478,0.1042385;-0.7120266;0.06608982,0.1163628;-0.7590573;0.003485799,-0.06734901;-0.001450301;-0.04315098,-0.08733554;-0.3797054;-0.01275997,-0.09725551;-0.7227098;0.05615712,-0.07998782;-0.7677149;-0.007686935,-0.008410551;0.3992186;0.02248583,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005530084;0.1993905;0.01458901,-0.01225848;0.4991537;0.02245081,0.1066469;0.3761766;0.006710919,0.3458063;0.2309041;0.01664568,0.617512;0.1773435;-0.02467334,-0.1206663;0.3609352;-0.003864419,-0.1891537;0.09008986;0.01490474,-0.2067602;-0.1878576;-0.01399534,0.07321743;0.009121981;-0.0309192,0.09630829;-0.3692548;-0.004503367,0.1042064;-0.7119863;0.06601451,0.116374;-0.7587661;0.003111206,-0.06731955;-0.00148269;-0.04319583,-0.08718645;-0.3797287;-0.01261346,-0.09710938;-0.7227927;0.05600584,-0.07998841;-0.7679995;-0.007640116,-0.01004893;0.3991783;0.0226168,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005530084;0.1993905;0.01458901,-0.01225848;0.4991537;0.02245081,0.1066469;0.3761766;0.006710919,0.3458063;0.2309041;0.01664568,0.617512;0.1773435;-0.02467334,-0.1206663;0.3609352;-0.003864419,-0.1891537;0.09008986;0.01490474,-0.2067602;-0.1878576;-0.01399534,0.07321743;0.009121981;-0.0309192,0.09630829;-0.3692548;-0.004503367,0.1042064;-0.7119863;0.06601451,0.116374;-0.7587661;0.003111206,-0.06731955;-0.00148269;-0.04319583,-0.08718645;-0.3797287;-0.01261346,-0.09710938;-0.7227927;0.05600584,-0.07998841;-0.7679995;-0.007640116,-0.01004893;0.3991783;0.0226168,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005530084;0.1993905;0.01458901,-0.01225848;0.4991537;0.02245081,0.1066469;0.3761766;0.006710919,0.3458063;0.2309041;0.01664568,0.617512;0.1773435;-0.02467334,-0.1206663;0.3609352;-0.003864419,-0.1891537;0.09008986;0.01490474,-0.2067602;-0.1878576;-0.01399534,0.07321743;0.009121981;-0.0309192,0.09630829;-0.3692548;-0.004503367,0.1042064;-0.7119863;0.06601451,0.116374;-0.7587661;0.003111206,-0.06731955;-0.00148269;-0.04319583,-0.08718645;-0.3797287;-0.01261346,-0.09710938;-0.7227927;0.05600584,-0.07998841;-0.7679995;-0.007640116,-0.01004893;0.3991783;0.0226168,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005508111;0.1993778;0.01477005,-0.01219784;0.4991245;0.02338502,0.1065909;0.3760782;0.006834237,0.3423524;0.2253389;0.01653961,0.6110012;0.1581644;-0.02487784,-0.1204419;0.3608589;-0.004021827,-0.1891474;0.090094;0.01510699,-0.2068766;-0.1878556;-0.01369699,0.07320891;0.009108971;-0.03094318,0.09636284;-0.369213;-0.003807066,0.1043914;-0.7120556;0.06615393,0.1157734;-0.7587473;0.00299681,-0.067341;-0.001454925;-0.04316333,-0.0871921;-0.3797038;-0.01260573,-0.09697953;-0.7227813;0.05596545,-0.07981378;-0.7679328;-0.0077338,-0.01002518;0.3991482;0.02321907,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005508111;0.1993778;0.01477005,-0.01219784;0.4991245;0.02338502,0.1065909;0.3760782;0.006834237,0.3423524;0.2253389;0.01653961,0.6110012;0.1581644;-0.02487784,-0.1204419;0.3608589;-0.004021827,-0.1891474;0.090094;0.01510699,-0.2068766;-0.1878556;-0.01369699,0.07320891;0.009108971;-0.03094318,0.09636284;-0.369213;-0.003807066,0.1043914;-0.7120556;0.06615393,0.1157734;-0.7587473;0.00299681,-0.067341;-0.001454925;-0.04316333,-0.0871921;-0.3797038;-0.01260573,-0.09697953;-0.7227813;0.05596545,-0.07981378;-0.7679328;-0.0077338,-0.01002518;0.3991482;0.02321907,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005508111;0.1993778;0.01477005,-0.01219784;0.4991245;0.02338502,0.1065909;0.3760782;0.006834237,0.3423524;0.2253389;0.01653961,0.6110012;0.1581644;-0.02487784,-0.1204419;0.3608589;-0.004021827,-0.1891474;0.090094;0.01510699,-0.2068766;-0.1878556;-0.01369699,0.07320891;0.009108971;-0.03094318,0.09636284;-0.369213;-0.003807066,0.1043914;-0.7120556;0.06615393,0.1157734;-0.7587473;0.00299681,-0.067341;-0.001454925;-0.04316333,-0.0871921;-0.3797038;-0.01260573,-0.09697953;-0.7227813;0.05596545,-0.07981378;-0.7679328;-0.0077338,-0.01002518;0.3991482;0.02321907,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005548456;0.1993716;0.01483915,-0.01246389;0.4991054;0.02375028,0.1063992;0.376196;0.006820481,0.3374307;0.2184074;0.01809803,0.6033478;0.1421828;-0.02523675,-0.1206075;0.3609819;-0.004038103,-0.1893966;0.09023732;0.01507777,-0.2072331;-0.1877255;-0.01353164,0.07319962;0.009142072;-0.03095541,0.09627448;-0.3691842;-0.003811399,0.1043242;-0.7120193;0.06618309,0.1156855;-0.7586151;0.002905793,-0.06735473;-0.001482751;-0.04314096,-0.08717263;-0.3797188;-0.01240365,-0.09702303;-0.7228364;0.0559574,-0.07981669;-0.7680923;-0.007607423,-0.01020693;0.3991312;0.02346354,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005548456;0.1993716;0.01483915,-0.01246389;0.4991054;0.02375028,0.1063992;0.376196;0.006820481,0.3374307;0.2184074;0.01809803,0.6033478;0.1421828;-0.02523675,-0.1206075;0.3609819;-0.004038103,-0.1893966;0.09023732;0.01507777,-0.2072331;-0.1877255;-0.01353164,0.07319962;0.009142072;-0.03095541,0.09627448;-0.3691842;-0.003811399,0.1043242;-0.7120193;0.06618309,0.1156855;-0.7586151;0.002905793,-0.06735473;-0.001482751;-0.04314096,-0.08717263;-0.3797188;-0.01240365,-0.09702303;-0.7228364;0.0559574,-0.07981669;-0.7680923;-0.007607423,-0.01020693;0.3991312;0.02346354,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005548456;0.1993716;0.01483915,-0.01246389;0.4991054;0.02375028,0.1063992;0.376196;0.006820481,0.3374307;0.2184074;0.01809803,0.6033478;0.1421828;-0.02523675,-0.1206075;0.3609819;-0.004038103,-0.1893966;0.09023732;0.01507777,-0.2072331;-0.1877255;-0.01353164,0.07319962;0.009142072;-0.03095541,0.09627448;-0.3691842;-0.003811399,0.1043242;-0.7120193;0.06618309,0.1156855;-0.7586151;0.002905793,-0.06735473;-0.001482751;-0.04314096,-0.08717263;-0.3797188;-0.01240365,-0.09702303;-0.7228364;0.0559574,-0.07981669;-0.7680923;-0.007607423,-0.01020693;0.3991312;0.02346354,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005559674;0.1993663;0.01490569,-0.01246955;0.4990984;0.02389444,0.1062877;0.3762667;0.006179294,0.3326661;0.2119845;0.01899285,0.5950837;0.1247963;-0.02499849,-0.1206026;0.3610061;-0.004068332,-0.189571;0.09031522;0.0151622,-0.2074674;-0.1876426;-0.0134585,0.07319348;0.009098629;-0.03098273,0.09626558;-0.3692137;-0.003642483,0.1038789;-0.7119276;0.06699179,0.1156546;-0.7589871;0.004356526,-0.06736442;-0.001408191;-0.04312831,-0.08711438;-0.3796153;-0.01199429,-0.09698696;-0.7228004;0.05602431,-0.07867033;-0.7675646;-0.007809982,-0.01022482;0.3991241;0.0235679,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005559674;0.1993663;0.01490569,-0.01246955;0.4990984;0.02389444,0.1062877;0.3762667;0.006179294,0.3326661;0.2119845;0.01899285,0.5950837;0.1247963;-0.02499849,-0.1206026;0.3610061;-0.004068332,-0.189571;0.09031522;0.0151622,-0.2074674;-0.1876426;-0.0134585,0.07319348;0.009098629;-0.03098273,0.09626558;-0.3692137;-0.003642483,0.1038789;-0.7119276;0.06699179,0.1156546;-0.7589871;0.004356526,-0.06736442;-0.001408191;-0.04312831,-0.08711438;-0.3796153;-0.01199429,-0.09698696;-0.7228004;0.05602431,-0.07867033;-0.7675646;-0.007809982,-0.01022482;0.3991241;0.0235679,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005559674;0.1993663;0.01490569,-0.01246955;0.4990984;0.02389444,0.1062877;0.3762667;0.006179294,0.3326661;0.2119845;0.01899285,0.5950837;0.1247963;-0.02499849,-0.1206026;0.3610061;-0.004068332,-0.189571;0.09031522;0.0151622,-0.2074674;-0.1876426;-0.0134585,0.07319348;0.009098629;-0.03098273,0.09626558;-0.3692137;-0.003642483,0.1038789;-0.7119276;0.06699179,0.1156546;-0.7589871;0.004356526,-0.06736442;-0.001408191;-0.04312831,-0.08711438;-0.3796153;-0.01199429,-0.09698696;-0.7228004;0.05602431,-0.07867033;-0.7675646;-0.007809982,-0.01022482;0.3991241;0.0235679,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005443969;0.199367;0.01493866,-0.01190294;0.499105;0.02408899,0.1065814;0.3760999;0.006114457,0.3293142;0.2068941;0.01874299,0.5874239;0.1080177;-0.02601004,-0.120207;0.3612158;-0.004393095,-0.1894386;0.09061983;0.01522335,-0.2077452;-0.1873508;-0.0130115,0.07316333;0.009087109;-0.03105723,0.09652863;-0.3691687;-0.003189746,0.1039419;-0.7119443;0.06716612,0.1153583;-0.758306;0.003616437,-0.0674018;-0.001360567;-0.04307141,-0.08690866;-0.3795678;-0.01178587,-0.09687348;-0.7227925;0.05601861,-0.07847635;-0.7675398;-0.007812388,-0.009870089;0.3991265;0.02368785,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005443969;0.199367;0.01493866,-0.01190294;0.499105;0.02408899,0.1065814;0.3760999;0.006114457,0.3293142;0.2068941;0.01874299,0.5874239;0.1080177;-0.02601004,-0.120207;0.3612158;-0.004393095,-0.1894386;0.09061983;0.01522335,-0.2077452;-0.1873508;-0.0130115,0.07316333;0.009087109;-0.03105723,0.09652863;-0.3691687;-0.003189746,0.1039419;-0.7119443;0.06716612,0.1153583;-0.758306;0.003616437,-0.0674018;-0.001360567;-0.04307141,-0.08690866;-0.3795678;-0.01178587,-0.09687348;-0.7227925;0.05601861,-0.07847635;-0.7675398;-0.007812388,-0.009870089;0.3991265;0.02368785,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005443969;0.199367;0.01493866,-0.01190294;0.499105;0.02408899,0.1065814;0.3760999;0.006114457,0.3293142;0.2068941;0.01874299,0.5874239;0.1080177;-0.02601004,-0.120207;0.3612158;-0.004393095,-0.1894386;0.09061983;0.01522335,-0.2077452;-0.1873508;-0.0130115,0.07316333;0.009087109;-0.03105723,0.09652863;-0.3691687;-0.003189746,0.1039419;-0.7119443;0.06716612,0.1153583;-0.758306;0.003616437,-0.0674018;-0.001360567;-0.04307141,-0.08690866;-0.3795678;-0.01178587,-0.09687348;-0.7227925;0.05601861,-0.07847635;-0.7675398;-0.007812388,-0.009870089;0.3991265;0.02368785,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005014174;0.1993954;0.01470833,-0.009350706;0.4992035;0.02250026,0.1082238;0.3759599;0.005440462,0.3266615;0.2012877;0.01865376,0.5813378;0.09387378;-0.02609272,-0.1189291;0.361601;-0.00434936,-0.1883363;0.09104341;0.01517581,-0.2067318;-0.1869249;-0.01302419,0.07313466;0.009051864;-0.03113494,0.09651273;-0.3691987;-0.003206164,0.1039871;-0.7119865;0.06708349,0.115426;-0.7583417;0.003530033,-0.06746171;-0.001318489;-0.04297883,-0.08658515;-0.3795545;-0.01180498,-0.09672712;-0.7228175;0.05577945,-0.07849893;-0.7676572;-0.007991806,-0.00823082;0.3992099;0.02269609,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005014174;0.1993954;0.01470833,-0.009350706;0.4992035;0.02250026,0.1082238;0.3759599;0.005440462,0.3266615;0.2012877;0.01865376,0.5813378;0.09387378;-0.02609272,-0.1189291;0.361601;-0.00434936,-0.1883363;0.09104341;0.01517581,-0.2067318;-0.1869249;-0.01302419,0.07313466;0.009051864;-0.03113494,0.09651273;-0.3691987;-0.003206164,0.1039871;-0.7119865;0.06708349,0.115426;-0.7583417;0.003530033,-0.06746171;-0.001318489;-0.04297883,-0.08658515;-0.3795545;-0.01180498,-0.09672712;-0.7228175;0.05577945,-0.07849893;-0.7676572;-0.007991806,-0.00823082;0.3992099;0.02269609,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.005014174;0.1993954;0.01470833,-0.009350706;0.4992035;0.02250026,0.1082238;0.3759599;0.005440462,0.3266615;0.2012877;0.01865376,0.5813378;0.09387378;-0.02609272,-0.1189291;0.361601;-0.00434936,-0.1883363;0.09104341;0.01517581,-0.2067318;-0.1869249;-0.01302419,0.07313466;0.009051864;-0.03113494,0.09651273;-0.3691987;-0.003206164,0.1039871;-0.7119865;0.06708349,0.115426;-0.7583417;0.003530033,-0.06746171;-0.001318489;-0.04297883,-0.08658515;-0.3795545;-0.01180498,-0.09672712;-0.7228175;0.05577945,-0.07849893;-0.7676572;-0.007991806,-0.00823082;0.3992099;0.02269609,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.00456924;0.199422;0.01449048,-0.007603331;0.4992625;0.02158621,0.1094886;0.375739;0.005100805,0.323463;0.1955261;0.01685925,0.5723737;0.07460017;-0.02580672,-0.1179973;0.362352;-0.004571399,-0.1880373;0.09195676;0.01494372,-0.2066469;-0.1860282;-0.01294932,0.07310057;0.009067608;-0.03121036,0.09677017;-0.3691689;-0.003336798,0.1040537;-0.7119657;0.06692868,0.1154742;-0.7583218;0.00337299,-0.067506;-0.001315924;-0.04290931,-0.08650651;-0.3795744;-0.01193288,-0.09666453;-0.7228321;0.05567563,-0.07842132;-0.7676562;-0.00810954,-0.006958216;0.3992655;0.02203141,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.00456924;0.199422;0.01449048,-0.007603331;0.4992625;0.02158621,0.1094886;0.375739;0.005100805,0.323463;0.1955261;0.01685925,0.5723737;0.07460017;-0.02580672,-0.1179973;0.362352;-0.004571399,-0.1880373;0.09195676;0.01494372,-0.2066469;-0.1860282;-0.01294932,0.07310057;0.009067608;-0.03121036,0.09677017;-0.3691689;-0.003336798,0.1040537;-0.7119657;0.06692868,0.1154742;-0.7583218;0.00337299,-0.067506;-0.001315924;-0.04290931,-0.08650651;-0.3795744;-0.01193288,-0.09666453;-0.7228321;0.05567563,-0.07842132;-0.7676562;-0.00810954,-0.006958216;0.3992655;0.02203141,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.00456924;0.199422;0.01449048,-0.007603331;0.4992625;0.02158621,0.1094886;0.375739;0.005100805,0.323463;0.1955261;0.01685925,0.5723737;0.07460017;-0.02580672,-0.1179973;0.362352;-0.004571399,-0.1880373;0.09195676;0.01494372,-0.2066469;-0.1860282;-0.01294932,0.07310057;0.009067608;-0.03121036,0.09677017;-0.3691689;-0.003336798,0.1040537;-0.7119657;0.06692868,0.1154742;-0.7583218;0.00337299,-0.067506;-0.001315924;-0.04290931,-0.08650651;-0.3795744;-0.01193288,-0.09666453;-0.7228321;0.05567563,-0.07842132;-0.7676562;-0.00810954,-0.006958216;0.3992655;0.02203141,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.004223257;0.1994397;0.01435111,-0.006865288;0.4992894;0.02124661,0.1101474;0.375945;0.004716596,0.319606;0.1905552;0.01727426,0.565107;0.06247401;-0.024253,-0.1175661;0.3627481;-0.004508726,-0.187998;0.09245613;0.01502649,-0.2067553;-0.1855112;-0.01294329,0.07309756;0.009070334;-0.03121657,0.09659627;-0.3691601;-0.003117144,0.1039149;-0.7119956;0.06695613,0.1153446;-0.7583184;0.003362082,-0.06751427;-0.001323935;-0.04289604,-0.08620986;-0.379589;-0.01181466,-0.09639965;-0.7228341;0.05585302,-0.07882828;-0.7677328;-0.008033097,-0.006321494;0.3992921;0.02174326,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.004223257;0.1994397;0.01435111,-0.006865288;0.4992894;0.02124661,0.1101474;0.375945;0.004716596,0.319606;0.1905552;0.01727426,0.565107;0.06247401;-0.024253,-0.1175661;0.3627481;-0.004508726,-0.187998;0.09245613;0.01502649,-0.2067553;-0.1855112;-0.01294329,0.07309756;0.009070334;-0.03121657,0.09659627;-0.3691601;-0.003117144,0.1039149;-0.7119956;0.06695613,0.1153446;-0.7583184;0.003362082,-0.06751427;-0.001323935;-0.04289604,-0.08620986;-0.379589;-0.01181466,-0.09639965;-0.7228341;0.05585302,-0.07882828;-0.7677328;-0.008033097,-0.006321494;0.3992921;0.02174326,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.004223257;0.1994397;0.01435111,-0.006865288;0.4992894;0.02124661,0.1101474;0.375945;0.004716596,0.319606;0.1905552;0.01727426,0.565107;0.06247401;-0.024253,-0.1175661;0.3627481;-0.004508726,-0.187998;0.09245613;0.01502649,-0.2067553;-0.1855112;-0.01294329,0.07309756;0.009070334;-0.03121657,0.09659627;-0.3691601;-0.003117144,0.1039149;-0.7119956;0.06695613,0.1153446;-0.7583184;0.003362082,-0.06751427;-0.001323935;-0.04289604,-0.08620986;-0.379589;-0.01181466,-0.09639965;-0.7228341;0.05585302,-0.07882828;-0.7677328;-0.008033097,-0.006321494;0.3992921;0.02174326,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.004132435;0.1994413;0.0143556,-0.006707447;0.4992893;0.02138197,0.1102633;0.3759907;0.004585328,0.3148397;0.1853023;0.01823969,0.5521633;0.04236566;-0.02233905,-0.1174602;0.3630319;-0.004699906,-0.1883364;0.09286016;0.01489089,-0.2071695;-0.1851243;-0.01285725,0.07309637;0.009045219;-0.03122667,0.09668908;-0.369158;-0.00284205,0.1040447;-0.7120605;0.06689882,0.1153809;-0.758465;0.003386214,-0.06752573;-0.001305061;-0.04287857,-0.08609496;-0.3795584;-0.0115806,-0.09643331;-0.7228417;0.05587063,-0.07833637;-0.7673151;-0.008365054,-0.006184947;0.3992916;0.02181525,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.004132435;0.1994413;0.0143556,-0.006707447;0.4992893;0.02138197,0.1102633;0.3759907;0.004585328,0.3148397;0.1853023;0.01823969,0.5521633;0.04236566;-0.02233905,-0.1174602;0.3630319;-0.004699906,-0.1883364;0.09286016;0.01489089,-0.2071695;-0.1851243;-0.01285725,0.07309637;0.009045219;-0.03122667,0.09668908;-0.369158;-0.00284205,0.1040447;-0.7120605;0.06689882,0.1153809;-0.758465;0.003386214,-0.06752573;-0.001305061;-0.04287857,-0.08609496;-0.3795584;-0.0115806,-0.09643331;-0.7228417;0.05587063,-0.07833637;-0.7673151;-0.008365054,-0.006184947;0.3992916;0.02181525,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.004132435;0.1994413;0.0143556,-0.006707447;0.4992893;0.02138197,0.1102633;0.3759907;0.004585328,0.3148397;0.1853023;0.01823969,0.5521633;0.04236566;-0.02233905,-0.1174602;0.3630319;-0.004699906,-0.1883364;0.09286016;0.01489089,-0.2071695;-0.1851243;-0.01285725,0.07309637;0.009045219;-0.03122667,0.09668908;-0.369158;-0.00284205,0.1040447;-0.7120605;0.06689882,0.1153809;-0.758465;0.003386214,-0.06752573;-0.001305061;-0.04287857,-0.08609496;-0.3795584;-0.0115806,-0.09643331;-0.7228417;0.05587063,-0.07833637;-0.7673151;-0.008365054,-0.006184947;0.3992916;0.02181525,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003684995;0.1994643;0.01415663,-0.005517856;0.499324;0.02094008,0.1112256;0.3761513;0.00410551,0.3112087;0.180673;0.01807051,0.5449514;0.03192776;-0.02241629,-0.11672;0.3634543;-0.004710224,-0.1879311;0.09336272;0.01477152,-0.2069148;-0.1846563;-0.01252374,0.07298456;0.009160561;-0.03145375,0.09650923;-0.3690561;-0.00319149,0.1040263;-0.7119038;0.06680059,0.1153633;-0.7581955;0.003152736,-0.06756934;-0.001353829;-0.04280832,-0.08587205;-0.3796176;-0.01147947,-0.09638617;-0.7229194;0.05585064,-0.07816005;-0.7676913;-0.008000623,-0.005232512;0.3993257;0.02143902,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003684995;0.1994643;0.01415663,-0.005517856;0.499324;0.02094008,0.1112256;0.3761513;0.00410551,0.3112087;0.180673;0.01807051,0.5449514;0.03192776;-0.02241629,-0.11672;0.3634543;-0.004710224,-0.1879311;0.09336272;0.01477152,-0.2069148;-0.1846563;-0.01252374,0.07298456;0.009160561;-0.03145375,0.09650923;-0.3690561;-0.00319149,0.1040263;-0.7119038;0.06680059,0.1153633;-0.7581955;0.003152736,-0.06756934;-0.001353829;-0.04280832,-0.08587205;-0.3796176;-0.01147947,-0.09638617;-0.7229194;0.05585064,-0.07816005;-0.7676913;-0.008000623,-0.005232512;0.3993257;0.02143902,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003684995;0.1994643;0.01415663,-0.005517856;0.499324;0.02094008,0.1112256;0.3761513;0.00410551,0.3112087;0.180673;0.01807051,0.5449514;0.03192776;-0.02241629,-0.11672;0.3634543;-0.004710224,-0.1879311;0.09336272;0.01477152,-0.2069148;-0.1846563;-0.01252374,0.07298456;0.009160561;-0.03145375,0.09650923;-0.3690561;-0.00319149,0.1040263;-0.7119038;0.06680059,0.1153633;-0.7581955;0.003152736,-0.06756934;-0.001353829;-0.04280832,-0.08587205;-0.3796176;-0.01147947,-0.09638617;-0.7229194;0.05585064,-0.07816005;-0.7676913;-0.008000623,-0.005232512;0.3993257;0.02143902,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003400448;0.1994801;0.01400392,-0.004851491;0.4993472;0.0205724,0.1118015;0.3766015;0.003410723,0.3064239;0.1758764;0.01862896,0.5381654;0.02407895;-0.0220332,-0.1162981;0.3636286;-0.004671471,-0.1876964;0.09358945;0.01485182,-0.2059812;-0.184518;-0.01201623,0.07295495;0.009136152;-0.03152946,0.09649561;-0.3690669;-0.003098652,0.1039404;-0.7119466;0.06674418,0.1161115;-0.7578937;0.002838701,-0.06759618;-0.001323596;-0.04276685,-0.08558643;-0.3795871;-0.0112533,-0.09635931;-0.7229064;0.05594623,-0.07802086;-0.7671407;-0.008497257,-0.004682103;0.3993489;0.02113403,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003400448;0.1994801;0.01400392,-0.004851491;0.4993472;0.0205724,0.1118015;0.3766015;0.003410723,0.3064239;0.1758764;0.01862896,0.5381654;0.02407895;-0.0220332,-0.1162981;0.3636286;-0.004671471,-0.1876964;0.09358945;0.01485182,-0.2059812;-0.184518;-0.01201623,0.07295495;0.009136152;-0.03152946,0.09649561;-0.3690669;-0.003098652,0.1039404;-0.7119466;0.06674418,0.1161115;-0.7578937;0.002838701,-0.06759618;-0.001323596;-0.04276685,-0.08558643;-0.3795871;-0.0112533,-0.09635931;-0.7229064;0.05594623,-0.07802086;-0.7671407;-0.008497257,-0.004682103;0.3993489;0.02113403,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003400448;0.1994801;0.01400392,-0.004851491;0.4993472;0.0205724,0.1118015;0.3766015;0.003410723,0.3064239;0.1758764;0.01862896,0.5381654;0.02407895;-0.0220332,-0.1162981;0.3636286;-0.004671471,-0.1876964;0.09358945;0.01485182,-0.2059812;-0.184518;-0.01201623,0.07295495;0.009136152;-0.03152946,0.09649561;-0.3690669;-0.003098652,0.1039404;-0.7119466;0.06674418,0.1161115;-0.7578937;0.002838701,-0.06759618;-0.001323596;-0.04276685,-0.08558643;-0.3795871;-0.0112533,-0.09635931;-0.7229064;0.05594623,-0.07802086;-0.7671407;-0.008497257,-0.004682103;0.3993489;0.02113403,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003141622;0.1994914;0.01390411,-0.004382415;0.4993609;0.02042714,0.1122218;0.3768927;0.002949206,0.3014368;0.1711088;0.018781,0.529781;0.01378144;-0.02003939,-0.1159457;0.3641209;-0.005194334,-0.1885563;0.09442949;0.01466125,-0.2062929;-0.1838353;-0.01091474,0.07294939;0.00904272;-0.03156922,0.09649078;-0.3691499;-0.00300106,0.1040265;-0.7120011;0.06697235,0.1161397;-0.7578962;0.002994239,-0.0676157;-0.001177849;-0.04274027,-0.08535657;-0.3794457;-0.01113866,-0.09664986;-0.7227724;0.05593794,-0.07850099;-0.7669744;-0.008596353,-0.004266503;0.3993625;0.02099328,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003141622;0.1994914;0.01390411,-0.004382415;0.4993609;0.02042714,0.1122218;0.3768927;0.002949206,0.3014368;0.1711088;0.018781,0.529781;0.01378144;-0.02003939,-0.1159457;0.3641209;-0.005194334,-0.1885563;0.09442949;0.01466125,-0.2062929;-0.1838353;-0.01091474,0.07294939;0.00904272;-0.03156922,0.09649078;-0.3691499;-0.00300106,0.1040265;-0.7120011;0.06697235,0.1161397;-0.7578962;0.002994239,-0.0676157;-0.001177849;-0.04274027,-0.08535657;-0.3794457;-0.01113866,-0.09664986;-0.7227724;0.05593794,-0.07850099;-0.7669744;-0.008596353,-0.004266503;0.3993625;0.02099328,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.003141622;0.1994914;0.01390411,-0.004382415;0.4993609;0.02042714,0.1122218;0.3768927;0.002949206,0.3014368;0.1711088;0.018781,0.529781;0.01378144;-0.02003939,-0.1159457;0.3641209;-0.005194334,-0.1885563;0.09442949;0.01466125,-0.2062929;-0.1838353;-0.01091474,0.07294939;0.00904272;-0.03156922,0.09649078;-0.3691499;-0.00300106,0.1040265;-0.7120011;0.06697235,0.1161397;-0.7578962;0.002994239,-0.0676157;-0.001177849;-0.04274027,-0.08535657;-0.3794457;-0.01113866,-0.09664986;-0.7227724;0.05593794,-0.07850099;-0.7669744;-0.008596353,-0.004266503;0.3993625;0.02099328,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.002913716;0.1995028;0.01378889,-0.00387903;0.4993756;0.02022739,0.1126801;0.3770816;0.00279852,0.2962939;0.1662924;0.01873183,0.5209555;0.003443673;-0.01878449,-0.115505;0.3639978;-0.005277799,-0.1883715;0.09438506;0.01470781,-0.2059275;-0.1838924;-0.01085448,0.0728403;0.009077988;-0.03181008,0.09665537;-0.3691026;-0.003310047,0.1041287;-0.7118578;0.06713892,0.1161537;-0.7575159;0.002864055,-0.06765892;-0.001214455;-0.04267079,-0.08510098;-0.3794955;-0.01105994,-0.09671447;-0.7228187;0.05597963,-0.07837982;-0.7670847;-0.008428439,-0.003846409;0.3993773;0.02081146,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.002913716;0.1995028;0.01378889,-0.00387903;0.4993756;0.02022739,0.1126801;0.3770816;0.00279852,0.2962939;0.1662924;0.01873183,0.5209555;0.003443673;-0.01878449,-0.115505;0.3639978;-0.005277799,-0.1883715;0.09438506;0.01470781,-0.2059275;-0.1838924;-0.01085448,0.0728403;0.009077988;-0.03181008,0.09665537;-0.3691026;-0.003310047,0.1041287;-0.7118578;0.06713892,0.1161537;-0.7575159;0.002864055,-0.06765892;-0.001214455;-0.04267079,-0.08510098;-0.3794955;-0.01105994,-0.09671447;-0.7228187;0.05597963,-0.07837982;-0.7670847;-0.008428439,-0.003846409;0.3993773;0.02081146,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.002913716;0.1995028;0.01378889,-0.00387903;0.4993756;0.02022739,0.1126801;0.3770816;0.00279852,0.2962939;0.1662924;0.01873183,0.5209555;0.003443673;-0.01878449,-0.115505;0.3639978;-0.005277799,-0.1883715;0.09438506;0.01470781,-0.2059275;-0.1838924;-0.01085448,0.0728403;0.009077988;-0.03181008,0.09665537;-0.3691026;-0.003310047,0.1041287;-0.7118578;0.06713892,0.1161537;-0.7575159;0.002864055,-0.06765892;-0.001214455;-0.04267079,-0.08510098;-0.3794955;-0.01105994,-0.09671447;-0.7228187;0.05597963,-0.07837982;-0.7670847;-0.008428439,-0.003846409;0.3993773;0.02081146,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.002601802;0.1995091;0.01376083,-0.003031241;0.4993847;0.0201362,0.1133375;0.3775037;0.002266645,0.291123;0.1618419;0.01906731,0.5089619;-0.01015426;-0.01785937,-0.1149929;0.3641509;-0.004955506,-0.1877852;0.09450278;0.01482327,-0.2052376;-0.1838008;-0.01052516,0.07272631;0.009074694;-0.03207077,0.09696334;-0.3690644;-0.003376406,0.1042836;-0.7117892;0.06723621,0.1161751;-0.7574873;0.002983682,-0.06772957;-0.001237888;-0.04255787,-0.08493058;-0.3795246;-0.01088321,-0.09663446;-0.7228517;0.05612079,-0.07879232;-0.7673385;-0.00817062,-0.003196222;0.3993866;0.0207338,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.002601802;0.1995091;0.01376083,-0.003031241;0.4993847;0.0201362,0.1133375;0.3775037;0.002266645,0.291123;0.1618419;0.01906731,0.5089619;-0.01015426;-0.01785937,-0.1149929;0.3641509;-0.004955506,-0.1877852;0.09450278;0.01482327,-0.2052376;-0.1838008;-0.01052516,0.07272631;0.009074694;-0.03207077,0.09696334;-0.3690644;-0.003376406,0.1042836;-0.7117892;0.06723621,0.1161751;-0.7574873;0.002983682,-0.06772957;-0.001237888;-0.04255787,-0.08493058;-0.3795246;-0.01088321,-0.09663446;-0.7228517;0.05612079,-0.07879232;-0.7673385;-0.00817062,-0.003196222;0.3993866;0.0207338,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.002601802;0.1995091;0.01376083,-0.003031241;0.4993847;0.0201362,0.1133375;0.3775037;0.002266645,0.291123;0.1618419;0.01906731,0.5089619;-0.01015426;-0.01785937,-0.1149929;0.3641509;-0.004955506,-0.1877852;0.09450278;0.01482327,-0.2052376;-0.1838008;-0.01052516,0.07272631;0.009074694;-0.03207077,0.09696334;-0.3690644;-0.003376406,0.1042836;-0.7117892;0.06723621,0.1161751;-0.7574873;0.002983682,-0.06772957;-0.001237888;-0.04255787,-0.08493058;-0.3795246;-0.01088321,-0.09663446;-0.7228517;0.05612079,-0.07879232;-0.7673385;-0.00817062,-0.003196222;0.3993866;0.0207338,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.00228765;0.1995239;0.01360145,-0.002377685;0.4994024;0.01987507,0.1138691;0.3775779;0.001825199,0.2857747;0.1572406;0.01914427,0.4988337;-0.02094412;-0.01629638,-0.1144814;0.3645295;-0.005499497,-0.1864798;0.09488052;0.01698736,-0.2056533;-0.1831668;-0.009883728,0.07271135;0.009015502;-0.03212135,0.09691861;-0.3691013;-0.003109943,0.1040874;-0.7118553;0.06737663,0.1171125;-0.7583811;0.004335798,-0.06774954;-0.001202001;-0.04252711,-0.08471578;-0.3794902;-0.010744,-0.09623091;-0.7228395;0.05617884,-0.0788663;-0.7680295;-0.007421024,-0.002642557;0.3994046;0.02049672,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.00228765;0.1995239;0.01360145,-0.002377685;0.4994024;0.01987507,0.1138691;0.3775779;0.001825199,0.2857747;0.1572406;0.01914427,0.4988337;-0.02094412;-0.01629638,-0.1144814;0.3645295;-0.005499497,-0.1864798;0.09488052;0.01698736,-0.2056533;-0.1831668;-0.009883728,0.07271135;0.009015502;-0.03212135,0.09691861;-0.3691013;-0.003109943,0.1040874;-0.7118553;0.06737663,0.1171125;-0.7583811;0.004335798,-0.06774954;-0.001202001;-0.04252711,-0.08471578;-0.3794902;-0.010744,-0.09623091;-0.7228395;0.05617884,-0.0788663;-0.7680295;-0.007421024,-0.002642557;0.3994046;0.02049672,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.00228765;0.1995239;0.01360145,-0.002377685;0.4994024;0.01987507,0.1138691;0.3775779;0.001825199,0.2857747;0.1572406;0.01914427,0.4988337;-0.02094412;-0.01629638,-0.1144814;0.3645295;-0.005499497,-0.1864798;0.09488052;0.01698736,-0.2056533;-0.1831668;-0.009883728,0.07271135;0.009015502;-0.03212135,0.09691861;-0.3691013;-0.003109943,0.1040874;-0.7118553;0.06737663,0.1171125;-0.7583811;0.004335798,-0.06774954;-0.001202001;-0.04252711,-0.08471578;-0.3794902;-0.010744,-0.09623091;-0.7228395;0.05617884,-0.0788663;-0.7680295;-0.007421024,-0.002642557;0.3994046;0.02049672,0;0;0,0.001114675;0.1996027;0.0125509,0.004242461;0.4994877;0.01770371,0.1170013;0.3753596;-0.009953754,0.2448766;0.1273125;0.01286265,0.3774737;-0.1190453;0.02408045,-0.1091682;0.3652565;-0.00676715,-0.1862;0.09641203;0.006971136,-0.2240221;-0.1809648;0.001350562,0.0709085;0.005874363;-0.03657152,0.1009872;-0.3687567;0.01952507,0.1097064;-0.7085379;0.1030276,0.118292;-0.7597188;0.04526981,-0.07213813;0.0001721483;-0.0345841,-0.07777002;-0.3753839;0.02308684,-0.0864923;-0.715818;0.1038861,-0.08669365;-0.7037594;0.005508952,0.002993452;0.3995002;0.01867195,48.06679
+0;0;0,-0.002168262;0.1995176;0.01371305,-0.002214445;0.4993922;0.020181,0.1140255;0.3780031;0.001644243,0.280533;0.1535916;0.01938486,0.4864639;-0.03277177;-0.01612848,-0.1143345;0.3645691;-0.005348273,-0.1852721;0.0945226;0.01569278,-0.2052321;-0.1835555;-0.01027156,0.07255676;0.008933486;-0.03249168,0.09671602;-0.3691363;-0.002834642,0.1040123;-0.7119045;0.06756933,0.1167662;-0.758616;0.004698828,-0.06785935;-0.001204746;-0.04235157,-0.08450185;-0.379518;-0.01069474,-0.09634104;-0.7228305;0.05636017,-0.07879029;-0.7678219;-0.007422742,-0.002499536;0.3993941;0.02073166,0;0;0,0.01221774;0.1995275;0.006285626,0.03128103;0.4988276;0.001508519,0.1149792;0.3425775;-0.04951457,0.2395073;0.361694;-0.2995692,0.05767986;0.561366;-0.2256106,-0.09419873;0.385401;0.01365294,-0.1636815;0.1149434;0.03426454,-0.2101134;-0.1611659;0.03148043,0.06226752;0.001977973;-0.05018808,0.1161858;-0.3698439;0.006744653,0.1241246;-0.7100892;0.08841529,0.1036061;-0.6981025;-0.007785082,-0.07808225;0.004744664;-0.01675263,-0.06850819;-0.37431;0.008265072,-0.07809284;-0.7157429;0.0846305,-0.09607219;-0.7038464;-0.01205979,0.02475472;0.3991336;0.005811335,54.43369
+0;0;0,-0.002168262;0.1995176;0.01371305,-0.002214445;0.4993922;0.020181,0.1140255;0.3780031;0.001644243,0.280533;0.1535916;0.01938486,0.4864639;-0.03277177;-0.01612848,-0.1143345;0.3645691;-0.005348273,-0.1852721;0.0945226;0.01569278,-0.2052321;-0.1835555;-0.01027156,0.07255676;0.008933486;-0.03249168,0.09671602;-0.3691363;-0.002834642,0.1040123;-0.7119045;0.06756933,0.1167662;-0.758616;0.004698828,-0.06785935;-0.001204746;-0.04235157,-0.08450185;-0.379518;-0.01069474,-0.09634104;-0.7228305;0.05636017,-0.07879029;-0.7678219;-0.007422742,-0.002499536;0.3993941;0.02073166,0;0;0,0.01221774;0.1995275;0.006285626,0.03128103;0.4988276;0.001508519,0.1149792;0.3425775;-0.04951457,0.2395073;0.361694;-0.2995692,0.05767986;0.561366;-0.2256106,-0.09419873;0.385401;0.01365294,-0.1636815;0.1149434;0.03426454,-0.2101134;-0.1611659;0.03148043,0.06226752;0.001977973;-0.05018808,0.1161858;-0.3698439;0.006744653,0.1241246;-0.7100892;0.08841529,0.1036061;-0.6981025;-0.007785082,-0.07808225;0.004744664;-0.01675263,-0.06850819;-0.37431;0.008265072,-0.07809284;-0.7157429;0.0846305,-0.09607219;-0.7038464;-0.01205979,0.02475472;0.3991336;0.005811335,54.45578
+0;0;0,-0.002168262;0.1995176;0.01371305,-0.002214445;0.4993922;0.020181,0.1140255;0.3780031;0.001644243,0.280533;0.1535916;0.01938486,0.4864639;-0.03277177;-0.01612848,-0.1143345;0.3645691;-0.005348273,-0.1852721;0.0945226;0.01569278,-0.2052321;-0.1835555;-0.01027156,0.07255676;0.008933486;-0.03249168,0.09671602;-0.3691363;-0.002834642,0.1040123;-0.7119045;0.06756933,0.1167662;-0.758616;0.004698828,-0.06785935;-0.001204746;-0.04235157,-0.08450185;-0.379518;-0.01069474,-0.09634104;-0.7228305;0.05636017,-0.07879029;-0.7678219;-0.007422742,-0.002499536;0.3993941;0.02073166,0;0;0,0.01227483;0.199525;0.00625321,0.03149343;0.4988136;0.001402889,0.1152514;0.3426471;-0.04948208,0.2401287;0.3615284;-0.2993804,0.05817509;0.5609463;-0.2250476,-0.0940626;0.3855877;0.01357048,-0.1590044;0.1134988;0.02582483,-0.2114811;-0.1614465;0.03298867,0.06242339;0.002001932;-0.04999313,0.1162919;-0.369861;0.006717402,0.1240879;-0.7100458;0.0886534,0.1312066;-0.761029;0.03042068,-0.07806075;0.004794376;-0.01683849,-0.06848485;-0.3742511;0.008317338,-0.07801861;-0.7157072;0.08458555,-0.09592121;-0.7038119;-0.01211873,0.02491401;0.3991246;0.005739757,54.46745
+0;0;0,-0.001856255;0.1995294;0.0135855,-0.001360856;0.4994066;0.01992423,0.114688;0.3780354;0.001356719,0.276291;0.1501;0.01952067,0.4764925;-0.04254478;-0.01522655,-0.1137594;0.3647711;-0.005406575,-0.1848759;0.09478295;0.01577952,-0.2049813;-0.1832812;-0.01022287,0.07255699;0.00891026;-0.03249754,0.09670446;-0.3691523;-0.002738148,0.104086;-0.7118945;0.0677836,0.1165564;-0.7586406;0.004898667,-0.06787733;-0.001198352;-0.04232293,-0.08414435;-0.3795204;-0.01057723,-0.09629044;-0.722827;0.05645284,-0.07876227;-0.7681396;-0.006956827,-0.00182901;0.3994095;0.02051195,0;0;0,0.01227483;0.199525;0.00625321,0.03149343;0.4988136;0.001402889,0.1152514;0.3426471;-0.04948208,0.2401287;0.3615284;-0.2993804,0.05817509;0.5609463;-0.2250476,-0.0940626;0.3855877;0.01357048,-0.1590044;0.1134988;0.02582483,-0.2114811;-0.1614465;0.03298867,0.06242339;0.002001932;-0.04999313,0.1162919;-0.369861;0.006717402,0.1240879;-0.7100458;0.0886534,0.1312066;-0.761029;0.03042068,-0.07806075;0.004794376;-0.01683849,-0.06848485;-0.3742511;0.008317338,-0.07801861;-0.7157072;0.08458555,-0.09592121;-0.7038119;-0.01211873,0.02491401;0.3991246;0.005739757,54.48937
+0;0;0,-0.001856255;0.1995294;0.0135855,-0.001360856;0.4994066;0.01992423,0.114688;0.3780354;0.001356719,0.276291;0.1501;0.01952067,0.4764925;-0.04254478;-0.01522655,-0.1137594;0.3647711;-0.005406575,-0.1848759;0.09478295;0.01577952,-0.2049813;-0.1832812;-0.01022287,0.07255699;0.00891026;-0.03249754,0.09670446;-0.3691523;-0.002738148,0.104086;-0.7118945;0.0677836,0.1165564;-0.7586406;0.004898667,-0.06787733;-0.001198352;-0.04232293,-0.08414435;-0.3795204;-0.01057723,-0.09629044;-0.722827;0.05645284,-0.07876227;-0.7681396;-0.006956827,-0.00182901;0.3994095;0.02051195,0;0;0,0.01228624;0.1995258;0.006206575,0.03150497;0.4988133;0.001295717,0.1154112;0.3427845;-0.04947592,0.2423202;0.3605227;-0.2984326,0.05978064;0.5593448;-0.2239406,-0.09405121;0.3855839;0.01336277,-0.1613415;0.1142459;0.0291013,-0.2111526;-0.1612801;0.03117843,0.06251715;0.002042204;-0.04987419,0.1161535;-0.3698808;0.006662574,0.1239104;-0.7100532;0.08865377,0.1313374;-0.760996;0.03040342,-0.07805352;0.004760385;-0.01688155,-0.06858721;-0.3742895;0.008248614,-0.07827722;-0.7157532;0.08446308,-0.09608605;-0.7038601;-0.01225809,0.02493301;0.3991247;0.005655542,54.50086
+0;0;0,-0.001856255;0.1995294;0.0135855,-0.001360856;0.4994066;0.01992423,0.114688;0.3780354;0.001356719,0.276291;0.1501;0.01952067,0.4764925;-0.04254478;-0.01522655,-0.1137594;0.3647711;-0.005406575,-0.1848759;0.09478295;0.01577952,-0.2049813;-0.1832812;-0.01022287,0.07255699;0.00891026;-0.03249754,0.09670446;-0.3691523;-0.002738148,0.104086;-0.7118945;0.0677836,0.1165564;-0.7586406;0.004898667,-0.06787733;-0.001198352;-0.04232293,-0.08414435;-0.3795204;-0.01057723,-0.09629044;-0.722827;0.05645284,-0.07876227;-0.7681396;-0.006956827,-0.00182901;0.3994095;0.02051195,0;0;0,0.01228624;0.1995258;0.006206575,0.03150497;0.4988133;0.001295717,0.1154112;0.3427845;-0.04947592,0.2423202;0.3605227;-0.2984326,0.05978064;0.5593448;-0.2239406,-0.09405121;0.3855839;0.01336277,-0.1613415;0.1142459;0.0291013,-0.2111526;-0.1612801;0.03117843,0.06251715;0.002042204;-0.04987419,0.1161535;-0.3698808;0.006662574,0.1239104;-0.7100532;0.08865377,0.1313374;-0.760996;0.03040342,-0.07805352;0.004760385;-0.01688155,-0.06858721;-0.3742895;0.008248614,-0.07827722;-0.7157532;0.08446308,-0.09608605;-0.7038601;-0.01225809,0.02493301;0.3991247;0.005655542,54.51197
+0;0;0,-0.001578725;0.1995378;0.01349776,-0.000810358;0.4994146;0.01984268,0.1151334;0.3781718;0.0009701736,0.2717166;0.1468589;0.02036182,0.4645215;-0.05317439;-0.01446548,-0.1133576;0.3648815;-0.005334949,-0.1847935;0.09497899;0.01586761,-0.204569;-0.1831112;-0.01010871,0.07250629;0.00887346;-0.03262056,0.0970042;-0.3691914;-0.003178915,0.1040561;-0.7118763;0.06765444,0.116737;-0.7583334;0.00446032,-0.06794204;-0.001197286;-0.04221902,-0.08398612;-0.379534;-0.01053451,-0.09629135;-0.722808;0.05663354,-0.0794414;-0.7687745;-0.006177042,-0.001358141;0.3994178;0.02042096,0;0;0,0.01227104;0.1995263;0.006220724,0.03143314;0.4988178;0.001344199,0.1154432;0.3428909;-0.04941473,0.2427948;0.3603405;-0.2981658,0.06019995;0.5591018;-0.2236468,-0.09410105;0.3856208;0.01338181,-0.1621679;0.1144272;0.02824512,-0.212465;-0.1610183;0.02830625,0.06262308;0.002044107;-0.04974104,0.1158399;-0.369903;0.007033534,0.1237058;-0.7100794;0.08899771,0.130701;-0.7603669;0.02979473,-0.07801287;0.004780668;-0.01706273,-0.0689913;-0.3742754;0.008138984,-0.07872643;-0.7157041;0.08450437,-0.0965002;-0.7038099;-0.01222345,0.02488857;0.3991272;0.005697376,54.53451
+0;0;0,-0.001578725;0.1995378;0.01349776,-0.000810358;0.4994146;0.01984268,0.1151334;0.3781718;0.0009701736,0.2717166;0.1468589;0.02036182,0.4645215;-0.05317439;-0.01446548,-0.1133576;0.3648815;-0.005334949,-0.1847935;0.09497899;0.01586761,-0.204569;-0.1831112;-0.01010871,0.07250629;0.00887346;-0.03262056,0.0970042;-0.3691914;-0.003178915,0.1040561;-0.7118763;0.06765444,0.116737;-0.7583334;0.00446032,-0.06794204;-0.001197286;-0.04221902,-0.08398612;-0.379534;-0.01053451,-0.09629135;-0.722808;0.05663354,-0.0794414;-0.7687745;-0.006177042,-0.001358141;0.3994178;0.02042096,0;0;0,0.01227104;0.1995263;0.006220724,0.03143314;0.4988178;0.001344199,0.1154432;0.3428909;-0.04941473,0.2427948;0.3603405;-0.2981658,0.06019995;0.5591018;-0.2236468,-0.09410105;0.3856208;0.01338181,-0.1621679;0.1144272;0.02824512,-0.212465;-0.1610183;0.02830625,0.06262308;0.002044107;-0.04974104,0.1158399;-0.369903;0.007033534,0.1237058;-0.7100794;0.08899771,0.130701;-0.7603669;0.02979473,-0.07801287;0.004780668;-0.01706273,-0.0689913;-0.3742754;0.008138984,-0.07872643;-0.7157041;0.08450437,-0.0965002;-0.7038099;-0.01222345,0.02488857;0.3991272;0.005697376,54.55631
+0;0;0,-0.001578725;0.1995378;0.01349776,-0.000810358;0.4994146;0.01984268,0.1151334;0.3781718;0.0009701736,0.2717166;0.1468589;0.02036182,0.4645215;-0.05317439;-0.01446548,-0.1133576;0.3648815;-0.005334949,-0.1847935;0.09497899;0.01586761,-0.204569;-0.1831112;-0.01010871,0.07250629;0.00887346;-0.03262056,0.0970042;-0.3691914;-0.003178915,0.1040561;-0.7118763;0.06765444,0.116737;-0.7583334;0.00446032,-0.06794204;-0.001197286;-0.04221902,-0.08398612;-0.379534;-0.01053451,-0.09629135;-0.722808;0.05663354,-0.0794414;-0.7687745;-0.006177042,-0.001358141;0.3994178;0.02042096,0;0;0,0.01228151;0.1995264;0.006194493,0.03145633;0.4988166;0.001292829,0.1155588;0.3429637;-0.04937654,0.2436511;0.3598684;-0.2977846,0.06163818;0.559173;-0.2232933,-0.0940796;0.3856113;0.01331106,-0.1626891;0.1145797;0.02862727,-0.2136097;-0.1607497;0.02770882,0.06275047;0.002030885;-0.04958079,0.1157733;-0.3699845;0.006926671,0.1236383;-0.7102504;0.08851896,0.1304776;-0.760156;0.0287835,-0.07799564;0.004803226;-0.01713503,-0.0687563;-0.3743268;0.0068451,-0.07904378;-0.7155082;0.08423634,-0.09675696;-0.7036245;-0.01250066,0.02491098;0.3991266;0.005657151,54.5678
+0;0;0,-0.001284215;0.1995421;0.01346442,-0.0001377483;0.4994169;0.01986595,0.1157031;0.3785351;0.0007070713,0.2666903;0.1435123;0.01986838,0.4533554;-0.06227942;-0.0148575,-0.1126003;0.3646638;-0.005942574,-0.1840192;0.09483573;0.01624158,-0.2049396;-0.1831257;-0.01021148,0.07244121;0.008812744;-0.03278118,0.09699243;-0.3692179;-0.002947588,0.1038455;-0.7118628;0.06809835,0.1163727;-0.7580873;0.004593238,-0.06802319;-0.001164544;-0.04208906,-0.08389898;-0.3795067;-0.01038485,-0.09626254;-0.7227529;0.05691415,-0.07929792;-0.7687322;-0.005850095,-0.0008099366;0.3994207;0.02041771,0;0;0,0.01228151;0.1995264;0.006194493,0.03145633;0.4988166;0.001292829,0.1155588;0.3429637;-0.04937654,0.2436511;0.3598684;-0.2977846,0.06163818;0.559173;-0.2232933,-0.0940796;0.3856113;0.01331106,-0.1626891;0.1145797;0.02862727,-0.2136097;-0.1607497;0.02770882,0.06275047;0.002030885;-0.04958079,0.1157733;-0.3699845;0.006926671,0.1236383;-0.7102504;0.08851896,0.1304776;-0.760156;0.0287835,-0.07799564;0.004803226;-0.01713503,-0.0687563;-0.3743268;0.0068451,-0.07904378;-0.7155082;0.08423634,-0.09675696;-0.7036245;-0.01250066,0.02491098;0.3991266;0.005657151,54.58992
+0;0;0,-0.001284215;0.1995421;0.01346442,-0.0001377483;0.4994169;0.01986595,0.1157031;0.3785351;0.0007070713,0.2666903;0.1435123;0.01986838,0.4533554;-0.06227942;-0.0148575,-0.1126003;0.3646638;-0.005942574,-0.1840192;0.09483573;0.01624158,-0.2049396;-0.1831257;-0.01021148,0.07244121;0.008812744;-0.03278118,0.09699243;-0.3692179;-0.002947588,0.1038455;-0.7118628;0.06809835,0.1163727;-0.7580873;0.004593238,-0.06802319;-0.001164544;-0.04208906,-0.08389898;-0.3795067;-0.01038485,-0.09626254;-0.7227529;0.05691415,-0.07929792;-0.7687322;-0.005850095,-0.0008099366;0.3994207;0.02041771,0;0;0,0.01230316;0.199526;0.006166263,0.03146221;0.498817;0.001255088,0.1155611;0.3428228;-0.04929379,0.2440644;0.3596086;-0.2974976,0.06173785;0.5585526;-0.2228096,-0.09404121;0.3854843;0.01334601,-0.1636759;0.114796;0.03004493,-0.2130731;-0.1607915;0.02666458,0.06281713;0.002111229;-0.04949293,0.1154954;-0.3699374;0.007118031,0.1232722;-0.710207;0.08870345,0.129814;-0.7599686;0.02874269,-0.07796375;0.00467221;-0.01731539,-0.06890668;-0.3745238;0.005671449,-0.07921997;-0.7155038;0.08394159,-0.09687889;-0.7036209;-0.01280516,0.02493053;0.3991262;0.005624603,54.61226
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.01230316;0.199526;0.006166263,0.03146221;0.498817;0.001255088,0.1155611;0.3428228;-0.04929379,0.2440644;0.3596086;-0.2974976,0.06173785;0.5585526;-0.2228096,-0.09404121;0.3854843;0.01334601,-0.1636759;0.114796;0.03004493,-0.2130731;-0.1607915;0.02666458,0.06281713;0.002111229;-0.04949293,0.1154954;-0.3699374;0.007118031,0.1232722;-0.710207;0.08870345,0.129814;-0.7599686;0.02874269,-0.07796375;0.00467221;-0.01731539,-0.06890668;-0.3745238;0.005671449,-0.07921997;-0.7155038;0.08394159,-0.09687889;-0.7036209;-0.01280516,0.02493053;0.3991262;0.005624603,54.62364
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.01238644;0.1995212;0.006153156,0.03170817;0.4988014;0.001230439,0.1157864;0.3427682;-0.04921451,0.2453525;0.3590114;-0.2969014,0.06254874;0.5578341;-0.2230619,-0.09385672;0.385472;0.01319337,-0.1618869;0.1142244;0.02721686,-0.2017776;-0.1629189;0.02779595,0.06288143;0.002107551;-0.04941138,0.1154138;-0.3699689;0.007152341,0.1232048;-0.7102556;0.08866445,0.1300737;-0.7599779;0.02868789,-0.07795271;0.004680571;-0.01736283,-0.06910198;-0.3745396;0.005303146,-0.07923352;-0.715486;0.0837433,-0.09678835;-0.7036016;-0.01302268,0.02512363;0.3991145;0.005606567,54.63492
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.01238644;0.1995212;0.006153156,0.03170817;0.4988014;0.001230439,0.1157864;0.3427682;-0.04921451,0.2453525;0.3590114;-0.2969014,0.06254874;0.5578341;-0.2230619,-0.09385672;0.385472;0.01319337,-0.1618869;0.1142244;0.02721686,-0.2017776;-0.1629189;0.02779595,0.06288143;0.002107551;-0.04941138,0.1154138;-0.3699689;0.007152341,0.1232048;-0.7102556;0.08866445,0.1300737;-0.7599779;0.02868789,-0.07795271;0.004680571;-0.01736283,-0.06910198;-0.3745396;0.005303146,-0.07923352;-0.715486;0.0837433,-0.09678835;-0.7036016;-0.01302268,0.02512363;0.3991145;0.005606567,54.65693
+0;0;0,-0.001164844;0.199541;0.0134913,-0.0002477882;0.4994133;0.02004618,0.1156746;0.3786744;0.0006461088,0.2625527;0.1410826;0.02006165,0.4402527;-0.07282604;-0.01258492,-0.1126298;0.3646897;-0.005817406,-0.1843129;0.09490526;0.01604258,-0.2043276;-0.1830627;-0.01103534,0.07240816;0.008726163;-0.03287723,0.09652624;-0.3693046;-0.002693173,0.1032696;-0.7119634;0.06829561,0.1159939;-0.7585726;0.005294614,-0.06804036;-0.001066931;-0.04206389,-0.08431481;-0.3793801;-0.01021559,-0.09689263;-0.7226059;0.0571479,-0.07994083;-0.7686579;-0.005531736,-0.0008313935;0.3994162;0.02054892,0;0;0,0.01243007;0.1995183;0.006158844,0.03186269;0.4987916;0.001257269,0.1159149;0.3427746;-0.04918488,0.2457095;0.3589733;-0.296755,0.06280668;0.5576559;-0.2227834,-0.09375379;0.3855228;0.01312554,-0.1623742;0.1144538;0.02771447,-0.2124249;-0.1610324;0.02620457,0.0629089;0.002046106;-0.04937898,0.1153726;-0.3700216;0.007305697,0.1232681;-0.7103081;0.08880915,0.1306461;-0.7609054;0.03007546,-0.07794262;0.004791576;-0.01737779,-0.06910688;-0.3744436;0.005040616,-0.0791807;-0.7153306;0.0837464,-0.09668378;-0.7034447;-0.01302923,0.02523892;0.399107;0.005628658,54.66824
+0;0;0,-0.0009773984;0.1995426;0.01348384,8.948502E-05;0.4994133;0.02009134,0.1159551;0.3786484;0.0006143637,0.2593486;0.1389247;0.01987145,0.4294828;-0.08111404;-0.01233614,-0.1122801;0.3646814;-0.006013751,-0.1842476;0.09497416;0.01586458,-0.204471;-0.1830187;-0.01079982,0.07235725;0.008705603;-0.03299454,0.09643728;-0.3693054;-0.002535123,0.1030986;-0.7119397;0.06858023,0.1158921;-0.7582059;0.005178347,-0.06811719;-0.00105585;-0.04193964,-0.08417606;-0.3793724;-0.01002223,-0.09686905;-0.7224778;0.05793058,-0.08026423;-0.7679697;-0.005514286,-0.0005366105;0.3994164;0.02057341,0;0;0,0.01243007;0.1995183;0.006158844,0.03186269;0.4987916;0.001257269,0.1159149;0.3427746;-0.04918488,0.2457095;0.3589733;-0.296755,0.06280668;0.5576559;-0.2227834,-0.09375379;0.3855228;0.01312554,-0.1623742;0.1144538;0.02771447,-0.2124249;-0.1610324;0.02620457,0.0629089;0.002046106;-0.04937898,0.1153726;-0.3700216;0.007305697,0.1232681;-0.7103081;0.08880915,0.1306461;-0.7609054;0.03007546,-0.07794262;0.004791576;-0.01737779,-0.06910688;-0.3744436;0.005040616,-0.0791807;-0.7153306;0.0837464,-0.09668378;-0.7034447;-0.01302923,0.02523892;0.399107;0.005628658,54.69057
+0;0;0,-0.0009773984;0.1995426;0.01348384,8.948502E-05;0.4994133;0.02009134,0.1159551;0.3786484;0.0006143637,0.2593486;0.1389247;0.01987145,0.4294828;-0.08111404;-0.01233614,-0.1122801;0.3646814;-0.006013751,-0.1842476;0.09497416;0.01586458,-0.204471;-0.1830187;-0.01079982,0.07235725;0.008705603;-0.03299454,0.09643728;-0.3693054;-0.002535123,0.1030986;-0.7119397;0.06858023,0.1158921;-0.7582059;0.005178347,-0.06811719;-0.00105585;-0.04193964,-0.08417606;-0.3793724;-0.01002223,-0.09686905;-0.7224778;0.05793058,-0.08026423;-0.7679697;-0.005514286,-0.0005366105;0.3994164;0.02057341,0;0;0,0.01245199;0.1995177;0.006136186,0.03191312;0.4987885;0.00120664,0.1159904;0.3428291;-0.04923019,0.2470608;0.3583528;-0.2961706,0.05960016;0.5507525;-0.2171715,-0.09371071;0.3855651;0.01314644,-0.1613281;0.1141485;0.02583093,-0.2133996;-0.1609654;0.02678787,0.0629925;0.002079844;-0.04927088,0.1153773;-0.3700305;0.007207025,0.1232769;-0.7103207;0.08869402,0.1303495;-0.7605197;0.02938044,-0.0779311;0.004757219;-0.01743885,-0.06932645;-0.374445;0.005618736,-0.07931995;-0.7153801;0.08412578,-0.09683404;-0.7034935;-0.01264799,0.0252833;0.3991049;0.005590028,54.70189
+0;0;0,-0.0009773984;0.1995426;0.01348384,8.948502E-05;0.4994133;0.02009134,0.1159551;0.3786484;0.0006143637,0.2593486;0.1389247;0.01987145,0.4294828;-0.08111404;-0.01233614,-0.1122801;0.3646814;-0.006013751,-0.1842476;0.09497416;0.01586458,-0.204471;-0.1830187;-0.01079982,0.07235725;0.008705603;-0.03299454,0.09643728;-0.3693054;-0.002535123,0.1030986;-0.7119397;0.06858023,0.1158921;-0.7582059;0.005178347,-0.06811719;-0.00105585;-0.04193964,-0.08417606;-0.3793724;-0.01002223,-0.09686905;-0.7224778;0.05793058,-0.08026423;-0.7679697;-0.005514286,-0.0005366105;0.3994164;0.02057341,0;0;0,0.01245199;0.1995177;0.006136186,0.03191312;0.4987885;0.00120664,0.1159904;0.3428291;-0.04923019,0.2470608;0.3583528;-0.2961706,0.05960016;0.5507525;-0.2171715,-0.09371071;0.3855651;0.01314644,-0.1613281;0.1141485;0.02583093,-0.2133996;-0.1609654;0.02678787,0.0629925;0.002079844;-0.04927088,0.1153773;-0.3700305;0.007207025,0.1232769;-0.7103207;0.08869402,0.1303495;-0.7605197;0.02938044,-0.0779311;0.004757219;-0.01743885,-0.06932645;-0.374445;0.005618736,-0.07931995;-0.7153801;0.08412578,-0.09683404;-0.7034935;-0.01264799,0.0252833;0.3991049;0.005590028,54.71309
+0;0;0,-0.0007466421;0.1995454;0.01345683,0.0005107409;0.4994146;0.02010866,0.116237;0.3787159;5.558878E-05,0.2536064;0.1354645;0.01898735,0.4177032;-0.08921051;-0.01253009,-0.1120003;0.3651427;-0.006243348,-0.1840853;0.09541541;0.01499211,-0.2049798;-0.1826032;-0.0108747,0.07231689;0.008725594;-0.03307766,0.09622116;-0.3692858;-0.002483938,0.1028385;-0.7118877;0.06879117,0.1155799;-0.7581347;0.005355746,-0.06817134;-0.0010798;-0.04185096,-0.08418137;-0.3793839;-0.009762332,-0.09706556;-0.722466;0.05827198,-0.09351516;-0.7100024;-0.04011435,-0.0001695737;0.3994179;0.0205725,0;0;0,0.01236919;0.199522;0.006160537,0.03169581;0.4988019;0.001260676,0.1158236;0.3428088;-0.04914318,0.2470303;0.3581165;-0.2960247,0.06368484;0.5546435;-0.2175292,-0.09388417;0.3855909;0.01318176,-0.1619462;0.1142777;0.02569999,-0.2146529;-0.1607116;0.02739811,0.06312107;0.002004438;-0.04910919,0.1150215;-0.3701999;0.007196166,0.123048;-0.7104861;0.08868758,0.1297559;-0.7608596;0.02956822,-0.07786628;0.004860409;-0.01769796,-0.06972444;-0.3743372;0.005602377,-0.07969978;-0.7152745;0.08410221,-0.09718385;-0.703386;-0.01267735,0.02511251;0.399115;0.005639285,54.73535
+0;0;0,-0.0007466421;0.1995454;0.01345683,0.0005107409;0.4994146;0.02010866,0.116237;0.3787159;5.558878E-05,0.2536064;0.1354645;0.01898735,0.4177032;-0.08921051;-0.01253009,-0.1120003;0.3651427;-0.006243348,-0.1840853;0.09541541;0.01499211,-0.2049798;-0.1826032;-0.0108747,0.07231689;0.008725594;-0.03307766,0.09622116;-0.3692858;-0.002483938,0.1028385;-0.7118877;0.06879117,0.1155799;-0.7581347;0.005355746,-0.06817134;-0.0010798;-0.04185096,-0.08418137;-0.3793839;-0.009762332,-0.09706556;-0.722466;0.05827198,-0.09351516;-0.7100024;-0.04011435,-0.0001695737;0.3994179;0.0205725,0;0;0,0.01236919;0.199522;0.006160537,0.03169581;0.4988019;0.001260676,0.1158236;0.3428088;-0.04914318,0.2470303;0.3581165;-0.2960247,0.06368484;0.5546435;-0.2175292,-0.09388417;0.3855909;0.01318176,-0.1619462;0.1142777;0.02569999,-0.2146529;-0.1607116;0.02739811,0.06312107;0.002004438;-0.04910919,0.1150215;-0.3701999;0.007196166,0.123048;-0.7104861;0.08868758,0.1297559;-0.7608596;0.02956822,-0.07786628;0.004860409;-0.01769796,-0.06972444;-0.3743372;0.005602377,-0.07969978;-0.7152745;0.08410221,-0.09718385;-0.703386;-0.01267735,0.02511251;0.399115;0.005639285,54.75747
+0;0;0,-0.0007466421;0.1995454;0.01345683,0.0005107409;0.4994146;0.02010866,0.116237;0.3787159;5.558878E-05,0.2536064;0.1354645;0.01898735,0.4177032;-0.08921051;-0.01253009,-0.1120003;0.3651427;-0.006243348,-0.1840853;0.09541541;0.01499211,-0.2049798;-0.1826032;-0.0108747,0.07231689;0.008725594;-0.03307766,0.09622116;-0.3692858;-0.002483938,0.1028385;-0.7118877;0.06879117,0.1155799;-0.7581347;0.005355746,-0.06817134;-0.0010798;-0.04185096,-0.08418137;-0.3793839;-0.009762332,-0.09706556;-0.722466;0.05827198,-0.09351516;-0.7100024;-0.04011435,-0.0001695737;0.3994179;0.0205725,0;0;0,0.01236068;0.1995229;0.00614925,0.03163394;0.4988061;0.001239557,0.1157897;0.3427916;-0.04913274,0.2472078;0.3578473;-0.2959173,0.06015751;0.5505033;-0.2165708,-0.09390666;0.3854946;0.01322089,-0.1642641;0.1149454;0.02912633,-0.2145984;-0.1604795;0.02637623,0.06317019;0.001971772;-0.04904732,0.1148703;-0.3702006;0.007651843,0.1225321;-0.7106285;0.08858465,0.1298118;-0.7603382;0.02863997,-0.07784864;0.004889986;-0.01776727,-0.06890798;-0.3743746;0.004105693,-0.07950633;-0.7152245;0.0829028,-0.09698696;-0.7033368;-0.01387722,0.02507523;0.3991177;0.005623558,54.76873
+0;0;0,-0.0005866087;0.1995331;0.01364548,0.0009696641;0.4993952;0.0205742,0.1165106;0.3786725;6.530434E-05,0.2493974;0.1329169;0.01864815,0.4079983;-0.09580021;-0.0119167,-0.1116726;0.365222;-0.005962979,-0.1842785;0.09561834;0.0150665,-0.2049471;-0.1823766;-0.01123288,0.07230791;0.008615709;-0.03312603,0.0969603;-0.369399;-0.003172671,0.1028601;-0.7118748;0.06876779,0.1156268;-0.7580984;0.005309261,-0.06822041;-0.000991023;-0.04177312,-0.08421052;-0.3792729;-0.009414095,-0.0970091;-0.7223636;0.05859315,-0.09355487;-0.7098824;-0.03979975,0.0001700384;0.399399;0.02092863,0;0;0,0.01236068;0.1995229;0.00614925,0.03163394;0.4988061;0.001239557,0.1157897;0.3427916;-0.04913274,0.2472078;0.3578473;-0.2959173,0.06015751;0.5505033;-0.2165708,-0.09390666;0.3854946;0.01322089,-0.1642641;0.1149454;0.02912633,-0.2145984;-0.1604795;0.02637623,0.06317019;0.001971772;-0.04904732,0.1148703;-0.3702006;0.007651843,0.1225321;-0.7106285;0.08858465,0.1298118;-0.7603382;0.02863997,-0.07784864;0.004889986;-0.01776727,-0.06890798;-0.3743746;0.004105693,-0.07950633;-0.7152245;0.0829028,-0.09698696;-0.7033368;-0.01387722,0.02507523;0.3991177;0.005623558,54.79096
+0;0;0,-0.0005866087;0.1995331;0.01364548,0.0009696641;0.4993952;0.0205742,0.1165106;0.3786725;6.530434E-05,0.2493974;0.1329169;0.01864815,0.4079983;-0.09580021;-0.0119167,-0.1116726;0.365222;-0.005962979,-0.1842785;0.09561834;0.0150665,-0.2049471;-0.1823766;-0.01123288,0.07230791;0.008615709;-0.03312603,0.0969603;-0.369399;-0.003172671,0.1028601;-0.7118748;0.06876779,0.1156268;-0.7580984;0.005309261,-0.06822041;-0.000991023;-0.04177312,-0.08421052;-0.3792729;-0.009414095,-0.0970091;-0.7223636;0.05859315,-0.09355487;-0.7098824;-0.03979975,0.0001700384;0.399399;0.02092863,0;0;0,0.0123637;0.1995262;0.006037105,0.03167576;0.4988037;0.0009636129,0.1158527;0.3426845;-0.04917553,0.2474936;0.3572956;-0.295868,0.06555858;0.5551237;-0.2173589,-0.09384885;0.385321;0.01316069,-0.1649299;0.1150348;0.03027416,-0.2042046;-0.162189;0.02816493,0.06345782;0.001962948;-0.04867496,0.114705;-0.3703811;0.007303949,0.1224514;-0.710863;0.08800119,0.1296799;-0.7602839;0.02766822,-0.07779954;0.004885634;-0.01798228,-0.06863101;-0.3743807;0.003766278,-0.0793784;-0.7152592;0.08241939,-0.09684766;-0.7033818;-0.01436075,0.02510302;0.3991191;0.005410535,54.80229
+0;0;0,-0.0005866087;0.1995331;0.01364548,0.0009696641;0.4993952;0.0205742,0.1165106;0.3786725;6.530434E-05,0.2493974;0.1329169;0.01864815,0.4079983;-0.09580021;-0.0119167,-0.1116726;0.365222;-0.005962979,-0.1842785;0.09561834;0.0150665,-0.2049471;-0.1823766;-0.01123288,0.07230791;0.008615709;-0.03312603,0.0969603;-0.369399;-0.003172671,0.1028601;-0.7118748;0.06876779,0.1156268;-0.7580984;0.005309261,-0.06822041;-0.000991023;-0.04177312,-0.08421052;-0.3792729;-0.009414095,-0.0970091;-0.7223636;0.05859315,-0.09355487;-0.7098824;-0.03979975,0.0001700384;0.399399;0.02092863,0;0;0,0.0123637;0.1995262;0.006037105,0.03167576;0.4988037;0.0009636129,0.1158527;0.3426845;-0.04917553,0.2474936;0.3572956;-0.295868,0.06555858;0.5551237;-0.2173589,-0.09384885;0.385321;0.01316069,-0.1649299;0.1150348;0.03027416,-0.2042046;-0.162189;0.02816493,0.06345782;0.001962948;-0.04867496,0.114705;-0.3703811;0.007303949,0.1224514;-0.710863;0.08800119,0.1296799;-0.7602839;0.02766822,-0.07779954;0.004885634;-0.01798228,-0.06863101;-0.3743807;0.003766278,-0.0793784;-0.7152592;0.08241939,-0.09684766;-0.7033818;-0.01436075,0.02510302;0.3991191;0.005410535,54.82452
+0;0;0,-0.0004288992;0.1995209;0.0138291,0.001193579;0.499377;0.02098736,0.1166291;0.3783584;0.0002150368,0.2449267;0.1301997;0.01910892,0.3961369;-0.1034966;-0.01124734,-0.1114042;0.3650454;-0.005676739,-0.1841986;0.09550351;0.01549266,-0.2035519;-0.1824057;-0.01264836,0.07227763;0.008544238;-0.03321055,0.09656369;-0.3694372;-0.002548356,0.102725;-0.7119349;0.06926671,0.1152368;-0.759546;0.007460807,-0.06830944;-0.0009106339;-0.0416292,-0.08417609;-0.3791626;-0.008862019,-0.09727606;-0.7222257;0.05922697,-0.09387769;-0.7097351;-0.03916953,0.0003763353;0.3993807;0.02127121,0;0;0,0.01223282;0.1995332;0.006070559,0.03140003;0.4988208;0.001040782,0.1156191;0.3427403;-0.04915894,0.2471994;0.3574526;-0.2958778,0.05911185;0.5497965;-0.2182446,-0.09407874;0.3854066;0.01337639,-0.1653205;0.1151927;0.03095594,-0.1633118;-0.1507848;-0.05651948,0.06348719;0.001955241;-0.04863696,0.1141804;-0.3704735;0.007282838,0.1219698;-0.7109646;0.08793753,0.1291772;-0.7604817;0.02772883,-0.07778969;0.004865697;-0.01803023,-0.0688885;-0.3744137;0.003600413,-0.07970695;-0.7153075;0.08217763,-0.09723048;-0.7034246;-0.01459373,0.02487145;0.3991326;0.005474108,54.83577
+0;0;0,-0.0004288992;0.1995209;0.0138291,0.001193579;0.499377;0.02098736,0.1166291;0.3783584;0.0002150368,0.2449267;0.1301997;0.01910892,0.3961369;-0.1034966;-0.01124734,-0.1114042;0.3650454;-0.005676739,-0.1841986;0.09550351;0.01549266,-0.2035519;-0.1824057;-0.01264836,0.07227763;0.008544238;-0.03321055,0.09656369;-0.3694372;-0.002548356,0.102725;-0.7119349;0.06926671,0.1152368;-0.759546;0.007460807,-0.06830944;-0.0009106339;-0.0416292,-0.08417609;-0.3791626;-0.008862019,-0.09727606;-0.7222257;0.05922697,-0.09387769;-0.7097351;-0.03916953,0.0003763353;0.3993807;0.02127121,0;0;0,0.01223282;0.1995332;0.006070559,0.03140003;0.4988208;0.001040782,0.1156191;0.3427403;-0.04915894,0.2471994;0.3574526;-0.2958778,0.05911185;0.5497965;-0.2182446,-0.09407874;0.3854066;0.01337639,-0.1653205;0.1151927;0.03095594,-0.1633118;-0.1507848;-0.05651948,0.06348719;0.001955241;-0.04863696,0.1141804;-0.3704735;0.007282838,0.1219698;-0.7109646;0.08793753,0.1291772;-0.7604817;0.02772883,-0.07778969;0.004865697;-0.01803023,-0.0688885;-0.3744137;0.003600413,-0.07970695;-0.7153075;0.08217763,-0.09723048;-0.7034246;-0.01459373,0.02487145;0.3991326;0.005474108,54.85799
+0;0;0,-0.0004288992;0.1995209;0.0138291,0.001193579;0.499377;0.02098736,0.1166291;0.3783584;0.0002150368,0.2449267;0.1301997;0.01910892,0.3961369;-0.1034966;-0.01124734,-0.1114042;0.3650454;-0.005676739,-0.1841986;0.09550351;0.01549266,-0.2035519;-0.1824057;-0.01264836,0.07227763;0.008544238;-0.03321055,0.09656369;-0.3694372;-0.002548356,0.102725;-0.7119349;0.06926671,0.1152368;-0.759546;0.007460807,-0.06830944;-0.0009106339;-0.0416292,-0.08417609;-0.3791626;-0.008862019,-0.09727606;-0.7222257;0.05922697,-0.09387769;-0.7097351;-0.03916953,0.0003763353;0.3993807;0.02127121,0;0;0,0.0120334;0.1995428;0.006155093,0.03102407;0.4988421;0.001185118,0.1152907;0.3427218;-0.04897987,0.2469101;0.3573998;-0.2956799,0.05859782;0.5495629;-0.2181439,-0.09433763;0.3849697;0.01381799,-0.1822517;0.122287;0.05466991,-0.1271442;-0.1031116;-0.1020421,0.06349946;0.002011993;-0.04861862,0.1136217;-0.3704713;0.007452104,0.1214059;-0.7109759;0.08805026,0.1288635;-0.7602966;0.02761339,-0.07778007;0.004790209;-0.01809184,-0.06951116;-0.3744686;0.004143199,-0.08019756;-0.7154133;0.08251727,-0.0978019;-0.7035308;-0.01423934,0.02453828;0.3991507;0.005607353,54.86924
+0;0;0,-0.0003482773;0.199519;0.01385852,0.001249219;0.4993731;0.02110684,0.1166664;0.3782356;0.0002271198,0.2409937;0.128111;0.01973117,0.3832038;-0.1112345;-0.0101019,-0.1112351;0.3646946;-0.005541539,-0.1845326;0.09526423;0.01530944,-0.204117;-0.1826522;-0.01259936,0.07225983;0.008540477;-0.03325021,0.0963975;-0.3694365;-0.00241548,0.1025792;-0.7118952;0.06958297,0.1150184;-0.7593577;0.007576223,-0.06835101;-0.00089929;-0.04156116,-0.08421104;-0.379151;-0.008787952,-0.09722649;-0.7221888;0.05944453,-0.0939076;-0.7096903;-0.03895611,0.0004493263;0.3993766;0.02136107,0;0;0,0.0120334;0.1995428;0.006155093,0.03102407;0.4988421;0.001185118,0.1152907;0.3427218;-0.04897987,0.2469101;0.3573998;-0.2956799,0.05859782;0.5495629;-0.2181439,-0.09433763;0.3849697;0.01381799,-0.1822517;0.122287;0.05466991,-0.1271442;-0.1031116;-0.1020421,0.06349946;0.002011993;-0.04861862,0.1136217;-0.3704713;0.007452104,0.1214059;-0.7109759;0.08805026,0.1288635;-0.7602966;0.02761339,-0.07778007;0.004790209;-0.01809184,-0.06951116;-0.3744686;0.004143199,-0.08019756;-0.7154133;0.08251727,-0.0978019;-0.7035308;-0.01423934,0.02453828;0.3991507;0.005607353,54.89153
+0;0;0,-0.0003482773;0.199519;0.01385852,0.001249219;0.4993731;0.02110684,0.1166664;0.3782356;0.0002271198,0.2409937;0.128111;0.01973117,0.3832038;-0.1112345;-0.0101019,-0.1112351;0.3646946;-0.005541539,-0.1845326;0.09526423;0.01530944,-0.204117;-0.1826522;-0.01259936,0.07225983;0.008540477;-0.03325021,0.0963975;-0.3694365;-0.00241548,0.1025792;-0.7118952;0.06958297,0.1150184;-0.7593577;0.007576223,-0.06835101;-0.00089929;-0.04156116,-0.08421104;-0.379151;-0.008787952,-0.09722649;-0.7221888;0.05944453,-0.0939076;-0.7096903;-0.03895611,0.0004493263;0.3993766;0.02136107,0;0;0,0.01194031;0.1995476;0.006180932,0.03080405;0.4988556;0.001249793,0.115096;0.3427224;-0.04894409,0.2469947;0.356764;-0.295532,0.05858906;0.5490054;-0.2184182,-0.09449379;0.384865;0.0139966,-0.1827074;0.1222415;0.0545835,-0.1320536;-0.1089574;-0.09502017,0.06368869;0.001981799;-0.04837172,0.113215;-0.3706141;0.007480342,0.1209748;-0.7111822;0.08781143,0.1283512;-0.7604455;0.0272893,-0.07773832;0.004802167;-0.01826724,-0.06961681;-0.3744002;0.004962506,-0.08051438;-0.7154433;0.08287793,-0.09817068;-0.7035611;-0.01386917,0.02435957;0.3991609;0.005659763,54.91386
+0;0;0,-0.0001611675;0.1995082;0.01401556,0.001704884;0.4993545;0.02152794,0.1169991;0.3783697;0.0002485607,0.2374184;0.1263586;0.01998658,0.3702839;-0.1185095;-0.008055262,-0.1109332;0.3649642;-0.005337048,-0.184957;0.09575024;0.01574259,-0.2047062;-0.1821574;-0.01213761,0.07215133;0.008541736;-0.03348469,0.09739972;-0.369398;-0.003086207,0.1024256;-0.7117255;0.06962299,0.1152466;-0.7592181;0.007731706,-0.06850315;-0.0009092324;-0.04130972,-0.08449879;-0.3791429;-0.008393206,-0.0975908;-0.7221312;0.06007269,-0.08231439;-0.768406;-0.002766766,0.0008104674;0.3993586;0.02168833,0;0;0,0.01185152;0.1995491;0.00629989,0.03064778;0.4988653;0.001577726,0.1149343;0.3426842;-0.04870093,0.2465726;0.356873;-0.2954195,0.05817421;0.5491692;-0.2184246,-0.09465329;0.3849734;0.01405844,-0.1811389;0.121619;0.05361434,-0.133175;-0.1113559;-0.09410904,0.06368164;0.002012716;-0.04837972,0.1128811;-0.3706035;0.007624939,0.1205841;-0.711183;0.0879137,0.1280415;-0.7605499;0.02753748,-0.07773558;0.004763985;-0.01828893,-0.07024568;-0.3743973;0.00580647,-0.08091677;-0.715493;0.08352314,-0.09850164;-0.7035986;-0.01323926,0.02422516;0.3991656;0.005904132,54.9375
+0;0;0,-0.0001611675;0.1995082;0.01401556,0.001704884;0.4993545;0.02152794,0.1169991;0.3783697;0.0002485607,0.2374184;0.1263586;0.01998658,0.3702839;-0.1185095;-0.008055262,-0.1109332;0.3649642;-0.005337048,-0.184957;0.09575024;0.01574259,-0.2047062;-0.1821574;-0.01213761,0.07215133;0.008541736;-0.03348469,0.09739972;-0.369398;-0.003086207,0.1024256;-0.7117255;0.06962299,0.1152466;-0.7592181;0.007731706,-0.06850315;-0.0009092324;-0.04130972,-0.08449879;-0.3791429;-0.008393206,-0.0975908;-0.7221312;0.06007269,-0.08231439;-0.768406;-0.002766766,0.0008104674;0.3993586;0.02168833,0;0;0,0.01185152;0.1995491;0.00629989,0.03064778;0.4988653;0.001577726,0.1149343;0.3426842;-0.04870093,0.2465726;0.356873;-0.2954195,0.05817421;0.5491692;-0.2184246,-0.09465329;0.3849734;0.01405844,-0.1811389;0.121619;0.05361434,-0.133175;-0.1113559;-0.09410904,0.06368164;0.002012716;-0.04837972,0.1128811;-0.3706035;0.007624939,0.1205841;-0.711183;0.0879137,0.1280415;-0.7605499;0.02753748,-0.07773558;0.004763985;-0.01828893,-0.07024568;-0.3743973;0.00580647,-0.08091677;-0.715493;0.08352314,-0.09850164;-0.7035986;-0.01323926,0.02422516;0.3991656;0.005904132,54.94731
+0;0;0,-0.0001611675;0.1995082;0.01401556,0.001704884;0.4993545;0.02152794,0.1169991;0.3783697;0.0002485607,0.2374184;0.1263586;0.01998658,0.3702839;-0.1185095;-0.008055262,-0.1109332;0.3649642;-0.005337048,-0.184957;0.09575024;0.01574259,-0.2047062;-0.1821574;-0.01213761,0.07215133;0.008541736;-0.03348469,0.09739972;-0.369398;-0.003086207,0.1024256;-0.7117255;0.06962299,0.1152466;-0.7592181;0.007731706,-0.06850315;-0.0009092324;-0.04130972,-0.08449879;-0.3791429;-0.008393206,-0.0975908;-0.7221312;0.06007269,-0.08231439;-0.768406;-0.002766766,0.0008104674;0.3993586;0.02168833,0;0;0,0.01185152;0.1995491;0.00629989,0.03064778;0.4988653;0.001577726,0.1149343;0.3426842;-0.04870093,0.2465726;0.356873;-0.2954195,0.05817421;0.5491692;-0.2184246,-0.09465329;0.3849734;0.01405844,-0.1811389;0.121619;0.05361434,-0.133175;-0.1113559;-0.09410904,0.06368164;0.002012716;-0.04837972,0.1128811;-0.3706035;0.007624939,0.1205841;-0.711183;0.0879137,0.1280415;-0.7605499;0.02753748,-0.07773558;0.004763985;-0.01828893,-0.07024568;-0.3743973;0.00580647,-0.08091677;-0.715493;0.08352314,-0.09850164;-0.7035986;-0.01323926,0.02422516;0.3991656;0.005904132,54.95853
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.01170318;0.1995569;0.006331277,0.03030587;0.4988856;0.001647842,0.1146402;0.3427154;-0.04866874,0.2461577;0.356925;-0.2954505,0.05765939;0.5490816;-0.2183517,-0.09490463;0.3849242;0.01449942,-0.1808585;0.1214634;0.054504,-0.133061;-0.1108091;-0.09437462,0.06370281;0.0020841;-0.04834883,0.1124815;-0.3705814;0.007696114,0.1201717;-0.7111539;0.08801592,0.1272808;-0.7602665;0.02726525,-0.07770307;0.004662802;-0.01845242,-0.07025145;-0.374517;0.005363116,-0.08120634;-0.7155823;0.08317348,-0.09890375;-0.703692;-0.01356762,0.02393933;0.3991819;0.005965419,54.96972
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.01170318;0.1995569;0.006331277,0.03030587;0.4988856;0.001647842,0.1146402;0.3427154;-0.04866874,0.2461577;0.356925;-0.2954505,0.05765939;0.5490816;-0.2183517,-0.09490463;0.3849242;0.01449942,-0.1808585;0.1214634;0.054504,-0.133061;-0.1108091;-0.09437462,0.06370281;0.0020841;-0.04834883,0.1124815;-0.3705814;0.007696114,0.1201717;-0.7111539;0.08801592,0.1272808;-0.7602665;0.02726525,-0.07770307;0.004662802;-0.01845242,-0.07025145;-0.374517;0.005363116,-0.08120634;-0.7155823;0.08317348,-0.09890375;-0.703692;-0.01356762,0.02393933;0.3991819;0.005965419,54.99197
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.0117174;0.1995562;0.006325094,0.03030723;0.4988856;0.001638663,0.1146069;0.3426954;-0.04872832,0.2460904;0.3568605;-0.2955307,0.057262;0.5486392;-0.2182987,-0.09490198;0.3849516;0.01441605,-0.1814256;0.1219232;0.0560061,-0.1332624;-0.1097441;-0.09369548,0.06368178;0.002083235;-0.04837654,0.1124207;-0.3705812;0.007710773,0.1201421;-0.7111803;0.08791442,0.1269112;-0.7601893;0.0269902,-0.07772594;0.004657163;-0.01835728,-0.07043181;-0.3743552;0.008032437,-0.08161078;-0.7156473;0.08480954,-0.09930175;-0.7037575;-0.01193266,0.02395089;0.3991814;0.005959934,55.0034
+0;0;0,-0.0001599009;0.1995015;0.01411118,0.001555154;0.4993442;0.02179563,0.1168596;0.3784388;0.0001445357,0.2323184;0.1241544;0.02036095,0.3603916;-0.1234579;-0.005819688,-0.1109687;0.3647609;-0.005120596,-0.1854189;0.09567147;0.01604674,-0.2053429;-0.1822172;-0.01189796,0.0719414;0.008334524;-0.03398485,0.09669969;-0.3695459;-0.002466366,0.1016649;-0.711849;0.07036225,0.1143208;-0.7592513;0.008324236,-0.06873192;-0.0008350964;-0.04092953,-0.0848866;-0.3790569;-0.007955492,-0.0979231;-0.721992;0.06078691,-0.08293132;-0.7679162;-0.002543703,0.000715911;0.3993478;0.02190344,0;0;0,0.0117174;0.1995562;0.006325094,0.03030723;0.4988856;0.001638663,0.1146069;0.3426954;-0.04872832,0.2460904;0.3568605;-0.2955307,0.057262;0.5486392;-0.2182987,-0.09490198;0.3849516;0.01441605,-0.1814256;0.1219232;0.0560061,-0.1332624;-0.1097441;-0.09369548,0.06368178;0.002083235;-0.04837654,0.1124207;-0.3705812;0.007710773,0.1201421;-0.7111803;0.08791442,0.1269112;-0.7601893;0.0269902,-0.07772594;0.004657163;-0.01835728,-0.07043181;-0.3743552;0.008032437,-0.08161078;-0.7156473;0.08480954,-0.09930175;-0.7037575;-0.01193266,0.02395089;0.3991814;0.005959934,55.02569
+0;0;0,-2.471476E-05;0.1994957;0.01419455,0.00179871;0.4993343;0.0220094,0.116978;0.3781897;4.710443E-05,0.2275829;0.1217667;0.0203904,0.351209;-0.1282494;-0.00427782,-0.1107257;0.3646864;-0.004992802,-0.1863801;0.09604159;0.01750932,-0.2058607;-0.1817484;-0.01170074,0.07185562;0.008206849;-0.03419674,0.09620632;-0.369636;-0.001918826,0.1012033;-0.711936;0.07092136,0.1017633;-0.6994151;-0.0275376,-0.0688815;-0.0007434443;-0.04067906,-0.08511647;-0.3789466;-0.007530741,-0.09827093;-0.7218595;0.06130045,-0.08306524;-0.7681267;-0.001565307,0.0009283409;0.3993381;0.02207459,0;0;0,0.01166971;0.1995572;0.00638221,0.03013506;0.4988974;0.001873521,0.1144152;0.3427939;-0.0487773,0.2455947;0.3566325;-0.29576,0.05665118;0.5483204;-0.2185839,-0.09505628;0.3850563;0.01425209,-0.1818017;0.1227082;0.05951504,-0.1265814;-0.1020533;-0.09806971,0.06372257;0.00212985;-0.04832078,0.1123623;-0.3705727;0.007598724,0.1200746;-0.7111985;0.08768971,0.1268106;-0.7605825;0.02725121,-0.07770632;0.004601534;-0.01845407,-0.07052098;-0.3743908;0.008250941,-0.08172329;-0.7158156;0.08443235,-0.0993945;-0.7039097;-0.01231647,0.02383147;0.399187;0.006126409,55.04779
+0;0;0,-2.471476E-05;0.1994957;0.01419455,0.00179871;0.4993343;0.0220094,0.116978;0.3781897;4.710443E-05,0.2275829;0.1217667;0.0203904,0.351209;-0.1282494;-0.00427782,-0.1107257;0.3646864;-0.004992802,-0.1863801;0.09604159;0.01750932,-0.2058607;-0.1817484;-0.01170074,0.07185562;0.008206849;-0.03419674,0.09620632;-0.369636;-0.001918826,0.1012033;-0.711936;0.07092136,0.1017633;-0.6994151;-0.0275376,-0.0688815;-0.0007434443;-0.04067906,-0.08511647;-0.3789466;-0.007530741,-0.09827093;-0.7218595;0.06130045,-0.08306524;-0.7681267;-0.001565307,0.0009283409;0.3993381;0.02207459,0;0;0,0.0116035;0.1995612;0.006377612,0.02997947;0.4989068;0.001862645,0.1142704;0.3428109;-0.04882207,0.2451364;0.3566226;-0.2959725,0.05374776;0.5462446;-0.2197237,-0.09519393;0.3850828;0.01413582,-0.1816829;0.1227367;0.05989776,-0.1252355;-0.1001187;-0.09994334,0.06366686;0.002218036;-0.0483902,0.1121762;-0.370503;0.007519431,0.1198899;-0.711176;0.08740922,0.1282871;-0.759872;0.02628292,-0.07774075;0.004470072;-0.01834106,-0.07079296;-0.3745299;0.008318754,-0.08193205;-0.7159748;0.08441903,-0.09959085;-0.7040713;-0.01233161,0.02370343;0.3991947;0.006118779,55.05918
+0;0;0,-2.471476E-05;0.1994957;0.01419455,0.00179871;0.4993343;0.0220094,0.116978;0.3781897;4.710443E-05,0.2275829;0.1217667;0.0203904,0.351209;-0.1282494;-0.00427782,-0.1107257;0.3646864;-0.004992802,-0.1863801;0.09604159;0.01750932,-0.2058607;-0.1817484;-0.01170074,0.07185562;0.008206849;-0.03419674,0.09620632;-0.369636;-0.001918826,0.1012033;-0.711936;0.07092136,0.1017633;-0.6994151;-0.0275376,-0.0688815;-0.0007434443;-0.04067906,-0.08511647;-0.3789466;-0.007530741,-0.09827093;-0.7218595;0.06130045,-0.08306524;-0.7681267;-0.001565307,0.0009283409;0.3993381;0.02207459,0;0;0,0.0116035;0.1995612;0.006377612,0.02997947;0.4989068;0.001862645,0.1142704;0.3428109;-0.04882207,0.2451364;0.3566226;-0.2959725,0.05374776;0.5462446;-0.2197237,-0.09519393;0.3850828;0.01413582,-0.1816829;0.1227367;0.05989776,-0.1252355;-0.1001187;-0.09994334,0.06366686;0.002218036;-0.0483902,0.1121762;-0.370503;0.007519431,0.1198899;-0.711176;0.08740922,0.1282871;-0.759872;0.02628292,-0.07774075;0.004470072;-0.01834106,-0.07079296;-0.3745299;0.008318754,-0.08193205;-0.7159748;0.08441903,-0.09959085;-0.7040713;-0.01233161,0.02370343;0.3991947;0.006118779,55.07031
+0;0;0,3.866922E-05;0.1994885;0.01429492,0.001828772;0.499323;0.0222711,0.1169278;0.3778495;4.868023E-05,0.2222338;0.1192107;0.02045952,0.3415821;-0.1329765;-0.003153821,-0.1106661;0.3645744;-0.004692726,-0.1866035;0.09607708;0.01860262,-0.2057359;-0.1816712;-0.01122769,0.07187665;0.008070537;-0.03418499,0.09615133;-0.3697717;-0.001843542,0.1010065;-0.7120364;0.07117258,0.101484;-0.6995054;-0.0272886,-0.06888915;-0.0005782707;-0.04066879,-0.08565202;-0.3787662;-0.007609535,-0.09849916;-0.7215673;0.06183385,-0.08340776;-0.7679566;-0.0009111278,0.0009783423;0.3993266;0.02228507,0;0;0,0.01139412;0.1995755;0.006309283,0.02956226;0.4989327;0.0017231,0.1138476;0.342796;-0.04900492,0.2443814;0.3568132;-0.2963194,0.05236691;0.5455624;-0.2194807,-0.0955734;0.3852078;0.01391115,-0.182122;0.123312;0.06207687,-0.1261575;-0.09893365;-0.09877968,0.06355672;0.00235018;-0.04852854,0.1116981;-0.3703803;0.007635176,0.1193766;-0.7111176;0.08725372,0.1277749;-0.7598239;0.02614067,-0.0777805;0.004322696;-0.01820735,-0.07123953;-0.3746579;0.008827731,-0.08260349;-0.7162217;0.08435945,-0.1002589;-0.7043274;-0.01239006,0.02334305;0.399218;0.005999496,55.09262
+0;0;0,3.866922E-05;0.1994885;0.01429492,0.001828772;0.499323;0.0222711,0.1169278;0.3778495;4.868023E-05,0.2222338;0.1192107;0.02045952,0.3415821;-0.1329765;-0.003153821,-0.1106661;0.3645744;-0.004692726,-0.1866035;0.09607708;0.01860262,-0.2057359;-0.1816712;-0.01122769,0.07187665;0.008070537;-0.03418499,0.09615133;-0.3697717;-0.001843542,0.1010065;-0.7120364;0.07117258,0.101484;-0.6995054;-0.0272886,-0.06888915;-0.0005782707;-0.04066879,-0.08565202;-0.3787662;-0.007609535,-0.09849916;-0.7215673;0.06183385,-0.08340776;-0.7679566;-0.0009111278,0.0009783423;0.3993266;0.02228507,0;0;0,0.01139412;0.1995755;0.006309283,0.02956226;0.4989327;0.0017231,0.1138476;0.342796;-0.04900492,0.2443814;0.3568132;-0.2963194,0.05236691;0.5455624;-0.2194807,-0.0955734;0.3852078;0.01391115,-0.182122;0.123312;0.06207687,-0.1261575;-0.09893365;-0.09877968,0.06355672;0.00235018;-0.04852854,0.1116981;-0.3703803;0.007635176,0.1193766;-0.7111176;0.08725372,0.1277749;-0.7598239;0.02614067,-0.0777805;0.004322696;-0.01820735,-0.07123953;-0.3746579;0.008827731,-0.08260349;-0.7162217;0.08435945,-0.1002589;-0.7043274;-0.01239006,0.02334305;0.399218;0.005999496,55.10387
+0;0;0,3.866922E-05;0.1994885;0.01429492,0.001828772;0.499323;0.0222711,0.1169278;0.3778495;4.868023E-05,0.2222338;0.1192107;0.02045952,0.3415821;-0.1329765;-0.003153821,-0.1106661;0.3645744;-0.004692726,-0.1866035;0.09607708;0.01860262,-0.2057359;-0.1816712;-0.01122769,0.07187665;0.008070537;-0.03418499,0.09615133;-0.3697717;-0.001843542,0.1010065;-0.7120364;0.07117258,0.101484;-0.6995054;-0.0272886,-0.06888915;-0.0005782707;-0.04066879,-0.08565202;-0.3787662;-0.007609535,-0.09849916;-0.7215673;0.06183385,-0.08340776;-0.7679566;-0.0009111278,0.0009783423;0.3993266;0.02228507,0;0;0,0.01139412;0.1995755;0.006309283,0.02956226;0.4989327;0.0017231,0.1138476;0.342796;-0.04900492,0.2443814;0.3568132;-0.2963194,0.05236691;0.5455624;-0.2194807,-0.0955734;0.3852078;0.01391115,-0.182122;0.123312;0.06207687,-0.1261575;-0.09893365;-0.09877968,0.06355672;0.00235018;-0.04852854,0.1116981;-0.3703803;0.007635176,0.1193766;-0.7111176;0.08725372,0.1277749;-0.7598239;0.02614067,-0.0777805;0.004322696;-0.01820735,-0.07123953;-0.3746579;0.008827731,-0.08260349;-0.7162217;0.08435945,-0.1002589;-0.7043274;-0.01239006,0.02334305;0.399218;0.005999496,55.11497
+0;0;0,0.0002921929;0.1994682;0.01457245,0.002625415;0.4992887;0.02294924,0.1173263;0.3774109;-1.613051E-06,0.219104;0.1173406;0.0201169,0.3312075;-0.1383843;-0.0008013193,-0.1101423;0.3647756;-0.004206389,-0.1851455;0.09590018;0.01771455,-0.2048704;-0.1819052;-0.01118325,0.07188023;0.008049604;-0.0341824,0.09538563;-0.3697902;-0.001249649,0.1004705;-0.7119963;0.07202487,0.1008148;-0.6994442;-0.02644062,-0.06896298;-0.0005231009;-0.04054423,-0.08594536;-0.3786414;-0.006808143,-0.09891403;-0.721432;0.06266461,-0.0961045;-0.7088749;-0.03576228,0.001564927;0.3992944;0.02281128,0;0;0,0.01141433;0.1995808;0.006099269,0.0295502;0.498938;0.001345435,0.1138173;0.3427247;-0.04931352,0.2440456;0.3568353;-0.2967837,0.05187026;0.5454035;-0.2199029,-0.09557876;0.3852513;0.0135252,-0.182501;0.1242463;0.06568745,-0.1337529;-0.1073687;-0.08390565,0.06338741;0.002408193;-0.04874665,0.1115488;-0.3703286;0.007358182,0.1192451;-0.7111225;0.0867326,0.127539;-0.7595897;0.02529873,-0.07795798;0.004272543;-0.01744415,-0.07138625;-0.3747708;0.008688908,-0.08264311;-0.7163279;0.0842668,-0.1002858;-0.7044402;-0.01248381,0.0233455;0.3992242;0.005665091,55.13732
+0;0;0,0.0002921929;0.1994682;0.01457245,0.002625415;0.4992887;0.02294924,0.1173263;0.3774109;-1.613051E-06,0.219104;0.1173406;0.0201169,0.3312075;-0.1383843;-0.0008013193,-0.1101423;0.3647756;-0.004206389,-0.1851455;0.09590018;0.01771455,-0.2048704;-0.1819052;-0.01118325,0.07188023;0.008049604;-0.0341824,0.09538563;-0.3697902;-0.001249649,0.1004705;-0.7119963;0.07202487,0.1008148;-0.6994442;-0.02644062,-0.06896298;-0.0005231009;-0.04054423,-0.08594536;-0.3786414;-0.006808143,-0.09891403;-0.721432;0.06266461,-0.0961045;-0.7088749;-0.03576228,0.001564927;0.3992944;0.02281128,0;0;0,0.01141433;0.1995808;0.006099269,0.0295502;0.498938;0.001345435,0.1138173;0.3427247;-0.04931352,0.2440456;0.3568353;-0.2967837,0.05187026;0.5454035;-0.2199029,-0.09557876;0.3852513;0.0135252,-0.182501;0.1242463;0.06568745,-0.1337529;-0.1073687;-0.08390565,0.06338741;0.002408193;-0.04874665,0.1115488;-0.3703286;0.007358182,0.1192451;-0.7111225;0.0867326,0.127539;-0.7595897;0.02529873,-0.07795798;0.004272543;-0.01744415,-0.07138625;-0.3747708;0.008688908,-0.08264311;-0.7163279;0.0842668,-0.1002858;-0.7044402;-0.01248381,0.0233455;0.3992242;0.005665091,55.15962
+0;0;0,0.0002921929;0.1994682;0.01457245,0.002625415;0.4992887;0.02294924,0.1173263;0.3774109;-1.613051E-06,0.219104;0.1173406;0.0201169,0.3312075;-0.1383843;-0.0008013193,-0.1101423;0.3647756;-0.004206389,-0.1851455;0.09590018;0.01771455,-0.2048704;-0.1819052;-0.01118325,0.07188023;0.008049604;-0.0341824,0.09538563;-0.3697902;-0.001249649,0.1004705;-0.7119963;0.07202487,0.1008148;-0.6994442;-0.02644062,-0.06896298;-0.0005231009;-0.04054423,-0.08594536;-0.3786414;-0.006808143,-0.09891403;-0.721432;0.06266461,-0.0961045;-0.7088749;-0.03576228,0.001564927;0.3992944;0.02281128,0;0;0,0.0106373;0.1995921;0.007060274,0.02525789;0.4991859;0.005883115,0.1118605;0.3431738;-0.04511136,0.2387888;0.36113;-0.2940426,0.046197;0.5506604;-0.220649,-0.09867326;0.3866816;0.01423377,-0.1861206;0.1258815;0.06654336,-0.1363505;-0.1036313;-0.08592569,0.06335509;0.002416829;-0.04878822,0.1112502;-0.370332;0.007464297,0.1196219;-0.7110651;0.08703101,0.127697;-0.7601805;0.02640463,-0.07799944;0.004229794;-0.01726833,-0.07132215;-0.3748372;0.008492034,-0.08296709;-0.7163677;0.08413164,-0.0996395;-0.7043613;-0.01281299,0.02053269;0.3993397;0.008783113,55.17086
+0;0;0,0.000542329;0.1994757;0.01446163,0.003220354;0.4992974;0.02268603,0.1177782;0.3773092;-0.0002907421,0.2154411;0.1155948;0.01888009,0.3239985;-0.1418245;0.0001555327,-0.1098136;0.3649862;-0.004005099,-0.1848731;0.09609646;0.01754465,-0.2039905;-0.1817339;-0.01152103,0.07188501;0.008033865;-0.03417605,0.09521693;-0.3698013;-0.001067236,0.1002907;-0.7119917;0.07228112,0.1005365;-0.6994456;-0.02618361,-0.06897346;-0.0004968008;-0.04052671,-0.08600272;-0.3786036;-0.006685596,-0.099137;-0.7213365;0.06303993,-0.08393194;-0.7674659;7.145107E-06,0.002053834;0.3993043;0.02260223,0;0;0,0.0106373;0.1995921;0.007060274,0.02525789;0.4991859;0.005883115,0.1118605;0.3431738;-0.04511136,0.2387888;0.36113;-0.2940426,0.046197;0.5506604;-0.220649,-0.09867326;0.3866816;0.01423377,-0.1861206;0.1258815;0.06654336,-0.1363505;-0.1036313;-0.08592569,0.06335509;0.002416829;-0.04878822,0.1112502;-0.370332;0.007464297,0.1196219;-0.7110651;0.08703101,0.127697;-0.7601805;0.02640463,-0.07799944;0.004229794;-0.01726833,-0.07132215;-0.3748372;0.008492034,-0.08296709;-0.7163677;0.08413164,-0.0996395;-0.7043613;-0.01281299,0.02053269;0.3993397;0.008783113,55.19302
+0;0;0,0.000542329;0.1994757;0.01446163,0.003220354;0.4992974;0.02268603,0.1177782;0.3773092;-0.0002907421,0.2154411;0.1155948;0.01888009,0.3239985;-0.1418245;0.0001555327,-0.1098136;0.3649862;-0.004005099,-0.1848731;0.09609646;0.01754465,-0.2039905;-0.1817339;-0.01152103,0.07188501;0.008033865;-0.03417605,0.09521693;-0.3698013;-0.001067236,0.1002907;-0.7119917;0.07228112,0.1005365;-0.6994456;-0.02618361,-0.06897346;-0.0004968008;-0.04052671,-0.08600272;-0.3786036;-0.006685596,-0.099137;-0.7213365;0.06303993,-0.08393194;-0.7674659;7.145107E-06,0.002053834;0.3993043;0.02260223,0;0;0,0.01021537;0.1996151;0.007032615,0.02432208;0.499231;0.005587594,0.1110602;0.3423491;-0.04439956,0.2367036;0.3619101;-0.2938612,0.03524688;0.5414066;-0.2190535,-0.09938623;0.3862815;0.01443636,-0.1875453;0.1258041;0.06715757,-0.1371517;-0.1033531;-0.08564121,0.06324747;0.002465618;-0.04892523,0.111275;-0.3703008;0.007097933,0.1193489;-0.7110578;0.08659278,0.1277658;-0.7593611;0.02496689,-0.07803979;0.004224789;-0.01708632,-0.07129678;-0.374878;0.008125605,-0.0830119;-0.716384;0.08386458,-0.09961475;-0.7044042;-0.01308704,0.0197545;0.3993812;0.008615624,55.20466
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.01021537;0.1996151;0.007032615,0.02432208;0.499231;0.005587594,0.1110602;0.3423491;-0.04439956,0.2367036;0.3619101;-0.2938612,0.03524688;0.5414066;-0.2190535,-0.09938623;0.3862815;0.01443636,-0.1875453;0.1258041;0.06715757,-0.1371517;-0.1033531;-0.08564121,0.06324747;0.002465618;-0.04892523,0.111275;-0.3703008;0.007097933,0.1193489;-0.7110578;0.08659278,0.1277658;-0.7593611;0.02496689,-0.07803979;0.004224789;-0.01708632,-0.07129678;-0.374878;0.008125605,-0.0830119;-0.716384;0.08386458,-0.09961475;-0.7044042;-0.01308704,0.0197545;0.3993812;0.008615624,55.22678
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.009776532;0.1996299;0.007233323,0.02349366;0.4992608;0.005634875,0.1099985;0.3417765;-0.04411099,0.2352794;0.3637746;-0.2935519,0.03705578;0.5460933;-0.2169538,-0.1001005;0.3861804;0.01515946,-0.1888812;0.1260424;0.06850904,-0.1391503;-0.102852;-0.08489959,0.06314402;0.002409686;-0.04906144,0.1115258;-0.3703496;0.006703064,0.11934;-0.7109947;0.0867024,0.1280215;-0.7615571;0.02809922,-0.07805996;0.00434347;-0.01696399,-0.07117481;-0.3747958;0.007653566,-0.08291496;-0.7163423;0.08320576,-0.09978761;-0.7043723;-0.01369745,0.01899686;0.3994113;0.008775067,55.23796
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.009776532;0.1996299;0.007233323,0.02349366;0.4992608;0.005634875,0.1099985;0.3417765;-0.04411099,0.2352794;0.3637746;-0.2935519,0.03705578;0.5460933;-0.2169538,-0.1001005;0.3861804;0.01515946,-0.1888812;0.1260424;0.06850904,-0.1391503;-0.102852;-0.08489959,0.06314402;0.002409686;-0.04906144,0.1115258;-0.3703496;0.006703064,0.11934;-0.7109947;0.0867024,0.1280215;-0.7615571;0.02809922,-0.07805996;0.00434347;-0.01696399,-0.07117481;-0.3747958;0.007653566,-0.08291496;-0.7163423;0.08320576,-0.09978761;-0.7043723;-0.01369745,0.01899686;0.3994113;0.008775067,55.26003
+0;0;0,0.0004430156;0.1994636;0.01463119,0.002922422;0.4992805;0.02307392,0.1174081;0.376833;-0.0001916662,0.2123193;0.1140963;0.01881634,0.31515;-0.1456295;-0.0003754497,-0.109942;0.3647156;-0.003806632,-0.185087;0.09580994;0.01724044,-0.2043063;-0.1820742;-0.01123808,0.07188547;0.008068014;-0.03416706,0.09496848;-0.3697817;-0.001049638,0.09994248;-0.7119372;0.07246803,0.1001285;-0.6993725;-0.02600012,-0.06900652;-0.000518092;-0.04047014,-0.08646677;-0.3785651;-0.006183244,-0.09958969;-0.7212716;0.063674,-0.08425497;-0.767335;0.0005929917,0.001817069;0.3992867;0.0229283,0;0;0,0.009550399;0.1996482;0.007028645,0.0229992;0.4992884;0.005133762,0.1097142;0.341754;-0.04426731,0.2348526;0.3630764;-0.2938384,0.03757431;0.5475695;-0.2200579,-0.1004546;0.3860948;0.01501952,-0.1897216;0.1264593;0.06998149,-0.1400302;-0.1022041;-0.08378389,0.06306414;0.002513293;-0.04915889,0.1114419;-0.3702509;0.00657703,0.1191327;-0.7109512;0.08635239,0.1271541;-0.7610884;0.027076,-0.07810473;0.004216965;-0.01678889,-0.071237;-0.3749614;0.007223397,-0.0830395;-0.7165338;0.0826489,-0.09993679;-0.704581;-0.01424683,0.01861746;0.3994378;0.008401092,55.2715
+0;0;0,0.0004858986;0.1994646;0.01461667,0.002958838;0.4992819;0.02304162,0.117314;0.3762565;-0.0003315881,0.2067985;0.1116502;0.01906079,0.3063865;-0.1493541;0.0001137462,-0.1097838;0.3643696;-0.003859483,-0.1853905;0.09561467;0.01745744,-0.2041906;-0.1822878;-0.01112226,0.07179495;0.007946869;-0.03438506,0.09451267;-0.3699116;-0.001116049,0.09951996;-0.7119841;0.07278502,0.1111946;-0.7605289;0.01200319,-0.06913322;-0.0004286902;-0.04025435,-0.08618899;-0.378547;-0.006554957,-0.09996061;-0.7211398;0.06373337,-0.08441061;-0.7672272;0.000733979,0.001860112;0.399288;0.02290506,0;0;0,0.009388165;0.199656;0.007023807,0.02267923;0.4993018;0.004993873,0.1092564;0.3408003;-0.04357504,0.233423;0.3636524;-0.2934959,0.03661856;0.5489798;-0.2205454,-0.1007464;0.3863717;0.01530486,-0.1900765;0.1267131;0.07005463,-0.1403097;-0.102111;-0.08344711,0.06298098;0.002406069;-0.04927075,0.111473;-0.3702307;0.007212337,0.1188194;-0.7110652;0.0864456,0.126692;-0.7610917;0.027,-0.07817888;0.004323472;-0.01641246,-0.07135452;-0.3748832;0.007160401,-0.08324665;-0.7164078;0.08278805,-0.1000187;-0.7044621;-0.01412811,0.018334;0.3994517;0.008320455,55.2936
+0;0;0,0.0004858986;0.1994646;0.01461667,0.002958838;0.4992819;0.02304162,0.117314;0.3762565;-0.0003315881,0.2067985;0.1116502;0.01906079,0.3063865;-0.1493541;0.0001137462,-0.1097838;0.3643696;-0.003859483,-0.1853905;0.09561467;0.01745744,-0.2041906;-0.1822878;-0.01112226,0.07179495;0.007946869;-0.03438506,0.09451267;-0.3699116;-0.001116049,0.09951996;-0.7119841;0.07278502,0.1111946;-0.7605289;0.01200319,-0.06913322;-0.0004286902;-0.04025435,-0.08618899;-0.378547;-0.006554957,-0.09996061;-0.7211398;0.06373337,-0.08441061;-0.7672272;0.000733979,0.001860112;0.399288;0.02290506,0;0;0,0.009388165;0.199656;0.007023807,0.02267923;0.4993018;0.004993873,0.1092564;0.3408003;-0.04357504,0.233423;0.3636524;-0.2934959,0.03661856;0.5489798;-0.2205454,-0.1007464;0.3863717;0.01530486,-0.1900765;0.1267131;0.07005463,-0.1403097;-0.102111;-0.08344711,0.06298098;0.002406069;-0.04927075,0.111473;-0.3702307;0.007212337,0.1188194;-0.7110652;0.0864456,0.126692;-0.7610917;0.027,-0.07817888;0.004323472;-0.01641246,-0.07135452;-0.3748832;0.007160401,-0.08324665;-0.7164078;0.08278805,-0.1000187;-0.7044621;-0.01412811,0.018334;0.3994517;0.008320455,55.31606
+0;0;0,0.0004858986;0.1994646;0.01461667,0.002958838;0.4992819;0.02304162,0.117314;0.3762565;-0.0003315881,0.2067985;0.1116502;0.01906079,0.3063865;-0.1493541;0.0001137462,-0.1097838;0.3643696;-0.003859483,-0.1853905;0.09561467;0.01745744,-0.2041906;-0.1822878;-0.01112226,0.07179495;0.007946869;-0.03438506,0.09451267;-0.3699116;-0.001116049,0.09951996;-0.7119841;0.07278502,0.1111946;-0.7605289;0.01200319,-0.06913322;-0.0004286902;-0.04025435,-0.08618899;-0.378547;-0.006554957,-0.09996061;-0.7211398;0.06373337,-0.08441061;-0.7672272;0.000733979,0.001860112;0.399288;0.02290506,0;0;0,0.009388165;0.199656;0.007023807,0.02267923;0.4993018;0.004993873,0.1092564;0.3408003;-0.04357504,0.233423;0.3636524;-0.2934959,0.03661856;0.5489798;-0.2205454,-0.1007464;0.3863717;0.01530486,-0.1900765;0.1267131;0.07005463,-0.1403097;-0.102111;-0.08344711,0.06298098;0.002406069;-0.04927075,0.111473;-0.3702307;0.007212337,0.1188194;-0.7110652;0.0864456,0.126692;-0.7610917;0.027,-0.07817888;0.004323472;-0.01641246,-0.07135452;-0.3748832;0.007160401,-0.08324665;-0.7164078;0.08278805,-0.1000187;-0.7044621;-0.01412811,0.018334;0.3994517;0.008320455,55.32714
+0;0;0,0.0004905824;0.1994644;0.01461874,0.002872568;0.4992813;0.02309021,0.1170908;0.3758752;-0.0007823501,0.2041652;0.1105137;0.01925048,0.2983894;-0.1523876;-0.000866551,-0.1098689;0.3644074;-0.003726536,-0.1858612;0.09583905;0.01854893,-0.2042199;-0.1820002;-0.01091816,0.07175181;0.007948092;-0.03447472,0.0939251;-0.3699189;-0.0009351745,0.09906629;-0.7118732;0.07350124,0.11072;-0.76024;0.01248613,-0.06918482;-0.0004047487;-0.04016588,-0.08650705;-0.3784811;-0.006134093,-0.1003825;-0.72111;0.06395817,-0.09794741;-0.7085453;-0.03448006,0.001811483;0.399287;0.02293611,0;0;0,0.009083699;0.1996719;0.006972232,0.0219536;0.4993332;0.004677977,0.1089883;0.3410007;-0.04339538,0.2321956;0.3634854;-0.2938238,0.04222752;0.5560441;-0.2214824,-0.1013328;0.3864542;0.01534394,-0.1875058;0.1252667;0.06783496,-0.1347826;-0.09904417;-0.0912402,0.06290969;0.002437856;-0.04936019,0.1114276;-0.3701964;0.007117327,0.1187794;-0.7110716;0.08617423,0.1269692;-0.7608819;0.02648124,-0.07823512;0.00429728;-0.01614929,-0.06995363;-0.3749755;0.005840696,-0.08290893;-0.7163434;0.08199919,-0.09965807;-0.7044181;-0.01491714,0.01773889;0.3994813;0.008117442,55.33845
+0;0;0,0.0004905824;0.1994644;0.01461874,0.002872568;0.4992813;0.02309021,0.1170908;0.3758752;-0.0007823501,0.2041652;0.1105137;0.01925048,0.2983894;-0.1523876;-0.000866551,-0.1098689;0.3644074;-0.003726536,-0.1858612;0.09583905;0.01854893,-0.2042199;-0.1820002;-0.01091816,0.07175181;0.007948092;-0.03447472,0.0939251;-0.3699189;-0.0009351745,0.09906629;-0.7118732;0.07350124,0.11072;-0.76024;0.01248613,-0.06918482;-0.0004047487;-0.04016588,-0.08650705;-0.3784811;-0.006134093,-0.1003825;-0.72111;0.06395817,-0.09794741;-0.7085453;-0.03448006,0.001811483;0.399287;0.02293611,0;0;0,0.00887636;0.1996621;0.007499736,0.02158589;0.4993335;0.0058631,0.1086868;0.3418512;-0.04327366,0.2317706;0.3635776;-0.2938297,0.01851889;0.5265984;-0.2141558,-0.1018201;0.3871606;0.01526178,-0.1882779;0.1261942;0.06838043,-0.1341988;-0.09672913;-0.09218313,0.06284545;0.002403008;-0.04944365,0.1115225;-0.370224;0.006944623,0.1189274;-0.7111883;0.08561173,0.1267035;-0.7614718;0.02650084,-0.07826969;0.004370832;-0.01596093,-0.06864439;-0.3749044;0.005431822,-0.08244481;-0.7163377;0.0811472,-0.09922499;-0.7043685;-0.01577193,0.01738784;0.3994744;0.009110182,55.36069
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.00887636;0.1996621;0.007499736,0.02158589;0.4993335;0.0058631,0.1086868;0.3418512;-0.04327366,0.2317706;0.3635776;-0.2938297,0.01851889;0.5265984;-0.2141558,-0.1018201;0.3871606;0.01526178,-0.1882779;0.1261942;0.06838043,-0.1341988;-0.09672913;-0.09218313,0.06284545;0.002403008;-0.04944365,0.1115225;-0.370224;0.006944623,0.1189274;-0.7111883;0.08561173,0.1267035;-0.7614718;0.02650084,-0.07826969;0.004370832;-0.01596093,-0.06864439;-0.3749044;0.005431822,-0.08244481;-0.7163377;0.0811472,-0.09922499;-0.7043685;-0.01577193,0.01738784;0.3994744;0.009110182,55.37213
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.00887636;0.1996621;0.007499736,0.02158589;0.4993335;0.0058631,0.1086868;0.3418512;-0.04327366,0.2317706;0.3635776;-0.2938297,0.01851889;0.5265984;-0.2141558,-0.1018201;0.3871606;0.01526178,-0.1882779;0.1261942;0.06838043,-0.1341988;-0.09672913;-0.09218313,0.06284545;0.002403008;-0.04944365,0.1115225;-0.370224;0.006944623,0.1189274;-0.7111883;0.08561173,0.1267035;-0.7614718;0.02650084,-0.07826969;0.004370832;-0.01596093,-0.06864439;-0.3749044;0.005431822,-0.08244481;-0.7163377;0.0811472,-0.09922499;-0.7043685;-0.01577193,0.01738784;0.3994744;0.009110182,55.39418
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.008925326;0.1996768;0.007036268,0.02175431;0.499339;0.004991597,0.1086783;0.3410678;-0.04327882,0.2312817;0.3644215;-0.293924,0.03376198;0.5485537;-0.2198883,-0.1017227;0.3873168;0.01470693,-0.1887118;0.1267053;0.06869371,-0.1403408;-0.1044986;-0.08165596,0.06283369;0.002388923;-0.04945928,0.1118516;-0.3702995;0.006223448,0.1191885;-0.711255;0.08493492,0.1268606;-0.7614847;0.02573758,-0.07825773;0.004440768;-0.01600023,-0.06842846;-0.374785;0.006163368,-0.08259097;-0.7162884;0.08149492,-0.09918645;-0.7043498;-0.01545031,0.01749243;0.3994885;0.008414181,55.4056
+0;0;0,0.0006583314;0.1994721;0.01450645,0.003292194;0.499292;0.02278787,0.117512;0.3761818;-0.0009160545,0.2022105;0.1100604;0.01922261,0.2864867;-0.1561289;-0.001772789,-0.1095036;0.3643482;-0.003969286,-0.1860199;0.09594861;0.01854609,-0.2036642;-0.1818825;-0.01142954,0.07171305;0.007960031;-0.03455249,0.09402937;-0.3699164;-0.00121497,0.09889431;-0.7118182;0.07348074,0.1110987;-0.7606418;0.01316565,-0.06922472;-0.000406531;-0.04009706,-0.08668621;-0.3784638;-0.005924139,-0.1006857;-0.7211094;0.06406142,-0.09821881;-0.7085574;-0.03437376,0.002152616;0.3992985;0.02270212,0;0;0,0.008956926;0.1996769;0.006993603,0.02193706;0.4993309;0.004726185,0.1089167;0.3408108;-0.04296651,0.2315026;0.3635652;-0.2936754,0.03540033;0.5497652;-0.2210568,-0.101655;0.3877454;0.0143669,-0.1897182;0.1278528;0.07005079,-0.1343433;-0.09525701;-0.08981049,0.06284696;0.002330216;-0.04944522,0.1118536;-0.3703602;0.006234448,0.1191382;-0.7113676;0.0847255,0.1268523;-0.7614641;0.02535328,-0.07824732;0.004514558;-0.01603045,-0.06827362;-0.3747219;0.005885074,-0.08230396;-0.7162485;0.08113607,-0.09866138;-0.7043113;-0.01584934,0.01761125;0.3994858;0.00822501,55.42764
+0;0;0,0.0009395228;0.1994814;0.01436326,0.004223279;0.4993032;0.022315,0.1180408;0.3756281;-0.001537895,0.2010804;0.1090688;0.01968848,0.2771934;-0.1594366;-0.002931481,-0.1089117;0.3644368;-0.003962571,-0.1852798;0.09596115;0.01814496,-0.2020657;-0.1819509;-0.01157269,0.07167557;0.007829145;-0.03466001,0.09399103;-0.370033;-0.001160618,0.09864971;-0.711659;0.07479985,0.1103316;-0.7602202;0.01404069,-0.06925092;-0.0003353219;-0.04005243,-0.08662975;-0.3784087;-0.006015804,-0.1008003;-0.7210118;0.06414381,-0.09847618;-0.7084724;-0.0342926,0.002852517;0.3993126;0.02235156,0;0;0,0.008956926;0.1996769;0.006993603,0.02193706;0.4993309;0.004726185,0.1089167;0.3408108;-0.04296651,0.2315026;0.3635652;-0.2936754,0.03540033;0.5497652;-0.2210568,-0.101655;0.3877454;0.0143669,-0.1897182;0.1278528;0.07005079,-0.1343433;-0.09525701;-0.08981049,0.06284696;0.002330216;-0.04944522,0.1118536;-0.3703602;0.006234448,0.1191382;-0.7113676;0.0847255,0.1268523;-0.7614641;0.02535328,-0.07824732;0.004514558;-0.01603045,-0.06827362;-0.3747219;0.005885074,-0.08230396;-0.7162485;0.08113607,-0.09866138;-0.7043113;-0.01584934,0.01761125;0.3994858;0.00822501,55.43907
+0;0;0,0.0009395228;0.1994814;0.01436326,0.004223279;0.4993032;0.022315,0.1180408;0.3756281;-0.001537895,0.2010804;0.1090688;0.01968848,0.2771934;-0.1594366;-0.002931481,-0.1089117;0.3644368;-0.003962571,-0.1852798;0.09596115;0.01814496,-0.2020657;-0.1819509;-0.01157269,0.07167557;0.007829145;-0.03466001,0.09399103;-0.370033;-0.001160618,0.09864971;-0.711659;0.07479985,0.1103316;-0.7602202;0.01404069,-0.06925092;-0.0003353219;-0.04005243,-0.08662975;-0.3784087;-0.006015804,-0.1008003;-0.7210118;0.06414381,-0.09847618;-0.7084724;-0.0342926,0.002852517;0.3993126;0.02235156,0;0;0,0.008956926;0.1996769;0.006993603,0.02193706;0.4993309;0.004726185,0.1089167;0.3408108;-0.04296651,0.2315026;0.3635652;-0.2936754,0.03540033;0.5497652;-0.2210568,-0.101655;0.3877454;0.0143669,-0.1897182;0.1278528;0.07005079,-0.1343433;-0.09525701;-0.08981049,0.06284696;0.002330216;-0.04944522,0.1118536;-0.3703602;0.006234448,0.1191382;-0.7113676;0.0847255,0.1268523;-0.7614641;0.02535328,-0.07824732;0.004514558;-0.01603045,-0.06827362;-0.3747219;0.005885074,-0.08230396;-0.7162485;0.08113607,-0.09866138;-0.7043113;-0.01584934,0.01761125;0.3994858;0.00822501,55.46113
+0;0;0,0.001452923;0.1995149;0.0138457,0.005708072;0.4993519;0.02061065,0.1192007;0.3752179;-0.002285179,0.2009051;0.1082883;0.01946242,0.2672448;-0.1625597;-0.005844081,-0.1077394;0.3635617;-0.004049445,-0.1841225;0.09510842;0.01827669,-0.2029038;-0.1825145;-0.0129128,0.07166196;0.007754883;-0.03470483,0.09371649;-0.3701409;-0.00141241,0.09818278;-0.7116089;0.07526642,0.1097735;-0.760498;0.01491612,-0.06927012;-0.0002395305;-0.04001991,-0.08702178;-0.3782883;-0.00590292,-0.1011961;-0.7208743;0.06433895,-0.09895719;-0.7083905;-0.03408956,0.004002375;0.3993676;0.02108467,0;0;0,0.008791386;0.1996788;0.007148209,0.02159707;0.4993401;0.004900218,0.1085327;0.3407619;-0.0428867,0.2323067;0.3620108;-0.2931436,0.04429108;0.5572484;-0.2229123,-0.1019754;0.3878109;0.01412109,-0.1904923;0.1281416;0.07012675,-0.1331947;-0.09311993;-0.0916147,0.06286362;0.002231004;-0.04942861,0.1118668;-0.3704814;0.006106399,0.1192426;-0.7115158;0.08447165,0.1271899;-0.7612084;0.02458889,-0.07823269;0.004626411;-0.01606989,-0.06814536;-0.3746066;0.005851541,-0.08227109;-0.7161933;0.08081141,-0.09859482;-0.7042494;-0.01618093,0.01731751;0.399493;0.008401146,55.47283
+0;0;0,0.001452923;0.1995149;0.0138457,0.005708072;0.4993519;0.02061065,0.1192007;0.3752179;-0.002285179,0.2009051;0.1082883;0.01946242,0.2672448;-0.1625597;-0.005844081,-0.1077394;0.3635617;-0.004049445,-0.1841225;0.09510842;0.01827669,-0.2029038;-0.1825145;-0.0129128,0.07166196;0.007754883;-0.03470483,0.09371649;-0.3701409;-0.00141241,0.09818278;-0.7116089;0.07526642,0.1097735;-0.760498;0.01491612,-0.06927012;-0.0002395305;-0.04001991,-0.08702178;-0.3782883;-0.00590292,-0.1011961;-0.7208743;0.06433895,-0.09895719;-0.7083905;-0.03408956,0.004002375;0.3993676;0.02108467,0;0;0,0.009224488;0.1996763;0.006653425,0.02422179;0.4991947;0.001882699,0.1100653;0.3409162;-0.04535217,0.2397079;0.3524497;-0.293263,0.046074;0.5458827;-0.23419,-0.1001724;0.3873303;0.01320821,-0.1889648;0.1280686;0.07064793,-0.1321985;-0.09386432;-0.09035943,0.06288939;0.002325154;-0.04939148,0.1114388;-0.3704775;0.005936034,0.1186066;-0.7114333;0.08466187,0.1267686;-0.7611142;0.02479256,-0.07823566;0.004503213;-0.01609042,-0.06866137;-0.374719;0.00624443,-0.08255939;-0.716432;0.08066916,-0.09920917;-0.7045621;-0.01625394,0.01902602;0.3994359;0.006486841,55.49466
+0;0;0,0.001452923;0.1995149;0.0138457,0.005708072;0.4993519;0.02061065,0.1192007;0.3752179;-0.002285179,0.2009051;0.1082883;0.01946242,0.2672448;-0.1625597;-0.005844081,-0.1077394;0.3635617;-0.004049445,-0.1841225;0.09510842;0.01827669,-0.2029038;-0.1825145;-0.0129128,0.07166196;0.007754883;-0.03470483,0.09371649;-0.3701409;-0.00141241,0.09818278;-0.7116089;0.07526642,0.1097735;-0.760498;0.01491612,-0.06927012;-0.0002395305;-0.04001991,-0.08702178;-0.3782883;-0.00590292,-0.1011961;-0.7208743;0.06433895,-0.09895719;-0.7083905;-0.03408956,0.004002375;0.3993676;0.02108467,0;0;0,0.009224488;0.1996763;0.006653425,0.02422179;0.4991947;0.001882699,0.1100653;0.3409162;-0.04535217,0.2397079;0.3524497;-0.293263,0.046074;0.5458827;-0.23419,-0.1001724;0.3873303;0.01320821,-0.1889648;0.1280686;0.07064793,-0.1321985;-0.09386432;-0.09035943,0.06288939;0.002325154;-0.04939148,0.1114388;-0.3704775;0.005936034,0.1186066;-0.7114333;0.08466187,0.1267686;-0.7611142;0.02479256,-0.07823566;0.004503213;-0.01609042,-0.06866137;-0.374719;0.00624443,-0.08255939;-0.716432;0.08066916,-0.09920917;-0.7045621;-0.01625394,0.01902602;0.3994359;0.006486841,55.51732
+0;0;0,0.001797235;0.1995233;0.01368319,0.006504363;0.4993573;0.02030633,0.1196948;0.3753349;-0.003463905,0.2004644;0.1082396;0.01969537,0.2573634;-0.1644787;-0.008362142,-0.1068487;0.3628196;-0.004268996,-0.1831619;0.09430248;0.01752201,-0.2032289;-0.1832823;-0.01320307,0.0716514;0.007633616;-0.03475348,0.09366997;-0.3702609;-0.001423281,0.09798556;-0.7117075;0.07535928,0.109692;-0.7601203;0.01441334,-0.06932253;-0.0001078988;-0.03992962,-0.08720381;-0.3781811;-0.006152645,-0.1014962;-0.7206471;0.06464834,-0.09953093;-0.7081712;-0.03378461,0.004661493;0.3993756;0.0208134,0;0;0,0.009181079;0.1996967;0.006076221,0.02432679;0.4991863;0.0002735127,0.1105354;0.3420017;-0.04703268,0.2469436;0.3424497;-0.291558,0.05335498;0.5380407;-0.2399092,-0.1000418;0.3869847;0.01250148,-0.188997;0.1279109;0.07053383,-0.1319318;-0.0941426;-0.09020136,0.06301267;0.002438769;-0.04922862,0.1110619;-0.3705481;0.00528821,0.1182967;-0.7115397;0.08385246,0.126332;-0.7609035;0.02354639,-0.07819524;0.004319708;-0.01633537,-0.06901155;-0.374958;0.005206801,-0.08261278;-0.7167298;0.07941633,-0.09953298;-0.7049181;-0.01744901,0.01909094;0.3994495;0.00528985,55.5396
+0;0;0,0.001797235;0.1995233;0.01368319,0.006504363;0.4993573;0.02030633,0.1196948;0.3753349;-0.003463905,0.2004644;0.1082396;0.01969537,0.2573634;-0.1644787;-0.008362142,-0.1068487;0.3628196;-0.004268996,-0.1831619;0.09430248;0.01752201,-0.2032289;-0.1832823;-0.01320307,0.0716514;0.007633616;-0.03475348,0.09366997;-0.3702609;-0.001423281,0.09798556;-0.7117075;0.07535928,0.109692;-0.7601203;0.01441334,-0.06932253;-0.0001078988;-0.03992962,-0.08720381;-0.3781811;-0.006152645,-0.1014962;-0.7206471;0.06464834,-0.09953093;-0.7081712;-0.03378461,0.004661493;0.3993756;0.0208134,0;0;0,0.00897357;0.1997076;0.00602832,0.02363427;0.4992263;0.0003329227,0.1104104;0.3436312;-0.04813125,0.2609967;0.3212768;-0.2831292,0.07185063;0.5260254;-0.2566385,-0.1004602;0.3859615;0.01199502,-0.1892887;0.1269331;0.07042257,-0.1336799;-0.09705426;-0.08812499,0.06314243;0.002764965;-0.04904476,0.1101637;-0.3704416;0.004861541,0.117463;-0.7114134;0.08350582,0.1251222;-0.7609629;0.02339577,-0.07819077;0.003923847;-0.01645621,-0.06906684;-0.3753763;0.004714027,-0.08290201;-0.7171671;0.07879245,-0.1000498;-0.7053641;-0.01803124,0.01858559;0.399475;0.005251069,55.5617
+0;0;0,0.001797235;0.1995233;0.01368319,0.006504363;0.4993573;0.02030633,0.1196948;0.3753349;-0.003463905,0.2004644;0.1082396;0.01969537,0.2573634;-0.1644787;-0.008362142,-0.1068487;0.3628196;-0.004268996,-0.1831619;0.09430248;0.01752201,-0.2032289;-0.1832823;-0.01320307,0.0716514;0.007633616;-0.03475348,0.09366997;-0.3702609;-0.001423281,0.09798556;-0.7117075;0.07535928,0.109692;-0.7601203;0.01441334,-0.06932253;-0.0001078988;-0.03992962,-0.08720381;-0.3781811;-0.006152645,-0.1014962;-0.7206471;0.06464834,-0.09953093;-0.7081712;-0.03378461,0.004661493;0.3993756;0.0208134,0;0;0,0.00897357;0.1997076;0.00602832,0.02363427;0.4992263;0.0003329227,0.1104104;0.3436312;-0.04813125,0.2609967;0.3212768;-0.2831292,0.07185063;0.5260254;-0.2566385,-0.1004602;0.3859615;0.01199502,-0.1892887;0.1269331;0.07042257,-0.1336799;-0.09705426;-0.08812499,0.06314243;0.002764965;-0.04904476,0.1101637;-0.3704416;0.004861541,0.117463;-0.7114134;0.08350582,0.1251222;-0.7609629;0.02339577,-0.07819077;0.003923847;-0.01645621,-0.06906684;-0.3753763;0.004714027,-0.08290201;-0.7171671;0.07879245,-0.1000498;-0.7053641;-0.01803124,0.01858559;0.399475;0.005251069,55.57314
+0;0;0,0.001901349;0.1995163;0.01377143,0.006547239;0.4993466;0.0206154,0.1196902;0.3752561;-0.003560996,0.1993054;0.1078238;0.0197074,0.2480742;-0.1663524;-0.009430105,-0.1066771;0.3624412;-0.00391181,-0.1827219;0.09380504;0.01734353,-0.2025086;-0.183913;-0.01234112,0.07155825;0.007622647;-0.03494727,0.09287209;-0.3702366;-0.0007694028,0.0968215;-0.711671;0.07608697,0.1088386;-0.7597518;0.01477646,-0.06943666;-7.377777E-05;-0.0397309,-0.08775782;-0.3781348;-0.006053176,-0.1024406;-0.7205148;0.0650834,-0.1005855;-0.7080374;-0.03335196,0.004740668;0.3993638;0.02104403,0;0;0,0.00897357;0.1997076;0.00602832,0.02363427;0.4992263;0.0003329227,0.1104104;0.3436312;-0.04813125,0.2609967;0.3212768;-0.2831292,0.07185063;0.5260254;-0.2566385,-0.1004602;0.3859615;0.01199502,-0.1892887;0.1269331;0.07042257,-0.1336799;-0.09705426;-0.08812499,0.06314243;0.002764965;-0.04904476,0.1101637;-0.3704416;0.004861541,0.117463;-0.7114134;0.08350582,0.1251222;-0.7609629;0.02339577,-0.07819077;0.003923847;-0.01645621,-0.06906684;-0.3753763;0.004714027,-0.08290201;-0.7171671;0.07879245,-0.1000498;-0.7053641;-0.01803124,0.01858559;0.399475;0.005251069,55.58447
+0;0;0,0.001901349;0.1995163;0.01377143,0.006547239;0.4993466;0.0206154,0.1196902;0.3752561;-0.003560996,0.1993054;0.1078238;0.0197074,0.2480742;-0.1663524;-0.009430105,-0.1066771;0.3624412;-0.00391181,-0.1827219;0.09380504;0.01734353,-0.2025086;-0.183913;-0.01234112,0.07155825;0.007622647;-0.03494727,0.09287209;-0.3702366;-0.0007694028,0.0968215;-0.711671;0.07608697,0.1088386;-0.7597518;0.01477646,-0.06943666;-7.377777E-05;-0.0397309,-0.08775782;-0.3781348;-0.006053176,-0.1024406;-0.7205148;0.0650834,-0.1005855;-0.7080374;-0.03335196,0.004740668;0.3993638;0.02104403,0;0;0,0.009888806;0.1996801;0.005483933,0.02634218;0.4990854;-0.001263213,0.1157421;0.3490521;-0.04921738,0.2752224;0.2849228;-0.2702456,0.09535569;0.4992722;-0.2803608,-0.09808869;0.3837989;0.01121496,-0.1869434;0.1249348;0.07032685,-0.1314362;-0.09907967;-0.08821794,0.06330053;0.003356671;-0.04880344,0.1090219;-0.3701765;0.003946193,0.1162095;-0.7111337;0.08266399,0.1237567;-0.7605061;0.02230612,-0.07819143;0.003158215;-0.016617,-0.06974384;-0.3761674;0.004374951,-0.08351028;-0.7179922;0.07830951,-0.1001842;-0.7062151;-0.01859201,0.02067424;0.3993833;0.003969766,55.60662
+0;0;0,0.001901349;0.1995163;0.01377143,0.006547239;0.4993466;0.0206154,0.1196902;0.3752561;-0.003560996,0.1993054;0.1078238;0.0197074,0.2480742;-0.1663524;-0.009430105,-0.1066771;0.3624412;-0.00391181,-0.1827219;0.09380504;0.01734353,-0.2025086;-0.183913;-0.01234112,0.07155825;0.007622647;-0.03494727,0.09287209;-0.3702366;-0.0007694028,0.0968215;-0.711671;0.07608697,0.1088386;-0.7597518;0.01477646,-0.06943666;-7.377777E-05;-0.0397309,-0.08775782;-0.3781348;-0.006053176,-0.1024406;-0.7205148;0.0650834,-0.1005855;-0.7080374;-0.03335196,0.004740668;0.3993638;0.02104403,0;0;0,0.0091705;0.1996739;0.006800385,0.02334287;0.499272;0.003845491,0.1164989;0.3585577;-0.04859273,0.2940071;0.1998188;-0.1958775,0.1601365;0.4173816;-0.3105296,-0.09912451;0.3763608;0.01032021,-0.1837691;0.1145802;0.06234132,-0.1153129;-0.09332244;-0.1122732,0.06356783;0.004551625;-0.04835714,0.1063831;-0.3696386;0.002126008,0.1134945;-0.7105926;0.08086491,0.1205956;-0.7597972;0.02023321,-0.07812679;0.001561259;-0.01713967,-0.07155245;-0.3778276;0.003375147,-0.08519612;-0.7196679;0.07726096,-0.1018197;-0.7077633;-0.0196731,0.01859874;0.3994504;0.007472801,55.62885
+0;0;0,0.001931825;0.1995179;0.01374316,0.006409662;0.499349;0.02068762,0.1196286;0.3754516;-0.003704032,0.1973344;0.107437;0.01931704,0.2401356;-0.1676256;-0.01082581,-0.1066543;0.3620711;-0.003727967,-0.1817458;0.09315652;0.01739583,-0.2038055;-0.1843409;-0.01274693,0.07149884;0.007317953;-0.0351335,0.0919367;-0.3705042;-2.351776E-05,0.09586458;-0.711885;0.07707202,0.1077882;-0.7597631;0.015486,-0.06954484;0.0002128313;-0.03954073,-0.08857163;-0.377819;-0.005926833,-0.1033605;-0.7200753;0.06578044,-0.1016368;-0.707596;-0.03265764,0.004674883;0.3993648;0.02107112,0;0;0,0.0091705;0.1996739;0.006800385,0.02334287;0.499272;0.003845491,0.1164989;0.3585577;-0.04859273,0.2940071;0.1998188;-0.1958775,0.1601365;0.4173816;-0.3105296,-0.09912451;0.3763608;0.01032021,-0.1837691;0.1145802;0.06234132,-0.1153129;-0.09332244;-0.1122732,0.06356783;0.004551625;-0.04835714,0.1063831;-0.3696386;0.002126008,0.1134945;-0.7105926;0.08086491,0.1205956;-0.7597972;0.02023321,-0.07812679;0.001561259;-0.01713967,-0.07155245;-0.3778276;0.003375147,-0.08519612;-0.7196679;0.07726096,-0.1018197;-0.7077633;-0.0196731,0.01859874;0.3994504;0.007472801,55.65113
+0;0;0,0.001931825;0.1995179;0.01374316,0.006409662;0.499349;0.02068762,0.1196286;0.3754516;-0.003704032,0.1973344;0.107437;0.01931704,0.2401356;-0.1676256;-0.01082581,-0.1066543;0.3620711;-0.003727967,-0.1817458;0.09315652;0.01739583,-0.2038055;-0.1843409;-0.01274693,0.07149884;0.007317953;-0.0351335,0.0919367;-0.3705042;-2.351776E-05,0.09586458;-0.711885;0.07707202,0.1077882;-0.7597631;0.015486,-0.06954484;0.0002128313;-0.03954073,-0.08857163;-0.377819;-0.005926833,-0.1033605;-0.7200753;0.06578044,-0.1016368;-0.707596;-0.03265764,0.004674883;0.3993648;0.02107112,0;0;0,0.00896838;0.1996861;0.00671012,0.02289757;0.4992913;0.003431445,0.1187092;0.3628754;-0.04722399,0.2924953;0.1827007;-0.172665,0.2143847;0.3808696;-0.3544005,-0.09936329;0.3755774;0.009522994,-0.1833048;0.1135912;0.06164836,-0.1158383;-0.09550698;-0.1119207,0.06384049;0.004855547;-0.0479668,0.1056025;-0.3695332;0.001923509,0.1127578;-0.7106521;0.07994024,0.1198398;-0.7596576;0.01904702,-0.07795767;0.001213763;-0.01792006,-0.07194971;-0.378173;0.00280617,-0.08577916;-0.7201247;0.07613976,-0.1017023;-0.7082238;-0.02091115,0.01821053;0.3994719;0.007188461,55.66221
+0;0;0,0.001931825;0.1995179;0.01374316,0.006409662;0.499349;0.02068762,0.1196286;0.3754516;-0.003704032,0.1973344;0.107437;0.01931704,0.2401356;-0.1676256;-0.01082581,-0.1066543;0.3620711;-0.003727967,-0.1817458;0.09315652;0.01739583,-0.2038055;-0.1843409;-0.01274693,0.07149884;0.007317953;-0.0351335,0.0919367;-0.3705042;-2.351776E-05,0.09586458;-0.711885;0.07707202,0.1077882;-0.7597631;0.015486,-0.06954484;0.0002128313;-0.03954073,-0.08857163;-0.377819;-0.005926833,-0.1033605;-0.7200753;0.06578044,-0.1016368;-0.707596;-0.03265764,0.004674883;0.3993648;0.02107112,0;0;0,0.00896838;0.1996861;0.00671012,0.02289757;0.4992913;0.003431445,0.1187092;0.3628754;-0.04722399,0.2924953;0.1827007;-0.172665,0.2143847;0.3808696;-0.3544005,-0.09936329;0.3755774;0.009522994,-0.1833048;0.1135912;0.06164836,-0.1158383;-0.09550698;-0.1119207,0.06384049;0.004855547;-0.0479668,0.1056025;-0.3695332;0.001923509,0.1127578;-0.7106521;0.07994024,0.1198398;-0.7596576;0.01904702,-0.07795767;0.001213763;-0.01792006,-0.07194971;-0.378173;0.00280617,-0.08577916;-0.7201247;0.07613976,-0.1017023;-0.7082238;-0.02091115,0.01821053;0.3994719;0.007188461,55.67359
+0;0;0,0.002128628;0.1995097;0.0138326,0.006948818;0.4993336;0.02086149,0.1199131;0.3751463;-0.003869472,0.1967869;0.1068943;0.01917951,0.2343126;-0.1686681;-0.01333558,-0.106001;0.3614826;-0.003790995,-0.182016;0.09286234;0.01777009,-0.2033949;-0.1847284;-0.01200124,0.07150631;0.007382823;-0.0351047,0.09171653;-0.3704055;0.0004974231,0.09556685;-0.7117884;0.0775877,0.1076802;-0.7596341;0.01599773,-0.06954101;0.0002078447;-0.0395475,-0.08879379;-0.3777696;-0.005454134,-0.1035856;-0.7199923;0.06641284,-0.1018727;-0.7075078;-0.03202635,0.005087585;0.3993515;0.02121449,0;0;0,0.00896838;0.1996861;0.00671012,0.02289757;0.4992913;0.003431445,0.1187092;0.3628754;-0.04722399,0.2924953;0.1827007;-0.172665,0.2143847;0.3808696;-0.3544005,-0.09936329;0.3755774;0.009522994,-0.1833048;0.1135912;0.06164836,-0.1158383;-0.09550698;-0.1119207,0.06384049;0.004855547;-0.0479668,0.1056025;-0.3695332;0.001923509,0.1127578;-0.7106521;0.07994024,0.1198398;-0.7596576;0.01904702,-0.07795767;0.001213763;-0.01792006,-0.07194971;-0.378173;0.00280617,-0.08577916;-0.7201247;0.07613976,-0.1017023;-0.7082238;-0.02091115,0.01821053;0.3994719;0.007188461,55.68526
+0;0;0,0.002128628;0.1995097;0.0138326,0.006948818;0.4993336;0.02086149,0.1199131;0.3751463;-0.003869472,0.1967869;0.1068943;0.01917951,0.2343126;-0.1686681;-0.01333558,-0.106001;0.3614826;-0.003790995,-0.182016;0.09286234;0.01777009,-0.2033949;-0.1847284;-0.01200124,0.07150631;0.007382823;-0.0351047,0.09171653;-0.3704055;0.0004974231,0.09556685;-0.7117884;0.0775877,0.1076802;-0.7596341;0.01599773,-0.06954101;0.0002078447;-0.0395475,-0.08879379;-0.3777696;-0.005454134,-0.1035856;-0.7199923;0.06641284,-0.1018727;-0.7075078;-0.03202635,0.005087585;0.3993515;0.02121449,0;0;0,0.008750757;0.19969;0.006881029,0.0223568;0.4993112;0.003776359,0.1230079;0.3710548;-0.0426662,0.2811016;0.150004;-0.1100674,0.2890882;0.2960644;-0.3488196,-0.09957272;0.3744795;0.009997276,-0.1812112;0.1105619;0.05563341,-0.1208479;-0.1094655;-0.1066755,0.06386584;0.004943692;-0.04792405,0.1054188;-0.3695306;0.001495827,0.1125016;-0.7107093;0.07925768,0.1190568;-0.7590337;0.01743279,-0.07788701;0.001006061;-0.01823734,-0.07268988;-0.3783574;0.003125932,-0.08602781;-0.7203561;0.07633083,-0.1006751;-0.7084299;-0.02092552,0.01776615;0.3994857;0.00749206,55.7072
+0;0;0,0.002128628;0.1995097;0.0138326,0.006948818;0.4993336;0.02086149,0.1199131;0.3751463;-0.003869472,0.1967869;0.1068943;0.01917951,0.2343126;-0.1686681;-0.01333558,-0.106001;0.3614826;-0.003790995,-0.182016;0.09286234;0.01777009,-0.2033949;-0.1847284;-0.01200124,0.07150631;0.007382823;-0.0351047,0.09171653;-0.3704055;0.0004974231,0.09556685;-0.7117884;0.0775877,0.1076802;-0.7596341;0.01599773,-0.06954101;0.0002078447;-0.0395475,-0.08879379;-0.3777696;-0.005454134,-0.1035856;-0.7199923;0.06641284,-0.1018727;-0.7075078;-0.03202635,0.005087585;0.3993515;0.02121449,0;0;0,0.008750757;0.19969;0.006881029,0.0223568;0.4993112;0.003776359,0.1230079;0.3710548;-0.0426662,0.2811016;0.150004;-0.1100674,0.2890882;0.2960644;-0.3488196,-0.09957272;0.3744795;0.009997276,-0.1812112;0.1105619;0.05563341,-0.1208479;-0.1094655;-0.1066755,0.06386584;0.004943692;-0.04792405,0.1054188;-0.3695306;0.001495827,0.1125016;-0.7107093;0.07925768,0.1190568;-0.7590337;0.01743279,-0.07788701;0.001006061;-0.01823734,-0.07268988;-0.3783574;0.003125932,-0.08602781;-0.7203561;0.07633083,-0.1006751;-0.7084299;-0.02092552,0.01776615;0.3994857;0.00749206,55.71865
+0;0;0,0.002331081;0.1995103;0.01379086,0.007344269;0.499331;0.02083737,0.1202589;0.375163;-0.003920268,0.1965626;0.1066998;0.0185576,0.2295417;-0.1692145;-0.01584705,-0.1058406;0.3616261;-0.00322118,-0.1818542;0.09297478;0.01795389,-0.2022175;-0.184744;-0.01133106,0.07142548;0.007495807;-0.03524506,0.0911008;-0.3702415;0.0011882,0.09500693;-0.7116208;0.07829145,0.1071074;-0.7594342;0.01665822,-0.06959882;0.0001130922;-0.03944605,-0.08941174;-0.3778006;-0.004968509,-0.1042704;-0.7199938;0.06702418,-0.1026811;-0.7075089;-0.03141716,0.005432306;0.3993499;0.02117668,0;0;0,0.00865401;0.1996876;0.007069544,0.02211063;0.4993177;0.004222518,0.1245859;0.3733017;-0.03967745,0.2697676;0.1362514;-0.07328462,0.3017299;0.2701517;-0.3171065,-0.09959171;0.3736337;0.010432,-0.1790856;0.1088189;0.05463446,-0.124319;-0.118263;-0.09974959,0.06390282;0.004963009;-0.04787273,0.1056641;-0.3695617;0.0009865165,0.1127501;-0.7107375;0.07876084,0.1185002;-0.7590247;0.01680876,-0.07783956;0.0009092412;-0.01844386,-0.07265356;-0.3784489;0.003015775,-0.08581676;-0.7204914;0.07604751,-0.09965285;-0.7085418;-0.02133189,0.01756196;0.3994876;0.007863771,55.74083
+0;0;0,0.002331081;0.1995103;0.01379086,0.007344269;0.499331;0.02083737,0.1202589;0.375163;-0.003920268,0.1965626;0.1066998;0.0185576,0.2295417;-0.1692145;-0.01584705,-0.1058406;0.3616261;-0.00322118,-0.1818542;0.09297478;0.01795389,-0.2022175;-0.184744;-0.01133106,0.07142548;0.007495807;-0.03524506,0.0911008;-0.3702415;0.0011882,0.09500693;-0.7116208;0.07829145,0.1071074;-0.7594342;0.01665822,-0.06959882;0.0001130922;-0.03944605,-0.08941174;-0.3778006;-0.004968509,-0.1042704;-0.7199938;0.06702418,-0.1026811;-0.7075089;-0.03141716,0.005432306;0.3993499;0.02117668,0;0;0,0.00865401;0.1996876;0.007069544,0.02211063;0.4993177;0.004222518,0.1245859;0.3733017;-0.03967745,0.2697676;0.1362514;-0.07328462,0.3017299;0.2701517;-0.3171065,-0.09959171;0.3736337;0.010432,-0.1790856;0.1088189;0.05463446,-0.124319;-0.118263;-0.09974959,0.06390282;0.004963009;-0.04787273,0.1056641;-0.3695617;0.0009865165,0.1127501;-0.7107375;0.07876084,0.1185002;-0.7590247;0.01680876,-0.07783956;0.0009092412;-0.01844386,-0.07265356;-0.3784489;0.003015775,-0.08581676;-0.7204914;0.07604751,-0.09965285;-0.7085418;-0.02133189,0.01756196;0.3994876;0.007863771,55.75217
+0;0;0,0.002331081;0.1995103;0.01379086,0.007344269;0.499331;0.02083737,0.1202589;0.375163;-0.003920268,0.1965626;0.1066998;0.0185576,0.2295417;-0.1692145;-0.01584705,-0.1058406;0.3616261;-0.00322118,-0.1818542;0.09297478;0.01795389,-0.2022175;-0.184744;-0.01133106,0.07142548;0.007495807;-0.03524506,0.0911008;-0.3702415;0.0011882,0.09500693;-0.7116208;0.07829145,0.1071074;-0.7594342;0.01665822,-0.06959882;0.0001130922;-0.03944605,-0.08941174;-0.3778006;-0.004968509,-0.1042704;-0.7199938;0.06702418,-0.1026811;-0.7075089;-0.03141716,0.005432306;0.3993499;0.02117668,0;0;0,0.008485381;0.1996909;0.007179327,0.02160624;0.4993374;0.004504065,0.1249914;0.3746502;-0.0383676,0.2692515;0.1375187;-0.07521425,0.3580081;0.2157934;-0.3289766,-0.09986214;0.3730598;0.009880704,-0.1819323;0.1098998;0.05898539,-0.1247766;-0.1148982;-0.09785554,0.06409951;0.005061012;-0.04759873,0.1059469;-0.3695803;0.0002831854,0.1130987;-0.7106953;0.07831804,0.1188262;-0.7593232;0.01679694,-0.0777016;0.001018837;-0.01901114,-0.07268144;-0.378294;0.003273016,-0.08550951;-0.7204231;0.0759581,-0.09883702;-0.7084613;-0.02149446,0.01717506;0.3995;0.008087941,55.77401
+0;0;0,0.002317416;0.199508;0.01382733,0.007199313;0.4993284;0.02098447,0.1200836;0.3751244;-0.004156342,0.1958808;0.1065164;0.01830605,0.2243057;-0.1694766;-0.019375,-0.1060295;0.3617565;-0.002881166,-0.182386;0.09317577;0.01795296,-0.2039007;-0.184414;-0.01172907,0.07144298;0.0075328;-0.03520168,0.09063666;-0.3702153;0.001376458,0.09409299;-0.711514;0.07885721,0.1065953;-0.7589816;0.0168695,-0.0695769;0.0001206293;-0.03948468,-0.09044845;-0.377657;-0.0041513,-0.1048936;-0.7198499;0.06792727,-0.1034673;-0.7073574;-0.03051793,0.005339734;0.3993461;0.02128299,0;0;0,0.008485381;0.1996909;0.007179327,0.02160624;0.4993374;0.004504065,0.1249914;0.3746502;-0.0383676,0.2692515;0.1375187;-0.07521425,0.3580081;0.2157934;-0.3289766,-0.09986214;0.3730598;0.009880704,-0.1819323;0.1098998;0.05898539,-0.1247766;-0.1148982;-0.09785554,0.06409951;0.005061012;-0.04759873,0.1059469;-0.3695803;0.0002831854,0.1130987;-0.7106953;0.07831804,0.1188262;-0.7593232;0.01679694,-0.0777016;0.001018837;-0.01901114,-0.07268144;-0.378294;0.003273016,-0.08550951;-0.7204231;0.0759581,-0.09883702;-0.7084613;-0.02149446,0.01717506;0.3995;0.008087941,55.78558
+0;0;0,0.002317416;0.199508;0.01382733,0.007199313;0.4993284;0.02098447,0.1200836;0.3751244;-0.004156342,0.1958808;0.1065164;0.01830605,0.2243057;-0.1694766;-0.019375,-0.1060295;0.3617565;-0.002881166,-0.182386;0.09317577;0.01795296,-0.2039007;-0.184414;-0.01172907,0.07144298;0.0075328;-0.03520168,0.09063666;-0.3702153;0.001376458,0.09409299;-0.711514;0.07885721,0.1065953;-0.7589816;0.0168695,-0.0695769;0.0001206293;-0.03948468,-0.09044845;-0.377657;-0.0041513,-0.1048936;-0.7198499;0.06792727,-0.1034673;-0.7073574;-0.03051793,0.005339734;0.3993461;0.02128299,0;0;0,0.008261732;0.1997041;0.007071227,0.02104166;0.4993632;0.004191442,0.1252424;0.3756492;-0.0374686,0.2458288;0.123102;-0.02858881,0.396848;0.1183286;-0.2643227,-0.09999242;0.3716957;0.00954455,-0.1839021;0.109446;0.06038018,-0.1295681;-0.1215355;-0.08826484,0.06428932;0.005262804;-0.04732004,0.1052798;-0.3695239;0.0001639985,0.1125854;-0.7106937;0.07794455,0.1187827;-0.7591687;0.016274,-0.07760789;0.0007312071;-0.01940311,-0.07320675;-0.3785713;0.003184831,-0.08575539;-0.7207812;0.07553759,-0.09867741;-0.7088308;-0.02196746,0.01672408;0.3995235;0.007850071,55.80759
+0;0;0,0.002317416;0.199508;0.01382733,0.007199313;0.4993284;0.02098447,0.1200836;0.3751244;-0.004156342,0.1958808;0.1065164;0.01830605,0.2243057;-0.1694766;-0.019375,-0.1060295;0.3617565;-0.002881166,-0.182386;0.09317577;0.01795296,-0.2039007;-0.184414;-0.01172907,0.07144298;0.0075328;-0.03520168,0.09063666;-0.3702153;0.001376458,0.09409299;-0.711514;0.07885721,0.1065953;-0.7589816;0.0168695,-0.0695769;0.0001206293;-0.03948468,-0.09044845;-0.377657;-0.0041513,-0.1048936;-0.7198499;0.06792727,-0.1034673;-0.7073574;-0.03051793,0.005339734;0.3993461;0.02128299,0;0;0,0.008261732;0.1997041;0.007071227,0.02104166;0.4993632;0.004191442,0.1252424;0.3756492;-0.0374686,0.2458288;0.123102;-0.02858881,0.396848;0.1183286;-0.2643227,-0.09999242;0.3716957;0.00954455,-0.1839021;0.109446;0.06038018,-0.1295681;-0.1215355;-0.08826484,0.06428932;0.005262804;-0.04732004,0.1052798;-0.3695239;0.0001639985,0.1125854;-0.7106937;0.07794455,0.1187827;-0.7591687;0.016274,-0.07760789;0.0007312071;-0.01940311,-0.07320675;-0.3785713;0.003184831,-0.08575539;-0.7207812;0.07553759,-0.09867741;-0.7088308;-0.02196746,0.01672408;0.3995235;0.007850071,55.81903
+0;0;0,0.001979314;0.1994835;0.01422767,0.006666987;0.4993027;0.02155237,0.1196019;0.3750459;-0.003815837,0.1949351;0.1062416;0.01784477,0.2199466;-0.1697068;-0.02248979,-0.1065138;0.3617519;-0.002152257,-0.1827997;0.09311375;0.01819551,-0.2049519;-0.1843662;-0.01203939,0.0715219;0.007553115;-0.03503666,0.09032672;-0.3701872;0.001822986,0.09376787;-0.7114635;0.07940332,0.1062633;-0.7580249;0.01629862,-0.0694383;0.0001447145;-0.03972784,-0.09091256;-0.3775145;-0.003501039,-0.1053015;-0.7196918;0.06866312,-0.1040243;-0.7071695;-0.02978939,0.004908544;0.3993185;0.02180192,0;0;0,0.007892064;0.1997156;0.007170663,0.01995725;0.4994064;0.004472905,0.1251615;0.3769718;-0.03616201,0.2458238;0.1243509;-0.03133675,0.4269381;0.06395693;-0.2361542,-0.100668;0.3711441;0.009024334,-0.1862113;0.1093519;0.05949379,-0.1295974;-0.1225526;-0.08684541,0.0643895;0.005508459;-0.04715559,0.1048668;-0.369391;-0.0001240112,0.1122499;-0.710585;0.07754298,0.1184092;-0.7590824;0.01589703,-0.07753281;0.0004107329;-0.01971027,-0.07371957;-0.3788833;0.003126031,-0.08602265;-0.7211263;0.07536425,-0.09840143;-0.7091682;-0.02221268,0.01591692;0.3995525;0.00806165,55.84122
+0;0;0,0.001979314;0.1994835;0.01422767,0.006666987;0.4993027;0.02155237,0.1196019;0.3750459;-0.003815837,0.1949351;0.1062416;0.01784477,0.2199466;-0.1697068;-0.02248979,-0.1065138;0.3617519;-0.002152257,-0.1827997;0.09311375;0.01819551,-0.2049519;-0.1843662;-0.01203939,0.0715219;0.007553115;-0.03503666,0.09032672;-0.3701872;0.001822986,0.09376787;-0.7114635;0.07940332,0.1062633;-0.7580249;0.01629862,-0.0694383;0.0001447145;-0.03972784,-0.09091256;-0.3775145;-0.003501039,-0.1053015;-0.7196918;0.06866312,-0.1040243;-0.7071695;-0.02978939,0.004908544;0.3993185;0.02180192,0;0;0,0.007575872;0.1997269;0.007194993,0.01857413;0.4994599;0.004630642,0.1245574;0.3778444;-0.03562456,0.2465083;0.1258065;-0.03341753,0.4395325;0.01204464;-0.2013458,-0.1014837;0.3706441;0.00850671,-0.1861764;0.108697;0.05960336,-0.1314873;-0.1269567;-0.08138062,0.06446344;0.005613461;-0.04704203,0.104709;-0.3693582;-0.0003882237,0.1121215;-0.7105628;0.07722911,0.1182191;-0.7591527;0.01569491,-0.07748906;0.0002581556;-0.01988411,-0.07391903;-0.3790328;0.003043089,-0.0863879;-0.7212913;0.07517934,-0.09849595;-0.709323;-0.02243345,0.01497301;0.3995877;0.008176021,55.86324
+0;0;0,0.001979314;0.1994835;0.01422767,0.006666987;0.4993027;0.02155237,0.1196019;0.3750459;-0.003815837,0.1949351;0.1062416;0.01784477,0.2199466;-0.1697068;-0.02248979,-0.1065138;0.3617519;-0.002152257,-0.1827997;0.09311375;0.01819551,-0.2049519;-0.1843662;-0.01203939,0.0715219;0.007553115;-0.03503666,0.09032672;-0.3701872;0.001822986,0.09376787;-0.7114635;0.07940332,0.1062633;-0.7580249;0.01629862,-0.0694383;0.0001447145;-0.03972784,-0.09091256;-0.3775145;-0.003501039,-0.1053015;-0.7196918;0.06866312,-0.1040243;-0.7071695;-0.02978939,0.004908544;0.3993185;0.02180192,0;0;0,0.007575872;0.1997269;0.007194993,0.01857413;0.4994599;0.004630642,0.1245574;0.3778444;-0.03562456,0.2465083;0.1258065;-0.03341753,0.4395325;0.01204464;-0.2013458,-0.1014837;0.3706441;0.00850671,-0.1861764;0.108697;0.05960336,-0.1314873;-0.1269567;-0.08138062,0.06446344;0.005613461;-0.04704203,0.104709;-0.3693582;-0.0003882237,0.1121215;-0.7105628;0.07722911,0.1182191;-0.7591527;0.01569491,-0.07748906;0.0002581556;-0.01988411,-0.07391903;-0.3790328;0.003043089,-0.0863879;-0.7212913;0.07517934,-0.09849595;-0.709323;-0.02243345,0.01497301;0.3995877;0.008176021,55.88583
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.007673154;0.1997321;0.006943617,0.01967626;0.4993973;0.002654189,0.1256799;0.3789725;-0.03613499,0.2478817;0.1270517;-0.03449982,0.4372903;-0.02224766;-0.1767463,-0.1010855;0.3716248;0.007753944,-0.1773804;0.105639;0.05054026,-0.1105808;-0.1137982;-0.1100372,0.06457516;0.005668214;-0.04688198,0.1045079;-0.3693769;-0.0005510822,0.1120864;-0.7105879;0.07702203,0.1179918;-0.7590961;0.01536504,-0.07742501;0.0002188439;-0.02013255,-0.07396425;-0.3790554;0.003084671,-0.08649348;-0.721328;0.07514375,-0.09841625;-0.7094036;-0.02248371,0.01561176;0.3995745;0.006999256,55.89683
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.007673154;0.1997321;0.006943617,0.01967626;0.4993973;0.002654189,0.1256799;0.3789725;-0.03613499,0.2478817;0.1270517;-0.03449982,0.4372903;-0.02224766;-0.1767463,-0.1010855;0.3716248;0.007753944,-0.1773804;0.105639;0.05054026,-0.1105808;-0.1137982;-0.1100372,0.06457516;0.005668214;-0.04688198,0.1045079;-0.3693769;-0.0005510822,0.1120864;-0.7105879;0.07702203,0.1179918;-0.7590961;0.01536504,-0.07742501;0.0002188439;-0.02013255,-0.07396425;-0.3790554;0.003084671,-0.08649348;-0.721328;0.07514375,-0.09841625;-0.7094036;-0.02248371,0.01561176;0.3995745;0.006999256,55.90818
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.007184664;0.1997495;0.006965473,0.01758693;0.4994817;0.002972047,0.1238986;0.3779966;-0.03665214,0.2616969;0.1342582;-0.03486194,0.4317984;-0.04342388;-0.1686325,-0.1022407;0.3709736;0.007138462,-0.1880754;0.107706;0.04864268,-0.1316964;-0.1319188;-0.08477902,0.06471621;0.005684603;-0.04668509,0.1038911;-0.3694942;-0.0007919073,0.1114439;-0.710672;0.07692981,0.117482;-0.7591859;0.01529282,-0.07735056;0.0001648534;-0.02041722,-0.07448851;-0.3791066;0.002927899,-0.08707859;-0.7213737;0.0750018,-0.09905063;-0.7094579;-0.02261804,0.01428917;0.3996232;0.007143489,55.93025
+0;0;0,0.00204659;0.1994843;0.01420637,0.006579921;0.499302;0.02169233,0.1196989;0.3755761;-0.003638137,0.1944387;0.1065812;0.01770919,0.2176941;-0.1692713;-0.02429755,-0.1065291;0.3617297;-0.00212558,-0.1838945;0.09348655;0.01932615,-0.203759;-0.1839011;-0.01325452,0.07165686;0.007699762;-0.03472763,0.08936141;-0.3700413;0.002665058,0.09276145;-0.7112846;0.08039203,0.105121;-0.7579269;0.01735863,-0.06918633;3.221328E-05;-0.04016529,-0.0915706;-0.3775252;-0.003431689,-0.1063445;-0.7195203;0.06951402,-0.1049888;-0.7069927;-0.02893838,0.004873755;0.3993168;0.02188742,0;0;0,0.007184664;0.1997495;0.006965473,0.01758693;0.4994817;0.002972047,0.1238986;0.3779966;-0.03665214,0.2616969;0.1342582;-0.03486194,0.4317984;-0.04342388;-0.1686325,-0.1022407;0.3709736;0.007138462,-0.1880754;0.107706;0.04864268,-0.1316964;-0.1319188;-0.08477902,0.06471621;0.005684603;-0.04668509,0.1038911;-0.3694942;-0.0007919073,0.1114439;-0.710672;0.07692981,0.117482;-0.7591859;0.01529282,-0.07735056;0.0001648534;-0.02041722,-0.07448851;-0.3791066;0.002927899,-0.08707859;-0.7213737;0.0750018,-0.09905063;-0.7094579;-0.02261804,0.01428917;0.3996232;0.007143489,55.94169
+0;0;0,0.002217416;0.1994769;0.01428531,0.006918597;0.4992866;0.02198803,0.1199344;0.3756004;-0.00364504,0.1942078;0.1064002;0.0167196,0.2154746;-0.1695043;-0.02599432,-0.1063957;0.3622165;-0.002011729,-0.1835178;0.09383786;0.01860544,-0.2048252;-0.1835718;-0.01285644,0.07171164;0.007580656;-0.03464065,0.08869225;-0.3701441;0.003249556,0.09219048;-0.7113802;0.08100356,0.1042482;-0.7580805;0.01798221,-0.06918658;0.000176646;-0.04016449,-0.09210841;-0.37728;-0.002733309,-0.1070484;-0.7192457;0.0703166,-0.09081602;-0.7662138;0.008571833,0.005152017;0.3993022;0.02210811,0;0;0,0.006700245;0.1997658;0.006980603,0.01628652;0.4995259;0.002987875,0.1229714;0.3783389;-0.03668486,0.2595041;0.1339571;-0.03065423,0.4173746;-0.05991614;-0.1567101,-0.102938;0.369912;0.006146088,-0.1774788;0.1029331;0.04571829,-0.09576273;-0.0996009;-0.1295028,0.06486244;0.005800226;-0.04646742,0.1030981;-0.3695294;-0.001017291,0.1108685;-0.7106811;0.07679754,0.116817;-0.7589114;0.01479246,-0.07722172;3.330134E-05;-0.02089986,-0.0754344;-0.3792386;0.002544686,-0.08780628;-0.7214605;0.07487107,-0.09953023;-0.7095522;-0.02277747,0.0133129;0.3996564;0.007139577,55.96393
+0;0;0,0.002217416;0.1994769;0.01428531,0.006918597;0.4992866;0.02198803,0.1199344;0.3756004;-0.00364504,0.1942078;0.1064002;0.0167196,0.2154746;-0.1695043;-0.02599432,-0.1063957;0.3622165;-0.002011729,-0.1835178;0.09383786;0.01860544,-0.2048252;-0.1835718;-0.01285644,0.07171164;0.007580656;-0.03464065,0.08869225;-0.3701441;0.003249556,0.09219048;-0.7113802;0.08100356,0.1042482;-0.7580805;0.01798221,-0.06918658;0.000176646;-0.04016449,-0.09210841;-0.37728;-0.002733309,-0.1070484;-0.7192457;0.0703166,-0.09081602;-0.7662138;0.008571833,0.005152017;0.3993022;0.02210811,0;0;0,0.006700245;0.1997658;0.006980603,0.01628652;0.4995259;0.002987875,0.1229714;0.3783389;-0.03668486,0.2595041;0.1339571;-0.03065423,0.4173746;-0.05991614;-0.1567101,-0.102938;0.369912;0.006146088,-0.1774788;0.1029331;0.04571829,-0.09576273;-0.0996009;-0.1295028,0.06486244;0.005800226;-0.04646742,0.1030981;-0.3695294;-0.001017291,0.1108685;-0.7106811;0.07679754,0.116817;-0.7589114;0.01479246,-0.07722172;3.330134E-05;-0.02089986,-0.0754344;-0.3792386;0.002544686,-0.08780628;-0.7214605;0.07487107,-0.09953023;-0.7095522;-0.02277747,0.0133129;0.3996564;0.007139577,55.98629
+0;0;0,0.002150797;0.1994773;0.01428899,0.006685026;0.4992884;0.02204212,0.1198087;0.3758488;-0.003597643,0.1938446;0.1065572;0.01641978,0.213808;-0.1692044;-0.02781823,-0.1066467;0.3623863;-0.001900708,-0.1840091;0.09406108;0.01851103,-0.2051575;-0.1834105;-0.01250936,0.07176744;0.00739086;-0.03456602,0.08813477;-0.3703872;0.003061999,0.09152915;-0.7114823;0.08143686,0.1026533;-0.7594118;0.01976636,-0.06919928;0.0003599967;-0.04014137,-0.09268244;-0.3770368;-0.002455432,-0.1076183;-0.7190353;0.0704409,-0.09135401;-0.7660136;0.008717068,0.004973052;0.3993031;0.02214466,0;0;0,0.006284689;0.1997802;0.006955215,0.01482115;0.4995752;0.003123273,0.1220206;0.378001;-0.03616123,0.2532356;0.1312392;-0.01909629,0.3967094;-0.0702578;-0.1502994,-0.1037915;0.3691696;0.005367261,-0.1785081;0.1023662;0.04578225,-0.1011992;-0.10635;-0.1241026,0.06514145;0.00591215;-0.04606123,0.1025727;-0.3694823;-0.000477653,0.1100729;-0.7107557;0.07682827,0.1159271;-0.7587403;0.01450545,-0.07712985;-6.479528E-05;-0.02123632,-0.07614908;-0.3792969;0.002889784,-0.08824081;-0.7215554;0.07509045,-0.09966464;-0.7096548;-0.02259223,0.01224779;0.3996912;0.007191516,55.99767
+0;0;0,0.002150797;0.1994773;0.01428899,0.006685026;0.4992884;0.02204212,0.1198087;0.3758488;-0.003597643,0.1938446;0.1065572;0.01641978,0.213808;-0.1692044;-0.02781823,-0.1066467;0.3623863;-0.001900708,-0.1840091;0.09406108;0.01851103,-0.2051575;-0.1834105;-0.01250936,0.07176744;0.00739086;-0.03456602,0.08813477;-0.3703872;0.003061999,0.09152915;-0.7114823;0.08143686,0.1026533;-0.7594118;0.01976636,-0.06919928;0.0003599967;-0.04014137,-0.09268244;-0.3770368;-0.002455432,-0.1076183;-0.7190353;0.0704409,-0.09135401;-0.7660136;0.008717068,0.004973052;0.3993031;0.02214466,0;0;0,0.006284689;0.1997802;0.006955215,0.01482115;0.4995752;0.003123273,0.1220206;0.378001;-0.03616123,0.2532356;0.1312392;-0.01909629,0.3967094;-0.0702578;-0.1502994,-0.1037915;0.3691696;0.005367261,-0.1785081;0.1023662;0.04578225,-0.1011992;-0.10635;-0.1241026,0.06514145;0.00591215;-0.04606123,0.1025727;-0.3694823;-0.000477653,0.1100729;-0.7107557;0.07682827,0.1159271;-0.7587403;0.01450545,-0.07712985;-6.479528E-05;-0.02123632,-0.07614908;-0.3792969;0.002889784,-0.08824081;-0.7215554;0.07509045,-0.09966464;-0.7096548;-0.02259223,0.01224779;0.3996912;0.007191516,56.00881
+0;0;0,0.002150797;0.1994773;0.01428899,0.006685026;0.4992884;0.02204212,0.1198087;0.3758488;-0.003597643,0.1938446;0.1065572;0.01641978,0.213808;-0.1692044;-0.02781823,-0.1066467;0.3623863;-0.001900708,-0.1840091;0.09406108;0.01851103,-0.2051575;-0.1834105;-0.01250936,0.07176744;0.00739086;-0.03456602,0.08813477;-0.3703872;0.003061999,0.09152915;-0.7114823;0.08143686,0.1026533;-0.7594118;0.01976636,-0.06919928;0.0003599967;-0.04014137,-0.09268244;-0.3770368;-0.002455432,-0.1076183;-0.7190353;0.0704409,-0.09135401;-0.7660136;0.008717068,0.004973052;0.3993031;0.02214466,0;0;0,0.006353894;0.1997937;0.006490847,0.01616114;0.4995154;0.0009471942,0.1232487;0.3789016;-0.03676322,0.2496682;0.130112;-0.0139189,0.385608;-0.07000951;-0.1548861,-0.1034453;0.3706467;0.004464088,-0.1783824;0.1040052;0.04553425,-0.1027184;-0.1064824;-0.1228994,0.0655705;0.005995981;-0.04543738,0.1018576;-0.369617;-0.0007369332,0.1094247;-0.7109457;0.07631809,0.1146262;-0.7588939;0.01389197,-0.07687753;-6.705349E-05;-0.02213232,-0.07739203;-0.3792345;0.003002519,-0.08939134;-0.7215203;0.07508907,-0.1005164;-0.7096714;-0.02261852,0.01298153;0.3996825;0.005772704,56.03082
+0;0;0,0.002072146;0.1994743;0.01434226,0.006445834;0.4992849;0.02220402,0.1196478;0.3759669;-0.0034671,0.1933328;0.1065355;0.01595543,0.212887;-0.1691895;-0.02869134,-0.106891;0.3625726;-0.001800278,-0.1846874;0.09439749;0.01893264,-0.2051;-0.1831878;-0.01155857,0.07174229;0.007327477;-0.03463166,0.08758868;-0.3704676;0.003048345,0.09091081;-0.7114713;0.08182292,0.1019965;-0.7596343;0.02044169,-0.06926175;0.0004613282;-0.04003244,-0.0933578;-0.3768888;-0.002266895,-0.1081918;-0.7188066;0.07102823,-0.1068319;-0.7062684;-0.02742602,0.004786143;0.3992987;0.02227049,0;0;0,0.006353894;0.1997937;0.006490847,0.01616114;0.4995154;0.0009471942,0.1232487;0.3789016;-0.03676322,0.2496682;0.130112;-0.0139189,0.385608;-0.07000951;-0.1548861,-0.1034453;0.3706467;0.004464088,-0.1783824;0.1040052;0.04553425,-0.1027184;-0.1064824;-0.1228994,0.0655705;0.005995981;-0.04543738,0.1018576;-0.369617;-0.0007369332,0.1094247;-0.7109457;0.07631809,0.1146262;-0.7588939;0.01389197,-0.07687753;-6.705349E-05;-0.02213232,-0.07739203;-0.3792345;0.003002519,-0.08939134;-0.7215203;0.07508907,-0.1005164;-0.7096714;-0.02261852,0.01298153;0.3996825;0.005772704,56.04224
+0;0;0,0.002072146;0.1994743;0.01434226,0.006445834;0.4992849;0.02220402,0.1196478;0.3759669;-0.0034671,0.1933328;0.1065355;0.01595543,0.212887;-0.1691895;-0.02869134,-0.106891;0.3625726;-0.001800278,-0.1846874;0.09439749;0.01893264,-0.2051;-0.1831878;-0.01155857,0.07174229;0.007327477;-0.03463166,0.08758868;-0.3704676;0.003048345,0.09091081;-0.7114713;0.08182292,0.1019965;-0.7596343;0.02044169,-0.06926175;0.0004613282;-0.04003244,-0.0933578;-0.3768888;-0.002266895,-0.1081918;-0.7188066;0.07102823,-0.1068319;-0.7062684;-0.02742602,0.004786143;0.3992987;0.02227049,0;0;0,0.006353894;0.1997937;0.006490847,0.01616114;0.4995154;0.0009471942,0.1232487;0.3789016;-0.03676322,0.2496682;0.130112;-0.0139189,0.385608;-0.07000951;-0.1548861,-0.1034453;0.3706467;0.004464088,-0.1783824;0.1040052;0.04553425,-0.1027184;-0.1064824;-0.1228994,0.0655705;0.005995981;-0.04543738,0.1018576;-0.369617;-0.0007369332,0.1094247;-0.7109457;0.07631809,0.1146262;-0.7588939;0.01389197,-0.07687753;-6.705349E-05;-0.02213232,-0.07739203;-0.3792345;0.003002519,-0.08939134;-0.7215203;0.07508907,-0.1005164;-0.7096714;-0.02261852,0.01298153;0.3996825;0.005772704,56.05343
+0;0;0,0.002072146;0.1994743;0.01434226,0.006445834;0.4992849;0.02220402,0.1196478;0.3759669;-0.0034671,0.1933328;0.1065355;0.01595543,0.212887;-0.1691895;-0.02869134,-0.106891;0.3625726;-0.001800278,-0.1846874;0.09439749;0.01893264,-0.2051;-0.1831878;-0.01155857,0.07174229;0.007327477;-0.03463166,0.08758868;-0.3704676;0.003048345,0.09091081;-0.7114713;0.08182292,0.1019965;-0.7596343;0.02044169,-0.06926175;0.0004613282;-0.04003244,-0.0933578;-0.3768888;-0.002266895,-0.1081918;-0.7188066;0.07102823,-0.1068319;-0.7062684;-0.02742602,0.004786143;0.3992987;0.02227049,0;0;0,0.005798421;0.1998164;0.006308747,0.01476078;0.499569;0.0008841348,0.1227487;0.3786657;-0.0354025,0.2394261;0.1259254;-0.005258489,0.3666908;-0.06494012;-0.1658015,-0.1041252;0.3694615;0.002646212,-0.1798685;0.1033275;0.04549022,-0.09832414;-0.1021151;-0.126393,0.06614298;0.006056438;-0.04459177,0.1011428;-0.36977;-0.000665687,0.1086916;-0.7111917;0.07597804,0.1139045;-0.758994;0.01337115,-0.07668208;-0.0001591413;-0.02279983,-0.07765158;-0.3792501;0.003450939,-0.09006433;-0.7215906;0.07520685,-0.1002902;-0.7097527;-0.0225969,0.01195927;0.3997203;0.005614746,56.07555
+0;0;0,0.002147959;0.1994501;0.01466389,0.00659909;0.4992503;0.02285241,0.1196476;0.3757678;-0.003287906,0.1933347;0.1063138;0.01581048,0.212084;-0.169297;-0.02987524,-0.1066922;0.3622746;-0.001222428,-0.1845211;0.0941174;0.01961904,-0.2050467;-0.1834855;-0.01063497,0.07179268;0.007325646;-0.03452747,0.08736879;-0.3704266;0.003690299,0.09014219;-0.7113565;0.08280486,0.1018035;-0.7593125;0.02126716,-0.06924561;0.0005003544;-0.04005989,-0.09351473;-0.3767433;-0.001353368,-0.1083629;-0.7186112;0.07217146,-0.1071268;-0.7060529;-0.02628798,0.004903574;0.3992647;0.02282167,0;0;0,0.005798421;0.1998164;0.006308747,0.01476078;0.499569;0.0008841348,0.1227487;0.3786657;-0.0354025,0.2394261;0.1259254;-0.005258489,0.3666908;-0.06494012;-0.1658015,-0.1041252;0.3694615;0.002646212,-0.1798685;0.1033275;0.04549022,-0.09832414;-0.1021151;-0.126393,0.06614298;0.006056438;-0.04459177,0.1011428;-0.36977;-0.000665687,0.1086916;-0.7111917;0.07597804,0.1139045;-0.758994;0.01337115,-0.07668208;-0.0001591413;-0.02279983,-0.07765158;-0.3792501;0.003450939,-0.09006433;-0.7215906;0.07520685,-0.1002902;-0.7097527;-0.0225969,0.01195927;0.3997203;0.005614746,56.08694
+0;0;0,0.002147959;0.1994501;0.01466389,0.00659909;0.4992503;0.02285241,0.1196476;0.3757678;-0.003287906,0.1933347;0.1063138;0.01581048,0.212084;-0.169297;-0.02987524,-0.1066922;0.3622746;-0.001222428,-0.1845211;0.0941174;0.01961904,-0.2050467;-0.1834855;-0.01063497,0.07179268;0.007325646;-0.03452747,0.08736879;-0.3704266;0.003690299,0.09014219;-0.7113565;0.08280486,0.1018035;-0.7593125;0.02126716,-0.06924561;0.0005003544;-0.04005989,-0.09351473;-0.3767433;-0.001353368,-0.1083629;-0.7186112;0.07217146,-0.1071268;-0.7060529;-0.02628798,0.004903574;0.3992647;0.02282167,0;0;0,0.005582322;0.1998214;0.00634331,0.01430291;0.4995877;0.001164926,0.122591;0.3788975;-0.03473657,0.236694;0.1250527;-0.004022444,0.3493708;-0.04475775;-0.1960337,-0.1042921;0.3687654;0.001628127,-0.1801586;0.1028441;0.04556159,-0.1283188;-0.1388411;-0.08597118,0.06633254;0.006054734;-0.04430954,0.1007641;-0.369845;-0.0005621836,0.1082034;-0.7113258;0.07582844,0.1143997;-0.7589592;0.01310141,-0.07649235;-0.0001337575;-0.02342866,-0.07781936;-0.379208;0.003047643,-0.09058202;-0.7215462;0.07475295,-0.1003083;-0.7096893;-0.02310524,0.01157005;0.3997309;0.005764194,56.1091
+0;0;0,0.002147959;0.1994501;0.01466389,0.00659909;0.4992503;0.02285241,0.1196476;0.3757678;-0.003287906,0.1933347;0.1063138;0.01581048,0.212084;-0.169297;-0.02987524,-0.1066922;0.3622746;-0.001222428,-0.1845211;0.0941174;0.01961904,-0.2050467;-0.1834855;-0.01063497,0.07179268;0.007325646;-0.03452747,0.08736879;-0.3704266;0.003690299,0.09014219;-0.7113565;0.08280486,0.1018035;-0.7593125;0.02126716,-0.06924561;0.0005003544;-0.04005989,-0.09351473;-0.3767433;-0.001353368,-0.1083629;-0.7186112;0.07217146,-0.1071268;-0.7060529;-0.02628798,0.004903574;0.3992647;0.02282167,0;0;0,0.005582322;0.1998214;0.00634331,0.01430291;0.4995877;0.001164926,0.122591;0.3788975;-0.03473657,0.236694;0.1250527;-0.004022444,0.3493708;-0.04475775;-0.1960337,-0.1042921;0.3687654;0.001628127,-0.1801586;0.1028441;0.04556159,-0.1283188;-0.1388411;-0.08597118,0.06633254;0.006054734;-0.04430954,0.1007641;-0.369845;-0.0005621836,0.1082034;-0.7113258;0.07582844,0.1143997;-0.7589592;0.01310141,-0.07649235;-0.0001337575;-0.02342866,-0.07781936;-0.379208;0.003047643,-0.09058202;-0.7215462;0.07475295,-0.1003083;-0.7096893;-0.02310524,0.01157005;0.3997309;0.005764194,56.12043
+0;0;0,0.002412613;0.1994433;0.01471607,0.007430999;0.4992341;0.02291704,0.1202385;0.3755893;-0.003157808,0.1938541;0.106084;0.01548815,0.2122084;-0.1694466;-0.03083643,-0.1061161;0.3621081;-0.0007683802,-0.1842754;0.09403715;0.01994659,-0.2053295;-0.1834749;-0.01077433,0.071764;0.007034857;-0.03464733,0.08727022;-0.3706722;0.004042532,0.09004797;-0.7114787;0.08368681,0.1010737;-0.7594962;0.02210996,-0.06934558;0.0007573613;-0.03988254,-0.09359951;-0.3764392;-0.000709597,-0.1084277;-0.7183112;0.07279988,-0.107262;-0.7057506;-0.02566082,0.005512644;0.3992525;0.02288138,0;0;0,0.005569698;0.1998224;0.006324654,0.01424605;0.4995916;0.001201346,0.1230362;0.3791697;-0.03341904,0.2327628;0.1234455;-0.002351321,0.3284352;-0.006689876;-0.2310686,-0.1043014;0.3686094;0.001024842,-0.1815695;0.1029678;0.04420082,-0.2233483;-0.1738763;0.04764283,0.0665593;0.005991176;-0.04397687,0.100657;-0.3699241;-0.0001013875,0.107546;-0.7116849;0.07507886,0.1148063;-0.7583501;0.01128426,-0.07628951;0.0001304083;-0.02408097,-0.0781645;-0.3789276;0.002592409,-0.09071065;-0.7212431;0.07444429,-0.0999057;-0.70938;-0.02346642,0.01149486;0.3997338;0.005768244,56.13145
+0;0;0,0.002412613;0.1994433;0.01471607,0.007430999;0.4992341;0.02291704,0.1202385;0.3755893;-0.003157808,0.1938541;0.106084;0.01548815,0.2122084;-0.1694466;-0.03083643,-0.1061161;0.3621081;-0.0007683802,-0.1842754;0.09403715;0.01994659,-0.2053295;-0.1834749;-0.01077433,0.071764;0.007034857;-0.03464733,0.08727022;-0.3706722;0.004042532,0.09004797;-0.7114787;0.08368681,0.1010737;-0.7594962;0.02210996,-0.06934558;0.0007573613;-0.03988254,-0.09359951;-0.3764392;-0.000709597,-0.1084277;-0.7183112;0.07279988,-0.107262;-0.7057506;-0.02566082,0.005512644;0.3992525;0.02288138,0;0;0,0.005569698;0.1998224;0.006324654,0.01424605;0.4995916;0.001201346,0.1230362;0.3791697;-0.03341904,0.2327628;0.1234455;-0.002351321,0.3284352;-0.006689876;-0.2310686,-0.1043014;0.3686094;0.001024842,-0.1815695;0.1029678;0.04420082,-0.2233483;-0.1738763;0.04764283,0.0665593;0.005991176;-0.04397687,0.100657;-0.3699241;-0.0001013875,0.107546;-0.7116849;0.07507886,0.1148063;-0.7583501;0.01128426,-0.07628951;0.0001304083;-0.02408097,-0.0781645;-0.3789276;0.002592409,-0.09071065;-0.7212431;0.07444429,-0.0999057;-0.70938;-0.02346642,0.01149486;0.3997338;0.005768244,56.14273
+0;0;0,0.002412613;0.1994433;0.01471607,0.007430999;0.4992341;0.02291704,0.1202385;0.3755893;-0.003157808,0.1938541;0.106084;0.01548815,0.2122084;-0.1694466;-0.03083643,-0.1061161;0.3621081;-0.0007683802,-0.1842754;0.09403715;0.01994659,-0.2053295;-0.1834749;-0.01077433,0.071764;0.007034857;-0.03464733,0.08727022;-0.3706722;0.004042532,0.09004797;-0.7114787;0.08368681,0.1010737;-0.7594962;0.02210996,-0.06934558;0.0007573613;-0.03988254,-0.09359951;-0.3764392;-0.000709597,-0.1084277;-0.7183112;0.07279988,-0.107262;-0.7057506;-0.02566082,0.005512644;0.3992525;0.02288138,0;0;0,0.006114574;0.1998173;0.005971122,0.01698156;0.4994882;-0.0003789999,0.1253412;0.3795623;-0.03323188,0.2314686;0.1222876;-0.002464389,0.3084972;0.02758532;-0.2544527,-0.102864;0.369766;0.0007160809,-0.1819275;0.1038527;0.03865153,-0.2232045;-0.1729318;0.04795504,0.06665559;0.005916234;-0.04384096,0.1007666;-0.369946;0.000476364,0.1075339;-0.711825;0.07512867,0.1149732;-0.7585;0.01136655,-0.07612188;0.0003394097;-0.02460372,-0.07823607;-0.3786664;0.002785383,-0.09057222;-0.7209982;0.07459575,-0.09943599;-0.7091659;-0.02333978,0.01327894;0.3996848;0.004677779,56.16501
+0;0;0,0.002428213;0.1994341;0.01483689,0.007418909;0.4992196;0.02324276,0.1202581;0.3757685;-0.002993127,0.193917;0.1061946;0.01445088,0.2120863;-0.1693584;-0.03181385,-0.106084;0.3620919;-0.0006474089,-0.1857098;0.09457797;0.02162432,-0.2055736;-0.1828967;-0.01020687,0.07171974;0.007033616;-0.03473912,0.08723181;-0.3706898;0.00378859,0.09007746;-0.7113713;0.08396326,0.1015402;-0.7588834;0.0218305,-0.06938243;0.0007854681;-0.03981785,-0.09379137;-0.376359;-0.000242237,-0.1082273;-0.7182635;0.0731941,-0.1070807;-0.7056944;-0.02526833,0.005514449;0.3992378;0.02314266,0;0;0,0.006114574;0.1998173;0.005971122,0.01698156;0.4994882;-0.0003789999,0.1253412;0.3795623;-0.03323188,0.2314686;0.1222876;-0.002464389,0.3084972;0.02758532;-0.2544527,-0.102864;0.369766;0.0007160809,-0.1819275;0.1038527;0.03865153,-0.2232045;-0.1729318;0.04795504,0.06665559;0.005916234;-0.04384096,0.1007666;-0.369946;0.000476364,0.1075339;-0.711825;0.07512867,0.1149732;-0.7585;0.01136655,-0.07612188;0.0003394097;-0.02460372,-0.07823607;-0.3786664;0.002785383,-0.09057222;-0.7209982;0.07459575,-0.09943599;-0.7091659;-0.02333978,0.01327894;0.3996848;0.004677779,56.18726
+0;0;0,0.002428213;0.1994341;0.01483689,0.007418909;0.4992196;0.02324276,0.1202581;0.3757685;-0.002993127,0.193917;0.1061946;0.01445088,0.2120863;-0.1693584;-0.03181385,-0.106084;0.3620919;-0.0006474089,-0.1857098;0.09457797;0.02162432,-0.2055736;-0.1828967;-0.01020687,0.07171974;0.007033616;-0.03473912,0.08723181;-0.3706898;0.00378859,0.09007746;-0.7113713;0.08396326,0.1015402;-0.7588834;0.0218305,-0.06938243;0.0007854681;-0.03981785,-0.09379137;-0.376359;-0.000242237,-0.1082273;-0.7182635;0.0731941,-0.1070807;-0.7056944;-0.02526833,0.005514449;0.3992378;0.02314266,0;0;0,0.006361784;0.1998061;0.006086756,0.01774397;0.4994789;0.0005406085,0.1258718;0.3789195;-0.03240955,0.2103427;0.1119855;-0.02911146,0.2758662;0.1764938;-0.2935833,-0.1021049;0.3692812;-0.000872836,-0.1819493;0.1035573;0.0367523,-0.2255187;-0.172846;0.04690025,0.06674078;0.005823371;-0.04372364,0.1008476;-0.3699487;0.001354877,0.1075453;-0.7119893;0.07526962,0.1141012;-0.7585841;0.01131458,-0.07594442;0.0005767727;-0.02514184,-0.07850131;-0.3783659;0.003069792,-0.0905622;-0.7207033;0.07490043,-0.0987111;-0.7088372;-0.02310343,0.01382539;0.3996649;0.005210038,56.2097
+0;0;0,0.002428213;0.1994341;0.01483689,0.007418909;0.4992196;0.02324276,0.1202581;0.3757685;-0.002993127,0.193917;0.1061946;0.01445088,0.2120863;-0.1693584;-0.03181385,-0.106084;0.3620919;-0.0006474089,-0.1857098;0.09457797;0.02162432,-0.2055736;-0.1828967;-0.01020687,0.07171974;0.007033616;-0.03473912,0.08723181;-0.3706898;0.00378859,0.09007746;-0.7113713;0.08396326,0.1015402;-0.7588834;0.0218305,-0.06938243;0.0007854681;-0.03981785,-0.09379137;-0.376359;-0.000242237,-0.1082273;-0.7182635;0.0731941,-0.1070807;-0.7056944;-0.02526833,0.005514449;0.3992378;0.02314266,0;0;0,0.006957617;0.1997961;0.005753888,0.01977058;0.499397;-0.0004682951,0.1276071;0.3795145;-0.03280684,0.2348947;0.1217481;-0.0539223,0.2737489;0.193566;-0.3217516,-0.1009833;0.3705748;-0.001018758,-0.1820225;0.1049777;0.0349097,-0.2291488;-0.1708729;0.04415833,0.06688946;0.005710614;-0.04351078,0.101098;-0.370003;0.001976404,0.10768;-0.7121552;0.0753828,0.1142717;-0.7587171;0.01139184,-0.0755941;0.0009059707;-0.02616698,-0.07821044;-0.3779463;0.003229853,-0.09024502;-0.720285;0.07505836,-0.09830792;-0.7084396;-0.02294879,0.01532106;0.3996169;0.004445416,56.23184
+0;0;0,0.00252261;0.199439;0.0147549,0.007657934;0.4992256;0.02303403,0.1204246;0.3756532;-0.003164202,0.1939284;0.1059599;0.01304496,0.2119852;-0.1696039;-0.03319976,-0.1058471;0.361849;-0.0006319247,-0.1859259;0.09452841;0.02232576,-0.2060044;-0.1828598;-0.01011843,0.07169189;0.006999197;-0.03480351,0.08720624;-0.3707253;0.003713004,0.09040726;-0.7113677;0.0840405,0.1015314;-0.7587159;0.02164248,-0.06939645;0.0008405079;-0.03979228,-0.09351603;-0.3763676;-0.0006485805,-0.1083309;-0.7181983;0.07305565,-0.1072622;-0.7056419;-0.02540541,0.005706818;0.3992447;0.02297526,0;0;0,0.006957617;0.1997961;0.005753888,0.01977058;0.499397;-0.0004682951,0.1276071;0.3795145;-0.03280684,0.2348947;0.1217481;-0.0539223,0.2737489;0.193566;-0.3217516,-0.1009833;0.3705748;-0.001018758,-0.1820225;0.1049777;0.0349097,-0.2291488;-0.1708729;0.04415833,0.06688946;0.005710614;-0.04351078,0.101098;-0.370003;0.001976404,0.10768;-0.7121552;0.0753828,0.1142717;-0.7587171;0.01139184,-0.0755941;0.0009059707;-0.02616698,-0.07821044;-0.3779463;0.003229853,-0.09024502;-0.720285;0.07505836,-0.09830792;-0.7084396;-0.02294879,0.01532106;0.3996169;0.004445416,56.24323
+0;0;0,0.00252261;0.199439;0.0147549,0.007657934;0.4992256;0.02303403,0.1204246;0.3756532;-0.003164202,0.1939284;0.1059599;0.01304496,0.2119852;-0.1696039;-0.03319976,-0.1058471;0.361849;-0.0006319247,-0.1859259;0.09452841;0.02232576,-0.2060044;-0.1828598;-0.01011843,0.07169189;0.006999197;-0.03480351,0.08720624;-0.3707253;0.003713004,0.09040726;-0.7113677;0.0840405,0.1015314;-0.7587159;0.02164248,-0.06939645;0.0008405079;-0.03979228,-0.09351603;-0.3763676;-0.0006485805,-0.1083309;-0.7181983;0.07305565,-0.1072622;-0.7056419;-0.02540541,0.005706818;0.3992447;0.02297526,0;0;0,0.006957617;0.1997961;0.005753888,0.01977058;0.499397;-0.0004682951,0.1276071;0.3795145;-0.03280684,0.2348947;0.1217481;-0.0539223,0.2737489;0.193566;-0.3217516,-0.1009833;0.3705748;-0.001018758,-0.1820225;0.1049777;0.0349097,-0.2291488;-0.1708729;0.04415833,0.06688946;0.005710614;-0.04351078,0.101098;-0.370003;0.001976404,0.10768;-0.7121552;0.0753828,0.1142717;-0.7587171;0.01139184,-0.0755941;0.0009059707;-0.02616698,-0.07821044;-0.3779463;0.003229853,-0.09024502;-0.720285;0.07505836,-0.09830792;-0.7084396;-0.02294879,0.01532106;0.3996169;0.004445416,56.2544
+0;0;0,0.00252261;0.199439;0.0147549,0.007657934;0.4992256;0.02303403,0.1204246;0.3756532;-0.003164202,0.1939284;0.1059599;0.01304496,0.2119852;-0.1696039;-0.03319976,-0.1058471;0.361849;-0.0006319247,-0.1859259;0.09452841;0.02232576,-0.2060044;-0.1828598;-0.01011843,0.07169189;0.006999197;-0.03480351,0.08720624;-0.3707253;0.003713004,0.09040726;-0.7113677;0.0840405,0.1015314;-0.7587159;0.02164248,-0.06939645;0.0008405079;-0.03979228,-0.09351603;-0.3763676;-0.0006485805,-0.1083309;-0.7181983;0.07305565,-0.1072622;-0.7056419;-0.02540541,0.005706818;0.3992447;0.02297526,0;0;0,0.007204662;0.1997817;0.005948204,0.02065594;0.4993774;0.0006530047,0.1264985;0.3766884;-0.03556252,0.2566317;0.1401172;-0.1097205,0.2114226;0.316361;-0.3225451,-0.1003191;0.3705517;-0.0009202985,-0.1823063;0.1049561;0.03279958,-0.2325262;-0.1703918;0.04064374,0.06706976;0.00556566;-0.04325125,0.1012798;-0.3701387;0.002310831,0.1080361;-0.7122697;0.07580045,0.1144621;-0.7591768;0.01220796,-0.0751551;0.001302235;-0.02738639,-0.07804011;-0.377443;0.003333418,-0.08974855;-0.7197579;0.07532953,-0.09857458;-0.7078786;-0.02261809,0.01595733;0.3995884;0.005134404,56.27668
+0;0;0,0.002616412;0.1994422;0.01469609,0.007909799;0.4992282;0.02289997,0.1205891;0.3754816;-0.003270404,0.194259;0.1057885;0.01217004,0.2120031;-0.1696713;-0.03480894,-0.1056513;0.3616788;-0.0004480407,-0.1853816;0.09417707;0.0215954,-0.1961651;-0.1839777;-0.008630734,0.071682;0.006780056;-0.0348672,0.08714414;-0.3709469;0.003645837,0.09043232;-0.7115129;0.08429343,0.1017104;-0.7588783;0.02194444,-0.06938468;0.001034659;-0.03980823,-0.09294057;-0.3762854;-0.001406673,-0.1079893;-0.7179819;0.07287014,-0.1070208;-0.7054349;-0.0255903,0.005906267;0.3992482;0.02286365,0;0;0,0.007516802;0.199765;0.00612003,0.02169294;0.4993451;0.00175694,0.1253409;0.3742459;-0.03848996,0.2617248;0.1473282;-0.1296369,0.1988559;0.3495858;-0.3127744,-0.09945561;0.3704989;-0.001428859,-0.1810699;0.104341;0.02855601,-0.2371275;-0.1698539;0.03719781,0.06718064;0.005499396;-0.04308733,0.1013833;-0.3702174;0.0023777,0.1080367;-0.7122983;0.07610971,0.1144823;-0.7595036;0.0128816,-0.07505811;0.001324453;-0.02765007,-0.07724315;-0.3774792;0.002400115,-0.0895464;-0.7197415;0.07454664,-0.09899409;-0.7078251;-0.02334988,0.01674606;0.3995517;0.00585838,56.29884

BIN
Assets/joints.sav