dartpy 7.0.0.dev0__cp313-cp313-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dartpy might be problematic. Click here for more details.
- dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
- dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
- dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
- dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
- dartpy.cpython-313-x86_64-linux-gnu.so +0 -0
- dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
- dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
- dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
- dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
- dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
- dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
- dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
- dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
- dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
- dartpy.libs/libfcl-0400fc28.so.0.7.0 +0 -0
- dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
- dartpy.libs/libfontconfig-582da43c.so.1.14.0 +0 -0
- dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
- dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
- dartpy.libs/libimgui-ab87b07d.so +0 -0
- dartpy.libs/libnlopt-d1ae937b.so.1.0.0 +0 -0
- dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
- dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
- dartpy.libs/libode-99b67f5b.so.8.2.0 +0 -0
- dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
- dartpy.libs/libosgDB-bcdb6be9.so.3.6.5 +0 -0
- dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
- dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
- dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
- dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
- dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
- dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
- dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
- dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
- dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
- dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
- dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
- dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
- dartpy.libs/libvulkan-08e1e162.so.1.4.328 +0 -0
- include/dart/collision/CollisionDetector.hpp +305 -0
- include/dart/collision/CollisionFilter.hpp +126 -0
- include/dart/collision/CollisionGroup.hpp +546 -0
- include/dart/collision/CollisionObject.hpp +90 -0
- include/dart/collision/CollisionOption.hpp +71 -0
- include/dart/collision/CollisionResult.hpp +109 -0
- include/dart/collision/Contact.hpp +103 -0
- include/dart/collision/DistanceFilter.hpp +66 -0
- include/dart/collision/DistanceOption.hpp +80 -0
- include/dart/collision/DistanceResult.hpp +123 -0
- include/dart/collision/Option.hpp +42 -0
- include/dart/collision/RaycastOption.hpp +58 -0
- include/dart/collision/RaycastResult.hpp +80 -0
- include/dart/collision/Result.hpp +42 -0
- include/dart/collision/SmartPointer.hpp +51 -0
- include/dart/collision/all.hpp +17 -0
- include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
- include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
- include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
- include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
- include/dart/collision/bullet/BulletInclude.hpp +47 -0
- include/dart/collision/bullet/BulletTypes.hpp +57 -0
- include/dart/collision/bullet/all.hpp +8 -0
- include/dart/collision/bullet/bullet.hpp +14 -0
- include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
- include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
- include/dart/collision/collision.hpp +14 -0
- include/dart/collision/dart/DARTCollide.hpp +106 -0
- include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
- include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
- include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
- include/dart/collision/dart/all.hpp +6 -0
- include/dart/collision/dart/dart.hpp +14 -0
- include/dart/collision/detail/CollisionDetector.hpp +66 -0
- include/dart/collision/detail/CollisionGroup.hpp +287 -0
- include/dart/collision/detail/Contact-impl.hpp +56 -0
- include/dart/collision/detail/UnorderedPairs.hpp +153 -0
- include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
- include/dart/collision/fcl/CollisionShapes.hpp +374 -0
- include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
- include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
- include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
- include/dart/collision/fcl/FCLTypes.hpp +62 -0
- include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
- include/dart/collision/fcl/all.hpp +9 -0
- include/dart/collision/fcl/fcl.hpp +14 -0
- include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
- include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
- include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
- include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
- include/dart/collision/ode/OdeTypes.hpp +51 -0
- include/dart/collision/ode/all.hpp +6 -0
- include/dart/collision/ode/detail/OdeBox.hpp +58 -0
- include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
- include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
- include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
- include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
- include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
- include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
- include/dart/collision/ode/detail/OdePlane.hpp +67 -0
- include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
- include/dart/collision/ode/ode.hpp +14 -0
- include/dart/common/Aspect.hpp +215 -0
- include/dart/common/AspectWithVersion.hpp +180 -0
- include/dart/common/CAllocator.hpp +65 -0
- include/dart/common/Castable.hpp +102 -0
- include/dart/common/ClassWithVirtualBase.hpp +47 -0
- include/dart/common/Cloneable.hpp +327 -0
- include/dart/common/Composite.hpp +205 -0
- include/dart/common/CompositeJoiner.hpp +160 -0
- include/dart/common/Console.hpp +75 -0
- include/dart/common/Deprecated.hpp +126 -0
- include/dart/common/EmbeddedAspect.hpp +466 -0
- include/dart/common/Empty.hpp +55 -0
- include/dart/common/Factory.hpp +146 -0
- include/dart/common/Filesystem.hpp +112 -0
- include/dart/common/FreeListAllocator.hpp +162 -0
- include/dart/common/IncludeWindows.hpp +50 -0
- include/dart/common/LocalResource.hpp +76 -0
- include/dart/common/LocalResourceRetriever.hpp +63 -0
- include/dart/common/LockableReference.hpp +166 -0
- include/dart/common/Logging.hpp +146 -0
- include/dart/common/Macros.hpp +78 -0
- include/dart/common/Memory.hpp +215 -0
- include/dart/common/MemoryAllocator.hpp +120 -0
- include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
- include/dart/common/MemoryManager.hpp +189 -0
- include/dart/common/Metaprogramming.hpp +68 -0
- include/dart/common/NameManager.hpp +184 -0
- include/dart/common/Observer.hpp +85 -0
- include/dart/common/Optional.hpp +48 -0
- include/dart/common/Platform.hpp +92 -0
- include/dart/common/PoolAllocator.hpp +141 -0
- include/dart/common/Profile.hpp +56 -0
- include/dart/common/ProxyAspect.hpp +93 -0
- include/dart/common/RequiresAspect.hpp +79 -0
- include/dart/common/Resource.hpp +96 -0
- include/dart/common/ResourceRetriever.hpp +82 -0
- include/dart/common/SharedLibrary.hpp +201 -0
- include/dart/common/Signal.hpp +250 -0
- include/dart/common/Singleton.hpp +85 -0
- include/dart/common/SmartPointer.hpp +63 -0
- include/dart/common/SpecializedForAspect.hpp +207 -0
- include/dart/common/StlAllocator.hpp +111 -0
- include/dart/common/StlHelpers.hpp +61 -0
- include/dart/common/Stopwatch.hpp +143 -0
- include/dart/common/String.hpp +71 -0
- include/dart/common/SubPtr.hpp +17 -0
- include/dart/common/Subject.hpp +84 -0
- include/dart/common/Timer.hpp +119 -0
- include/dart/common/Uri.hpp +229 -0
- include/dart/common/VersionCounter.hpp +68 -0
- include/dart/common/Virtual.hpp +51 -0
- include/dart/common/all.hpp +53 -0
- include/dart/common/common.hpp +14 -0
- include/dart/common/detail/Aspect.hpp +102 -0
- include/dart/common/detail/AspectWithVersion.hpp +455 -0
- include/dart/common/detail/Castable-impl.hpp +109 -0
- include/dart/common/detail/Cloneable.hpp +638 -0
- include/dart/common/detail/Composite.hpp +241 -0
- include/dart/common/detail/CompositeData.hpp +393 -0
- include/dart/common/detail/CompositeJoiner.hpp +128 -0
- include/dart/common/detail/ConnectionBody.hpp +157 -0
- include/dart/common/detail/EmbeddedAspect.hpp +487 -0
- include/dart/common/detail/Factory-impl.hpp +200 -0
- include/dart/common/detail/LockableReference-impl.hpp +156 -0
- include/dart/common/detail/Logging-impl.hpp +162 -0
- include/dart/common/detail/Memory-impl.hpp +66 -0
- include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
- include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
- include/dart/common/detail/MemoryManager-impl.hpp +102 -0
- include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
- include/dart/common/detail/NameManager.hpp +301 -0
- include/dart/common/detail/NoOp.hpp +57 -0
- include/dart/common/detail/ProxyAspect.hpp +172 -0
- include/dart/common/detail/RequiresAspect.hpp +51 -0
- include/dart/common/detail/SharedLibraryManager.hpp +106 -0
- include/dart/common/detail/Signal.hpp +242 -0
- include/dart/common/detail/Singleton-impl.hpp +74 -0
- include/dart/common/detail/SpecializedForAspect.hpp +331 -0
- include/dart/common/detail/StlAllocator-impl.hpp +108 -0
- include/dart/common/detail/Stopwatch-impl.hpp +242 -0
- include/dart/common/detail/SubPtr.hpp +17 -0
- include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
- include/dart/common/detail/sub_ptr.hpp +139 -0
- include/dart/common/sub_ptr.hpp +103 -0
- include/dart/config.hpp +100 -0
- include/dart/constraint/BalanceConstraint.hpp +202 -0
- include/dart/constraint/BallJointConstraint.hpp +142 -0
- include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
- include/dart/constraint/BoxedLcpSolver.hpp +101 -0
- include/dart/constraint/ConstrainedGroup.hpp +120 -0
- include/dart/constraint/ConstraintBase.hpp +141 -0
- include/dart/constraint/ConstraintSolver.hpp +325 -0
- include/dart/constraint/ContactConstraint.hpp +286 -0
- include/dart/constraint/ContactSurface.hpp +191 -0
- include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
- include/dart/constraint/DantzigLCPSolver.hpp +87 -0
- include/dart/constraint/DynamicJointConstraint.hpp +120 -0
- include/dart/constraint/JointConstraint.hpp +182 -0
- include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
- include/dart/constraint/JointLimitConstraint.hpp +185 -0
- include/dart/constraint/LCPSolver.hpp +71 -0
- include/dart/constraint/MimicMotorConstraint.hpp +164 -0
- include/dart/constraint/PGSLCPSolver.hpp +109 -0
- include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
- include/dart/constraint/ServoMotorConstraint.hpp +151 -0
- include/dart/constraint/SmartPointer.hpp +69 -0
- include/dart/constraint/SoftContactConstraint.hpp +262 -0
- include/dart/constraint/WeldJointConstraint.hpp +133 -0
- include/dart/constraint/all.hpp +25 -0
- include/dart/constraint/constraint.hpp +14 -0
- include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
- include/dart/dart.hpp +44 -0
- include/dart/dynamics/ArrowShape.hpp +121 -0
- include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
- include/dart/dynamics/BallJoint.hpp +143 -0
- include/dart/dynamics/BodyNode.hpp +1279 -0
- include/dart/dynamics/BoxShape.hpp +90 -0
- include/dart/dynamics/Branch.hpp +107 -0
- include/dart/dynamics/CapsuleShape.hpp +105 -0
- include/dart/dynamics/Chain.hpp +142 -0
- include/dart/dynamics/CompositeNode.hpp +114 -0
- include/dart/dynamics/ConeShape.hpp +107 -0
- include/dart/dynamics/CylinderShape.hpp +96 -0
- include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
- include/dart/dynamics/EllipsoidShape.hpp +115 -0
- include/dart/dynamics/EndEffector.hpp +158 -0
- include/dart/dynamics/Entity.hpp +258 -0
- include/dart/dynamics/EntityNode.hpp +77 -0
- include/dart/dynamics/EulerJoint.hpp +174 -0
- include/dart/dynamics/FixedFrame.hpp +105 -0
- include/dart/dynamics/FixedJacobianNode.hpp +168 -0
- include/dart/dynamics/Frame.hpp +388 -0
- include/dart/dynamics/FreeJoint.hpp +369 -0
- include/dart/dynamics/GenericJoint.hpp +825 -0
- include/dart/dynamics/Group.hpp +270 -0
- include/dart/dynamics/HeightmapShape.hpp +195 -0
- include/dart/dynamics/HierarchicalIK.hpp +419 -0
- include/dart/dynamics/IkFast.hpp +277 -0
- include/dart/dynamics/Inertia.hpp +176 -0
- include/dart/dynamics/InvalidIndex.hpp +46 -0
- include/dart/dynamics/InverseKinematics.hpp +1401 -0
- include/dart/dynamics/JacobianNode.hpp +312 -0
- include/dart/dynamics/Joint.hpp +1128 -0
- include/dart/dynamics/LineSegmentShape.hpp +140 -0
- include/dart/dynamics/Linkage.hpp +246 -0
- include/dart/dynamics/Marker.hpp +126 -0
- include/dart/dynamics/MeshShape.hpp +225 -0
- include/dart/dynamics/MetaSkeleton.hpp +1034 -0
- include/dart/dynamics/MimicDofProperties.hpp +62 -0
- include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
- include/dart/dynamics/MultiSphereShape.hpp +42 -0
- include/dart/dynamics/Node.hpp +273 -0
- include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
- include/dart/dynamics/PlanarJoint.hpp +161 -0
- include/dart/dynamics/PlaneShape.hpp +105 -0
- include/dart/dynamics/PointCloudShape.hpp +186 -0
- include/dart/dynamics/PointMass.hpp +709 -0
- include/dart/dynamics/PrismaticJoint.hpp +120 -0
- include/dart/dynamics/PyramidShape.hpp +122 -0
- include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
- include/dart/dynamics/RevoluteJoint.hpp +120 -0
- include/dart/dynamics/ScrewJoint.hpp +126 -0
- include/dart/dynamics/Shape.hpp +231 -0
- include/dart/dynamics/ShapeFrame.hpp +291 -0
- include/dart/dynamics/ShapeNode.hpp +134 -0
- include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
- include/dart/dynamics/SimpleFrame.hpp +247 -0
- include/dart/dynamics/Skeleton.hpp +1350 -0
- include/dart/dynamics/SmartPointer.hpp +185 -0
- include/dart/dynamics/SoftBodyNode.hpp +472 -0
- include/dart/dynamics/SoftMeshShape.hpp +100 -0
- include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
- include/dart/dynamics/SphereShape.hpp +89 -0
- include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
- include/dart/dynamics/TranslationalJoint.hpp +105 -0
- include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
- include/dart/dynamics/UniversalJoint.hpp +128 -0
- include/dart/dynamics/VoxelGridShape.hpp +171 -0
- include/dart/dynamics/WeldJoint.hpp +116 -0
- include/dart/dynamics/ZeroDofJoint.hpp +562 -0
- include/dart/dynamics/all.hpp +69 -0
- include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
- include/dart/dynamics/detail/BodyNode.hpp +344 -0
- include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
- include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
- include/dart/dynamics/detail/CompositeNode.hpp +93 -0
- include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
- include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
- include/dart/dynamics/detail/EntityNode.hpp +81 -0
- include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
- include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
- include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
- include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
- include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
- include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
- include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
- include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
- include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
- include/dart/dynamics/detail/JointAspect.hpp +161 -0
- include/dart/dynamics/detail/JointPtr.hpp +293 -0
- include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
- include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
- include/dart/dynamics/detail/Node.hpp +532 -0
- include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
- include/dart/dynamics/detail/NodePtr.hpp +259 -0
- include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
- include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
- include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
- include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
- include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
- include/dart/dynamics/detail/ShapeNode.hpp +51 -0
- include/dart/dynamics/detail/Skeleton.hpp +92 -0
- include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
- include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
- include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
- include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
- include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
- include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
- include/dart/dynamics/dynamics.hpp +14 -0
- include/dart/dynamics/ikfast.h +345 -0
- include/dart/external/convhull_3d/convhull_3d.h +1878 -0
- include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
- include/dart/external/odelcpsolver/common.h +418 -0
- include/dart/external/odelcpsolver/error.h +62 -0
- include/dart/external/odelcpsolver/lcp.h +75 -0
- include/dart/external/odelcpsolver/matrix.h +277 -0
- include/dart/external/odelcpsolver/misc.h +82 -0
- include/dart/external/odelcpsolver/odeconfig.h +110 -0
- include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
- include/dart/gui/osg/DragAndDrop.hpp +360 -0
- include/dart/gui/osg/GridVisual.hpp +218 -0
- include/dart/gui/osg/ImGuiHandler.hpp +113 -0
- include/dart/gui/osg/ImGuiViewer.hpp +83 -0
- include/dart/gui/osg/ImGuiWidget.hpp +91 -0
- include/dart/gui/osg/IncludeImGui.hpp +75 -0
- include/dart/gui/osg/InteractiveFrame.hpp +170 -0
- include/dart/gui/osg/MouseEventHandler.hpp +76 -0
- include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
- include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
- include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
- include/dart/gui/osg/TrackballManipulator.hpp +97 -0
- include/dart/gui/osg/Utils.hpp +120 -0
- include/dart/gui/osg/Viewer.hpp +427 -0
- include/dart/gui/osg/WorldNode.hpp +211 -0
- include/dart/gui/osg/all.hpp +19 -0
- include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
- include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
- include/dart/gui/osg/osg.hpp +14 -0
- include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
- include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
- include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
- include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
- include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
- include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
- include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
- include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ShapeNode.hpp +126 -0
- include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
- include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
- include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
- include/dart/gui/osg/render/all.hpp +19 -0
- include/dart/gui/osg/render/render.hpp +14 -0
- include/dart/integration/EulerIntegrator.hpp +64 -0
- include/dart/integration/Integrator.hpp +104 -0
- include/dart/integration/RK4Integrator.hpp +68 -0
- include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
- include/dart/integration/all.hpp +6 -0
- include/dart/integration/integration.hpp +14 -0
- include/dart/lcpsolver/Lemke.hpp +54 -0
- include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
- include/dart/lcpsolver/all.hpp +4 -0
- include/dart/lcpsolver/lcpsolver.hpp +14 -0
- include/dart/math/ConfigurationSpace.hpp +144 -0
- include/dart/math/Constants.hpp +79 -0
- include/dart/math/Geometry.hpp +659 -0
- include/dart/math/Helpers.hpp +481 -0
- include/dart/math/Icosphere.hpp +106 -0
- include/dart/math/MathTypes.hpp +100 -0
- include/dart/math/Mesh.hpp +108 -0
- include/dart/math/Random.hpp +225 -0
- include/dart/math/TriMesh.hpp +121 -0
- include/dart/math/all.hpp +11 -0
- include/dart/math/detail/ConfigurationSpace.hpp +235 -0
- include/dart/math/detail/Geometry-impl.hpp +126 -0
- include/dart/math/detail/Icosphere-impl.hpp +214 -0
- include/dart/math/detail/Mesh-impl.hpp +151 -0
- include/dart/math/detail/Random-impl.hpp +353 -0
- include/dart/math/detail/TriMesh-impl.hpp +202 -0
- include/dart/math/math.hpp +14 -0
- include/dart/optimizer/Function.hpp +203 -0
- include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
- include/dart/optimizer/GradientDescentSolver.hpp +240 -0
- include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
- include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
- include/dart/optimizer/Population.hpp +108 -0
- include/dart/optimizer/Problem.hpp +191 -0
- include/dart/optimizer/Solver.hpp +182 -0
- include/dart/optimizer/all.hpp +10 -0
- include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
- include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
- include/dart/optimizer/ipopt/all.hpp +4 -0
- include/dart/optimizer/ipopt/ipopt.hpp +14 -0
- include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
- include/dart/optimizer/nlopt/all.hpp +3 -0
- include/dart/optimizer/nlopt/nlopt.hpp +14 -0
- include/dart/optimizer/optimizer.hpp +14 -0
- include/dart/simulation/Recording.hpp +118 -0
- include/dart/simulation/SmartPointer.hpp +46 -0
- include/dart/simulation/World.hpp +405 -0
- include/dart/simulation/all.hpp +5 -0
- include/dart/simulation/detail/World-impl.hpp +129 -0
- include/dart/simulation/simulation.hpp +14 -0
- include/dart/utils/C3D.hpp +107 -0
- include/dart/utils/CompositeResourceRetriever.hpp +97 -0
- include/dart/utils/DartResourceRetriever.hpp +104 -0
- include/dart/utils/FileInfoC3D.hpp +91 -0
- include/dart/utils/FileInfoDof.hpp +109 -0
- include/dart/utils/FileInfoWorld.hpp +75 -0
- include/dart/utils/PackageResourceRetriever.hpp +118 -0
- include/dart/utils/SkelParser.hpp +70 -0
- include/dart/utils/VskParser.hpp +108 -0
- include/dart/utils/XmlHelpers.hpp +243 -0
- include/dart/utils/all.hpp +14 -0
- include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
- include/dart/utils/mjcf/MjcfParser.hpp +80 -0
- include/dart/utils/mjcf/all.hpp +3 -0
- include/dart/utils/mjcf/mjcf.hpp +14 -0
- include/dart/utils/sdf/SdfParser.hpp +98 -0
- include/dart/utils/sdf/all.hpp +3 -0
- include/dart/utils/sdf/sdf.hpp +14 -0
- include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
- include/dart/utils/urdf/DartLoader.hpp +277 -0
- include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
- include/dart/utils/urdf/URDFTypes.hpp +42 -0
- include/dart/utils/urdf/all.hpp +5 -0
- include/dart/utils/urdf/urdf.hpp +14 -0
- include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
- include/dart/utils/utils.hpp +14 -0
- lib64/libdart-collision-bullet.a +0 -0
- lib64/libdart-collision-ode.a +0 -0
- lib64/libdart-external-odelcpsolver.a +0 -0
- lib64/libdart-gui-osg.a +0 -0
- lib64/libdart-optimizer-ipopt.a +0 -0
- lib64/libdart-optimizer-nlopt.a +0 -0
- lib64/libdart-utils-urdf.a +0 -0
- lib64/libdart-utils.a +0 -0
- lib64/libdart.a +0 -0
- lib64/pkgconfig/dart.pc +12 -0
- share/dart/cmake/DARTConfig.cmake +194 -0
- share/dart/cmake/DARTConfigVersion.cmake +65 -0
- share/dart/cmake/DARTFindBullet.cmake +96 -0
- share/dart/cmake/DARTFindEigen3.cmake +9 -0
- share/dart/cmake/DARTFindIPOPT.cmake +20 -0
- share/dart/cmake/DARTFindNLOPT.cmake +17 -0
- share/dart/cmake/DARTFindODE.cmake +23 -0
- share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
- share/dart/cmake/DARTFindassimp.cmake +18 -0
- share/dart/cmake/DARTFindfcl.cmake +23 -0
- share/dart/cmake/DARTFindfmt.cmake +9 -0
- share/dart/cmake/DARTFindimgui.cmake +21 -0
- share/dart/cmake/DARTFindoctomap.cmake +17 -0
- share/dart/cmake/DARTFindspdlog.cmake +9 -0
- share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
- share/dart/cmake/DARTFindurdfdom.cmake +29 -0
- share/dart/cmake/FindIPOPT.cmake +54 -0
- share/dart/cmake/FindNLOPT.cmake +54 -0
- share/dart/cmake/FindODE.cmake +54 -0
- share/dart/cmake/Findassimp.cmake +56 -0
- share/dart/cmake/Findfcl.cmake +67 -0
- share/dart/cmake/Findimgui.cmake +70 -0
- share/dart/cmake/Findtinyxml2.cmake +54 -0
- share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
- share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
- share/dart/cmake/dart_dartComponent.cmake +19 -0
- share/dart/cmake/dart_dartTargets-release.cmake +19 -0
- share/dart/cmake/dart_dartTargets.cmake +125 -0
- share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
- share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
- share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
- share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
- share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
- share/dart/cmake/dart_utilsComponent.cmake +19 -0
- share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
- share/dart/cmake/dart_utilsTargets.cmake +122 -0
- share/dart/package.xml +42 -0
- share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
- share/doc/dart/data/c3d/squat.c3d +0 -0
- share/doc/dart/data/dof/RHand.dof +205 -0
- share/doc/dart/data/dof/fixedHand.dof +205 -0
- share/doc/dart/data/dof/init_Tpose.dof +240 -0
- share/doc/dart/data/dof/same.dof +1003 -0
- share/doc/dart/data/dof/simMotion.dof +1817 -0
- share/doc/dart/data/dof/simMotion1.dof +1355 -0
- share/doc/dart/data/etc/fort.4 +43 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
- share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
- share/doc/dart/data/mjcf/openai/ant.xml +81 -0
- share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
- share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
- share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
- share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
- share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
- share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
- share/doc/dart/data/mjcf/openai/point.xml +31 -0
- share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
- share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
- share/doc/dart/data/mjcf/openai/striker.xml +101 -0
- share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
- share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
- share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
- share/doc/dart/data/mjcf/test/default.xml +17 -0
- share/doc/dart/data/mjcf/test/include_default.xml +8 -0
- share/doc/dart/data/mjcf/test/include_main.xml +12 -0
- share/doc/dart/data/obj/Body_Hip.obj +22830 -0
- share/doc/dart/data/obj/BoxSmall.obj +23 -0
- share/doc/dart/data/obj/foot.obj +10970 -0
- share/doc/dart/data/other/torus1.path +11991 -0
- share/doc/dart/data/other/torus1.tris +5329 -0
- share/doc/dart/data/other/torus2.path +11991 -0
- share/doc/dart/data/other/torus2.tris +12961 -0
- share/doc/dart/data/screencap/.KEEP +0 -0
- share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
- share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
- share/doc/dart/data/sdf/atlas/head.dae +8607 -0
- share/doc/dart/data/sdf/atlas/head.stl +0 -0
- share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
- share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
- share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
- share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
- share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
- share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
- share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
- share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
- share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
- share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
- share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
- share/doc/dart/data/sdf/benchmark.world +2510 -0
- share/doc/dart/data/sdf/double_pendulum.world +168 -0
- share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
- share/doc/dart/data/sdf/empty.world +13 -0
- share/doc/dart/data/sdf/ground.world +48 -0
- share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/quad.sdf +867 -0
- share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
- share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
- share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
- share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
- share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
- share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
- share/doc/dart/data/skel/biped.skel +850 -0
- share/doc/dart/data/skel/bullet_collision.skel +174 -0
- share/doc/dart/data/skel/chain.skel +212 -0
- share/doc/dart/data/skel/cube.skel +71 -0
- share/doc/dart/data/skel/cubes.skel +137 -0
- share/doc/dart/data/skel/empty.skel +10 -0
- share/doc/dart/data/skel/freeChain.skel +212 -0
- share/doc/dart/data/skel/fullbody1.skel +1177 -0
- share/doc/dart/data/skel/ground.skel +31 -0
- share/doc/dart/data/skel/joint_limit.skel +123 -0
- share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
- share/doc/dart/data/skel/kima/head.dae +34634 -0
- share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
- share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
- share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
- share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
- share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
- share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
- share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
- share/doc/dart/data/skel/kima/thorax.dae +47337 -0
- share/doc/dart/data/skel/mesh_collision.skel +137 -0
- share/doc/dart/data/skel/shapes.skel +378 -0
- share/doc/dart/data/skel/skateboard.skel +222 -0
- share/doc/dart/data/skel/softBodies.skel +284 -0
- share/doc/dart/data/skel/soft_cubes.skel +134 -0
- share/doc/dart/data/skel/soft_open_chain.skel +241 -0
- share/doc/dart/data/skel/sphere.skel +74 -0
- share/doc/dart/data/skel/spheres.skel +118 -0
- share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
- share/doc/dart/data/skel/test/ball_joints.skel +49 -0
- share/doc/dart/data/skel/test/box_stacking.skel +346 -0
- share/doc/dart/data/skel/test/boxes.skel +52 -0
- share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
- share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
- share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
- share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
- share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
- share/doc/dart/data/skel/test/drop.skel +116 -0
- share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
- share/doc/dart/data/skel/test/empty.skel +10 -0
- share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
- share/doc/dart/data/skel/test/free_joints.skel +49 -0
- share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
- share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
- share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
- share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
- share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
- share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
- share/doc/dart/data/skel/test/planar_joint.skel +167 -0
- share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
- share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
- share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
- share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
- share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
- share/doc/dart/data/skel/test/spheres.skel +118 -0
- share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
- share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
- share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
- share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
- share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
- share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
- share/doc/dart/data/skel/test/test_shapes.skel +324 -0
- share/doc/dart/data/skel/test/test_single_body.skel +55 -0
- share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/translational_joints.skel +49 -0
- share/doc/dart/data/skel/test/tree_structure.skel +428 -0
- share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
- share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
- share/doc/dart/data/skel/two_cubes.skel +118 -0
- share/doc/dart/data/skel/vehicle.skel +322 -0
- share/doc/dart/data/test/hello_world.txt +1 -0
- share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
- share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
- share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
- share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
- share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/package.xml +11 -0
- share/doc/dart/data/urdf/test/invalid.urdf +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/issue838.urdf +86 -0
- share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
- share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
- share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
- share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
- share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/wam.urdf +230 -0
- share/doc/dart/data/vsk/Nick01.vsk +398 -0
- share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
- share/doc/dart/data/vsk/Yuting.vsk +398 -0
- share/doc/dart/data/vsk/test/empty.vsk +3 -0
- share/doc/dart/examples/CMakeLists.txt +44 -0
- share/doc/dart/examples/README.md +33 -0
- share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
- share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
- share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_puppet/README.md +20 -0
- share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
- share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
- share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
- share/doc/dart/examples/atlas_simbicon/README.md +20 -0
- share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
- share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
- share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
- share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
- share/doc/dart/examples/biped_stand/README.md +20 -0
- share/doc/dart/examples/biped_stand/main.cpp +287 -0
- share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
- share/doc/dart/examples/box_stacking/README.md +20 -0
- share/doc/dart/examples/box_stacking/main.cpp +417 -0
- share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
- share/doc/dart/examples/boxes/README.md +20 -0
- share/doc/dart/examples/boxes/main.cpp +157 -0
- share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
- share/doc/dart/examples/drag_and_drop/README.md +20 -0
- share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
- share/doc/dart/examples/empty/CMakeLists.txt +19 -0
- share/doc/dart/examples/empty/README.md +20 -0
- share/doc/dart/examples/empty/main.cpp +164 -0
- share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
- share/doc/dart/examples/fetch/README.md +20 -0
- share/doc/dart/examples/fetch/main.cpp +246 -0
- share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
- share/doc/dart/examples/hardcoded_design/README.md +27 -0
- share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
- share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
- share/doc/dart/examples/heightmap/README.md +20 -0
- share/doc/dart/examples/heightmap/main.cpp +460 -0
- share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
- share/doc/dart/examples/hello_world/README.md +20 -0
- share/doc/dart/examples/hello_world/main.cpp +114 -0
- share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/hubo_puppet/README.md +20 -0
- share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
- share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
- share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
- share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
- share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
- share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
- share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
- share/doc/dart/examples/imgui/README.md +20 -0
- share/doc/dart/examples/imgui/main.cpp +289 -0
- share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
- share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
- share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
- share/doc/dart/examples/joint_constraints/README.md +22 -0
- share/doc/dart/examples/joint_constraints/main.cpp +242 -0
- share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/mixed_chain/README.md +35 -0
- share/doc/dart/examples/mixed_chain/main.cpp +188 -0
- share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
- share/doc/dart/examples/operational_space_control/README.md +20 -0
- share/doc/dart/examples/operational_space_control/main.cpp +338 -0
- share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
- share/doc/dart/examples/point_cloud/README.md +20 -0
- share/doc/dart/examples/point_cloud/main.cpp +740 -0
- share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/README.md +19 -0
- share/doc/dart/examples/rigid_chain/main.cpp +110 -0
- share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_cubes/README.md +91 -0
- share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
- share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_loop/README.md +34 -0
- share/doc/dart/examples/rigid_loop/main.cpp +127 -0
- share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_shapes/README.md +19 -0
- share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
- share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
- share/doc/dart/examples/simple_frames/README.md +27 -0
- share/doc/dart/examples/simple_frames/main.cpp +124 -0
- share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
- share/doc/dart/examples/simulation_event_handler/README.md +189 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
- share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
- share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
- share/doc/dart/examples/soft_bodies/README.md +20 -0
- share/doc/dart/examples/soft_bodies/main.cpp +219 -0
- share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
- share/doc/dart/examples/speed_test/README.md +20 -0
- share/doc/dart/examples/speed_test/main.cpp +250 -0
- share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
- share/doc/dart/examples/tinkertoy/README.md +20 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
- share/doc/dart/examples/tinkertoy/main.cpp +186 -0
- share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
- share/doc/dart/examples/vehicle/README.md +22 -0
- share/doc/dart/examples/vehicle/main.cpp +195 -0
- share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
- share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
- share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
- share/doc/dart/examples/wam_ikfast/README.md +20 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
- share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
- share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
- share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
- share/doc/dart/tutorials/CMakeLists.txt +12 -0
- share/doc/dart/tutorials/README.md +45 -0
- share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped/README +18 -0
- share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
- share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
- share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
- share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
frames = 237 dofs = 66
|
|
2
|
+
Hips_tFree0 Hips_tFree1 Hips_tFree2 Hips_aFree3 Hips_aFree4 Hips_aFree5 LeftUpLeg_aBall0 LeftUpLeg_aBall1 LeftUpLeg_aBall2 LeftLeg_aHinge0 LeftFoot_aBall0 LeftFoot_aBall1 LeftFoot_aBall2 LeftToe_aHinge0 RightUpLeg_aBall0 RightUpLeg_aBall1 RightUpLeg_aBall2 RightLeg_aHinge0 RightFoot_aBall0 RightFoot_aBall1 RightFoot_aBall2 RightToe_aHinge0 Spine_aBall0 Spine_aBall1 Spine_aBall2 Spine1_aBall0 Spine1_aBall1 Spine1_aBall2 Neck_aBall0 Neck_aBall1 Neck_aBall2 Head_aBall0 Head_aBall1 Head_aBall2 LeftShoulder_aBall0 LeftShoulder_aBall1 LeftShoulder_aBall2 LeftArm_aBall0 LeftArm_aBall1 LeftArm_aBall2 LeftForeArm_aHinge0 LeftHand_aBall0 LeftHand_aBall1 LeftHand_aBall2 LeftHandThumb_aBall0 LeftHandThumb_aBall1 LeftHandThumb_aBall2 L_Wrist_End_aBall0 L_Wrist_End_aBall1 L_Wrist_End_aBall2 RightShoulder_aBall0 RightShoulder_aBall1 RightShoulder_aBall2 RightArm_aBall0 RightArm_aBall1 RightArm_aBall2 RightForeArm_aHinge0 RightHand_aBall0 RightHand_aBall1 RightHand_aBall2 RightHandThumb_aBall0 RightHandThumb_aBall1 RightHandThumb_aBall2 R_Wrist_End_aBall0 R_Wrist_End_aBall1 R_Wrist_End_aBall2
|
|
3
|
+
-0.078093662485480316859 -0.010694205667823553432 -0.086261439137160778046 -0.039528849720954897795 0.066255811974406247922 0.027710672188550236616 -0.067140566371381285582 -0.020114832371473313072 -0.028350469470024109581 -0.029574354831129315291 0.18193706113973259764 -0.066179770603775986415 -0.019764398317784072356 0.034614368155598644605 0.07218597354367375929 -0.087698261998593818323 -0.051839243527501827069 0.03218072429299354692 0.3148218412710130365 -0.087750479206442841273 0.068505414295941591263 0.033298086188733581892 -0.0095000887289643301536 -0.054639159422367813979 0.028555745910853150282 -0.031047750078141689994 0.01011952562257647549 -0.095954032801091673766 -0.039740078523755079098 0.002935263141989708207 -0.056460868753492834959 0.0039778634905815127981 0.07355725402012468217 -0.033984136115759615293 -0.058175156638026241651 -0.032759995572268961472 -1.6008279806368053144 -0.017119678296148778396 0.08585007907822728157 -0.049469177797436716948 0.047348196152597665787 -0.0035597378388047221792 0.031627249624580147658 0.033144760318100451035 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 0.016665763966739178398 -0.073545691836625334825 1.5398927987918258342 0.035081147123128174348 -0.030219806265085937674 -0.098254315461963420697 0.099929869640618562698 0.07445227447897195816 0.029358866438269615867 0.024909566994756462271 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
4
|
+
0.0037511859834978129001 0.91097454038497360784 -0.014777344160950407065 0.24569441298882335745 0.12945451488197354251 -0.012338736230101744404 -0.27560375590213864738 0.075926077324040053274 0.11912141269242983166 0.19374442653728632391 0.17015432794819501661 -0.21270636569279793848 -0.14300447948249311869 -0.30469964646482672332 -0.18702630232833425405 -0.14090437622190662981 -0.04005514432801109137 0.13908181926861759581 0.2519564808657993038 -0.090492485260431548832 -2.6543064658921253773 -0.1869711578572584576 -0.43352252161978710454 -0.054538700865848693811 0.13374623846012329009 0.3749512789515668798 0.033257853441356940993 -0.27856744454801168898 -0.10023728042356493118 -0.052449811804082847877 -0.023648442989147203802 -0.28046543697131909312 0.061852325710130363901 0.29088101564704227364 -0.29083934476172418337 -0.16891752866101519825 -0.87816426956726600928 0.13522582920260819983 -0.011945516113051465532 -0.59437154433093775108 0.46260021126370298727 -0.73161995455908857 -0.010850339267493850498 0.19517764217727151532 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23184017499152836939 -0.31901395530715692672 1.1456271186769761972 0.25136313867540133193 0.60248097472043049549 0.62803047739002049177 0.23173373347010953194 -0.68088180753245097776 0.22330815013882970854 -0.12817036036968776358 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
5
|
+
0.0037724990032581497308 0.91097464267390937387 -0.014744651696977856617 0.24531024416966024093 0.12948305512740834744 -0.012485067905751160572 -0.27503090235986721312 0.0760146049730631157 0.11931189810035640331 0.19336849112705944975 0.17030748369110501605 -0.21284736398195158724 -0.14338318505705069383 -0.30510017503596909005 -0.18659183662971634554 -0.1409462500607580604 -0.039931806036663346215 0.13905417636215611221 0.25192985837750636602 -0.090458205234081504043 -2.653877090476623124 -0.18623729377223297021 -0.43250234138958110197 -0.054220551700260452566 0.13473705296057311709 0.37395466146255346152 0.032898442537086833304 -0.27986861001194029974 -0.099815584539489424221 -0.052364244353601541171 -0.023057816910857537041 -0.28090841920885112337 0.062048804361408332886 0.29039511913755239325 -0.29076011809583551804 -0.1692064994635697206 -0.87766487157506400951 0.13440078188655033009 -0.012081985965741096414 -0.59446993538221115649 0.46305590819099518018 -0.7312709743346642588 -0.010130766694994908228 0.1950872082806994201 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23152014624431477285 -0.31933655751643341691 1.1458942596681502835 0.25114710731768769003 0.60395941498544269965 0.62847757019521277577 0.23145803169202583405 -0.68220848663355759811 0.22192071317419562182 -0.12662313283566614674 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
6
|
+
0.0037533701541538184131 0.91097795390956359807 -0.014715857293825393426 0.24515785990852134724 0.12960079936137106071 -0.012608875443109368933 -0.27486608881314583686 0.076264965987812682879 0.11947626774397054894 0.19319748339830888906 0.17058293787363476568 -0.21332762095155849424 -0.14337141201509390198 -0.30565970297989425442 -0.18637708965500002223 -0.14131344861170652694 -0.039737925432283584259 0.13895977696107025823 0.25198774491988024105 -0.090181868807156534418 -2.6505033544698606285 -0.18581931922256283984 -0.43201373942951115659 -0.053936388356735871785 0.13529584153310067474 0.37344649153959086352 0.032790941856922523057 -0.2806924339668733781 -0.099661318205991694663 -0.052409886556593010543 -0.02268946897737247545 -0.28096617113965222101 0.061989206748632778854 0.29043038037963436748 -0.29059665234572401582 -0.16964520508564487344 -0.87727550769012763165 0.13370067957232242839 -0.012690236410514576029 -0.59464140836166035076 0.463370019121155996 -0.73117563005300656442 -0.010555961842354390223 0.19513008787215549433 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23160839284792503201 -0.31936189672084092095 1.1460615486240566252 0.25047586776531932662 0.60495405572847316122 0.62892672459313603284 0.23143421656458598723 -0.68399641003321887123 0.220532126362977976 -0.12354554484562046968 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
7
|
+
0.0037285300026543254093 0.9109391930600927445 -0.014719164729253839466 0.24530831631333080423 0.12964044522663081827 -0.012634598545023847591 -0.27509998057904749835 0.076041858359425534841 0.11954705930209265363 0.19333892007400776958 0.17039056291765661277 -0.21320305569272024471 -0.14358853768779439308 -0.30489832494260310503 -0.18654206150304991629 -0.1412867760519989635 -0.039722604230385878676 0.1390177704492903954 0.25203337992454838412 -0.090401480438320538924 -2.6505382133880592832 -0.18648573195932646729 -0.43217862746818136443 -0.053920527305468875234 0.13516765433813460184 0.37354399141778821258 0.032893079343976831808 -0.28052285299058715706 -0.099691994913378004228 -0.052507054902980881961 -0.022620385369688966737 -0.28105711361673735293 0.061940275487455946635 0.29015188578601758262 -0.2905193828660033728 -0.16988419443379096374 -0.87735843331131035949 0.13307863897521834962 -0.013347692316764598469 -0.59453297394216164662 0.46361194313788667287 -0.73111590543228355266 -0.012236188812559851274 0.19485079986610204239 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23171773898553299498 -0.31953163530252426394 1.1459544647811410467 0.25006335907939342134 0.60611199895909861901 0.62905449630422805019 0.23126030247776652171 -0.68502618621543309718 0.21965187802147240204 -0.12041079979131807942 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
8
|
+
0.0036818370068559297566 0.91085080460513567768 -0.014733140450291230122 0.24565637602154405394 0.12970814619850748461 -0.01263954112286220198 -0.27566261971285882515 0.075809749077009130902 0.11956946629313267016 0.19383861337642685485 0.16998419340758028073 -0.21302554680744964499 -0.14345541337436787388 -0.30521583910171129483 -0.18697108892117969559 -0.14118171060928388916 -0.039740428355951352979 0.13927271525747161873 0.25170264908858464015 -0.090604698374267794714 -2.6536836847991978061 -0.18704219171934460819 -0.43370990348621446531 -0.054621398051612472802 0.13320637654845010611 0.37532091608873768829 0.033500307088184556881 -0.27779781277920706506 -0.10019481449298302256 -0.052634938030840038026 -0.023221963440668999534 -0.2808030638500223497 0.061807938865047901134 0.29008422000389205708 -0.29085794663182884534 -0.1700000365240153799 -0.87806806346489252313 0.132605566165885147 -0.014212859211141633253 -0.59455678489747687543 0.46392866932612009112 -0.73152674933600858598 -0.014253103396937576164 0.19449802342279956524 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23194547428907227871 -0.31950264125307575869 1.1452902162791533947 0.24959312821481299816 0.60779825459613634475 0.62899133258253658862 0.23093442053369578337 -0.68570929305857952762 0.21926574803287535165 -0.1181201325863221463 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
9
|
+
0.003667135776535105935 0.91079177374147246571 -0.014749664017455331455 0.2459548139103537312 0.12977974153188065465 -0.012700605483862549214 -0.27598912028004607411 0.075592900897931525339 0.11962527202151469752 0.19377331662635383092 0.17008082034454016784 -0.21285330318576761721 -0.14357355636335752957 -0.30546495726220906919 -0.18736565803495647264 -0.14127420041659768946 -0.039642263992406501227 0.13940011548205363812 0.25204083352510930904 -0.090257787294520525068 -2.6516502204338889825 -0.18678586806618524552 -0.43249027445193977126 -0.054430155840525788757 0.13482336457910565342 0.37293041687069927725 0.032465839086620255916 -0.28016059381260749461 -0.099599170724752897343 -0.052250233094844597548 -0.02292325667812751197 -0.28037589456579770086 0.062022198375590607833 0.29081701563301604052 -0.29043451950056764499 -0.16870642757534942691 -0.87789838698802746819 0.13257007593144848334 -0.014724602115154415347 -0.59358847789762403391 0.46383554358748102509 -0.73168257280117554586 -0.016365005895281874854 0.19370023260847299418 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23062814840817380535 -0.31983676060089527571 1.1455658472406466952 0.24985908819457311458 0.6090014499650102664 0.62965607144437552023 0.23069484824279426483 -0.68607399046431682965 0.21990295620418945366 -0.11760917293182870935 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
10
|
+
0.0036710475817501426153 0.91071887771195791927 -0.01473162815363144619 0.24610743400308507378 0.12990914682376095146 -0.012746152631609393435 -0.2761104270358148427 0.075584907891618327569 0.11969457201017218162 0.1935778028732029199 0.17031306191893461066 -0.21320745295483720105 -0.14448348614966555203 -0.30577703547181478427 -0.18748681191193156126 -0.1414283473384295442 -0.03958558821379982301 0.13939635925801024952 0.25209846128243679209 -0.090423303510259164795 -2.6526228263070223967 -0.18786546210588092598 -0.43243466413045061891 -0.054499771402738581005 0.13426981894026568387 0.37263877815327983711 0.032638623442179569289 -0.27930050982243725954 -0.099754496840249257117 -0.052364913386224246072 -0.023272642510493636581 -0.27968133865386857195 0.061777416188281364384 0.29111687092824700684 -0.29023458202317581334 -0.16852344980198033508 -0.8783296645197025132 0.13293197930823263953 -0.015207245067823556978 -0.59335551286457843823 0.46360397236508488206 -0.73203601046837674104 -0.017603462368529592535 0.19391485131812985498 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2308098795932238545 -0.31963767644942592261 1.1451489527966527415 0.24902645300750586577 0.60930232331998246398 0.62977233686963918213 0.23081867033274514056 -0.68566240988898452535 0.22048623957123217321 -0.11815371577281071069 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
11
|
+
0.0037148716314102880019 0.9107511776857580843 -0.014576771677383658365 0.24558638661833603889 0.12980991290766169532 -0.012639142839062365506 -0.27513127311651719431 0.076156263785108091469 0.11954110747759068289 0.19274967052274205592 0.1708648203086276518 -0.21414033148678371377 -0.14232971401522234722 -0.30750818985624783775 -0.18616354921327160632 -0.13974366100953766745 -0.039573670860092197143 0.13795916377867872837 0.25490904613560511072 -0.090478467426234693294 -2.6473155710799813889 -0.18692909912324140453 -0.43256836063051573582 -0.053805940526478052144 0.13460359260482876453 0.37340034028748203543 0.033214528864579921652 -0.28011499873903789037 -0.098364703370058675924 -0.053262529630431917904 -0.02137375306309778622 -0.28265648243888569224 0.061540660378913938922 0.28890750466272036023 -0.29020843775725535529 -0.16858383416811925648 -0.87799607704417992338 0.13474745314220978876 -0.013811902988174586462 -0.59326521591897962704 0.46368517126410829787 -0.7316318320191645963 -0.020921262714327027582 0.19662730003470746398 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23153527746074920035 -0.32026607203343943064 1.1458898847880094607 0.24868652362235446618 0.60946505178560783644 0.62922343869868646582 0.23066642451964647353 -0.68383980713993020029 0.21927463801292476631 -0.12023875784364110308 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
12
|
+
0.0037017848352722758885 0.91078975112521487478 -0.014520124902417122503 0.24534715252555369669 0.12988416610263087136 -0.012817705057874891061 -0.27470631945222517833 0.076763463494419995059 0.11970486703611375734 0.19229790953287193012 0.17098694227236679866 -0.21469107145763083322 -0.14257699908371143649 -0.30426263077082127406 -0.18564931452864488759 -0.13953069899867467929 -0.03933906644682735182 0.13747964195026815548 0.25544345283628105969 -0.090155392848815310569 -2.6463205133646812151 -0.18922383004917911475 -0.43213431444865074704 -0.05351006108502659453 0.13527741876789256548 0.37291029136184045134 0.033081468797175064833 -0.28108174952113490486 -0.097969592773338165514 -0.053393768399528106217 -0.0209592680337581036 -0.28279367566725677197 0.061392743205056915512 0.28903696511857807083 -0.29009001694166347551 -0.16911138841303868796 -0.87744109049874985384 0.13452715929843003795 -0.013318296277822791115 -0.59337675564572978093 0.46372766359363148947 -0.73113161731340381433 -0.019791443106334134783 0.19718325481869519722 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23141709538446869621 -0.32030542514825038891 1.1462328927532081657 0.24853076208107000022 0.60936773450408865394 0.62939104317865435245 0.23051124657422336628 -0.68279338069166950476 0.21985299012017542331 -0.1234331411631577613 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
13
|
+
0.0036917400328417534008 0.91084141650480898722 -0.014488770329605596063 0.24510270682411786081 0.12994200339569600411 -0.012680787824751861212 -0.27451626217875002567 0.076701262432733841035 0.11955078492009314772 0.19244579572534292744 0.17125007559543103941 -0.21479652084688152791 -0.14238601523744850996 -0.30260216258188071814 -0.18516051342798231505 -0.13956953408693556495 -0.039440354977309771689 0.1370250985092932583 0.25578237408698828448 -0.090303043323451501201 -2.6455088862824878149 -0.19006277566987189731 -0.43242397061695064808 -0.053694445198081676429 0.13476370479998484031 0.37358051560168858973 0.033206945689835884461 -0.28065181369394759381 -0.098034149050856764229 -0.05342223786828585036 -0.020991222312354625157 -0.28292957596278328625 0.061380821181171114909 0.28906231439195129163 -0.29032556121738867239 -0.16875881880323762019 -0.87744947712219423241 0.13527427453203591523 -0.013310202323762511736 -0.59332068479454924681 0.46349354840479628503 -0.73142780827956632717 -0.017808747877359192013 0.19689285864712305352 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23136796787447411194 -0.32025577005984873225 1.1460935148046802468 0.248351933255006041 0.60903652706923705473 0.62944225537203157828 0.23085624911077137766 -0.68169129820036344913 0.22006753394938574631 -0.12567482345992397885 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
14
|
+
0.0036497916408186272148 0.91088751860243177827 -0.014487341990941661127 0.24512920250122002819 0.12985751202226800127 -0.012701134104572334507 -0.27448239889832387606 0.076726464632069044103 0.11962187122365190717 0.19232851130929262684 0.17109640825984206991 -0.21474429970541902835 -0.14059920727282509967 -0.30531882571360269285 -0.18514962309807761476 -0.1394173211821706504 -0.039355261662935001055 0.13688694467487400042 0.25608843710519657577 -0.090071012260752009171 -2.6437694358075058965 -0.18626121740236431523 -0.43216886594777698116 -0.053412122428697750287 0.13551065636447648388 0.3732397540453908924 0.033049505049966093617 -0.28174836243482148657 -0.098190174776033770088 -0.053460859560398130141 -0.021034843687782602689 -0.28241495365242347271 0.061151230573375028876 0.28986297968239504996 -0.29035013632311201803 -0.16878340656006371456 -0.87719288637348746818 0.13525991466665263085 -0.012823822587882179047 -0.59311419974102208563 0.46385313762100910395 -0.7312341059991451786 -0.015812896826741203171 0.19789732273968271836 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23156748335326049482 -0.32012468999239052092 1.1461012638229828298 0.24862026453534366577 0.60744491414845458443 0.62967768020299885734 0.23095744193539072264 -0.6810308025048992242 0.22101875807944429408 -0.12731050611450442367 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
15
|
+
0.0036393624173912944228 0.91090607234796794334 -0.014485340624864596892 0.24509622499605507318 0.12976897088570535366 -0.012565761693776709637 -0.27433639509318558103 0.076749062460595554591 0.11946369230241660198 0.19228612736289846241 0.17125387758474794331 -0.21438663512497077579 -0.1413085365220715095 -0.30590028052304130135 -0.18516055947940993076 -0.13917534579571025355 -0.039501203754778391186 0.13706729581543694585 0.25621943809257929914 -0.090619494671853151324 -2.6433525326724427451 -0.18736126277172238108 -0.43198065829517617864 -0.053557312678975628473 0.13494883828157569483 0.37302842558546178697 0.033101115640552472574 -0.28114189318153365305 -0.097952658039764245457 -0.053548026121856349968 -0.021135509136694274196 -0.28286947852538979475 0.061146776457201817978 0.28979321302974192509 -0.29038338760268478378 -0.16812902279438124431 -0.87744942650659796257 0.13551388905389413764 -0.012720360121133447023 -0.59283665232379589849 0.46435234643656669862 -0.7303596655601609644 -0.01470668048221184486 0.19735805004199064028 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2313377472201350038 -0.3203836195381151164 1.1459275613993640253 0.2491228959894125905 0.60649342003529338463 0.62934529654260196185 0.23098554071303256663 -0.6805915509335825897 0.22169383208041859579 -0.12638706215834763502 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
16
|
+
0.0036352514245233547713 0.91094189404342362781 -0.014469348528193717862 0.24504101739989192499 0.12974832760246929331 -0.012455139688420466954 -0.27417111760106965823 0.076696392615926672898 0.1194102171416108471 0.19225999027997928148 0.17130190292272928776 -0.21457026168973267199 -0.14192727566794063887 -0.30751693529082246847 -0.18504137974637810404 -0.13912926431313163422 -0.039653774800732413675 0.13710005204449490779 0.25594163991869917085 -0.090309094462555111749 -2.6449517491203549113 -0.18655688275341805737 -0.43339550384340536082 -0.054035253473772047739 0.13421288922399185473 0.37498818794970384394 0.033330935099588003545 -0.28024379242627450726 -0.0983690656049120149 -0.053489221658566413198 -0.021514612023344210912 -0.28278306348726051089 0.061205939122387122142 0.28980694596369449556 -0.290901371895979588 -0.16768330336088599353 -0.87770098256927453484 0.13585398623630068338 -0.012943867930807408106 -0.59274166840506881115 0.46445910375229904066 -0.73032033053235279052 -0.014191090203453462365 0.19750935390664922653 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23163638465609909245 -0.3197512709523041563 1.1455104981996475644 0.24921734876153978089 0.60555770926373608809 0.62925581653581930119 0.23103334257578783673 -0.68098643792504376382 0.22200401559739527113 -0.12461125803452124949 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
17
|
+
0.0036326636820536556925 0.91098520840990637737 -0.014473659215926734656 0.24486985256375862208 0.12975071491093656539 -0.012461849785443556218 -0.27400603754866553752 0.076918059629413809697 0.11942537392210030023 0.19224382984203808311 0.17125240105909006472 -0.2148622630310619841 -0.14095148656822556466 -0.30680011373534499253 -0.18486152483715773132 -0.13969695969442899597 -0.039570381050650790811 0.1369717964321627568 0.25532338192118658737 -0.090331786883440734481 -2.6422282683049633789 -0.18600742014478477415 -0.43207468830320244768 -0.053540280049543760577 0.13484257551438963429 0.37350492419302538938 0.033171195933329677974 -0.28139942472506734861 -0.098184785143762456916 -0.053585745309887765353 -0.021137903618144746748 -0.28264055214330735533 0.061042914930612687807 0.28999930501049620002 -0.29051788832623109959 -0.16807241960229554745 -0.87709388341413618839 0.13486167030488960261 -0.013138120022258137701 -0.59299810241378059228 0.46559085976900099757 -0.73061094733599452056 -0.013902962343449863647 0.19749787697022261335 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23159708623274496975 -0.32029622839477761564 1.1461673454043701526 0.24958957631813102895 0.60490102159289049766 0.62885865205446778159 0.23083984978114813202 -0.68105103987901260965 0.2216821028694697937 -0.12154710195798015815 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
18
|
+
0.0036387859224777468169 0.91104594124991444826 -0.014454483345163693375 0.24470623325764845335 0.12981760551129523096 -0.012391090253937413201 -0.2737937948116126452 0.076882418169840260891 0.11937678510678606525 0.19220238952620560813 0.1710821056500609616 -0.21482048586778190735 -0.14099178936383138794 -0.30475707970621768172 -0.18462190232159172987 -0.14020869248508210925 -0.039629907599590750988 0.13676911361038987525 0.25491334709931384728 -0.089958113756708313336 -2.6441496722416255594 -0.18595850678283235013 -0.43142353627000323835 -0.053256638196535519003 0.13566448425139715495 0.37274591855286992592 0.032841118742651095874 -0.28288005165031837596 -0.098092351630052060374 -0.053355282800092634909 -0.020760677730195815222 -0.28261694032543821509 0.061223595318319848357 0.29021760459393636244 -0.29050159455380819562 -0.1689896323471906936 -0.87633613042806490778 0.13361826000937673808 -0.012696506840941810743 -0.59308709275377446968 0.46599969551473069407 -0.73019525073023205941 -0.015110784173044488829 0.19666964413788989852 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23121090348517975288 -0.32097757940350502004 1.1468704472092015045 0.24997539709611549252 0.60538853238990719685 0.62851170212786022784 0.23093692847674954227 -0.68141636736616695291 0.22129882401451786422 -0.11749634975992637176 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
19
|
+
0.0036311162228901895828 0.91108328372008684504 -0.014445585609602731511 0.24465652205038151967 0.12985846099078385274 -0.012482086893236992928 -0.27370846298532036656 0.076811527730549764015 0.11945606855299803484 0.19223927733117429639 0.17083073331146664264 -0.21460233015383767263 -0.14085581720830164798 -0.30581956876332450079 -0.18455229156260413714 -0.14010551248690700232 -0.039613751626489834834 0.1367586476795387973 0.25469516901140037968 -0.089825325658392088379 -2.6443407969306984562 -0.1861892695248650309 -0.43066868259557622434 -0.053106372837768818507 0.1360933500729977208 0.37175281813467575542 0.032578291535102894827 -0.28356082904252255528 -0.09778484437457064804 -0.053429013634226425744 -0.020459081897954176782 -0.2829499445587086992 0.061203290413284712479 0.29009717113417438084 -0.29056456522117862784 -0.16845304734874458341 -0.87633386024525627978 0.13428249401999303725 -0.013251104928911966105 -0.59270777444675271095 0.46572314136780368354 -0.73068178885065504513 -0.01743518639600121628 0.19607562913795270609 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23088560967862115092 -0.32132632275042721792 1.147247125833938286 0.25003253943043107776 0.60572223823344106819 0.62844434138895166608 0.23112821396609653513 -0.68164380107471589376 0.2210752018720311407 -0.11473866803732998831 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
20
|
+
0.0035944619134048189785 0.91103798028910187856 -0.01446211916433188388 0.24506405369150729978 0.12991643598684740613 -0.012477033931709076431 -0.2743942594934306034 0.076433502271584963239 0.11951942818646707489 0.19283467315680036247 0.17036536956919717811 -0.21439489148488682924 -0.14221831444723811999 -0.30511580493982043416 -0.18492063680640571932 -0.14046711758342936283 -0.039524778196505898353 0.13672118656286111338 0.25439830815688563304 -0.090006611648091164324 -2.6441550614056414936 -0.18620896819597121397 -0.43195256828226191725 -0.053861521759536831744 0.13441981742208616857 0.37310778650037634829 0.032923312309528787734 -0.2812049574440818045 -0.098388420568999893079 -0.05344092715004104821 -0.021139448186973441857 -0.28276908853379184583 0.061229692370708785343 0.2898379145661139078 -0.29106421596763698556 -0.16865678839364031671 -0.87712309395593768269 0.13364198611870006794 -0.01340329441381687102 -0.59249970335155532908 0.46592884678971052681 -0.7308465940353731094 -0.018761628589360861141 0.19635967589487132723 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23135309181264862577 -0.32030815910301152494 1.1464754878224596712 0.24932383534399910063 0.60524833568783154014 0.62832772163872718796 0.23155520861009185052 -0.68176051837795847987 0.22108332002199054811 -0.1118840649918616259 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
21
|
+
0.0035532074365186190612 0.91097620874085594167 -0.014463297024038434396 0.24548775346006587728 0.12989761678481687168 -0.012467719551737782568 -0.27475209001329575775 0.076175273245206662209 0.11953603590111401556 0.19271123145075536032 0.17018243419867407074 -0.21414420296133482302 -0.14264872094116853862 -0.30417687316880492876 -0.18556124852049579732 -0.1401624112133351141 -0.039595871653243013 0.13725822999338671559 0.2538573310254383375 -0.090428050938418366722 -2.6439999504716062972 -0.19030529719707489633 -0.4325747844647872542 -0.053903251575258832873 0.1341331986121784281 0.3734606653543691146 0.033081546206893894246 -0.28096457918787481889 -0.098580146843765620313 -0.053473337384992734866 -0.021288194286925746918 -0.28247750676577593199 0.061113829842012093452 0.29015457707116026898 -0.2910434195191103357 -0.16815028744675877825 -0.87735199280596165572 0.13447107880435921201 -0.013368797320307901702 -0.59189444467214302747 0.4655650089093524846 -0.73138112829077073229 -0.020600492462530001908 0.19626669729336104764 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23113846971115853401 -0.32121660187011724652 1.1466290180339078209 0.25028784662959829843 0.60590459049276879089 0.62809457186755124347 0.23098856037056850199 -0.68150779329630706282 0.22154774228308543593 -0.11108329463444510665 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
22
|
+
0.0035369706117799656203 0.91086989720020183903 -0.014474928528749236856 0.24605258487606146423 0.12995730031994556786 -0.01243341159128314409 -0.2754636415573504804 0.075788838411525297212 0.11947255671138232169 0.19302162343899029184 0.17022146618952521679 -0.21377252397684934349 -0.14369313628411947703 -0.30592049405626303704 -0.18629736858887596673 -0.14071644941317346111 -0.039529288110587298966 0.13742885055010314876 0.2540925344054698054 -0.090436289105398748323 -2.6464063213194171098 -0.19067305464462167008 -0.43406007439181693019 -0.054574374145615951737 0.132621492490120646 0.37476946881935419009 0.033448035610902766834 -0.27876807379919249508 -0.099374265088886873376 -0.053298221873713427788 -0.02228914099973179283 -0.28135726172816494239 0.061107019263348529015 0.29058513136744662519 -0.29118592474616400434 -0.16851893289641764473 -0.87793111509503241052 0.13373727182888275888 -0.013030286535535824319 -0.59191075066382659031 0.46570179234349406983 -0.73171441198688547125 -0.020475161580685793256 0.19696511612391781609 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23134193750231160647 -0.32052024221939418025 1.1456743838240683875 0.24998242175016027744 0.60557187835351600214 0.62822744756657988852 0.23088028913985436663 -0.68103783102433557151 0.22147777836853865807 -0.10990000404645941523 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
23
|
+
0.0035242457860000927714 0.91081851848614414635 -0.014442019084793401851 0.24604065649260242754 0.12990859250001313141 -0.012497128113503456343 -0.27547569764528856417 0.075480621217156887437 0.11957433432419159458 0.1931250143464583735 0.17032838603262259736 -0.21336297724667413478 -0.14384026442983335881 -0.30549153611856155743 -0.18634777095795448942 -0.1401794914360416644 -0.039476550378283181697 0.13764824809932291183 0.25476898341132742098 -0.090606268189848335193 -2.6483935493125203564 -0.18895362259645676062 -0.43555861903681303282 -0.054975771084537813915 0.13107195400050750123 0.37680495688849430236 0.034215631991382437771 -0.27647581824630812486 -0.099606915049881533664 -0.053562136628998946453 -0.022890957861851475574 -0.28147717784071712988 0.060922360032467010038 0.29032362305167569438 -0.29097352648317492685 -0.16828792527601882378 -0.87853756184028819476 0.1342587511670031708 -0.013176019782014452078 -0.59193566403527753117 0.46535409581995046402 -0.73142832855561201733 -0.019836668708790257398 0.19769600865089290154 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23175092790133647314 -0.32041393479221347285 1.1450742832297562401 0.24975279548723811063 0.60589328999944547238 0.62833311217654441716 0.23059714006753884163 -0.68064217886754840858 0.22016146342498477129 -0.11022302774662438851 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
24
|
+
0.0035407790432443481815 0.91079665286012312375 -0.01441820405075235588 0.24584729317131809312 0.12984707665162947832 -0.012514711746963743874 -0.27523552629027281391 0.075713442516533266402 0.11957121497172285007 0.1929409792661600509 0.1703643408944689186 -0.21337634972566174585 -0.14254489917777710128 -0.30409708485684244783 -0.1861631789258684222 -0.13971282058786219094 -0.039512150405604261338 0.13762255234465126108 0.25541512807152227937 -0.090890468307832095185 -2.6511614968517007718 -0.18923708924986629154 -0.43457279182927804895 -0.054828187036650509467 0.13122158956243087924 0.37569659009870604027 0.034077460295230177501 -0.27666404372906938658 -0.099585002274365924668 -0.053377070838370670181 -0.02334595362834719981 -0.2813140371829999653 0.061006816418907233723 0.29103394532225623781 -0.29115806486098355643 -0.16823210383013739722 -0.87873126438311932596 0.13503663215488831417 -0.012608925865097642821 -0.59155775659353238005 0.46467857054588401766 -0.73099168282401005836 -0.018458358209231709446 0.19838589804891684776 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23121928408238812125 -0.3214707312078114998 1.1453264089897703393 0.25060908348794486145 0.60700853911008134656 0.62854137846562607717 0.2301833624611662743 -0.68039533134227048183 0.21829204534024665429 -0.11140094867135354184 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
25
|
+
0.0035308373545479541412 0.91080612397519988832 -0.014373343584166607678 0.24552576479614565685 0.12980344320942441283 -0.012702800872035307014 -0.27481827035055050867 0.076317267984120806812 0.11974794946114294958 0.19260962665174272135 0.17074079585396104153 -0.21396910062428950439 -0.14230401864413580459 -0.30093385201227190739 -0.1855875182768184084 -0.13966687347377340633 -0.039288730397509935566 0.13728742537254087774 0.25506760327531169397 -0.090672614154298739053 -2.6501024547817464416 -0.19023964277113955545 -0.43390762185879938606 -0.054345050783705689534 0.13234692668933373261 0.3749569875980964806 0.03384682780785458478 -0.27834742714803317742 -0.099102619461908930676 -0.053474835111707703927 -0.022416493213886865693 -0.28154404178329106578 0.060994354658703620053 0.29038254538876351329 -0.29074027270112845489 -0.16878723474070433941 -0.87784699346994787827 0.13423160229852670877 -0.012180743158754078412 -0.59183993906538834295 0.46514957843116500058 -0.73055904158659634717 -0.015982512071833265832 0.19931030987939740706 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23127119496238504603 -0.32055988524000073037 1.1456892106029725742 0.24948914540658626016 0.60613156777730470282 0.62915519014805365572 0.23044099834077874656 -0.67985881383782109655 0.21614632417148910148 -0.11148657773168163532 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
26
|
+
0.003531312536572327361 0.91081584629644329887 -0.014357839287364317082 0.24542561855101244217 0.12985555756981675968 -0.01275773735226454382 -0.27472097166953818315 0.076127211111092329965 0.1198227246145038144 0.19264936584369524164 0.17082843581291057289 -0.21380133704973053321 -0.14314461219092114441 -0.3030062643259601729 -0.18540392663677257579 -0.14002230189972550423 -0.039233245068022594426 0.13703313712673481639 0.25456918213483697988 -0.090017214493169100953 -2.6473920838039761705 -0.18688370159899778122 -0.4329013577783802913 -0.053830349512395271605 0.13325411800405351226 0.37368630131037716691 0.033665666554767048613 -0.27965822637328918709 -0.098703624448777893541 -0.053663660093591948608 -0.02203608599883553204 -0.28189189142870485494 0.060864012511932630289 0.29021228862587911124 -0.29023054250180124747 -0.16855063835900901958 -0.8775231992092380473 0.13455584523680325093 -0.012334797495293587169 -0.59184687027173021878 0.46529046218655562006 -0.73063388923243854922 -0.014403406408132844035 0.19929429096975306845 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23119158738141126763 -0.32098654550672994779 1.1459874640131890722 0.24934055173264063621 0.6063774237828618574 0.62968283226621124538 0.23036453882928567549 -0.67986500678274897069 0.21483766265877313195 -0.1117277991867230702 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
27
|
+
0.0035030477267894623988 0.91081620043774436102 -0.014369150953550263727 0.24566679085706860652 0.12977355227220416234 -0.012836736345537055198 -0.27489648094865432038 0.076324053406514061337 0.11988626376406091856 0.19240044304012118848 0.17098195418594785977 -0.21412285562024019336 -0.14288200524522429169 -0.30438260578856002336 -0.18567934987633827326 -0.13928388920397746786 -0.039212282407476962975 0.13716667983988706236 0.2556225857027903392 -0.090299335827739454774 -2.650975686226521244 -0.18850736152681035751 -0.43169303273270265286 -0.053473405512976447673 0.13466356821334610205 0.37166708364263295605 0.032954102376574027911 -0.28171423822411717497 -0.098420582379015464358 -0.053448010259122581689 -0.021610168627548234643 -0.28185376321589428184 0.061039217452235637607 0.29034891107166749258 -0.28995162921806849621 -0.1678772620222967471 -0.87709573129900697541 0.13419467325015999037 -0.012147352909682402472 -0.59140802386544055746 0.46563103192905336281 -0.72979372026412625551 -0.013412681227484044705 0.19855381437055066862 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2305782356556327628 -0.32141639878376337958 1.1466085310979658995 0.24999654717142413829 0.60693256284696528446 0.63005013688906252867 0.23017588505412772681 -0.67990650678033925924 0.21455675921679953633 -0.11223541642828779863 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
28
|
+
0.003467666253161098746 0.9108173591240840139 -0.014346171897818371307 0.24552542904495908149 0.12964305972207776363 -0.012921396136935291155 -0.274413909022964142 0.076570667499614331053 0.12008594493809890413 0.19174506482599226742 0.17115710312103477042 -0.21443236959134243103 -0.14256538917601133121 -0.30437987939207239441 -0.18552028068040571362 -0.1393840875610255492 -0.038923305259880060236 0.1370582117280077783 0.25611977795898260846 -0.090790748803715168314 -2.6489097814124389352 -0.19143725228215605072 -0.43276462541856847155 -0.054052498182860307663 0.13343405018961704278 0.37333860723171985452 0.033308371788665490365 -0.27986981034894609088 -0.0985549497867413693 -0.053549784155354190895 -0.021725047988883094269 -0.28269961365764689765 0.061232590412248946721 0.28917622671307446902 -0.29051813787875585549 -0.16727324360657930269 -0.87789673516209787429 0.13463123768557699877 -0.013091304820522654817 -0.59123306632766237101 0.46575976215775144462 -0.72998736845359668557 -0.013584638609331818951 0.19815055555358590533 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23106036560257695034 -0.32017772831869434347 1.1459234144232530728 0.24915564049915017719 0.60604421981873490832 0.63017443394875083396 0.23055806426696559552 -0.67973421323281713047 0.2153463203790946523 -0.11158291941780318357 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
29
|
+
0.003476923593030490419 0.91085121479350961149 -0.014331090873851263373 0.2454115947802486819 0.12963918151004799606 -0.012944994659440878237 -0.27419647108946748615 0.077021947525225467612 0.1200497045247144734 0.19175929193889290625 0.1710310286353338427 -0.21434803623388337668 -0.14315893318682215707 -0.30472076637865863624 -0.18526063851131557847 -0.13962722536180791066 -0.038850624214075930862 0.13679866381515673468 0.25578787145356801647 -0.090371982423372229642 -2.6451119513147340889 -0.19136272709444934748 -0.4331671799581715554 -0.053889555550918309679 0.13374147457048782273 0.37401997845430212664 0.033407765803610350863 -0.28050387664827264311 -0.098679597313437006356 -0.053451242428671268125 -0.021548673657021479716 -0.28285766782322263602 0.061324498403708148364 0.2893187050058594334 -0.29050607560711094735 -0.16808190162123740063 -0.87735579442069022704 0.13364151114789080133 -0.013314778826439440523 -0.59153531903682821103 0.46613960456769459872 -0.73003941067901712003 -0.014805585574393658951 0.1976186946246326348 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23101799701663244813 -0.32073138533723954957 1.1463769871694557967 0.24926055435060773258 0.60693484019652599315 0.63019179218049514724 0.23051009271143413359 -0.67959291666620513794 0.21634818768073871276 -0.11181775341927152612 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
30
|
+
0.0035064236900883582505 0.91093857702534564158 -0.014329106826343017758 0.24501433715514431277 0.12967289669329140622 -0.012886919058470145544 -0.27367350339315826835 0.077072910294953694832 0.12008336915952727564 0.19124200939443947167 0.17168452292313021723 -0.21519570610456845161 -0.14160408992609233025 -0.30660059122401706055 -0.18473060038759234192 -0.13993437584165294152 -0.038887382400996414744 0.13650343417755222974 0.25538201699694040858 -0.090377974299844496264 -2.6429403481135023135 -0.18732525962860377411 -0.43099075586219404155 -0.052917058739612235496 0.13594203262954218658 0.37154997915606563508 0.032746623895442736329 -0.28394036961895646742 -0.097903224545509939802 -0.053686879875455853495 -0.02039980283289153512 -0.28370628367645783774 0.0612249800938432856 0.28887479163210866284 -0.2898977308340985326 -0.16812949741517280167 -0.87642274435981715186 0.13337584137544342133 -0.013736234374308358558 -0.59145133864010845937 0.46630282947602008647 -0.7299358255579903032 -0.01708460130004088931 0.19657221959455603577 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23088078230688405257 -0.32113525270735626682 1.1473327481080313195 0.24894759522108783623 0.60707517690057621884 0.63082377706970704789 0.23080773867205725547 -0.6794342697190215441 0.2163840045172768789 -0.11375522823144507134 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
31
|
+
0.0035241725954296772468 0.91101021489950273491 -0.014309678552882204583 0.24460432820123317876 0.12972813601991417531 -0.013026256984344758427 -0.27334028768887769223 0.077004915963688400082 0.12025212107028365738 0.19152392909179236091 0.1715238911314164727 -0.21502008113328383021 -0.14256784999076826947 -0.30591445968359959329 -0.1842940227326559377 -0.14020398682205301166 -0.038718093484900850676 0.13649960327270060922 0.25512417578979196264 -0.0902956139676824171 -2.6388852315325066478 -0.18569952736851305652 -0.42920442742287062687 -0.052669294307023523105 0.13686640910451447484 0.36953001834392423808 0.032148214815828218827 -0.28518999246800474934 -0.097286078204840933936 -0.053574622235832654316 -0.020026305109447157388 -0.28445890995529060641 0.061476266116811652263 0.28859743691267930599 -0.29014977946228959205 -0.16848428283373076408 -0.87611945288358472617 0.13323483741578798223 -0.013342582216243162666 -0.59141588842195935705 0.46601736320065811903 -0.73066720895640691058 -0.018216741693001956004 0.19649428835783780412 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23042714974001637929 -0.32144969832226794049 1.1477397446867765307 0.24907178674309357613 0.60769022813269513161 0.63124905026770705696 0.23095715819229731269 -0.67963250641174766109 0.21648423052530108013 -0.11525592539963308569 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
32
|
+
0.003540597762541117851 0.91107185018949132793 -0.014284160776699725975 0.24437657631069173436 0.12978144205209404816 -0.012981807062889427762 -0.27312004118287125376 0.077133119296900823358 0.12015582803798513511 0.19167612062057348687 0.17153409964258403697 -0.21507386233083236604 -0.14347377333106331454 -0.30673516908649905988 -0.18400239649983182733 -0.1404446910556955419 -0.03870289928376488553 0.1364776855895669383 0.25506308032896235494 -0.090114793559503081344 -2.6368576081567800529 -0.18520293572906551538 -0.43081460749238692509 -0.053068844207923217271 0.1356146274626278958 0.37194180314705255208 0.032791985303791140738 -0.28355332319095383209 -0.097519376783031672118 -0.053700935118989101547 -0.020310154494880199721 -0.28490849875094631516 0.061483197572313554036 0.28819793761199308246 -0.29029411444889652305 -0.16925111620282276559 -0.87634593094241430844 0.13293286533900949831 -0.013610519844291504507 -0.59175520320152896758 0.46577152499457791235 -0.73122872709620378995 -0.019668498235718770428 0.19720783551156981228 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23097985942976806406 -0.32060337376226727413 1.147317830589587917 0.24794891364416810076 0.60754940377715949129 0.63130769121179075576 0.23126926776143083564 -0.67950458816340753021 0.2171798812540499668 -0.11542574952992049053 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
33
|
+
0.0035089416803766363372 0.9110674943021283001 -0.014311190441269622947 0.24457938455757313734 0.1297777607894744778 -0.012771655477884244143 -0.27339943470257682678 0.076824162246080088257 0.11989086118316645557 0.19196593766224828714 0.1712844715348262048 -0.21423420431378420448 -0.14217420427940941074 -0.30737015048049276533 -0.18418652620171882539 -0.14044639362427424611 -0.039034188086694551756 0.13644482559495538232 0.25455950521696796285 -0.089826674135726813919 -2.6403816768050827335 -0.18505004457349841229 -0.43211044149066574205 -0.053601135776502384367 0.13433910863560652449 0.37347832156570504036 0.033129085765079120673 -0.28207437535490348379 -0.097940218304294501817 -0.053659696881119718637 -0.020899303726185720215 -0.28476277418665818519 0.061461581983129960627 0.28865604886525048078 -0.29051994450477075516 -0.1691409842032313704 -0.87672763468486536453 0.13302726290827185385 -0.013575385164899596291 -0.59166669411649186472 0.4655081993119128958 -0.73161195205332618663 -0.020081908434926902529 0.19676483101455938263 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23099131512248069487 -0.32026934453916100498 1.1468761583688868999 0.24759307949266823323 0.60815975537787059224 0.63140708700954661925 0.23135721423477034753 -0.67973367908150683636 0.21735818005953116971 -0.11498024089131865522 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
34
|
+
0.0034798909003351547603 0.91098713108441076169 -0.014329416670329428452 0.24502206400717349566 0.12976256412295039677 -0.012764791659759886638 -0.27388592137158057627 0.076746903561492690882 0.11990204755683621374 0.19201135497282334486 0.17136483480056921569 -0.21425640388626657207 -0.14317830066732556427 -0.30759152505141434952 -0.18481020387508556579 -0.1404035726647938076 -0.03906599833881766598 0.13677073074463672042 0.25440551727316990105 -0.090103737576970238665 -2.641134653080378758 -0.18746890070380342608 -0.43326797555087581681 -0.054356683340786041136 0.13271239841926338321 0.37458635945739354733 0.033429749762406306413 -0.27964748054145016631 -0.098736596298994644405 -0.05338584604935018435 -0.022219076815105036349 -0.28389978485686856446 0.061548113419263812685 0.2894962456623038638 -0.29120110494804979373 -0.16872035113694416886 -0.8776568157606768894 0.13397451197945028922 -0.013261622856225875611 -0.59132188181362399515 0.46483595932982313403 -0.73191128874689725947 -0.019428686465044097548 0.19655137174766981745 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23092161538754912842 -0.32038644991830500519 1.1462427024986059365 0.24835202869652134305 0.60810495132798814133 0.63086517715678647189 0.2311136827977432473 -0.67983400364176449493 0.21857305422578193754 -0.11350456139048271942 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
35
|
+
0.0034338229118756700281 0.91089750899988197741 -0.014318641149517027239 0.24531625924390473847 0.1296875826572909951 -0.012678694722941703799 -0.27421629469519509525 0.076845740516721369739 0.11980894478272791082 0.19214867123726686593 0.17104506394638765987 -0.21446585343773549859 -0.1435740696512015635 -0.30749072551158362909 -0.18515854039003196152 -0.14044764772151879795 -0.039034568696364457807 0.13689968265963908811 0.25484972454695647981 -0.090125809554053706862 -2.6424218609350402787 -0.18537808636669877993 -0.43438391911167817394 -0.055186536791135762381 0.13082492646754537158 0.37576837378569166725 0.033765943202448626959 -0.27698522546211012951 -0.099484239445238917265 -0.053052144061782151307 -0.023485334115405358951 -0.28309424305303998448 0.061723188810405504867 0.29018811778783010213 -0.29181437849580532662 -0.16834347219718892585 -0.87864258568909836544 0.13458614116981035269 -0.012543898378893150736 -0.59092080770544608281 0.46450820543398885221 -0.73144685630366179652 -0.018691496605976697792 0.19659766708360207343 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23092189492840531351 -0.31975331617761471037 1.1452608414077976029 0.24813516661036166822 0.60800549901723288659 0.63086632117455443414 0.23120099420555426106 -0.67986030144488118765 0.21845936347821584556 -0.11248469805134575505 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
36
|
+
0.0034571804838234758764 0.91083573733480849288 -0.014345046303177389629 0.24575159170411595144 0.12968678813185485765 -0.012722972527711170695 -0.27472781839571053242 0.076231805903931790236 0.1198519286585041782 0.19230810392110148088 0.170744873040939521 -0.21392578091245606497 -0.1433697730976163931 -0.30692297112458627462 -0.18580435674797696199 -0.13974008613845703697 -0.039161682724126886668 0.13728657663039220416 0.25500262267247564285 -0.090282688630345497849 -2.6438595976851404501 -0.18728016272532066466 -0.43360511992807282411 -0.054214096403988804029 0.13274868001508755011 0.37415199641930513286 0.033486484062881724522 -0.27984161498270893054 -0.099299946900006694217 -0.053278913264813702877 -0.022393796409034969624 -0.28247645299470541813 0.061419275232396923492 0.28971603295154663149 -0.29099061130096154359 -0.16836633915745785606 -0.877729756499601943 0.13482891942080199588 -0.012519170030372924265 -0.59085932679048192018 0.46467925742778298792 -0.73091549749118900348 -0.016629159030634946964 0.19644510311666596447 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23074586003421562741 -0.3208263632059615289 1.1461698030057509978 0.24873668250042416106 0.6080767036312419993 0.63076247414629305066 0.23073236787768194866 -0.67952342383024744166 0.21727686132628404314 -0.11231248039755246937 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
37
|
+
0.0034784673097318133915 0.91082438734119031132 -0.014339848228191384716 0.24582309935716806226 0.12972107513000746826 -0.012876908977757887953 -0.2749473938267436024 0.075872838951185697653 0.12002768421349895023 0.19249824926671885161 0.17081124454191656814 -0.21365472920681963243 -0.14373720379999566088 -0.30600411626641638163 -0.18590269406859435963 -0.13905052448181737246 -0.039124627090128240303 0.13744021111956464254 0.25574973440275367009 -0.09061305130890835724 -2.6489557747970944312 -0.19034966821699525474 -0.43275857538291129245 -0.053776841704042031844 0.13359563225819415244 0.37286082693585648196 0.033284316610941964976 -0.28097192289288364098 -0.09914083679453780662 -0.053367943353980401566 -0.022068992800104283991 -0.28217738584127932677 0.061242716726794994841 0.28991266639187163179 -0.29058105805681710976 -0.16822409302446075796 -0.87732676440566537135 0.13506885699960560765 -0.012507456466574076379 -0.59100267141619455824 0.46482840238010364464 -0.73021690544065875894 -0.014800215116233155291 0.19711348148466301122 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2303697838039155954 -0.3214147079374206073 1.1466332584581706566 0.24891465831515485752 0.60829005215556564146 0.6307221900961134109 0.23048012938838588481 -0.6792875888524997352 0.21554610748135336062 -0.1129100764694143666 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
38
|
+
0.0034971249344576487393 0.91083385217036827441 -0.014320955781643458088 0.24590792360848942599 0.1299442414360590381 -0.012891290440247721652 -0.27511465275386709495 0.075735417756999032224 0.12001862826424956887 0.19254391735979253797 0.17095095317490224818 -0.21376399638425516714 -0.14379397561922654947 -0.3038210338792458054 -0.18591412173684349063 -0.13975347696038714629 -0.039070413598682081358 0.13735344126633708406 0.25494149510079366916 -0.090828376915824043936 -2.6478286680695690691 -0.19484240516433837254 -0.43313514967557037449 -0.053948835355587212992 0.13283575526438420877 0.37325615027048064665 0.033561859011414452159 -0.27993958923512735071 -0.099285282008717293256 -0.053389131282361133868 -0.022428913708457075965 -0.28226332346458293809 0.061248030972288119989 0.28992725124231522038 -0.29026475202504475881 -0.1683201945451280046 -0.87764171541509650165 0.13472923185838706073 -0.013009694254962808277 -0.59122855515638150781 0.46544319802087913418 -0.7300041653087027127 -0.013919138006018190457 0.19793037098600219093 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23052466671136637166 -0.32172373371264273434 1.1464440691626671676 0.24904002359031510161 0.60832800092370631351 0.63059039382822246189 0.23016158221452656663 -0.67879650665742063964 0.21420663368239961644 -0.11285629485222714585 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
39
|
+
0.0035048037709866806597 0.91085876034908197507 -0.014299340072396062029 0.24585507769585965288 0.12995593239517455597 -0.012830717773133229476 -0.27504416131344522345 0.075966103469834400652 0.11992055519717455259 0.19253905469817803042 0.17097787615909787462 -0.21418550521879176074 -0.1441496219998714412 -0.30173382598822157119 -0.18594394874300432252 -0.14048475575953039973 -0.039031165529484407317 0.13737302908179210847 0.25435716910678130009 -0.090416554392683520791 -2.6457293095852718601 -0.1916399401462210994 -0.43388278747183245398 -0.054146861253515303491 0.13234642574285021555 0.37427378240009279153 0.033788720747511796771 -0.27929336343468258441 -0.099439074014681230751 -0.053456539853870631285 -0.0224258992956646655 -0.28239072932385683723 0.061285820497655685291 0.28930785686366611298 -0.29054303988657603774 -0.1689301659569718006 -0.8777551466833205529 0.13422258855776980635 -0.013138264874515781164 -0.59153848509633755182 0.46584475985446710533 -0.72979775648136624433 -0.014132164162212980038 0.19808228257518706306 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23061209316922848256 -0.32156731200256771785 1.1461999199014185624 0.24906713346832248801 0.60797416475027699079 0.63045648139949062028 0.23010360353076114714 -0.67911122019363856506 0.21386408960483710429 -0.11239265033293481533 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
40
|
+
0.0034898477222261928277 0.91085280835853599246 -0.014333314173475403958 0.24618153619137220223 0.12995364868698131011 -0.01285788464762234809 -0.27545944356727869451 0.075677533781922601275 0.11991733762727484203 0.1927585886527785064 0.17071254620073250674 -0.21368428120686056015 -0.14396385209459436338 -0.30229760059652827087 -0.18634124487145525828 -0.13967890883812830727 -0.039083422989496158229 0.13758194059297296219 0.25545577917036627058 -0.090578133401172211681 -2.647875398545802117 -0.19005641430899147815 -0.43434977412822994847 -0.054350397024804632251 0.13221994800997358133 0.37452705583584677829 0.033714940903537868322 -0.27910731972749164287 -0.099737467954064781828 -0.053304167721040116024 -0.02271579168111520497 -0.28213477796387720353 0.0613737187687726643 0.28958656966622076112 -0.29046973915196550031 -0.16849254748008932192 -0.87784447162859680081 0.13379268076185965586 -0.013827915871697842032 -0.59155269830763823613 0.46629019896480666807 -0.72974491861136137061 -0.015498522855011154578 0.19769591329820618286 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23057152459697305424 -0.32138132067975250239 1.1460513134224925569 0.24962262010543909141 0.60731996325406489845 0.63027321350047271764 0.22965387489433550239 -0.67937126739547226695 0.21452804325375704475 -0.11198422467324768703 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
41
|
+
0.0034650955980106458443 0.91081907460109812202 -0.01432043364668208682 0.24616193287944751478 0.12978544234047714734 -0.012790336635201089016 -0.27517687191692741244 0.075596084106647587486 0.11996053307436722879 0.19234947075957251061 0.17068229268432513757 -0.21366020554167242107 -0.14349214827762318825 -0.30435695574884963355 -0.18629242871246565194 -0.14008430818729583622 -0.039060286559882702317 0.13742877101655007199 0.25504893197240946501 -0.090367857065958845375 -2.648133034081860071 -0.18788620123389390693 -0.43330947201549602221 -0.054088668625859148698 0.13257701861153492473 0.37321353871264933977 0.03352612666692437321 -0.27973808634725910727 -0.099785986856778058351 -0.05326781646760338218 -0.022660705652123955267 -0.28187727886480790085 0.061364152573737680563 0.28962572363853372748 -0.29053681923413882116 -0.16808125071003882089 -0.8779846929006981382 0.13405583385949851327 -0.014367629057664386971 -0.59117019432588824301 0.46640985479160401717 -0.72988826671604900564 -0.017284802799948026375 0.19723913893300720757 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23064367383645409393 -0.32169582781323846632 1.1461144727906578122 0.25041727323999646293 0.60695811724418013977 0.63040820062231195386 0.2292387124359497319 -0.67951156997528372461 0.21522251949422946393 -0.11237375834213698955 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
42
|
+
0.0034978543152990168238 0.91084630104690311736 -0.014348067831209360828 0.24620014213535201808 0.12977478835817446434 -0.012746144165166197609 -0.27524966820933333134 0.076257252328836636068 0.1197327105606034725 0.19239110960373687065 0.17097823607034517979 -0.2138362539042327759 -0.14376229622147193576 -0.30696737711820898387 -0.1863578893556642746 -0.13991873839783022793 -0.039191245572085260662 0.13757162301528153003 0.2546717701468059758 -0.090172110581501596638 -2.6456321433985157121 -0.18953564103364339832 -0.43148828247965642646 -0.053406705924407466002 0.13479540173241719159 0.37070497428065513068 0.032611591594809717642 -0.28306360838695959758 -0.099409072115756932919 -0.053178307427831209009 -0.02198970906247011553 -0.28190011945618947964 0.061343609863817191719 0.29021504540107234682 -0.29044968175100061014 -0.16795878486929599616 -0.87728061197502704704 0.1337736467282044095 -0.014201440189253443716 -0.5906646296360388293 0.46658268427464461015 -0.72988719191712780887 -0.018858825087832421091 0.19693331962046206618 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23028487289929866488 -0.32184934465967596218 1.1468535309389304988 0.25091676697980774824 0.60665374272815630885 0.63068042512262156851 0.22894208446383890188 -0.6791631349173916643 0.21589332370763936186 -0.11235014708755168555 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
43
|
+
0.0035073749801875146563 0.91089801911431467207 -0.014292254342998262501 0.24545003417670757662 0.12983565455218529228 -0.012751242142438655794 -0.27429067695430731089 0.076554452124005828439 0.11987613301031983803 0.19182232527082909712 0.17129865869548005497 -0.21470350894297657307 -0.14237660021717365999 -0.30462169650365489293 -0.18524289629303020144 -0.14020459960242920294 -0.039102149038080277754 0.13680881750315801448 0.25503656678836383875 -0.08980268315049204364 -2.646155937522344459 -0.18776564458580180528 -0.43089094386534954051 -0.052877403733530621566 0.13574365931752216397 0.37069960266514695446 0.032604749274519381763 -0.28457535872289890788 -0.098793838328279079408 -0.053534419232260280208 -0.021220817901698024732 -0.28281624824341167201 0.061188399977815659259 0.28949909130921613887 -0.28995031950991079217 -0.16849485067976166519 -0.87683168931648647337 0.13368045971392295002 -0.014695894412064170256 -0.59051382599324442335 0.46625785488793758393 -0.72998687150665575452 -0.019166950772801286812 0.19617276373350847618 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23055635524801346148 -0.32172838656596081108 1.1471470698579224745 0.25017758512711985031 0.60602906760977459655 0.63093222970031692665 0.22936511902814835095 -0.67888892575771897508 0.2157879340063882101 -0.11271660640583658353 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
44
|
+
0.0035311365964792915638 0.91099053443064093027 -0.014265298670336450451 0.24498035435505652324 0.12978157761260958325 -0.01273801394254115045 -0.27376146388472216708 0.076869720690505294325 0.11982610512138441861 0.19175564533829475566 0.17176700705795167057 -0.21467035151487237621 -0.14249375163275040945 -0.30556135341446311049 -0.18468540373534933496 -0.14011183089910655974 -0.039090476758555765813 0.13675821297537335552 0.25526043785636037819 -0.089985563890562322853 -2.6435094132101424336 -0.19021066836617786522 -0.43003250475409143805 -0.052578249582851524502 0.1363353996092313003 0.37012295616836704548 0.032436156837510110584 -0.28562595263502293941 -0.098240986874068958468 -0.053714974331150973363 -0.020268657363046328063 -0.28427253914988476202 0.061352746147111295039 0.28827533382886977309 -0.29008172152766142915 -0.16971394909998469003 -0.87607838786824332455 0.13261269348889695441 -0.013681318612693640219 -0.59102229062716016283 0.46667556199719739674 -0.73060285959658621824 -0.019546948152725941023 0.19719323700045535142 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23064643259841111078 -0.3212280065535221274 1.1475433945960831217 0.24920394978727952728 0.60629262684033358166 0.63121524614918722573 0.22989340172434657994 -0.6788628002566757802 0.21436948882873554934 -0.11396205894522348778 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
45
|
+
0.0035570578161853655744 0.91106541700482723822 -0.014281495420475288222 0.24476398227221282666 0.12985169109168229196 -0.012827568898049446569 -0.27369850844327070494 0.076959747029320083045 0.11984936028795033225 0.19208920136717477778 0.17137325946992199022 -0.21465527896685382414 -0.14199965142561130071 -0.30695415190299341068 -0.18441003026759064665 -0.14040614673126611267 -0.039009622064028373623 0.13661181935220259587 0.25492022420634086188 -0.08994993549795214649 -2.6423683841195044764 -0.18818020929065723545 -0.42796397137559716306 -0.051602400028858581849 0.13877725466160212298 0.36748489044360688194 0.031693918118825027685 -0.28913656552629363183 -0.097413009647378603906 -0.053865339232325476493 -0.019316642875802127188 -0.28492587863415086424 0.061241537519672144263 0.28838032344406755447 -0.28965173464994331542 -0.16984291400106249492 -0.87525431425407562713 0.1330250697431455964 -0.01347542695354551727 -0.59060808618513827017 0.46628994058141243206 -0.73074989270765533522 -0.018647153214684755729 0.19693923983160782631 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2301309312809426133 -0.32167210385952482721 1.1483754078970924706 0.24857397256463675816 0.60640507785299857524 0.63169481040101294056 0.23061797882778020674 -0.67896040605958984937 0.2134576933271381538 -0.11480211054617818489 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
46
|
+
0.0035602120394494693977 0.9110747832772814192 -0.014303688211296272312 0.2448303219741330139 0.12990894068370356651 -0.012807104628221644554 -0.27384812339375497192 0.076978533440331342597 0.11983548168688114288 0.19217904268899868581 0.17135501474208758577 -0.21484080733299443233 -0.14197667740690003702 -0.30645499425806066451 -0.18445318711213365415 -0.13989108054923812818 -0.039063239877185046423 0.13660797959354453734 0.25545316125381656303 -0.090359403215517469787 -2.6421801231640995589 -0.18920470246431603245 -0.42914478575413755879 -0.052071690196519013205 0.13759316436615748325 0.36911448143348668527 0.032122353405783225788 -0.28745593335215569031 -0.097929421805913255406 -0.053927327397613376847 -0.019786166273333991722 -0.28487680542061655231 0.061196486961040720554 0.28833297188152068324 -0.28987029759052679312 -0.17002865861701027539 -0.875598545000329187 0.13302743651938653269 -0.013128783252901024547 -0.59085226266976387244 0.46643650824152521617 -0.73074353642535283537 -0.018458358605037087502 0.19724055481564181647 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23078088477654870592 -0.32141531604653195142 1.1479382882385236186 0.24873200584341981223 0.60673025799409840975 0.63151191840010167944 0.2304574205264897091 -0.678718528664663312 0.21299463948389713019 -0.11404625339375960846 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
47
|
+
0.0035569235921566757196 0.91104484291147735942 -0.014348018957757821545 0.245260546262063589 0.12993199469633839871 -0.012685249214401301404 -0.27435565568773234713 0.076608572336501312705 0.11969938057053064462 0.19239734981610367992 0.17101846928958649996 -0.21435943960031875188 -0.1425787186402442952 -0.30757191940163614019 -0.18495916408614293536 -0.13999588219301636882 -0.039248482173227718095 0.13667674949904939918 0.25513740831297854195 -0.089901019199922715952 -2.6427908989749941959 -0.1857605326655147604 -0.42961697562699413533 -0.052288373456931193373 0.13732804090561523402 0.36920787218826323084 0.032042582143422718155 -0.28731653993072081565 -0.098068368304006864333 -0.053903203112220930693 -0.020075421867775312956 -0.2845471021922798549 0.061122082097434388137 0.28877145698575668042 -0.28970249743619091998 -0.16864421061387238621 -0.87593882019135882455 0.13400074937881215065 -0.013894960203477781102 -0.5904731427818428191 0.46630034198548470092 -0.73102438164984684388 -0.017035643771169679817 0.19754774355869117453 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23051665767429549425 -0.32129243205986052212 1.1477576441072323554 0.24880265315517444136 0.60662838557697718045 0.63143307970846462851 0.23056626738239688335 -0.67893845566323296481 0.21331758359811073267 -0.11363694114825895198 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
48
|
+
0.003553176427081081775 0.91095166493454360346 -0.014331742768230383567 0.24530684379447181831 0.12984990723733194629 -0.01268397427434647326 -0.27435130246986844105 0.076464706061116605174 0.11982691966491229585 0.1923610741740614527 0.17094678859995907083 -0.21453373370187556191 -0.14236822921166267242 -0.30651172434749607287 -0.18506566407424746012 -0.1395972393188606997 -0.039257620718961133699 0.13687630525337801668 0.25583992264288968332 -0.090378525246819885197 -2.6464316466664743466 -0.18807381321322325096 -0.43401136344450708116 -0.053759105167483292598 0.13329016579175642643 0.3753798830469384229 0.033800842553801446755 -0.28128649516640769068 -0.099477775844145910344 -0.054214933739806243918 -0.021604548812255257306 -0.28450095372165618013 0.060967553434424941183 0.28804091648716811935 -0.29054823848427474564 -0.17042542688998885136 -0.87706902777047568431 0.13254631918506210031 -0.013388029045122477878 -0.59144049220444638859 0.46712934737603784008 -0.73125150967152985348 -0.015849170483520257785 0.19776349823052039034 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23196341467957920512 -0.3202481228187701312 1.1459950563876546425 0.24810501676096183288 0.60682501509709163567 0.63096481912042778895 0.23046553667656208275 -0.67872560868684728153 0.2132928369573316163 -0.11296816144822478811 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
49
|
+
0.0036040051677955924937 0.91092423559348301154 -0.014579495105823181422 0.24663335540509520594 0.12978863742439281093 -0.01296175976194797845 -0.27624755559927377524 0.075739581687596091442 0.11989945661272959077 0.19301467017450452124 0.17106263511523689402 -0.21350941537893397548 -0.14272261456077456332 -0.30625140848195209209 -0.18717157887643079417 -0.13948234270209372565 -0.039035946902040041806 0.13781246929907634002 0.25600421584518140428 -0.090166230199871494344 -2.6430654736552123829 -0.18692941534876172938 -0.40925930989697290041 -0.046727109646743862637 0.15417188708993465052 0.33938106780171484189 0.024022097341669993581 -0.31170369638766737275 -0.094104220577174949036 -0.05191263602183437964 -0.015632102297586145112 -0.28127176148969135205 0.06178341033047909242 0.29365366402608117369 -0.28682414805664879776 -0.16282674746876840688 -0.87049310733491513936 0.13601213433067074754 -0.01076520398084655078 -0.58714474274511097018 0.46651560450529289126 -0.72899063517688833524 -0.01558975897941578849 0.19305341068984449571 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22412608706341496934 -0.32652529013748671227 1.1540678950133560488 0.25460732622676462977 0.60569260637873556519 0.63274108004562146235 0.23017988435420849713 -0.6799086119599050404 0.21390768030056989124 -0.11765442895261293832 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
50
|
+
0.0036629395583521497104 0.91089449037364267348 -0.014579788170296235222 0.24669263478858305394 0.12984219622722684151 -0.012898538632328253317 -0.27636297214661087462 0.075375268152118535259 0.11979120663174754047 0.19309668690119294321 0.17101114404057296547 -0.21335024736640234577 -0.1422483283633711737 -0.3068776699412906761 -0.18740344967539418475 -0.14015519433096457202 -0.039143911644597961796 0.13799667343161134414 0.25498157505992741223 -0.090147432332833038471 -2.6447363365927816226 -0.18732009306451322117 -0.40815101839275980122 -0.046380531671813156336 0.15496512924062824657 0.33779374721148691663 0.02366657230237884102 -0.31286990095016936619 -0.093613308544308715398 -0.052079282021009032366 -0.014972371353752053635 -0.28182071068412178905 0.061824498140508041266 0.29256655001533971028 -0.28660214988662846558 -0.16373967509862233372 -0.86996804373823122258 0.13468944228299334354 -0.010006653870524849156 -0.58750458394402560458 0.4673084866836202389 -0.72894786474613948446 -0.015584714900795595613 0.19318627264389046094 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22412798517369089679 -0.32655976681761256231 1.1542580264252544353 0.25472303428182585527 0.60517642396725335185 0.63274743954782020072 0.23041527508222808818 -0.68029825192868964567 0.21408918676333310582 -0.11913263760646160272 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
51
|
+
0.0036690134445973880337 0.91087773294028318016 -0.014576018211369251576 0.24662680774700221353 0.12988252961716786893 -0.013063606221218944381 -0.27642401851591980044 0.075186160293079548622 0.11998549822331826264 0.19323521521070605167 0.17074471243759109518 -0.2131557306099665372 -0.14187110989781329118 -0.30419056239663561092 -0.18739249711212366267 -0.14012621084842924457 -0.039040942543064199866 0.13820707924000780187 0.25468112746032023352 -0.090137482147517003495 -2.645472363465782184 -0.18749121250196806865 -0.4070059458183918899 -0.046246779758410849759 0.15516713020918077026 0.33632751284014578141 0.023410833676763002226 -0.31304540925892426761 -0.093162795697276853946 -0.052156816170337454153 -0.014556661822012949281 -0.28249079147697703229 0.061908259202533170995 0.29201115477140665577 -0.28620722422042738087 -0.16326375708021587108 -0.86995915125252565314 0.13442584768465146161 -0.010821597862290215433 -0.58766898210712181783 0.46760914935985037344 -0.72880568589382821454 -0.016318763342335954741 0.19275679839534995419 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22390876219196481633 -0.32676882364076376142 1.1544485546506066953 0.25490530331005034625 0.60514311454641422916 0.63255047419898080552 0.23044479497270012325 -0.68005270205097678726 0.21370970634487643225 -0.1204601419695450204 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
52
|
+
0.0036391415959933864042 0.91086394197937470274 -0.014590858023938051147 0.24652851190653349289 0.12981251859925935221 -0.013119325255455754897 -0.27643241508381427574 0.075188887316054803245 0.12004846640766012045 0.19338562380285473363 0.17084147891411799458 -0.21323973601384438314 -0.14274914737342819793 -0.30373099361678218555 -0.18731815047570982147 -0.13959301050683348144 -0.039018624864958238729 0.13831027436309775713 0.2554170814046616278 -0.090604773298150517724 -2.6459938214182847638 -0.18651334536068922554 -0.40737953638563001446 -0.046553469615680687088 0.15430445599280645519 0.33702617734528150795 0.023653836592162275076 -0.31175961203463303795 -0.093530209005000863876 -0.052164305614566669478 -0.014952601737713018537 -0.28214441515974697516 0.061846554723917736285 0.29214414632884666556 -0.28616870974726649202 -0.16319129694753009563 -0.87033460599221890153 0.13419239657242798547 -0.011279204667283966937 -0.58773755964391805051 0.46744034696681585617 -0.72860255597038237063 -0.017894569524242270181 0.19287640713218839883 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22385097138719484144 -0.32677529207372840725 1.1541101501014496833 0.25478372437671253925 0.60548843899635296228 0.63249745893676423414 0.23064507537561595996 -0.67978703686170405263 0.2136362503784461353 -0.12153874980641439507 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
53
|
+
0.003625331226928206127 0.9108259034910731744 -0.014600345042984498589 0.24681677206589236473 0.12982664128342183418 -0.013036831091759961201 -0.27675342372945677116 0.075038521497781437986 0.11993600686357078211 0.19360178235415476111 0.17060069686610654371 -0.21300167178882906116 -0.14402491526885641271 -0.3043098086474839703 -0.18768720331830038295 -0.14002159812422618201 -0.039093253681257635057 0.13839570529740979898 0.25507794431312119654 -0.09049257796159686229 -2.6464668321690956176 -0.18693337027376738524 -0.40845232004444709251 -0.046999783027625960385 0.15295272392721212529 0.33822733577480151856 0.024085705239973352609 -0.30992467920950533822 -0.09395305157326401535 -0.052259808969669939438 -0.015573675490089845808 -0.28203179999356464691 0.061719281124713885889 0.29242126373340526779 -0.28644488958532349221 -0.16246948889432516472 -0.87116064566510575951 0.13550676390585236764 -0.011980649192844789949 -0.58733392499172776269 0.46658048929771611668 -0.7290274791086520656 -0.020209948501951673083 0.19260231579821807113 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22434805957126088827 -0.326390034642277449 1.1536208495246391692 0.25466536918170279424 0.60529719157721284528 0.63218031245940486951 0.23072337722593005971 -0.6796780721612578624 0.21398122558062793175 -0.1212448997717314042 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
54
|
+
0.0036073088832292697116 0.91079744344136837064 -0.014618704808418063121 0.24694877195707090611 0.12978397387065970792 -0.012998824992694927097 -0.27678694574792300775 0.07501931690142449316 0.11994489346599598867 0.1932286353573346438 0.17080564018472269017 -0.21320102715106140079 -0.1428010847065587785 -0.30681200317124324162 -0.18787965572726814112 -0.14027485804717085283 -0.039016221669516487625 0.13831076344067677608 0.25502936199936765416 -0.090580555017630792758 -2.6460675445789987315 -0.18842161932132023283 -0.40938701006938554849 -0.04730099049886563739 0.15190019787208863811 0.33941273850778835852 0.024507745298912281262 -0.30850889176378104573 -0.094158435686333696868 -0.052370414823564033491 -0.015919863761040840833 -0.28223910087191939056 0.061641483013034605032 0.29249695048824841948 -0.28625569888262902829 -0.16288382257502073691 -0.87144015399579921599 0.13485378261539529565 -0.012254593263930914707 -0.5874327822870033522 0.46660193495567253708 -0.72951401104487290095 -0.020740025692557145787 0.19307270529530978775 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22407109922212722908 -0.32720077547809034435 1.1533976965518299984 0.25510901252873252609 0.60622119189856871202 0.63186279621750873758 0.23066042360776112252 -0.67978072871962491597 0.21454786475624654241 -0.12106504884799880462 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
55
|
+
0.0036370385800950921773 0.91082597637528639467 -0.014607434895329219487 0.24673526501114351195 0.12981652111713612441 -0.01277913166509997249 -0.27665686848581777513 0.07536727655117488045 0.11956311027527749546 0.19368003116364515548 0.17057386429214718704 -0.21290984351257619123 -0.14239765434702306157 -0.30638177062359128744 -0.18765436848194197439 -0.14063005367523917499 -0.039264259332488560261 0.13827625937698026504 0.25487404483612907669 -0.090503594861449349063 -2.644931086812990273 -0.18693183074870692306 -0.40974255419034771863 -0.047451388831574084493 0.15177944262033329914 0.3402950484766628092 0.024532803715134599704 -0.30861466414016569537 -0.094611657101494439637 -0.05232584812905944488 -0.016076834371123567557 -0.28206732173600057578 0.061605827341896922389 0.29290606732923402111 -0.28681420405937313456 -0.16324246047979718011 -0.87147693918188295914 0.13519387658465781277 -0.011763264155411710249 -0.58718299958050412801 0.46618507491635330364 -0.7302419702064627538 -0.020683149235503798385 0.19310355456047847977 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22450293934060894241 -0.32619385853540172615 1.1530291770799181439 0.2541843869372314435 0.60520098237403907593 0.63212986690311212534 0.23135807471865543761 -0.67988916486510564408 0.2153218163121273232 -0.12033657615694942633 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
56
|
+
0.003638695629706479185 0.91088564386073567203 -0.01460238399909525274 0.24647330502979220013 0.12964715964593839792 -0.01283651221999144304 -0.27622362949206907823 0.075782366477559551243 0.11968185775416467775 0.19320729096364455679 0.17080315029844977959 -0.21365546777897598263 -0.14059410392010099344 -0.30676144464277405044 -0.18727295334287505368 -0.14054750709805968745 -0.039192433615023461457 0.13796165755934564068 0.25437210385804409629 -0.09035560055612355812 -2.6422701003412076837 -0.18759550736191130116 -0.40876705800609680619 -0.047055335064582287652 0.15278008697184358722 0.33932744681049892277 0.024240804194704909658 -0.31008346595887381625 -0.094265164115825625379 -0.052254017772692513966 -0.015692639642392949145 -0.28282823471035828389 0.061746371049597216507 0.29310545614805499914 -0.28687904578574585646 -0.16340831703069230718 -0.87095980306481635136 0.13529420659259436266 -0.01076401715406631078 -0.58701246291675834854 0.46641483364741564976 -0.73071667566644449288 -0.020157474580274913067 0.19314297145527437038 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22447642093002673214 -0.32592935712885273691 1.1533803328944893796 0.25389946001907987005 0.60512731449593182287 0.6323450159510002333 0.23140462692498817154 -0.67959002013871727677 0.21482437307159979456 -0.12077387181814491779 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
57
|
+
0.0036350126081821014339 0.9109830464454932164 -0.014567840126645461782 0.24590730434561855478 0.12955250788653807636 -0.012928668112846819493 -0.27550641507472212188 0.076301278894462351565 0.11979537999583514396 0.19293193706149880384 0.1710531157870561203 -0.21391746249574528083 -0.14058217915483051108 -0.30570144098228441143 -0.18649400492976916932 -0.13997532856370140109 -0.039246389223965186255 0.13769032215632659444 0.25477483240406900711 -0.089991018167966757568 -2.6430885128590597688 -0.18745777736240679112 -0.4067002070364921229 -0.046051942939471395 0.15549670641133925275 0.33711910769264791243 0.02346596043507253801 -0.31416505941250882916 -0.093621654489666500387 -0.052275049227686352926 -0.014341188089418629992 -0.2832236318348108628 0.061721508448211795383 0.29312398287339069824 -0.28632883555150878685 -0.16251704732355037875 -0.86986682126469694332 0.13622240871957905228 -0.01133689084303604426 -0.58663474224627598641 0.46597168183043274903 -0.73040859122220058719 -0.018112124243614739771 0.19351461680658760267 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2239356394585959309 -0.32627228796315549397 1.1545151667659312444 0.25383143840344102315 0.6048776102575672553 0.63258061336791926443 0.23153378375283781287 -0.67961637642787797731 0.21446453416586919172 -0.12092582970524783093 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
58
|
+
0.0036492996493623160344 0.91106527319082375449 -0.014563336099367170384 0.24562139528264900767 0.12952474875485114891 -0.012825151412835158332 -0.27518483778432034637 0.076239578625510492915 0.11969998972720581609 0.1929755594514048489 0.17096307552248754535 -0.2137647677514701583 -0.14030999866614271565 -0.30509750103879668126 -0.18609537390745758967 -0.14045983350055554761 -0.039306916515031042891 0.13736738302348341922 0.25446333112680952215 -0.089969727148516365212 -2.6417009800796678043 -0.18668960189469063771 -0.40613597108327564866 -0.045949758524029313267 0.15585203980977777038 0.33669020522774284476 0.023260166204509651056 -0.31487806166523529816 -0.093364185113929520909 -0.052285528244272370946 -0.014280902533287877232 -0.2836192448299789115 0.061697145231132344279 0.29361392367305905182 -0.28642170819195322817 -0.16326224733275887524 -0.86939334584753213964 0.13537853441125838327 -0.010466904413379623032 -0.58693827047515911843 0.46636727963629481808 -0.72973238648262694905 -0.015878874691286085086 0.19384797201940590083 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22421449932341072642 -0.32540738750535547208 1.1546011786658265663 0.25375664300551598052 0.60341029653569966396 0.63240040510185835387 0.23135660528016396831 -0.67943914665312443724 0.21469637379775755037 -0.12104334196742451424 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
59
|
+
0.0036745842930829171469 0.91109644732851502447 -0.014573670617185825391 0.24570270628210133523 0.12930352506517645006 -0.012555722431352988114 -0.27513656083530346752 0.076453114313430436955 0.11935840494137194001 0.19291399187686955607 0.1707428608460839492 -0.21362708153094131514 -0.13967179691784509243 -0.30559661491309414449 -0.18618549752651461504 -0.14037726681434353759 -0.039493130879208970807 0.13727624442630714796 0.25455747440606435461 -0.089525573131129201898 -2.6418734815869138188 -0.18492502530676682704 -0.40906719928096207939 -0.046694763048411656869 0.15331501433709840421 0.3407371899480906019 0.02451839180342675964 -0.31139456557283462512 -0.094046292775406464814 -0.052463262322877984856 -0.015528706593111478093 -0.28391359401784049821 0.061545366230497236537 0.29408828153728566734 -0.28716972936556223184 -0.16340673661193710897 -0.87052815078767342705 0.13642859056951767149 -0.010847131517321218289 -0.58708340427512428761 0.46595405718261523331 -0.72959337966280601862 -0.014105808564627526219 0.19432876608105656424 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22481704288672438308 -0.32524339386315503919 1.1535409077269365152 0.25353482353954914785 0.60398259834331868845 0.63218861679655202757 0.23113609290599765322 -0.67941300734648024662 0.21462296849648754282 -0.12031135073195609042 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
60
|
+
0.0036634595463358181518 0.91110774749583323118 -0.01459311126590178212 0.24590915170690660907 0.12915497502166825572 -0.012386751714403003433 -0.27540200217735466559 0.076521726071890047716 0.11915618964763990961 0.19323732651613512168 0.17053142202569476771 -0.21346126018493480347 -0.14061103389923240714 -0.30483333523416428212 -0.18652180780023638884 -0.13981417259301559541 -0.039757555968157214099 0.13760533326484278294 0.25467688448885411612 -0.090026397024866533503 -2.6431558596370710035 -0.1885078369363707429 -0.41303005500846301512 -0.047620487599023528236 0.15048503958704401162 0.346162079883174989 0.026048109847888013119 -0.30742024263389278183 -0.095247682894586807589 -0.05281313176302025042 -0.016597861208752451301 -0.28389141557373581692 0.061286127665694432876 0.2936945999006357888 -0.28764003011181854541 -0.16468596175880137467 -0.87141808657380837033 0.13535890888776777596 -0.010896034732651049826 -0.58750991495416748922 0.46674625292494492657 -0.72951697921249225587 -0.013423026297034328785 0.19442369879979087832 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22658240761586936896 -0.32375332797320610645 1.1521489496411370101 0.25269504391295133372 0.60280591170678332613 0.63204970809026417289 0.23109530751478560284 -0.67956571911945806708 0.2149629516496215087 -0.11937558528990255269 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
61
|
+
0.0036275243404869459557 0.91103842012147095986 -0.014625139780689905625 0.24619931946360040786 0.12899204393925081669 -0.012640941415394010144 -0.27572247093458596146 0.076305774539025220116 0.11949801882305206846 0.19339506125327665664 0.170510709013949463 -0.21311354524384956699 -0.14257257020510197276 -0.30658550643560750215 -0.18692954924985663578 -0.13889500281306985108 -0.039504099958906954693 0.1378502504516369298 0.25546169712578542521 -0.089860024733410606701 -2.6436800552365711248 -0.18720854717803486755 -0.41454028689548860775 -0.048033723621011915894 0.14898855503460561867 0.34791216425857535155 0.02676740372954983585 -0.30500544764282311316 -0.09542836310559338342 -0.053026784977200973337 -0.0168061792553776089 -0.28417720477424823766 0.061249907542380493952 0.29280141819670618686 -0.28762836589335211146 -0.16377422848477393713 -0.87243415090524989441 0.13638010986559209736 -0.012497751344137761342 -0.58722419206697895611 0.46663641360562574389 -0.72939329302914879261 -0.013653353515735371093 0.19491116746540035343 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22683388400381393479 -0.32352956133072230394 1.1515392109586182201 0.25245591181368037814 0.60286355870245877941 0.63162381228014885526 0.23093756940324230986 -0.67963326462228923486 0.21513749358611358731 -0.11789130000172709511 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
62
|
+
0.0036472889273629640304 0.91100569544000442601 -0.014611482809575550984 0.24623574351344382216 0.12894295403308592141 -0.012721525543146127921 -0.27582811999940687331 0.076097396289970739569 0.11969108496057445645 0.1934252848855324558 0.17047441370613292122 -0.21337761610619795927 -0.14157321588141313917 -0.30527584597940432554 -0.18689080637138100194 -0.13900788462894128616 -0.039350224216620474649 0.13757788820584812561 0.25556408457416179836 -0.089955336639548938438 -2.6452425148224403273 -0.18686981947291028683 -0.415355780591450785 -0.04822807666558189682 0.1485321115333009534 0.34896355613495388948 0.02702188336410748723 -0.30429443397005939698 -0.095650775127722173496 -0.053038740432365685806 -0.016874446484952006914 -0.28400898324979295673 0.061269770759744712763 0.2924209582872760449 -0.28769000271481631748 -0.16387936609782929875 -0.87260856960704469287 0.13595096224916139449 -0.013261351114914927615 -0.58739884602056935403 0.46693532034044071821 -0.72937756070761394778 -0.014093711484054154484 0.19563139083164654553 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22709458542534211034 -0.3230407231583242722 1.1513020338205020021 0.25209610100236801156 0.60291416859049129506 0.63150723490006765992 0.23080489508534507426 -0.67927405823446251887 0.21437009353512961884 -0.11733191691997514605 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
63
|
+
0.0036451215472602088025 0.91097769999007471853 -0.014576012224015069685 0.24615218339940089787 0.12877230446479048798 -0.012931143173216957248 -0.27575272070008072234 0.076403387416260168385 0.11986370358599457431 0.19346228040715721108 0.17034085072598834087 -0.21348307292940582602 -0.14231986775892724317 -0.30479125510286791956 -0.18679595970996479282 -0.13844678430755505416 -0.039224528212189586907 0.13765068397613214324 0.25539791495023977941 -0.089454728372167877093 -2.6459204511299119211 -0.18867406153405491542 -0.41629960118668524194 -0.048704995849696557098 0.14725867198308598138 0.3503627542802776329 0.027481905184191173647 -0.30218818964153615347 -0.095724650985152925919 -0.053032417905634052224 -0.017269303482742432571 -0.28458550498657791961 0.061460383413169776545 0.29186284605027157379 -0.28786219169891125169 -0.16496140534477293782 -0.87292415125627476069 0.13426825645981613211 -0.013231349052050088086 -0.58786742767973743096 0.46774439808823642384 -0.72965666923025773727 -0.016201337598858681077 0.19596667970274378456 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22708404031134885037 -0.32290435899712227608 1.1508124758780107211 0.25186394824182423147 0.60383083973500395469 0.6314214426074179487 0.23074289177838513965 -0.67893423704433919497 0.21338557004445452003 -0.11749636021079647163 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
64
|
+
0.0036599326044121018205 0.9109479536220611573 -0.014538498765111332323 0.24615169757515592552 0.12865742861918882944 -0.012934462889396506832 -0.27569796400098467437 0.07641908982481107615 0.11989246384319779404 0.19337998751086052374 0.17041933012454524299 -0.21347596836729418324 -0.14245006035056345661 -0.30351807118464518842 -0.18685603780696577458 -0.13891027006989742354 -0.039188923138182715777 0.1377454203839852398 0.25474272410879039708 -0.089473449821125497494 -2.6465274043830402384 -0.18839311017028878559 -0.41747671560107574296 -0.048963064378964672729 0.14602527518888630542 0.35201393752698229012 0.028157208231385490171 -0.30035998591075935282 -0.095878960536251361946 -0.053403698776696172101 -0.017480071721884000296 -0.28487559060913120179 0.061233236869540470793 0.29119152320464053441 -0.28783887115749218211 -0.16513601245534154094 -0.87338860413923191661 0.1342476800102534451 -0.014048751938761691593 -0.58820743055956803413 0.46772563179245957299 -0.72987579281832948297 -0.018092788387790392085 0.19652811149297946813 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22729926762261720707 -0.32306019140249769839 1.1502547365251967193 0.25123226122532971161 0.60477131716458887301 0.63145322781994062122 0.23110368455580534985 -0.67888301923358318479 0.21289557298352351777 -0.11712135428932266001 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
65
|
+
0.0036454275921805681659 0.91090690824380526891 -0.014555241893514160242 0.24634497070715055678 0.12855294191407304338 -0.013144238882641875316 -0.27602478139987468575 0.075973021811276755799 0.12015096082998213967 0.19364198813841135283 0.17024509532972070813 -0.21286605630565488823 -0.1431253955843645731 -0.30360907754699700822 -0.18716749965974521785 -0.13913852806430035414 -0.038903897841147096204 0.13785632510321219057 0.25433368439198156263 -0.089691235363538623915 -2.6438078019711959143 -0.19070691422718472063 -0.41762451380135962031 -0.048936398614043877253 0.14584434818402167156 0.35199187494543604515 0.028312748000635313411 -0.29991693741183983457 -0.096050534128251360833 -0.053496000577885720328 -0.017700783400119175087 -0.28416791157323589845 0.061000636871854141408 0.2914986938303212316 -0.28791247050319723755 -0.16570819049711260629 -0.87344809297602654663 0.1340530280026525356 -0.01360330310242533966 -0.58810495834528087045 0.46776504805431695644 -0.73026026694021417551 -0.019735860003675959745 0.19724483766523265293 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22703968038497410187 -0.32344282435477905713 1.1502261507739799384 0.25126873324446302727 0.60515501174843988608 0.63124182640299753011 0.23105135206624327626 -0.67864292984341056947 0.21350255413560048634 -0.11711881543014014684 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
66
|
+
0.0036645380472060859987 0.910830245792408566 -0.014614571455521101553 0.24687335928293199783 0.12848640332943339626 -0.013056797560045144135 -0.27662961834778593273 0.075467791687883284402 0.12003453096006162781 0.19383706535681718974 0.17007706101891784112 -0.21225834954294808821 -0.14318650473356966946 -0.3042569115367641519 -0.18787431266813328645 -0.13915817329006957559 -0.039135725414431041247 0.13814762711784320248 0.2540523003292290416 -0.089766289091031833958 -2.6480607861221567845 -0.18816055676713258626 -0.41855565849555559366 -0.049112885652021369409 0.14509539571307825123 0.35274026813294440119 0.028663228668194495191 -0.29888593489390063995 -0.096557914163702129873 -0.053575696782774823168 -0.018045594122467915887 -0.28339170070022340342 0.060824266877697326372 0.29145862462211524768 -0.28781585019554795091 -0.16700238098909053752 -0.87325929579830507965 0.13216734158274098809 -0.0128452001685395098 -0.58874557579668973517 0.46868179133390847069 -0.73030946122577311552 -0.020342400175688717112 0.19754686336811172476 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2272936342793809017 -0.32335161132368883674 1.1499124234256674626 0.25120004735666734419 0.60531657643319425333 0.63093990399479527031 0.23108720339022054135 -0.67895971733866344877 0.21399509555449644504 -0.1170415002741499455 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
67
|
+
0.0036381730260561994869 0.91081606715661878049 -0.014662969451413930197 0.24720029754695574398 0.12829984058730239949 -0.013086250809048611751 -0.27709746678329538749 0.075643527586621628345 0.12013671332528230717 0.19402259478298286566 0.17030398462574586338 -0.21240254865806601492 -0.1436458555500489398 -0.30474248068324139016 -0.18836697806057406401 -0.13874279122435403955 -0.03909299995686740109 0.13834904418952509442 0.2544790911266858191 -0.089899621959775549707 -2.6467657961997748117 -0.18992045530335749381 -0.41760147864789814998 -0.048631910592655556991 0.14637806395481706145 0.3511157557440074406 0.028217323842697494135 -0.30076615066303602486 -0.096284590866921052066 -0.053629387826602301081 -0.017653223153499250642 -0.28340848899520965087 0.060736160568425054396 0.29159382196304783896 -0.28772762037314414396 -0.16753476034022057872 -0.87266627195675106066 0.1313473813611433505 -0.011600492557794037096 -0.58846873391629916927 0.46917224184468048209 -0.72993453275200548269 -0.020558585527075852462 0.19695419349404663656 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22699771852056846444 -0.32354228845664001479 1.1502880379420499235 0.25149693752686702597 0.60512153516530287067 0.6311515964700498138 0.23123281412796639622 -0.67917087258439179376 0.21509580409889961228 -0.11760607133452848083 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
68
|
+
0.0036317525585678835966 0.91079104619425688139 -0.014642943745240215303 0.24700634892019754374 0.12825809377360639085 -0.012962772192519914083 -0.27698679902495154659 0.075328559781978013388 0.12004061527995736613 0.19434521795928427768 0.17003836958189272321 -0.21221674104276555539 -0.14329266763458217704 -0.30712367951985175551 -0.18813012882478058474 -0.13948723981309463227 -0.039153108839278583098 0.13825830122028828773 0.25349258697123294715 -0.090113389728533346834 -2.6458705837506211189 -0.18999633096473594884 -0.41852953335229881038 -0.049127384238627891389 0.1452245777050345521 0.35266799320658431816 0.028546040168132506137 -0.29927318968250599118 -0.096520324836908005794 -0.053624730046603993894 -0.018157518925797283549 -0.28363300845626798763 0.060803378035013268266 0.29154389278954911946 -0.28808198281115476869 -0.16683652086544550897 -0.87331115512028822945 0.13195943067146589933 -0.012300957394647604043 -0.58833509968843256122 0.46924662407401845909 -0.73009402655873201216 -0.019636704671231065139 0.19689404319579106861 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22735487848619870266 -0.32298728566593865041 1.1497493704489700761 0.2512940316039255495 0.60534072662108928675 0.63130664420674886816 0.2313182135692878616 -0.67906553261206059613 0.21541824740723813925 -0.11822093686246282207 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
69
|
+
0.0036389566794201725144 0.91081782103600761324 -0.014590461357052022379 0.24650358122263837934 0.12815835258424873588 -0.013219748874608678799 -0.27621495303699661328 0.07585613272305904986 0.12031681003840345723 0.19389226695882250118 0.17023950460790301942 -0.2125462775074412336 -0.14364926962207996697 -0.30680342502824897721 -0.18744898076131841225 -0.13937155679554083521 -0.038878475031861148281 0.13793889753044685786 0.25386689079798568924 -0.089982385923774763081 -2.6445945695478636495 -0.18785858908705832526 -0.41929925720747923679 -0.0492901584734850573 0.14483796218414132784 0.35434681081089092203 0.028936769374873608923 -0.29839203667673430687 -0.096680410569311966973 -0.053724568571104830417 -0.018357874867202954999 -0.28395473609131843817 0.060779390635438572399 0.29139397803241351426 -0.28862694743756905913 -0.16750560712028525479 -0.87322633366434554425 0.13222989839720422633 -0.011731170217623468691 -0.58870180425219065246 0.4689212345536290516 -0.7296728931330015433 -0.018840899545086654127 0.19676997351798222735 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22791546590638506187 -0.32236039359249207825 1.1496352107363794204 0.25077679890022458453 0.60545557143311878878 0.63115534308791576557 0.23143632889597842706 -0.67934155892579750624 0.21496640834473679238 -0.11848969274043114064 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
70
|
+
0.003684758716521706768 0.91087071026725185963 -0.014571521864625578205 0.24618376488638743504 0.1282374351863770634 -0.013005016427693444347 -0.27578915432249473394 0.075962045997203880843 0.12007154930845806429 0.19370479172438584414 0.17042640689646512686 -0.21285511955645103344 -0.14288633272509024263 -0.30667458290248705843 -0.18709848724427052824 -0.14057724420724984626 -0.039055103500379183268 0.13784966473211623939 0.25260274450477077091 -0.089887444301637725586 -2.645209535415960822 -0.19133800488961927311 -0.41822846323009094105 -0.049007563936871764709 0.14559592351232264473 0.35317811158169587493 0.028558121080647886486 -0.29975410725486495434 -0.096060652832196308237 -0.05380407455488125934 -0.018152121096681662904 -0.28456566741639177653 0.060768729402141077878 0.29150139029928279211 -0.28834128554173393821 -0.16731265600394870652 -0.87306874720220717379 0.13173351647699535483 -0.012505130347234251487 -0.58881602127484056197 0.46952268691452814231 -0.72958221577709292394 -0.017058044037674267857 0.19681085967908773515 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22726968171521014228 -0.32303821765629381346 1.1500226091852008281 0.25097086855646061343 0.60619242044081711462 0.63123110366831802764 0.23156346414062839445 -0.67926655833021198916 0.21418480671340114907 -0.11902365182464617888 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
71
|
+
0.0036807844924414230212 0.91094606738711281224 -0.014534489851745248379 0.24565410871428408623 0.12829485528130479821 -0.013027983652954652077 -0.27518199106373153473 0.076292677256356161708 0.12008552789215275192 0.19354229867106501062 0.17042039988713117427 -0.21302179743860052974 -0.14172434829786956234 -0.3062972083511855681 -0.18636657318284421958 -0.14039170796520564211 -0.039077142195756739418 0.13760705836828260318 0.2526055488469679533 -0.089976620678403881892 -2.6413893991473358369 -0.18757363758082959415 -0.41668041553308748925 -0.048320343446594388181 0.14713194035540533289 0.35168686596365733577 0.028153875129898246754 -0.30212122075236830243 -0.095515798819305289258 -0.054021461197330034043 -0.017352336184015510617 -0.28492727676087037381 0.060567665159524892993 0.29150274704802708881 -0.28792428241580592108 -0.16584075225402425402 -0.87280136010921227641 0.13363226743882899994 -0.014163920499053378466 -0.58846418515175213937 0.46863971396324377583 -0.72940499732535268862 -0.015677302057932437224 0.19670733816068150523 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22752847396808939529 -0.32293237123505419417 1.1507012061383175006 0.2508241150965566657 0.6055618483686874276 0.63137312638709597312 0.23154731577075329807 -0.67903930866282968815 0.21361559693949538907 -0.11868245624424593465 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
72
|
+
0.0036859288615705958908 0.91099413009233476402 -0.01460396190814070537 0.24588147240141244865 0.12830036165153524408 -0.012892381468691300681 -0.27544389381213879586 0.076319658502377915599 0.11986821809659968519 0.19347429252668055244 0.17052159163534030828 -0.21302111395349340728 -0.14148395479218045523 -0.30492843391571949896 -0.18672976545581312924 -0.14037008383684335122 -0.039241259578454382173 0.13771621782124127131 0.2530324415601017396 -0.089993671298358737798 -2.6422591019456653783 -0.18839818330262825263 -0.41425114293106068963 -0.047544255140655834746 0.14961453030995244817 0.34814802930367061418 0.027013245755562829281 -0.30586278369696223711 -0.095127752461295053688 -0.053705872980787501547 -0.016981577582003044152 -0.28446989877257600199 0.06065466339719459421 0.29253880972794976678 -0.28763786700264215579 -0.16667201691748403936 -0.87157137177870558364 0.13182621107059758203 -0.012215237920139409428 -0.58840002373180544382 0.46980315829639668346 -0.7294183352845293733 -0.016139386794956082222 0.19667069537232392817 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2271048142485696808 -0.32284785097327356462 1.1513165588090137348 0.25079925319938473072 0.60492600840621613134 0.6320452195325357847 0.2320984528139117542 -0.67924644439084636005 0.21320193901087716726 -0.11863548326827856594 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
73
|
+
0.0036759948177699560551 0.91099329469062473308 -0.014607392375094051598 0.24583314953083598708 0.12837300934635004213 -0.012777451281393226862 -0.27542847354161081874 0.076603674041651304005 0.11967826889189212003 0.19354992124499101336 0.17078658323620832249 -0.21327252538690139039 -0.14253316142739316796 -0.30718996423018163355 -0.18653930254423062296 -0.14007752045459220813 -0.03937609972544073994 0.13760854713849918207 0.25336014018832730965 -0.090264060594234404866 -2.6416230529693027762 -0.19138743815140815685 -0.41460975171125269423 -0.047403727103907236651 0.14936259101244392378 0.34884340703793426108 0.027381195698777751474 -0.30565974613608148935 -0.09506776546244802284 -0.054106228640394236906 -0.017031614177267302007 -0.28485686246439811953 0.060353395463896980511 0.29223278349643422303 -0.28743281509875923119 -0.16690298806070463788 -0.87171913804804090908 0.13224859436012967318 -0.012537978823098049758 -0.58832380846411458375 0.46931309045168106975 -0.72927142407477585362 -0.016442292030878477571 0.19691751949033184377 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2276001672882362048 -0.32295989766758814721 1.1511726609825982948 0.25048108251243267341 0.60460283947045079245 0.63200590221937591462 0.23215744452886094562 -0.67910949345942916988 0.21342920799147283017 -0.11776157490540828388 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
74
|
+
0.0036706471889212236893 0.9109588723933763621 -0.014547544151290753289 0.24556492966245724308 0.12845348637067663389 -0.012674763266658428326 -0.2750186133699115687 0.076357959011623149914 0.11964392921997042685 0.19344332860045151956 0.17045411249450817537 -0.21327350524716878755 -0.14113338569344210938 -0.30764172798735001102 -0.18606228217539183545 -0.13969715418372199989 -0.039476371632200808748 0.13721196398783699899 0.25413337886259690368 -0.089676059857343212722 -2.6425734860384131331 -0.18667558211076420993 -0.41870255826620594863 -0.048909400062314728475 0.14549827203936896436 0.35483175318994364389 0.028922708758234903781 -0.3001259831443166548 -0.096002060478701883861 -0.054232806937866744057 -0.018383315205623692451 -0.28536059935334090465 0.060462338582001430576 0.29150301149577056981 -0.28824532010009684679 -0.16743442067327252154 -0.87314506881879050404 0.132229894703394385 -0.013412184798745853051 -0.58880757992423227165 0.46898433473921818937 -0.72974229896566589204 -0.016817848931127383355 0.19703769672771112575 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22849223327357762181 -0.32213319192767914112 1.149720058406196399 0.24977147388751275159 0.6055756455196462662 0.6316191709583693914 0.23182800711661583071 -0.6783908822248109205 0.21349258130588183446 -0.11672273118509061962 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
75
|
+
0.0036485854965637911501 0.91093068885974060045 -0.014532913755364727099 0.24563118266622033237 0.12843447039377592356 -0.012895993844380955473 -0.27501022116211198965 0.076623077508096243404 0.11994316884652021782 0.19319986944949296692 0.17045976895333844747 -0.21360916629981691051 -0.14077396978231546121 -0.30749839631431713505 -0.18632676104584272592 -0.13913604332160106614 -0.039198395226424577464 0.13766814231877994024 0.25471555144329255382 -0.090341321131755220053 -2.6405794538756857115 -0.18848101357313809534 -0.41932743254533355604 -0.049311339754391822487 0.14447480883371849325 0.35566501152243901185 0.029231083545449468297 -0.29837285474904862159 -0.096203241130818642479 -0.054269154499785553225 -0.018875539293104745542 -0.28536471003744934283 0.060467663275937576228 0.29136885324068334535 -0.28861785987895266503 -0.16848921972753524989 -0.87340043590158555897 0.13135554208378039109 -0.012480599061232527935 -0.58903091812824226459 0.46916723950591482373 -0.73006648253540984417 -0.017339471901069575255 0.19732972848669219634 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22867502082446497513 -0.32182680678188474444 1.1492759062161288508 0.24966254194716286374 0.60533250802053517603 0.63129484742661767793 0.23189646361185725643 -0.6786638564577811561 0.21424934766962466792 -0.11620515223608031408 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
76
|
+
0.0036955912038972526211 0.91094800034978407055 -0.01448577556556536125 0.24542302657666953403 0.12850803595253509903 -0.012880730286801181719 -0.27475465710508839567 0.076703659576501062589 0.11983389333532257215 0.19314404680215269128 0.17100243133501444315 -0.21357840867344835001 -0.14242270389743880155 -0.30780129577476661451 -0.18608208503182852023 -0.13903527492640149754 -0.03919710122769095445 0.13769133856351178924 0.25537033119980101503 -0.090310186425947971967 -2.6411154178356128774 -0.18823738315443958036 -0.42208557538626828576 -0.049940505194567892666 0.14303601721926589851 0.35951728682016226291 0.030079672427816440267 -0.29629097116325980865 -0.096311005389734888338 -0.054456422868910614454 -0.018985647641330771068 -0.28611892143510170294 0.060560770215241824244 0.29021773876500295275 -0.28870970703270620872 -0.16740828524219938944 -0.87438381207201953949 0.13314440792780155021 -0.014203547376451962012 -0.58882394997337039744 0.46812346542810151506 -0.73057706905225638927 -0.017387744605573997314 0.19809053243783877885 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22864904734581958934 -0.32178704201704255716 1.1488122703617664744 0.24916771027650347348 0.60612967174634535539 0.63084470311968943168 0.23187631781375139806 -0.67865422612446080208 0.21479346729781745307 -0.1155671548484637351 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
77
|
+
0.003682520863014888176 0.91095347172530305446 -0.014467456920604072207 0.24545375024656693186 0.12862280424096794729 -0.012918677295017303927 -0.27499774627804701721 0.076534741734804678792 0.11989516754538223631 0.19357446944250805698 0.17059572000609571352 -0.21354054590885704346 -0.14145879034641578587 -0.30575229998225950112 -0.1860012607573750254 -0.13851451359939170871 -0.039221590445232719369 0.13764587066626651768 0.25537669954011144036 -0.089815879987807739626 -2.6437307123371049933 -0.18357309234937205233 -0.42511868175301947836 -0.050784542696692788755 0.14102452764978579136 0.36365234479053620831 0.03105314057456791399 -0.29336057921873448517 -0.096979430676873951134 -0.054628531359478690876 -0.019556653399588376507 -0.2861930682446655605 0.060514710653274461638 0.28956052113744867871 -0.28895152585187955374 -0.16803938062204634707 -0.87481869455537941693 0.13268267308038325658 -0.014321678684141931487 -0.58944851760368055515 0.46828231441701528848 -0.73129188559800295533 -0.016896088294648226036 0.1988401353024917273 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22929250621303570723 -0.3209338649626550799 1.1479114304863018425 0.24824378686989687082 0.60584520342547121263 0.63054639568212766942 0.23212132231823029427 -0.6788643655462031079 0.21570888102984031587 -0.11476564808935588169 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
78
|
+
0.0036729491893465163362 0.9109331251961926279 -0.01445205060056493733 0.24565895619875516287 0.12879048837068643452 -0.012852414595273102885 -0.27517386792480347246 0.076532847548432841878 0.11982103248841634302 0.19360462994869992448 0.17026958270825526265 -0.21370392498570045525 -0.14235223434039970258 -0.30296589177157778883 -0.18620266715521863188 -0.13915867221032188206 -0.039171560473066309449 0.13767861372870845993 0.2551903624135372084 -0.089909292186660050294 -2.6443560710925626545 -0.18477492657949950994 -0.43097880489302420326 -0.052890611996011534235 0.13595246990841036716 0.37157725409370528924 0.033060645674326857857 -0.28592334110190231744 -0.098634646377732587696 -0.054861161605171473998 -0.021445458865866365294 -0.28606529547344289321 0.060465996347257008892 0.28868014670506730868 -0.29009816084579087558 -0.16889334840187844589 -0.87681697723600782179 0.13248772391669857984 -0.014555633793372704451 -0.58994038243637392238 0.46809299690676248185 -0.73136695179131683275 -0.016565253866256856446 0.19911952002760108238 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23050369656133376517 -0.31992860167361614199 1.1457978390006646752 0.24751013179451272772 0.60690219611814300027 0.62998992264157815946 0.23191350703659510679 -0.67898433920004053199 0.21549728685027869091 -0.11365228053070826342 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
79
|
+
0.0036512924825934408961 0.91088113544384330389 -0.014467307074300699704 0.24615740367995428417 0.12886005547452414333 -0.012963078157664830251 -0.27570989379575028266 0.076135016251097129003 0.11999159011408498665 0.19361796922019006151 0.16997956176289338859 -0.21375396801635659916 -0.14268037347052009434 -0.30502696649322280642 -0.18669164139792657209 -0.13840710641751929888 -0.039192275453339371627 0.1378055198021058414 0.25553077773468602096 -0.090067908887390968342 -2.6473588506388678887 -0.19035342142151390199 -0.43383471495384345884 -0.054194270051098725194 0.13288112792994064004 0.37478749243860309814 0.033986238645320826501 -0.28121860238403439958 -0.099170366309862742482 -0.054781314262975493168 -0.022778673556599033506 -0.28604618004386461738 0.060658032474793434352 0.28831510477129901338 -0.29051498475454784476 -0.16886238379829285328 -0.87800425408575177855 0.13215871077552251989 -0.014777365882458122839 -0.59057964511348537417 0.46830684260186750123 -0.73103614695740248841 -0.015982491275171459982 0.19884370366759593352 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23038230616141022744 -0.31971426128996294214 1.1444015877664428515 0.24737431836004922237 0.60733940269806852008 0.62938691843334204634 0.23159631043734610345 -0.67877561631909966167 0.2157571206810539044 -0.11253147463274817963 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
80
|
+
0.0036537045073915062204 0.91084894766481983019 -0.014509662299634571922 0.24672457851853632493 0.1290357475399496745 -0.012948999322704116133 -0.27643927747196206379 0.075476205864480325203 0.11999698712753661956 0.19380226774963538183 0.17039724369058237285 -0.21324789822143516704 -0.14546912714124812793 -0.30541805482333939104 -0.18736921772176939882 -0.13883597378608919515 -0.039184034304131899751 0.13802353207809878177 0.25517275425061347605 -0.090632711987801997666 -2.6460893164684438084 -0.19062488910763733529 -0.43296167814286951048 -0.05409230263939330402 0.13323921013562989302 0.37299068324606654556 0.033586201145489880115 -0.28179805603028340588 -0.099119719484702439871 -0.054588951394881284063 -0.022859671729154165676 -0.28551808416796731205 0.060707656099009812967 0.28881754703964040987 -0.29030676956380918607 -0.16729757596063540848 -0.87828705698168407778 0.1335181205463013554 -0.01572595386057498712 -0.59018567152108258878 0.46804610633134063891 -0.73099118575208965609 -0.015586542607648841072 0.19832745481863098269 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23024228898159829204 -0.31961968022718822979 1.1444445662853721668 0.24751150436004304423 0.60658456316418829513 0.62924433272344459933 0.23150065555745735768 -0.6789679974343395541 0.21615600574411522605 -0.11210770917572968064 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
81
|
+
0.0036625874542753236555 0.91083330579481291966 -0.014490985240845763102 0.24679815347786177027 0.12905597820551639732 -0.012957168369714723924 -0.27654012364900354415 0.07523138039754842521 0.11999930431073879689 0.19400042481396867489 0.16983647822779859848 -0.21307020152268135726 -0.1446764980163559311 -0.30525887808133084222 -0.18747972575550125862 -0.138866821833714571 -0.039142720663893577904 0.13798540678093390577 0.25537563081427577805 -0.090525037936827632001 -2.6474395900383527191 -0.19032715469522276663 -0.4338976509258964942 -0.054419402838132617528 0.13220369470401871492 0.37428492846050476217 0.034028263273684987433 -0.28025949917786197041 -0.099328358754437878764 -0.054633801054643077455 -0.023091277200915583112 -0.28564945310801198586 0.060736585770861946376 0.28850147484243793272 -0.29057047506867533793 -0.16768402087355313568 -0.87858016893309431872 0.13325920424621967575 -0.015890104769565704945 -0.59059375132743818781 0.46816394172208886104 -0.73107733934658447605 -0.015089962932925981426 0.19785678037186865685 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23032050558377462068 -0.31990614705960912501 1.1441664809782481349 0.24741708500830847384 0.60758065712401165825 0.62889999817642250335 0.2312910616838027289 -0.67902005940961518426 0.21540195182234586624 -0.11107881013275749948 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
82
|
+
0.0036824057294107264034 0.91084078654798594776 -0.014421962480317027447 0.24638079476762678177 0.12921491033322424213 -0.013056699017486659425 -0.27599283411148256562 0.075320346703252882836 0.12005534490970937167 0.19372220496736131112 0.16997064845337675476 -0.21307121544207288655 -0.14409713937257340177 -0.30598354174788128246 -0.18691791662109730199 -0.13918599747951296286 -0.039066782349929635165 0.13791413867519475289 0.25534035692675871587 -0.09054347486510026799 -2.6481222369070471778 -0.19464037415760715444 -0.43476025533165846282 -0.05473565353768999886 0.13104035380954984213 0.37603790794171781942 0.034614941449898885273 -0.27849235196931915182 -0.099421580055251979058 -0.054832449416497439088 -0.023295446633027041411 -0.28608296103340125072 0.060651794693631598532 0.28819752982383500806 -0.29082857803977824052 -0.16933023138438055288 -0.87848544934643002513 0.13205851258582843033 -0.015395534175730401366 -0.59149678545028105958 0.46853059340458058646 -0.7308518929433833744 -0.01557889420300123326 0.19818781870517107602 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23116406676368381201 -0.31894599188254507682 1.1437866188234100395 0.24639431677049239422 0.60712070098904502569 0.62846356753201459977 0.23090648526202653401 -0.67840655240675495907 0.21447327481747088807 -0.10984272571320886913 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
83
|
+
0.003686783821940260112 0.91088541242346265925 -0.014383482549749530138 0.24605853779356881561 0.1292977501534279261 -0.012904431198124578437 -0.27550878324386568474 0.076177152386177129917 0.11982429875201662528 0.19319136067666026202 0.1705083264077030536 -0.2139400976216707384 -0.14267343733796533645 -0.30634236310274509663 -0.1863816664521267541 -0.13999769382127014161 -0.03915324232152150169 0.13755399538603485521 0.25478168907013015732 -0.09030014374173313263 -2.6465521942014920143 -0.18668926144944730794 -0.43212745889068199245 -0.05396351420869419796 0.13319268306286208281 0.37282528443077728175 0.033633072819903256367 -0.28191034373831963533 -0.098989898859653965846 -0.054508279201400847147 -0.022903658917334104861 -0.28572989759655231801 0.060722152326809900047 0.28950989948641203675 -0.29077095803139718644 -0.17000320426694617848 -0.8775542074909196133 0.13109631313984582146 -0.014505071176473887176 -0.59140905660653964038 0.46885620138824446457 -0.73042243990138044918 -0.016055237115150753496 0.19817293823878254222 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23034871297110603994 -0.3199179775426289063 1.1447796419562865644 0.24697441578373247051 0.60786111011757026912 0.62870295925622865507 0.23061851630080612563 -0.67816495025251155582 0.21337441557002789772 -0.11010917770882240607 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
84
|
+
0.0037080644462088108507 0.91089199698002287775 -0.014373455060099526309 0.24584553506468928563 0.12928815965089446305 -0.012887600117814328529 -0.27514302234866089281 0.076203263892661549095 0.1197560695957808341 0.19299454375158794917 0.17057685521271248597 -0.21383474781492986527 -0.1435498670010025013 -0.30596029332079704988 -0.18608642860597743307 -0.1401478277379296089 -0.039275285388262637376 0.13742940646197102095 0.25402958605120323776 -0.090162589797280215387 -2.64551121720058946 -0.19262004562470777524 -0.43204843654511415618 -0.053794794643812857138 0.13274441922024263207 0.37314052950813259013 0.034058950131989493282 -0.28125667618490557409 -0.098951602233681962284 -0.054775831965724233741 -0.022860042794955352102 -0.28594467942099915936 0.060500576462552420332 0.28937320358598833669 -0.29090545142388152255 -0.17104155929887185361 -0.87758670293261797912 0.1308540820397533222 -0.014364744074278986211 -0.59170721420885385999 0.46886500653811163941 -0.73047881346274667891 -0.016334985271676719099 0.1975035661628481154 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23084011613126445561 -0.31966092354599190406 1.1446152312014330477 0.24585553205893845297 0.60801791680935157736 0.62868797642829477024 0.23089565391402896988 -0.6781534592898721403 0.21241422232636011924 -0.11004211500655333711 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
85
|
+
0.0037208880057590385318 0.91090414351013759831 -0.014408556655830961901 0.24597678798788044641 0.12942496934575847822 -0.012777043438995085156 -0.27531624946712252022 0.07597079250031461839 0.11961320001057890172 0.19308700973316117455 0.170476717802882205 -0.21370171750575997494 -0.14335220303273643605 -0.30482141040036014878 -0.18614679523012470086 -0.14041796753095009409 -0.039435784022443402808 0.13732547762628630195 0.25404161926766455348 -0.090518271153615950664 -2.6463600620101335181 -0.18956197696702073441 -0.43054660233402552993 -0.053243038006532274198 0.13425207534376032426 0.37102949889361824809 0.033433672209912709827 -0.2836010511172131765 -0.09863121771049157549 -0.054659770801723628342 -0.022378584983630329941 -0.28590869778206434715 0.060540229273419614298 0.28973157426538537207 -0.29044630199441784368 -0.17036554345292098667 -0.8771415187552704662 0.13107085814120558731 -0.014503164458954777641 -0.59132298174417707859 0.46895578010688626636 -0.73060924948357008901 -0.016849527227674514218 0.19760187626939906824 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23060169943316471963 -0.31984951589466420474 1.1450635201889838299 0.24568645552408333033 0.60780609929396556268 0.62885034867060152219 0.23115461949055551849 -0.67831041089502897012 0.21228020216295587219 -0.10946206900452344624 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
86
|
+
0.0037179391181512890657 0.91093335869895253332 -0.014422459896606910565 0.24591795065843294332 0.12945625214792760849 -0.012774349110344753247 -0.27523462397652537215 0.076124018616891234168 0.11961885583894049656 0.19300243614461837227 0.1705195962630250972 -0.21375243931396634145 -0.14251294702318462182 -0.3053083325495176692 -0.18607137446856167329 -0.14022932230503501461 -0.039469789472159746979 0.13732070402920898422 0.25452789646802598256 -0.090329852742295421719 -2.6461955596037047833 -0.18726079597641570595 -0.4307781286017008382 -0.053123534483572217024 0.13492963178981082217 0.37150271876160445572 0.033297606813368844925 -0.28459684923030875714 -0.098760478838597107187 -0.054540661189759420679 -0.022032622642377607675 -0.28586463591652389038 0.06065834511678562524 0.28957700014263959565 -0.2905931887152279347 -0.16964010858013608973 -0.87718911539689570223 0.1321357725627463342 -0.014924266936928073587 -0.59079624861569590699 0.46854670867357683939 -0.73115052738626429285 -0.01726506993961175393 0.19715837764982227509 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23039597425579702583 -0.31994634089492279827 1.1452173652590713626 0.24551103569211774058 0.60800317985156793199 0.62878622435379982747 0.23122958045013566886 -0.67857166268321311708 0.21238722409528873469 -0.10880996247739438409 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
87
|
+
0.0037206182505431528197 0.9109371744920853331 -0.014430984815233678306 0.24595750246504355374 0.12951660620231369991 -0.012824787941198952795 -0.2751396525808890714 0.075982066522229232963 0.11974387616148771118 0.19250944714019294079 0.17097863392531728599 -0.21411337253263340585 -0.14304591753047418701 -0.30484711717282469978 -0.18604859879430554748 -0.14039237220923239668 -0.039320234001067960738 0.13709497407312404293 0.25461649334931074629 -0.090558486080918029759 -2.6426631603977388529 -0.18680715640908548969 -0.43009347758370258807 -0.052774967424786954628 0.13561663916779259642 0.37058964987740472541 0.033125497589824540179 -0.28561352237559611833 -0.098242102804820097273 -0.054737009210821051253 -0.021029893862802025162 -0.28668309973889649633 0.060709458719230342816 0.28837784039631969568 -0.29031896443294963328 -0.16966698162070503741 -0.87681077418641351073 0.13208830141501265443 -0.014493306927094051773 -0.59078715724783914531 0.46892777133532792533 -0.73118027951053210511 -0.017124839132982842826 0.1978849145160346823 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23057182644181165032 -0.31984552167768431907 1.1454960314406839039 0.24549890891451336961 0.60707414215010924163 0.6285093921252926652 0.23114681457930857933 -0.67845731232228345675 0.21241126436353977014 -0.10813790342102615194 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
88
|
+
0.0037457821302705690894 0.91095989670534838201 -0.014407581125647127285 0.24566040140648104373 0.12950468016498181689 -0.012890893848092655621 -0.27477211151814007195 0.07640365872953856774 0.11978840185509440075 0.19231077842011248813 0.17095988807681244959 -0.21445267454596311785 -0.14103426005071362237 -0.30567177915392718113 -0.18565489440947322008 -0.14011648763771905601 -0.039268772879347206561 0.13693946973776657816 0.25493752305206535125 -0.090594350555358166277 -2.6429041434310773795 -0.18720147413676513359 -0.42984730815436361651 -0.052775560224353493255 0.13577411288920979149 0.37074909050363175078 0.033086221420590720965 -0.28566971901528553923 -0.098377391173814637826 -0.054491317345690924723 -0.021320161504069009423 -0.28667790919255742299 0.060887312273223061221 0.28894420502557427444 -0.29062610131541205538 -0.16982731890774538375 -0.8768219767990541591 0.131948561523633906 -0.014052408535722930166 -0.59081665653629134027 0.46925162322129054804 -0.73124668424515892884 -0.016612394061054667344 0.19847770267282421885 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23079418596833869981 -0.31961637807164633429 1.145395221539917685 0.24527235521300003174 0.60701261090382652164 0.62858040051922625668 0.23133376936274427371 -0.67857291828868426808 0.21178077402509240534 -0.10882147570483886867 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
89
|
+
0.0037610454532122517685 0.91097645945864413886 -0.014400880864566856926 0.2455458483790174673 0.12948368821323949507 -0.013024848786155285296 -0.27464267169133477209 0.076564196556725069853 0.11991030214443067214 0.19227867108748597502 0.17154670052895590326 -0.21426470743652165085 -0.1426872293898806543 -0.30969447792112747564 -0.18549562930997612331 -0.13939971057739450333 -0.039101110721964982275 0.13689944689881541895 0.25610127838497326325 -0.090344110011249298409 -2.6420004490736372915 -0.18867025113996954699 -0.43005707201570703146 -0.052555355050313168341 0.13640592020838473997 0.37110360299784217464 0.033082100820658384699 -0.28644511196601080139 -0.097996434669180648713 -0.054576257292241657504 -0.020752078194195337085 -0.2872618542238098982 0.060931993092137197443 0.28846762638959866365 -0.29034523262545919309 -0.16988356606086246758 -0.87638471960920527604 0.13150470393588395424 -0.014598353320796612909 -0.5912236906328641739 0.46936288561939992769 -0.73065945089293171666 -0.015543557699409243575 0.1991859608575125562 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23043840239371099488 -0.31991513660951453879 1.1456372947837931697 0.24495928216271117828 0.60801401892941708827 0.62870373907837751037 0.23134093371420239027 -0.67841762878268185855 0.21096390116179283836 -0.11046352646237131423 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
90
|
+
0.0037590085997999916727 0.91096032959614559044 -0.01437237637524428624 0.24551507303991593201 0.12956592374853823091 -0.013107301787872937052 -0.27457886707330403375 0.07672133686436281852 0.119965554548378317 0.19220759916849461391 0.17125208944465100669 -0.21459065890673734156 -0.14106804505249279091 -0.30766307584417257326 -0.18525740610069971193 -0.13973501110654434898 -0.039028117645604508412 0.13660663154606941805 0.25538217178291455767 -0.08998611824730011477 -2.6405387462293048451 -0.1888457960141460279 -0.42991076857315907445 -0.05289164747912486475 0.1360111074237551898 0.37085244157539809517 0.032913812805793259131 -0.2857686617270182583 -0.098004234521144276138 -0.054118218699820863637 -0.021418083346186091165 -0.2870253252971011193 0.06123095021310344388 0.28957979030621372463 -0.29057796173662259198 -0.16916945712174583094 -0.87679281309490664231 0.13180650488074452387 -0.014989120381959673833 -0.5911877960953245692 0.46932088730088833417 -0.73054027763016982089 -0.015001491874645112024 0.1994813155007260641 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23017944769675044436 -0.31964027175751730248 1.1454337158998646462 0.24505513435151918267 0.60788328182331730076 0.62852488777948622989 0.23140336589104595899 -0.67838676338532344356 0.21177773352673157081 -0.11185671473130183451 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
91
|
+
0.0037528137826622850505 0.91093405229837887127 -0.014397408921165987666 0.24581719080457037352 0.12961968837053366999 -0.013169319486767715188 -0.27494186800970260576 0.076523120830692736849 0.12003291418544910496 0.19232651250266280529 0.17111411424303485385 -0.21463499560239196473 -0.14187447929819049786 -0.30687791398271568877 -0.18586428070872534901 -0.13938647371655005225 -0.038909256170866400593 0.13711820040238692497 0.25630299882994012073 -0.090203426257847663106 -2.6406015994994405105 -0.18583430109098977856 -0.43049363719076000345 -0.053053292864896031689 0.13541905858099587134 0.37148512275384049097 0.033197724563870364967 -0.28479662673235367487 -0.098208447857850628138 -0.054221111749505598865 -0.021409251354746448165 -0.28708509096651968484 0.061184782037977163138 0.28922498793213363699 -0.29071109835180497516 -0.16973945423243616548 -0.87690605723614767353 0.13117120972650639366 -0.0147767958825389574 -0.59147638160041915434 0.46976593545508404937 -0.73036671059457780597 -0.014955793885394266796 0.19937520399847433183 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2306063048311596253 -0.31949228277788482844 1.1452318255102191813 0.24490744645876505459 0.60781290669308418728 0.62815079452150712758 0.23142444023839334188 -0.67811984433487759727 0.21281315377343565376 -0.11282118201238140742 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
92
|
+
0.0037459119632634115156 0.9108769898096461537 -0.014430810616620663028 0.24638632549466582544 0.12974313962468989048 -0.01315487066123259205 -0.27557390412068449859 0.076321202058371354071 0.11995958357067250388 0.19238480128879556497 0.17131484108108485653 -0.21433204314206219521 -0.14338031553533084339 -0.30597605896301410811 -0.18636747546582888013 -0.1390583752742150514 -0.039016890055203035104 0.13700248644916515617 0.25641679339578726804 -0.090029083562465320179 -2.6419182908810361354 -0.1877754022095639852 -0.43210358961374728537 -0.053818688087136058729 0.13373736467281729934 0.37313575618359229313 0.033624871437765553595 -0.28228324130302345774 -0.099044378993665749267 -0.053852369187107694548 -0.022441302555346740594 -0.28624490706768029868 0.061373036799819723208 0.28994196130942506695 -0.29092969946004998416 -0.1691360363916936671 -0.87767049349011105885 0.13132668589907864343 -0.015094006459955988317 -0.59159716645712989713 0.46972244844163535404 -0.73004224009360429992 -0.016394638776907031336 0.19928401892917174676 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23085833187878804229 -0.31960968920537291549 1.1446394295813178132 0.24566374320502068485 0.60805768822503147852 0.6274584132076324039 0.23119542108430454763 -0.67844935269964856683 0.21509935482558215081 -0.11315454879910347152 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
93
|
+
0.0037465286172382399575 0.91080091708715182897 -0.014417683051097165275 0.24653529540158697353 0.12974530939443454369 -0.013115654871441848398 -0.27563057024049475441 0.076035310397093186507 0.11992703725140446691 0.19229249552933652678 0.17110949494089544576 -0.21414217573975993791 -0.14396985247018181941 -0.30572397044763571783 -0.18651466250085127485 -0.13963509820396513561 -0.038939280589381793096 0.13691641747851995836 0.25628618079733306301 -0.090379719951918222054 -2.6427767570036810874 -0.18955267193219518806 -0.43623874951820484913 -0.055468874019940599129 0.12930187651625649203 0.37878444852780834839 0.035306465950260879083 -0.27565012166786273529 -0.10002986265727788207 -0.054194689000963178205 -0.023773181158085961856 -0.28650171902086468689 0.061301247834279717908 0.28869762964841044761 -0.29181934170917273041 -0.17017247382371325504 -0.87939268148209026599 0.13085100804869945201 -0.015060517727814444824 -0.59212362111387462082 0.46953373495587180653 -0.73057888534376602685 -0.017230689993268544224 0.19987046157532653567 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2320490227422777052 -0.3184092998840502009 1.1427091149092043487 0.24496434174338302392 0.60788690702769232477 0.62664596092589808229 0.23117151377891786979 -0.67836832913002909073 0.21687098628342726947 -0.11225163136954305343 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
94
|
+
0.0037562527831858207386 0.91077978737523923591 -0.014419618079380972647 0.24665907270984671618 0.12984446500148980053 -0.013129542410079993522 -0.27575958337787725982 0.075390062028860019283 0.12000618695538256553 0.19220884529109447114 0.17138233925315030093 -0.21384579184727364742 -0.14440680035531211489 -0.30629606115436386338 -0.18661284670025732324 -0.13916294809433718549 -0.039105196163407372756 0.13712683736191288997 0.2558860851762836397 -0.090245452982445656387 -2.6448695465557841011 -0.18829045794224327781 -0.43357337497615955346 -0.054520544934554070193 0.13140494847920627941 0.37510340625605526066 0.034523461466856850133 -0.27867216776995440419 -0.099545028918323077982 -0.054177185297213478754 -0.023174928545006041186 -0.28598139205932143758 0.061111163658647035812 0.28943571960893704764 -0.2912265308941273112 -0.16978512277251264773 -0.87878363236099177325 0.13118316662439274967 -0.015137748976524442387 -0.59172292621088651288 0.46921313655922936015 -0.73056960183705665912 -0.01733890612669452061 0.19895155741873341015 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23161906648284308341 -0.31943380962484080321 1.1435402429688448223 0.24555009009802658548 0.60762194334020835917 0.62661245880343552361 0.23133639931598190542 -0.67849149786157614272 0.21763481564112652222 -0.11246975034515969971 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
95
|
+
0.0037684995303800651947 0.91082021841491500602 -0.014409934814767103722 0.24668952641088262578 0.12990987546326498991 -0.013056716753935158556 -0.27579714776793778919 0.075925631574507199129 0.11980088582891811055 0.1922408884572465726 0.17083076814076117445 -0.21419395978234431754 -0.14271520723295125221 -0.30474657850294817329 -0.18664014726793465293 -0.139439594510186754 -0.039155775605177821352 0.13701676107494037415 0.2558183385082553607 -0.090018326566145070999 -2.6434413603417596939 -0.18880449374185229172 -0.43187713515621939386 -0.053803457019438893916 0.13348565130118156263 0.37259962331925589041 0.033710023346218476181 -0.28184421735311510071 -0.098753249725292910344 -0.054044465456323714792 -0.022232461190008389468 -0.28608987515948719471 0.061207457538955664655 0.28954708378232707489 -0.290679168755516526 -0.16900345637878527727 -0.87815145633647484491 0.13165689113163173141 -0.015302380657365071207 -0.59129583471043345444 0.46881784258597847259 -0.73065350676718066047 -0.017067268390373192127 0.19930504626752990061 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23077042717854989728 -0.31991714946258537067 1.1443362549269722184 0.2455929503385427537 0.60805454799317615322 0.62686194582823162591 0.23158030015114261513 -0.67837955138150807244 0.2166651910859005159 -0.11243118037440491541 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
96
|
+
0.0037889760048762529364 0.91085483599299865709 -0.014395882654506857168 0.24663108357308699548 0.12997661017752598633 -0.012857451448655686163 -0.27562889495316489352 0.076064671555510152134 0.1195121240449608796 0.19211297173652833181 0.17085117670524690991 -0.21421591911957038601 -0.14280012121697582828 -0.30536275663298456662 -0.18649116640329480021 -0.13959460316486441145 -0.039422667742717347472 0.13691216333895925295 0.25559122297283581871 -0.090087775728637506378 -2.6438756126793725443 -0.18680063493649773365 -0.43137659584318355233 -0.053642915903607313322 0.13357965284678033346 0.37198096238577726957 0.033633196652511694602 -0.28234414054494361146 -0.098340948020605958857 -0.054139733060846149948 -0.021694499440897470344 -0.28639829947048145442 0.061180788209505301833 0.28922611020239052948 -0.29062280484878250109 -0.16894157712687457584 -0.87776281719517990076 0.13198507943439313772 -0.015264253188241762652 -0.59159619639678995284 0.46848354726018692773 -0.7308706455123339385 -0.01704245676192251216 0.19840897799939333224 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2307868686511524714 -0.31981217303325859547 1.1447165243559518366 0.24548202269750557525 0.6077874667301461642 0.62625722368135439133 0.23168514087304442617 -0.67845355375088778338 0.21629136846565902297 -0.10949115482980542602 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
97
|
+
0.0037780836404494901049 0.91088776799429138631 -0.014362718589497345048 0.24649479088865275389 0.13002406416960937685 -0.012810471865029456409 -0.27542845908509594466 0.075922946462244594867 0.11948765034653927031 0.19198870339028464849 0.17135241631789119299 -0.21407899799975113608 -0.14378874022761423124 -0.30620921212602197903 -0.18634390211631743361 -0.14030481887559528853 -0.039353581810162678589 0.13699536381400601037 0.25479007097903610957 -0.090506202362321638843 -2.6434902659447825357 -0.19493444075884655553 -0.4318559751694364679 -0.053832393887811670619 0.13292628445922224922 0.37283392080756960762 0.033928601492107302029 -0.28135085704829171371 -0.098637387137473872545 -0.054098267001890819328 -0.022471672709919759958 -0.28575347980917209512 0.061015973915110370551 0.29023382822068649611 -0.2906071274437090346 -0.16883672469191868259 -0.8782842405599230462 0.13236553005987089504 -0.015099682249785809779 -0.59125625012794102986 0.46821376394286345901 -0.73121983437248017079 -0.016589564815593378644 0.1982386531290974141 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23091357337258641702 -0.31985905844689471733 1.1443259162849588328 0.2452412267222609521 0.60794075683796688914 0.62624273199273206014 0.23194876558643243158 -0.67837318613570374293 0.21530392121674080119 -0.10818248214275816288 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
98
|
+
0.0037620381122775293885 0.91089741981918648239 -0.014405948768430144186 0.2468433555869856133 0.13006921209531843719 -0.012978515808749669161 -0.27583638441465513358 0.075463156604409498129 0.11971855504366096801 0.19197574633063260729 0.17081832560490506356 -0.2140540821475820088 -0.14434207239225024799 -0.30339692632272374784 -0.18673358508261880817 -0.14064382545364678689 -0.039131992209257400461 0.13687979402695477082 0.25478457940667742498 -0.090039649326156406817 -2.6439571114719666589 -0.18736927085796747927 -0.43215868444069638343 -0.054045256808044929431 0.13239291299039965266 0.37301844832202912805 0.034074180026348460659 -0.2803231413195038102 -0.099048254736076646321 -0.05412095908662809679 -0.022922933679025196685 -0.28496119082935666977 0.060784879283492770918 0.29098798227533639871 -0.29079031026773799473 -0.16814044816182027731 -0.87862785266586218569 0.13335754729862636658 -0.015484250913110982409 -0.59134663938210374479 0.46759090221574239887 -0.73142559537783014001 -0.015831536744317146331 0.19887213908807180318 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23094321219484556518 -0.32024403485578889494 1.1441280569531815381 0.24552583384135595601 0.60878440137900047269 0.62611897436269026151 0.23191762761410469884 -0.67816719471929443053 0.21432282173511441048 -0.10652418777676875283 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
99
|
+
0.003757533454022095494 0.91093371456344052195 -0.014380270783893277231 0.24682490281190883064 0.13011508120914760944 -0.012844611139378857984 -0.27568738322884456249 0.075541582354886033235 0.11957291331314702509 0.19177375731000831371 0.17128696838597462504 -0.2140429723571132814 -0.14552990945075855445 -0.30671939616819643426 -0.18669067777215456183 -0.14042554591835768041 -0.039377631367697174536 0.13709354906343024227 0.25461378993427674633 -0.09030158330139038958 -2.6444939053270166696 -0.18658476280986885376 -0.43430794081780810245 -0.054979788841921825582 0.1307026926087512253 0.37595706672170897678 0.034539293451168698312 -0.2778648972386308369 -0.099443879765334947107 -0.054125866521134907705 -0.023542280671827706812 -0.28520920236111502177 0.060907283440059654944 0.29054396510054864011 -0.29144101075713663151 -0.16851787724061592644 -0.87906630325458545716 0.13264280280989446115 -0.015192610698935269525 -0.59187356343579033968 0.46749982798511352522 -0.73111250673116412457 -0.015035742014977166586 0.198976566165415647 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23124737403238024291 -0.31976989454435916782 1.143216844751832717 0.24597365451578440121 0.60917040226436525163 0.62613270815298860406 0.23154370567469528819 -0.67816787072431672367 0.21417003428964592748 -0.10589896255919804824 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
100
|
+
0.0037916316849649842058 0.91096346622777102375 -0.014392122239006753873 0.24697030971146019529 0.13016833021817661442 -0.012703856683515641138 -0.2756549290240852268 0.0757592896440650726 0.11940446439639494647 0.19147097374093727251 0.17123544141251972883 -0.21441963653935744438 -0.14540426880240092666 -0.30632521105871396427 -0.18686338016271392126 -0.14063732306452852994 -0.039539094850583621221 0.13716960334165981261 0.25431420730277187747 -0.090047520167879632758 -2.6445629963883008351 -0.18567170092710591489 -0.43371347590840580999 -0.054643219976662930903 0.13119862751870881024 0.37511546145297114396 0.034454770000319809298 -0.27867122485303741364 -0.099261372653812338096 -0.054341859716854186424 -0.023194758314943813432 -0.28514255019426848481 0.060669790199690709631 0.29050092881398459355 -0.29123794686073894988 -0.16785484560176180957 -0.87912004375028229841 0.13326539470159806666 -0.0160200385291546267 -0.59177223814229251708 0.46738289234651103632 -0.73119794017128192376 -0.013974871066521003804 0.1990093101998010594 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23150573671394850117 -0.31985635986833943489 1.1433564756366660919 0.24610435764127946978 0.6086667555385552042 0.62618550477058487758 0.23151789855951240837 -0.67819168608833424461 0.21396959397141152026 -0.1063001600838096028 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
101
|
+
0.0037941018410532025874 0.9109701941464303232 -0.01439334781540113975 0.24672806740242220203 0.13027101542738148132 -0.012891357920987632502 -0.27546120756037056898 0.075584594706545576992 0.11962582818820945152 0.19151271978044642763 0.17107489892227828454 -0.2143726850946345297 -0.14492988715115159848 -0.30478269279632452804 -0.186454420606245036 -0.140720934413868487 -0.039334149841957564975 0.13686097112614348248 0.2543383679350110782 -0.090306298173077448332 -2.6434084004270057555 -0.18507399892261558461 -0.43160270262278532805 -0.054219407800122708385 0.13293289948607403539 0.37257090053193242518 0.033575147476555933235 -0.28088860411305333065 -0.098818004512935098127 -0.054144992205118112893 -0.022742191708758123514 -0.28515344440731837938 0.060843324885787412881 0.29057140415626120378 -0.29118193963404159774 -0.16825444562342750654 -0.87845898615331430292 0.13194967379718128275 -0.015261247259813516541 -0.5917943660983274734 0.46797082208395396341 -0.7306548785997304396 -0.013957823149658167214 0.19917175795439071018 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23126112483974500811 -0.31950817288187460807 1.143766195233686167 0.24622458909931055349 0.6082218826883499796 0.6266442741003609429 0.23158399345658439716 -0.67838303009878264671 0.21359373400630643491 -0.10857485587790231818 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
102
|
+
0.0037863261898547942268 0.91097494606846596277 -0.014336940010929078229 0.24635379670518581241 0.13023791069664014675 -0.012886487855275210318 -0.27488544880158088946 0.076360146174937595931 0.11960574045027905221 0.1909565198975566036 0.17166353370953038593 -0.2151191307027269517 -0.14305643761554270865 -0.30550210467716210072 -0.18580978559361849278 -0.14086387316832621464 -0.03928046094773895297 0.13621824746365224224 0.25452304294117761296 -0.089769531670780708388 -2.6440805421817903387 -0.18756171425679324383 -0.43108460811331300588 -0.053578593436794837157 0.13400706362728209697 0.37214013618990998689 0.033567194501356450997 -0.2825481655194893027 -0.098033506555005298089 -0.054562816730984647906 -0.021734241119445781021 -0.28559368177268978917 0.060546064859548345827 0.28986745944135566821 -0.29034889180631595629 -0.16850970865735787063 -0.87777901017277859541 0.13111212156948437446 -0.016637364246384643562 -0.59228488426345826667 0.46817985084256130701 -0.73074686517200526659 -0.013579940002088217166 0.19965140848665421935 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23076655014238298125 -0.32060078029457439452 1.1444130095385323109 0.24649841760789173439 0.6090945169613721788 0.62671056050380846703 0.23149630167058238284 -0.67809268931167376859 0.21326353681135132301 -0.11008242699179536517 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
103
|
+
0.0037793793700942679772 0.9109718538880730021 -0.014330483031979731126 0.24636402835653872789 0.13033729986892148012 -0.012941249169444791686 -0.27493955074038745057 0.076292663366933827218 0.11960183344024973018 0.19093370133971815372 0.17183722781328142348 -0.21477761055907768073 -0.14340362192720162993 -0.30624411270383949946 -0.18573020992932512407 -0.14062513936262605041 -0.039186428845126249076 0.1361225565305530516 0.25543939716669600282 -0.089440225242074872236 -2.643421662295223129 -0.18372023919762067723 -0.42982008474828892197 -0.053332851103654987934 0.13493999867778005974 0.3704293233249869588 0.033031003227781643994 -0.28385399773367020471 -0.097688539092706583311 -0.054461858499735039951 -0.021352548416943440551 -0.28545664965196243523 0.060593347535394054271 0.29000499625532683012 -0.29023764650353089944 -0.16844819249670625605 -0.8774714454295354793 0.13043964473390523562 -0.017327960365108835417 -0.59236611376887937652 0.46815129891669765572 -0.73100924113224496903 -0.013867035791122013164 0.19891897578601819285 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23083512132597330813 -0.32014568489066541623 1.1446993608311357704 0.24643009192187204093 0.60865448464369331649 0.62696883650586010539 0.23177395511817161511 -0.67834309493590205786 0.2139673985915024057 -0.11092510766547424017 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
104
|
+
0.0037723131194480718879 0.91094807938222743804 -0.014329047230262155835 0.24642329278574875984 0.13033320613939597399 -0.012811763289698777438 -0.27497352421164794611 0.076305120382830882164 0.11939124702742509587 0.19092864122292185769 0.17204406108717962276 -0.21465789935978363268 -0.14362532641237088504 -0.30827481265027739665 -0.18591690227200613483 -0.14015944864086124499 -0.03940207593463009722 0.13645348721623165589 0.25546433007459667941 -0.089969256852307666339 -2.6434823097289403826 -0.18598795740142334831 -0.43037117849923595125 -0.053688781424538797871 0.13395091673137601851 0.37123583618104150084 0.033298543081796271037 -0.28250995529482336721 -0.098189846950202760989 -0.054288358156848182112 -0.022345012937330113734 -0.28462037336324103043 0.060482016997205956255 0.29143036914012787619 -0.29048442054505951848 -0.16854595647605682962 -0.87788164899996035118 0.13008629660187195909 -0.017830198447850525989 -0.59258921672145858928 0.46797032856025816416 -0.73112840221752606329 -0.01497067050353874211 0.19835789329362482625 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23095877507660086958 -0.32009021401134590823 1.1445377134526228957 0.24647629255757702582 0.60918752641488471689 0.62661271863269785154 0.23195699612250164634 -0.67856291807541790906 0.21466603705576675631 -0.1109847092219486131 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
105
|
+
0.003769802762414493566 0.91092015031763851063 -0.014353926383078493764 0.24666483512892384278 0.13039916354168795687 -0.012855465194155833719 -0.27523093368151457794 0.076252619520881192994 0.11944213963250370492 0.19084135088926654222 0.17200881513007315604 -0.21473683393266446151 -0.14319730721061824097 -0.30791906245412153931 -0.18620185372515815625 -0.13969195409481141579 -0.039278314781463249949 0.13640881289716719205 0.25696038734236292811 -0.090115737197893050481 -2.6430836105496910982 -0.18600388848772028694 -0.43199096981174456289 -0.054014057150882324732 0.13311893110408851149 0.37312253011060425578 0.033789536302383030297 -0.28116385518484193762 -0.098270065720736501924 -0.054483329757254651826 -0.022648778207652656841 -0.28461087477875524065 0.060292866561568528305 0.29146022609050725727 -0.29043035834225156 -0.16898710212418618926 -0.87817680831189337542 0.12975019405110155279 -0.01801836271369321521 -0.59285017710215270892 0.46761036003485245693 -0.73110236634805469969 -0.016655396731279640404 0.19893129844623244629 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23140966468453194604 -0.31927521469312908353 1.1441218169906337554 0.24575237614797273977 0.60885781819537410087 0.62643532302455262606 0.23235794632822479033 -0.67923990522218680166 0.21613989722918766634 -0.11073695692543120139 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
106
|
+
0.0037753930641972323172 0.91088007614339006057 -0.014385055542919645763 0.24683143553978725837 0.130458460917739133 -0.012933754059309392898 -0.27536035724405588665 0.075980752525534309139 0.11954233350161803939 0.19066347719822154816 0.17199872935306839694 -0.21455485283269154495 -0.1428316965877196032 -0.30571606015341401541 -0.18649452726477963593 -0.13904671806553475788 -0.039300045471953107268 0.13684255619761312439 0.25759927790847170215 -0.090287694842921595306 -2.6427292223718445996 -0.18569798839863060902 -0.43171572853261941383 -0.053958300462087369076 0.13354828883551189689 0.37267344413421310545 0.033570834937670004927 -0.28167479568394970801 -0.098310225219600769209 -0.054518813679516477111 -0.022334538626494624541 -0.2842828726055668942 0.060226219390321668323 0.29123118898510247377 -0.29069557908543697256 -0.16947660479220832963 -0.87789493413216668216 0.12940795918189257341 -0.01716432822057379487 -0.59280600447729059344 0.46750668437082076867 -0.73133507338206260595 -0.017581222403472717558 0.19831837182704833977 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23105916954123298379 -0.31968103527561847477 1.1443639063267745382 0.24592093882922091974 0.60986471876840364637 0.62657980562555715132 0.23246012531141080348 -0.67928698681471710863 0.21642545565854900969 -0.11150126761326387137 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
107
|
+
0.0037885837057710716747 0.91084513152630430799 -0.014381544331451613997 0.24692426674077080917 0.1305309453490201832 -0.012884111810665673653 -0.2754551860268519281 0.075908719936870150402 0.11947061048846041587 0.19055931448881471835 0.17216955517047372037 -0.21461128541054411145 -0.14215014547786997134 -0.30610440861075477459 -0.18654797421921939793 -0.1393147777872332238 -0.039405946916875503327 0.13671798905973273075 0.25722982831473695242 -0.090416618757464456424 -2.6458522217727726833 -0.18608732654424675612 -0.43258262504166339335 -0.054136404294618585553 0.13293640287729097116 0.37379358574436366558 0.03390185503228138747 -0.2808449767412473097 -0.098426036772826464016 -0.054636148161218429931 -0.02229222436991331463 -0.28423588196583171595 0.060158015657457861169 0.29081200660076872433 -0.29071672854471841685 -0.1703545653385410974 -0.87803248197312266932 0.12861852052119662759 -0.016893248615139192653 -0.5929417362542218628 0.46765035260375192872 -0.73189677190495194825 -0.017135732956386519332 0.1980236188538489206 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23136563186961664473 -0.31931294505832163999 1.144065592227276662 0.24547320514604969999 0.60986576550449833611 0.62685893677761883591 0.23274708546453723446 -0.67914373074810829856 0.21620531174507082173 -0.11205553776746832173 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
108
|
+
0.0037785277613365292511 0.91083397986947234326 -0.014376706618765713527 0.24693971984685583743 0.13059374182906796635 -0.01300936106421636887 -0.27549070635159217391 0.075831456599878610536 0.11963106094710100613 0.19053712007086864855 0.17206846412755935627 -0.21457245416087386558 -0.14260024093547343793 -0.30434263200610789379 -0.18666787095505729677 -0.13943011875262958932 -0.039245431368635438907 0.13701133283036606714 0.25668010892102394171 -0.090673074035665060522 -2.6437510451644690157 -0.18823197057898008455 -0.43243181921116430333 -0.054260988196366051473 0.13270821057169276957 0.37365388240251479202 0.033897855634279980275 -0.28031911466593906201 -0.098236459109192347805 -0.054720317703143922516 -0.022145579989707772639 -0.28458882089276921201 0.060241213940702212359 0.28997232701068204053 -0.29080859540344616843 -0.17029807963403231774 -0.87818161636064795417 0.12870292055802867726 -0.016994599550110449371 -0.59305141247184645081 0.46752316195956156175 -0.73239098912881006598 -0.016626201903691305989 0.19764183096475701484 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23155105713927950917 -0.31902698892256881047 1.1440025289082114135 0.24585472194441140847 0.60923614464299746807 0.62668204077876632496 0.2324911130431963624 -0.67891347861020423515 0.21602745474090040423 -0.11242232156763373729 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
109
|
+
0.0037919258050269116951 0.91084811210601801523 -0.014354935104996803877 0.24689136222733459869 0.13058688711910462765 -0.012918896879679869771 -0.27545295675605196983 0.075928716254598210833 0.11946716252076024223 0.19071632140058158988 0.17184671163407599925 -0.21432477466478930261 -0.14178356459982233151 -0.30464907581974459694 -0.18668529127030958348 -0.14025192668299016341 -0.039178702567994709571 0.13706880526388406927 0.25635040049396334849 -0.090702845084936992159 -2.6421864999248034778 -0.18821703514874965624 -0.43139586082938291556 -0.053598854277695590076 0.13419780392423261151 0.3723556531195381103 0.033544286119395846923 -0.28259511011969634664 -0.098026861743489068779 -0.05483314664736241989 -0.021608487900970661799 -0.28412924675183165446 0.059963059119582919065 0.29047053612479956097 -0.29060633198026386559 -0.17010450626051124012 -0.87759205111155036416 0.129544751095561822 -0.016454776662717489344 -0.59276098820538647427 0.46705391602331203238 -0.73225759133606327378 -0.015827916631290062793 0.19707189753487208694 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2313825001360706457 -0.31944490323310892332 1.1445699377319675794 0.24620853411833584778 0.60841541676735044764 0.62688915450604765223 0.23259923208140309558 -0.67882980591798081083 0.21590383671837612423 -0.11238747617738316376 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
110
|
+
0.0037942512833778487512 0.91088034170200327111 -0.01436548848295063005 0.2469436781480090215 0.13063407746908850537 -0.01277027910187167499 -0.27556852734207137878 0.075734161294664217867 0.11934940874549433698 0.19098437117458136325 0.17192370694205627579 -0.21407139053062443357 -0.14355366417094939102 -0.30532628122660609993 -0.18696555922987440068 -0.14021222522670134802 -0.039394634962977410908 0.13759639521967753639 0.25590409195631441674 -0.090883247109760215143 -2.6411785731106482977 -0.18699804400165237483 -0.43248942615359575736 -0.053795447203188365148 0.13403691674705128789 0.37374365917287555305 0.033659762716310194508 -0.28255240584553431571 -0.098082021739232583268 -0.054874198377232549784 -0.021590387973944202143 -0.28400567196709219919 0.059917345344091044179 0.29036476131662836142 -0.29074502491893050582 -0.17011054388202723198 -0.87753469064086164764 0.12964565408873565677 -0.01630025494418982715 -0.59277994786172838459 0.46710659002356674785 -0.73296409692620778653 -0.014149385802251123606 0.19613862172382892646 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23094441318669972629 -0.31976917221309297812 1.1446580650980477945 0.24646046968814674938 0.60902973453546671578 0.62695120129719206226 0.2326339107874673684 -0.67871481961423241192 0.21569723225074982631 -0.11175202631216696325 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
111
|
+
0.0037770304452315679906 0.91086066339719751195 -0.014386828647615583499 0.24701942141063218394 0.13069211589672072305 -0.012879363862941792251 -0.27563673476822003749 0.075416444217981951081 0.11951214861171940984 0.19082357033795319112 0.17178384495427909129 -0.2142615142955111851 -0.14426510016629670585 -0.30721501453279997929 -0.18715328274156398103 -0.14047503465166844006 -0.039215058491501052218 0.13773576939302725752 0.2557831856168539808 -0.090899757700429281715 -2.6434631298618844752 -0.18727499937235950189 -0.43306368067054407112 -0.054123038097086538512 0.13306678804097821223 0.37459203940362889584 0.034021415059260165514 -0.28088894815308940167 -0.098374301639871736258 -0.054879609708975811422 -0.022310780909726393717 -0.28367034512485944653 0.059827703463782765103 0.29082998287474337573 -0.29079888953710447685 -0.16983840197878172229 -0.8781252229570500889 0.12992748832417183591 -0.016260156726747885397 -0.59267108799449341738 0.46752307404019027848 -0.73295500898055288008 -0.013161189080580781852 0.1956962388082024995 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23130352614850568926 -0.31962196260612973919 1.1441707502388784867 0.24660397044470550032 0.60924113582944705581 0.62705353302160038442 0.23218988479269847547 -0.67848814239872246024 0.21488372385433895939 -0.11105186255612641 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
112
|
+
0.0037386159071750345653 0.91086187581932021029 -0.014379808643510778518 0.24682005058766520733 0.13079740701754938303 -0.012863631368489589907 -0.2755299253083428046 0.075176897850012816549 0.11959088240604508202 0.19104209226596557958 0.17177077781581984173 -0.21396446402644489493 -0.14495835391862382791 -0.30723084379857618087 -0.1869411619549460335 -0.1408901887159264843 -0.03921931030163513382 0.13786673341698496564 0.25488417361407467165 -0.091406373659166720302 -2.641871299531833639 -0.18875234248644476298 -0.4343498276387152135 -0.054690954366868244074 0.13191898920510641835 0.37671204723908596756 0.034434391113124601658 -0.27910488857408749519 -0.099021376161132157456 -0.05479098255086280872 -0.023164151113345292365 -0.2830051087813548194 0.059806433166441984317 0.29116579791316848924 -0.2908489362284319979 -0.16999775765942046202 -0.87859607959458907445 0.12921935808363740894 -0.016689056589129828978 -0.59280471729834016692 0.46783543646049891018 -0.73247396802614039846 -0.012156662852496995242 0.19532623968368406642 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23165746365998196588 -0.31913528119355821788 1.1434026339997391819 0.24618403721213497071 0.60950472347195050471 0.62758739043874256502 0.23245120040049985222 -0.67844889495948124125 0.21490655077497067271 -0.11038881139564858669 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
113
|
+
0.0037282560571743335147 0.91089212641498717993 -0.014384398267921207418 0.24674204494021320655 0.13098727739646326418 -0.012853586526039574925 -0.2754139316466404086 0.075221486141431259664 0.11953628578876555888 0.19077171068557402522 0.17195951261975092605 -0.21426331294096126467 -0.14421596654940513349 -0.30509715871966713863 -0.18684235495665577065 -0.14086915040982195269 -0.039258146286595345387 0.13783616086261157863 0.25497677118129502549 -0.091012583743672978431 -2.6444269191974885125 -0.18644960025357865119 -0.43467059794315388022 -0.054640373309557219161 0.13212043399523004661 0.37729344084711075036 0.03447672590305968926 -0.27944356590106106397 -0.098925346152615362127 -0.054885875808440273693 -0.022765860888033260384 -0.28325675237733421996 0.059800167514257672463 0.29067016865385641999 -0.29079171127477998482 -0.16997289537337145759 -0.87842691903409297893 0.12958314769143616796 -0.017193431853796677794 -0.59294873689047666865 0.4675911174036914697 -0.73213122959199417039 -0.012009587945659082678 0.19632819278916155414 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23174993473526242505 -0.3188711832567125426 1.1435838872871981753 0.24580222572435581063 0.60946218621882264355 0.62767117902364688575 0.23245489367328484032 -0.67851566388636030958 0.21501124748074493254 -0.10971714615353286848 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
114
|
+
0.0037394083797182473515 0.91092770187126315129 -0.014400232272508523348 0.24661366294354322704 0.13122935372355210015 -0.012847858908609921871 -0.27532379806251910948 0.075332199093814777857 0.11945200841750348852 0.1906724581346792291 0.1720292676045772351 -0.21453266513466098808 -0.14493979687017699565 -0.30376467618091679279 -0.18662606340490511814 -0.14095799666702563124 -0.039365142944458211827 0.13770194163442828206 0.25502890520575977051 -0.091000917974336792415 -2.6425414723508637849 -0.18559439249500433999 -0.43155873057607224696 -0.053347542954585581987 0.13483199097849243864 0.37348510452065625254 0.033670397811884800188 -0.28339471261724130668 -0.098429969500395300686 -0.055118374204219985901 -0.021555413568067945812 -0.28304646160994118009 0.059507463339924973611 0.29047675491316754526 -0.29019106900035906982 -0.16993508194158751801 -0.87750349693408558061 0.13006053016989618798 -0.017333373629153065593 -0.5926607910975578708 0.46766602614872732069 -0.73179973413307930485 -0.011726089687336519601 0.19633697918865544718 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23176905315007897967 -0.31971206457032153025 1.1449090555563163907 0.24618028457112722807 0.60901976428534909669 0.62779475568352338666 0.23227979452770186608 -0.67855494871541222057 0.21448462011379457182 -0.109709729016346208 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
115
|
+
0.0037182765119422463672 0.91094241098698192083 -0.014359047259026173557 0.24638567204982475545 0.13147053274994055516 -0.012890416337556690959 -0.27503321007379283314 0.075359577629540361321 0.11954101869128094804 0.19044974837491213115 0.17229624634206500144 -0.21475262465934039091 -0.14362505741153813732 -0.30657761268073829841 -0.18619180269507629166 -0.14130586103314768387 -0.039268232616838975868 0.13737694951588316772 0.25502819107919277863 -0.090554827793309380923 -2.6426806864535561381 -0.1856461647677434823 -0.43373209087987169008 -0.054702430471244893606 0.13247975894118244056 0.3765231984715936564 0.034088558460678208828 -0.27985810478986267169 -0.098544011290374031176 -0.05480046170032424474 -0.022754646562718292002 -0.28378809523187065178 0.059971043679360749867 0.29064943721295405377 -0.29081850866885389229 -0.17003286280916796169 -0.87839695756619107225 0.12922809109395608229 -0.01725812690433732588 -0.59295255861145235166 0.46822745162476131497 -0.73216512905974917569 -0.012907379222594840204 0.19751980445706354694 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23164850534873379639 -0.31832803629791484035 1.1438484506473018953 0.24535830031841809884 0.60975539283229718279 0.62796934858933750601 0.23229985541942729799 -0.67865391747914749487 0.21407436112627745151 -0.10932100543016523564 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
116
|
+
0.0036887442960317363277 0.91095918439213852125 -0.014341219368784331734 0.24616142166489946019 0.13159638650755547951 -0.012786405049637059039 -0.27480763209551783977 0.075471992117237887698 0.11943167458133094327 0.1903743771356232739 0.17265838468372637915 -0.21508118491452432597 -0.14355286577410616977 -0.30588652713854758147 -0.18599648403923546569 -0.14137876478716701611 -0.039370720016152063736 0.13756571496034561419 0.25528817065091802263 -0.090647742427639815821 -2.6437241310519996595 -0.18537793170407798615 -0.4330781321711554277 -0.054430872643082370277 0.13292578658195841612 0.37600624206623167733 0.033985469764258542658 -0.28068417622681574031 -0.098290863329011712857 -0.054902816043608193564 -0.022546815461427189425 -0.28403727304181203284 0.059878297283340320423 0.29077411139030884257 -0.29071667196350742257 -0.17049872141504257561 -0.87805923180146039364 0.12905796968876953601 -0.016834498934916692497 -0.59293592994645760719 0.46836962352047234459 -0.73225862355294979444 -0.01408598328698084691 0.19837469428632698021 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23159561060290895229 -0.31899802759625706106 1.1443348830728596877 0.24600520391290647826 0.61061882685190671527 0.62806746528181855993 0.23180128603589472691 -0.67873935448824695982 0.21393141701817000588 -0.10961651156258145345 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
117
|
+
0.0036543658190111086292 0.91094186716448521945 -0.014378824320766151607 0.24617201170208172223 0.13174137551694892201 -0.012541923632735570496 -0.27482277104515184796 0.075432212334144627119 0.11914028258342841682 0.19044287950796170983 0.17275864492062531497 -0.21484500700625044911 -0.14406239674167428677 -0.30801145628847348412 -0.18588033210166976517 -0.1415082258303180518 -0.039552294275690041969 0.13723854567602830623 0.25539784446221686087 -0.090568404683620609696 -2.6440994647338249557 -0.18707041432625504118 -0.43126089302003012271 -0.054108638966842613482 0.1338290476730166767 0.37356561271325611218 0.033335292246208007849 -0.28228595200225237161 -0.098076279779553396376 -0.054584368202290574346 -0.022564913142390792544 -0.2833598880024541522 0.05998641506846941196 0.291593060949290106 -0.29036977134263308731 -0.16985340931750025906 -0.87783107156894624179 0.12932018672244408042 -0.016856477331328872243 -0.59252670779589933225 0.46831647584812646778 -0.73232724288380568467 -0.014797117770753650395 0.19831871587562285852 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23143949736905841674 -0.3184536773414546329 1.1445617774962317803 0.24629047924011004955 0.60935351523207825775 0.62841945647867691882 0.23171738751850337601 -0.67988324565774171937 0.21427725964076105303 -0.11092031473705132871 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
118
|
+
0.0036361721405727765247 0.91095484617336286437 -0.014377221052342032542 0.24629276921293474789 0.13180650393328899317 -0.012535738775560691452 -0.27476194181689472806 0.075338896949629294286 0.11914850109252066168 0.19002052268232078047 0.17326651690016744989 -0.21486913113376543416 -0.14474245951736974813 -0.30845162988885260757 -0.18606732012560800449 -0.14097745756474741596 -0.03953972613044196005 0.13745773190839005728 0.25620218037816638867 -0.09094088276580335195 -2.6414445605173901832 -0.18614270984255024133 -0.4331791573192406708 -0.05459339781886213272 0.1327595022768214561 0.37597610356699784351 0.033870431621679533696 -0.28064562952223987002 -0.098012683933621336241 -0.054745702493229526919 -0.022867887805813745528 -0.28424307726327724399 0.060044505535884210023 0.2910670851503839307 -0.29034874921046710528 -0.16950033641162343123 -0.87843439121497179922 0.12960299480855730359 -0.017637115465429953343 -0.59245646601098511663 0.46814520609136672791 -0.73217503293721186708 -0.014920414981772255406 0.1982064383332894919 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23123228875603030197 -0.31861553366509126617 1.1441105671598157389 0.24632950083821514298 0.60989930278201032188 0.62848119353754317018 0.23174801824766910752 -0.68021409741643146241 0.21350165047482516645 -0.11104010605342302942 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
119
|
+
0.0036050241768084074004 0.91095343625477254168 -0.014379214767382285725 0.24634639704788099945 0.13203657961673451182 -0.012622135408278709057 -0.2748653471711749452 0.075688865655286957645 0.1192358850967439321 0.18994110354380128181 0.17273502472670168584 -0.21561830803586501393 -0.14322345972890951349 -0.30928922850292445146 -0.18601899498567092683 -0.14048669238811367643 -0.039457520470035943594 0.13742195617940050623 0.25690802055403216819 -0.09127631147818804358 -2.6419751869838115077 -0.19117275642637546196 -0.43461126393379506672 -0.055111468507740540845 0.13171193048125343084 0.37785866271405538219 0.03425667023174972653 -0.27901033733283647775 -0.097957668383695004066 -0.054866918383074538001 -0.022999561631223634089 -0.28492730306603558654 0.060137626474197361515 0.2903192064718249088 -0.29051620761329954856 -0.16889516619640573825 -0.87923432746499019519 0.13061909102401289551 -0.018364736504389231331 -0.59204689471548688218 0.46794891217875561606 -0.73275085273103779393 -0.014790077739439404236 0.19833476376551270604 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23125262763101334107 -0.31878434344624084762 1.1437249245655067842 0.2468325492601762261 0.61026962257020711533 0.62860146461611665636 0.23153568277724742575 -0.68056902775563521413 0.21214742851052478811 -0.11132031778529799526 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
120
|
+
0.0036060807759831984935 0.91098215015913186487 -0.014387124031580683647 0.24638950489450431314 0.13219915143798893764 -0.012680575222867113139 -0.27499218911333089821 0.075765301913407606671 0.11925547917950825305 0.18988028163521575298 0.17303132757003608644 -0.21561091401971604897 -0.14235707489885215948 -0.30857883346763381738 -0.18604289598328224709 -0.13965899637377399145 -0.03940234877277489639 0.13738143150851528373 0.25859159886755439528 -0.091348543704948437227 -2.6425658751146468006 -0.18679300308685678478 -0.43314192753490315946 -0.05446087508185551429 0.1335207502126329604 0.37582954677342622629 0.033613972513863922542 -0.28164356650457261777 -0.097654050587917276549 -0.054714092951839057855 -0.022333686548052702342 -0.28480688621087923984 0.06022122918904697364 0.29048611765121995498 -0.29041134077018337933 -0.16966372014792061029 -0.87811744637677646708 0.13042519086274995121 -0.016872377415134677536 -0.59208638001369862103 0.46762251439981356027 -0.73227399988135510878 -0.014058302557803862079 0.19914188863856899236 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23077482420092657045 -0.31952523906796187481 1.1447224640174589183 0.24766143561475123525 0.61082108825843617339 0.6288646170130473001 0.23115192737945619572 -0.6806644894361262299 0.20976996675654713265 -0.11225132578883963153 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
121
|
+
0.0036045378166807808332 0.91099196102373836137 -0.014383578663336614098 0.24631307560533921563 0.13237947684532788695 -0.012561548163438870582 -0.27500778603707765058 0.07573643599517712599 0.11911851404121243103 0.19003139939780250289 0.17307109910440862666 -0.21558034078292534486 -0.14296211056861637956 -0.30697099526684434867 -0.18582699389855833472 -0.13975359011960244993 -0.039541931173174470204 0.13716158979023340692 0.25852178556442090285 -0.091057530191701693822 -2.645425790632651708 -0.18608276367529766326 -0.43531258463342897835 -0.055273042327712726407 0.131612138095945852 0.37905709240913215696 0.034351116821041367821 -0.2789227260434751221 -0.098584258901743437864 -0.05457614407845215454 -0.023204523667284947253 -0.2843380786152883144 0.060355803449804484861 0.29027451306630364103 -0.2910230218150101078 -0.16995261349854182131 -0.87874833862806356333 0.13064960921237886438 -0.017110551027306290794 -0.59249393648066661644 0.46769525983525850332 -0.73279861135460833133 -0.013310351276327094666 0.19905076822516767909 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23141851845568620072 -0.31874777841269597012 1.1438079490025347962 0.24717119578517995904 0.61124974886203220503 0.62919979998679353983 0.23083609862164961024 -0.67994829919648269723 0.20771441161743373072 -0.11140859509009805317 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
122
|
+
0.0035793675165611805143 0.91097912068338748881 -0.014389121083650218205 0.24639543029496133175 0.1324458115700309635 -0.01262614602409001946 -0.27522253614352992779 0.075908322388473545295 0.11919779033739286156 0.19022011101653041321 0.17261776866690622945 -0.21583362293963545553 -0.14145035488640952948 -0.30420922706396291701 -0.18586031069514308278 -0.14068022285183096054 -0.039363856140099282022 0.13696957014855645762 0.25723571673641476565 -0.090637040346067981877 -2.6426341010171485735 -0.18463678009870743146 -0.43381905762953953953 -0.054780744612917764425 0.13275783564619061949 0.37692081536655125396 0.033876587323086237991 -0.28054628061672703954 -0.098100847054477649523 -0.054654486277964750562 -0.022619224448566399577 -0.28429741484056447742 0.060256978382897785629 0.29020797398214964735 -0.29051394789456103096 -0.16925138109369577966 -0.87828719904260077467 0.13108520504923343308 -0.017380386870657182907 -0.59243102069878406102 0.46762375378644899238 -0.73223097645220558416 -0.012428920751182176777 0.19877702307048636388 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23092041905648610922 -0.31921363839780730887 1.1444877991867996592 0.24736806211358458585 0.61138221701893769033 0.62921805250160800504 0.23113839234988253768 -0.68029609357914755385 0.20680538956139668527 -0.11018965170928554653 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
123
|
+
0.0035456698137640535289 0.91095389423555350739 -0.014385977308511172651 0.24650206105110669674 0.13249870057682755498 -0.012626025489340782226 -0.27541488327861374241 0.075723483455011356136 0.11921682042806011625 0.19040857566469990281 0.17268727054123184095 -0.21529833122074051865 -0.14279087601117271267 -0.30503858351868196053 -0.18599138657075711678 -0.14105042394668609873 -0.039229659094224593463 0.13698973312871892682 0.25718354165378159992 -0.091033848929152449969 -2.6424039196482440595 -0.18736669625633298186 -0.43608896958065740401 -0.055442211833464601078 0.13110954796206575335 0.3800453749665790304 0.034636878213212374256 -0.27814386029190729666 -0.098879549773217154107 -0.054631894341288934902 -0.023028918863613120904 -0.28408715361083131112 0.060344072048122407437 0.28963380847597264278 -0.29096552323918228877 -0.17023279495254303728 -0.8786286608993014724 0.13012706985544489346 -0.017202411281923703917 -0.5926591992153674715 0.46840951348213388794 -0.73247776542819098555 -0.012064251487279744127 0.19743352976719150127 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23127330843759111301 -0.31902276967744530589 1.1438739224195513255 0.24708813993660197483 0.61216991751141336398 0.62920977775250686026 0.23108528469762953939 -0.6796505788575525342 0.20722547200337557149 -0.10796814397152437737 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
124
|
+
0.003550492014333439094 0.91094544257873732995 -0.014455828399517660701 0.24699877846057871622 0.13259371286147791924 -0.012647869500147075617 -0.27615460753635268087 0.075379836820244017215 0.11923328817797702872 0.19071412870025902797 0.17269455074082581958 -0.21532360980172096654 -0.14248405369095337725 -0.3055359499755091468 -0.18679801652207306262 -0.14090654092609389281 -0.039296153959296378777 0.13757381895902684454 0.25730216301391783951 -0.091948008174500148182 -2.6440053133388041751 -0.19142987053149093657 -0.43483310249173279249 -0.054538828938275531188 0.13340007094011138711 0.37783888581314883925 0.03399454007323782917 -0.28145528516728579582 -0.098531700975049277269 -0.054655172472032220732 -0.022005271885760700756 -0.28386528059912669031 0.060270944135884359227 0.28942982329449790102 -0.29034379133175508558 -0.16967300345368196979 -0.87798843013752858599 0.13061338247634582399 -0.017299654181262835717 -0.59191676013380045696 0.46873525558680967373 -0.73285908414706446568 -0.012622137599880369624 0.19636766444440373336 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23105770118434240668 -0.31937131827249826133 1.1447610956474267851 0.24726833090302158258 0.61190223981517022356 0.62948911318948574944 0.23124529631195850365 -0.68000879920759793595 0.20852476647301698698 -0.10775059783147455938 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
125
|
+
0.0035374506074224436498 0.91092253163154501827 -0.014447512294460248747 0.247020929133593109 0.13266774282758533876 -0.012794886486500478898 -0.27618027941825046279 0.074945851694000961696 0.11943176476328670743 0.19073240658344556286 0.17255298079503500475 -0.21485621845024063803 -0.14277606434126771662 -0.30454500933032857546 -0.18692489500600723007 -0.14082067965272709875 -0.03911332968760254658 0.13796980430540592422 0.25713180039161398494 -0.092023235883928619638 -2.6416323601504387852 -0.18860424836936509618 -0.43606333871957481119 -0.054734982873260784597 0.13285303003331552785 0.37950741764117412735 0.034447972513044718135 -0.28036585509292194507 -0.098748883776408197255 -0.054694832234062677745 -0.02212374555544003446 -0.28382811118265932615 0.060318009511289051583 0.28881556054663115596 -0.29012602908925894107 -0.17107620032926013076 -0.87771758795251497709 0.12873048876133955098 -0.016918880273856396618 -0.59265550238247799442 0.46965189266479112629 -0.73235258864593910655 -0.013574901283022753132 0.19763838528605451317 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23139105453671462986 -0.31921455709289220382 1.144435698660438705 0.24720046245950960673 0.61157895322691535611 0.6294211731832947132 0.23136786812998774709 -0.68000223911097601448 0.21042461630484537993 -0.10815001547104656499 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
126
|
+
0.0035456336250339918689 0.9109209335630576998 -0.014418245107346263495 0.24669075899597553425 0.13271328491901993041 -0.012825749904634429002 -0.27575490544817060634 0.075210751342075013448 0.11948854281649411158 0.19052451945012144341 0.17266966980146591926 -0.21509204103710727329 -0.14257812771876171576 -0.30509926759995603662 -0.18646577824526408551 -0.14127115765450445894 -0.039040412799534289501 0.13771902731836024869 0.25691372388416994221 -0.091602566070080257421 -2.6431934810397033075 -0.18702906842208411042 -0.43556476405707161836 -0.054762019193934537153 0.13263640358149206278 0.37930247607762362927 0.034485909356026765715 -0.27995220399044640214 -0.098835787249404560839 -0.054497607049689714143 -0.0224177613944079486 -0.28377414118504568075 0.060466138436507298193 0.2892112501322194329 -0.28998605216720146904 -0.17046681956788609091 -0.87793169311312968528 0.12916930771206275308 -0.017911319501015515732 -0.59269917450989717533 0.46950018662364556565 -0.73222652174538760406 -0.014433301004485133562 0.19767240787387099776 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23145511590766970622 -0.31913989309878948442 1.1445226201196130322 0.24733398080094734506 0.61190512769039928642 0.62946780771674493149 0.23134706871268570505 -0.68006722812114439591 0.21123289756196381162 -0.11089150245732848354 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
127
|
+
0.0035596366518248737272 0.91093817098786367126 -0.014426979300802741588 0.24656124262565959349 0.13283849680739273635 -0.012819273498902734182 -0.27570506688966206488 0.075221765540237697789 0.11942077454319513508 0.19047839804524491214 0.17300496865380066147 -0.21520331965564262755 -0.1429458934137521342 -0.30502377665275348662 -0.18628008643368954012 -0.14176809715865604233 -0.038997250636539179669 0.13753054279144075189 0.25634421817363051144 -0.091284743283272296033 -2.6401991891866036788 -0.18484664344721105089 -0.43463087536634353869 -0.054449782972383793667 0.13320273871505647345 0.37832769614992556306 0.034306913198960044264 -0.28080591595934528693 -0.098510380171501488178 -0.054554601979958712576 -0.021951731635924988384 -0.28432571132523792867 0.06051838881968436834 0.28887108135087113947 -0.28986965166587480569 -0.17027254514929926477 -0.87784301185363300402 0.12962130309212832602 -0.018694555100746100551 -0.59255590593746687578 0.46910973529460320286 -0.73202000707037750971 -0.015003792212921106264 0.19809809173628425971 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23142350047181969863 -0.31929642211181041844 1.1450123002115628612 0.24729495349718083608 0.61176930871225354558 0.6294472789050661321 0.23181395216401567971 -0.6801131390156122114 0.21229238219374582664 -0.11198143602711999045 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
128
|
+
0.0035104552622446335598 0.91091639222966269696 -0.01441069219223829051 0.24637339093562973802 0.13291205616148266122 -0.012836377212082734564 -0.27544203502515568482 0.075495324126907764617 0.11948391391567951547 0.19028275968224467318 0.17287663679391476745 -0.21558964131859401081 -0.14230847322042508574 -0.30232974760596492692 -0.18582767056643420545 -0.14237533569341540018 -0.038976952788766956737 0.13696570590224252384 0.2557628179098763721 -0.090903557981124580301 -2.6427201648634643938 -0.18551595272593973673 -0.43418102773557104568 -0.054667916873029416547 0.13231606076781726733 0.37803689936996359711 0.034457992680610234626 -0.27953851157753062395 -0.098565311875436489863 -0.054366725433079091112 -0.022371181640163217974 -0.28435617849029831694 0.060667222539975390605 0.28932561576802851011 -0.29023285684075045276 -0.17020573779754236132 -0.87819896617282056095 0.13023141558961856545 -0.018690343753458314724 -0.59249529380286380942 0.46897048728178442056 -0.73217282907244363166 -0.015616919471940353056 0.19856964196588089422 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23181809827226218523 -0.31866951972492629785 1.14477522727037484 0.2469630580329539582 0.61160803525350393439 0.62958298597534867458 0.23222115309570920405 -0.68024379141569313312 0.21214246123995689208 -0.11351805923197279269 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
129
|
+
0.0034557290673761040939 0.91090075586173813171 -0.014407677013275674641 0.24630811564716545425 0.13292227515613577737 -0.012828176184321559913 -0.2753515759850848621 0.075282752683556483642 0.11956509507596017883 0.19030597313264918657 0.17285099442420628901 -0.21536219124416608461 -0.14280433375175796695 -0.30394095840804208342 -0.18586555581721581065 -0.14249581639457534199 -0.038961631772596691525 0.13733733844508200228 0.25556614428460611155 -0.091347446739935181381 -2.6420059899249204172 -0.1872975104447839878 -0.43567015698362221432 -0.055287697490636077136 0.1309128081828119794 0.38015022569160389354 0.034929967828404677455 -0.27754728617663126933 -0.098695914694370542875 -0.054302397328731738524 -0.022458725705360955971 -0.28491623668177312734 0.060930002071599702329 0.2885460749712819295 -0.29061499900700821231 -0.17044916681940139314 -0.87844810325775868343 0.13009438141720439108 -0.018436235657509091046 -0.59270428204414826734 0.46895403509762012551 -0.73235540873208648804 -0.015979781022979058086 0.19897128965757179819 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23192998727686187088 -0.31794401625461043981 1.1442698810130329523 0.24657818860073824063 0.61148382952794666512 0.62943902548550068055 0.23257306867771601611 -0.68053094070346997757 0.21230742826231815967 -0.11325761575761675304 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
130
|
+
0.003428704455547312846 0.91089020880500892741 -0.014458750887236665461 0.24653500889573676247 0.13291981971767369286 -0.012825281566040111492 -0.27554443534410300032 0.075035651848084111704 0.1195637738527273175 0.1903115008067547409 0.1723105254420404242 -0.2151349988574467742 -0.1424139039128139439 -0.30554863742674664984 -0.18615172143057381882 -0.14192485736693291609 -0.03900230740560319681 0.13739263242887153615 0.25628399632276471776 -0.091539820766665183638 -2.641928852867637012 -0.18675927758298493941 -0.43571597061599603995 -0.055302607128483317889 0.13061381531156096569 0.38006055841601926737 0.035046196472920745912 -0.27715799483590858321 -0.098581690780167444133 -0.054308731790670937423 -0.022542082358519763968 -0.28525541500246903714 0.060919912565395292758 0.28894567183820119016 -0.29042520346540101617 -0.16991794164584234084 -0.87847330022125558191 0.1308269527787814801 -0.018138594092229617244 -0.59250713408672273097 0.46884001491316940058 -0.7324251016393023006 -0.016159354138892929181 0.19892635679917988756 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23168812218366635625 -0.31822678195350095898 1.1444238836960054506 0.24668659000947479321 0.61172088676350722114 0.62926931336266822559 0.23289987633889272511 -0.6806701656526819022 0.21212069794099921993 -0.11290755998978752039 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
131
|
+
0.0034180563582043711583 0.91090602736617531932 -0.014490824871178807284 0.24666327171945767738 0.1328767583148363074 -0.012688514931088109086 -0.27572288073772399652 0.075082521742669064424 0.11940288854202020519 0.19048896608082879767 0.17235141652503715992 -0.21502067133996255466 -0.14229643411408576803 -0.30506471741683754972 -0.18628658764783689872 -0.14211435392861881954 -0.039127515976501187067 0.13723646924448140716 0.25595040455978856908 -0.090942248970636865857 -2.6424431171388849116 -0.18534991689737045917 -0.43499070785826016161 -0.055092959760326930263 0.13128972123990587106 0.37890113127732061304 0.03466405845871579211 -0.27833006203079224683 -0.098495783255263438805 -0.053952620690739222509 -0.022691267777568319836 -0.28483096769346677446 0.061061530784750565892 0.29008057597729397514 -0.29048870650654162739 -0.16867468968676921359 -0.87859777812513617512 0.13247425368509826993 -0.017760589498758576343 -0.59148992500995589694 0.46844007047852276315 -0.73268115924853660648 -0.015535348943781201667 0.19821341540516085322 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23128923094522299553 -0.31835640557164224251 1.1447160354428123075 0.24731252657032554154 0.61170699785398285897 0.62947314053654379595 0.23277221462894881476 -0.68049389291434825289 0.21157934119910232207 -0.11222432044028991804 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
132
|
+
0.0034164759079314283713 0.91093792691670061323 -0.014495867791820280304 0.24638098878716543916 0.13293444179752947343 -0.012601195077422614257 -0.27540699717072125718 0.07516022868306500293 0.11931914996092292391 0.19030451696174646714 0.1726700421750911596 -0.21510759242910965083 -0.14091486589453033895 -0.30618723118180307674 -0.18601469435893847049 -0.1420716931099728908 -0.039211465180201139635 0.13731385818974781166 0.25600855249059695229 -0.091180701460283189452 -2.6428485650298747522 -0.186548709468008167 -0.43371428423515012707 -0.054463369084003593334 0.13286972282050135696 0.37747766039344571309 0.03418337051250430747 -0.28077729232450943098 -0.098114243440379195205 -0.053863046811682802062 -0.022211954969872185067 -0.28471101710671908869 0.060991102455312834474 0.2909320003051326653 -0.29035192238138524123 -0.1696891032583517922 -0.87756582882412081936 0.1318678184346600557 -0.015884125425711395629 -0.59132241052998324449 0.46883297254891370676 -0.73227690800343214761 -0.014567553479327418481 0.19778827765454071175 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23085250656284758697 -0.31856595170895424252 1.1452268572002533009 0.24723235964102596718 0.6114484591363525956 0.62989309696531770033 0.23290463138049832814 -0.68043508309003319923 0.21092735555454847352 -0.111524930789895102 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
133
|
+
0.0033778128250567846132 0.91097044464005383357 -0.014457658774286976516 0.24597303687422139573 0.13288631766946354396 -0.012763932413966023321 -0.27487823149070150786 0.075692669449344274213 0.11951013124192304271 0.18988784894001334291 0.17303539059410086298 -0.21555212296704645558 -0.14005116697016584126 -0.30694631477877704073 -0.18541203481357751426 -0.14162480162525464822 -0.038949035416238314555 0.13696851594417058795 0.25718278753432799455 -0.090712112817097970141 -2.6423286740905984615 -0.18316841496790531307 -0.43448015477246748617 -0.054851312025026292829 0.13170054224017541111 0.37905462148786661647 0.034694617979730862922 -0.27887543467456116231 -0.098341226188867064684 -0.0538945719392752709 -0.022450494916954420038 -0.28488202679125995687 0.061037810958975168008 0.290626979508010308 -0.29052790644273701615 -0.16992728523090586124 -0.87785590585541517505 0.13160573899334701564 -0.015906940449073106447 -0.59161169595254414766 0.46922657895323377497 -0.73189777536853328765 -0.012511729834938482148 0.19822761245565123644 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23140171468513495712 -0.31753531403470502958 1.1446987254383911292 0.24670439983439090836 0.61078017368511305918 0.62994064440603780852 0.23279333402743093706 -0.68019324545102799462 0.21031859221342608102 -0.11122315104032592936 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
134
|
+
0.0034125635469476871958 0.91103662572795196528 -0.014482604610465231801 0.24598008337188947969 0.13288140637992953974 -0.01263581937333924099 -0.27500011393198947607 0.075724626518626714233 0.11936521785971267173 0.19010945439941248636 0.17365031797651056533 -0.21572163047622841536 -0.14204703786086272932 -0.3081551269929613257 -0.18551433488633420343 -0.14136861506937539734 -0.039089155808326128683 0.13699551766533604735 0.2570129587309789021 -0.090572787371508076126 -2.6406537445923947693 -0.18299819540297726506 -0.43168200375576121219 -0.053697968325951042634 0.13492720846543679314 0.375153881603245698 0.033472806254742172583 -0.28367188883581234693 -0.097542922421002639655 -0.053633306652212671406 -0.021499918996423766221 -0.28477346183519541833 0.061127775302722925366 0.29145683917040454691 -0.29009871821956917382 -0.16852054677893801848 -0.87715837212365221909 0.13293251271004585812 -0.016215883475850970119 -0.59055499821189805232 0.46905394832883673395 -0.73209355857242197629 -0.011222545519130468217 0.19816959848721818482 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23066285228620650449 -0.31783061484107161254 1.1457799178520946537 0.24735819372778122816 0.60990524755966446513 0.63036776756895840368 0.23265709081601468333 -0.68020487006705576682 0.21030233623306388013 -0.11129724804983526232 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
135
|
+
0.0033706056121919065853 0.91103843667475059576 -0.014488730471948598269 0.24606820322041222937 0.13277478825885408176 -0.012747265334789419089 -0.27507402359142407722 0.07616527111970872177 0.11949969678874418355 0.19000987550814385507 0.17348239101085460856 -0.21607965441167842346 -0.1408841600788762749 -0.30730151146792611394 -0.1856380871140154154 -0.14098985061891319837 -0.038975704440548736285 0.13710096502817878394 0.25745928496018316567 -0.090840921483405875914 -2.6423441258910900231 -0.1838250015709179952 -0.43112340807568771961 -0.053691518299877602494 0.13513759645070522186 0.3743092054068319352 0.033249519440709023044 -0.28379408417595425318 -0.097596091552639097078 -0.053456151550018260465 -0.021801328708373878679 -0.28435220667727861832 0.061180435657396822768 0.29200176970945629362 -0.29008585681515941523 -0.16826030199122238296 -0.87723824285584306448 0.1323554084795424135 -0.016387166361394863573 -0.59033386220337424888 0.46963075407312210308 -0.73150819801032873624 -0.010110604070104247526 0.19860609784771063313 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23025821435863133568 -0.31801298558195290056 1.1457014340526010532 0.248084284023559698 0.61017424859734414877 0.63070772210346026654 0.23224420092232783697 -0.68021926061959403498 0.21062420589213118327 -0.11179183174004538037 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
136
|
+
0.0033404840442039103986 0.91102518095915463459 -0.014489345795485095159 0.24633300984726017036 0.13271974492760435504 -0.012681780023409108121 -0.27535945702815367575 0.075863756564839263108 0.11947519482772760158 0.19015668043560904343 0.17316148800587080614 -0.21579447044052965654 -0.14226621266805034027 -0.3057773009537210207 -0.18594555511077193177 -0.14055854925052319038 -0.039062583061286251795 0.13719162549451657807 0.25758449292920798657 -0.091110538930262219282 -2.6422992394121287418 -0.18460894329251534285 -0.4332459053399917992 -0.054123465870191157789 0.13391136063286918079 0.37697388745515852948 0.033955394683247507037 -0.28200315507656753544 -0.098406339784030266715 -0.053458089555107737856 -0.022347265087250153121 -0.28360761589920252534 0.061092851258534627834 0.2919620538786750763 -0.29016734091386214844 -0.16820819175253537425 -0.87786864005664522193 0.13194245649303654178 -0.017507615474386263588 -0.59022087074736051537 0.47040918995721392459 -0.73218437130090419096 -0.010509747837141484444 0.19925501776937970533 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23062143402789392344 -0.31801973655545845432 1.1453519434872958538 0.24874397750054061396 0.61006292391389904672 0.62992484846859020386 0.23154527071907535229 -0.68022525853043724897 0.21251391357377724667 -0.10915984672524384202 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
137
|
+
0.0033076856198550959494 0.91096781173729846071 -0.014510010934557969475 0.24676331720070251996 0.13265019436045419332 -0.012534518364332267182 -0.27579825064888968678 0.075744964799344241535 0.11933229834015880721 0.190310606720552139 0.17290357017866389566 -0.21570871512298328554 -0.14283084426871275885 -0.30550448055708651074 -0.18644756331064191168 -0.14090633765523422061 -0.03919926969643681286 0.13726367542974843294 0.25692138872362907387 -0.091130949494092727825 -2.6439371904384998402 -0.18633950145163760692 -0.43578938090056268395 -0.054998182115578393703 0.1309018110691662351 0.38006723419018606513 0.035194748393718090773 -0.27766023582848675666 -0.099278953588376822603 -0.053606484462605658026 -0.023590358666217704775 -0.28292096438996239272 0.060907558211820776728 0.29186768283451158812 -0.29027257103413939276 -0.16848156348887963207 -0.87906786717097207262 0.13136285716749288022 -0.018451792170940943538 -0.59049299536425692292 0.4709445560058155289 -0.73193505078588472212 -0.011613973035092088615 0.20041910843849716772 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23128359569751916203 -0.31784969802576795717 1.1442022001022948974 0.24862803823642537493 0.61059559099682192418 0.6295665240072483293 0.23150231786229472086 -0.68053383680305201686 0.21333549060128659258 -0.1082839426177326092 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
138
|
+
0.003310085460610086034 0.9109295621545500099 -0.014509282645591599359 0.24686144668134488156 0.13261508781417072345 -0.012442684082529511733 -0.27595881212850287278 0.075575406560273492018 0.1192298775543928907 0.19048825775101302371 0.17253305146374822709 -0.21539814517971589414 -0.1424906456791588949 -0.30331445421363983916 -0.18658234901994366628 -0.14125423612262366646 -0.03924095449712636241 0.13730600455280519978 0.25649806988742573921 -0.090903730862497977849 -2.6462400949038005216 -0.18787190499000680499 -0.43735339441508702674 -0.055717056668066762548 0.12951820349485163031 0.38202387150450373143 0.035561805706511198655 -0.27557668784062677725 -0.099532784716351629939 -0.053639741347202327115 -0.024092490633793796351 -0.28288414553595431222 0.060964625570529937248 0.29135637956015347783 -0.29052825162879147847 -0.16780727863114316967 -0.87992700755938579871 0.13133974248747187774 -0.019516811993105533801 -0.59031353463990376973 0.47125163269664827048 -0.73287320907704067707 -0.013634517286222344948 0.2004915181996301532 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23132965636864663561 -0.31672478201212467264 1.1432206802381752464 0.24796464644401577937 0.61037461346393517836 0.62962847321554615831 0.23166024980814073353 -0.68029714986879818994 0.21427717897145842629 -0.10748574794502671614 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
139
|
+
0.0033390644800307647984 0.91096162776137112882 -0.014540318135127770077 0.24699414918657511264 0.13266576090331966276 -0.012505015746475041036 -0.27630422870643833733 0.075204262820525627498 0.1192805733185947209 0.19078983681861794164 0.17252712403882852765 -0.21524155917065596055 -0.14199258729343883223 -0.30321298079325809116 -0.18682353542245233591 -0.14093396280032882695 -0.039312532827159490934 0.13765136559864410426 0.25629686987213584626 -0.090882234131251085629 -2.6465696710015151893 -0.18594619787164559654 -0.43511266759492595035 -0.054494241314725092029 0.13227136912115511347 0.37882385677867164153 0.034804665297327209983 -0.27956096592245471832 -0.098770839801500254218 -0.053766772600482036493 -0.02275821627541483802 -0.28308610608167972256 0.060831247231885980653 0.29119601244423276576 -0.29016913644248254478 -0.16759475857738301285 -0.87898146327654846921 0.13249231199909103363 -0.019453067835557242421 -0.58979226260912387403 0.4706203359682990528 -0.73227961389018969562 -0.015408702325575876838 0.20095250905952627418 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23086255411636213974 -0.31763554594085552374 1.1444287102412207258 0.24814786169981686847 0.61074887430368074437 0.63004563640328503649 0.23188398439024668352 -0.68025792773185167484 0.21338257048337003208 -0.10913770491874860702 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
140
|
+
0.0033534194879240222104 0.91096844069391458287 -0.014518034592988839429 0.24698283647510380079 0.13256611049241318057 -0.012466771242337616743 -0.27632835352147783192 0.074989161477159407831 0.11925297547740587589 0.19089336589378155806 0.17277964187619523906 -0.21485658185235995132 -0.14222332020355382687 -0.30496225358734380118 -0.18687226890005254054 -0.14131955771991491777 -0.039327362194650675176 0.13760779374548415266 0.25584064815652107772 -0.090947895544078366514 -2.646793872898138833 -0.18586592474036189859 -0.4334395391672109521 -0.0538593247058022917 0.13348196276361307122 0.3765243801583508243 0.03439663500436730692 -0.28132483019365156496 -0.098299168955819901661 -0.053765773493365281999 -0.022320931032719558418 -0.28305634132996776442 0.060777577747701878874 0.29143188138157344325 -0.28999588114936669658 -0.16718447537082448129 -0.87869143418900752529 0.13311528967147157054 -0.019372020604410497557 -0.58952192459510288636 0.47059594867628906645 -0.73240279570762900629 -0.015608006153444715924 0.20182278150744226153 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23043802984239580844 -0.31804121075177993472 1.1450331191843752254 0.24824768343058287168 0.61069694866045365345 0.62996583400374617234 0.23218326782617534909 -0.68024652524732220904 0.21266244153707100639 -0.109734201579992946 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
141
|
+
0.0033728998052068625071 0.91097677892867079397 -0.014515423844308199264 0.24692387904269882948 0.13252390366808949884 -0.012531034067733303264 -0.27626676614826317646 0.075062152043215188413 0.11923229232932881783 0.19091071760615876962 0.17287564496103302591 -0.21473671529641616407 -0.14216591059715838474 -0.30455277662556345941 -0.18692484275499884894 -0.14157055876723612098 -0.039245561669057779652 0.13788777775760502342 0.25581317477126797044 -0.091396392024254397013 -2.6451437634256671494 -0.19124641529499525339 -0.43202109255370013674 -0.053340250544948862588 0.13505735154276807264 0.3746164951757647299 0.03379494142235210663 -0.28344270315183206499 -0.097902628971335156627 -0.053666218315207431244 -0.021871959479181760089 -0.28307449681138652231 0.060826547186932228284 0.29168654904751872836 -0.29007663428574037567 -0.16782700349151638552 -0.87788261057995042869 0.13255450728134865468 -0.017868227245971167461 -0.58949830248229295737 0.47094613028206772087 -0.73234360981766555287 -0.015679782757694198797 0.20169787306521527737 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23036940502698932676 -0.31746464460314161027 1.1453885861860677586 0.24804166923303000436 0.61010768545117699535 0.63027022735418192223 0.23231299236821031928 -0.68040782179485792547 0.2118023045252948322 -0.11098433051299801122 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
142
|
+
0.0033242509599398766679 0.91092732492745387418 -0.014493657783169156331 0.24674243963200107044 0.13242334933586563661 -0.012613567059466562759 -0.27600738803885399575 0.074690993821256615459 0.11947825142278344079 0.19094950793965007052 0.17261537238872548539 -0.21439571078962160744 -0.14351003401301984375 -0.30503709422355951286 -0.18660549580576701878 -0.1416863553835789602 -0.039095764603543248228 0.13752430543805044261 0.25565593326705005062 -0.091295319261110133291 -2.6446463589588251608 -0.18540138933770020091 -0.43409911271925433196 -0.054269214377979019259 0.13237388972281249888 0.37770495312797291998 0.034828074668168153283 -0.27931160568940910371 -0.098353235699287999694 -0.053916351760505916435 -0.023048673092371966403 -0.28311291525349630005 0.060618428839490555438 0.29177929980718270153 -0.29051819193161032562 -0.16814709305318412125 -0.87886792171164918042 0.13251313469032682812 -0.017497829689063902625 -0.589787957067497981 0.47114051167377568596 -0.73207177237061205055 -0.015168824474537729446 0.20226569667678070963 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2307310865079277018 -0.31755516533367034171 1.1444114088006700491 0.24825038040741276291 0.61117707192689352258 0.62992671476483697024 0.23239513017964322228 -0.6803295321585657307 0.21127910557047080431 -0.11097629114784338111 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
143
|
+
0.0033075706399340854512 0.91089242980301921015 -0.014496535682968310008 0.24681723137391142764 0.13230922930828789563 -0.012540253413226315482 -0.27597247184470802273 0.074675694349106286341 0.11947980426571334911 0.19077199532519867331 0.17233723318288612925 -0.2146835120838709865 -0.14296539056442741922 -0.30313250354959941912 -0.18678993858195150346 -0.14168001775845232015 -0.039151483487343353984 0.13765412735848514547 0.25552486949579400477 -0.091519779549870672319 -2.6441842877338861406 -0.18900041735659472986 -0.43562089981861329413 -0.054895797991867278931 0.13066728429256735389 0.37971989821558305156 0.035437548825105975869 -0.27684287280246167029 -0.098502828076377946243 -0.054058753921613217353 -0.023456230159399803908 -0.28367673802753229362 0.060670897032831107298 0.29111858952338043327 -0.29077952528014910927 -0.16660313164871112801 -0.8798700345632776143 0.13413794752485561079 -0.018689733343512367897 -0.58958037897166737373 0.47070392950460038239 -0.73210537437506340019 -0.013486877616931078686 0.20215811340566494647 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23053310766133125465 -0.31775627767506497978 1.1439109437141059544 0.24857947278615433184 0.61192591774183668907 0.6293521591384788616 0.23220145878226280955 -0.6805438347677542632 0.21182483129951737433 -0.11058889631599407022 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
144
|
+
0.003308589686773100863 0.91086418758799359008 -0.01451881389781455034 0.24676903599527094668 0.13233840155109244385 -0.012652998163675911736 -0.27602394308967043157 0.074520281141451760742 0.11959252795685856863 0.1910966583237564409 0.1720810760553144747 -0.21430808541501339404 -0.14376361842457616169 -0.30513856962668339801 -0.18673939695288180318 -0.14119660028842712096 -0.038992987685260480091 0.1376251307021443826 0.25654890788377870958 -0.091434492917796025835 -2.6431465819032973208 -0.18827487608220463966 -0.43675590015338311423 -0.055267317823564726664 0.12962253479189470018 0.38136448390344307446 0.03594288592311896402 -0.27508122345682389787 -0.098790427434791605599 -0.054088039574593037295 -0.02420162786538075303 -0.28346226191448475884 0.060568629804677219519 0.29163291441868077758 -0.29091164647880191074 -0.16747939198149836004 -0.8800757125695567451 0.13337360579079199363 -0.017503346499012788912 -0.58977254148345059637 0.47143697733049022558 -0.73166770029283778598 -0.012894094188974313669 0.20208586198680283941 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23109428805877016422 -0.31704581589095637284 1.143321907925360259 0.24823046104796267497 0.61141311020690913836 0.62915757241839098679 0.23227498937183094219 -0.68059015102964481869 0.21222363256740311988 -0.11059142412073737216 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
145
|
+
0.0033220644992550014962 0.91088018268215831252 -0.014499712649167753944 0.2465088552487451623 0.13238560065567400725 -0.012644524730752492239 -0.27565358728395616961 0.074804520628103096658 0.11961647094046802542 0.19083239901376136682 0.17230522595874114833 -0.21463207763711311671 -0.14311478298576396639 -0.30644423228023764949 -0.18650205034577035934 -0.14189103487672488635 -0.039075933632390119632 0.13780905446376048862 0.25503115217775812473 -0.091664910946166230921 -2.6416651150629761879 -0.18920953125618192314 -0.43652216660375059432 -0.055213246400008131332 0.12976703069124975731 0.38134198783880307593 0.035916273365725448485 -0.27523967964859963331 -0.098579718926206857943 -0.054172703936234120614 -0.0240078542344067912 -0.28389134271268745557 0.060587089650920383788 0.291299222915355982 -0.29068555238334781166 -0.16718071290635830306 -0.88004333291561886998 0.13306027699177599977 -0.018031283706534843164 -0.58991553491034165457 0.47199275584571404041 -0.73132209287985439072 -0.01165008058230334459 0.20131412045508736974 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23091847891351766076 -0.31755256193654096686 1.1435146324805069984 0.24871431066805907428 0.61211815097155308774 0.62897551985093402838 0.23224756380389044441 -0.68103093341376641501 0.21194971531700318446 -0.11146955064412052139 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
146
|
+
0.0033389920415616896818 0.91090644757806005227 -0.014456547345798508031 0.24603659895252294465 0.13252649798483157051 -0.012720352225055591225 -0.27525586390571732398 0.075206503797979315507 0.11965089626057331951 0.1908255142839122287 0.1726643009924149208 -0.21495367920624611213 -0.14195458541389530116 -0.3066243272222554106 -0.18597440751268332071 -0.14242673112571521687 -0.039001994682866872322 0.1378453360965977148 0.25469854120272289455 -0.091127838301672967058 -2.6429641774973959834 -0.18533780886742373673 -0.43626153084393948234 -0.055173070219587894147 0.12977263695543395094 0.38157207474256232826 0.035972138460525361625 -0.27523089237634396076 -0.09842386684132208019 -0.054231190317573729764 -0.023512017657469491683 -0.28448875005757623402 0.060706395963969365936 0.29051491649186217403 -0.29086851990243839383 -0.16756570136757262257 -0.87968638264162513085 0.13280560179236566842 -0.01792250947713719747 -0.59035793540456527051 0.47228277789391454045 -0.73131046794960941071 -0.010358093085350891793 0.20107012635691715041 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2316269699521430192 -0.31676770912643653633 1.1436496570526819561 0.2487151828670361442 0.61071658037900056204 0.62859773956579345633 0.23203991400487991581 -0.68062616705139866724 0.21210419175576605832 -0.11214906774236853282 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
147
|
+
0.0033701427517277308607 0.91097244039270242055 -0.014443789750016615067 0.24569783837329012277 0.13257733597874366005 -0.012894848532171517344 -0.27477979581865419334 0.075688165534873452778 0.11985312998636798998 0.19036913829201240755 0.17293129212371416425 -0.21586273473140968338 -0.14155258902835510249 -0.30590487314202641222 -0.18563536286537934972 -0.14229487751609831703 -0.038688386092426654828 0.1376848848001647474 0.25575318864864449164 -0.091158385971519317881 -2.6391990318899272161 -0.18231496853683293313 -0.43472345008337254235 -0.054433895548637444006 0.13228228815419448838 0.37978967796823814851 0.035136005580963212969 -0.27866026442531632856 -0.097895543655622516144 -0.05412664401990256724 -0.022503217762581701616 -0.28470713721611851099 0.06081124754211835598 0.29044166227674689251 -0.29070648135380378063 -0.16785873174420221088 -0.87867101723072238428 0.13203087214493583468 -0.017552953662528240214 -0.5902499270954001398 0.47272232608439579415 -0.73090289817803599792 -0.011224555877085781383 0.20109714433544817469 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23138539783565037489 -0.31653096775710509725 1.1444527444539778216 0.24856095280527687463 0.61025967301576988788 0.62898161400411412014 0.23244533303408981828 -0.6805694370144551586 0.2114006561775348958 -0.11339296059338890843 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
148
|
+
0.0033644387663201648538 0.91098473929465895171 -0.014417080545545237977 0.24559679463280439937 0.13272804478074021195 -0.01278544397257330538 -0.27468773032606969009 0.07576792911715324319 0.11971177998255985719 0.19042067529492115452 0.17308589878782826288 -0.21573611603353953781 -0.14198469408656869128 -0.3064565344332335628 -0.18533192545595386647 -0.14236434341983078555 -0.038850633646883403483 0.13751270473048118892 0.25555266983308039253 -0.090994378254233010406 -2.6404641830244202083 -0.18167942276808821123 -0.43595624190730070113 -0.055055303468183887372 0.13093246904581193335 0.38149460098890458637 0.035497510289264962158 -0.2768002319544783929 -0.098156286382321211725 -0.054021464324320055128 -0.023017607889834937329 -0.28475866481590783597 0.060951596398207824601 0.29041516791933424946 -0.29062686048460167898 -0.16722750395367161347 -0.87938143753673170266 0.13198294478901742566 -0.01824786652468545628 -0.59017776454900350291 0.47291581953318745368 -0.730995688187998649 -0.012488372806834712944 0.20154302154629419319 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23156630864985933149 -0.3161505149841866702 1.1439067833884020153 0.24862500372071469346 0.60994321480849023054 0.6287346746598905245 0.23255364560594962708 -0.68046132613266552269 0.21171140094226012507 -0.11336550011211915523 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
149
|
+
0.0033296273680593008529 0.91095816038952959204 -0.014401625461762643243 0.24579956081574588778 0.13280812322626631139 -0.012718878036468130033 -0.27500074143290048623 0.075917931103517105607 0.11960587049839045692 0.19067626073122309616 0.17274038802095781353 -0.21585073728151737971 -0.14209562578768542007 -0.30618765423747995591 -0.18544469051210796251 -0.14199924816362299862 -0.038838752168222710759 0.13737840084663330287 0.25649153325551227178 -0.091449285946719680029 -2.6404350143576751364 -0.18567698241311106355 -0.43916963164095323968 -0.056339225631327843891 0.12810652865753527352 0.38565389703450553283 0.036452541155006734641 -0.27263478536201407598 -0.098975436945364453356 -0.053987597012610230585 -0.024212715012085810756 -0.28477065082538838281 0.061097595153751231567 0.29000172569711463177 -0.29126457531293209469 -0.16637330435724786981 -0.88091812080298659282 0.13269776940047500746 -0.019505773170724011872 -0.59003329910982504902 0.472475478320180442 -0.73125173915227215105 -0.013895640406694657887 0.20231047548235586708 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23228114537391095218 -0.31513490712734865129 1.1425220412257135472 0.24811420577470624793 0.60992020076178721233 0.62852845013418234821 0.23280953370135240577 -0.68035967489892656967 0.21200328789124767148 -0.11182725456423375787 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
150
|
+
0.0033358923901214685738 0.91089466434443522314 -0.014430082422343460877 0.24608027119074310507 0.13278603600127555917 -0.012647821957059464729 -0.27530138695059669374 0.075798826943307293091 0.11953079355462779831 0.19074903898791234491 0.17266664965670858178 -0.21561904847403057239 -0.14255580680916085656 -0.30599185063663825179 -0.18580902261968068601 -0.1413298919318977942 -0.039054919964069054195 0.13748104828448148851 0.25701124421243826124 -0.091496508031927534232 -2.6449746888674501299 -0.18699185916408878061 -0.43588117658555297629 -0.055371245580746866755 0.12998730032021979519 0.38088780812184952485 0.035584948020311979455 -0.27546137807362552907 -0.0984967338825048222 -0.053790557758176406333 -0.023897508957195869039 -0.28389511652600729619 0.060970510342230575807 0.29130301500825472871 -0.29058741535761861696 -0.16543280527141104863 -0.88031967726836413135 0.13361320752273059265 -0.018852677840286474059 -0.58949780652482663967 0.4720262527659124796 -0.73117572432164146257 -0.015349224014475720823 0.20328715020880813724 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23173471771645051676 -0.31600292783746675163 1.1432897745375507625 0.24881518972591962213 0.60895827781016931279 0.62840081765406330394 0.23290580928799914373 -0.68008778857622109726 0.21260104056133177775 -0.11092006210880439587 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
151
|
+
0.0033671657798751376475 0.91088652844090334249 -0.014419286483452690983 0.24617513499395193843 0.13290197834347067252 -0.012545915487343281547 -0.27538555199221048664 0.075517713828238672291 0.11938523990891171389 0.19072325460306710498 0.17268482331890375181 -0.21540033318213888669 -0.14245896746498862284 -0.30370991691116616673 -0.18588043100662449136 -0.14098863439041109391 -0.039193585491697907619 0.13759775351626921114 0.25738882939766682956 -0.091815339350571692489 -2.6436418748208634355 -0.18640346359384810104 -0.43662874504625215355 -0.055356177783547490245 0.13014340372129362677 0.38177928267980548727 0.035675063383780743209 -0.27577588786380935471 -0.098683427711576274244 -0.053879133106450399771 -0.023744516888570346008 -0.28364659386574009314 0.060840533469354744767 0.29126123883491789046 -0.29063644561351137385 -0.16528769728566417019 -0.88032604558260185712 0.13427452625821703625 -0.018841057279108928274 -0.58921747618769193533 0.47132957269305020276 -0.73136500422161809798 -0.015837642360779263101 0.20322500858138439761 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23188519952508382382 -0.31595374755564709091 1.1432565441731636913 0.24859161225135736895 0.60910138686092440974 0.62837668727129869506 0.23283872949309133982 -0.67988244751042548053 0.21246351763097598431 -0.10974534639024290106 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
152
|
+
0.0033863675876834079502 0.91088988223412292733 -0.014383151815959255293 0.24601672394205462147 0.13297021581631773834 -0.012650643384861008992 -0.2752705012457808964 0.075378891280414625498 0.11951367013509586745 0.19079091063222872182 0.17261388927181661734 -0.21558825196529141088 -0.1419513994177744598 -0.30420767489739491962 -0.18565640814109501955 -0.14115508142870492048 -0.039096436189211762613 0.13762756029324466067 0.25696750281815428085 -0.091680611416564319893 -2.644209633914450297 -0.18754931443230463128 -0.43657350286398388661 -0.055167112250944824736 0.13065209266348085104 0.38180322386397042012 0.035630680448929197279 -0.27639644722039385938 -0.09869559639567135334 -0.053790007454297489309 -0.023545878341606492345 -0.28340066216140252786 0.060853201266321481355 0.29147854729513361649 -0.29062183817889797321 -0.16575192734414909146 -0.87995800066195661859 0.13395195834990902828 -0.018375170504952204747 -0.58932650520290830176 0.47155968336395626128 -0.73236519221932350199 -0.015124273129582496353 0.20276329060242220814 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23168794272991083405 -0.31646927043709544014 1.1435925768322716678 0.24858277690866351084 0.60951332330182994568 0.62817134553555398213 0.23304074123854776057 -0.67958301703718082543 0.21209541055403560716 -0.1095147914147852064 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
153
|
+
0.0034218278284509281995 0.91089579018384148057 -0.014392845724921596307 0.24609684646471771674 0.13306806266508730552 -0.012593564212403955335 -0.27539152121326337941 0.075538259912665828288 0.11938229319982764098 0.19079040743024094917 0.17278096706156353957 -0.21566341542581865531 -0.14165180970255952797 -0.30417337799382110353 -0.1857762561607444185 -0.14165558244991027781 -0.039141158914185673889 0.13756496924783920277 0.25683059692497867132 -0.091700988379250877869 -2.6454665701305066783 -0.18571591095483297451 -0.43505533031219567608 -0.054732473613267780543 0.13149977600445544867 0.37967620333858553838 0.035234791196770393062 -0.27768272750841854757 -0.09823077657005918617 -0.053908396271644704045 -0.023018167002634721402 -0.28364442420226521069 0.060765260937165554989 0.29136201449407117536 -0.29069205886267107664 -0.16594503844447677787 -0.87957318905363146566 0.13401137538340204824 -0.017865727122331701709 -0.58949589936014812341 0.47161418953842731971 -0.73251615172018580413 -0.013675030146668820663 0.20291511927263353177 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2315276116377107396 -0.31662699420369933012 1.14401628885465656 0.24830026532034862874 0.60937771350980829421 0.62805259468782326238 0.23326653636993716079 -0.67952387120129087439 0.21201520382006786014 -0.11030769820469533971 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
154
|
+
0.0034406412983311669869 0.91094623335059710101 -0.014398855907133524881 0.24613318544488915762 0.13316488214031829695 -0.012477092256926388542 -0.27547203558646787824 0.07535132973682814872 0.1192449367554438977 0.19092660658941842944 0.17274575089221569368 -0.21550186671613250078 -0.14071637678156168061 -0.3046537756126493357 -0.18589236745620518754 -0.14183527345823079835 -0.039356417426468504051 0.13788315257074471032 0.25614921606956214672 -0.091785224225369027584 -2.6457793488334395704 -0.18586425538728226781 -0.4344301487360779368 -0.05425323976792637698 0.13259946652777171439 0.37873216576534146638 0.034953226281063211334 -0.27945283050991615026 -0.098058148039666906404 -0.053895465145193874323 -0.022589377047946619659 -0.28339554399085631342 0.060667684005753598486 0.29174073794416888195 -0.29055044070925850619 -0.16575703084920814789 -0.87905559787215858947 0.134687047226698553 -0.017607712970846400857 -0.58944596895723533336 0.47113384062955909748 -0.73231754275926863595 -0.012562073708742581973 0.20300079090866177123 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23115105913566597051 -0.31735772863690675516 1.1446202659102755472 0.2483341271493403335 0.6101111391552038743 0.62805368783493475959 0.23334277276781315025 -0.67994320492560944569 0.21204915110100028275 -0.11165752743202282671 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
155
|
+
0.0034394931104967515698 0.91093815976784398014 -0.014397706805420589296 0.24629865821953411675 0.13332598336314394061 -0.012507935804798328214 -0.27563958844995445352 0.074813441794144133756 0.11926036791598698672 0.19096960206501620294 0.17259684133354927238 -0.21513156543742723015 -0.14298398212338545021 -0.30625687843724669346 -0.18614936830305200965 -0.14235908384772305579 -0.039326201740388012917 0.13816407898042118441 0.25567289432993017817 -0.091867039780932538418 -2.6450496534788991987 -0.18422965064800092549 -0.43431751625538894679 -0.054444977402083351292 0.13249420675962045313 0.37829876954381697063 0.034757334484553259468 -0.2792417691635614152 -0.098311117898065639165 -0.053618538422695573298 -0.022921666570410594022 -0.28253116144684675692 0.060727773723802752626 0.29248063432112558768 -0.2905303759502277372 -0.16526306527395939749 -0.87912610165076787716 0.13459575041270116502 -0.017647807605080084725 -0.58956685452531354397 0.47123740135543140672 -0.73194656758278320297 -0.011331790543233799529 0.20230634703543504127 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23100662556046241969 -0.31759614369048660976 1.1445718664156143696 0.24890571333592412251 0.61057575646987949369 0.62792480947794382384 0.23289276862744237584 -0.68024174207891119348 0.21293957653891734672 -0.11240306442966703504 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
156
|
+
0.0034092545476573899409 0.91089637269414691634 -0.014358077825237694491 0.24631361434732457205 0.13332763060053817727 -0.012355565452348357333 -0.27543350082549578062 0.074667528301734856222 0.11920504372925326553 0.19075560064949517725 0.17207331260304556397 -0.21550939042113828603 -0.14136248672064039011 -0.30455413310626883172 -0.18599080448662208553 -0.14174994703682766706 -0.039539822978940965259 0.13799639909668953708 0.25615580244244534613 -0.092001710164926767122 -2.646616746264728981 -0.18616091673493989633 -0.43858118203478185793 -0.056260099769706063688 0.12761213808555141314 0.3841831981141017871 0.036510620520911335474 -0.27217345283740884687 -0.09936297597509698154 -0.053860971397532875216 -0.024686284211124915472 -0.28274834111385821478 0.060685273268011735714 0.29181891846492952203 -0.29162821569399671739 -0.16588132897581819858 -0.88085917115151979306 0.13449379868044752939 -0.018043307270548751553 -0.59029021730248110167 0.47093962524147620075 -0.73219222413307671893 -0.010510067390890328459 0.20219506216812463406 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23202687642739949769 -0.31661243541903344445 1.142627366563282898 0.24832785625307546296 0.61090494413640283877 0.62721525732703031775 0.23258390777919782377 -0.68030017529682340616 0.21388366722107771123 -0.11229495343546383457 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
157
|
+
0.0034080758491657823887 0.91087991395799960959 -0.014362469038946949068 0.2464428936892060773 0.13336149376990860671 -0.012409727715674133408 -0.27555412255604444516 0.074511871656844433365 0.11922821650535785076 0.19082765770101633995 0.17179879263546210533 -0.21522819873739063024 -0.14125754030928786009 -0.30604105773478373909 -0.18627700682065415072 -0.14189994546268069886 -0.039520170442098635777 0.13836585226287834161 0.25609032198008435666 -0.092076775854180781256 -2.6475127178218449409 -0.18690622426318126426 -0.43864944098954455898 -0.055922375134276045006 0.12774635644825879655 0.38420046686298681138 0.036815801088764421589 -0.27222625421465768136 -0.099401902490675944635 -0.054074529450724349855 -0.024670897804664380926 -0.28250135196107167834 0.060389196617975676729 0.29211059354125024079 -0.29141518243865005555 -0.16617677146648851538 -0.88091693637700607677 0.13454739725443956577 -0.018930306096084936057 -0.59045089949465578982 0.47081745233521116178 -0.73182821856462643151 -0.010084140407024190511 0.20201347143387721195 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23215911638309857934 -0.31743429283244772865 1.1426062365993165937 0.24837939971195807654 0.61140017932858314875 0.62733738046580345138 0.23219472760905779385 -0.68031529965051673603 0.21427657924445184245 -0.11356302458566469582 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
158
|
+
0.0034364111573822811452 0.91086811395254652091 -0.014344326835258458877 0.24639316829025653677 0.13340378318948947767 -0.012378798549702663481 -0.27548979686442581771 0.074909299767901477152 0.11908014901902548577 0.19091127279813582818 0.1714692789128179351 -0.21534844296626270976 -0.14187182325239017233 -0.30485935458792740027 -0.18608792172715674096 -0.1419681861014183144 -0.039561720036251066257 0.13806827389732129197 0.25604017316038168994 -0.092158912841704673791 -2.6468097192514790095 -0.18969799818736213237 -0.43874738227281312453 -0.055897312662243098247 0.12784279597048997523 0.38433286891206436264 0.036819441878023384529 -0.27235163055262046061 -0.099455350899593453207 -0.053965182699484227913 -0.024530740276229617836 -0.28226735674695618838 0.060501831871717030864 0.29180721664315267816 -0.29145909909642953028 -0.16682489767992836338 -0.8808045902260878135 0.13362631572113495282 -0.019175222325187143285 -0.59069575335428337048 0.47080737962960866883 -0.73117720886256931667 -0.010765553037034147205 0.20161815980135724957 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23233321257329653253 -0.31687804834848731783 1.1424441650923080616 0.24789925939805643185 0.6107361453098377746 0.6273826855121211743 0.23214406493588127245 -0.68043922899958453332 0.21412059858570473003 -0.11429181467694964069 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
159
|
+
0.0034538321675642645429 0.91089453221475691347 -0.014301381120443979605 0.24599195958656056016 0.13343782297604542264 -0.01245970291744356688 -0.27511536378890105725 0.07505854227569737358 0.11920487084525342725 0.19094075851782729702 0.17121372654286637349 -0.21563607660248951259 -0.14017016213455063545 -0.30355946945926792768 -0.18533708601372059221 -0.14251820493114158994 -0.039445937807244743634 0.13745567372458369904 0.25539553851846502619 -0.091658424961941639686 -2.6455598149917967099 -0.19041554895655346535 -0.43734360163665519927 -0.055811365654357146526 0.12799957654901858439 0.38284249181686008656 0.036539431510819987692 -0.2725413396212063577 -0.098709253820040795957 -0.053922197797297337363 -0.024105940408990264578 -0.28333211467627306135 0.060775120744318546218 0.29121430838511147554 -0.2916434201037796381 -0.16718763881502554658 -0.88073382055775994992 0.13330633832360092028 -0.018689186414860618074 -0.59068233046476970038 0.47072770218709203416 -0.73169497953380924216 -0.012103385682645144764 0.20160451874885465529 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23199393766982898124 -0.31638775998883950091 1.1424961363849097662 0.24687717881629397954 0.61037668019263946473 0.6276102073919539448 0.23268102970779355743 -0.68067961655944841937 0.21312052504463385727 -0.11551854835707968394 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
160
|
+
0.0034872211567341165547 0.91094096341487429402 -0.014298850078981772613 0.24580419669146591488 0.13347270655274040552 -0.012477363237186510012 -0.27492290303372068916 0.075339849684391932416 0.11919809211420863415 0.19078232198893482763 0.17188219511393862393 -0.21603584158034397356 -0.14098203750463486617 -0.30281196567673779318 -0.18522625394521405329 -0.14176234617474506305 -0.0395165821238555523 0.1377045675071864872 0.25625615026991466205 -0.091827342019369234682 -2.6461298941720157174 -0.18539127896476034763 -0.43609427047589249815 -0.05521903996560736938 0.1295415067255596131 0.38128607285093152335 0.03605002945419919641 -0.27481561875924442884 -0.098352405511622623124 -0.053824663877494419162 -0.023474102906206620323 -0.28316425102053505158 0.060797676213554356639 0.29138455645762723067 -0.29112444220166439068 -0.16697921271425100742 -0.8802583351244658294 0.13286011635035541167 -0.019026672365610078352 -0.59032818290962540964 0.47100030059225966861 -0.73187495389391055145 -0.013561949375245057475 0.20112987393041922846 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23164905317526879314 -0.31679181060252020741 1.1430884920193684628 0.24681734277192898808 0.61063674218818719819 0.6278787239733208958 0.23256555363019296157 -0.68046867616758821562 0.21166547742788779929 -0.1152666954420747264 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
161
|
+
0.00351084446222848243 0.91097134600646367808 -0.01430005479769029704 0.24584921649199351079 0.13361093938281734528 -0.012446184248248426049 -0.27504690622347161 0.075313904762336847387 0.11910044036331635109 0.19082323912281221046 0.1724053078986450549 -0.21600011311317965368 -0.1413389719466671135 -0.30299333418548002328 -0.1853268413327945896 -0.14177805281263633486 -0.039578476024532668887 0.13790008217558749615 0.2568865302085618918 -0.092221165188133558122 -2.6488484622373658084 -0.18593686460608593869 -0.43667151440263918261 -0.055500183586846593697 0.12905660516085590284 0.38204576244029359033 0.036161740671168465799 -0.2740838642070642095 -0.09872553309262557808 -0.053747460319851551869 -0.02391321966695419271 -0.28272292070080212723 0.060764257679732321116 0.29182746151805283308 -0.29107643502035529526 -0.16684576005840251467 -0.88055434259060305635 0.13257927910659508819 -0.019311577841539136896 -0.59040396756273072487 0.47079207717248738874 -0.73241025279415483684 -0.01435992538373557191 0.20184530618102591859 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2316441940875848815 -0.31646193515305104382 1.1426910602422886143 0.24581136634275624342 0.61104408555645084444 0.62804536920520681598 0.2329685904949058417 -0.68051162407019138989 0.21067966758681822004 -0.11328196080773925147 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
162
|
+
0.003490445454989387318 0.91095309369935884014 -0.014359959630434156533 0.2464485156892313733 0.13361018893737372504 -0.012509929798140690185 -0.27580839967312625882 0.075031262819401034481 0.11917727109883669012 0.1910336026286192368 0.1720868217160223812 -0.21604220317830860609 -0.14114136050968828506 -0.30654587453817688791 -0.18600090515100020649 -0.14164317746835947132 -0.039401364098540427039 0.13785509421483915782 0.25708599481143606935 -0.09207065679618470222 -2.6446964471202321079 -0.18694246846469569912 -0.43748027632839897594 -0.055482820106086627732 0.12918218696490224584 0.38251584903255286818 0.036245144895859358891 -0.27420557491679065087 -0.099367726759449659379 -0.053548650521989649143 -0.024273810006825199959 -0.28154881118100366644 0.060680040880323540819 0.29267936174554387563 -0.29086858974883517126 -0.16641026919605214629 -0.88043803982697355082 0.13291152556788493611 -0.01902293321320612518 -0.5901557377251974712 0.47050617916733855628 -0.73289651983625081488 -0.01527134714449080409 0.20183482969034735599 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23164164371663456543 -0.31647294874898551642 1.1425066862659762901 0.24530774488925596866 0.61088918292298000079 0.62822001275905714479 0.23326633559128026607 -0.68053604430751679644 0.21086359202420043579 -0.11184342908911182324 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
163
|
+
0.0034797745636819038192 0.91091969829349406229 -0.014401228510932439011 0.2470011204729178067 0.13351831910435468798 -0.012618855007397337953 -0.27641457302541688756 0.075054237909810611606 0.11931104637629240395 0.19105782840815940804 0.17185474488715682395 -0.21590797567650818478 -0.14214270502560885645 -0.30578676088648371056 -0.1868013995033374619 -0.14075972496940211687 -0.039361780416331142163 0.13829149403152543596 0.2579842985097034469 -0.092731404492223015734 -2.6465552000184380255 -0.19142451510001604054 -0.43870237118452659608 -0.05588076948606664901 0.1280573902707387024 0.3836580419445291823 0.036698545503295015857 -0.27234621068295433721 -0.099823340756324444034 -0.053564524273748706507 -0.024948331974637381891 -0.28119152008351822047 0.060588863535780364267 0.29303113660915880434 -0.2910628383940637165 -0.16610860920550224451 -0.88108030958699412594 0.1332451173763474217 -0.018951366524960974735 -0.59009576363606464078 0.47066832829367127866 -0.7336108256712372544 -0.015782627877687319118 0.20205522993201283088 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23166624003240404717 -0.31665172093283699972 1.1418526114737734822 0.24498478410497440128 0.61164998472670140117 0.62832188843454583882 0.23324736715685423505 -0.68041878519657150726 0.21042695598259950063 -0.11064760995344222194 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
164
|
+
0.0035113263768081839911 0.91087984037403602056 -0.014377391747897530147 0.24701602362720795347 0.133525666969729645 -0.012523965512947756937 -0.27643457001853327659 0.075005284065920316272 0.11917708428670088783 0.19108748590080326668 0.17215128856988612394 -0.21575023427915090979 -0.14329739402534644177 -0.30290231912577109119 -0.18678146872012604818 -0.14097979461574208782 -0.039470272197602657149 0.13819663725708894453 0.25776002267144043634 -0.092825423498881814988 -2.6485595862547595125 -0.19031671050145881896 -0.43916211978996111398 -0.056233791354470222257 0.12753285532405156388 0.38426437626387160984 0.036707551997547681333 -0.27167556770561002155 -0.1000040510349678724 -0.053308913160099606621 -0.025006992189704861651 -0.28131631731739448199 0.060944347516760415118 0.29249244153066056295 -0.29131740325669369662 -0.16490817806800062151 -0.881572510383067387 0.13416269925026666487 -0.019645844595216739592 -0.58994321519597137105 0.47023110390964506511 -0.733243179798945377 -0.01436085773426894717 0.20296350797611711902 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23145532658104764345 -0.31671864688556117251 1.1417185900904311957 0.24531624026914675141 0.61194551291566767759 0.62792068865072359074 0.23270938160859827581 -0.6801382376096738458 0.21074447537017659826 -0.10990052184329567042 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
165
|
+
0.0034899794821910364896 0.91085694021733509818 -0.014348746501592131442 0.24684382432069731927 0.13339796947768942093 -0.012625468710403311631 -0.2762720332614354013 0.07499139151611791676 0.11942434154427225557 0.19112777253667725952 0.17212370548225042199 -0.21580020621618606347 -0.14225991343525329347 -0.30327173314465316611 -0.18636426055759039433 -0.14120609290012728354 -0.039309105615577696891 0.13760717824790838493 0.2574393513715100279 -0.092748412033917121411 -2.6476699999678792175 -0.19051932673759081061 -0.43921761140288284597 -0.056434940954438329863 0.12659612559315586156 0.38470362102926214387 0.037059816504029091666 -0.27023803585835542984 -0.10009443505679335717 -0.05341760278582249194 -0.025092818232842400983 -0.28182529122047006442 0.060959240833713165819 0.29216529930336004872 -0.29157683687536439798 -0.16573114644954220487 -0.8815543517637376425 0.13316904453690120436 -0.018801840659447850712 -0.59053396806992963786 0.47092613267324484605 -0.73335762887837496748 -0.012962452848410490475 0.20306597408381274472 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23170210482819972309 -0.31634297109631115408 1.1414390809270624771 0.24454756207402919554 0.61167095247815117531 0.62759261565187551835 0.23281706010920771854 -0.67974951363007474203 0.21060553036455903486 -0.10976409823963237389 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
166
|
+
0.0035197946371163398548 0.91087464005526708188 -0.014315694251593126876 0.24631639134972338478 0.13339665725465338353 -0.012790378932534924097 -0.27566625455605520134 0.074953876880683500961 0.11957392332274023594 0.19094276050811556655 0.17201077311892198907 -0.21585779135615962288 -0.14016619421494122544 -0.30318827629486549968 -0.18575964682207191103 -0.14176192450318911287 -0.039037138971008855659 0.13734876769253331896 0.25724718813424385377 -0.092024667133794077478 -2.6426561202023357566 -0.18670592194598983893 -0.43825486601685059718 -0.056218453902615962703 0.12727593898291475472 0.38398325183910203551 0.036818924162831473401 -0.27099974347160454835 -0.099503290726310686387 -0.053422598784043831555 -0.024758158882899138076 -0.28276728994989785981 0.061109356517830636102 0.2919851928230901561 -0.29175757998220391842 -0.16563788739178575415 -0.88124329152622726813 0.13360887560380999006 -0.018483222672082941923 -0.59071312116460694686 0.47057323583215632246 -0.7326337720035233092 -0.011771001800023488115 0.20296082705778795141 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23160661964778042621 -0.31600826995715741718 1.1416409825683642154 0.2441485881648246814 0.61101804955461147539 0.62740147270040524941 0.23265633803344834551 -0.6796145137367708422 0.21048780371240455311 -0.11070595792618023734 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
167
|
+
0.0035497647955035913428 0.91088774098505898014 -0.014357656636631336081 0.24616918140404470128 0.1334491994008232818 -0.012641492801614861996 -0.27554289744244786498 0.074908431649451892587 0.11936558908395433765 0.19092475782131615447 0.17216307557304158515 -0.21587412696967767101 -0.14031521282610795454 -0.30429161489718137279 -0.18564484613402876256 -0.14210133096100596717 -0.039278789339352859766 0.13749460015673628521 0.2566429896298981217 -0.091959528181799810032 -2.6442774673777660333 -0.18587231330362369297 -0.43423372776486618418 -0.054814601148675902442 0.13038005574698455225 0.37882112159628217318 0.035635147959505578119 -0.27583900322195831212 -0.098636524358137425694 -0.053278487215585312864 -0.023541582659500376318 -0.28295434291580612296 0.061163561447091369105 0.29246502218092512715 -0.29108601615900803194 -0.16547268493062214367 -0.87991228547399502613 0.13354357171596242804 -0.017903470206763295175 -0.59047108646013379829 0.47078120826311925518 -0.73194444022529647764 -0.010808270287209922542 0.20191331864398928686 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23093606238394778774 -0.31749223135833670728 1.143226761979201811 0.24513278248732323084 0.61075151662316684575 0.6273280848743661986 0.23249731621523983538 -0.67998860629851953785 0.21050491185403283345 -0.11219148350900133571 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
168
|
+
0.003553114294854825897 0.91089239673495070448 -0.014385515877017411579 0.2463054663232235042 0.13345576568682915308 -0.01264656901162895114 -0.2756924721701697889 0.075040093032908095072 0.11932924144083432993 0.19100622536244932226 0.17231538984210018062 -0.21585754308690349723 -0.14166180444400611194 -0.3047923207528046019 -0.18596311858095021519 -0.14138399649775051925 -0.039424654171284295723 0.13805340129560356166 0.25725870452755611462 -0.092287492854502134465 -2.6461051101945298747 -0.18701990753113817423 -0.43573161096133455894 -0.05536829813878683948 0.12934833067528950235 0.3808096558122527342 0.035991763396021184129 -0.27425322855801820277 -0.099126857956230024493 -0.053146666261161323863 -0.02396434236161731901 -0.28313806028313798224 0.061370024121487856683 0.2922525775194161346 -0.29148594624547041754 -0.16554213475173823467 -0.88031749823517058129 0.13320751689855825362 -0.017589215691008949771 -0.59048484458355465776 0.47103756616232211885 -0.73185653030887909409 -0.011059515319098262368 0.20131459752821515008 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23104302368500601039 -0.31724668268282596451 1.1427730502980424365 0.24500262450738033437 0.61062160785835306598 0.62698165023557828057 0.23248369493651357964 -0.68028411642423536332 0.21083080293155495588 -0.11274204701841411547 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
169
|
+
0.0035452971755227081184 0.91084556704536745464 -0.014402981470285000642 0.24636345313141461144 0.13339579323271943956 -0.012725722628993350535 -0.27585112592277638566 0.074465984396016815516 0.11947679984498998929 0.1912349743473311936 0.17214432550394381805 -0.21547435714678839225 -0.14167940092372963146 -0.30846394045965486175 -0.18615412655012561483 -0.14179906243367243479 -0.039272357012015007838 0.13824932951003676695 0.2570026833682345635 -0.092576567067654255694 -2.6451438425389772746 -0.18658733296453944295 -0.43578883247453664707 -0.055242868690467683557 0.12930247514995554803 0.38097737568460177116 0.036211359033388942907 -0.2739588826786319431 -0.09936828677716415259 -0.053128492375705563266 -0.024306324206968394491 -0.282838409341911734 0.06130138685199345433 0.29264670845664564336 -0.29124628516579165183 -0.16597332919026322462 -0.88037820745172912229 0.13271981175183902857 -0.017409779726080685386 -0.59035470664889533321 0.47107153411427021839 -0.73179925316060634444 -0.012086096209366858217 0.1997071073833693311 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23132404748707530162 -0.31740987582857760341 1.1424614652841762474 0.24495759167068775763 0.61010824238640037898 0.62683776750541453371 0.23213100512858930724 -0.68043954393467198649 0.2106690635356047725 -0.11287959904448618964 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
170
|
+
0.0035470814893570953158 0.91078153973518138908 -0.014394237205641152375 0.24630086535908193857 0.13343339282854013716 -0.012773571357546358029 -0.275724951139599328 0.074448665806251201893 0.11947900009080940353 0.19115160032825562197 0.17227684381665533953 -0.21552568413223055499 -0.14330380202926326638 -0.30923686438619929495 -0.18613300916791858386 -0.14237504165359401997 -0.039241685117948309214 0.1383219704011385276 0.25618909088124575124 -0.09243011162300387995 -2.6441410717761648641 -0.18723832909926482748 -0.43682842835454011032 -0.055684781326340637708 0.12801870541104423684 0.38259671854029603244 0.036731519548990176904 -0.27197704318543625135 -0.099563010836494311717 -0.053263823698719174604 -0.024569919091660102212 -0.28330097011811949947 0.06134535776718744865 0.29194003183507144517 -0.29136585979817786196 -0.16656571992484262013 -0.88083211737644884209 0.13195077088872045334 -0.017488045492813197174 -0.59045794713922472585 0.47141244235841778254 -0.7320161339317821092 -0.012519076280810630467 0.19889227303856399365 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23163158927127072695 -0.31716740065717952124 1.1419301969399280328 0.24453080883325040151 0.60971238530633842245 0.62627830646003890269 0.23200320364297841169 -0.68052775340401505666 0.21038747383621986264 -0.11192249375933423228 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
171
|
+
0.0035420321854198063248 0.91080593080905269954 -0.014312392462975012664 0.24582512566022798883 0.13329017977223228675 -0.012680067067519257273 -0.27509672378943461624 0.074838358231063870085 0.11948351963610241711 0.19112564583418861774 0.17199061987159700027 -0.21607825104610164924 -0.14236124892165363809 -0.30595551837345585922 -0.18541032199160453753 -0.14199019854490119164 -0.039346925300220089716 0.13792407426346864341 0.25622577602167800892 -0.092689611991738210528 -2.6430632622069305526 -0.18721170113940285851 -0.43709698070364461087 -0.055951006841880160381 0.12728715715614807857 0.38356313388148716159 0.036960356833664727294 -0.2710805158554057126 -0.099656571164386101302 -0.052995557991620464988 -0.025122586771780770071 -0.28385759839260132908 0.061668326174836002318 0.2923329330141206106 -0.29169249478879488713 -0.16670519019404722583 -0.8810962562337174564 0.13145121206936311031 -0.017763626644671074578 -0.59058004532003449683 0.47148177528532847491 -0.7322862188596276356 -0.013322387435498858968 0.19980376908167082894 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23186454603029138521 -0.31663830606137366441 1.1417540999023754189 0.24402813779002299754 0.60957094819768697924 0.62608456527181222118 0.23197408123017793091 -0.6800143312555605446 0.20936564331203372236 -0.11164859490335046766 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
172
|
+
0.0035912421477201799704 0.91080262185545779463 -0.014286606528366134136 0.24549418629648431245 0.13324773978115034279 -0.012700457881614855837 -0.27483371350996987914 0.075050330049352562134 0.11948713985261819048 0.19126075468725309281 0.17198542360114177363 -0.21624676507884263432 -0.14120243957930805889 -0.30774026993281322628 -0.18485098549642184351 -0.14258595074467117492 -0.039275995448569557544 0.13749692915330355425 0.25579641912212758292 -0.092533152462893994428 -2.6428525458429312778 -0.18682266683420800657 -0.43382557746984484748 -0.054679764821867773983 0.12995123000044481176 0.37944575319138817981 0.036103229488952774673 -0.27504635315626246861 -0.098496937353548599803 -0.05310867163764373261 -0.023685478052378649422 -0.28445730944111707883 0.061630576553069742196 0.2920194026006077137 -0.29102409724293210047 -0.16681956489520990972 -0.87982026052272410688 0.13145722296313888666 -0.017535515159958235676 -0.59055064463821094201 0.47119308429136391725 -0.73257233159106693865 -0.013209320574723196207 0.19990090202014981768 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23106859148838918006 -0.31777961901473561479 1.1431208562499786119 0.24424169153131242149 0.60939915627074359161 0.6257214329699528621 0.23171988894991316088 -0.6794777426215543592 0.20872299186746259836 -0.11166629111106057826 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
173
|
+
0.0036027540016447747069 0.91084613513563250642 -0.014285861171863405844 0.24549661488039051238 0.13332736322183083577 -0.012768894764622987573 -0.27491017868371642185 0.075262907186041463903 0.11953186728694754903 0.19134618036159836696 0.17169686270247203064 -0.21650256737988149425 -0.14197317425413333303 -0.30625507563167164715 -0.18494407246205624151 -0.14223813929074222151 -0.039284223767703574381 0.13777090270953226692 0.25578747036874227572 -0.092659359835263410687 -2.6425304223026064854 -0.18481002176726446518 -0.43225580668159574449 -0.054129650715936644678 0.13140793927732363766 0.37746115451119688355 0.035554827331897423393 -0.27711901274763567349 -0.098133614229915247518 -0.053159259031369705817 -0.022967941955237831941 -0.28503445997695087133 0.061678567597545017054 0.29170443025861603203 -0.29108276121017689908 -0.1666798275417958608 -0.87950525585615746404 0.13186784679820404143 -0.017332256142481763245 -0.59013250000613914903 0.47083338651014478016 -0.73236224954610440463 -0.01349523016192151828 0.20031671326379685283 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23126147747951047995 -0.31760925068797507542 1.1435960263625841726 0.24381880819056256371 0.60840582829021960798 0.62574665959033171081 0.23207221738922209631 -0.67944831994689980359 0.20896137167216990993 -0.11194664284105558527 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
174
|
+
0.0036033896451564870721 0.91088293808846809707 -0.014305605786246143596 0.24579631061545476056 0.13333934483895340528 -0.012750525372280134204 -0.27528344776796187521 0.075116670429555332245 0.11945811997709261665 0.19153916126596920444 0.1718854444503856993 -0.21616593856104332483 -0.14204863798007680287 -0.30603313163487227966 -0.18539415949223780888 -0.14227849500821582174 -0.039308928433271772551 0.13800739202607642531 0.25582736647154591392 -0.092865776959316442829 -2.6433329327274504017 -0.18642321517321691626 -0.43401850601729269341 -0.054620953477220006433 0.13012289857199485499 0.37943868382011547435 0.036095925529866269843 -0.27527415335701133081 -0.098174239925393355644 -0.053352234504662497672 -0.02317671031570599921 -0.28544414073700691281 0.061656483317365250174 0.29099440771152701446 -0.290827797220392259 -0.1667422290036742194 -0.87990513088679689346 0.13107758393918650386 -0.018148383154466700418 -0.59057800408159655259 0.47101349781553186746 -0.73268278553536403397 -0.012535190444738476823 0.20192370156132682935 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23115917543827466107 -0.31768019887528553546 1.1430925942621339431 0.2434491545374066479 0.60882122810373140442 0.62538192124659441884 0.2321226569760807823 -0.67962526616357865628 0.21039174494562773443 -0.1113390858951213841 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
175
|
+
0.0036254105083195894629 0.91087783292986801431 -0.01433913613689580431 0.24643384535970547233 0.13340012420597074927 -0.012664291233759920538 -0.27608927244539988033 0.074575615157257024723 0.11933708606134259267 0.19188903452357197743 0.17163440228846643665 -0.21588009295901994244 -0.14315228153738443484 -0.30468937330435247324 -0.18629141258570838802 -0.14218871520053408264 -0.039435274587782842559 0.13846837742145992611 0.25605715393029571114 -0.093124964680082245039 -2.6462777537706680953 -0.18657577408704145716 -0.43506734201344265944 -0.054991410419820203892 0.12967813579628476028 0.38013583843646697735 0.036120546606521503064 -0.27459573829053235405 -0.098751259960170673091 -0.053237199533351042824 -0.023850597021463623704 -0.28442392509110342447 0.061552756851678235017 0.29166297408345676079 -0.29084856735560959962 -0.16633374000625358868 -0.88026454913253970869 0.1310336711103653462 -0.017724296018585737611 -0.59024144203235973105 0.47087688951317918651 -0.73281569911108512816 -0.012423561827476437697 0.20214556259789343007 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23102154673187250133 -0.31828014427591394542 1.1426673040662471692 0.24426808242285397155 0.60935964078345672412 0.62533359074677563605 0.23179263392209734085 -0.67976234844163840876 0.21213621595987294799 -0.11214722178664368601 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
176
|
+
0.0036384800167667138114 0.91085659620239844969 -0.014383109516937653966 0.24706828367394156887 0.13330817517018633822 -0.012595802665765395631 -0.2767460851463056648 0.074508751668977302174 0.11918027967029526382 0.19206003031411308934 0.17146621363122629966 -0.21539008779840598806 -0.14388049070477287872 -0.30627325379443348652 -0.18712233677054479486 -0.14144818845361489812 -0.039475149746249556248 0.13886834095238231868 0.25693418865743905544 -0.092706842296124983283 -2.646510382848462406 -0.186689729336503768 -0.43414197592924808067 -0.054631869316434794603 0.13101012592138677748 0.37818557583805623157 0.035468638119230767869 -0.27658846433038730694 -0.099275445295777350885 -0.0528181680643051224 -0.02409896742170015288 -0.28250743616437634653 0.061500946231536506026 0.29304686399632284832 -0.29056783655678164457 -0.16395471453625687364 -0.88025938051843966026 0.13282589281284201688 -0.018715770039542410641 -0.58957640007025280404 0.47038609675762504958 -0.73291862511605454511 -0.012305909108006591809 0.20218800315398011147 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23036326399929055175 -0.3191075085012926027 1.1430476423928008778 0.24521381736961875286 0.60950772926289331632 0.62533236075729325965 0.23155448833247455065 -0.67990267792445224782 0.21397054303992452118 -0.11277529671984438953 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
177
|
+
0.0036482358796094864831 0.91083728350382786587 -0.014345564659656846393 0.24727909361538763511 0.13314460199338032376 -0.012463083916139582399 -0.27685287021557020148 0.074526937677138929694 0.11906655750304388774 0.19199704854508434226 0.17139596772437457051 -0.21552435311845580257 -0.14314099493187984469 -0.30414991442272371058 -0.18735614234130987255 -0.14134966622989178497 -0.039637903050792379356 0.13892757711707959256 0.25665116837928064752 -0.092786321684909550678 -2.6465423546185689041 -0.19270713309828088611 -0.43839333814871989103 -0.055967251442218403368 0.12751728617722757342 0.38376164031278886535 0.036946684510044965066 -0.27159774862297109133 -0.10011911191384541275 -0.053051579062788997709 -0.025177822375228524343 -0.28286916892163277426 0.061475991893773000718 0.29225598197531010847 -0.2910532319848599947 -0.16366965444484146697 -0.88157939240226301791 0.13300649812020085005 -0.019792712514022533371 -0.58999893493472177486 0.47020767439193378312 -0.73277094718079982538 -0.012135541251211103692 0.20303177673821493077 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23132220616615911668 -0.31813073014338044686 1.1416633898737635899 0.24479989633539539495 0.60954609339966525638 0.6246090619540449751 0.23113231598503386488 -0.67959051983712481793 0.2149025473199007441 -0.1121377931722115362 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
178
|
+
0.0036337791757589834978 0.91081852925993578296 -0.014317046599250643837 0.24730704960745408805 0.13313177761468986127 -0.012535729803241479202 -0.27681352489746480217 0.074667553773793013394 0.11920325235026424382 0.19175435427252948695 0.1715500895824960681 -0.21570024337787460644 -0.14322252110856911744 -0.30237811404051573305 -0.18698860531284933195 -0.14124997397344501993 -0.039568489554300229072 0.13805181304479488547 0.25646586552553191085 -0.092390927174660117394 -2.6462681402251635454 -0.19122262134356171615 -0.4374209564471862044 -0.056079049712028809782 0.12778526999579420398 0.38237557126587817802 0.03644688064812931505 -0.27200298519427779098 -0.1000743963092771277 -0.052709431588441844896 -0.02512288797851237182 -0.28272075566718013473 0.061786547904690271305 0.29233982782280948376 -0.29134018575655068473 -0.16362943370739563287 -0.88134583291317436515 0.13233234981366209793 -0.019266687895256241758 -0.59010019118367029733 0.47053511866683306319 -0.73308514593052276354 -0.011355169200340815144 0.20309209344874318282 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23107167033969408521 -0.31814758287589484098 1.1418177653470620303 0.24516905209875772265 0.61032374069323080956 0.62473699703001162042 0.23106105402987864306 -0.679575170425511077 0.21407661364033148121 -0.11287387872433131408 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
179
|
+
0.0036814831662999336105 0.91083568591617747323 -0.014267679924055023596 0.24704519383643683272 0.13320911389478071185 -0.012630558614376733578 -0.27646178067962273728 0.074657717403019324687 0.11923178179770575758 0.19158347231796257759 0.17166979947688762453 -0.21561586774180166448 -0.14243264023366380977 -0.30164451787045609699 -0.18679249514643181396 -0.14142506870003754282 -0.039569702081367778834 0.13830804855753173199 0.25667446431711749 -0.092584428337858806768 -2.6498684864511057313 -0.18701259606084311149 -0.43767130893262273794 -0.055923659860652598363 0.12828327987301099689 0.38295116627862646475 0.036475985847567254927 -0.27257857872961199774 -0.099982868444159170296 -0.052803765176992902008 -0.024669200853004648322 -0.28282788819569237848 0.061790611281333090998 0.29161016283316354425 -0.29113654088459534064 -0.16464353175606930013 -0.88085559942169977532 0.13120738809987092521 -0.018583440017419201179 -0.59044025287201062913 0.47089916066313042275 -0.73273584316511208847 -0.010901385798304030067 0.20187551726735819546 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23124573665309391957 -0.31809975177447685768 1.1418825943622377128 0.24462349819529252692 0.61090356452896188433 0.62483571489233258323 0.2311133845390200281 -0.67917272376204873563 0.21294505953468909065 -0.11241812435557063665 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
180
|
+
0.0036842033960814766884 0.91087635387471188597 -0.014250923499227770644 0.24703554189583515344 0.13320079843728827029 -0.012593010172800192525 -0.27632926880416575077 0.074701588318437567304 0.11915089552329201361 0.19119155492090231241 0.17192691006375124263 -0.2156866243932293592 -0.14205327012662771757 -0.30207276170731134357 -0.1866821724977328345 -0.14139564295303547192 -0.039593398620134875876 0.13806019770712818495 0.25690186157871658379 -0.092911990879058062309 -2.6453274546803617895 -0.19442991243522605993 -0.4377423115141210741 -0.056247289644698085509 0.12775902248769702152 0.3830090664230760833 0.036416910917186566532 -0.27189821111000889164 -0.09993439627496845945 -0.052670534536349122856 -0.025113269931972354021 -0.28285194953270753615 0.061857363707420870425 0.29226297419799324162 -0.2914762150895882642 -0.16496219986903104537 -0.88106275312491844076 0.13092629261535995711 -0.017603257934233680626 -0.59037559677722351026 0.47086830685597136359 -0.73248528114415700774 -0.010901935822394903663 0.20077210348765381354 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23111401021311969717 -0.31759869754932540387 1.1417266140494752857 0.24411374053530501826 0.61143582934678908369 0.62480697782200056434 0.23141133988996898108 -0.67926906094370442801 0.21228136428791885559 -0.1120248822236533659 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
181
|
+
0.0036638104092573393726 0.91090993819891408201 -0.014253126142723783823 0.24733239703723775005 0.13308116888174484349 -0.012441023228834880571 -0.27657862990166748318 0.074794270578845648001 0.11892951065978071834 0.19127536672970313347 0.17211371958726232045 -0.2154752843961632025 -0.14354008813674970502 -0.30564276021826075613 -0.18710692345215265697 -0.14138281251770115632 -0.039813335232159172139 0.13823624591635552683 0.25651374975959428948 -0.092558029731555108155 -2.6453371566590035968 -0.19040933033802429075 -0.43799983184032270644 -0.056018195770158395186 0.12803602938752800533 0.38308187397043602651 0.036476335120541346357 -0.27257859552152802207 -0.10018770742529709006 -0.052730408154801726439 -0.024986169397275818926 -0.2822712970536542243 0.061640277953912289699 0.29268643959037232705 -0.29137704402724623476 -0.16498060216287455115 -0.8808611972464742701 0.13095420049988126809 -0.01751432106033146141 -0.5902889816820766633 0.47078795967505765452 -0.73278621836211788043 -0.010844889140791137347 0.19977917072431528034 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23134359337397333856 -0.31775717796367902723 1.1420145232350993325 0.24406592856491096666 0.61176040333676928729 0.62477397018911651205 0.23165616472148928273 -0.67945961101288365747 0.21211214151602403311 -0.11167136213081024776 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
182
|
+
0.0037074759260057022457 0.91089912654623816923 -0.014259094349421420553 0.24730422247980654582 0.13303891252412525237 -0.012366175871052232163 -0.27634765365693114703 0.074484017347797235042 0.11884699015564086089 0.1909800164211495066 0.17208107022913843309 -0.21531814132155999153 -0.14183760112281801335 -0.3072940272498775327 -0.18724279342170210838 -0.14190154279373967672 -0.039874373040307282967 0.1386569226373025876 0.25612463467138207873 -0.092796086786457829265 -2.6452149017806103615 -0.18829837117866016216 -0.43761187486333347207 -0.055537890907264748919 0.12880613355899647732 0.38263141345930484771 0.036475772249934278191 -0.27371943255799380257 -0.10012640287227649039 -0.052947971160704009053 -0.02487193701350006933 -0.28174726547294848267 0.061284977237460638855 0.2930519006952986838 -0.2909911236267921919 -0.16545516134176713186 -0.8805045479521397267 0.13080882460542522794 -0.01735273268443923364 -0.59041778330141625464 0.47063852916539661297 -0.73299084322210883435 -0.010334203456937940749 0.19947653542440363372 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23156771668106743145 -0.31842319214548631123 1.1423559184671885358 0.24445462174286236579 0.61201365301341104086 0.62465411423430172722 0.23154287683618487992 -0.6795565302416057829 0.21228466408870250159 -0.11110803613428783809 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
183
|
+
0.0037091674332377462184 0.91086237840010164657 -0.014206049531425788898 0.24689747602322012487 0.13292292417611886735 -0.012299980857683663962 -0.27565260766906918288 0.074851126496018244305 0.11884117593829587878 0.19066495622284249101 0.17243715851942467698 -0.21545025888102625755 -0.14298447621431384369 -0.30854536285445749444 -0.18646872939076400422 -0.1420306368294981525 -0.039867860287267006814 0.13795835777635198638 0.25617987199708919244 -0.092015829936469201167 -2.6450414947212177452 -0.18575637242492284984 -0.43854937399295385037 -0.056113955066065708543 0.12736233901532034718 0.38442829791065097345 0.036931963245213771108 -0.27168536361722839256 -0.10048996651791948509 -0.053032075132368447501 -0.025326171531121422636 -0.28148611521524907753 0.061221805178762141175 0.29275997975863765621 -0.29147540206620281555 -0.16534875406332266712 -0.88109513558233532038 0.13107325227723035099 -0.017422770421396577972 -0.59049999618848769689 0.47060464302929677638 -0.73356048511264648759 -0.011220445991613576739 0.19877115222899910396 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23201312938291360211 -0.31755681206710600906 1.1416577057457604205 0.24378166463045924939 0.61209751079271035312 0.6247078611897991518 0.23185035586686800202 -0.67962873224647057935 0.21204538123332303257 -0.11105131247091114266 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
184
|
+
0.0037166072027002279403 0.9108713873335522182 -0.014202079101335213923 0.2467900334238050386 0.13294878484106059657 -0.012374864175612110967 -0.27553366322515571163 0.075099461477161483236 0.11893833047718986584 0.19063271472081796953 0.17219121969110923187 -0.21583943254788964805 -0.14195331110805201047 -0.30689481070045715461 -0.18638217932523726272 -0.14227789173049862348 -0.039801944132177344282 0.13803111242197663167 0.25566982855869158087 -0.092222516602223372773 -2.643891742662699329 -0.18468403083358900241 -0.43645594833315687344 -0.055434178325463281944 0.1290552071405018375 0.38173735596408031601 0.036238158130772933629 -0.27421329588606097039 -0.099835796906715013055 -0.052959591304254718946 -0.024534267563753247438 -0.28196161840070710358 0.061334137216095228895 0.29275681138638010026 -0.29127045865708534045 -0.16658488237870519577 -0.88005865577186870308 0.1295197479313340283 -0.016425747192237234034 -0.5908984245104575983 0.47113211104159402609 -0.73306197366345526856 -0.010992471091871949471 0.19898600700328378243 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23193005182486053917 -0.3175722606052834851 1.1423925666838139481 0.24392163343420408816 0.61149633845208239968 0.62497499148272206426 0.23192763783867709204 -0.67957957890156728276 0.21167023582610472454 -0.1125878304606864333 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
185
|
+
0.0037496429332159386325 0.91089149213151443529 -0.014125845453257053139 0.24636659069451735671 0.13296157869466274093 -0.012534047008574128804 -0.27509124533118417544 0.074886948982714016121 0.1191062241822683776 0.19080751931064876548 0.171603518650412179 -0.21553505363030750486 -0.1402995382717350803 -0.30464594845617909424 -0.18564866095158297221 -0.14294695183121949866 -0.039596208761793254272 0.13747140838740498636 0.25477513638556831266 -0.091768392548740543302 -2.6423388172173494226 -0.18844521771394248666 -0.43505131256991358413 -0.054681392294342476279 0.13042690037624649069 0.38015103626841062479 0.036007211621669719948 -0.2761173226490654109 -0.098791742389308684347 -0.053356104151600559915 -0.023285769430626487159 -0.28296008720134363523 0.061190745240531280169 0.29164001269933836902 -0.29080770142979606163 -0.16737958991808413178 -0.87932230774556374708 0.12917193529483397829 -0.016531813808152641398 -0.5914116234855320009 0.47131992469204259111 -0.73365600595793301064 -0.010811586596821059353 0.19907063408848815755 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23167715512808481626 -0.31825316581194668109 1.1431082045828773186 0.24383638041610697367 0.61142834971391546439 0.62495937370425569402 0.23221141616421850373 -0.67948537505437278661 0.21110220664615977904 -0.11356901716304267091 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
186
|
+
0.003769101252851254219 0.91094070960487150135 -0.014101125846016861545 0.24633893575207835291 0.1329109702052127806 -0.012591902951895736149 -0.2752007965457886618 0.075205605764369742872 0.11909829496036947183 0.1912088863528838556 0.17087877595386138929 -0.2155550429985758909 -0.13935090164090516152 -0.30283806204370156134 -0.18580305732787730233 -0.14304133074248726043 -0.03955717117017157336 0.13800435238059524656 0.25502111275627331599 -0.092595828756795534042 -2.6433020297155613854 -0.18368709116975695528 -0.43383678906685491095 -0.05427418467669386376 0.13182084440961538974 0.37849675352399447803 0.035396939666984220119 -0.27817678989028760128 -0.098281575276225649485 -0.053347384750537227283 -0.022262666191610644417 -0.28349841296972044802 0.061358085662969220897 0.29077866882233738277 -0.29110165938013932152 -0.16690618870339249402 -0.87893120228635168711 0.1300203968134117094 -0.016604636020394199225 -0.59136930095354056647 0.47090312307776649448 -0.73328280747290930375 -0.011112349614562736302 0.19936676260543784167 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23134222925642514146 -0.31798601747006527418 1.1436336271415987742 0.2434714492622522819 0.61109568288644955381 0.62523700826783168427 0.23275079088535258198 -0.67947521604508831494 0.2105484108381803221 -0.11419687643466994165 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
187
|
+
0.0037810384705154395646 0.91095594629330922665 -0.014094660152169447356 0.24634822044906148908 0.1327638105963369064 -0.012666468951727787029 -0.27512799235479168392 0.075030345350299662566 0.119196756920909544 0.19111760313785983167 0.17114219090909676968 -0.21528122378872938114 -0.14075035141891714674 -0.30449562315590589234 -0.1858923608412265116 -0.14277374046499607951 -0.039546961128552528264 0.13819384362987366388 0.25472997419046800038 -0.092821856886383058427 -2.6426873911534984884 -0.18954108075268652489 -0.43187232988460055871 -0.053212326161770379107 0.13412697742990434269 0.37583126463634802805 0.034812414444150653614 -0.28145056457239259196 -0.098151319065351488868 -0.053387095015583738156 -0.021855773681969191402 -0.28222442709006939632 0.06092091780509221316 0.29209793730707689363 -0.29062265282582899761 -0.16779801988139422808 -0.87790260028861288877 0.12922170827825910089 -0.015806600219800896745 -0.59155632112108980092 0.47146257185115464372 -0.73298940767812503783 -0.011231206446148344485 0.19967812237058349401 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23107874847065706936 -0.31883418108752004105 1.1443744287234718371 0.24386191121076997157 0.6107028270004174475 0.62557876868704132001 0.23290512191793930064 -0.6796018043186384805 0.21114268509209099811 -0.11417853714543660382 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
188
|
+
0.0037978449157847773109 0.91089009157328282296 -0.014091787247552858137 0.24666435205168960043 0.13272140076001220921 -0.012691477966857139109 -0.27548523914592099038 0.074555448755264180916 0.11928389346332084198 0.191283748946185439 0.17091921832530154735 -0.21508098796261387875 -0.14225748901758819565 -0.30302883232103866584 -0.18636164580830028026 -0.14301917045848641652 -0.039469277171522321179 0.13838184223849017696 0.25467148650567250634 -0.092773324715119787065 -2.6415282261561201516 -0.18769965997441070971 -0.43519860623386247278 -0.054409984348242589058 0.13121854258579179753 0.37999356067455963837 0.035919300001362647334 -0.27703418487904563072 -0.099055697552939234174 -0.053550003470298451758 -0.022918745877711525771 -0.28160299703711555441 0.060805154538238363748 0.29142184583871677539 -0.29103038167243960865 -0.16790830795430930489 -0.87910272285176505047 0.12918024735164654326 -0.015981308966794564169 -0.59192897815441014586 0.47164625333410409302 -0.73338534112166431367 -0.011897656891739560175 0.19988451503763102202 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23209910716369019923 -0.31755038775904897985 1.1429144534687190049 0.24346572615777931081 0.60993960867194507713 0.62510765703413484484 0.2328250016629054564 -0.67970923522356196944 0.21231516880356632315 -0.1133559384942169207 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
189
|
+
0.0038032308108564413449 0.91083622358499949367 -0.014097666704857098052 0.24702411738584531542 0.13270238222080207868 -0.012703976581883538385 -0.2758148436153832761 0.074382780210196813853 0.11925902679848837673 0.19126177529415591683 0.17115464487208886801 -0.21484041219669669509 -0.14216695849692359555 -0.30718936210960118283 -0.18674053539687135439 -0.14243242460263894067 -0.03950107484293657184 0.13851574268062263884 0.25502149226052667208 -0.09234815292165286793 -2.6450314560317069734 -0.18780112503388746159 -0.43502797967405265611 -0.054340158945864698581 0.13177507137801425241 0.37910219629180458289 0.035583723816703390075 -0.27777824897822084305 -0.098925535166749206661 -0.053274096187211260334 -0.02324253725093034309 -0.28076199338252516569 0.060850869974839051635 0.29231181413643420042 -0.29052513599725354743 -0.16718570412963970617 -0.87919251787245067398 0.12926633746819149451 -0.015954756052203877131 -0.59155399880674364166 0.47185757366952468805 -0.73337967144741877945 -0.012061287439660233964 0.19899597592815568281 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23154939478004493703 -0.31801403666065974907 1.142808722619069739 0.24401819167520030773 0.61019399647031302703 0.62545922780414997533 0.23293111851515957422 -0.67990392916627406805 0.21299722710606736054 -0.1138283057647344193 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
190
|
+
0.0038134146432633733367 0.91076024448235914921 -0.014059883690520743466 0.24716693844550263748 0.13257775325806556155 -0.012784147996135315772 -0.27584483109912971699 0.074586931567577105517 0.11933283362760165047 0.19112283855093631368 0.17138128682767694855 -0.21495228344464165082 -0.14351487586462760571 -0.3083657890419501113 -0.18685898985461482646 -0.14152219495392448501 -0.039517272888872655157 0.13868323063359863645 0.2555245293477380053 -0.092582590439154510698 -2.6466709927454266094 -0.18733036338670563947 -0.43647419126314745963 -0.054876156741315497423 0.13031760008177398213 0.3808515698831127505 0.036152597336430794539 -0.27549717448321886515 -0.099233688631303273997 -0.053316489990730096815 -0.023755251095499679143 -0.28050079489385126852 0.060843084096601024457 0.29195315465612686756 -0.29064974279776112365 -0.16705599182744401698 -0.87997486768405908109 0.12942936552820324958 -0.016809696384536929048 -0.59173880410685941733 0.4717977085543402227 -0.73292822572999860586 -0.011785775682099715322 0.19865413151365174382 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23174899196329479256 -0.31808847190930100712 1.1422566338970741029 0.24469121682703265375 0.6102490410180678726 0.62489098573488521815 0.23237932000662761545 -0.6797899884181585195 0.21420774881339743612 -0.11333419203959618771 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
191
|
+
0.0038441316055022514003 0.91073829699259079007 -0.01399698933681853795 0.24715516318650548877 0.13252149839177201907 -0.01261924079560387997 -0.27583360648614668742 0.074365061147645086792 0.11917259082653004765 0.19128775251615354192 0.17121384523655455712 -0.21479716560929654201 -0.14217632966001048089 -0.30508986713852254136 -0.18680222904524054761 -0.14236543062185755271 -0.039567028319068366093 0.13847615237935187449 0.25462636897685980708 -0.09281578010535804224 -2.644083605675986437 -0.18788690875720370776 -0.43619947884295312557 -0.054754801417445174427 0.13025551741952512419 0.38043642359090462657 0.036170623574021371072 -0.27570719686420169792 -0.099057257079994992521 -0.053425322640846331645 -0.023461069284018525039 -0.28048277154108419706 0.060767017581321719488 0.29160904719264857388 -0.29051862069566947167 -0.16710644609545338701 -0.87998040802788313197 0.12929780970552451347 -0.016956864229708486919 -0.59184448569145087227 0.47239310353757013594 -0.73328584507038307994 -0.01127423634110790579 0.1989177310460817083 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23165151621476312571 -0.31870612746826942896 1.1425030559431581523 0.24550616040263309459 0.61066892530416860829 0.62472820111555582567 0.23183056589068823383 -0.67933782664141773022 0.21394189107424327334 -0.11392294843111566705 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
192
|
+
0.0038395852290723621672 0.91075877922161474487 -0.013931984718857792424 0.24705027546301719377 0.13252765899747948053 -0.012629725371367915218 -0.27585127311963408836 0.074577291283202382099 0.11920595435056152711 0.19155461263395565097 0.17118770047069720164 -0.2150849507415768247 -0.14185548037011974642 -0.30271655705557720673 -0.18654286465315475518 -0.14200715431458213467 -0.039620346685670000675 0.13829199540783643219 0.25502988099379081399 -0.092564860703170714906 -2.6447881210876929003 -0.18932538127376016823 -0.43689143517393336236 -0.054850060702966212112 0.12982105585191866526 0.38142392749386994089 0.036454890879112189506 -0.27519214888735998858 -0.099239167783510551235 -0.053438805814232472058 -0.023700995585939937937 -0.28007823995536540451 0.060643238297527997382 0.29203094255198053242 -0.29077960689236237446 -0.16780807153699942025 -0.8800630747106348295 0.12949164545336458443 -0.016778144831780923696 -0.59202686315978936271 0.47219451864005868025 -0.73327006158072471909 -0.010926000451192352525 0.19949555797163306958 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23173653050994671987 -0.31880730584633748537 1.1424606332187114965 0.24539671752741190613 0.61102786640270656537 0.62475541897695019422 0.23194412822816523612 -0.67921179083430816004 0.21374284954742983622 -0.11358442319290107392 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
193
|
+
0.0038236536196738020628 0.91075640017328307607 -0.013904611375443184235 0.24715004453308381249 0.13259060929691449116 -0.012774145337131590644 -0.2758483482551853383 0.074449860449612006996 0.11934829786944657626 0.1912491967665632675 0.17153343359815956259 -0.2151016392117333087 -0.14342669545157291089 -0.30486555811884041844 -0.18661625478864926619 -0.14121414063675544193 -0.039568385597677155352 0.13845603523115188049 0.25595775913187918116 -0.092864391093884016137 -2.647071125463174468 -0.18789349551171871666 -0.43777977794899203268 -0.055602996639932518452 0.12850367321755667982 0.38242778143716638084 0.036606185028030112372 -0.27305812316931993289 -0.099729173556517433652 -0.05313199566608125396 -0.024606658996617337271 -0.27934447894236019705 0.060842128795974975697 0.29233659592966609875 -0.2909068437514875094 -0.1671415072932431467 -0.88082807832467258091 0.12965981876922133553 -0.017013390634356896636 -0.59207764760844994179 0.47235524019254682138 -0.73330916885650543335 -0.011129206690942210559 0.20015644619141720328 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23169020489547539898 -0.31840444542917994974 1.1419160754778756584 0.24590802569219782914 0.61079519337501841925 0.62435533022179601215 0.23168349886979980323 -0.67959343713007958065 0.21421798951849535531 -0.11273106341216390658 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
194
|
+
0.0038132638500333977324 0.91078811850646501647 -0.013896008562158966571 0.24732881525581404403 0.13251975835860962949 -0.012570013755137689898 -0.27598331168880912978 0.074546978586771062147 0.11906086222156216092 0.19144920783403060471 0.17107554832822216562 -0.21487960733846772632 -0.14279241763251632191 -0.30215328482464198778 -0.18673436561144141077 -0.14098439270483120733 -0.039809161615263953526 0.13833665255099544811 0.25642979652029340709 -0.092805433086421362798 -2.6484698488585043386 -0.18925524929279274877 -0.43780050956557353681 -0.055230418899377006769 0.12920663618797889605 0.38215017413740481889 0.036519070791710281365 -0.27442033845811747428 -0.099748195239847223248 -0.053238451973374296966 -0.024305251437126668135 -0.27867184139795925235 0.06056968795829804908 0.29268859634920590951 -0.29045097684014892225 -0.16547325353858033381 -0.88108758793047359248 0.13171546287201019165 -0.018409656059601813005 -0.59136660710357324966 0.47163915717790727555 -0.73307777961887965468 -0.011631786352989238395 0.20035634883615499602 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23114710373647676112 -0.31910103979637310934 1.1422321306655933704 0.24586806390474807982 0.61126612275824254716 0.62461661423057657228 0.23211342436910614717 -0.67982494951785410464 0.21447376552410624129 -0.1113872044190354349 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
195
|
+
0.003804138889699037844 0.91078484706921958303 -0.013883810149463444994 0.24746586563338465736 0.13246760203732441119 -0.012459687454578673854 -0.27577305897672849122 0.074714101628295670476 0.11897622347345840343 0.1907522165258915825 0.17161120465954876613 -0.21521454176755433485 -0.14398348566138860494 -0.30635376969996130914 -0.18674251960783019855 -0.14121851369212937155 -0.039931889661680208814 0.13807175376144664725 0.25580087457705791287 -0.092651541764851019778 -2.6469190804955560203 -0.18696164775435489269 -0.43859689293135473154 -0.055564342773168191869 0.1280020071844052143 0.38320853393189158176 0.036967948148313133083 -0.27278812311427191872 -0.10049278391565145963 -0.053162675039755913353 -0.025281982841086403369 -0.27769935839460030413 0.060396355957986362639 0.29371564353948792503 -0.29064127500474801202 -0.16594329537235846805 -0.88143340234745370942 0.13163484156898574984 -0.017787840261233225231 -0.5917120955492648493 0.47191863813918127901 -0.73335722277861192797 -0.011576581477383702731 0.20171167985582674764 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23217178017653719579 -0.31814071638031388156 1.1415821444366520687 0.24568929655591387196 0.61020537066501157053 0.62470313130936638846 0.23207169591699725042 -0.67986499013754331244 0.21437788773955379629 -0.10973969097915829696 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
196
|
+
0.0038092342028827881444 0.91081355491730187079 -0.013843506483801806123 0.24743878618478334919 0.13237102922405868943 -0.012461600600953678941 -0.27554499393221454362 0.074751238553081911231 0.11893693337089465689 0.19059104120572945007 0.17167530292274479908 -0.21494873613102660759 -0.14474006198061653561 -0.3071058759343858191 -0.18667034423623615758 -0.14121308871320123468 -0.039867607171767807661 0.13809494396192750765 0.25619273872466513664 -0.092537688596160114218 -2.6480267191046777953 -0.1878898330448809384 -0.43934394475888388643 -0.055842770873494901318 0.12766074093079701757 0.38422419172979166424 0.037050849504118348043 -0.27227885462277451323 -0.10067281053065224583 -0.05310757543689054172 -0.025406230011812549335 -0.27778290113715509158 0.060500290597236369705 0.293491730425737396 -0.29096923766521426424 -0.16600652501444990161 -0.88167592101286529349 0.13163917900715402243 -0.017673825168998028023 -0.59176991206787066258 0.47216773802946809813 -0.73350997899431247262 -0.011207013339806398342 0.20207809060920858824 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23234075963563843858 -0.31753096476726616615 1.1413738635295047619 0.24555456604764908102 0.61022991161541184635 0.62484880381798912907 0.23211194025226228321 -0.67976794830089648514 0.21376539491057458542 -0.10830126437086759483 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
197
|
+
0.0038151705847829591421 0.91086603430264401204 -0.013777544029502115236 0.24701560102476716185 0.13232301807178598052 -0.012459636877096136667 -0.27488351088302426239 0.074977498905079459357 0.118989410954698005 0.19013583794026106544 0.17215440172500171001 -0.21516619743480486227 -0.14494105499546186544 -0.30798656631310517007 -0.18617849880584272371 -0.14160877675393737651 -0.039787882399543721135 0.13800183173060809327 0.25589827284955229958 -0.092835094187015007594 -2.6470171866861003096 -0.18847907543246839035 -0.43991334359849476598 -0.055927076323066482466 0.12757159749532581694 0.38539993528693944347 0.037194043359807693605 -0.27223182497588788165 -0.10077851559884952459 -0.053027918788898488478 -0.025741965960939510588 -0.27756494024880479232 0.060470448168967357028 0.29415171261933720226 -0.29128078579755789512 -0.16663016467647226437 -0.88154369112949337861 0.1316517928859215758 -0.017503979275090099377 -0.59210271957407523136 0.47208690735379965631 -0.73361604220630582951 -0.010764416373948374611 0.20291775986210047744 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23287132439065849621 -0.31613383909928549631 1.1411923265122547733 0.24454310326995717939 0.60945720558687033197 0.6252436095443948405 0.2323972073989612197 -0.67956641455402277963 0.21289805375665943332 -0.10796491588788001414 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
198
|
+
0.0038257790034999013956 0.91092661569627741969 -0.013726532140805771179 0.2466271229026113232 0.13237969221522324914 -0.012421605073909729525 -0.27449747627053522336 0.075221038891213176658 0.11893019076363445241 0.1901498355153940778 0.17232104928419733625 -0.21538059632445663572 -0.14444662603354119224 -0.30702653349275288441 -0.18570257578136548093 -0.14184104322057827785 -0.039853787834358021802 0.13795830005284659414 0.25578770270745526672 -0.092503411934012680362 -2.6451112547665900365 -0.18851020675538845972 -0.43858518256973461069 -0.055493982497883058425 0.12834851033072702808 0.38399272060376388183 0.036917007361899484286 -0.27354030460359191057 -0.099937339227969740341 -0.05330156526930366484 -0.024981801227380036334 -0.27871234466439565036 0.060452415208037617311 0.29332796901700519676 -0.2908990290253239408 -0.16678009599343909808 -0.88122816646079027425 0.13165148771314827414 -0.017537088827478578001 -0.59222140093177400022 0.47231437705552142825 -0.73312924661509204505 -0.010423088965533662195 0.20238124322005324185 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23259825449847565393 -0.31665661791796384517 1.1417474572175270175 0.24452347160165338602 0.6100913414112238975 0.62564730846187466273 0.23257639269771313018 -0.67939430752249363454 0.21130346328296414904 -0.10863918371516786965 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
199
|
+
0.0038358543236766506727 0.91098691963729538923 -0.01369251865070517625 0.24651119092866316529 0.1323303503425180272 -0.012493731667922919337 -0.27433965328805781647 0.075495174339074558323 0.11896905668705048953 0.19008272849352569889 0.17206218099792541798 -0.2156528647733772508 -0.14254994336427020962 -0.30491509772900937669 -0.1855379822193364836 -0.14219664195013415053 -0.039811308989592807117 0.13797100845668258673 0.25484546824227138906 -0.092531776237785884343 -2.645994271813881582 -0.19147107927998383015 -0.43639542080078252972 -0.054970220089350513293 0.13042338280562532082 0.3809372363214931223 0.035820214798651051069 -0.27657594469996082953 -0.099186888452303292874 -0.052971693004107534009 -0.024450123088415303546 -0.27899873827459958919 0.060729065635574085158 0.29390806319296053362 -0.29074903941221136305 -0.16662942468814556651 -0.88024877953947922027 0.13114377206250907304 -0.016865205975104193004 -0.5923967172537237813 0.4725833933789178043 -0.73245656078373810871 -0.010244064630126357984 0.20145341293496127344 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23161428315021828639 -0.31692357304639351412 1.1426862015613650225 0.24516762127868407806 0.61043761681625063886 0.62614848797413924508 0.23262205370146443739 -0.67959703154456552188 0.21083525254460991349 -0.11020760382463180849 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
200
|
+
0.0038285344775982393592 0.91101309136307873082 -0.01368788564492786318 0.24650335213500446097 0.13227512147111225582 -0.012406018193319580389 -0.27437133861057583228 0.07532371879313870533 0.11888987473483482449 0.19028347163988329482 0.17191625254296652447 -0.21536776587780875891 -0.14269815723856299483 -0.30310350261895829815 -0.18558305250257606245 -0.14192917376443453525 -0.039934272277366976434 0.13812691298409060514 0.25526860720299932028 -0.092576028966588383429 -2.6479173768021344593 -0.19269832252902222014 -0.43657507069625750562 -0.054745059824123865067 0.13077468190066571241 0.38123557945164021632 0.035881497035700982146 -0.27729173540704082912 -0.099407454770143663381 -0.053025383089711886075 -0.024439098366685431396 -0.27850608375928032068 0.060536444896774094238 0.29434220719132503374 -0.29065330364339736491 -0.1668890182925979182 -0.88009921497277032731 0.13139328128939956053 -0.016658011903377300394 -0.59229543242471782705 0.47263350612319554589 -0.73262017831271109003 -0.010325291163796952026 0.20165906383864545814 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23165308459207054059 -0.31709147857067337961 1.1428246258242671374 0.24522017868418291564 0.61052698534328020408 0.62668799109088457744 0.23267177242502989909 -0.68001121567267841517 0.21072227140171401194 -0.11180667093751356367 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
201
|
+
0.0038322647676138988163 0.91096908596546155579 -0.013695545833683330644 0.24668312830631491939 0.13222806254539831716 -0.012427671572210922252 -0.27452976971380760318 0.074926352152287156727 0.11895316731620952933 0.19048924786821824773 0.17158258268578038819 -0.21507098574829741633 -0.14326313956005137795 -0.30553542042243325705 -0.1857380557500196705 -0.14223403082818125709 -0.03994450603574801334 0.1380106263649034104 0.25468057560512019633 -0.0920598777289945297 -2.6474910973284502269 -0.18929631673720034857 -0.43567664527099253524 -0.054256955722107438889 0.13133235747874430488 0.37991838371338582103 0.035843298095134555614 -0.27810691403178983139 -0.099516313804843090085 -0.053143854737300579016 -0.02442858852556782992 -0.27777896853175848557 0.060244984997740065602 0.29477732590007327262 -0.29019471688603465376 -0.16717209613544004032 -0.8798364504950084708 0.13149673431378422483 -0.016672700223674064013 -0.59242187124238387952 0.4726681050372303905 -0.73252496041337689103 -0.010667818371183687004 0.20100752137747560089 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2318503243528353408 -0.31743047163601512128 1.1430476033871395103 0.24542157368185196775 0.60984429589052879805 0.62665945502355302477 0.23255354276273360048 -0.67995805649431606543 0.21141495878116720042 -0.11083987612790954791 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
202
|
+
0.0038206692422750169504 0.91090730548624065932 -0.01367403995966693861 0.24689986379325773447 0.13225152006725510168 -0.012479622671306995346 -0.27470001317178832645 0.074636706394918261864 0.11909338414702845543 0.19045848323948444403 0.17113702450267354038 -0.21497536377813028508 -0.14286400568799262345 -0.3060056211091984335 -0.18612659467875714014 -0.142051490155687965 -0.039809579837436222249 0.13849091974099056457 0.25491728977302013925 -0.092806932706995207139 -2.6461811173450877632 -0.18867443667047689715 -0.43830786844777475109 -0.055387652891891264728 0.12871879671152075542 0.38334457621050954668 0.036701359479165550359 -0.27423527323019847302 -0.1003726204414060047 -0.053230728470652993733 -0.025363907002560980714 -0.27768582062977176239 0.060259437655907688303 0.29421616248565563012 -0.290799853790055296 -0.16688531751071578046 -0.88113047053563686717 0.13194410373081252863 -0.017466775115149744263 -0.59241569050562159493 0.47259276198222521792 -0.73288557149576560867 -0.010872796799489884562 0.20034120168171434817 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23242337277770552806 -0.31713033861443479244 1.142118127651626569 0.24586000702769850168 0.61050149404038589473 0.62655291556718839541 0.23214089672180396318 -0.67978788527398714692 0.2113693649188325141 -0.11159015209658844359 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
203
|
+
0.0038377030683724188721 0.91085232610602950842 -0.013658088825082917439 0.24715103252330974937 0.13215730210165979597 -0.012537735576355568679 -0.27504069879285863998 0.07466114468456537534 0.11912823497625460445 0.19067534331527413727 0.17125795672030830197 -0.21465205046737689809 -0.14362757138828555203 -0.30549432849380686594 -0.18649669294501372563 -0.14200342807279153767 -0.03963340362390271876 0.13860045368928475273 0.255245553756459298 -0.092874487388961812773 -2.643168694061134083 -0.1911283039815287188 -0.43765499112081174271 -0.055300738530511914237 0.12860345120649266382 0.38221053518148179196 0.036661895779329600753 -0.27399619267963781777 -0.10008399982098481473 -0.053397065213782152204 -0.025373021173081881235 -0.27804406982308071949 0.060175247153425447111 0.29402552575172541394 -0.29065357296573079982 -0.16758318887553574905 -0.88113905614967602542 0.13123397748318094136 -0.016533577449875064974 -0.59254486361381863979 0.47301407212655494083 -0.73272343737308298639 -0.011436681026285661772 0.20070858402032801249 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23227064890971810263 -0.31765800963610946184 1.1421459675575480475 0.24626277439453009288 0.61062990001044326061 0.62665204714899080951 0.23231367304882363789 -0.67992596801466353984 0.21150823372375615605 -0.11187152538636625787 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
204
|
+
0.0038558816466115505665 0.91082425186882698398 -0.01362786644322372745 0.24720633089659843629 0.1320864710279997245 -0.012579815273097963782 -0.27518330197692719707 0.074838092110007595203 0.11914190730230220239 0.1908613852038014147 0.17118647006947548816 -0.21473031959689670156 -0.14267073647585554186 -0.30774730076697709436 -0.18658498096165088143 -0.1414964500665968905 -0.039633906578970985735 0.1387338584109629458 0.25569522954634260614 -0.092886302979954843417 -2.6442797077403636941 -0.18754241006777327971 -0.43835879391382764902 -0.055644547321932441575 0.12816232718575457095 0.38307648587507558968 0.036707514687729363156 -0.27335456949490233303 -0.10040196204339667252 -0.053268653975589837224 -0.025437422066799830755 -0.27796249459332422749 0.060360804731792644384 0.2935447886493114944 -0.29092272612328773373 -0.16683152539770898515 -0.88169870001026784401 0.13202287321332589753 -0.017398603246239010417 -0.59216954438748881095 0.47256484018564615113 -0.73310240681479466041 -0.011327872607708332556 0.20033123082486303801 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23251282324877625696 -0.31650523206586511638 1.1417546324383973655 0.24570119458113764965 0.60994473161522921867 0.62695823470131317734 0.23247879323135545171 -0.67990520250245167766 0.21180807365313630841 -0.11178318243907200968 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
205
|
+
0.0038256519235291188558 0.91081053948329404601 -0.013591137002145958421 0.24718020933436213316 0.13208122675094730036 -0.012717685927872694751 -0.27517285191714152548 0.074697871452434908002 0.11932419230823339273 0.19098689116668571275 0.17107053308844061279 -0.21435420613637679033 -0.14306828970064053297 -0.30528725568264825085 -0.18643212977531392616 -0.14119083917895849933 -0.039463617627291391887 0.13852284650289084511 0.25609219827276519243 -0.092851633749978665366 -2.6437841511788957582 -0.18801992837882566811 -0.4408710159685515495 -0.056553891950078635786 0.12604553804097004543 0.38658916394244358106 0.037522164919209899381 -0.2702726358652450811 -0.10108426132414438658 -0.05338783608161647154 -0.02575856455076351928 -0.27820076885672945233 0.06042289488477167736 0.29255842087996059009 -0.29134115460614018467 -0.16777895609733761706 -0.88205261188013750484 0.13102296430571530594 -0.017247422582812903941 -0.59289196358988882629 0.47301340111428386015 -0.73376684014256654542 -0.011387241076884383612 0.20189516828384387881 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23280521339054197072 -0.31642963695391579382 1.1412579912349583022 0.24595304086382080433 0.61034327034461288708 0.62649826829555099739 0.23222254183949270212 -0.67926911947489831967 0.21202514945457737183 -0.11138828664666269863 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
206
|
+
0.0038020018126147217714 0.9107805535522748297 -0.013568319010989900522 0.24724801422447839627 0.13211283512868465806 -0.012794875909800265332 -0.27523417046330433955 0.074755644389109199288 0.11941655020111280328 0.19102712068189764416 0.1709788541013739227 -0.21446356247693432184 -0.14249055184428019438 -0.30485461367305188851 -0.18635715348890827259 -0.14133854888064778521 -0.039291797191769790853 0.13808699194506632302 0.25630266465862866498 -0.092641230352810161053 -2.6437661122413644854 -0.18557513672605446819 -0.44148348166838941031 -0.057022132159763407044 0.12528233178691153271 0.387352304039611961 0.0376004068305375444 -0.26909464037301877859 -0.10167954797391813571 -0.053083238993362737157 -0.026476444107252621735 -0.27756594382821797584 0.060586365876716383183 0.29312337254008730136 -0.29155341923746203037 -0.16662428984816382571 -0.88271583607526238335 0.13226286999012279444 -0.017944740929140352154 -0.59257245732195151788 0.47241692445475791384 -0.73372487231194349899 -0.011554191786156154179 0.20156088740396538306 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23261055335168323577 -0.31686259925806242732 1.141014250845763689 0.24667819736256083041 0.61098852314218377035 0.62650777637908938722 0.2320326554022470178 -0.6790708623129187993 0.21196905730256535016 -0.11112631376697958141 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
207
|
+
0.0038109373298238894724 0.9107606663865179808 -0.013596755715844932241 0.24759005999516331409 0.13213140649132038007 -0.012821093763378537886 -0.27565145815998376433 0.074729257427025158611 0.11934953048392910047 0.1912434039414353526 0.17042873950350687084 -0.21440714972368871138 -0.14246834432105948132 -0.30320011928400647516 -0.18679453656906294667 -0.14048171055240221694 -0.039380474961156500258 0.13850223947331904983 0.25703127621425597704 -0.093426187550483583144 -2.6436680260895251138 -0.19024208237554990353 -0.4406138267272287079 -0.05647516639538802119 0.12624907335652996165 0.38588558477132972602 0.037377299753167732288 -0.27061500637814644987 -0.10154415701109183179 -0.053251391144498470831 -0.02580014594557127755 -0.27755001531011874727 0.060427181943051237745 0.29279664973441288378 -0.29123056424687771004 -0.16651956803158982079 -0.88226961991221031223 0.13277374202464414799 -0.017537798835165471778 -0.59238145164118616304 0.47265319738465561006 -0.73392859454521364171 -0.012174742907284449508 0.20185605108889814741 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23253206457950448272 -0.31752970835974730912 1.1416240030137967398 0.24725416691219520571 0.61045512431560933209 0.62641935163963124999 0.23178691043366053681 -0.67907455994737309091 0.21235814979748718345 -0.11068254719256613583 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
208
|
+
0.0038184951301520244499 0.91074490978042632605 -0.013603574381976749064 0.24783635435948669912 0.13198858103457922208 -0.012695674448014516653 -0.27571575793799163456 0.074710515447491562813 0.11919334974299183871 0.19090865888875668821 0.17096458326764948921 -0.2140922347389534186 -0.14357559423165561219 -0.30348170826091813712 -0.18707425683941564243 -0.14108303604983798984 -0.039519414123619429902 0.13839668726217896344 0.2560569800564274634 -0.092947855684498772999 -2.6433434124530359455 -0.188841363288401759 -0.43969151852630511401 -0.056500395462260113999 0.1267878845710374569 0.38421615766258976343 0.036754455013861257739 -0.27157195326143013236 -0.10130386780830727411 -0.052859633225734316275 -0.025976684769554204968 -0.27752883528447025441 0.060740456796778148629 0.29344858936819884221 -0.29115445014281760017 -0.16565574980581490583 -0.88232717162098250885 0.13267855970745801031 -0.017590086392228820172 -0.59199206198824994019 0.47269705052520699651 -0.73351183711911194241 -0.011383303220757902408 0.20171393773809023764 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23184166720999832556 -0.31715319356451227018 1.1416175419636682697 0.24750154486484413074 0.6101799483468350882 0.62693301596597639236 0.23184920572813744188 -0.67919538735264806117 0.21264180629444345838 -0.1104402358596576067 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
209
|
+
0.0038262732188501522371 0.91072007476275307347 -0.01359037091261909927 0.24773439586290918468 0.1319206090018070765 -0.01292141859949750074 -0.27540556668366517057 0.074511623422646749981 0.11950977958523965883 0.19042649605140291036 0.17073442224142906798 -0.21434419558257924998 -0.14280533814402909809 -0.3052380452880233408 -0.1870269605336636054 -0.14120803144738483526 -0.039218631093828344725 0.13852671171138464246 0.25609909743796499537 -0.092779606212158055589 -2.6426386799426753171 -0.18771894325488472366 -0.43815638753363184144 -0.05591936125941587149 0.1278151083926780951 0.3824012982757832857 0.036523162856710561508 -0.27277741022898188694 -0.10098872763165711586 -0.053052327331770836316 -0.025554995654218176648 -0.27785723343084567372 0.060608253316404507582 0.29322433093043587249 -0.291038824352841341 -0.16652269721072085473 -0.88185209208682757698 0.13239474156398503557 -0.016773782900169498938 -0.592047916724343537 0.47284769100125217944 -0.73286461095301413948 -0.011570927304283176729 0.20135998808734423271 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23214615397396623497 -0.31726065792034868762 1.1419358709957079245 0.24771746990915957665 0.60945064989087804896 0.62706859524935365524 0.23140561671863446591 -0.67914435013014695652 0.21246011282446664037 -0.10921358994946357701 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
210
|
+
0.0038334367995337009262 0.91078106575830664049 -0.013550409697885599375 0.24745536461599437761 0.13176140311216330558 -0.012916768226889176197 -0.27496969358764011826 0.075032930156964661172 0.11946660656824079072 0.19022872243325772423 0.17114360093892361236 -0.21441779168891197949 -0.14195780976580255062 -0.30463056773594265891 -0.18639068660597415961 -0.14139518189159841488 -0.039245660476401822425 0.13786269811632562154 0.25558492812999877852 -0.092148766716566452017 -2.6421436656004164689 -0.18594511587695164434 -0.43731365441970898589 -0.055431750976706266332 0.12850274558373148137 0.38160319961596711469 0.036481492229674887529 -0.27386635936052033946 -0.10050211230894692815 -0.053247640423859252112 -0.025180057792309425146 -0.27885667904100375214 0.060548971708291210447 0.29319738614299506452 -0.29081745647929241327 -0.16633540560346279924 -0.88167932628719347665 0.13295457981486283328 -0.017448474475186066118 -0.592017815137531489 0.47258405856259005917 -0.732413433029628691 -0.01057233461841809545 0.20189687423786203957 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2321973195613361296 -0.31711603774408664291 1.1423105874839352136 0.2472354780423064724 0.60902065565056240359 0.62732635867806341157 0.23149409889809302587 -0.67901870725675916862 0.21190184170519388296 -0.10876002990615596389 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
211
|
+
0.0038476458367154831551 0.91088815846428672351 -0.013495344854609474597 0.24690299681779206975 0.1316599220204932863 -0.012811726328096087468 -0.27429910747908559099 0.075667660378432047286 0.11932574766040024428 0.19010637773779462401 0.17168162146303164728 -0.2146083307633600834 -0.14118819853592279312 -0.30736438870234672471 -0.18565548624622002505 -0.14145034747740525827 -0.039313774125140754645 0.13749600701679701165 0.2557487128013553046 -0.091946848446370993413 -2.6404614996193962462 -0.18718668390298529025 -0.43591968090774929623 -0.05449292412307914224 0.13044037955048842781 0.38029175438983514601 0.036097493961604616708 -0.27704348319286509206 -0.099819497150677130581 -0.053417307941499694857 -0.024019555917923908483 -0.27969437780978456676 0.060494417537907539673 0.29289220880983962703 -0.29038820862990111227 -0.16686474003536977406 -0.8805851746912831679 0.1327951982198823655 -0.017688550603752767332 -0.59216390119285589044 0.47266235522667643387 -0.73275793927549404128 -0.010001645331161138422 0.20165898463572221044 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2320439597945450072 -0.31709726363106061076 1.1433287069616187015 0.24671923201635123646 0.60899909856538214648 0.62773795182822667016 0.23137825861969313346 -0.67898129782504967888 0.21063867290674820332 -0.10834977327466059627 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
212
|
+
0.0038767991174681404667 0.91098386053271562801 -0.013504816047923560302 0.24686828812083869145 0.13156235907317445633 -0.012539433282975988998 -0.27423646664613338109 0.076046005540939848322 0.11886318800896697456 0.18998207747657583355 0.17253097330308650448 -0.21468683684540709744 -0.14239641142188183554 -0.30975183971974518116 -0.18563944604926327364 -0.14193264711112091314 -0.039619717025046526093 0.1374916515317534671 0.25505954495183225106 -0.091761237047781482601 -2.6418601121957907552 -0.18971767769811603843 -0.43028983938141945886 -0.052412171937697357715 0.13587309665493066402 0.37253449019045392632 0.033904167106548518951 -0.28545534737187122643 -0.098176504848843673678 -0.053166031151892140239 -0.02206117997807185635 -0.28024960311849972383 0.060651711492845358786 0.29360386771154445285 -0.28945034471107861096 -0.16613503830058690136 -0.87864085864935148606 0.13308897414420481353 -0.016795581146072470491 -0.59112352446330662659 0.4726815034385023484 -0.73221917962968752214 -0.010018903427010594429 0.20019958797115475213 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23025893078230832978 -0.3186062270406908592 1.1455363375252880509 0.24745778297025930459 0.60927280186377608118 0.62868747258886137352 0.23153929799692693492 -0.67902231468370899403 0.20977583171172869969 -0.1086439673518352772 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
213
|
+
0.0038319124395112024242 0.91101298198959634878 -0.013489993292990380691 0.2469489877178201731 0.13154892318234043258 -0.012609712437878128205 -0.27434649820289297439 0.075593712334663581975 0.1190448500847775537 0.19028221144383283825 0.1715924170728343745 -0.21441112172990467455 -0.14159287735974362965 -0.30414678818845841679 -0.18562505355580755095 -0.14197325086260667582 -0.03965080712594666601 0.13732434636792698046 0.25469990833671335428 -0.091468179611089314718 -2.643976861487508323 -0.18703832523366525908 -0.43192865351018261411 -0.053046286674239398473 0.13451889859367310853 0.37478150477405097751 0.034394532201853331155 -0.28340023608465697569 -0.098711575499087933494 -0.05325739314152021231 -0.022798019348867323147 -0.28049684023177595682 0.060615048893222590876 0.29368014498221506337 -0.28991589733681843999 -0.16700252094539352887 -0.8790197138391849796 0.13215001700233588999 -0.016224368931783497011 -0.5913623522309888747 0.47329675146089411619 -0.73240034987478042083 -0.010176212563342912701 0.20065254605843130253 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2306740299138142769 -0.31832174302887039641 1.1449980203876164442 0.2474115308486445064 0.61018155146019237289 0.62879126499182014243 0.23120754379426258773 -0.67875833125136009194 0.20930239598743630158 -0.10744821501804906194 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
214
|
+
0.0038164752413647798877 0.91097477611517596596 -0.01351297044478839797 0.24729387563635799041 0.13131161540255534281 -0.012567165450232231638 -0.27455426678057875955 0.075423931066553026592 0.11910814691592307157 0.19022691340511627134 0.17121966271861946418 -0.21417905392622599292 -0.14212169322280962525 -0.30503456402505652045 -0.18607090820393384911 -0.14201675234365154776 -0.039701862028156113815 0.13750160630066535217 0.25448719238319394975 -0.091891876079359405272 -2.645699305040607463 -0.19007294232947710699 -0.43299214863531076958 -0.053489781651718075473 0.13269347933595757039 0.37600273541604495309 0.035109110346096754351 -0.28073600137027476809 -0.099309990208754320151 -0.053359480869814603088 -0.023702050141537929495 -0.28027656079389523525 0.060509887926927422019 0.2937310955579379157 -0.29011055334580476694 -0.16693042496078019932 -0.8798195606246310696 0.13258777745704738993 -0.01614162383852808802 -0.5912876295106279656 0.47332358554684511587 -0.73240368436143832298 -0.010389698900091818082 0.20084650350536539798 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23108852710050811763 -0.31784494410614161364 1.1442726039063508825 0.24691106968353848661 0.61003773955296580755 0.62846747934313051953 0.2312354206333425144 -0.6784559357888315656 0.20994297967587746689 -0.10533951004785489791 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
215
|
+
0.0037945583675124002453 0.91094789979175350148 -0.013476622245011154327 0.24747864512352424349 0.13109688444370173888 -0.012464668328863396513 -0.27458505891002615851 0.075306968820215119953 0.11907895413856423028 0.19024467941350317601 0.17063243407139824792 -0.21392998630035461871 -0.14247234813911080487 -0.30368521056668307256 -0.18627030667782457085 -0.14194338359501107449 -0.039780114700543975359 0.13747943361589939903 0.25398787041557735478 -0.091733002170583111123 -2.6456983189406058088 -0.19065340816447703953 -0.43565432297578071674 -0.054591275785850837399 0.12992551078960976052 0.37939229031143673065 0.036047291007046351752 -0.27673770886575599359 -0.10016140989611099776 -0.053322355310660547734 -0.024893348612553666682 -0.28002169577925728472 0.060598938142416319819 0.29345552164670818396 -0.290559759051619515 -0.16698431256072598927 -0.88090899078917117571 0.13225400861489677862 -0.016113144947084434566 -0.591541590464542133 0.47358517272523076302 -0.73263510349993810067 -0.010606573359823043973 0.2022114992327579408 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23122560376773737545 -0.31721582915049384432 1.1429568827502194495 0.24637255850878927999 0.61077966267956496083 0.62852388716266560653 0.23128344672568448837 -0.67776912199105288082 0.21076090103466865733 -0.10385247847309092561 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
216
|
+
0.0038079819118455268158 0.91092050917760614137 -0.013431344948407048651 0.24764118873064056014 0.13086714682271796684 -0.012334753199662077186 -0.27462776141372702288 0.075241692623573483423 0.11897082900050943988 0.19024972470204207231 0.17033245658362267116 -0.21382089425751760192 -0.14267976227681322676 -0.30512862213904595743 -0.18645630100812499164 -0.14173536562070440659 -0.039883274781746275162 0.13760051967326600297 0.25397846864804191069 -0.092077117922281737084 -2.6459274289107335143 -0.18733103060410272178 -0.43846901007115368643 -0.055569212056814934475 0.1274040328026327662 0.38315103256324595238 0.037036754948124139819 -0.27316384061117998661 -0.1010794571374364903 -0.053389480320908830335 -0.02600429101017935965 -0.28010116855314387552 0.060616452834898797153 0.29325124381510558891 -0.29119171824132822346 -0.16777104861603342467 -0.88170785713654575844 0.13108378173245113785 -0.016207856335501164696 -0.59194633666896312452 0.47432976562094569806 -0.73266896299645523083 -0.010283220463438397935 0.2030082152969246434 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23194938730231773327 -0.3162614175087603563 1.1418833891363300292 0.24566643504806492948 0.61146370097762692275 0.62853114470790327761 0.23149357676251314242 -0.67680900724563120008 0.21065716213731755513 -0.10307711444211779817 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
217
|
+
0.0038082262636275083373 0.91089552592210931703 -0.01340502271821834325 0.24766319578066528506 0.13066020613266160488 -0.012519157532582160172 -0.27472151850165593689 0.075488622947650144135 0.11912208824035760979 0.19036081309640348613 0.17069864048131982992 -0.2138127140658099834 -0.14295247779603725835 -0.30622026457550083345 -0.18651312161710367765 -0.14161902819725316616 -0.039628912197977324283 0.13758582160349416834 0.25394259718914985458 -0.091724220742564505082 -2.644719504170607749 -0.1868452396126788484 -0.43747915076807647461 -0.055509588897185165035 0.1278879570020350076 0.38169783802829737596 0.036630380491867758908 -0.27365979232227594098 -0.10088228435110344061 -0.053091587044661624206 -0.025989380323163703557 -0.280193441437279811 0.060946670711827286016 0.29316117545232589503 -0.29130654292312302411 -0.16471307690514019884 -0.88256946273320191487 0.13438899101870316333 -0.01815213804630737976 -0.59072491014719985536 0.47323843882580163278 -0.7332317574668121285 -0.010241039705043255073 0.20308827284770916699 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23122551188363565933 -0.31656978215024389467 1.1422052423911923658 0.24622939764583282041 0.61170418482122679293 0.62831045219449777051 0.23166112851770487291 -0.67620787164306628281 0.21152440409033956836 -0.10310319884012227043 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
218
|
+
0.0037857497983770898448 0.91087163207926946651 -0.013347406075403056222 0.24764885220950841327 0.1305218463001212581 -0.012682867112957229086 -0.27463115698841528145 0.075421169128616211141 0.11936733831746457191 0.19031366153280865339 0.17096995291254205029 -0.21374898404584974365 -0.14358820040088335346 -0.30746778518874340325 -0.18646039672081277105 -0.14146760809119288127 -0.039401391742491180537 0.13745126745216440511 0.25381069262233041384 -0.09193493685561965334 -2.6448327430502831525 -0.18676082773071570053 -0.44003637039683257681 -0.056451328576128258219 0.12546556808869152588 0.38520691143323798622 0.037620937692060180124 -0.26987211510798542191 -0.10136069077729059629 -0.053206010670939891949 -0.026772063934821736103 -0.28089553400690170371 0.061118835133189858277 0.29210642720990626087 -0.29171961680475799739 -0.16560637700061922595 -0.88347911432947456856 0.13308785244072610099 -0.018187000381186882447 -0.59111660581140523796 0.47428319192548729077 -0.73322616131672579964 -0.010692734331044751253 0.20479532904623343192 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23188591388160298412 -0.31552088120400978433 1.1410941641911527267 0.24538739030530498653 0.61163003655417080839 0.62809980217852900974 0.23202538691509538848 -0.67585588948517150154 0.21179580716001225604 -0.10261733064586049669 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
219
|
+
0.0038530481664576813824 0.91087364285215366433 -0.013585805784539713853 0.24916805074409459353 0.13050580593124658235 -0.012593512185833287409 -0.27682410838393595176 0.074454897449503121276 0.11903728291455958899 0.19133711396789412906 0.17046959321282251221 -0.2124580106861152784 -0.14188345475687716424 -0.30634515840885656601 -0.18865034236416183822 -0.14200102167982697754 -0.039681524430926443103 0.13832823610600192277 0.2523494715947804945 -0.091622898390201393259 -2.6442652256796446153 -0.19134815532092708246 -0.41588552000156087107 -0.049290912878489891169 0.1469746287930562556 0.34997543873814024318 0.027802107399349816619 -0.30169952122127696725 -0.096479013649894432292 -0.050911457268236405549 -0.020349291816392209298 -0.27750294196091135346 0.06192750398772921272 0.29741420053950923252 -0.28828264006800091712 -0.15934517319009353087 -0.87606302724071682952 0.13510621556767093976 -0.01448046541015310211 -0.58727170234222492162 0.47452142147254672278 -0.73200224172644645648 -0.01107807214632295853 0.201044807396783487 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22500555238158845284 -0.32070404125068746604 1.1493992186920809484 0.25140246262911952746 0.60893667473630241904 0.63015097707550982165 0.23244234054684054236 -0.67736589364341592834 0.21324105345816268819 -0.10528802106833833052 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
220
|
+
0.0038742751172725032813 0.9108186915936115069 -0.013585414149319147842 0.2495176704148910074 0.13046018830737618477 -0.012393747672566735041 -0.27720434310273478484 0.074158173339819333236 0.11886080050772983296 0.19155578229857034289 0.17032329097827922371 -0.21239775285617509826 -0.14406928015856679259 -0.30407969991723737824 -0.18913765517885339218 -0.14189031673838253811 -0.039978717055018785087 0.13869295406331361153 0.25222066391407427233 -0.092055729522451668068 -2.6463078188686619541 -0.1936518068230742573 -0.41752887671082045129 -0.049836535020024115561 0.14542323015605340686 0.35178232688000848905 0.028351487181577303409 -0.29963566703317284778 -0.096834290065041905837 -0.050888096114595313124 -0.021256376547767567853 -0.27748416766963052149 0.061941638187406403149 0.2977455402176298338 -0.28839768290055484146 -0.1584113349913100488 -0.87672973773281759335 0.1362309368491866346 -0.014985200022913569215 -0.58728161639814013828 0.47421435754778257232 -0.73187506600761087494 -0.01253582886192850486 0.20102272790371367162 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22490205964801149308 -0.32115050193262634215 1.1489670141593621988 0.25197492302312796131 0.60966735044681164002 0.62947275459390183983 0.23214299358893969449 -0.67715870145428047611 0.21393936565646343162 -0.10223001677200081738 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
221
|
+
0.0039093375530279417251 0.91079041931131721199 -0.013597683431386878641 0.24975383882317864215 0.13039821686943062207 -0.012379781874004161871 -0.27742424959262645956 0.07377831770283564683 0.11879130245058157345 0.19164110508902496011 0.17019034788165093852 -0.21191121139509649929 -0.14325881898824260885 -0.30444830811397693981 -0.18944323792404230145 -0.14171754662027094551 -0.039981724062483764426 0.13875508516814710758 0.25315622327322034879 -0.09223949623645157081 -2.6475648326092771079 -0.18963231805211602787 -0.41783678993663891932 -0.049785737938871990615 0.1454068323525652684 0.35199249353351558245 0.028475665376847054261 -0.29955613356784627221 -0.097004586474123674633 -0.050946848439793308849 -0.021253625188865706008 -0.27753566334749468769 0.061932033347233496345 0.29743440229251399964 -0.28827149149158298735 -0.15958137682965223281 -0.87637373463057499645 0.13486923098922407038 -0.013871752140529533537 -0.58768438782477572246 0.47491100640514477549 -0.73209168925257162019 -0.013065084271792728327 0.20154858731948468997 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22500585052548593978 -0.32094998163842491934 1.1489544354360097245 0.25178536556776776045 0.60918439818367065008 0.62899822359890711354 0.2320968575740988693 -0.6761154571499343735 0.21449926365469765277 -0.098222627129330900009 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
222
|
+
0.003851216725178097447 0.91074399088479351949 -0.013332520311996484685 0.24843614879506531468 0.13028349991251081397 -0.012486980552160997435 -0.27540610769506451705 0.074829671683481258082 0.11913086175038978265 0.1906951850285585337 0.17044134262679785929 -0.21307320421675202127 -0.14452841380623454581 -0.30320257907486386495 -0.18735893631765132561 -0.14110033572303237737 -0.039719372204591769926 0.13785250791067993337 0.25397075589829237741 -0.092608743837090889972 -2.6467217692602194035 -0.18995445903853591663 -0.4426423506950471487 -0.057632385016664136601 0.12282781512377360933 0.38797059708734749073 0.039112647045644668986 -0.26611537184027495018 -0.10205957662520173668 -0.053458773142281090784 -0.027602133611103470828 -0.28156239659458204283 0.061197731311818999445 0.29078889623264769781 -0.29176084483578346163 -0.16626638351253009152 -0.88407316141415570598 0.1322287358273725455 -0.0175251828833140888 -0.59188607075998889151 0.47516681170283747715 -0.73294137366831646485 -0.012095352943922849792 0.20503381698818506917 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23269170258119289962 -0.31485466720817684161 1.1404312952762842848 0.24555150627340507907 0.61022001767771982816 0.62586636126411288039 0.23216146180574193103 -0.67312556306112447668 0.21435312114421031793 -0.089701942486437036273 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
223
|
+
0.0038785985658175490924 0.91076749110132337872 -0.013261125574107947289 0.24776758978194304839 0.13021365616767313633 -0.012628221986947529148 -0.274669779352286203 0.075352038511315888591 0.11920219573419604808 0.19059153322026434196 0.17031218087863123078 -0.21315573818823854713 -0.14255673380512251525 -0.30329898267568033976 -0.18666298764684169376 -0.14145206393099904463 -0.039578143583650297888 0.13787056972052383341 0.25358571981046751365 -0.092148240184325450053 -2.6431296407747422172 -0.18850660026008170256 -0.44020366358357476688 -0.05668155123470737522 0.12503851914905711462 0.38550980053007799508 0.038491461437416128744 -0.26912272136065296113 -0.10150509804816019999 -0.053549482455473161602 -0.02681433965270402231 -0.28214685676628520339 0.06118457476224684749 0.29060958050055318846 -0.29165375532480181109 -0.16636383893848180615 -0.88343336262055960351 0.13249569465957811154 -0.017674957988303412887 -0.59179114871188898128 0.47530196711947808597 -0.73267258378795241391 -0.011099965645484294319 0.2048756899860677827 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.23259676341919172105 -0.31534922625232020277 1.1414295633668676277 0.24558093564229274697 0.60961298977724442949 0.62577832335019578647 0.23269997471569181524 -0.67170918052770711704 0.21414900210806453451 -0.087327883672739844978 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
224
|
+
0.0039638846691462167188 0.91086850236707117556 -0.01344014417873684239 0.24825597428003581824 0.13022925302526339175 -0.012634749807769112689 -0.27553111465623886245 0.075109088672953752686 0.11902194151358044816 0.1908736440685623037 0.17077797809934833206 -0.212812061038941569 -0.14107788161897485968 -0.30503656678767382404 -0.18735725624087173902 -0.14151811591470145335 -0.039768625336372917523 0.13773491804341170264 0.25310988680341112156 -0.091169540965890152884 -2.643572384598658509 -0.18567359082777035173 -0.41183109720050525837 -0.047742970993821867709 0.15141176427635213986 0.34550977709346686328 0.027156002017197363591 -0.30811598370917187006 -0.095165559510589983749 -0.05106758927399310255 -0.018486732717754184724 -0.27931461017874326114 0.06210515411622453269 0.29649205500711434125 -0.2875163432767049998 -0.15922408454295178259 -0.87443838850685717823 0.13622690469440001948 -0.01407658742712963526 -0.58689069726655296311 0.47469210600354233565 -0.73176195211327088597 -0.011575486442323309338 0.20023126271415186972 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22488383954908447437 -0.32069526953090704557 1.1515944849845489717 0.25082848766112958439 0.60624252514527421365 0.62885117310880578323 0.23377668342907642618 -0.67196845580945030463 0.21380873521517462788 -0.092375920396036328985 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
225
|
+
0.0039754779170572442093 0.91093086240632259454 -0.013397274706652632925 0.24795346662884582001 0.13022510468307751941 -0.012491404580836520596 -0.2752319622806793098 0.075264669986276622193 0.11880164909733702261 0.19102505034179295684 0.17127808014351353361 -0.21265062994481789826 -0.1409232283960062948 -0.30601054404843985868 -0.18697984038862391909 -0.1416489578279029049 -0.039899162575178129253 0.13770621896137927309 0.253329274251075931 -0.0914236618915972854 -2.6428650831276527811 -0.18550553175736980704 -0.41167716288419925474 -0.04752850932513731641 0.15220088718963561969 0.34572167105364115525 0.026986033194018155257 -0.30947435612213924916 -0.094932022469421784017 -0.051239177615221447037 -0.017970923612544268538 -0.28027796812202704357 0.062104315029120858715 0.29612945883918351253 -0.28776889951293660452 -0.16024406858319006908 -0.8738477524436696342 0.13517723272364232101 -0.013615509386248204893 -0.58714067046376183789 0.47523103746532052716 -0.73140923551959480253 -0.010810572701534581358 0.19984291024467121245 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22523701735300435955 -0.32024189595635893513 1.1519926688091146616 0.25053381360633125707 0.60509913923822833404 0.62886314140688026608 0.23452572272764052319 -0.67103711913682784207 0.21394518960372879701 -0.093076807824262156044 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
226
|
+
0.0039463461667253825135 0.9109457592293733752 -0.013380391846990137908 0.24780396446782479436 0.13029532417256239896 -0.012482418271695093839 -0.27505321662331394528 0.075184937565575427065 0.11883731329592261972 0.19101203334845820447 0.17124294786581645278 -0.21272597172367324614 -0.14185875480956489092 -0.30612097557979034423 -0.18671310227145412886 -0.14225434722718022229 -0.039758769426239383427 0.13751036604261598906 0.25307948059271567764 -0.091360009065211675305 -2.6404950425860787 -0.18757984238489044948 -0.41204427447430058695 -0.047645745817043130832 0.15215938658242819659 0.34628419899678059002 0.026978267334782261161 -0.3095598302276781344 -0.094878199488547365625 -0.051061618017493037858 -0.017986586569554128406 -0.2805276546697053619 0.062288849016516274759 0.29636473070558899678 -0.28779892221552549891 -0.15987482070649366994 -0.87392501896474616974 0.13580542471934334281 -0.013668595539657091981 -0.58684771544028735413 0.47500621892351041486 -0.73160398717933416979 -0.010708701388099447702 0.19946013860659336792 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22506175919616344672 -0.31948213550232734681 1.1519956556994004337 0.24954491300513531593 0.60407543256533657861 0.62895964586863095658 0.23542854668050311462 -0.67033449711721315722 0.21517574348542858886 -0.095083827279578744807 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
227
|
+
0.0039872178587099047636 0.91090990368466051574 -0.013402818434691814165 0.2480566877628680722 0.13034539994073129909 -0.012495605717856768727 -0.27519406189661094198 0.075142480497664670969 0.11886365778279385508 0.19078675235444647607 0.1709531554858250979 -0.21298857234308687936 -0.14123984996361152455 -0.30759446844798060683 -0.18703031739775083375 -0.14200370875230669543 -0.039863711853450306544 0.13772738205996970517 0.25336087001062346236 -0.091368524623055807909 -2.6444997069640705512 -0.18802052741993058316 -0.41072308546311137034 -0.047200313551825148761 0.15294677977394086077 0.34423706361477030002 0.026652483877117334743 -0.31061488330691139348 -0.094840718405795013113 -0.051040136259072589608 -0.018072502583360013778 -0.27988719272823570083 0.062119295122616456639 0.29706373877612379797 -0.28764244909626418556 -0.1599676780712884494 -0.87369103599210329314 0.13604788419468108462 -0.013310414422777999688 -0.58682510378050467548 0.47486040213102254093 -0.73116615223624181752 -0.0107755288740220799 0.19978105160136169771 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22511936650084948819 -0.31985812348320213916 1.1522461065305074079 0.24981181794022438991 0.60332243055419010336 0.62897988446366481785 0.23572318842717565612 -0.66915754949026884368 0.21647881293296317162 -0.097776311174130936532 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
228
|
+
0.0040154526398995336184 0.91091138260849835451 -0.013407710619807576558 0.24824432177434310742 0.13041108045826035888 -0.01242390531523812798 -0.27538110133924559308 0.074914785419370674702 0.11878256605269323087 0.19090233950365304016 0.17017274316669647738 -0.21280601875618507246 -0.13994759957512922788 -0.30609684092089489704 -0.18732960714446530992 -0.14221860137158343074 -0.039906693117150796035 0.13795833482567554373 0.2532172635431047536 -0.091792676395032288261 -2.6400630312112589593 -0.18592988916777802855 -0.41076238054066371852 -0.047053225483984877087 0.15300201881871458576 0.3440171013430199376 0.026722029656486828014 -0.31081169885901366312 -0.094768199185171764221 -0.051057187465185352448 -0.018088161374810000914 -0.27984235624923797792 0.062066456624441698753 0.29727502507527181486 -0.28739282316172254372 -0.15986405115978777336 -0.87361541431888567466 0.13646974484613594303 -0.013525437090861985867 -0.58693880747928373065 0.47461393544684832291 -0.73129717221718759657 -0.011057650584739241867 0.20006368608587657421 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2248041569745129753 -0.32052449414235889558 1.1525173459372384244 0.24986614332714318643 0.60348807208211707742 0.6287944124273888713 0.2362081615810658064 -0.66902794859291647711 0.21796256969141464266 -0.10068658375868917709 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
229
|
+
0.0040421857492758256347 0.91093632324261963884 -0.013384399296787977823 0.24829331769202098168 0.13055690884993720324 -0.012307609331437371208 -0.27552270311496673827 0.074848118394024665267 0.11858917925468068222 0.19124433709824706362 0.17016221704351511268 -0.21265131280920596124 -0.14078003766146499065 -0.30642058493491219906 -0.18733617421257875435 -0.1416438843708600348 -0.040104084714460516703 0.13812602179784602696 0.25427348940291805146 -0.092245572536061457014 -2.6425576933897128029 -0.18622223837041890215 -0.41177196479813643615 -0.047280043670032780023 0.15236617601324614624 0.34528773140824503551 0.027033262183304433007 -0.31010890385179762374 -0.09481335759500102156 -0.051190022283635151779 -0.017996540498660524438 -0.28034457054946892995 0.062083270060068376783 0.29670805758130430752 -0.28753058260085251341 -0.16059942416511543972 -0.87383197596722805844 0.13595762726451612878 -0.013676118594162461548 -0.58705320112951919764 0.47489490053451449691 -0.73157161657189750947 -0.011197828522726563372 0.20032779787225524215 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22512456604024755347 -0.32012699330714999846 1.1524541528354725894 0.24950407071525171343 0.60285887310897012803 0.6284884986860393985 0.23638567774525370835 -0.66894626581832483669 0.2196888902489328721 -0.10268737464762942024 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
230
|
+
0.0040349822472745501198 0.91095372821081466164 -0.013309519992725768467 0.24816814557530242347 0.13057410930449522835 -0.012394913861830895302 -0.27526159972933272879 0.07512178186538735758 0.11867306788186961219 0.19104494762745524716 0.17069390929394664957 -0.21274610957901335384 -0.14171366174230207169 -0.30606343093025367708 -0.18706487315830566676 -0.1417323973810852844 -0.039996706135109923175 0.1379591286740475542 0.25412931906397073778 -0.0919850639773215073 -2.6422564543975584073 -0.18649743228729875888 -0.4133193015245204549 -0.047672351212593132297 0.15184337681858389724 0.34735641586292148597 0.027333654089758036704 -0.30931676767371624193 -0.095098253001868249257 -0.051153064329613882888 -0.017757478448108741237 -0.28033824064792162156 0.062246934604155625126 0.29572372384873840678 -0.28765289166561264222 -0.16035039226616421004 -0.87397669122900756289 0.13615193825660618088 -0.014738689262039219446 -0.5873072729863912933 0.47438334871203702292 -0.73146031589531568251 -0.011593815413557527136 0.20091285467918618135 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.2248687573593738942 -0.32005287484920447172 1.1524522222457587173 0.2490912644653330843 0.60382279317642773009 0.62823661861079194146 0.236573984652428293 -0.66942122742894105691 0.22103325794834718931 -0.10300875083611492344 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
231
|
+
0.0040160766392819255075 0.91092594009179717052 -0.013243614351539308854 0.24829143346769125267 0.13049471698798234542 -0.012310446536701269427 -0.2753879257144303816 0.074919545739809356721 0.11862285998766396167 0.19116256571970188793 0.17046425545715718219 -0.21252519476179324021 -0.14115298809234072541 -0.30697423513132859885 -0.18717185562474672467 -0.14183111319536378936 -0.04006722868161276957 0.13800677644890665952 0.25358084418525311809 -0.092264437320659350994 -2.6421178171827044423 -0.18594133187816849762 -0.41394808653651271602 -0.048111229671408003994 0.15073798987254571902 0.34803652595694789529 0.027546486990035996129 -0.3078236499033634721 -0.095582822369353281911 -0.050966166915248120595 -0.018431503001869544572 -0.27974435230972399813 0.062332030475673615155 0.29603044823853197354 -0.28799810614260518138 -0.16077691427089554899 -0.87406584226991057562 0.13549920509465943064 -0.013726446521413674176 -0.58770402444032543432 0.47476429645656464951 -0.73167309239380751151 -0.012547651566608881285 0.20117050989553802998 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22483940153224199476 -0.32014815099688520572 1.1521360418282446947 0.24938405441889671676 0.6043937303508972736 0.62800837624958116834 0.23642672770397632487 -0.66996803389520431793 0.22285384839678568092 -0.10189346257383334604 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
232
|
+
0.0039749958370059830168 0.91084746205545952247 -0.013200121515505574415 0.24859256293551218464 0.13048946094249724847 -0.012632071294097577813 -0.27549906167145460367 0.074548443379754705806 0.11910454574181568443 0.19073921137757271493 0.17101051800205155362 -0.21280088514944506262 -0.14500548197159485175 -0.30897411245657774304 -0.18751968173723485012 -0.14154481132435128843 -0.039662992733434508652 0.1382181539611926635 0.25396395079162659147 -0.092374693341122665613 -2.6439000189465589052 -0.18725869039156006757 -0.41804120658290577772 -0.049722381199286860842 0.14670892754765441079 0.35346936049944688296 0.02908484504215570407 -0.30139888912632134543 -0.097262112657389168668 -0.051056584171935592842 -0.020293088811424830897 -0.27890898697248467375 0.062218098135642434243 0.29583990394655157452 -0.28880948277777507283 -0.16114236431047287978 -0.87590767236033673093 0.13539154857266005871 -0.014241538173676017778 -0.58790710232801535184 0.47461874427380235097 -0.73139116183279218042 -0.012986346309953952435 0.20142231056432657876 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22625673605122567644 -0.31901619011291454386 1.150365004108452105 0.24867276534950355504 0.60511056390768114266 0.62748906299340878601 0.2360958452093658011 -0.67039085566713585429 0.22446135559738963905 -0.097686249083200338283 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
233
|
+
0.0039929752850419771709 0.91079379920843650531 -0.013202463629675694617 0.24910289280284370061 0.13064928618230867152 -0.012310580415823637462 -0.27611376520314628857 0.074201802927011062394 0.11868471633258831366 0.19108075382579009505 0.17013655844212452473 -0.2125406075963307273 -0.14385209857579503434 -0.30678869332749225673 -0.18812719022004925629 -0.14184667274815401794 -0.040123263951553210516 0.13846470192790849563 0.25312664114369382018 -0.092531599104339196105 -2.6446778905216885569 -0.18917993499828320014 -0.42149839263752031382 -0.051116699815399471718 0.14288327785480939291 0.35757185052300188843 0.03033889935909736893 -0.29611560737605369109 -0.098070658204325478202 -0.051166128826674109331 -0.021797703048912826784 -0.27884360500088184454 0.062189938575958766953 0.29565012318670735869 -0.2890380489359546945 -0.16142963398670234776 -0.87730334885775018705 0.13479103940527503713 -0.014742607647401659646 -0.58859246025071831898 0.4749169973484302365 -0.73149457736837841804 -0.012737875315730042003 0.20186662615442335644 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22667743038017579282 -0.3187310761883344612 1.148790192467129323 0.24805488455857341301 0.60643252272563030747 0.62719890074554418558 0.23594100221935879191 -0.67068464278611739093 0.22634905447779407606 -0.092214775214400149239 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
234
|
+
0.0039726322176683748905 0.91075933381260443245 -0.013160430285599308831 0.24931990130600398259 0.13079005711457603045 -0.01234077269722023279 -0.27639800102943085092 0.073885067058374345739 0.11878052022897332696 0.19125820929000986181 0.17031207653358543253 -0.21253673609949425005 -0.1445867969601041525 -0.30632756200958810577 -0.18818964810994978643 -0.14137214734459585541 -0.040051950154668301829 0.13840979553639526367 0.25413383185001053866 -0.092694172756282749992 -2.6459212299845549232 -0.18956968625694869957 -0.42635821715421062805 -0.052495461727709753774 0.1388171954065572089 0.36397490624583139773 0.032235489708588166424 -0.2901682052746101248 -0.099078105328290755338 -0.051636518940048642401 -0.022841129081826755387 -0.27920884067603407575 0.061978497777269971059 0.29445693868305267138 -0.28925806535141829201 -0.16206020415359939646 -0.87879256063672828159 0.13475455128624302947 -0.015894328523896831401 -0.58922335991443675063 0.47477852269776205096 -0.73153936530019392226 -0.012384904471046342955 0.20256515232987287733 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22790021628303658296 -0.31858088867306288972 1.1475261474754467894 0.2475126216396638934 0.60810430085037459058 0.62642881413631956722 0.23550296266792103417 -0.67059063221230341689 0.22731717553517150066 -0.086260031498624503699 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
235
|
+
0.0040113658934196353908 0.91078181837818905642 -0.013135985742256082315 0.24920337171595338677 0.13085225775233033652 -0.012430396920376028669 -0.27629989798592557992 0.074116069386951657916 0.11875447497254161544 0.19135155202053441559 0.17027842582287966433 -0.21259601593631557992 -0.14475053228609413569 -0.30432685465226583243 -0.18815457665938339904 -0.14116629721176060519 -0.039943460373148130527 0.13864047713782365334 0.25450597187917467501 -0.093108459197316001399 -2.6447479091059551415 -0.18970660662494465143 -0.42666144847116704852 -0.05245415276476207006 0.13874104303529372073 0.36460221023953753861 0.03246285310684295794 -0.28986533615197745961 -0.099332618900189753597 -0.051720250647617357909 -0.023018845365340767639 -0.2790817382171006944 0.061852672799127907111 0.29465252919493273298 -0.28934363404876400905 -0.1626444188231931931 -0.87877283652639959222 0.13461610993171563289 -0.015733516395660809145 -0.58955260814499477195 0.47510639793766501482 -0.73231268514710790019 -0.012014039920674185122 0.20301499662652375267 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22832808804025217508 -0.31828844440214365541 1.1474083580909568703 0.24667460556685158468 0.60838810048061797708 0.62658659392696858248 0.23563319772717097877 -0.67032089747154310899 0.22691783500305501287 -0.083075600262960527798 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
236
|
+
0.0040452406386475708855 0.91082072563177673974 -0.013081701711762854651 0.24896556406945002937 0.13091692607580854291 -0.012551886080063872145 -0.27590469618736801483 0.074488220469653379507 0.11885487578997276648 0.19090486043353027679 0.17050669436416196478 -0.21328416070225914014 -0.1443548613418283999 -0.30511000000748073058 -0.18777748002501754021 -0.14091641852165970317 -0.039834610771509293414 0.13840247369499747432 0.25494767698277437384 -0.09269655508005422706 -2.6449342339522017298 -0.18870876957102286631 -0.42623901940989561421 -0.052070891705763962254 0.13969674059271922073 0.36417526576869291288 0.032318980337419228599 -0.2910853967273688836 -0.098914370826298239625 -0.051834947030806620416 -0.022604282550682513325 -0.27953803135591132056 0.061803396113869583928 0.29454703112615654437 -0.28920948662053541645 -0.16301360851863497259 -0.87841768182082424765 0.1347276479055904419 -0.015597887821146353554 -0.58959615777055396357 0.47499684787220841642 -0.7323478549488092737 -0.011088154623658013492 0.20270526392966975449 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22830480463355734555 -0.31875901388554750415 1.1476222080328182251 0.24655365829889114293 0.60951781430373797033 0.62741122554002104472 0.23541314230745954972 -0.67008389184810313033 0.22511447726496613964 -0.082615731982011345047 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
237
|
+
0.0040386003398117705648 0.91087206014790811359 -0.013015765141116306461 0.24841981317094455339 0.13097190847930181845 -0.012657264694128358626 -0.27529465345282977395 0.07490595753765763587 0.11897555082310989905 0.19078033891201395811 0.170709606511434131 -0.21351923915160322953 -0.14426493010351607027 -0.3044202795978193099 -0.18689310039279907749 -0.14140121424334084477 -0.039663896961689211473 0.13784613572850143437 0.25425443327707825114 -0.092486352202969843161 -2.6422709187863384628 -0.18955008823385027794 -0.42649036499840131675 -0.052226672192306256015 0.13939955959037508837 0.36522053133571369399 0.03251085776139717165 -0.29048566800225222861 -0.098844386935223196855 -0.051983457515131156756 -0.022486669812730491341 -0.28060788092317756615 0.061926017696802990176 0.29371002933506235033 -0.28945893099359210066 -0.16338422723992104824 -0.87861451276740487604 0.13460606825413515275 -0.015855212654753109841 -0.58977028220893068511 0.47484618554143948055 -0.73183460680914991237 -0.01051674115064616874 0.20229404010445917184 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22881287101155672881 -0.31820254574055661934 1.1472745786261331347 0.24571733686945257391 0.60960954396751332318 0.62808851508053387125 0.23561220869983307002 -0.66983813529484603766 0.22374196282766983801 -0.081975434753570289304 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
238
|
+
0.0040200911350415161061 0.91091626050760965416 -0.012979238362021371794 0.24824570156161218648 0.13101631419578108062 -0.012671853459341735071 -0.27509503199749735236 0.075036331667725719718 0.11898194811666611137 0.19081064999674157701 0.17059844369178550627 -0.21362324893173592621 -0.14361476665937800146 -0.30417577989406591188 -0.18672304655119667527 -0.14161037008336599397 -0.039629575363199422144 0.13781944699233547591 0.25440468805159932586 -0.092602732055503733655 -2.6399486522249442366 -0.18819917723064222281 -0.42497039624242072264 -0.05147861586512662152 0.14143454938498831175 0.36318790079399931869 0.031839716846533971939 -0.29355643777227791169 -0.098292228070909745674 -0.052091312546229825986 -0.021469425547608070315 -0.28056095134422182058 0.061749719417258569498 0.29381999280317416812 -0.28903752089129958192 -0.1625006888179745812 -0.87818451372688444145 0.13557589869226949197 -0.015983144830099983019 -0.58907276135291863906 0.47476035471750022143 -0.73188240834145246172 -0.011043715531835798446 0.20230953189526817981 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22808999895772139044 -0.31915463295986978842 1.1481310622746920824 0.245910376442920936 0.61051158472886668527 0.62880312261168258559 0.23541875732651498798 -0.66950366770583102927 0.22250400892647406725 -0.081519397295511192292 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
239
|
+
0.0040053129126216436423 0.91092499257078118902 -0.01305170650816974906 0.2485668545166763721 0.13104225067100214175 -0.012615317755992092735 -0.27562509477228097632 0.074624035445437261749 0.11893324349425832276 0.19112362879633776336 0.17060665080218129219 -0.21327849836748730139 -0.14376622102772063094 -0.30681558529790903256 -0.18720842442258456284 -0.14106223599784284417 -0.039729458286376036213 0.13820768652781276198 0.25525576245917885876 -0.0928281495256805117 -2.6425923932650938752 -0.19180320605400971723 -0.42077341421616998307 -0.050178151747917745795 0.14495645313447566571 0.35708004715530716755 0.030192796485541250479 -0.2989227794631069135 -0.097498921145325462279 -0.051769513317142794306 -0.020435958699607754269 -0.27990107347218273759 0.061731190336314904765 0.29524182788463670946 -0.28858094263902178689 -0.16178770950786999783 -0.87687829526608485065 0.1359706567449421033 -0.01516586454047604525 -0.58850091581741503788 0.4747462958292816837 -0.7318341640990113639 -0.011575518532668782265 0.20180888821103526443 -0.064392837602645164319 -0.088799570593982940503 -0.02777370065450668335 -0.033154471311718225479 0.027238841820508244429 -0.093570920079946523495 -0.22735852116129143252 -0.31945055897836988068 1.1494856132312207819 0.24650831309404389047 0.60970955345545085891 0.62951798315345219859 0.23498435417962407201 -0.6696744580336759789 0.2229151010222210072 -0.080472152732268972808 -0.035960360802710054917 0.090288214385509490967 -0.092366843950003385544 -0.010368281789124012687 0.0022997649386525156716 -0.01253786049783229932
|
|
240
|
+
FPS 60
|