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.

Files changed (994) hide show
  1. dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
  2. dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
  3. dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
  4. dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
  5. dartpy.cpython-313-x86_64-linux-gnu.so +0 -0
  6. dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
  7. dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
  8. dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
  9. dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
  10. dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
  11. dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
  12. dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
  13. dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
  14. dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
  15. dartpy.libs/libfcl-0400fc28.so.0.7.0 +0 -0
  16. dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
  17. dartpy.libs/libfontconfig-582da43c.so.1.14.0 +0 -0
  18. dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
  19. dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
  20. dartpy.libs/libimgui-ab87b07d.so +0 -0
  21. dartpy.libs/libnlopt-d1ae937b.so.1.0.0 +0 -0
  22. dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
  23. dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
  24. dartpy.libs/libode-99b67f5b.so.8.2.0 +0 -0
  25. dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
  26. dartpy.libs/libosgDB-bcdb6be9.so.3.6.5 +0 -0
  27. dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
  28. dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
  29. dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
  30. dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
  31. dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
  32. dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
  33. dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
  34. dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
  35. dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
  36. dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
  37. dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
  38. dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
  39. dartpy.libs/libvulkan-08e1e162.so.1.4.328 +0 -0
  40. include/dart/collision/CollisionDetector.hpp +305 -0
  41. include/dart/collision/CollisionFilter.hpp +126 -0
  42. include/dart/collision/CollisionGroup.hpp +546 -0
  43. include/dart/collision/CollisionObject.hpp +90 -0
  44. include/dart/collision/CollisionOption.hpp +71 -0
  45. include/dart/collision/CollisionResult.hpp +109 -0
  46. include/dart/collision/Contact.hpp +103 -0
  47. include/dart/collision/DistanceFilter.hpp +66 -0
  48. include/dart/collision/DistanceOption.hpp +80 -0
  49. include/dart/collision/DistanceResult.hpp +123 -0
  50. include/dart/collision/Option.hpp +42 -0
  51. include/dart/collision/RaycastOption.hpp +58 -0
  52. include/dart/collision/RaycastResult.hpp +80 -0
  53. include/dart/collision/Result.hpp +42 -0
  54. include/dart/collision/SmartPointer.hpp +51 -0
  55. include/dart/collision/all.hpp +17 -0
  56. include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
  57. include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
  58. include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
  59. include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
  60. include/dart/collision/bullet/BulletInclude.hpp +47 -0
  61. include/dart/collision/bullet/BulletTypes.hpp +57 -0
  62. include/dart/collision/bullet/all.hpp +8 -0
  63. include/dart/collision/bullet/bullet.hpp +14 -0
  64. include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
  65. include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
  66. include/dart/collision/collision.hpp +14 -0
  67. include/dart/collision/dart/DARTCollide.hpp +106 -0
  68. include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
  69. include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
  70. include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
  71. include/dart/collision/dart/all.hpp +6 -0
  72. include/dart/collision/dart/dart.hpp +14 -0
  73. include/dart/collision/detail/CollisionDetector.hpp +66 -0
  74. include/dart/collision/detail/CollisionGroup.hpp +287 -0
  75. include/dart/collision/detail/Contact-impl.hpp +56 -0
  76. include/dart/collision/detail/UnorderedPairs.hpp +153 -0
  77. include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
  78. include/dart/collision/fcl/CollisionShapes.hpp +374 -0
  79. include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
  80. include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
  81. include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
  82. include/dart/collision/fcl/FCLTypes.hpp +62 -0
  83. include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
  84. include/dart/collision/fcl/all.hpp +9 -0
  85. include/dart/collision/fcl/fcl.hpp +14 -0
  86. include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
  87. include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
  88. include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
  89. include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
  90. include/dart/collision/ode/OdeTypes.hpp +51 -0
  91. include/dart/collision/ode/all.hpp +6 -0
  92. include/dart/collision/ode/detail/OdeBox.hpp +58 -0
  93. include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
  94. include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
  95. include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
  96. include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
  97. include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
  98. include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
  99. include/dart/collision/ode/detail/OdePlane.hpp +67 -0
  100. include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
  101. include/dart/collision/ode/ode.hpp +14 -0
  102. include/dart/common/Aspect.hpp +215 -0
  103. include/dart/common/AspectWithVersion.hpp +180 -0
  104. include/dart/common/CAllocator.hpp +65 -0
  105. include/dart/common/Castable.hpp +102 -0
  106. include/dart/common/ClassWithVirtualBase.hpp +47 -0
  107. include/dart/common/Cloneable.hpp +327 -0
  108. include/dart/common/Composite.hpp +205 -0
  109. include/dart/common/CompositeJoiner.hpp +160 -0
  110. include/dart/common/Console.hpp +75 -0
  111. include/dart/common/Deprecated.hpp +126 -0
  112. include/dart/common/EmbeddedAspect.hpp +466 -0
  113. include/dart/common/Empty.hpp +55 -0
  114. include/dart/common/Factory.hpp +146 -0
  115. include/dart/common/Filesystem.hpp +112 -0
  116. include/dart/common/FreeListAllocator.hpp +162 -0
  117. include/dart/common/IncludeWindows.hpp +50 -0
  118. include/dart/common/LocalResource.hpp +76 -0
  119. include/dart/common/LocalResourceRetriever.hpp +63 -0
  120. include/dart/common/LockableReference.hpp +166 -0
  121. include/dart/common/Logging.hpp +146 -0
  122. include/dart/common/Macros.hpp +78 -0
  123. include/dart/common/Memory.hpp +215 -0
  124. include/dart/common/MemoryAllocator.hpp +120 -0
  125. include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
  126. include/dart/common/MemoryManager.hpp +189 -0
  127. include/dart/common/Metaprogramming.hpp +68 -0
  128. include/dart/common/NameManager.hpp +184 -0
  129. include/dart/common/Observer.hpp +85 -0
  130. include/dart/common/Optional.hpp +48 -0
  131. include/dart/common/Platform.hpp +92 -0
  132. include/dart/common/PoolAllocator.hpp +141 -0
  133. include/dart/common/Profile.hpp +56 -0
  134. include/dart/common/ProxyAspect.hpp +93 -0
  135. include/dart/common/RequiresAspect.hpp +79 -0
  136. include/dart/common/Resource.hpp +96 -0
  137. include/dart/common/ResourceRetriever.hpp +82 -0
  138. include/dart/common/SharedLibrary.hpp +201 -0
  139. include/dart/common/Signal.hpp +250 -0
  140. include/dart/common/Singleton.hpp +85 -0
  141. include/dart/common/SmartPointer.hpp +63 -0
  142. include/dart/common/SpecializedForAspect.hpp +207 -0
  143. include/dart/common/StlAllocator.hpp +111 -0
  144. include/dart/common/StlHelpers.hpp +61 -0
  145. include/dart/common/Stopwatch.hpp +143 -0
  146. include/dart/common/String.hpp +71 -0
  147. include/dart/common/SubPtr.hpp +17 -0
  148. include/dart/common/Subject.hpp +84 -0
  149. include/dart/common/Timer.hpp +119 -0
  150. include/dart/common/Uri.hpp +229 -0
  151. include/dart/common/VersionCounter.hpp +68 -0
  152. include/dart/common/Virtual.hpp +51 -0
  153. include/dart/common/all.hpp +53 -0
  154. include/dart/common/common.hpp +14 -0
  155. include/dart/common/detail/Aspect.hpp +102 -0
  156. include/dart/common/detail/AspectWithVersion.hpp +455 -0
  157. include/dart/common/detail/Castable-impl.hpp +109 -0
  158. include/dart/common/detail/Cloneable.hpp +638 -0
  159. include/dart/common/detail/Composite.hpp +241 -0
  160. include/dart/common/detail/CompositeData.hpp +393 -0
  161. include/dart/common/detail/CompositeJoiner.hpp +128 -0
  162. include/dart/common/detail/ConnectionBody.hpp +157 -0
  163. include/dart/common/detail/EmbeddedAspect.hpp +487 -0
  164. include/dart/common/detail/Factory-impl.hpp +200 -0
  165. include/dart/common/detail/LockableReference-impl.hpp +156 -0
  166. include/dart/common/detail/Logging-impl.hpp +162 -0
  167. include/dart/common/detail/Memory-impl.hpp +66 -0
  168. include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
  169. include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
  170. include/dart/common/detail/MemoryManager-impl.hpp +102 -0
  171. include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
  172. include/dart/common/detail/NameManager.hpp +301 -0
  173. include/dart/common/detail/NoOp.hpp +57 -0
  174. include/dart/common/detail/ProxyAspect.hpp +172 -0
  175. include/dart/common/detail/RequiresAspect.hpp +51 -0
  176. include/dart/common/detail/SharedLibraryManager.hpp +106 -0
  177. include/dart/common/detail/Signal.hpp +242 -0
  178. include/dart/common/detail/Singleton-impl.hpp +74 -0
  179. include/dart/common/detail/SpecializedForAspect.hpp +331 -0
  180. include/dart/common/detail/StlAllocator-impl.hpp +108 -0
  181. include/dart/common/detail/Stopwatch-impl.hpp +242 -0
  182. include/dart/common/detail/SubPtr.hpp +17 -0
  183. include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
  184. include/dart/common/detail/sub_ptr.hpp +139 -0
  185. include/dart/common/sub_ptr.hpp +103 -0
  186. include/dart/config.hpp +100 -0
  187. include/dart/constraint/BalanceConstraint.hpp +202 -0
  188. include/dart/constraint/BallJointConstraint.hpp +142 -0
  189. include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
  190. include/dart/constraint/BoxedLcpSolver.hpp +101 -0
  191. include/dart/constraint/ConstrainedGroup.hpp +120 -0
  192. include/dart/constraint/ConstraintBase.hpp +141 -0
  193. include/dart/constraint/ConstraintSolver.hpp +325 -0
  194. include/dart/constraint/ContactConstraint.hpp +286 -0
  195. include/dart/constraint/ContactSurface.hpp +191 -0
  196. include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
  197. include/dart/constraint/DantzigLCPSolver.hpp +87 -0
  198. include/dart/constraint/DynamicJointConstraint.hpp +120 -0
  199. include/dart/constraint/JointConstraint.hpp +182 -0
  200. include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
  201. include/dart/constraint/JointLimitConstraint.hpp +185 -0
  202. include/dart/constraint/LCPSolver.hpp +71 -0
  203. include/dart/constraint/MimicMotorConstraint.hpp +164 -0
  204. include/dart/constraint/PGSLCPSolver.hpp +109 -0
  205. include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
  206. include/dart/constraint/ServoMotorConstraint.hpp +151 -0
  207. include/dart/constraint/SmartPointer.hpp +69 -0
  208. include/dart/constraint/SoftContactConstraint.hpp +262 -0
  209. include/dart/constraint/WeldJointConstraint.hpp +133 -0
  210. include/dart/constraint/all.hpp +25 -0
  211. include/dart/constraint/constraint.hpp +14 -0
  212. include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
  213. include/dart/dart.hpp +44 -0
  214. include/dart/dynamics/ArrowShape.hpp +121 -0
  215. include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
  216. include/dart/dynamics/BallJoint.hpp +143 -0
  217. include/dart/dynamics/BodyNode.hpp +1279 -0
  218. include/dart/dynamics/BoxShape.hpp +90 -0
  219. include/dart/dynamics/Branch.hpp +107 -0
  220. include/dart/dynamics/CapsuleShape.hpp +105 -0
  221. include/dart/dynamics/Chain.hpp +142 -0
  222. include/dart/dynamics/CompositeNode.hpp +114 -0
  223. include/dart/dynamics/ConeShape.hpp +107 -0
  224. include/dart/dynamics/CylinderShape.hpp +96 -0
  225. include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
  226. include/dart/dynamics/EllipsoidShape.hpp +115 -0
  227. include/dart/dynamics/EndEffector.hpp +158 -0
  228. include/dart/dynamics/Entity.hpp +258 -0
  229. include/dart/dynamics/EntityNode.hpp +77 -0
  230. include/dart/dynamics/EulerJoint.hpp +174 -0
  231. include/dart/dynamics/FixedFrame.hpp +105 -0
  232. include/dart/dynamics/FixedJacobianNode.hpp +168 -0
  233. include/dart/dynamics/Frame.hpp +388 -0
  234. include/dart/dynamics/FreeJoint.hpp +369 -0
  235. include/dart/dynamics/GenericJoint.hpp +825 -0
  236. include/dart/dynamics/Group.hpp +270 -0
  237. include/dart/dynamics/HeightmapShape.hpp +195 -0
  238. include/dart/dynamics/HierarchicalIK.hpp +419 -0
  239. include/dart/dynamics/IkFast.hpp +277 -0
  240. include/dart/dynamics/Inertia.hpp +176 -0
  241. include/dart/dynamics/InvalidIndex.hpp +46 -0
  242. include/dart/dynamics/InverseKinematics.hpp +1401 -0
  243. include/dart/dynamics/JacobianNode.hpp +312 -0
  244. include/dart/dynamics/Joint.hpp +1128 -0
  245. include/dart/dynamics/LineSegmentShape.hpp +140 -0
  246. include/dart/dynamics/Linkage.hpp +246 -0
  247. include/dart/dynamics/Marker.hpp +126 -0
  248. include/dart/dynamics/MeshShape.hpp +225 -0
  249. include/dart/dynamics/MetaSkeleton.hpp +1034 -0
  250. include/dart/dynamics/MimicDofProperties.hpp +62 -0
  251. include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
  252. include/dart/dynamics/MultiSphereShape.hpp +42 -0
  253. include/dart/dynamics/Node.hpp +273 -0
  254. include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
  255. include/dart/dynamics/PlanarJoint.hpp +161 -0
  256. include/dart/dynamics/PlaneShape.hpp +105 -0
  257. include/dart/dynamics/PointCloudShape.hpp +186 -0
  258. include/dart/dynamics/PointMass.hpp +709 -0
  259. include/dart/dynamics/PrismaticJoint.hpp +120 -0
  260. include/dart/dynamics/PyramidShape.hpp +122 -0
  261. include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
  262. include/dart/dynamics/RevoluteJoint.hpp +120 -0
  263. include/dart/dynamics/ScrewJoint.hpp +126 -0
  264. include/dart/dynamics/Shape.hpp +231 -0
  265. include/dart/dynamics/ShapeFrame.hpp +291 -0
  266. include/dart/dynamics/ShapeNode.hpp +134 -0
  267. include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
  268. include/dart/dynamics/SimpleFrame.hpp +247 -0
  269. include/dart/dynamics/Skeleton.hpp +1350 -0
  270. include/dart/dynamics/SmartPointer.hpp +185 -0
  271. include/dart/dynamics/SoftBodyNode.hpp +472 -0
  272. include/dart/dynamics/SoftMeshShape.hpp +100 -0
  273. include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
  274. include/dart/dynamics/SphereShape.hpp +89 -0
  275. include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
  276. include/dart/dynamics/TranslationalJoint.hpp +105 -0
  277. include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
  278. include/dart/dynamics/UniversalJoint.hpp +128 -0
  279. include/dart/dynamics/VoxelGridShape.hpp +171 -0
  280. include/dart/dynamics/WeldJoint.hpp +116 -0
  281. include/dart/dynamics/ZeroDofJoint.hpp +562 -0
  282. include/dart/dynamics/all.hpp +69 -0
  283. include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
  284. include/dart/dynamics/detail/BodyNode.hpp +344 -0
  285. include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
  286. include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
  287. include/dart/dynamics/detail/CompositeNode.hpp +93 -0
  288. include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
  289. include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
  290. include/dart/dynamics/detail/EntityNode.hpp +81 -0
  291. include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
  292. include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
  293. include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
  294. include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
  295. include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
  296. include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
  297. include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
  298. include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
  299. include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
  300. include/dart/dynamics/detail/JointAspect.hpp +161 -0
  301. include/dart/dynamics/detail/JointPtr.hpp +293 -0
  302. include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
  303. include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
  304. include/dart/dynamics/detail/Node.hpp +532 -0
  305. include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
  306. include/dart/dynamics/detail/NodePtr.hpp +259 -0
  307. include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
  308. include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
  309. include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
  310. include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
  311. include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
  312. include/dart/dynamics/detail/ShapeNode.hpp +51 -0
  313. include/dart/dynamics/detail/Skeleton.hpp +92 -0
  314. include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
  315. include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
  316. include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
  317. include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
  318. include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
  319. include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
  320. include/dart/dynamics/dynamics.hpp +14 -0
  321. include/dart/dynamics/ikfast.h +345 -0
  322. include/dart/external/convhull_3d/convhull_3d.h +1878 -0
  323. include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
  324. include/dart/external/odelcpsolver/common.h +418 -0
  325. include/dart/external/odelcpsolver/error.h +62 -0
  326. include/dart/external/odelcpsolver/lcp.h +75 -0
  327. include/dart/external/odelcpsolver/matrix.h +277 -0
  328. include/dart/external/odelcpsolver/misc.h +82 -0
  329. include/dart/external/odelcpsolver/odeconfig.h +110 -0
  330. include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
  331. include/dart/gui/osg/DragAndDrop.hpp +360 -0
  332. include/dart/gui/osg/GridVisual.hpp +218 -0
  333. include/dart/gui/osg/ImGuiHandler.hpp +113 -0
  334. include/dart/gui/osg/ImGuiViewer.hpp +83 -0
  335. include/dart/gui/osg/ImGuiWidget.hpp +91 -0
  336. include/dart/gui/osg/IncludeImGui.hpp +75 -0
  337. include/dart/gui/osg/InteractiveFrame.hpp +170 -0
  338. include/dart/gui/osg/MouseEventHandler.hpp +76 -0
  339. include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
  340. include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
  341. include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
  342. include/dart/gui/osg/TrackballManipulator.hpp +97 -0
  343. include/dart/gui/osg/Utils.hpp +120 -0
  344. include/dart/gui/osg/Viewer.hpp +427 -0
  345. include/dart/gui/osg/WorldNode.hpp +211 -0
  346. include/dart/gui/osg/all.hpp +19 -0
  347. include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
  348. include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
  349. include/dart/gui/osg/osg.hpp +14 -0
  350. include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
  351. include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
  352. include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
  353. include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
  354. include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
  355. include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
  356. include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
  357. include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
  358. include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
  359. include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
  360. include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
  361. include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
  362. include/dart/gui/osg/render/ShapeNode.hpp +126 -0
  363. include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
  364. include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
  365. include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
  366. include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
  367. include/dart/gui/osg/render/all.hpp +19 -0
  368. include/dart/gui/osg/render/render.hpp +14 -0
  369. include/dart/integration/EulerIntegrator.hpp +64 -0
  370. include/dart/integration/Integrator.hpp +104 -0
  371. include/dart/integration/RK4Integrator.hpp +68 -0
  372. include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
  373. include/dart/integration/all.hpp +6 -0
  374. include/dart/integration/integration.hpp +14 -0
  375. include/dart/lcpsolver/Lemke.hpp +54 -0
  376. include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
  377. include/dart/lcpsolver/all.hpp +4 -0
  378. include/dart/lcpsolver/lcpsolver.hpp +14 -0
  379. include/dart/math/ConfigurationSpace.hpp +144 -0
  380. include/dart/math/Constants.hpp +79 -0
  381. include/dart/math/Geometry.hpp +659 -0
  382. include/dart/math/Helpers.hpp +481 -0
  383. include/dart/math/Icosphere.hpp +106 -0
  384. include/dart/math/MathTypes.hpp +100 -0
  385. include/dart/math/Mesh.hpp +108 -0
  386. include/dart/math/Random.hpp +225 -0
  387. include/dart/math/TriMesh.hpp +121 -0
  388. include/dart/math/all.hpp +11 -0
  389. include/dart/math/detail/ConfigurationSpace.hpp +235 -0
  390. include/dart/math/detail/Geometry-impl.hpp +126 -0
  391. include/dart/math/detail/Icosphere-impl.hpp +214 -0
  392. include/dart/math/detail/Mesh-impl.hpp +151 -0
  393. include/dart/math/detail/Random-impl.hpp +353 -0
  394. include/dart/math/detail/TriMesh-impl.hpp +202 -0
  395. include/dart/math/math.hpp +14 -0
  396. include/dart/optimizer/Function.hpp +203 -0
  397. include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
  398. include/dart/optimizer/GradientDescentSolver.hpp +240 -0
  399. include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
  400. include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
  401. include/dart/optimizer/Population.hpp +108 -0
  402. include/dart/optimizer/Problem.hpp +191 -0
  403. include/dart/optimizer/Solver.hpp +182 -0
  404. include/dart/optimizer/all.hpp +10 -0
  405. include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
  406. include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
  407. include/dart/optimizer/ipopt/all.hpp +4 -0
  408. include/dart/optimizer/ipopt/ipopt.hpp +14 -0
  409. include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
  410. include/dart/optimizer/nlopt/all.hpp +3 -0
  411. include/dart/optimizer/nlopt/nlopt.hpp +14 -0
  412. include/dart/optimizer/optimizer.hpp +14 -0
  413. include/dart/simulation/Recording.hpp +118 -0
  414. include/dart/simulation/SmartPointer.hpp +46 -0
  415. include/dart/simulation/World.hpp +405 -0
  416. include/dart/simulation/all.hpp +5 -0
  417. include/dart/simulation/detail/World-impl.hpp +129 -0
  418. include/dart/simulation/simulation.hpp +14 -0
  419. include/dart/utils/C3D.hpp +107 -0
  420. include/dart/utils/CompositeResourceRetriever.hpp +97 -0
  421. include/dart/utils/DartResourceRetriever.hpp +104 -0
  422. include/dart/utils/FileInfoC3D.hpp +91 -0
  423. include/dart/utils/FileInfoDof.hpp +109 -0
  424. include/dart/utils/FileInfoWorld.hpp +75 -0
  425. include/dart/utils/PackageResourceRetriever.hpp +118 -0
  426. include/dart/utils/SkelParser.hpp +70 -0
  427. include/dart/utils/VskParser.hpp +108 -0
  428. include/dart/utils/XmlHelpers.hpp +243 -0
  429. include/dart/utils/all.hpp +14 -0
  430. include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
  431. include/dart/utils/mjcf/MjcfParser.hpp +80 -0
  432. include/dart/utils/mjcf/all.hpp +3 -0
  433. include/dart/utils/mjcf/mjcf.hpp +14 -0
  434. include/dart/utils/sdf/SdfParser.hpp +98 -0
  435. include/dart/utils/sdf/all.hpp +3 -0
  436. include/dart/utils/sdf/sdf.hpp +14 -0
  437. include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
  438. include/dart/utils/urdf/DartLoader.hpp +277 -0
  439. include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
  440. include/dart/utils/urdf/URDFTypes.hpp +42 -0
  441. include/dart/utils/urdf/all.hpp +5 -0
  442. include/dart/utils/urdf/urdf.hpp +14 -0
  443. include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
  444. include/dart/utils/utils.hpp +14 -0
  445. lib64/libdart-collision-bullet.a +0 -0
  446. lib64/libdart-collision-ode.a +0 -0
  447. lib64/libdart-external-odelcpsolver.a +0 -0
  448. lib64/libdart-gui-osg.a +0 -0
  449. lib64/libdart-optimizer-ipopt.a +0 -0
  450. lib64/libdart-optimizer-nlopt.a +0 -0
  451. lib64/libdart-utils-urdf.a +0 -0
  452. lib64/libdart-utils.a +0 -0
  453. lib64/libdart.a +0 -0
  454. lib64/pkgconfig/dart.pc +12 -0
  455. share/dart/cmake/DARTConfig.cmake +194 -0
  456. share/dart/cmake/DARTConfigVersion.cmake +65 -0
  457. share/dart/cmake/DARTFindBullet.cmake +96 -0
  458. share/dart/cmake/DARTFindEigen3.cmake +9 -0
  459. share/dart/cmake/DARTFindIPOPT.cmake +20 -0
  460. share/dart/cmake/DARTFindNLOPT.cmake +17 -0
  461. share/dart/cmake/DARTFindODE.cmake +23 -0
  462. share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
  463. share/dart/cmake/DARTFindassimp.cmake +18 -0
  464. share/dart/cmake/DARTFindfcl.cmake +23 -0
  465. share/dart/cmake/DARTFindfmt.cmake +9 -0
  466. share/dart/cmake/DARTFindimgui.cmake +21 -0
  467. share/dart/cmake/DARTFindoctomap.cmake +17 -0
  468. share/dart/cmake/DARTFindspdlog.cmake +9 -0
  469. share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
  470. share/dart/cmake/DARTFindurdfdom.cmake +29 -0
  471. share/dart/cmake/FindIPOPT.cmake +54 -0
  472. share/dart/cmake/FindNLOPT.cmake +54 -0
  473. share/dart/cmake/FindODE.cmake +54 -0
  474. share/dart/cmake/Findassimp.cmake +56 -0
  475. share/dart/cmake/Findfcl.cmake +67 -0
  476. share/dart/cmake/Findimgui.cmake +70 -0
  477. share/dart/cmake/Findtinyxml2.cmake +54 -0
  478. share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
  479. share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
  480. share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
  481. share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
  482. share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
  483. share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
  484. share/dart/cmake/dart_dartComponent.cmake +19 -0
  485. share/dart/cmake/dart_dartTargets-release.cmake +19 -0
  486. share/dart/cmake/dart_dartTargets.cmake +125 -0
  487. share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
  488. share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
  489. share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
  490. share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
  491. share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
  492. share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
  493. share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
  494. share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
  495. share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
  496. share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
  497. share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
  498. share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
  499. share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
  500. share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
  501. share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
  502. share/dart/cmake/dart_utilsComponent.cmake +19 -0
  503. share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
  504. share/dart/cmake/dart_utilsTargets.cmake +122 -0
  505. share/dart/package.xml +42 -0
  506. share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
  507. share/doc/dart/data/c3d/squat.c3d +0 -0
  508. share/doc/dart/data/dof/RHand.dof +205 -0
  509. share/doc/dart/data/dof/fixedHand.dof +205 -0
  510. share/doc/dart/data/dof/init_Tpose.dof +240 -0
  511. share/doc/dart/data/dof/same.dof +1003 -0
  512. share/doc/dart/data/dof/simMotion.dof +1817 -0
  513. share/doc/dart/data/dof/simMotion1.dof +1355 -0
  514. share/doc/dart/data/etc/fort.4 +43 -0
  515. share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
  516. share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
  517. share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
  518. share/doc/dart/data/mjcf/openai/ant.xml +81 -0
  519. share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
  520. share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
  521. share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
  522. share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
  523. share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
  524. share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
  525. share/doc/dart/data/mjcf/openai/point.xml +31 -0
  526. share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
  527. share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
  528. share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
  529. share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
  530. share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
  531. share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
  532. share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
  533. share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
  534. share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
  535. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
  536. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
  537. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
  538. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
  539. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
  540. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
  541. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
  542. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
  543. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
  544. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
  545. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
  546. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
  547. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
  548. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
  549. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
  550. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
  551. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
  552. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
  553. share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
  554. share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
  555. share/doc/dart/data/mjcf/openai/striker.xml +101 -0
  556. share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
  557. share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
  558. share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
  559. share/doc/dart/data/mjcf/test/default.xml +17 -0
  560. share/doc/dart/data/mjcf/test/include_default.xml +8 -0
  561. share/doc/dart/data/mjcf/test/include_main.xml +12 -0
  562. share/doc/dart/data/obj/Body_Hip.obj +22830 -0
  563. share/doc/dart/data/obj/BoxSmall.obj +23 -0
  564. share/doc/dart/data/obj/foot.obj +10970 -0
  565. share/doc/dart/data/other/torus1.path +11991 -0
  566. share/doc/dart/data/other/torus1.tris +5329 -0
  567. share/doc/dart/data/other/torus2.path +11991 -0
  568. share/doc/dart/data/other/torus2.tris +12961 -0
  569. share/doc/dart/data/screencap/.KEEP +0 -0
  570. share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
  571. share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
  572. share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
  573. share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
  574. share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
  575. share/doc/dart/data/sdf/atlas/head.dae +8607 -0
  576. share/doc/dart/data/sdf/atlas/head.stl +0 -0
  577. share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
  578. share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
  579. share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
  580. share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
  581. share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
  582. share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
  583. share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
  584. share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
  585. share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
  586. share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
  587. share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
  588. share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
  589. share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
  590. share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
  591. share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
  592. share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
  593. share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
  594. share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
  595. share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
  596. share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
  597. share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
  598. share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
  599. share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
  600. share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
  601. share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
  602. share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
  603. share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
  604. share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
  605. share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
  606. share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
  607. share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
  608. share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
  609. share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
  610. share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
  611. share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
  612. share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
  613. share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
  614. share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
  615. share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
  616. share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
  617. share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
  618. share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
  619. share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
  620. share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
  621. share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
  622. share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
  623. share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
  624. share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
  625. share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
  626. share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
  627. share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
  628. share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
  629. share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
  630. share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
  631. share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
  632. share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
  633. share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
  634. share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
  635. share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
  636. share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
  637. share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
  638. share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
  639. share/doc/dart/data/sdf/benchmark.world +2510 -0
  640. share/doc/dart/data/sdf/double_pendulum.world +168 -0
  641. share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
  642. share/doc/dart/data/sdf/empty.world +13 -0
  643. share/doc/dart/data/sdf/ground.world +48 -0
  644. share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
  645. share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
  646. share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
  647. share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
  648. share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
  649. share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
  650. share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
  651. share/doc/dart/data/sdf/quad.sdf +867 -0
  652. share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
  653. share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
  654. share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
  655. share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
  656. share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
  657. share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
  658. share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
  659. share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
  660. share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
  661. share/doc/dart/data/skel/biped.skel +850 -0
  662. share/doc/dart/data/skel/bullet_collision.skel +174 -0
  663. share/doc/dart/data/skel/chain.skel +212 -0
  664. share/doc/dart/data/skel/cube.skel +71 -0
  665. share/doc/dart/data/skel/cubes.skel +137 -0
  666. share/doc/dart/data/skel/empty.skel +10 -0
  667. share/doc/dart/data/skel/freeChain.skel +212 -0
  668. share/doc/dart/data/skel/fullbody1.skel +1177 -0
  669. share/doc/dart/data/skel/ground.skel +31 -0
  670. share/doc/dart/data/skel/joint_limit.skel +123 -0
  671. share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
  672. share/doc/dart/data/skel/kima/head.dae +34634 -0
  673. share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
  674. share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
  675. share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
  676. share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
  677. share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
  678. share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
  679. share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
  680. share/doc/dart/data/skel/kima/thorax.dae +47337 -0
  681. share/doc/dart/data/skel/mesh_collision.skel +137 -0
  682. share/doc/dart/data/skel/shapes.skel +378 -0
  683. share/doc/dart/data/skel/skateboard.skel +222 -0
  684. share/doc/dart/data/skel/softBodies.skel +284 -0
  685. share/doc/dart/data/skel/soft_cubes.skel +134 -0
  686. share/doc/dart/data/skel/soft_open_chain.skel +241 -0
  687. share/doc/dart/data/skel/sphere.skel +74 -0
  688. share/doc/dart/data/skel/spheres.skel +118 -0
  689. share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
  690. share/doc/dart/data/skel/test/ball_joints.skel +49 -0
  691. share/doc/dart/data/skel/test/box_stacking.skel +346 -0
  692. share/doc/dart/data/skel/test/boxes.skel +52 -0
  693. share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
  694. share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
  695. share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
  696. share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
  697. share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
  698. share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
  699. share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
  700. share/doc/dart/data/skel/test/drop.skel +116 -0
  701. share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
  702. share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
  703. share/doc/dart/data/skel/test/empty.skel +10 -0
  704. share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
  705. share/doc/dart/data/skel/test/free_joints.skel +49 -0
  706. share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
  707. share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
  708. share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
  709. share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
  710. share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
  711. share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
  712. share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
  713. share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
  714. share/doc/dart/data/skel/test/planar_joint.skel +167 -0
  715. share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
  716. share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
  717. share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
  718. share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
  719. share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
  720. share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
  721. share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
  722. share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
  723. share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
  724. share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
  725. share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
  726. share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
  727. share/doc/dart/data/skel/test/spheres.skel +118 -0
  728. share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
  729. share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
  730. share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
  731. share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
  732. share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
  733. share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
  734. share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
  735. share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
  736. share/doc/dart/data/skel/test/test_shapes.skel +324 -0
  737. share/doc/dart/data/skel/test/test_single_body.skel +55 -0
  738. share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
  739. share/doc/dart/data/skel/test/translational_joints.skel +49 -0
  740. share/doc/dart/data/skel/test/tree_structure.skel +428 -0
  741. share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
  742. share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
  743. share/doc/dart/data/skel/two_cubes.skel +118 -0
  744. share/doc/dart/data/skel/vehicle.skel +322 -0
  745. share/doc/dart/data/test/hello_world.txt +1 -0
  746. share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
  747. share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
  748. share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
  749. share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
  750. share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
  751. share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
  752. share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
  753. share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
  754. share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
  755. share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
  756. share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
  757. share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
  758. share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
  759. share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
  760. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
  761. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
  762. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
  763. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
  764. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
  765. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
  766. share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
  767. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
  768. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
  769. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
  770. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
  771. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
  772. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
  773. share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
  774. share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
  775. share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
  776. share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
  777. share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
  778. share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
  779. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
  780. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
  781. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
  782. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
  783. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
  784. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
  785. share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
  786. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
  787. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
  788. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
  789. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
  790. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
  791. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
  792. share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
  793. share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
  794. share/doc/dart/data/urdf/drchubo/package.xml +11 -0
  795. share/doc/dart/data/urdf/test/invalid.urdf +1 -0
  796. share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
  797. share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
  798. share/doc/dart/data/urdf/test/issue838.urdf +86 -0
  799. share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
  800. share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
  801. share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
  802. share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
  803. share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
  804. share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
  805. share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
  806. share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
  807. share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
  808. share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
  809. share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
  810. share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
  811. share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
  812. share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
  813. share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
  814. share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
  815. share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
  816. share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
  817. share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
  818. share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
  819. share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
  820. share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
  821. share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
  822. share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
  823. share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
  824. share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
  825. share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
  826. share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
  827. share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
  828. share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
  829. share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
  830. share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
  831. share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
  832. share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
  833. share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
  834. share/doc/dart/data/urdf/wam/wam.urdf +230 -0
  835. share/doc/dart/data/vsk/Nick01.vsk +398 -0
  836. share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
  837. share/doc/dart/data/vsk/Yuting.vsk +398 -0
  838. share/doc/dart/data/vsk/test/empty.vsk +3 -0
  839. share/doc/dart/examples/CMakeLists.txt +44 -0
  840. share/doc/dart/examples/README.md +33 -0
  841. share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
  842. share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
  843. share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
  844. share/doc/dart/examples/atlas_puppet/README.md +20 -0
  845. share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
  846. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
  847. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
  848. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
  849. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
  850. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
  851. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
  852. share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
  853. share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
  854. share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
  855. share/doc/dart/examples/atlas_simbicon/README.md +20 -0
  856. share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
  857. share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
  858. share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
  859. share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
  860. share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
  861. share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
  862. share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
  863. share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
  864. share/doc/dart/examples/biped_stand/README.md +20 -0
  865. share/doc/dart/examples/biped_stand/main.cpp +287 -0
  866. share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
  867. share/doc/dart/examples/box_stacking/README.md +20 -0
  868. share/doc/dart/examples/box_stacking/main.cpp +417 -0
  869. share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
  870. share/doc/dart/examples/boxes/README.md +20 -0
  871. share/doc/dart/examples/boxes/main.cpp +157 -0
  872. share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
  873. share/doc/dart/examples/drag_and_drop/README.md +20 -0
  874. share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
  875. share/doc/dart/examples/empty/CMakeLists.txt +19 -0
  876. share/doc/dart/examples/empty/README.md +20 -0
  877. share/doc/dart/examples/empty/main.cpp +164 -0
  878. share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
  879. share/doc/dart/examples/fetch/README.md +20 -0
  880. share/doc/dart/examples/fetch/main.cpp +246 -0
  881. share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
  882. share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
  883. share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
  884. share/doc/dart/examples/hardcoded_design/README.md +27 -0
  885. share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
  886. share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
  887. share/doc/dart/examples/heightmap/README.md +20 -0
  888. share/doc/dart/examples/heightmap/main.cpp +460 -0
  889. share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
  890. share/doc/dart/examples/hello_world/README.md +20 -0
  891. share/doc/dart/examples/hello_world/main.cpp +114 -0
  892. share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
  893. share/doc/dart/examples/hubo_puppet/README.md +20 -0
  894. share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
  895. share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
  896. share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
  897. share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
  898. share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
  899. share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
  900. share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
  901. share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
  902. share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
  903. share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
  904. share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
  905. share/doc/dart/examples/imgui/README.md +20 -0
  906. share/doc/dart/examples/imgui/main.cpp +289 -0
  907. share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
  908. share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
  909. share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
  910. share/doc/dart/examples/joint_constraints/README.md +22 -0
  911. share/doc/dart/examples/joint_constraints/main.cpp +242 -0
  912. share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
  913. share/doc/dart/examples/mixed_chain/README.md +35 -0
  914. share/doc/dart/examples/mixed_chain/main.cpp +188 -0
  915. share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
  916. share/doc/dart/examples/operational_space_control/README.md +20 -0
  917. share/doc/dart/examples/operational_space_control/main.cpp +338 -0
  918. share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
  919. share/doc/dart/examples/point_cloud/README.md +20 -0
  920. share/doc/dart/examples/point_cloud/main.cpp +740 -0
  921. share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
  922. share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
  923. share/doc/dart/examples/rigid_chain/README.md +19 -0
  924. share/doc/dart/examples/rigid_chain/main.cpp +110 -0
  925. share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
  926. share/doc/dart/examples/rigid_cubes/README.md +91 -0
  927. share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
  928. share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
  929. share/doc/dart/examples/rigid_loop/README.md +34 -0
  930. share/doc/dart/examples/rigid_loop/main.cpp +127 -0
  931. share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
  932. share/doc/dart/examples/rigid_shapes/README.md +19 -0
  933. share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
  934. share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
  935. share/doc/dart/examples/simple_frames/README.md +27 -0
  936. share/doc/dart/examples/simple_frames/main.cpp +124 -0
  937. share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
  938. share/doc/dart/examples/simulation_event_handler/README.md +189 -0
  939. share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
  940. share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
  941. share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
  942. share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
  943. share/doc/dart/examples/soft_bodies/README.md +20 -0
  944. share/doc/dart/examples/soft_bodies/main.cpp +219 -0
  945. share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
  946. share/doc/dart/examples/speed_test/README.md +20 -0
  947. share/doc/dart/examples/speed_test/main.cpp +250 -0
  948. share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
  949. share/doc/dart/examples/tinkertoy/README.md +20 -0
  950. share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
  951. share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
  952. share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
  953. share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
  954. share/doc/dart/examples/tinkertoy/main.cpp +186 -0
  955. share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
  956. share/doc/dart/examples/vehicle/README.md +22 -0
  957. share/doc/dart/examples/vehicle/main.cpp +195 -0
  958. share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
  959. share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
  960. share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
  961. share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
  962. share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
  963. share/doc/dart/examples/wam_ikfast/README.md +20 -0
  964. share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
  965. share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
  966. share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
  967. share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
  968. share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
  969. share/doc/dart/tutorials/CMakeLists.txt +12 -0
  970. share/doc/dart/tutorials/README.md +45 -0
  971. share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
  972. share/doc/dart/tutorials/tutorial_biped/README +18 -0
  973. share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
  974. share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
  975. share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
  976. share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
  977. share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
  978. share/doc/dart/tutorials/tutorial_collisions/README +18 -0
  979. share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
  980. share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
  981. share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
  982. share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
  983. share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
  984. share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
  985. share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
  986. share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
  987. share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
  988. share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
  989. share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
  990. share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
  991. share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
  992. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
  993. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
  994. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
@@ -0,0 +1,205 @@
1
+ frames = 202 dofs = 24
2
+ Yuting1116Cube_wrist<a-Z> Yuting1116Cube_wrist<a-Y> Yuting1116Cube_CMC<a-X> Yuting1116Cube_CMC<a-Y> Yuting1116Cube_CMC<a-Z> Yuting1116Cube_thumbMCP<a-Z> Yuting1116Cube_thumbMCP<a-Y> Yuting1116Cube_thumbDIP<a-Z> Yuting1116Cube_indexMCP<a-Z> Yuting1116Cube_indexMCP<a-Y> Yuting1116Cube_indexPIP<a-Z> Yuting1116Cube_indexDIP<a-Z> Yuting1116Cube_middleMCP<a-Z> Yuting1116Cube_middleMCP<a-Y> Yuting1116Cube_middlePIP<a-Z> Yuting1116Cube_middleDIP<a-Z> Yuting1116Cube_ringMCP<a-Z> Yuting1116Cube_ringMCP<a-Y> Yuting1116Cube_ringPIP<a-Z> Yuting1116Cube_ringDIP<a-Z> Yuting1116Cube_pinkyMCP<a-Z> Yuting1116Cube_pinkyMCP<a-Y> Yuting1116Cube_pinkyPIP<a-Z> Yuting1116Cube_pinkyDIP<a-Z>
3
+
4
+ 1.15719466e+00 2.82967695e-01 -8.68413034e-01 -2.56279691e-01 -7.96855380e-01 -1.27344638e-01 1.47890729e-01 -4.89352402e-01 -3.06119769e-01 -1.48173451e-01 -2.40665122e-01 -2.18096347e-01 -1.11303689e-02 -3.41104481e-02 -4.39739808e-01 -3.80247605e-02 2.96736225e-02 -1.14561855e-01 -5.68811251e-01 -6.22913637e-02 -1.70392440e-01 -3.40586124e-01 -7.41666134e-01 8.32186611e-02
5
+ 1.15491558e+00 2.81800103e-01 -8.75327971e-01 -2.52328175e-01 -8.02657795e-01 -1.36682585e-01 1.46437460e-01 -5.00663959e-01 -3.15308695e-01 -1.52714695e-01 -2.43910314e-01 -2.23605016e-01 -2.58639870e-02 -2.93302955e-02 -4.50754152e-01 -3.54034069e-02 3.11477942e-02 -1.17751212e-01 -5.82439393e-01 -6.69292223e-02 -1.47853872e-01 -3.42430375e-01 -7.87845980e-01 7.75126085e-02
6
+ 1.15141438e+00 2.80543462e-01 -8.79590105e-01 -2.48955832e-01 -8.08689099e-01 -1.46524241e-01 1.44077467e-01 -5.10236458e-01 -3.25419046e-01 -1.57798019e-01 -2.46769424e-01 -2.28478353e-01 -3.85791346e-02 -2.75535387e-02 -4.65522288e-01 -3.23891068e-02 3.36805096e-02 -1.22884105e-01 -5.98265777e-01 -6.99171391e-02 -1.22129818e-01 -3.46029439e-01 -8.39135083e-01 7.54521168e-02
7
+ 1.14402846e+00 2.78871541e-01 -8.81813888e-01 -2.46237931e-01 -8.15646988e-01 -1.56603556e-01 1.41032420e-01 -5.17338053e-01 -3.37084068e-01 -1.64136386e-01 -2.48580919e-01 -2.32768212e-01 -4.89092418e-02 -2.91377380e-02 -4.83354777e-01 -2.86522698e-02 3.83998634e-02 -1.30437628e-01 -6.16920764e-01 -7.13969861e-02 -9.21192945e-02 -3.52287226e-01 -8.95361170e-01 7.69398865e-02
8
+ 1.13566856e+00 2.76713273e-01 -8.80406018e-01 -2.45386998e-01 -8.20646454e-01 -1.68556316e-01 1.39303431e-01 -5.22676622e-01 -3.48652317e-01 -1.71044370e-01 -2.50555373e-01 -2.37514555e-01 -5.75006501e-02 -3.28359089e-02 -5.01001531e-01 -2.73411382e-02 4.24553836e-02 -1.39476530e-01 -6.34117789e-01 -7.38744502e-02 -6.51623695e-02 -3.59375197e-01 -9.47030157e-01 8.14843455e-02
9
+ 1.12844376e+00 2.74798950e-01 -8.76727397e-01 -2.44113430e-01 -8.25983866e-01 -1.75602945e-01 1.34873397e-01 -5.28727843e-01 -3.59878328e-01 -1.76100902e-01 -2.53061370e-01 -2.40682566e-01 -6.47603677e-02 -3.59949330e-02 -5.18296687e-01 -2.62405961e-02 4.58924953e-02 -1.47394760e-01 -6.51702320e-01 -7.50454114e-02 -4.01222434e-02 -3.65169327e-01 -9.96915241e-01 8.66443983e-02
10
+ 1.11774265e+00 2.72254874e-01 -8.71584950e-01 -2.43984120e-01 -8.30249663e-01 -1.84601445e-01 1.32283413e-01 -5.34220664e-01 -3.71445557e-01 -1.82571494e-01 -2.56138821e-01 -2.43838060e-01 -7.12229412e-02 -4.07386860e-02 -5.34297712e-01 -2.59851509e-02 4.87599792e-02 -1.57064761e-01 -6.67063272e-01 -7.69762431e-02 -2.01067990e-02 -3.72007251e-01 -1.03647352e+00 9.13113527e-02
11
+ 1.10915610e+00 2.69020354e-01 -8.65567612e-01 -2.44954953e-01 -8.32383469e-01 -1.91328031e-01 1.31257111e-01 -5.36629966e-01 -3.80955862e-01 -1.86668157e-01 -2.58358911e-01 -2.47727314e-01 -7.66376511e-02 -4.35607706e-02 -5.46194012e-01 -2.93302691e-02 5.00201352e-02 -1.64274759e-01 -6.78962419e-01 -8.13648466e-02 -6.42603574e-03 -3.75463083e-01 -1.06532455e+00 9.02776901e-02
12
+ 1.09693160e+00 2.64704875e-01 -8.59545165e-01 -2.45830070e-01 -8.35188712e-01 -1.97924663e-01 1.30469432e-01 -5.39591628e-01 -3.91522227e-01 -1.91767164e-01 -2.59924761e-01 -2.51350662e-01 -8.24086968e-02 -4.72334508e-02 -5.56385670e-01 -3.21098794e-02 5.08011562e-02 -1.72308931e-01 -6.88999083e-01 -8.55583090e-02 3.77568731e-03 -3.79606784e-01 -1.08394926e+00 8.40431249e-02
13
+ 1.09189979e+00 2.62247647e-01 -8.53469985e-01 -2.46918867e-01 -8.35984536e-01 -2.02397557e-01 1.30441540e-01 -5.41368023e-01 -3.99018985e-01 -1.93553186e-01 -2.62699428e-01 -2.53852670e-01 -8.73470065e-02 -4.74917600e-02 -5.64134658e-01 -3.62283683e-02 4.94713052e-02 -1.76499190e-01 -6.95420295e-01 -8.99189392e-02 5.98512420e-03 -3.78455091e-01 -1.08927484e+00 7.13791817e-02
14
+ 1.08620135e+00 2.59475047e-01 -8.47352475e-01 -2.48146892e-01 -8.36699770e-01 -2.06479793e-01 1.30246364e-01 -5.42216986e-01 -4.06257093e-01 -1.95242006e-01 -2.64652589e-01 -2.55259370e-01 -9.24540907e-02 -4.74105542e-02 -5.69904425e-01 -3.96178506e-02 4.76048267e-02 -1.79976917e-01 -6.99734453e-01 -9.33817943e-02 5.27481269e-03 -3.76620926e-01 -1.08799840e+00 5.72552051e-02
15
+ 1.08100204e+00 2.56915588e-01 -8.41755373e-01 -2.49080707e-01 -8.37621762e-01 -2.10064037e-01 1.29887086e-01 -5.43026094e-01 -4.13356207e-01 -1.97116274e-01 -2.64882023e-01 -2.56612929e-01 -9.73032243e-02 -4.70485710e-02 -5.74037211e-01 -4.29538073e-02 4.60092693e-02 -1.82990366e-01 -7.02978341e-01 -9.61452928e-02 4.64317289e-03 -3.75125216e-01 -1.08325590e+00 3.89523292e-02
16
+ 1.07683651e+00 2.54147643e-01 -8.35523661e-01 -2.50099331e-01 -8.38319382e-01 -2.13337259e-01 1.29350697e-01 -5.42356173e-01 -4.19984556e-01 -1.97939694e-01 -2.65471554e-01 -2.57351258e-01 -1.01942221e-01 -4.58478200e-02 -5.77709663e-01 -4.63026257e-02 4.41684543e-02 -1.84620530e-01 -7.05675612e-01 -9.81358310e-02 2.99256756e-03 -3.72965424e-01 -1.07684391e+00 2.09937725e-02
17
+ 1.07235513e+00 2.51749133e-01 -8.30478419e-01 -2.50536967e-01 -8.39496526e-01 -2.16356797e-01 1.28322434e-01 -5.42819958e-01 -4.26594448e-01 -1.99340216e-01 -2.65031260e-01 -2.57375895e-01 -1.05360320e-01 -4.56746881e-02 -5.82186585e-01 -4.84451654e-02 4.35003230e-02 -1.86840434e-01 -7.09477648e-01 -9.77939118e-02 3.84740552e-03 -3.72590910e-01 -1.07249106e+00 3.16160034e-03
18
+ 1.07056629e+00 2.50436665e-01 -8.24819225e-01 -2.51346916e-01 -8.40497165e-01 -2.18860344e-01 1.26703650e-01 -5.41785063e-01 -4.31672335e-01 -1.99922236e-01 -2.65265446e-01 -2.57017473e-01 -1.07530137e-01 -4.55267497e-02 -5.85827150e-01 -5.19166002e-02 4.33519246e-02 -1.88238838e-01 -7.12434559e-01 -9.84158495e-02 4.19560735e-03 -3.72269772e-01 -1.06874089e+00 -1.02027330e-02
19
+ 1.06924170e+00 2.49442210e-01 -8.20287605e-01 -2.51921953e-01 -8.41732649e-01 -2.20826181e-01 1.25182828e-01 -5.41111778e-01 -4.36102572e-01 -2.00357913e-01 -2.65802319e-01 -2.56482439e-01 -1.07644300e-01 -4.66226480e-02 -5.91379431e-01 -5.52206166e-02 4.42293075e-02 -1.89883633e-01 -7.16598022e-01 -9.79486967e-02 5.97125135e-03 -3.72854469e-01 -1.06824466e+00 -1.95279265e-02
20
+ 1.06678575e+00 2.48184833e-01 -8.16915199e-01 -2.52360433e-01 -8.43308467e-01 -2.22494492e-01 1.23914868e-01 -5.40501570e-01 -4.40122816e-01 -2.00939391e-01 -2.66551655e-01 -2.55991976e-01 -1.05789384e-01 -4.95777310e-02 -5.98692885e-01 -5.86115415e-02 4.61223290e-02 -1.92204223e-01 -7.21694527e-01 -9.71689018e-02 9.25954840e-03 -3.74689137e-01 -1.07048173e+00 -2.60907267e-02
21
+ 1.06453961e+00 2.46976714e-01 -8.14768375e-01 -2.52694324e-01 -8.45046556e-01 -2.23418640e-01 1.22767606e-01 -5.39914680e-01 -4.43018036e-01 -2.01172226e-01 -2.68041014e-01 -2.55352195e-01 -1.01605346e-01 -5.39946108e-02 -6.07698150e-01 -6.25198709e-02 4.87261544e-02 -1.94748594e-01 -7.27139872e-01 -9.62941685e-02 1.28621365e-02 -3.76798639e-01 -1.07388188e+00 -3.01896423e-02
22
+ 1.06002581e+00 2.45289368e-01 -8.14018723e-01 -2.52886589e-01 -8.47053782e-01 -2.24015870e-01 1.21886861e-01 -5.39274445e-01 -4.45443598e-01 -2.01565863e-01 -2.69484413e-01 -2.54990165e-01 -9.53773473e-02 -6.01860997e-02 -6.18429424e-01 -6.66805861e-02 5.21287044e-02 -1.98059309e-01 -7.33290638e-01 -9.51490823e-02 1.71268379e-02 -3.79709082e-01 -1.07828868e+00 -3.34391638e-02
23
+ 1.05681309e+00 2.43231675e-01 -8.13574536e-01 -2.53200749e-01 -8.48695397e-01 -2.23723588e-01 1.20783328e-01 -5.38943910e-01 -4.46125752e-01 -2.01256460e-01 -2.71931039e-01 -2.54597065e-01 -8.75301321e-02 -6.67016060e-02 -6.29131930e-01 -7.21218030e-02 5.54504446e-02 -2.00909919e-01 -7.38662631e-01 -9.42825470e-02 1.97960890e-02 -3.81493265e-01 -1.08105487e+00 -3.61028498e-02
24
+ 1.05361579e+00 2.41188415e-01 -8.13634416e-01 -2.53195731e-01 -8.50380729e-01 -2.22477319e-01 1.19341347e-01 -5.38765948e-01 -4.45764968e-01 -2.00185577e-01 -2.75380219e-01 -2.53504316e-01 -7.85087300e-02 -7.32299600e-02 -6.40821002e-01 -7.75930092e-02 5.87004769e-02 -2.03163545e-01 -7.43963449e-01 -9.28551503e-02 2.10805681e-02 -3.82444098e-01 -1.08262648e+00 -3.83120879e-02
25
+ 1.04710344e+00 2.36899264e-01 -8.13869556e-01 -2.53178927e-01 -8.51908760e-01 -2.21292108e-01 1.17790819e-01 -5.38257773e-01 -4.45146678e-01 -1.99133207e-01 -2.78451082e-01 -2.52970446e-01 -6.95662144e-02 -7.96324988e-02 -6.51461599e-01 -8.36859607e-02 6.19651613e-02 -2.05573765e-01 -7.49172725e-01 -9.12558683e-02 2.19690646e-02 -3.83353263e-01 -1.08391017e+00 -4.02904309e-02
26
+ 1.03778102e+00 2.30839851e-01 -8.14062779e-01 -2.53067146e-01 -8.53151880e-01 -2.20351693e-01 1.16228307e-01 -5.37817036e-01 -4.44524827e-01 -1.98200955e-01 -2.81178379e-01 -2.52995228e-01 -6.14340151e-02 -8.54852290e-02 -6.60763260e-01 -8.98108613e-02 6.48919888e-02 -2.07797768e-01 -7.54180889e-01 -8.93270559e-02 2.23792268e-02 -3.84321064e-01 -1.08533504e+00 -4.14452588e-02
27
+ 1.02518193e+00 2.22056964e-01 -8.14051229e-01 -2.52955534e-01 -8.54383953e-01 -2.19725860e-01 1.14676462e-01 -5.36713214e-01 -4.44305761e-01 -1.97273234e-01 -2.83421191e-01 -2.52830075e-01 -5.47416279e-02 -9.04663473e-02 -6.68450011e-01 -9.48949423e-02 6.74240504e-02 -2.09837882e-01 -7.58552958e-01 -8.72707969e-02 2.29984259e-02 -3.85334415e-01 -1.08694702e+00 -4.20962927e-02
28
+ 1.00942469e+00 2.11212378e-01 -8.14403019e-01 -2.52692147e-01 -8.55554589e-01 -2.19998501e-01 1.13675326e-01 -5.35702083e-01 -4.45076125e-01 -1.97038353e-01 -2.84684758e-01 -2.53052905e-01 -4.97768649e-02 -9.52389136e-02 -6.74487594e-01 -9.96906806e-02 6.94804575e-02 -2.12392689e-01 -7.62642424e-01 -8.51788748e-02 2.46491942e-02 -3.87376130e-01 -1.09018546e+00 -4.18129924e-02
29
+ 9.90304750e-01 1.98044489e-01 -8.15045219e-01 -2.52449282e-01 -8.56907456e-01 -2.20938488e-01 1.13134347e-01 -5.35331347e-01 -4.46894915e-01 -1.97685495e-01 -2.84972072e-01 -2.53529770e-01 -4.63912901e-02 -1.00070153e-01 -6.79222700e-01 -1.02633380e-01 7.16263496e-02 -2.15625474e-01 -7.66247680e-01 -8.36544952e-02 2.84055641e-02 -3.90769165e-01 -1.09487767e+00 -4.16501728e-02
30
+ 9.82136158e-01 1.91289508e-01 -8.15741997e-01 -2.52258737e-01 -8.57456128e-01 -2.20335018e-01 1.12716301e-01 -5.35699294e-01 -4.46061719e-01 -1.96380723e-01 -2.87579517e-01 -2.52527919e-01 -4.27899386e-02 -1.02436563e-01 -6.82715517e-01 -1.07012518e-01 7.26111748e-02 -2.16456562e-01 -7.67807018e-01 -8.37395920e-02 2.91711472e-02 -3.90999892e-01 -1.09628451e+00 -4.18768331e-02
31
+ 9.74769963e-01 1.85379623e-01 -8.16722147e-01 -2.52214399e-01 -8.58345962e-01 -2.19826169e-01 1.12537717e-01 -5.35273038e-01 -4.45610188e-01 -1.95640696e-01 -2.89541478e-01 -2.50376138e-01 -3.95497053e-02 -1.05040715e-01 -6.85406082e-01 -1.10211267e-01 7.38270757e-02 -2.17591446e-01 -7.68559161e-01 -8.46241631e-02 3.08834156e-02 -3.91872982e-01 -1.09709143e+00 -4.41845874e-02
32
+ 9.68226947e-01 1.79955696e-01 -8.17875093e-01 -2.52297873e-01 -8.59093257e-01 -2.19839610e-01 1.12784958e-01 -5.35849004e-01 -4.45498988e-01 -1.95311271e-01 -2.91077255e-01 -2.48704891e-01 -3.64512525e-02 -1.08106980e-01 -6.87848350e-01 -1.13903847e-01 7.52576036e-02 -2.19364579e-01 -7.69075257e-01 -8.69082839e-02 3.27411726e-02 -3.93782955e-01 -1.09732512e+00 -4.81662169e-02
33
+ 9.61650579e-01 1.74445836e-01 -8.18939586e-01 -2.52561147e-01 -8.59730955e-01 -2.20267135e-01 1.13388099e-01 -5.36272313e-01 -4.46103565e-01 -1.95375111e-01 -2.91655059e-01 -2.47764889e-01 -3.34645729e-02 -1.11670998e-01 -6.90253851e-01 -1.17855465e-01 7.69237133e-02 -2.21540222e-01 -7.69649994e-01 -9.04923979e-02 3.47567793e-02 -3.96253828e-01 -1.09736994e+00 -5.38577479e-02
34
+ 9.57250196e-01 1.70552148e-01 -8.19748599e-01 -2.52940961e-01 -8.60048425e-01 -2.20670359e-01 1.13879206e-01 -5.37027539e-01 -4.46398163e-01 -1.95403907e-01 -2.92110297e-01 -2.47292736e-01 -3.01943604e-02 -1.15262126e-01 -6.92684556e-01 -1.22033779e-01 7.87507157e-02 -2.23742627e-01 -7.70026346e-01 -9.48925275e-02 3.63499736e-02 -3.98741224e-01 -1.09728752e+00 -5.89746757e-02
35
+ 9.55254176e-01 1.68131797e-01 -8.19978646e-01 -2.53536177e-01 -8.59931193e-01 -2.21425068e-01 1.14419584e-01 -5.37208084e-01 -4.46169023e-01 -1.94898673e-01 -2.93090770e-01 -2.47077947e-01 -2.66060677e-02 -1.18426625e-01 -6.95468607e-01 -1.25920955e-01 8.06255216e-02 -2.25487529e-01 -7.70156875e-01 -9.99713062e-02 3.78078717e-02 -4.00539817e-01 -1.09732009e+00 -6.24129764e-02
36
+ 9.53480354e-01 1.66067169e-01 -8.20178173e-01 -2.54086915e-01 -8.59618976e-01 -2.22316423e-01 1.14923165e-01 -5.37344173e-01 -4.45945742e-01 -1.94369617e-01 -2.93602160e-01 -2.47767268e-01 -2.30882605e-02 -1.21412095e-01 -6.98526003e-01 -1.29151162e-01 8.25352441e-02 -2.27233744e-01 -7.70361879e-01 -1.05148946e-01 4.01594798e-02 -4.02266050e-01 -1.09929232e+00 -6.31407467e-02
37
+ 9.53612964e-01 1.65355221e-01 -8.20431783e-01 -2.54566981e-01 -8.59132498e-01 -2.23135712e-01 1.15378410e-01 -5.37182302e-01 -4.45372221e-01 -1.93499341e-01 -2.94155702e-01 -2.48906010e-01 -1.96824635e-02 -1.23787040e-01 -7.01719822e-01 -1.31374846e-01 8.41599357e-02 -2.28500096e-01 -7.70093101e-01 -1.10276447e-01 4.25343533e-02 -4.03196865e-01 -1.10146526e+00 -6.24082076e-02
38
+ 9.53670375e-01 1.64399978e-01 -8.21078539e-01 -2.54867642e-01 -8.58657665e-01 -2.24086512e-01 1.16058112e-01 -5.36816561e-01 -4.44989811e-01 -1.92603205e-01 -2.94144162e-01 -2.50856289e-01 -1.66785285e-02 -1.25797368e-01 -7.04816872e-01 -1.32672137e-01 8.54882327e-02 -2.29553998e-01 -7.69298410e-01 -1.15633988e-01 4.40047108e-02 -4.03694541e-01 -1.10167821e+00 -6.35443183e-02
39
+ 9.54351890e-01 1.63714809e-01 -8.21978398e-01 -2.55029027e-01 -8.58063259e-01 -2.24933030e-01 1.16877303e-01 -5.36392565e-01 -4.44711667e-01 -1.91600085e-01 -2.93505477e-01 -2.53585103e-01 -1.43171277e-02 -1.27279022e-01 -7.07278607e-01 -1.33373713e-01 8.59921240e-02 -2.30133557e-01 -7.67551342e-01 -1.20882420e-01 4.16464936e-02 -4.03419849e-01 -1.09532678e+00 -7.15445660e-02
40
+ 9.55874706e-01 1.64128727e-01 -8.23495005e-01 -2.54870453e-01 -8.57890266e-01 -2.25822713e-01 1.17768407e-01 -5.35639591e-01 -4.45015878e-01 -1.91060602e-01 -2.92030065e-01 -2.56681297e-01 -1.23157701e-02 -1.28803077e-01 -7.09631210e-01 -1.33234605e-01 8.63639849e-02 -2.30819877e-01 -7.65611517e-01 -1.26184863e-01 4.13018876e-02 -4.02952522e-01 -1.09080957e+00 -7.76943489e-02
41
+ 9.58575881e-01 1.64819871e-01 -8.24561250e-01 -2.54650681e-01 -8.57119053e-01 -2.26397437e-01 1.18847604e-01 -5.35322151e-01 -4.45519681e-01 -1.89828351e-01 -2.89863803e-01 -2.60753789e-01 -1.15912962e-02 -1.29170210e-01 -7.10132447e-01 -1.34072562e-01 8.48794806e-02 -2.30212294e-01 -7.61867670e-01 -1.32148934e-01 2.52987014e-02 -4.01079003e-01 -1.06292385e+00 -1.07980954e-01
42
+ 9.62927708e-01 1.66344709e-01 -8.24808449e-01 -2.54386711e-01 -8.55510342e-01 -2.26879039e-01 1.20062628e-01 -5.35353308e-01 -4.46155950e-01 -1.87731252e-01 -2.87247852e-01 -2.65596996e-01 -1.21230983e-02 -1.28210500e-01 -7.08817844e-01 -1.36075029e-01 8.15814682e-02 -2.28123737e-01 -7.56617415e-01 -1.38648743e-01 -7.50484019e-03 -3.97614304e-01 -1.01126677e+00 -1.59202699e-01
43
+ 9.93473167e-01 1.85033513e-01 -8.03259402e-01 -2.61059979e-01 -8.07911329e-01 -2.49110917e-01 1.30758528e-01 -5.33030818e-01 -4.19372898e-01 -1.73033654e-01 -3.18736281e-01 -2.61154095e-01 -1.88030289e-02 -1.20876549e-01 -7.11339736e-01 -1.44483675e-01 4.53987415e-02 -2.19891340e-01 -7.52176178e-01 -1.28617219e-01 4.70808163e-02 -4.58919873e-01 -1.23298503e+00 -1.44849118e-01
44
+ 1.01087965e+00 1.98279875e-01 -8.04169276e-01 -2.60366993e-01 -8.08633769e-01 -2.48162591e-01 1.30399169e-01 -5.32962041e-01 -4.19433257e-01 -1.72285554e-01 -3.16796989e-01 -2.64935637e-01 -1.78287474e-02 -1.20222029e-01 -7.10737715e-01 -1.45877199e-01 4.43740026e-02 -2.18379882e-01 -7.48187028e-01 -1.34946501e-01 4.07708343e-02 -4.53958196e-01 -1.21849314e+00 -1.30954455e-01
45
+ 1.02727391e+00 2.09775648e-01 -8.04645487e-01 -2.59537786e-01 -8.09720776e-01 -2.47656676e-01 1.30296661e-01 -5.32394106e-01 -4.20159360e-01 -1.71711641e-01 -3.15161083e-01 -2.68343634e-01 -1.72463897e-02 -1.19201794e-01 -7.10188675e-01 -1.47219485e-01 4.37375735e-02 -2.16839745e-01 -7.44955314e-01 -1.40860498e-01 3.59584446e-02 -4.49712844e-01 -1.20709284e+00 -1.15405757e-01
46
+ 1.04290990e+00 2.22173766e-01 -8.05238730e-01 -2.58841570e-01 -8.10829535e-01 -2.47934731e-01 1.30135026e-01 -5.32043015e-01 -4.21529834e-01 -1.72081161e-01 -3.12969319e-01 -2.72087302e-01 -1.66754137e-02 -1.19261485e-01 -7.09847926e-01 -1.48856812e-01 4.37066509e-02 -2.16326806e-01 -7.42835896e-01 -1.46510530e-01 3.26580640e-02 -4.47620924e-01 -1.19971751e+00 -9.98448428e-02
47
+ 1.05956870e+00 2.34412606e-01 -8.05560313e-01 -2.58236242e-01 -8.11693613e-01 -2.47659077e-01 1.29937375e-01 -5.30787623e-01 -4.21859559e-01 -1.71864551e-01 -3.12449426e-01 -2.74408361e-01 -1.57043787e-02 -1.18311559e-01 -7.09877441e-01 -1.50279419e-01 4.38345672e-02 -2.15072445e-01 -7.41113603e-01 -1.50918742e-01 3.10278441e-02 -4.45640141e-01 -1.19600397e+00 -8.82161277e-02
48
+ 1.07250934e+00 2.44501115e-01 -8.06203068e-01 -2.57849844e-01 -8.12474329e-01 -2.48105995e-01 1.30272983e-01 -5.29475504e-01 -4.22682592e-01 -1.72318965e-01 -3.11811519e-01 -2.76259276e-01 -1.47256513e-02 -1.17996028e-01 -7.10412976e-01 -1.51684652e-01 4.45029882e-02 -2.14861895e-01 -7.40358172e-01 -1.54755326e-01 3.08631507e-02 -4.45897858e-01 -1.19491299e+00 -8.06658930e-02
49
+ 1.08680430e+00 2.54555733e-01 -8.06968485e-01 -2.57506884e-01 -8.12852666e-01 -2.48240304e-01 1.30365550e-01 -5.28433631e-01 -4.22118192e-01 -1.72449976e-01 -3.12787300e-01 -2.77002252e-01 -1.32188586e-02 -1.17218345e-01 -7.11485425e-01 -1.53348113e-01 4.45995365e-02 -2.14232138e-01 -7.39140992e-01 -1.56752628e-01 2.97434872e-02 -4.46179096e-01 -1.19242213e+00 -7.69273228e-02
50
+ 1.09925657e+00 2.63198126e-01 -8.08277678e-01 -2.57316686e-01 -8.13284025e-01 -2.47912469e-01 1.30592533e-01 -5.27075715e-01 -4.21552631e-01 -1.72684834e-01 -3.13136795e-01 -2.77445135e-01 -1.21014071e-02 -1.16274305e-01 -7.11710358e-01 -1.54904228e-01 4.41930921e-02 -2.13753040e-01 -7.37137252e-01 -1.57909539e-01 2.77257239e-02 -4.46646347e-01 -1.18772308e+00 -7.71680531e-02
51
+ 1.10876869e+00 2.68384004e-01 -8.08797819e-01 -2.57543191e-01 -8.13234034e-01 -2.47553630e-01 1.30802140e-01 -5.26263355e-01 -4.21046052e-01 -1.72954538e-01 -3.13477848e-01 -2.77440346e-01 -1.22721176e-02 -1.14995327e-01 -7.10433570e-01 -1.56044467e-01 4.23861086e-02 -2.13244812e-01 -7.33740329e-01 -1.57668729e-01 2.40397391e-02 -4.47017402e-01 -1.17957700e+00 -7.94506788e-02
52
+ 1.11472654e+00 2.71315781e-01 -8.09492120e-01 -2.57837840e-01 -8.13227758e-01 -2.47377137e-01 1.31432615e-01 -5.25365753e-01 -4.21677588e-01 -1.73504747e-01 -3.12242769e-01 -2.78082358e-01 -1.43012029e-02 -1.13483954e-01 -7.07170490e-01 -1.56460161e-01 3.91369885e-02 -2.13010349e-01 -7.28977142e-01 -1.56380318e-01 1.85159877e-02 -4.47561473e-01 -1.16823373e+00 -8.24211745e-02
53
+ 1.12095586e+00 2.73627724e-01 -8.09522153e-01 -2.58344954e-01 -8.12926443e-01 -2.46851766e-01 1.32034253e-01 -5.25056671e-01 -4.22506789e-01 -1.73618930e-01 -3.10589035e-01 -2.78615506e-01 -1.82715934e-02 -1.10913960e-01 -7.01389446e-01 -1.56071410e-01 3.40750966e-02 -2.12153708e-01 -7.22228436e-01 -1.54392134e-01 9.65153093e-03 -4.47197562e-01 -1.15224250e+00 -8.40488954e-02
54
+ 1.12587898e+00 2.74827865e-01 -8.09005296e-01 -2.59045856e-01 -8.12254521e-01 -2.46571376e-01 1.32793452e-01 -5.25066160e-01 -4.23672572e-01 -1.73591291e-01 -3.08578452e-01 -2.78986243e-01 -2.41118178e-02 -1.07615607e-01 -6.93242522e-01 -1.54794410e-01 2.79777635e-02 -2.11083124e-01 -7.14365906e-01 -1.52402734e-01 -1.31448557e-03 -4.46526765e-01 -1.13368519e+00 -8.37706391e-02
55
+ 1.13028762e+00 2.75713794e-01 -8.08216337e-01 -2.59785767e-01 -8.11269648e-01 -2.46531484e-01 1.33731931e-01 -5.25361603e-01 -4.25256543e-01 -1.73262206e-01 -3.06171528e-01 -2.79059460e-01 -3.13941678e-02 -1.03618567e-01 -6.83501625e-01 -1.52530786e-01 2.16694242e-02 -2.09728682e-01 -7.06489498e-01 -1.50798095e-01 -1.36626275e-02 -4.45825102e-01 -1.11418704e+00 -8.15978140e-02
56
+ 1.13581418e+00 2.76781172e-01 -8.06477125e-01 -2.60692905e-01 -8.09527924e-01 -2.46619846e-01 1.34586865e-01 -5.26396038e-01 -4.26608350e-01 -1.72353743e-01 -3.04261242e-01 -2.78652149e-01 -3.94417530e-02 -9.89325908e-02 -6.72919093e-01 -1.50051746e-01 1.56291439e-02 -2.07938352e-01 -6.99298458e-01 -1.50337654e-01 -2.73055500e-02 -4.44817228e-01 -1.09442455e+00 -7.82623969e-02
57
+ 1.14029746e+00 2.77955884e-01 -8.05058817e-01 -2.61436281e-01 -8.07545401e-01 -2.47231112e-01 1.35698498e-01 -5.27348718e-01 -4.28106369e-01 -1.71453964e-01 -3.02492796e-01 -2.77731716e-01 -4.72794491e-02 -9.44289186e-02 -6.63251994e-01 -1.47103327e-01 1.13359821e-02 -2.06416529e-01 -6.94621108e-01 -1.51137744e-01 -3.93507071e-02 -4.44426705e-01 -1.07821645e+00 -7.51278619e-02
58
+ 1.14515543e+00 2.79696830e-01 -8.03827414e-01 -2.62051949e-01 -8.05374942e-01 -2.47897096e-01 1.36629567e-01 -5.28508208e-01 -4.29181692e-01 -1.70441900e-01 -3.01213997e-01 -2.76323958e-01 -5.39773748e-02 -9.02577090e-02 -6.55425250e-01 -1.44133183e-01 9.00303331e-03 -2.05027368e-01 -6.92482608e-01 -1.53111384e-01 -4.89948253e-02 -4.44314596e-01 -1.06660009e+00 -7.36643024e-02
59
+ 1.14976466e+00 2.81523188e-01 -8.02853800e-01 -2.62462806e-01 -8.03040609e-01 -2.48793934e-01 1.37532781e-01 -5.29757672e-01 -4.30149141e-01 -1.69512303e-01 -3.00109026e-01 -2.74794687e-01 -5.94069377e-02 -8.68288245e-02 -6.49928588e-01 -1.41137250e-01 8.28348416e-03 -2.03912728e-01 -6.92717912e-01 -1.55863122e-01 -5.51415774e-02 -4.44534408e-01 -1.06166190e+00 -7.49225504e-02
60
+ 1.15338100e+00 2.83330238e-01 -8.02107795e-01 -2.62768537e-01 -8.00989929e-01 -2.49691492e-01 1.38286034e-01 -5.30757447e-01 -4.31220450e-01 -1.68863142e-01 -2.98787332e-01 -2.73611353e-01 -6.34018287e-02 -8.44006304e-02 -6.46855740e-01 -1.38212905e-01 8.84282053e-03 -2.03256600e-01 -6.94658360e-01 -1.58962671e-01 -5.67903864e-02 -4.45157691e-01 -1.06436961e+00 -7.95025675e-02
61
+ 1.15669489e+00 2.85219008e-01 -8.01418141e-01 -2.63037338e-01 -7.99067907e-01 -2.50516420e-01 1.38793049e-01 -5.31857178e-01 -4.32262781e-01 -1.68493150e-01 -2.97218998e-01 -2.72770143e-01 -6.62145035e-02 -8.29548389e-02 -6.45568797e-01 -1.35152060e-01 9.76149250e-03 -2.02965693e-01 -6.97252169e-01 -1.61384141e-01 -5.43589103e-02 -4.45873888e-01 -1.07394473e+00 -8.76470308e-02
62
+ 1.15981652e+00 2.87360344e-01 -8.00546898e-01 -2.63331439e-01 -7.97501223e-01 -2.51105148e-01 1.39102158e-01 -5.32876798e-01 -4.33273907e-01 -1.68346851e-01 -2.95535839e-01 -2.72500493e-01 -6.81390961e-02 -8.23061093e-02 -6.45370737e-01 -1.32270556e-01 1.05023189e-02 -2.02884467e-01 -6.99752015e-01 -1.62973047e-01 -4.87227321e-02 -4.46707353e-01 -1.08864697e+00 -9.82555185e-02
63
+ 1.16208439e+00 2.89014054e-01 -7.99376802e-01 -2.63729573e-01 -7.96231818e-01 -2.51717428e-01 1.39296077e-01 -5.33775400e-01 -4.34534973e-01 -1.68548031e-01 -2.93514561e-01 -2.72811779e-01 -6.98156208e-02 -8.24125898e-02 -6.45277267e-01 -1.29487550e-01 1.05405790e-02 -2.03151113e-01 -7.01531497e-01 -1.63436214e-01 -4.10490862e-02 -4.47644062e-01 -1.10587994e+00 -1.10320436e-01
64
+ 1.16391865e+00 2.90625712e-01 -7.98003098e-01 -2.64184849e-01 -7.95328572e-01 -2.52266074e-01 1.39357170e-01 -5.34492570e-01 -4.35961290e-01 -1.69006156e-01 -2.91374174e-01 -2.73440717e-01 -7.14658131e-02 -8.29982076e-02 -6.44801039e-01 -1.26929241e-01 9.78406436e-03 -2.03653720e-01 -7.02310531e-01 -1.63006032e-01 -3.27698315e-02 -4.48631626e-01 -1.12278165e+00 -1.22128813e-01
65
+ 1.16565089e+00 2.92073724e-01 -7.96619239e-01 -2.64612338e-01 -7.94734599e-01 -2.52760824e-01 1.39383802e-01 -5.34945023e-01 -4.37423354e-01 -1.69505926e-01 -2.89368176e-01 -2.74098956e-01 -7.32126672e-02 -8.37106852e-02 -6.43692360e-01 -1.24759576e-01 8.23211271e-03 -2.04217712e-01 -7.01906303e-01 -1.62114232e-01 -2.53857224e-02 -4.49526242e-01 -1.13698644e+00 -1.31839648e-01
66
+ 1.16730475e+00 2.93474658e-01 -7.95501172e-01 -2.64875223e-01 -7.94542496e-01 -2.53174336e-01 1.39350471e-01 -5.35148824e-01 -4.39004523e-01 -1.70096125e-01 -2.87502031e-01 -2.74539649e-01 -7.51189744e-02 -8.44936022e-02 -6.42031101e-01 -1.23026843e-01 6.03914615e-03 -2.04890342e-01 -7.00366304e-01 -1.61226708e-01 -1.95354175e-02 -4.50366137e-01 -1.14735443e+00 -1.38834936e-01
67
+ 1.16897333e+00 2.94659778e-01 -7.94885342e-01 -2.64864836e-01 -7.94657351e-01 -2.53612677e-01 1.39401658e-01 -5.35046574e-01 -4.40707553e-01 -1.70625873e-01 -2.85879166e-01 -2.74606205e-01 -7.72191965e-02 -8.51784069e-02 -6.40004805e-01 -1.21838341e-01 3.23964031e-03 -2.05553648e-01 -6.97743546e-01 -1.60682377e-01 -1.56867688e-02 -4.51080140e-01 -1.15382992e+00 -1.43103672e-01
68
+ 1.17054267e+00 2.95660083e-01 -7.94831054e-01 -2.64539200e-01 -7.95031421e-01 -2.54124698e-01 1.39596273e-01 -5.34656791e-01 -4.42636740e-01 -1.71059872e-01 -2.84443693e-01 -2.74179363e-01 -7.95657494e-02 -8.57608736e-02 -6.37806944e-01 -1.21109413e-01 -1.01562244e-04 -2.06190961e-01 -6.94209081e-01 -1.60547731e-01 -1.36581713e-02 -4.51738693e-01 -1.15741746e+00 -1.45448740e-01
69
+ 1.17210318e+00 2.96582257e-01 -7.95146810e-01 -2.63972043e-01 -7.95471056e-01 -2.54774878e-01 1.39964442e-01 -5.34055039e-01 -4.44702071e-01 -1.71322102e-01 -2.83240764e-01 -2.73270476e-01 -8.21424280e-02 -8.62198438e-02 -6.35555948e-01 -1.20740347e-01 -3.93123628e-03 -2.06710216e-01 -6.89988094e-01 -1.60674979e-01 -1.30747472e-02 -4.52305600e-01 -1.15948871e+00 -1.47018996e-01
70
+ 1.17351259e+00 2.97467068e-01 -7.95651571e-01 -2.63266357e-01 -7.95879583e-01 -2.55563962e-01 1.40517401e-01 -5.33312679e-01 -4.46907022e-01 -1.71425013e-01 -2.82180080e-01 -2.71951810e-01 -8.49346074e-02 -8.66270455e-02 -6.33297987e-01 -1.20567431e-01 -8.02895779e-03 -2.07111446e-01 -6.85558377e-01 -1.60836146e-01 -1.32605485e-02 -4.52825455e-01 -1.16136109e+00 -1.48768168e-01
71
+ 1.17488057e+00 2.98319217e-01 -7.95952770e-01 -2.62610080e-01 -7.96084094e-01 -2.56428286e-01 1.41168773e-01 -5.32587711e-01 -4.49077282e-01 -1.71345432e-01 -2.81240137e-01 -2.70372720e-01 -8.78516616e-02 -8.69830281e-02 -6.30958905e-01 -1.20442114e-01 -1.21169132e-02 -2.07339600e-01 -6.81333171e-01 -1.60823646e-01 -1.38357985e-02 -4.53199176e-01 -1.16349648e+00 -1.51122111e-01
72
+ 1.17623946e+00 2.99192164e-01 -7.95836847e-01 -2.62157826e-01 -7.96041846e-01 -2.57240118e-01 1.41809893e-01 -5.31997196e-01 -4.51062964e-01 -1.71124621e-01 -2.80362909e-01 -2.68821322e-01 -9.07111664e-02 -8.73131690e-02 -6.28571012e-01 -1.20268594e-01 -1.57919623e-02 -2.07397135e-01 -6.77832193e-01 -1.60577894e-01 -1.45487734e-02 -4.53335392e-01 -1.16562639e+00 -1.53593652e-01
73
+ 1.17752970e+00 3.00136377e-01 -7.95266311e-01 -2.61980768e-01 -7.95736726e-01 -2.57946693e-01 1.42369722e-01 -5.31604561e-01 -4.52754298e-01 -1.70845447e-01 -2.79456083e-01 -2.67524405e-01 -9.33361278e-02 -8.76450888e-02 -6.26191689e-01 -1.19948363e-01 -1.87036401e-02 -2.07333254e-01 -6.75388995e-01 -1.60123854e-01 -1.53893825e-02 -4.53119892e-01 -1.16681907e+00 -1.55161759e-01
74
+ 1.17876569e+00 3.01023974e-01 -7.94420796e-01 -2.62064011e-01 -7.95305119e-01 -2.58401952e-01 1.42769537e-01 -5.31464644e-01 -4.54097053e-01 -1.70589567e-01 -2.78402159e-01 -2.66736952e-01 -9.55029320e-02 -8.79733314e-02 -6.23977253e-01 -1.19464294e-01 -2.05669476e-02 -2.07206823e-01 -6.74150598e-01 -1.59597761e-01 -1.64236680e-02 -4.52468819e-01 -1.16607242e+00 -1.54670027e-01
75
+ 1.17992919e+00 3.02004523e-01 -7.93472629e-01 -2.62348482e-01 -7.94784973e-01 -2.58615645e-01 1.43021150e-01 -5.31602014e-01 -4.55116549e-01 -1.70398378e-01 -2.77168452e-01 -2.66581123e-01 -9.71482895e-02 -8.82670540e-02 -6.22068392e-01 -1.18850749e-01 -2.14316205e-02 -2.07058077e-01 -6.73986278e-01 -1.59094333e-01 -1.78696437e-02 -4.51351517e-01 -1.16277438e+00 -1.51317392e-01
76
+ 1.18096949e+00 3.02889414e-01 -7.92892245e-01 -2.62679785e-01 -7.94375443e-01 -2.58572258e-01 1.43204266e-01 -5.31912520e-01 -4.55841137e-01 -1.70340194e-01 -2.75770512e-01 -2.67037293e-01 -9.81686739e-02 -8.85296904e-02 -6.20627763e-01 -1.18136518e-01 -2.13201612e-02 -2.06956712e-01 -6.74701467e-01 -1.58664014e-01 -1.95697705e-02 -4.49861744e-01 -1.15713170e+00 -1.45148971e-01
77
+ 1.18181663e+00 3.03674541e-01 -7.92817581e-01 -2.62978035e-01 -7.94096042e-01 -2.58348704e-01 1.43398880e-01 -5.32351778e-01 -4.56321659e-01 -1.70401612e-01 -2.74326112e-01 -2.67924124e-01 -9.86287173e-02 -8.87365129e-02 -6.19679896e-01 -1.17405066e-01 -2.04950895e-02 -2.06910253e-01 -6.75985292e-01 -1.58285996e-01 -2.13798341e-02 -4.48146382e-01 -1.14998353e+00 -1.36983733e-01
78
+ 1.18251575e+00 3.04497853e-01 -7.93260627e-01 -2.63195615e-01 -7.93942177e-01 -2.58006477e-01 1.43646516e-01 -5.32893339e-01 -4.56585949e-01 -1.70541615e-01 -2.72975470e-01 -2.69000115e-01 -9.86314401e-02 -8.88766367e-02 -6.19144828e-01 -1.16734315e-01 -1.92076742e-02 -2.06905826e-01 -6.77588846e-01 -1.57907883e-01 -2.30425438e-02 -4.46410165e-01 -1.14256570e+00 -1.28213327e-01
79
+ 1.18289432e+00 3.04970596e-01 -7.94166165e-01 -2.63316337e-01 -7.93883234e-01 -2.57686871e-01 1.44029776e-01 -5.33430640e-01 -4.56670441e-01 -1.70747138e-01 -2.71911606e-01 -2.69965673e-01 -9.83545940e-02 -8.89848314e-02 -6.18850945e-01 -1.16198883e-01 -1.76427170e-02 -2.06948284e-01 -6.79366586e-01 -1.57515559e-01 -2.42133779e-02 -4.44890710e-01 -1.13613228e+00 -1.20272799e-01
80
+ 1.18303380e+00 3.05324169e-01 -7.95267730e-01 -2.63384663e-01 -7.93839253e-01 -2.57406564e-01 1.44488222e-01 -5.33955305e-01 -4.56503504e-01 -1.70931417e-01 -2.71312404e-01 -2.70586354e-01 -9.78944874e-02 -8.90400547e-02 -6.18655873e-01 -1.15835284e-01 -1.59494947e-02 -2.06976711e-01 -6.81210291e-01 -1.57167919e-01 -2.48877001e-02 -4.43723342e-01 -1.13121015e+00 -1.14217931e-01
81
+ 1.18299855e+00 3.05402757e-01 -7.96192480e-01 -2.63477587e-01 -7.93709286e-01 -2.57179040e-01 1.44951833e-01 -5.34507958e-01 -4.56100542e-01 -1.71007352e-01 -2.71226661e-01 -2.70782182e-01 -9.74493058e-02 -8.89906745e-02 -6.18309431e-01 -1.15722182e-01 -1.43521189e-02 -2.06902304e-01 -6.82890160e-01 -1.57005732e-01 -2.54315878e-02 -4.42889598e-01 -1.12736507e+00 -1.10474072e-01
82
+ 1.18294258e+00 3.05252865e-01 -7.96858291e-01 -2.63590800e-01 -7.93511292e-01 -2.57006692e-01 1.45390619e-01 -5.34995444e-01 -4.55490055e-01 -1.70938959e-01 -2.71622413e-01 -2.70556260e-01 -9.71480829e-02 -8.87978266e-02 -6.17670457e-01 -1.15849509e-01 -1.30254088e-02 -2.06678399e-01 -6.84164392e-01 -1.57164730e-01 -2.63230125e-02 -4.42313210e-01 -1.12362314e+00 -1.08812779e-01
83
+ 1.18276495e+00 3.04886170e-01 -7.97074407e-01 -2.63748062e-01 -7.93292861e-01 -2.56821031e-01 1.45700075e-01 -5.35550642e-01 -4.54852130e-01 -1.70753460e-01 -2.72263312e-01 -2.70083901e-01 -9.71443093e-02 -8.84496437e-02 -6.16634812e-01 -1.16202829e-01 -1.21464330e-02 -2.06325593e-01 -6.84794203e-01 -1.57758500e-01 -2.78845487e-02 -4.41915805e-01 -1.11913226e+00 -1.08647306e-01
84
+ 1.18259591e+00 3.04332445e-01 -7.96863354e-01 -2.63930035e-01 -7.93036533e-01 -2.56679151e-01 1.45899674e-01 -5.36122948e-01 -4.54278908e-01 -1.70455183e-01 -2.73025723e-01 -2.69462987e-01 -9.75494985e-02 -8.78956937e-02 -6.15175216e-01 -1.16686265e-01 -1.18944063e-02 -2.05835448e-01 -6.84598482e-01 -1.58710314e-01 -3.02225383e-02 -4.41540922e-01 -1.11365384e+00 -1.09212664e-01
85
+ 1.18237365e+00 3.03736853e-01 -7.96497566e-01 -2.64053398e-01 -7.92919969e-01 -2.56550454e-01 1.45986369e-01 -5.36667614e-01 -4.53929775e-01 -1.70183722e-01 -2.73688508e-01 -2.68790968e-01 -9.83163592e-02 -8.72092153e-02 -6.13451311e-01 -1.17098108e-01 -1.21169827e-02 -2.05343558e-01 -6.83740290e-01 -1.59870840e-01 -3.26029989e-02 -4.41213638e-01 -1.10828400e+00 -1.09892963e-01
86
+ 1.18205479e+00 3.03192099e-01 -7.96150156e-01 -2.64088794e-01 -7.92989143e-01 -2.56417189e-01 1.45937414e-01 -5.37175838e-01 -4.53793837e-01 -1.70017826e-01 -2.74215840e-01 -2.68051390e-01 -9.93147102e-02 -8.64356683e-02 -6.11650266e-01 -1.17230038e-01 -1.25446782e-02 -2.04933328e-01 -6.82572746e-01 -1.61018752e-01 -3.40726563e-02 -4.40979765e-01 -1.10484173e+00 -1.10281404e-01
87
+ 1.18159032e+00 3.02716902e-01 -7.96055742e-01 -2.64002047e-01 -7.93285229e-01 -2.56257852e-01 1.45756775e-01 -5.37612063e-01 -4.53750780e-01 -1.70018113e-01 -2.74697864e-01 -2.67185798e-01 -1.00344403e-01 -8.56429469e-02 -6.09990807e-01 -1.16926404e-01 -1.27807327e-02 -2.04682460e-01 -6.81600042e-01 -1.61938495e-01 -3.36796066e-02 -4.40911751e-01 -1.10517471e+00 -1.10147846e-01
88
+ 1.18077148e+00 3.02358733e-01 -7.96367957e-01 -2.63786547e-01 -7.93829221e-01 -2.56039673e-01 1.45422320e-01 -5.37909808e-01 -4.53655889e-01 -1.70237296e-01 -2.75251672e-01 -2.66107665e-01 -1.01152583e-01 -8.49148009e-02 -6.08725501e-01 -1.15959876e-01 -1.23250009e-02 -2.04648909e-01 -6.81393808e-01 -1.62559528e-01 -3.08686150e-02 -4.41145785e-01 -1.11041694e+00 -1.09367349e-01
89
+ 1.17964905e+00 3.02040622e-01 -7.97028334e-01 -2.63512378e-01 -7.94501774e-01 -2.55670974e-01 1.44902680e-01 -5.38041419e-01 -4.53223164e-01 -1.70548801e-01 -2.76047700e-01 -2.64847634e-01 -1.01539247e-01 -8.41872464e-02 -6.07902871e-01 -1.14420129e-01 -1.09308406e-02 -2.04700331e-01 -6.82224805e-01 -1.62814812e-01 -2.61416982e-02 -4.41588879e-01 -1.11989724e+00 -1.07868500e-01
90
+ 1.17830223e+00 3.01712548e-01 -7.97886790e-01 -2.63251608e-01 -7.95207166e-01 -2.55132985e-01 1.44184764e-01 -5.38088085e-01 -4.52296620e-01 -1.70880990e-01 -2.77230164e-01 -2.63430690e-01 -1.01432993e-01 -8.34418009e-02 -6.07513795e-01 -1.12371745e-01 -8.54898242e-03 -2.04750380e-01 -6.84094838e-01 -1.62722978e-01 -2.07990180e-02 -4.42148947e-01 -1.13133981e+00 -1.05341894e-01
91
+ 1.17645524e+00 3.01120853e-01 -7.98745006e-01 -2.63090793e-01 -7.95827306e-01 -2.54473214e-01 1.43358203e-01 -5.38037028e-01 -4.50957388e-01 -1.71157582e-01 -2.78629964e-01 -2.62103524e-01 -1.00905020e-01 -8.26435755e-02 -6.07450778e-01 -1.10057512e-01 -5.34777207e-03 -2.04668404e-01 -6.86811200e-01 -1.62380684e-01 -1.62817549e-02 -4.42770484e-01 -1.14208559e+00 -1.01675006e-01
92
+ 1.17425009e+00 3.00354245e-01 -7.99433764e-01 -2.63035243e-01 -7.96411072e-01 -2.53686227e-01 1.42391377e-01 -5.37915506e-01 -4.49350340e-01 -1.71363821e-01 -2.80112343e-01 -2.61015857e-01 -1.00014944e-01 -8.17927875e-02 -6.07648062e-01 -1.07752044e-01 -1.56745603e-03 -2.04446694e-01 -6.90083386e-01 -1.61802174e-01 -1.39575142e-02 -4.43339017e-01 -1.14942328e+00 -9.66932131e-02
93
+ 1.17241446e+00 2.99599957e-01 -7.99980754e-01 -2.63113380e-01 -7.96987120e-01 -2.52687446e-01 1.41424637e-01 -5.37638035e-01 -4.47452336e-01 -1.71395271e-01 -2.81659334e-01 -2.60151168e-01 -9.86973172e-02 -8.07704400e-02 -6.08101572e-01 -1.05709113e-01 2.52648415e-03 -2.03928339e-01 -6.93558619e-01 -1.60932247e-01 -1.43427060e-02 -4.43672823e-01 -1.15197021e+00 -9.07720818e-02
94
+ 1.17053799e+00 2.98949372e-01 -8.00343763e-01 -2.63306729e-01 -7.97633683e-01 -2.51645297e-01 1.40464584e-01 -5.37244853e-01 -4.45686594e-01 -1.71457383e-01 -2.82868199e-01 -2.59550905e-01 -9.70836537e-02 -7.97840784e-02 -6.08790065e-01 -1.04042806e-01 6.62037267e-03 -2.03356228e-01 -6.96961417e-01 -1.59571480e-01 -1.65567369e-02 -4.44063475e-01 -1.15062277e+00 -8.50982748e-02
95
+ 1.16872378e+00 2.98251569e-01 -8.00664305e-01 -2.63517726e-01 -7.98409807e-01 -2.50654585e-01 1.39586277e-01 -5.36687872e-01 -4.44253698e-01 -1.71603247e-01 -2.83691722e-01 -2.59246376e-01 -9.52460085e-02 -7.89227234e-02 -6.09777924e-01 -1.02932676e-01 1.02735541e-02 -2.02871577e-01 -6.99975957e-01 -1.57560722e-01 -1.89462201e-02 -4.44682941e-01 -1.14800799e+00 -8.12519162e-02
96
+ 1.16673687e+00 2.97519457e-01 -8.01106662e-01 -2.63675377e-01 -7.99378836e-01 -2.49826091e-01 1.38821996e-01 -5.35904485e-01 -4.43305757e-01 -1.71937716e-01 -2.84108703e-01 -2.58913792e-01 -9.32808284e-02 -7.83211709e-02 -6.11037376e-01 -1.02338120e-01 1.29962533e-02 -2.02664933e-01 -7.02091878e-01 -1.54636849e-01 -1.94731519e-02 -4.45793495e-01 -1.14758270e+00 -8.02623378e-02
97
+ 1.16481352e+00 2.96805083e-01 -8.01806821e-01 -2.63707563e-01 -8.00608127e-01 -2.48995383e-01 1.38086740e-01 -5.34961663e-01 -4.42860508e-01 -1.72395869e-01 -2.84080926e-01 -2.58554473e-01 -9.12595359e-02 -7.79714795e-02 -6.12387609e-01 -1.02337856e-01 1.42575539e-02 -2.02749709e-01 -7.02601239e-01 -1.50730397e-01 -1.65491495e-02 -4.47338885e-01 -1.15214738e+00 -8.32587097e-02
98
+ 1.16297955e+00 2.96112888e-01 -8.02988861e-01 -2.63491748e-01 -8.02013985e-01 -2.48242656e-01 1.37458656e-01 -5.33777833e-01 -4.42825352e-01 -1.72830325e-01 -2.83886832e-01 -2.57968204e-01 -8.94061297e-02 -7.77485430e-02 -6.13630604e-01 -1.02864704e-01 1.35006039e-02 -2.02970681e-01 -7.00904516e-01 -1.45965284e-01 -9.79171272e-03 -4.49172058e-01 -1.16238086e+00 -9.00755191e-02
99
+ 1.16062819e+00 2.95197367e-01 -8.04137164e-01 -2.63192975e-01 -8.03210245e-01 -2.47792655e-01 1.36861054e-01 -5.32565785e-01 -4.43373710e-01 -1.73056481e-01 -2.83326933e-01 -2.57220576e-01 -8.82498025e-02 -7.76450251e-02 -6.14180131e-01 -1.03843994e-01 1.02205972e-02 -2.03344981e-01 -6.96623710e-01 -1.40014932e-01 -2.66264358e-04 -4.50865573e-01 -1.17694596e+00 -9.96908232e-02
100
+ 1.15811091e+00 2.94107819e-01 -8.05442030e-01 -2.62626154e-01 -8.04215593e-01 -2.47622344e-01 1.36503612e-01 -5.31287070e-01 -4.44519681e-01 -1.72975029e-01 -2.82569073e-01 -2.56290979e-01 -8.80146200e-02 -7.74561117e-02 -6.13923208e-01 -1.05106727e-01 4.93552819e-03 -2.03696561e-01 -6.90353333e-01 -1.33866126e-01 1.02388184e-02 -4.52091125e-01 -1.19263903e+00 -1.10236765e-01
101
+ 1.15557712e+00 2.93023335e-01 -8.06523217e-01 -2.61989809e-01 -8.04834880e-01 -2.47735224e-01 1.36205875e-01 -5.30275102e-01 -4.46055264e-01 -1.72540699e-01 -2.81744413e-01 -2.54996004e-01 -8.86201220e-02 -7.70916007e-02 -6.12965033e-01 -1.06260618e-01 -9.88495775e-04 -2.03784517e-01 -6.83936842e-01 -1.27727500e-01 1.98378425e-02 -4.52344195e-01 -1.20604716e+00 -1.19479238e-01
102
+ 1.15353382e+00 2.92190334e-01 -8.07374459e-01 -2.61287323e-01 -8.05116125e-01 -2.48145377e-01 1.36044718e-01 -5.29402327e-01 -4.47820822e-01 -1.71761433e-01 -2.81011172e-01 -2.53168385e-01 -8.98409663e-02 -7.65248818e-02 -6.11620107e-01 -1.06878623e-01 -5.41308570e-03 -2.03638102e-01 -6.79894788e-01 -1.22551795e-01 2.70705123e-02 -4.51447347e-01 -1.21416278e+00 -1.25372160e-01
103
+ 1.15172711e+00 2.91969247e-01 -8.07607168e-01 -2.60561599e-01 -8.05262274e-01 -2.48653786e-01 1.35678475e-01 -5.28691047e-01 -4.49755484e-01 -1.70823022e-01 -2.80820011e-01 -2.50250225e-01 -9.12634826e-02 -7.58680123e-02 -6.10881403e-01 -1.06238764e-01 -6.04524460e-03 -2.03395369e-01 -6.81551964e-01 -1.18513378e-01 3.13631592e-02 -4.49744490e-01 -1.21616234e+00 -1.26587117e-01
104
+ 1.14993963e+00 2.92082699e-01 -8.07265674e-01 -2.60038271e-01 -8.04975627e-01 -2.49543712e-01 1.35393072e-01 -5.28504578e-01 -4.51575164e-01 -1.70042139e-01 -2.80923891e-01 -2.46925770e-01 -9.25173004e-02 -7.53833950e-02 -6.10875418e-01 -1.04452026e-01 -1.51825160e-03 -2.03240934e-01 -6.90310924e-01 -1.16668594e-01 3.31210398e-02 -4.47737327e-01 -1.21288109e+00 -1.23762080e-01
105
+ 1.14802186e+00 2.92475567e-01 -8.06025982e-01 -2.59759434e-01 -8.04306985e-01 -2.50478985e-01 1.34985969e-01 -5.28621554e-01 -4.53038470e-01 -1.69278528e-01 -2.81885452e-01 -2.42641235e-01 -9.33661752e-02 -7.49385424e-02 -6.12122670e-01 -1.01158079e-01 7.99136443e-03 -2.03127076e-01 -7.05731185e-01 -1.17272918e-01 3.29876313e-02 -4.45898741e-01 -1.20658497e+00 -1.18602376e-01
106
+ 1.14746757e+00 2.94180388e-01 -8.03732058e-01 -2.59839788e-01 -8.03076208e-01 -2.51164927e-01 1.34236183e-01 -5.29495949e-01 -4.53464756e-01 -1.68501634e-01 -2.84062695e-01 -2.37638926e-01 -9.35184497e-02 -7.44962987e-02 -6.14469573e-01 -9.67452141e-02 2.07270732e-02 -2.02901931e-01 -7.25048917e-01 -1.20158268e-01 3.19754403e-02 -4.44523316e-01 -1.20055070e+00 -1.12969008e-01
107
+ 1.14680221e+00 2.95696500e-01 -8.00328950e-01 -2.60420017e-01 -8.01291310e-01 -2.51600486e-01 1.33375784e-01 -5.30959734e-01 -4.53196060e-01 -1.67714937e-01 -2.86858647e-01 -2.32749579e-01 -9.33515425e-02 -7.40620118e-02 -6.17205951e-01 -9.18522269e-02 3.42485450e-02 -2.02628855e-01 -7.44903753e-01 -1.24510499e-01 3.15722551e-02 -4.44070292e-01 -1.19856874e+00 -1.08898986e-01
108
+ 1.14584686e+00 2.96896933e-01 -7.96063841e-01 -2.61440586e-01 -7.98944481e-01 -2.51952327e-01 1.32482307e-01 -5.33152683e-01 -4.52528832e-01 -1.67093510e-01 -2.89794160e-01 -2.28593747e-01 -9.33114948e-02 -7.38279649e-02 -6.19564598e-01 -8.70913551e-02 4.58165708e-02 -2.02516512e-01 -7.61897893e-01 -1.28652112e-01 3.28339065e-02 -4.44966921e-01 -1.20334740e+00 -1.07510592e-01
109
+ 1.14581448e+00 2.99076159e-01 -7.91067345e-01 -2.62903881e-01 -7.96427132e-01 -2.51547891e-01 1.31174366e-01 -5.35964199e-01 -4.50924299e-01 -1.66418692e-01 -2.93330349e-01 -2.24516007e-01 -9.30049531e-02 -7.34722212e-02 -6.21547361e-01 -8.23402158e-02 5.40172557e-02 -2.02218038e-01 -7.74034762e-01 -1.30724189e-01 3.61560523e-02 -4.46448191e-01 -1.21484839e+00 -1.09165523e-01
110
+ 1.14503464e+00 3.00191303e-01 -7.85868797e-01 -2.64709846e-01 -7.93833654e-01 -2.51016909e-01 1.30144885e-01 -5.39115876e-01 -4.49649095e-01 -1.65923662e-01 -2.95686835e-01 -2.22105424e-01 -9.34203146e-02 -7.32429469e-02 -6.21843840e-01 -7.86452291e-02 5.74993418e-02 -2.01857110e-01 -7.79967521e-01 -1.30003705e-01 4.09516539e-02 -4.48679887e-01 -1.23116628e+00 -1.13403257e-01
111
+ 1.14386820e+00 3.01054194e-01 -7.80853788e-01 -2.66671811e-01 -7.91541632e-01 -2.50278038e-01 1.29212706e-01 -5.42304365e-01 -4.48835812e-01 -1.65630432e-01 -2.96963921e-01 -2.20627147e-01 -9.43722080e-02 -7.31067337e-02 -6.20815513e-01 -7.55617590e-02 5.66021212e-02 -2.01623412e-01 -7.80100248e-01 -1.26095379e-01 4.63670261e-02 -4.51026963e-01 -1.24898558e+00 -1.18676635e-01
112
+ 1.14238308e+00 3.01496143e-01 -7.76365312e-01 -2.68574539e-01 -7.89704584e-01 -2.49448506e-01 1.28555207e-01 -5.45266035e-01 -4.48770811e-01 -1.65351684e-01 -2.96919729e-01 -2.20109582e-01 -9.58774114e-02 -7.28749724e-02 -6.18674579e-01 -7.31750834e-02 5.22673227e-02 -2.01242883e-01 -7.75716983e-01 -1.19899747e-01 5.11958771e-02 -4.52799688e-01 -1.26496568e+00 -1.24164241e-01
113
+ 1.14075597e+00 3.01387787e-01 -7.72893304e-01 -2.70234905e-01 -7.88516567e-01 -2.48605889e-01 1.28265856e-01 -5.47494101e-01 -4.49446365e-01 -1.65160446e-01 -2.95727276e-01 -2.20173241e-01 -9.76244281e-02 -7.26158992e-02 -6.16012135e-01 -7.12244756e-02 4.63145514e-02 -2.00767378e-01 -7.68923138e-01 -1.12899838e-01 5.51213177e-02 -4.53820029e-01 -1.27702194e+00 -1.28700868e-01
114
+ 1.13873917e+00 3.00953307e-01 -7.70784775e-01 -2.71458664e-01 -7.88084297e-01 -2.47914185e-01 1.28386384e-01 -5.48910092e-01 -4.50931787e-01 -1.65089127e-01 -2.93429845e-01 -2.20662278e-01 -9.93054370e-02 -7.24062071e-02 -6.13582591e-01 -6.93757453e-02 4.06210407e-02 -2.00369017e-01 -7.62150981e-01 -1.06404177e-01 5.81420266e-02 -4.54218117e-01 -1.28495884e+00 -1.31752464e-01
115
+ 1.13680039e+00 3.00463272e-01 -7.70066890e-01 -2.72188741e-01 -7.88322540e-01 -2.47385568e-01 1.28809255e-01 -5.49439553e-01 -4.52850161e-01 -1.65121378e-01 -2.90673524e-01 -2.21105097e-01 -1.00676131e-01 -7.22599905e-02 -6.11811739e-01 -6.73533012e-02 3.64660495e-02 -2.00087741e-01 -7.57108000e-01 -1.01162936e-01 6.03383719e-02 -4.54116231e-01 -1.28901359e+00 -1.33697257e-01
116
+ 1.13497648e+00 3.00122628e-01 -7.70553227e-01 -2.72430059e-01 -7.89166322e-01 -2.46923011e-01 1.29455647e-01 -5.49190730e-01 -4.55195211e-01 -1.65246056e-01 -2.87451380e-01 -2.21633758e-01 -1.01785271e-01 -7.22012425e-02 -6.10702993e-01 -6.52547347e-02 3.42785985e-02 -2.00010486e-01 -7.54489732e-01 -9.76052681e-02 6.19615553e-02 -4.53851373e-01 -1.29012022e+00 -1.35489490e-01
117
+ 1.13399957e+00 3.00267180e-01 -7.71905512e-01 -2.72268281e-01 -7.90389029e-01 -2.46315567e-01 1.30170236e-01 -5.48550718e-01 -4.57503352e-01 -1.65307586e-01 -2.84263458e-01 -2.22202746e-01 -1.02634211e-01 -7.20655284e-02 -6.09995037e-01 -6.33875999e-02 3.36676879e-02 -1.99881026e-01 -7.53796351e-01 -9.56385279e-02 6.29198215e-02 -4.53252278e-01 -1.28922979e+00 -1.37799001e-01
118
+ 1.13320851e+00 3.00424496e-01 -7.73670552e-01 -2.71872003e-01 -7.91824424e-01 -2.45458308e-01 1.30768120e-01 -5.47771731e-01 -4.59842938e-01 -1.65339524e-01 -2.80848451e-01 -2.22920462e-01 -1.03575870e-01 -7.18675751e-02 -6.09008210e-01 -6.19159522e-02 3.37776443e-02 -1.99787379e-01 -7.53979959e-01 -9.46325165e-02 6.33280665e-02 -4.52580854e-01 -1.28722533e+00 -1.40669475e-01
119
+ 1.13212244e+00 3.00267554e-01 -7.75359332e-01 -2.71392465e-01 -7.93246388e-01 -2.44296989e-01 1.31231177e-01 -5.47068235e-01 -4.62008265e-01 -1.65183489e-01 -2.77482493e-01 -2.23895938e-01 -1.04764500e-01 -7.14581878e-02 -6.07378155e-01 -6.11819162e-02 3.37901846e-02 -1.99545257e-01 -7.54045604e-01 -9.40603920e-02 6.31189522e-02 -4.51730072e-01 -1.28461577e+00 -1.44171118e-01
120
+ 1.13037602e+00 2.99354016e-01 -7.76797635e-01 -2.70929622e-01 -7.94576273e-01 -2.42725837e-01 1.31424747e-01 -5.46723669e-01 -4.63793354e-01 -1.64802433e-01 -2.74288535e-01 -2.24900882e-01 -1.06142710e-01 -7.08035702e-02 -6.04901981e-01 -6.12682814e-02 3.33577951e-02 -1.98986088e-01 -7.53433576e-01 -9.34952034e-02 6.22922819e-02 -4.50572598e-01 -1.28155631e+00 -1.47615911e-01
121
+ 1.12753936e+00 2.97477826e-01 -7.77936707e-01 -2.70536881e-01 -7.95843105e-01 -2.40670234e-01 1.31314929e-01 -5.46610293e-01 -4.64915772e-01 -1.64201802e-01 -2.71594698e-01 -2.25681563e-01 -1.07385507e-01 -6.98162144e-02 -6.01876306e-01 -6.20481574e-02 3.27335072e-02 -1.98136471e-01 -7.52282406e-01 -9.27349462e-02 6.11313892e-02 -4.49111534e-01 -1.27817305e+00 -1.50515218e-01
122
+ 1.12354389e+00 2.94080811e-01 -7.78803633e-01 -2.70257968e-01 -7.96836056e-01 -2.38379641e-01 1.31046605e-01 -5.46598151e-01 -4.65242014e-01 -1.63262562e-01 -2.69579748e-01 -2.26069704e-01 -1.08341318e-01 -6.85098419e-02 -5.98581426e-01 -6.33587529e-02 3.20768545e-02 -1.96898540e-01 -7.50922827e-01 -9.17394456e-02 5.95021692e-02 -4.47304496e-01 -1.27458210e+00 -1.52060982e-01
123
+ 1.11830053e+00 2.90108671e-01 -7.79831027e-01 -2.69973337e-01 -7.97862697e-01 -2.36012011e-01 1.30617935e-01 -5.46604388e-01 -4.64887465e-01 -1.62359014e-01 -2.68234378e-01 -2.26048693e-01 -1.08569612e-01 -6.72307376e-02 -5.95859331e-01 -6.45742214e-02 3.22177650e-02 -1.95691609e-01 -7.50248847e-01 -9.06003753e-02 5.83165193e-02 -4.45650226e-01 -1.27144973e+00 -1.52438839e-01
124
+ 1.11161837e+00 2.85372205e-01 -7.81106048e-01 -2.69685662e-01 -7.98802095e-01 -2.34148267e-01 1.30368503e-01 -5.46342923e-01 -4.64423206e-01 -1.61694043e-01 -2.67171112e-01 -2.26015353e-01 -1.08330754e-01 -6.62251290e-02 -5.94001954e-01 -6.55455656e-02 3.31319247e-02 -1.94777721e-01 -7.50618382e-01 -8.96201697e-02 5.78350573e-02 -4.44461003e-01 -1.26954099e+00 -1.51754407e-01
125
+ 1.10435301e+00 2.80907639e-01 -7.82721953e-01 -2.69291410e-01 -7.99803792e-01 -2.33035600e-01 1.30418229e-01 -5.45881548e-01 -4.64306411e-01 -1.61561581e-01 -2.65982931e-01 -2.26234000e-01 -1.07776193e-01 -6.58168195e-02 -5.93179284e-01 -6.58159850e-02 3.47549693e-02 -1.94541683e-01 -7.51969871e-01 -8.89406341e-02 5.84562221e-02 -4.44261674e-01 -1.26930267e+00 -1.50503067e-01
126
+ 1.09836367e+00 2.77933129e-01 -7.84648055e-01 -2.68836023e-01 -8.00650057e-01 -2.32755517e-01 1.30752875e-01 -5.45343117e-01 -4.64588960e-01 -1.61874757e-01 -2.64560204e-01 -2.26934943e-01 -1.07092413e-01 -6.58886802e-02 -5.93283020e-01 -6.54878539e-02 3.66255103e-02 -1.94830526e-01 -7.53706652e-01 -8.89040769e-02 5.98804826e-02 -4.44702851e-01 -1.27054100e+00 -1.49004037e-01
127
+ 1.09354801e+00 2.76549559e-01 -7.86646521e-01 -2.68316883e-01 -8.01506900e-01 -2.33449150e-01 1.31460716e-01 -5.44676148e-01 -4.66100544e-01 -1.62864351e-01 -2.62154153e-01 -2.28482404e-01 -1.06944744e-01 -6.66624307e-02 -5.93877544e-01 -6.43896923e-02 3.81847741e-02 -1.95920345e-01 -7.55249045e-01 -8.96826632e-02 6.22702656e-02 -4.46150559e-01 -1.27332909e+00 -1.47705798e-01
128
+ 1.09191059e+00 2.77514651e-01 -7.88572572e-01 -2.67769606e-01 -8.02197717e-01 -2.34704225e-01 1.32397519e-01 -5.44370411e-01 -4.68246349e-01 -1.64132042e-01 -2.59195517e-01 -2.30613049e-01 -1.07247928e-01 -6.76790022e-02 -5.94552200e-01 -6.29490762e-02 3.91322123e-02 -1.97274446e-01 -7.55819339e-01 -9.17002032e-02 6.47407086e-02 -4.47779718e-01 -1.27633342e+00 -1.46779148e-01
129
+ 1.09218477e+00 2.80288160e-01 -7.90225203e-01 -2.67256008e-01 -8.02733167e-01 -2.36496364e-01 1.33559966e-01 -5.44207230e-01 -4.71129850e-01 -1.65647164e-01 -2.55645649e-01 -2.33189864e-01 -1.08208102e-01 -6.89201300e-02 -5.95039971e-01 -6.11966309e-02 3.93639535e-02 -1.98908030e-01 -7.55359612e-01 -9.47741245e-02 6.71895781e-02 -4.49673047e-01 -1.27930634e+00 -1.46244335e-01
130
+ 1.09609329e+00 2.85396328e-01 -7.91568429e-01 -2.66841650e-01 -8.02926457e-01 -2.38116468e-01 1.34734800e-01 -5.44117651e-01 -4.73520867e-01 -1.66663488e-01 -2.52509005e-01 -2.35428563e-01 -1.09236941e-01 -6.96160319e-02 -5.95272058e-01 -5.95996574e-02 3.89448372e-02 -1.99913154e-01 -7.53653767e-01 -9.89989749e-02 6.84300811e-02 -4.50610597e-01 -1.28072516e+00 -1.46130389e-01
131
+ 1.10115930e+00 2.90472467e-01 -7.92611655e-01 -2.66518506e-01 -8.02674901e-01 -2.39820188e-01 1.36150989e-01 -5.44811154e-01 -4.75340865e-01 -1.67404094e-01 -2.49864954e-01 -2.37848006e-01 -1.10255686e-01 -7.00283839e-02 -5.95095715e-01 -5.85863201e-02 3.82133361e-02 -2.00620316e-01 -7.51085272e-01 -1.04226635e-01 6.87105739e-02 -4.51062491e-01 -1.28047293e+00 -1.46066745e-01
132
+ 1.10657283e+00 2.95235213e-01 -7.93713661e-01 -2.66322019e-01 -8.02463114e-01 -2.40659182e-01 1.37293597e-01 -5.44912195e-01 -4.76827883e-01 -1.67489764e-01 -2.47140788e-01 -2.39315209e-01 -1.11331570e-01 -6.97791677e-02 -5.94587385e-01 -5.71736718e-02 3.71919353e-02 -2.00569566e-01 -7.48397436e-01 -1.08225813e-01 6.79376756e-02 -4.50688732e-01 -1.27892720e+00 -1.47163671e-01
133
+ 1.11442478e+00 3.00355529e-01 -7.94834593e-01 -2.66184428e-01 -8.01904853e-01 -2.40499696e-01 1.38238643e-01 -5.45673294e-01 -4.76155470e-01 -1.66660968e-01 -2.46235261e-01 -2.40034164e-01 -1.11175645e-01 -6.86698263e-02 -5.94233557e-01 -5.63396353e-02 3.64311560e-02 -1.99366870e-01 -7.45439454e-01 -1.12080131e-01 6.54156736e-02 -4.48609067e-01 -1.27514852e+00 -1.47994635e-01
134
+ 1.11912299e+00 3.03425456e-01 -7.96042836e-01 -2.66075464e-01 -8.01212620e-01 -2.40703070e-01 1.39596174e-01 -5.46123117e-01 -4.75742706e-01 -1.65801012e-01 -2.45108157e-01 -2.41362701e-01 -1.11189943e-01 -6.75391892e-02 -5.93950203e-01 -5.59428731e-02 3.57109086e-02 -1.98261300e-01 -7.43428261e-01 -1.15003602e-01 6.31398605e-02 -4.47192158e-01 -1.27134169e+00 -1.49159792e-01
135
+ 1.12373923e+00 3.06189652e-01 -7.97445422e-01 -2.66041996e-01 -8.00880708e-01 -2.40118613e-01 1.40541935e-01 -5.46656004e-01 -4.74510909e-01 -1.64926088e-01 -2.44407787e-01 -2.42612478e-01 -1.10514839e-01 -6.65104464e-02 -5.93638370e-01 -5.58365302e-02 3.57047852e-02 -1.97158835e-01 -7.41867949e-01 -1.17285808e-01 6.10214854e-02 -4.45447983e-01 -1.26747538e+00 -1.50031615e-01
136
+ 1.12694610e+00 3.07970636e-01 -7.98822045e-01 -2.65922743e-01 -8.00284256e-01 -2.39523048e-01 1.41462518e-01 -5.47019129e-01 -4.73202059e-01 -1.63883712e-01 -2.43690703e-01 -2.44340576e-01 -1.09746469e-01 -6.54356363e-02 -5.93686801e-01 -5.56837233e-02 3.55034252e-02 -1.95941531e-01 -7.41100901e-01 -1.17950509e-01 5.89590560e-02 -4.43829180e-01 -1.26481099e+00 -1.50694734e-01
137
+ 1.12947043e+00 3.09443777e-01 -7.99850075e-01 -2.65846467e-01 -8.00208167e-01 -2.38761987e-01 1.41986641e-01 -5.47307818e-01 -4.72361506e-01 -1.63261297e-01 -2.42954972e-01 -2.45983686e-01 -1.09300430e-01 -6.48234023e-02 -5.93444544e-01 -5.54714755e-02 3.56214080e-02 -1.95237523e-01 -7.40717035e-01 -1.18425949e-01 5.80735639e-02 -4.42988584e-01 -1.26344060e+00 -1.50550468e-01
138
+ 1.13172148e+00 3.10779057e-01 -8.00631482e-01 -2.65803838e-01 -8.00271683e-01 -2.37848308e-01 1.42046890e-01 -5.47449717e-01 -4.71497224e-01 -1.62829937e-01 -2.42133795e-01 -2.47613789e-01 -1.08807122e-01 -6.44335960e-02 -5.92922633e-01 -5.53689136e-02 3.60787277e-02 -1.94700743e-01 -7.40657993e-01 -1.18652721e-01 5.80196701e-02 -4.42530665e-01 -1.26337953e+00 -1.49547583e-01
139
+ 1.13261019e+00 3.11502907e-01 -8.01017572e-01 -2.65808493e-01 -8.00450410e-01 -2.37263815e-01 1.41930014e-01 -5.47354307e-01 -4.71156220e-01 -1.62784363e-01 -2.41075180e-01 -2.49233484e-01 -1.08708616e-01 -6.44943211e-02 -5.91995970e-01 -5.53100965e-02 3.67560729e-02 -1.94650002e-01 -7.41007394e-01 -1.18823020e-01 5.89785179e-02 -4.42866497e-01 -1.26499157e+00 -1.47890913e-01
140
+ 1.13369046e+00 3.12305917e-01 -8.01131411e-01 -2.65824376e-01 -8.00732179e-01 -2.36673778e-01 1.41504720e-01 -5.47160817e-01 -4.70761869e-01 -1.62821898e-01 -2.40424652e-01 -2.50018533e-01 -1.08612399e-01 -6.45819412e-02 -5.90918136e-01 -5.51018182e-02 3.76662279e-02 -1.94646028e-01 -7.41593780e-01 -1.18766368e-01 6.03318247e-02 -4.43361502e-01 -1.26724545e+00 -1.45784973e-01
141
+ 1.13376050e+00 3.12580208e-01 -8.01202106e-01 -2.65927438e-01 -8.01032220e-01 -2.36456939e-01 1.41188687e-01 -5.46592133e-01 -4.70620099e-01 -1.63064868e-01 -2.39677890e-01 -2.50365180e-01 -1.08607834e-01 -6.48760818e-02 -5.89603321e-01 -5.48722053e-02 3.88744677e-02 -1.94854472e-01 -7.42475883e-01 -1.18626792e-01 6.19551403e-02 -4.44076659e-01 -1.26943421e+00 -1.43718323e-01
142
+ 1.13365258e+00 3.12699296e-01 -8.01291788e-01 -2.66046968e-01 -8.01258910e-01 -2.36488236e-01 1.41009610e-01 -5.45971667e-01 -4.70461238e-01 -1.63343404e-01 -2.39255199e-01 -2.50079033e-01 -1.08601198e-01 -6.51999813e-02 -5.88331218e-01 -5.45376218e-02 4.00758079e-02 -1.95109381e-01 -7.43545320e-01 -1.18055820e-01 6.32458885e-02 -4.44723980e-01 -1.27105528e+00 -1.41908562e-01
143
+ 1.13365850e+00 3.12804257e-01 -8.01653053e-01 -2.66130902e-01 -8.01508722e-01 -2.36622999e-01 1.41100518e-01 -5.45376422e-01 -4.70272304e-01 -1.63613187e-01 -2.39156699e-01 -2.49220243e-01 -1.08451796e-01 -6.54862448e-02 -5.87445879e-01 -5.39987492e-02 4.12657861e-02 -1.95386663e-01 -7.44800725e-01 -1.17106011e-01 6.39904177e-02 -4.45135609e-01 -1.27157240e+00 -1.40655713e-01
144
+ 1.13406111e+00 3.13054829e-01 -8.02404775e-01 -2.66148231e-01 -8.01812211e-01 -2.36706435e-01 1.41473928e-01 -5.44838867e-01 -4.69936793e-01 -1.63846591e-01 -2.39514374e-01 -2.47788159e-01 -1.08054176e-01 -6.57343834e-02 -5.87176233e-01 -5.31757694e-02 4.23992193e-02 -1.95601580e-01 -7.46094415e-01 -1.15958687e-01 6.41245208e-02 -4.45172860e-01 -1.27079496e+00 -1.40060460e-01
145
+ 1.13426899e+00 3.13136522e-01 -8.03211940e-01 -2.66166222e-01 -8.02075478e-01 -2.36787760e-01 1.42059888e-01 -5.44577688e-01 -4.69738076e-01 -1.64081778e-01 -2.40064948e-01 -2.46009368e-01 -1.07645267e-01 -6.59667497e-02 -5.87457824e-01 -5.21201208e-02 4.32414302e-02 -1.95848940e-01 -7.47247030e-01 -1.14773021e-01 6.37445777e-02 -4.44992025e-01 -1.26912565e+00 -1.40104961e-01
146
+ 1.13455498e+00 3.13186490e-01 -8.04192893e-01 -2.66127992e-01 -8.02461158e-01 -2.36636710e-01 1.42751732e-01 -5.44514178e-01 -4.69460163e-01 -1.64289106e-01 -2.41053380e-01 -2.43833783e-01 -1.07055749e-01 -6.61528868e-02 -5.88442759e-01 -5.07961129e-02 4.39910296e-02 -1.96083031e-01 -7.48317132e-01 -1.13775069e-01 6.31474479e-02 -4.44625253e-01 -1.26692634e+00 -1.40744078e-01
147
+ 1.13448140e+00 3.13098015e-01 -8.05150972e-01 -2.66075474e-01 -8.02914404e-01 -2.36337228e-01 1.43382008e-01 -5.44581618e-01 -4.69232310e-01 -1.64498131e-01 -2.42133461e-01 -2.41524283e-01 -1.06410176e-01 -6.63182168e-02 -5.89764830e-01 -4.93988334e-02 4.46566652e-02 -1.96321027e-01 -7.49148175e-01 -1.13199357e-01 6.27360494e-02 -4.44171278e-01 -1.26486298e+00 -1.41918535e-01
148
+ 1.13427542e+00 3.12862788e-01 -8.06022136e-01 -2.66022611e-01 -8.03434711e-01 -2.35859539e-01 1.43852451e-01 -5.44628845e-01 -4.68878381e-01 -1.64652183e-01 -2.43286942e-01 -2.39213069e-01 -1.05615491e-01 -6.63862660e-02 -5.91196434e-01 -4.80882321e-02 4.54060623e-02 -1.96444628e-01 -7.49779181e-01 -1.13042947e-01 6.27018749e-02 -4.43555199e-01 -1.26308313e+00 -1.43544992e-01
149
+ 1.13381417e+00 3.12438774e-01 -8.06710467e-01 -2.66002144e-01 -8.03991544e-01 -2.35338317e-01 1.44060288e-01 -5.44596705e-01 -4.68462383e-01 -1.64793760e-01 -2.44266835e-01 -2.37184754e-01 -1.04733215e-01 -6.63975863e-02 -5.92451749e-01 -4.69634382e-02 4.63514081e-02 -1.96459995e-01 -7.50310293e-01 -1.13187983e-01 6.32079533e-02 -4.42840059e-01 -1.26169162e+00 -1.45563889e-01
150
+ 1.13293839e+00 3.11864584e-01 -8.07271383e-01 -2.66060060e-01 -8.04626174e-01 -2.34865964e-01 1.44079950e-01 -5.44409502e-01 -4.68064095e-01 -1.65006344e-01 -2.44785788e-01 -2.35770306e-01 -1.03734063e-01 -6.64268588e-02 -5.93356097e-01 -4.61317845e-02 4.77357650e-02 -1.96437548e-01 -7.50969861e-01 -1.13553846e-01 6.44606997e-02 -4.42110833e-01 -1.26062114e+00 -1.47983425e-01
151
+ 1.13194067e+00 3.11034545e-01 -8.07761314e-01 -2.66158945e-01 -8.05344396e-01 -2.34472470e-01 1.43902718e-01 -5.44073527e-01 -4.67691230e-01 -1.65298183e-01 -2.44805542e-01 -2.34988428e-01 -1.02639248e-01 -6.64871331e-02 -5.93864350e-01 -4.54527325e-02 4.95512016e-02 -1.96350652e-01 -7.51764373e-01 -1.13933900e-01 6.62905598e-02 -4.41331091e-01 -1.25951600e+00 -1.50614910e-01
152
+ 1.13083598e+00 3.10116807e-01 -8.08292648e-01 -2.66291188e-01 -8.06238496e-01 -2.34124606e-01 1.43617515e-01 -5.43672044e-01 -4.67410224e-01 -1.65764303e-01 -2.44319883e-01 -2.34797641e-01 -1.01432342e-01 -6.66803658e-02 -5.94087471e-01 -4.47990266e-02 5.18569962e-02 -1.96303664e-01 -7.52777366e-01 -1.14251017e-01 6.86372110e-02 -4.40662161e-01 -1.25820566e+00 -1.53260191e-01
153
+ 1.12974321e+00 3.09217008e-01 -8.08928972e-01 -2.66443493e-01 -8.07274709e-01 -2.33722879e-01 1.43308705e-01 -5.43317103e-01 -4.67112615e-01 -1.66367463e-01 -2.43586957e-01 -2.34916741e-01 -1.00074160e-01 -6.69862663e-02 -5.94221529e-01 -4.40460194e-02 5.45413492e-02 -1.96290668e-01 -7.53984549e-01 -1.14397690e-01 7.12703629e-02 -4.40152705e-01 -1.25673239e+00 -1.55580199e-01
154
+ 1.12879962e+00 3.08231706e-01 -8.09618894e-01 -2.66622863e-01 -8.08410178e-01 -2.33211524e-01 1.43049333e-01 -5.43115205e-01 -4.66664750e-01 -1.67071438e-01 -2.43026584e-01 -2.34955353e-01 -9.86231196e-02 -6.73880591e-02 -5.94335904e-01 -4.31817275e-02 5.73596335e-02 -1.96302199e-01 -7.55175063e-01 -1.14397658e-01 7.39559134e-02 -4.39865692e-01 -1.25524885e+00 -1.57131407e-01
155
+ 1.12819175e+00 3.07371296e-01 -8.10233877e-01 -2.66868174e-01 -8.09510622e-01 -2.32381188e-01 1.42804316e-01 -5.43121461e-01 -4.65852080e-01 -1.67714203e-01 -2.42871638e-01 -2.34595710e-01 -9.70589692e-02 -6.77376996e-02 -5.94451668e-01 -4.22357722e-02 6.00980281e-02 -1.96222202e-01 -7.56241578e-01 -1.14118496e-01 7.64316195e-02 -4.39730486e-01 -1.25398811e+00 -1.57899444e-01
156
+ 1.12671095e+00 3.06084164e-01 -8.11160012e-01 -2.67033712e-01 -8.10788675e-01 -2.31476320e-01 1.42737099e-01 -5.43067426e-01 -4.64967806e-01 -1.68559101e-01 -2.43133855e-01 -2.33782731e-01 -9.54646283e-02 -6.82831755e-02 -5.94872112e-01 -4.10735337e-02 6.28606707e-02 -1.96411388e-01 -7.57585596e-01 -1.13383976e-01 7.93080049e-02 -4.40187675e-01 -1.25406222e+00 -1.57724552e-01
157
+ 1.12579187e+00 3.04960119e-01 -8.11460990e-01 -2.67352640e-01 -8.11498611e-01 -2.30591704e-01 1.42797953e-01 -5.43174271e-01 -4.63829044e-01 -1.69116571e-01 -2.43848017e-01 -2.32783512e-01 -9.43285781e-02 -6.85993116e-02 -5.94830636e-01 -4.03556827e-02 6.46293095e-02 -1.96359938e-01 -7.58407796e-01 -1.12254250e-01 8.10690531e-02 -4.40626138e-01 -1.25452972e+00 -1.56499058e-01
158
+ 1.12409767e+00 3.03633828e-01 -8.11802273e-01 -2.67610780e-01 -8.12189166e-01 -2.29783047e-01 1.42988513e-01 -5.42909487e-01 -4.62779478e-01 -1.69734916e-01 -2.44758841e-01 -2.31591297e-01 -9.33878542e-02 -6.89770196e-02 -5.94939382e-01 -3.96151038e-02 6.61188047e-02 -1.96511881e-01 -7.59464586e-01 -1.10709347e-01 8.29209381e-02 -4.41430174e-01 -1.25615821e+00 -1.54964755e-01
159
+ 1.12233628e+00 3.02574264e-01 -8.11957242e-01 -2.67836428e-01 -8.12705226e-01 -2.29145469e-01 1.43244482e-01 -5.42361346e-01 -4.61924476e-01 -1.70320146e-01 -2.45630151e-01 -2.30563943e-01 -9.27954728e-02 -6.93388275e-02 -5.94986635e-01 -3.90594199e-02 6.70341474e-02 -1.96755653e-01 -7.60398002e-01 -1.08945108e-01 8.43198828e-02 -4.42307969e-01 -1.25806274e+00 -1.53500655e-01
160
+ 1.12047603e+00 3.01803998e-01 -8.12049873e-01 -2.67948482e-01 -8.13126673e-01 -2.28652210e-01 1.43558017e-01 -5.41588843e-01 -4.61487592e-01 -1.70856289e-01 -2.46237804e-01 -2.29801552e-01 -9.25557714e-02 -6.96845739e-02 -5.95128052e-01 -3.85551440e-02 6.73698570e-02 -1.97084660e-01 -7.61125904e-01 -1.07230334e-01 8.51530325e-02 -4.43143321e-01 -1.25968907e+00 -1.52670301e-01
161
+ 1.11893314e+00 3.01418638e-01 -8.12125683e-01 -2.67971873e-01 -8.13508974e-01 -2.28130770e-01 1.43843355e-01 -5.40581650e-01 -4.61318071e-01 -1.71248923e-01 -2.46522984e-01 -2.29287980e-01 -9.24925392e-02 -6.99231801e-02 -5.95287663e-01 -3.81354048e-02 6.71879695e-02 -1.97354803e-01 -7.61228725e-01 -1.05857863e-01 8.52320341e-02 -4.43642657e-01 -1.26018044e+00 -1.52594894e-01
162
+ 1.11699650e+00 3.01062230e-01 -8.12337342e-01 -2.67859805e-01 -8.13942981e-01 -2.27569899e-01 1.44156653e-01 -5.39591569e-01 -4.61468588e-01 -1.71597922e-01 -2.46556741e-01 -2.28890625e-01 -9.25284403e-02 -7.01755878e-02 -5.95614981e-01 -3.76902337e-02 6.66622805e-02 -1.97647560e-01 -7.60725674e-01 -1.05157308e-01 8.47808653e-02 -4.43949733e-01 -1.25953126e+00 -1.53492961e-01
163
+ 1.11531740e+00 3.00718504e-01 -8.12643726e-01 -2.67677316e-01 -8.14414382e-01 -2.26638026e-01 1.44405313e-01 -5.38776100e-01 -4.61494569e-01 -1.71667927e-01 -2.46685371e-01 -2.28319118e-01 -9.24164314e-02 -7.02029308e-02 -5.96044165e-01 -3.73368417e-02 6.59014301e-02 -1.97679217e-01 -7.59532855e-01 -1.05041116e-01 8.36281624e-02 -4.43718656e-01 -1.25756545e+00 -1.54889408e-01
164
+ 1.11356575e+00 3.00078161e-01 -8.13070697e-01 -2.67494161e-01 -8.14826551e-01 -2.25359319e-01 1.44530910e-01 -5.38261494e-01 -4.61159509e-01 -1.71475394e-01 -2.47017959e-01 -2.27390306e-01 -9.20362051e-02 -7.00251579e-02 -5.96467729e-01 -3.70431965e-02 6.51708303e-02 -1.97433224e-01 -7.58004510e-01 -1.05145319e-01 8.21360534e-02 -4.42999920e-01 -1.25479716e+00 -1.56652047e-01
165
+ 1.11145749e+00 2.98829641e-01 -8.13429897e-01 -2.67393815e-01 -8.15134269e-01 -2.23819427e-01 1.44595400e-01 -5.37986969e-01 -4.60397281e-01 -1.71019145e-01 -2.47678036e-01 -2.26242173e-01 -9.13799532e-02 -6.96378909e-02 -5.96860423e-01 -3.69660862e-02 6.47586117e-02 -1.96943634e-01 -7.56838701e-01 -1.05119446e-01 8.06810671e-02 -4.42019318e-01 -1.25218442e+00 -1.58162573e-01
166
+ 1.10835312e+00 2.96688924e-01 -8.13494764e-01 -2.67466783e-01 -8.15154869e-01 -2.22458556e-01 1.44567026e-01 -5.37830671e-01 -4.59436283e-01 -1.70530919e-01 -2.48354083e-01 -2.25165303e-01 -9.06552728e-02 -6.92605130e-02 -5.97063509e-01 -3.70732981e-02 6.48166659e-02 -1.96428513e-01 -7.56715133e-01 -1.04388608e-01 7.96922001e-02 -4.41073161e-01 -1.25073488e+00 -1.58992862e-01
167
+ 1.10534878e+00 2.94414925e-01 -8.13211096e-01 -2.67738680e-01 -8.15032855e-01 -2.21102579e-01 1.44477238e-01 -5.37693334e-01 -4.58296220e-01 -1.69916996e-01 -2.49092450e-01 -2.24294236e-01 -8.97661147e-02 -6.87871647e-02 -5.97303578e-01 -3.73920549e-02 6.55415506e-02 -1.95812900e-01 -7.58087266e-01 -1.02871060e-01 7.93743331e-02 -4.40184039e-01 -1.25091262e+00 -1.58855093e-01
168
+ 1.10231245e+00 2.92196014e-01 -8.12363101e-01 -2.68230992e-01 -8.14547068e-01 -2.20174395e-01 1.44218740e-01 -5.37395462e-01 -4.57165862e-01 -1.69347680e-01 -2.49440262e-01 -2.24022092e-01 -8.88425004e-02 -6.83951901e-02 -5.97446774e-01 -3.78735883e-02 6.68588292e-02 -1.95323698e-01 -7.60988693e-01 -1.00519468e-01 7.98078391e-02 -4.39705163e-01 -1.25289810e+00 -1.57979976e-01
169
+ 1.09931756e+00 2.90192271e-01 -8.11031028e-01 -2.68853495e-01 -8.13882446e-01 -2.19771913e-01 1.43896529e-01 -5.37003531e-01 -4.56451122e-01 -1.68986423e-01 -2.49399151e-01 -2.24348602e-01 -8.80716839e-02 -6.82789529e-02 -5.97797278e-01 -3.83218719e-02 6.85206727e-02 -1.95134277e-01 -7.65163928e-01 -9.77147983e-02 8.08954195e-02 -4.39831356e-01 -1.25657491e+00 -1.56535052e-01
170
+ 1.09485222e+00 2.87774227e-01 -8.09304509e-01 -2.69568518e-01 -8.13183142e-01 -2.20043879e-01 1.43575303e-01 -5.36444081e-01 -4.56560338e-01 -1.69133782e-01 -2.48578622e-01 -2.25200492e-01 -8.76126482e-02 -6.86701288e-02 -5.98307005e-01 -3.83901411e-02 7.03623386e-02 -1.95490802e-01 -7.69923933e-01 -9.48989288e-02 8.28503063e-02 -4.40808005e-01 -1.26157820e+00 -1.54925297e-01
171
+ 1.09015121e+00 2.85642538e-01 -8.07539684e-01 -2.70252673e-01 -8.12560739e-01 -2.20519037e-01 1.43245186e-01 -5.35837823e-01 -4.56986257e-01 -1.69389906e-01 -2.47536781e-01 -2.26126159e-01 -8.71895198e-02 -6.93333747e-02 -5.99106650e-01 -3.81189814e-02 7.20978799e-02 -1.96090603e-01 -7.74422107e-01 -9.26375529e-02 8.49093642e-02 -4.42232245e-01 -1.26672430e+00 -1.53518177e-01
172
+ 1.08661360e+00 2.84240999e-01 -8.05936249e-01 -2.70877445e-01 -8.12119380e-01 -2.20590535e-01 1.42703073e-01 -5.35467020e-01 -4.56971801e-01 -1.69549484e-01 -2.46889451e-01 -2.26453362e-01 -8.64332431e-02 -6.98928735e-02 -5.99910472e-01 -3.76459705e-02 7.35915695e-02 -1.96440505e-01 -7.77616042e-01 -9.14242090e-02 8.62993748e-02 -4.43282301e-01 -1.27028111e+00 -1.52396692e-01
173
+ 1.08227455e+00 2.82557525e-01 -8.04845037e-01 -2.71362553e-01 -8.12015066e-01 -2.20344860e-01 1.42174918e-01 -5.35193907e-01 -4.56630946e-01 -1.69722716e-01 -2.46656740e-01 -2.26045568e-01 -8.53891716e-02 -7.04610646e-02 -6.00769063e-01 -3.67885442e-02 7.50784619e-02 -1.96765941e-01 -7.79727303e-01 -9.11541163e-02 8.74719210e-02 -4.44196494e-01 -1.27253291e+00 -1.51874263e-01
174
+ 1.07809978e+00 2.80607371e-01 -8.04318800e-01 -2.71703894e-01 -8.12156298e-01 -2.19632137e-01 1.41722294e-01 -5.35105793e-01 -4.55714948e-01 -1.69648786e-01 -2.47032052e-01 -2.24897507e-01 -8.41525360e-02 -7.07928901e-02 -6.01277784e-01 -3.59444559e-02 7.63535979e-02 -1.96735519e-01 -7.80562104e-01 -9.17067546e-02 8.79129561e-02 -4.44449138e-01 -1.27282340e+00 -1.51939207e-01
175
+ 1.07337090e+00 2.78050297e-01 -8.04456609e-01 -2.71918216e-01 -8.12503562e-01 -2.18798468e-01 1.41421480e-01 -5.35152861e-01 -4.54467748e-01 -1.69582611e-01 -2.47938313e-01 -2.23143852e-01 -8.28860075e-02 -7.10375264e-02 -6.01447935e-01 -3.51186702e-02 7.76218936e-02 -1.96596506e-01 -7.80707688e-01 -9.26893734e-02 8.82005826e-02 -4.44357060e-01 -1.27193797e+00 -1.52462393e-01
176
+ 1.06835256e+00 2.74889415e-01 -8.05064226e-01 -2.72009703e-01 -8.12956487e-01 -2.18080334e-01 1.41415778e-01 -5.35241008e-01 -4.53158531e-01 -1.69571585e-01 -2.48993329e-01 -2.21318788e-01 -8.17802424e-02 -7.12074947e-02 -6.01214150e-01 -3.46152302e-02 7.88198171e-02 -1.96376468e-01 -7.80526209e-01 -9.38249725e-02 8.84588953e-02 -4.44083448e-01 -1.27050303e+00 -1.53272435e-01
177
+ 1.06360943e+00 2.71531379e-01 -8.05923616e-01 -2.72040643e-01 -8.13205225e-01 -2.17722620e-01 1.41923334e-01 -5.35145438e-01 -4.51989308e-01 -1.69408512e-01 -2.50124296e-01 -2.19622835e-01 -8.09887533e-02 -7.10894127e-02 -6.00837981e-01 -3.44649232e-02 7.97398949e-02 -1.96079179e-01 -7.80339913e-01 -9.49189231e-02 8.86907218e-02 -4.43518648e-01 -1.26942878e+00 -1.54091354e-01
178
+ 1.05900822e+00 2.68570513e-01 -8.06853215e-01 -2.71990036e-01 -8.13409749e-01 -2.17979617e-01 1.42701912e-01 -5.35199102e-01 -4.51459487e-01 -1.69695804e-01 -2.50828931e-01 -2.18485152e-01 -8.06050289e-02 -7.13237801e-02 -6.00471026e-01 -3.45975967e-02 8.04316576e-02 -1.96161003e-01 -7.80245627e-01 -9.59801488e-02 8.95875472e-02 -4.43635981e-01 -1.26956841e+00 -1.54480697e-01
179
+ 1.05449215e+00 2.65617743e-01 -8.07608593e-01 -2.71961590e-01 -8.13374802e-01 -2.18868416e-01 1.43801094e-01 -5.34985737e-01 -4.51670777e-01 -1.70187969e-01 -2.50992382e-01 -2.17831739e-01 -8.07907813e-02 -7.16481574e-02 -6.00163979e-01 -3.47507542e-02 8.05924828e-02 -1.96474771e-01 -7.80027139e-01 -9.68193372e-02 9.09674987e-02 -4.44180656e-01 -1.27112058e+00 -1.54434587e-01
180
+ 1.05151793e+00 2.64171861e-01 -8.07963742e-01 -2.71960369e-01 -8.13154909e-01 -2.19864237e-01 1.44898993e-01 -5.34825987e-01 -4.52104634e-01 -1.70746990e-01 -2.50961215e-01 -2.17415193e-01 -8.11445456e-02 -7.19973991e-02 -6.00084149e-01 -3.48898740e-02 8.03086764e-02 -1.96872571e-01 -7.79572271e-01 -9.75905685e-02 9.24081608e-02 -4.44985184e-01 -1.27371069e+00 -1.53707314e-01
181
+ 1.04982159e+00 2.63768967e-01 -8.07936214e-01 -2.72000339e-01 -8.12823502e-01 -2.20680341e-01 1.45825304e-01 -5.34739863e-01 -4.52500920e-01 -1.71279426e-01 -2.50916356e-01 -2.17050690e-01 -8.15389367e-02 -7.23300897e-02 -6.00119356e-01 -3.48553460e-02 7.97586530e-02 -1.97256235e-01 -7.78934280e-01 -9.80800781e-02 9.37621817e-02 -4.45857037e-01 -1.27677895e+00 -1.52388531e-01
182
+ 1.04917721e+00 2.64088258e-01 -8.07532192e-01 -2.72099528e-01 -8.12456839e-01 -2.21085882e-01 1.46458544e-01 -5.34711763e-01 -4.52705871e-01 -1.71669623e-01 -2.50941062e-01 -2.16610594e-01 -8.19414537e-02 -7.25882850e-02 -6.00056665e-01 -3.46416633e-02 7.91367453e-02 -1.97531550e-01 -7.78367121e-01 -9.81023542e-02 9.47151662e-02 -4.46578650e-01 -1.27965794e+00 -1.50763477e-01
183
+ 1.04911314e+00 2.65041324e-01 -8.06976427e-01 -2.72221181e-01 -8.12220451e-01 -2.20988537e-01 1.46776732e-01 -5.34673174e-01 -4.52664944e-01 -1.71961570e-01 -2.51079335e-01 -2.15959000e-01 -8.22634123e-02 -7.28331127e-02 -5.99826856e-01 -3.41607328e-02 7.88321238e-02 -1.97757788e-01 -7.78371475e-01 -9.72732455e-02 9.53488060e-02 -4.47114971e-01 -1.28191569e+00 -1.49135853e-01
184
+ 1.04937915e+00 2.66074793e-01 -8.06454186e-01 -2.72343142e-01 -8.12151951e-01 -2.20490459e-01 1.46898242e-01 -5.34614402e-01 -4.52561569e-01 -1.72179931e-01 -2.51146199e-01 -2.15154673e-01 -8.26657500e-02 -7.30952769e-02 -5.99179857e-01 -3.35397706e-02 7.89059612e-02 -1.97970328e-01 -7.79125189e-01 -9.54009762e-02 9.55973274e-02 -4.47417728e-01 -1.28308133e+00 -1.47902461e-01
185
+ 1.05012685e+00 2.67335981e-01 -8.06172850e-01 -2.72441214e-01 -8.12133062e-01 -2.19805283e-01 1.47015464e-01 -5.34547053e-01 -4.52401210e-01 -1.72322890e-01 -2.51149874e-01 -2.14174670e-01 -8.31462649e-02 -7.33615590e-02 -5.98129359e-01 -3.29245880e-02 7.93187222e-02 -1.98177169e-01 -7.80613399e-01 -9.24798126e-02 9.54226739e-02 -4.47470327e-01 -1.28303922e+00 -1.47218436e-01
186
+ 1.05117436e+00 2.68266447e-01 -8.06278682e-01 -2.72513489e-01 -8.12107788e-01 -2.19169068e-01 1.47360079e-01 -5.34506821e-01 -4.52436840e-01 -1.72481899e-01 -2.50808813e-01 -2.13226642e-01 -8.38319864e-02 -7.36878837e-02 -5.96642922e-01 -3.25251281e-02 7.98187437e-02 -1.98446419e-01 -7.82412252e-01 -8.88243038e-02 9.49070978e-02 -4.47349278e-01 -1.28180427e+00 -1.47264038e-01
187
+ 1.05364852e+00 2.69914188e-01 -8.06802909e-01 -2.72557259e-01 -8.11940780e-01 -2.18474679e-01 1.47946550e-01 -5.34604528e-01 -4.52285234e-01 -1.72505697e-01 -2.50465311e-01 -2.12098340e-01 -8.44264864e-02 -7.38821114e-02 -5.95030328e-01 -3.24158240e-02 8.01830552e-02 -1.98565320e-01 -7.83886735e-01 -8.50512811e-02 9.38438700e-02 -4.46833516e-01 -1.27928456e+00 -1.48022748e-01
188
+ 1.05651231e+00 2.71508318e-01 -8.07743141e-01 -2.72592971e-01 -8.11627887e-01 -2.17687619e-01 1.48781525e-01 -5.35036000e-01 -4.52023394e-01 -1.72473988e-01 -2.49842995e-01 -2.11139949e-01 -8.48552921e-02 -7.39834795e-02 -5.93412366e-01 -3.27258626e-02 8.03276242e-02 -1.98560275e-01 -7.84595532e-01 -8.18423717e-02 9.24770530e-02 -4.45903842e-01 -1.27598976e+00 -1.49449187e-01
189
+ 1.06040980e+00 2.73406113e-01 -8.08796811e-01 -2.72686667e-01 -8.11108846e-01 -2.16538397e-01 1.49698548e-01 -5.35613096e-01 -4.51145303e-01 -1.72085904e-01 -2.49594272e-01 -2.10141767e-01 -8.48418768e-02 -7.36758852e-02 -5.92179067e-01 -3.34276836e-02 8.00787660e-02 -1.98082590e-01 -7.84179805e-01 -7.98009449e-02 9.04243748e-02 -4.44263758e-01 -1.27142530e+00 -1.51861290e-01
190
+ 1.06329906e+00 2.74922757e-01 -8.09978840e-01 -2.72782672e-01 -8.10186599e-01 -2.15214507e-01 1.50680529e-01 -5.37095370e-01 -4.49939902e-01 -1.71664057e-01 -2.48913028e-01 -2.09515812e-01 -8.45585121e-02 -7.32839441e-02 -5.90825522e-01 -3.43856603e-02 7.95518234e-02 -1.97531444e-01 -7.82584034e-01 -7.90796805e-02 8.81884738e-02 -4.42558194e-01 -1.26698029e+00 -1.53757211e-01
191
+ 1.06519894e+00 2.75956212e-01 -8.10970434e-01 -2.72952626e-01 -8.09425403e-01 -2.13373017e-01 1.51321751e-01 -5.38549264e-01 -4.48365507e-01 -1.71107746e-01 -2.48440530e-01 -2.09128380e-01 -8.38462054e-02 -7.26381952e-02 -5.89940965e-01 -3.54643672e-02 7.92486884e-02 -1.96666248e-01 -7.80553742e-01 -7.99158636e-02 8.60832041e-02 -4.40506119e-01 -1.26217656e+00 -1.56524133e-01
192
+ 1.06606857e+00 2.76409115e-01 -8.11924102e-01 -2.73085844e-01 -8.08553328e-01 -2.11149049e-01 1.51779473e-01 -5.40139697e-01 -4.46420636e-01 -1.70267904e-01 -2.47928184e-01 -2.08940443e-01 -8.28753326e-02 -7.16686890e-02 -5.89208180e-01 -3.65581153e-02 7.91471274e-02 -1.95438005e-01 -7.78460458e-01 -8.19808007e-02 8.37695548e-02 -4.38204738e-01 -1.25763899e+00 -1.58847368e-01
193
+ 1.06609206e+00 2.76551689e-01 -8.12967356e-01 -2.73123089e-01 -8.07876364e-01 -2.08744253e-01 1.52052062e-01 -5.41669087e-01 -4.44385615e-01 -1.69414385e-01 -2.47322862e-01 -2.08837897e-01 -8.17976862e-02 -7.05861199e-02 -5.88517838e-01 -3.75947807e-02 7.95795672e-02 -1.94079366e-01 -7.76804623e-01 -8.48921461e-02 8.18727560e-02 -4.36118915e-01 -1.25349141e+00 -1.60871941e-01
194
+ 1.06561582e+00 2.76459483e-01 -8.14330148e-01 -2.72990613e-01 -8.07350977e-01 -2.06477182e-01 1.52452114e-01 -5.42907887e-01 -4.42460116e-01 -1.68580427e-01 -2.46618299e-01 -2.08668188e-01 -8.08680861e-02 -6.94732457e-02 -5.87729897e-01 -3.85327544e-02 8.04738994e-02 -1.92685541e-01 -7.75840910e-01 -8.82050185e-02 8.04597226e-02 -4.34474114e-01 -1.25018342e+00 -1.62209260e-01
195
+ 1.06512247e+00 2.76270052e-01 -8.16434715e-01 -2.72573148e-01 -8.07185230e-01 -2.04473137e-01 1.53253635e-01 -5.43724477e-01 -4.40714171e-01 -1.67911270e-01 -2.45913639e-01 -2.08169663e-01 -8.01328821e-02 -6.84846550e-02 -5.86834263e-01 -3.93043239e-02 8.18615713e-02 -1.91424541e-01 -7.75583491e-01 -9.15822449e-02 7.98264809e-02 -4.33496605e-01 -1.24792257e+00 -1.62656117e-01
196
+ 1.06454316e+00 2.75899216e-01 -8.19556448e-01 -2.71808653e-01 -8.07419370e-01 -2.02840552e-01 1.54721443e-01 -5.44158499e-01 -4.39068377e-01 -1.67532191e-01 -2.45433825e-01 -2.07081820e-01 -7.95927718e-02 -6.77804372e-02 -5.85872835e-01 -3.98570276e-02 8.36818493e-02 -1.90470996e-01 -7.75885442e-01 -9.48961200e-02 8.01426120e-02 -4.33355825e-01 -1.24695144e+00 -1.62136672e-01
197
+ 1.06435396e+00 2.75491850e-01 -8.23729141e-01 -2.70701841e-01 -8.08049744e-01 -2.01275559e-01 1.56898816e-01 -5.44253504e-01 -4.37019142e-01 -1.67291475e-01 -2.45658892e-01 -2.05014782e-01 -7.90064962e-02 -6.72444422e-02 -5.84920250e-01 -4.02358375e-02 8.58193919e-02 -1.89691630e-01 -7.76467297e-01 -9.79504650e-02 8.11604589e-02 -4.33781078e-01 -1.24699905e+00 -1.60663019e-01
198
+ 1.06421848e+00 2.74637076e-01 -8.28986394e-01 -2.69247163e-01 -8.09127180e-01 -1.99495710e-01 1.59680525e-01 -5.44173010e-01 -4.34232499e-01 -1.67157824e-01 -2.46756557e-01 -2.01695725e-01 -7.81295243e-02 -6.68551276e-02 -5.84049862e-01 -4.04295908e-02 8.83198609e-02 -1.89076273e-01 -7.77198974e-01 -1.00632166e-01 8.28912832e-02 -4.34665864e-01 -1.24799463e+00 -1.58356333e-01
199
+ 1.06389155e+00 2.73172218e-01 -8.34992709e-01 -2.67536811e-01 -8.10528396e-01 -1.97189448e-01 1.62793221e-01 -5.44008359e-01 -4.30337739e-01 -1.66945962e-01 -2.48838334e-01 -1.96786337e-01 -7.67335355e-02 -6.64563831e-02 -5.83331869e-01 -4.04460246e-02 9.12076133e-02 -1.88485271e-01 -7.78051911e-01 -1.02987141e-01 8.51491834e-02 -4.35795365e-01 -1.24981257e+00 -1.55327918e-01
200
+ 1.06304205e+00 2.71195616e-01 -8.41307105e-01 -2.65689323e-01 -8.12089968e-01 -1.94226538e-01 1.65867710e-01 -5.43820768e-01 -4.25244765e-01 -1.66544164e-01 -2.51655588e-01 -1.90005331e-01 -7.47003675e-02 -6.59452483e-02 -5.82857192e-01 -4.02296806e-02 9.45125886e-02 -1.87852631e-01 -7.79168995e-01 -1.04968921e-01 8.78677972e-02 -4.37116683e-01 -1.25248362e+00 -1.51698639e-01
201
+ 1.06172287e+00 2.68831023e-01 -8.47369633e-01 -2.63875630e-01 -8.13567012e-01 -1.90657809e-01 1.68538426e-01 -5.43525677e-01 -4.19122265e-01 -1.65871853e-01 -2.54580101e-01 -1.81297783e-01 -7.21344571e-02 -6.52323349e-02 -5.82535360e-01 -3.97607808e-02 9.81037711e-02 -1.87102962e-01 -7.80544742e-01 -1.06645405e-01 9.08317525e-02 -4.38520756e-01 -1.25592109e+00 -1.47624603e-01
202
+ 1.05894695e+00 2.65170039e-01 -8.52829631e-01 -2.62199227e-01 -8.14950131e-01 -1.86852895e-01 1.70678815e-01 -5.42824986e-01 -4.12944630e-01 -1.65093900e-01 -2.56193607e-01 -1.70978765e-01 -6.95507847e-02 -6.45266318e-02 -5.82043600e-01 -3.89624073e-02 1.01814767e-01 -1.86456475e-01 -7.82081962e-01 -1.08195115e-01 9.43443074e-02 -4.40515439e-01 -1.26006154e+00 -1.43411370e-01
203
+ 1.05600803e+00 2.61837147e-01 -8.56866916e-01 -2.60902381e-01 -8.15826506e-01 -1.82865385e-01 1.71964850e-01 -5.41603414e-01 -4.06749999e-01 -1.63950897e-01 -2.56035354e-01 -1.59213627e-01 -6.71294481e-02 -6.36043694e-02 -5.81225655e-01 -3.77928996e-02 1.05231171e-01 -1.85881952e-01 -7.83406530e-01 -1.09737822e-01 9.75973410e-02 -4.42580939e-01 -1.26385458e+00 -1.39378823e-01
204
+ 1.05171140e+00 2.57699507e-01 -8.59589937e-01 -2.60054530e-01 -8.16324119e-01 -1.79270245e-01 1.72471578e-01 -5.39204907e-01 -4.01520953e-01 -1.62949639e-01 -2.53032328e-01 -1.46194924e-01 -6.54201656e-02 -6.29745744e-02 -5.79638064e-01 -3.58809089e-02 1.08175805e-01 -1.85645537e-01 -7.84101036e-01 -1.11312635e-01 1.01026387e-01 -4.45042366e-01 -1.26691536e+00 -1.35839907e-01
205
+ 1.04767158e+00 2.54106397e-01 -8.60192930e-01 -2.59792049e-01 -8.16287158e-01 -1.75433152e-01 1.72317895e-01 -5.35589738e-01 -3.97060580e-01 -1.61483285e-01 -2.46812387e-01 -1.34488714e-01 -6.47320675e-02 -6.21495885e-02 -5.77157418e-01 -3.38722438e-02 1.10033729e-01 -1.85402302e-01 -7.83985461e-01 -1.13466846e-01 1.03004443e-01 -4.47060550e-01 -1.26829093e+00 -1.33408290e-01